/* Matiscale, studio site. Built against designjoy.co measured at 1440 and 390
   (pipeline/refs/dj/*.json). Their structure, their numbers, our content. */

@font-face { font-family: "Figtree"; src: url("../fonts/figtree-latin.woff2") format("woff2"); font-weight: 300 900; font-style: normal; font-display: swap; unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Figtree"; src: url("../fonts/figtree-latin-ext.woff2") format("woff2"); font-weight: 300 900; font-style: normal; font-display: swap; unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Instrument Serif"; src: url("../fonts/instrument-serif-italic-latin.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Instrument Serif"; src: url("../fonts/instrument-serif-italic-latin-ext.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

:root {
  /* Measured: ground rgb(236,230,232), black, white, grey text rgb(153,148,143),
     pill border rgb(221,206,211), dashed rgb(204,191,196). */
  --ground: #ece6e8;
  --ink: #000000;
  --white: #ffffff;
  --grey: #6e6964; /* their #99948f measures 2.4:1 on this ground; this is the same grey held at 4.6:1 */
  --grey-2: rgba(0, 0, 0, 0.55);
  --line: rgba(0, 0, 0, 0.07);
  --pill-border: #ddced3;
  --dash: #ccbfc4;

  /* Our one committed colour where they use their card art. */
  --bleu: #2745d8;
  --bleu-2: #4a66ff;
  --bleu-3: #1b33ad;
  --jaune: #ffd23f;
  --orange: #ff5a00;

  --sans: "Figtree", "Helvetica Neue", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;

  --r-card: 19px;
  --r-btn: 8px;
  --container: 1120px;
  --frame: 1200px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { font-family: var(--sans); background: var(--ground); -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ground);
  font-size: 16px;
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--bleu); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--ink); color: var(--white); }

/* The page sits in a 1200px frame drawn with two hairlines, as theirs does. */
.frame { position: relative; max-width: var(--frame); margin-inline: auto; }
.frame::before, .frame::after { content: ""; position: absolute; top: 0; bottom: 0; width: 1px; background: var(--line); }
.frame::before { left: 0; }
.frame::after { right: 0; }
.wrap { width: min(100% - 80px, var(--container)); margin-inline: auto; }
@media (max-width: 767px) { .wrap { width: calc(100% - 88px); } }

/* ---------- type: their scale ---------- */
h1, h2, h3 { margin: 0; font-weight: 500; }
.display { font-size: 82px; line-height: 78px; letter-spacing: -3px; }
.headline { font-size: 56px; line-height: 56px; letter-spacing: -2px; }
.accent { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -1px; }
.lede { font-size: 20px; line-height: 24px; color: var(--grey); margin: 0; }
@media (max-width: 767px) {
  .display { font-size: 61px; line-height: 56px; }
  .headline { font-size: 42px; line-height: 47px; }
}

/* ---------- buttons: 38px bordered pills, black primary ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 38px; padding: 8px 16px;
  border-radius: var(--r-btn);
  border: 1px solid var(--pill-border);
  background: transparent;
  color: var(--ink);
  font: inherit; font-size: 15px; font-weight: 500; line-height: 1;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn:hover { background: rgba(0, 0, 0, 0.04); border-color: rgba(0, 0, 0, 0.35); }
.btn svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.btn--ink {
  background: var(--ink); color: var(--white); border-color: var(--ink);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), inset 1px 1px 0.25px rgba(255, 255, 255, 0.3);
}
.btn--ink:hover { background: #1a1a1a; border-color: #1a1a1a; }
.btn--big { height: 60px; padding: 20px 15px; font-size: 20px; width: 100%; }
.btn--white { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--white:hover { background: #f4f2f3; border-color: #f4f2f3; }

/* ---------- header ---------- */
.site-header { position: absolute; top: 60px; left: 0; right: 0; z-index: 5; }
.site-header .wrap { display: flex; align-items: center; height: 38px; }
.brand { display: inline-flex; align-items: center; color: var(--ink); text-decoration: none; }
.wordmark { height: 32px; width: auto; aspect-ratio: 3200 / 829; }
.site-nav { display: flex; gap: 8px; margin-left: auto; margin-right: 422px; }
.lang-switch { padding-inline: 12px; }
@media (max-width: 767px) { .site-nav { display: flex; margin: 0 0 0 auto; } .site-nav .btn:not(.lang-switch) { display: none; } }
@media (max-width: 767px) {
  .site-header { top: 30px; }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: 605px; }
.hero .wrap { position: relative; min-height: 605px; }
.hero-copy { padding-top: 218px; max-width: 600px; }
.hero .lede { margin-top: 26px; }

/* The card: 390 x 485 at (890, 60), 19px, 32px padding, bordered and inset-lit. */
.hero-card {
  position: absolute; top: 60px; right: 0;
  width: 390px; min-height: 485px;
  padding: 32px;
  border-radius: var(--r-card);
  border: 1px solid #0813ff;
  color: var(--white);
  display: flex; flex-direction: column;
  overflow: clip;
  background:
    radial-gradient(90% 70% at 18% 22%, rgba(214, 120, 255, 0.95) 0%, rgba(214, 120, 255, 0) 60%),
    radial-gradient(70% 60% at 82% 88%, rgba(74, 102, 255, 0.9) 0%, rgba(74, 102, 255, 0) 60%),
    radial-gradient(60% 50% at 70% 35%, rgba(255, 92, 220, 0.55) 0%, rgba(255, 92, 220, 0) 60%),
    linear-gradient(180deg, #8a3cff 0%, #2f3cff 55%, #0a12ff 100%);
  box-shadow: inset 0 2px 1px rgba(95, 95, 95, 0.5), inset 1px 1px 0.2px rgba(255, 255, 255, 0.62);
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 39px; padding: 3px 16px 3px 4px; margin: 0;
  border-radius: 999px;
  background: var(--ink); color: var(--white);
  font-size: 14px; font-weight: 400; line-height: 1;
  align-self: flex-start;
  position: relative; z-index: 2;
}
.pill-dot { width: 31px; height: 31px; border-radius: 50%; display: grid; place-items: center; }
.pill-dot::after { content: ""; width: 11px; height: 11px; border-radius: 50%; background: var(--jaune); }
.pill--full .pill-dot::after { background: #ff5a5a; }
.pill[hidden] { display: none; }

/* The tilted club card, top right, as theirs. Ours carries the mark. */
.club {
  position: absolute; top: 34px; right: -6px;
  width: 190px; height: 150px;
  border-radius: 14px;
  background: #0d0d0d;
  padding: 6px;
  transform: rotate(6.6deg);
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 6px;
  box-shadow: 0 18px 30px -12px rgba(0, 0, 0, 0.55);
}
.club span { border-radius: 8px; display: grid; place-items: center; overflow: hidden; }
.club span svg { width: 62%; height: auto; aspect-ratio: 678 / 516; }
.club .c1 { background: #ff3d8a; color: #1a0010; }
.club .c2 { background: var(--bleu); color: #fff; }
.club .c3 { background: var(--jaune); color: #1a1400; }
.club .c4 { background: var(--orange); color: #fff; }
.club small { position: absolute; left: 10px; bottom: -14px; font-size: 7px; letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.7); font-family: ui-monospace, Menlo, Consolas, monospace; }

.hero-card-body { margin-top: auto; padding-top: 86px; position: relative; }
.card-title { font-size: 40px; line-height: 42px; letter-spacing: -1px; font-weight: 400; }
.card-sub { font-size: 16px; line-height: 17.6px; margin: 10px 0 0; }
.hero-card .btn--big { margin-top: 24px; }
.card-row { display: flex; align-items: center; gap: 12px; margin-top: 30px; text-decoration: none; color: inherit; }
.avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--white); color: var(--bleu); display: grid; place-items: center; flex: none; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25); }
.avatar svg { width: 24px; height: auto; aspect-ratio: 678 / 516; }
.card-row-text { display: flex; flex-direction: column; gap: 2px; font-size: 14px; line-height: 20px; }
.card-row-text span { color: rgba(255, 255, 255, 0.6); }
.card-row .arrow { margin-left: auto; width: 36px; height: 36px; border-radius: 50%; background: var(--white); color: var(--ink); display: grid; place-items: center; flex: none; transition: transform 0.2s; }
.card-row .arrow svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.card-row:hover .arrow { transform: translateX(3px); }

@media (max-width: 767px) {
  .hero, .hero .wrap { min-height: 0; }
  .hero-copy { padding-top: 104px; max-width: none; }
  .hero .lede { margin-top: 24px; }
  .hero-card { position: relative; top: auto; right: auto; width: 100%; min-height: 475px; margin-top: 30px; }
  .club { width: 150px; height: 120px; top: 30px; right: -4px; }
  .hero-card-body { padding-top: 90px; }
}

/* ---------- motion, measured then weighted ---------- */
.js-motion .hero-copy > *, .js-motion .hero-card, .js-motion .site-header .wrap > * {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.7s ease-out, transform 1s var(--ease-out);
}
.js-motion .hero-copy > :nth-child(2) { transition-delay: 0.1s; }
.js-motion .hero-card { transition-delay: 0.15s; transform: translateY(18px) scale(0.98); }
.js-motion .site-header .site-nav { transition-delay: 0.08s; }
.js-motion.is-loaded .hero-copy > *, .js-motion.is-loaded .hero-card, .js-motion.is-loaded .site-header .wrap > * { opacity: 1; transform: none; }
.js-motion .club { transition: transform 1.1s var(--ease-out) 0.35s, opacity 0.6s ease-out 0.35s; }
.js-motion:not(.is-loaded) .club { transform: rotate(0deg) translateY(24px); opacity: 0; }



/* ---------- shared ---------- */
.band { position: relative; }
.centered { text-align: center; margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.eyebrow { margin: 0 0 20px; text-align: center; font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.dashed-box { border: 1px dashed var(--dash); border-radius: var(--r-card); }
.card-title.dark { color: var(--ink); }

/* ---------- how it works: 56/56 centred, three 352x440 cards ---------- */
.hiw { padding-top: 60px; }
.hiw-title { max-width: 670px; }
.hiw-cards { list-style: none; padding: 0; margin: 60px 0 0; display: grid; grid-template-columns: repeat(3, 352px); gap: 32px; justify-content: space-between; }
.grain::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); opacity: 0.22; mix-blend-mode: normal; border-radius: inherit; }
.hiw-card { position: relative; height: 440px; border-radius: var(--r-card); padding: 32px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); isolation: isolate; }
.hiw-card h3 { font-size: 22px; line-height: 24px; font-weight: 500; }
.hiw-card p { margin: 10px 0 0; font-size: 16px; line-height: 20px; color: rgba(255, 255, 255, 0.8); max-width: 288px; }
.hiw-card--1 { color: var(--ink); background: linear-gradient(180deg, #ffb200 0%, #ffd400 100%); }
.hiw-card--1 p { color: var(--grey-2); }
.hiw-card--2 { background: radial-gradient(80% 60% at 20% 20%, #ffd23f 0%, rgba(255, 210, 63, 0) 55%), radial-gradient(70% 60% at 85% 80%, #b06cff 0%, rgba(176, 108, 255, 0) 60%), var(--bleu); }
.hiw-card--3 { background: radial-gradient(70% 60% at 80% 20%, #8a3cff 0%, rgba(138, 60, 255, 0) 60%), radial-gradient(70% 60% at 15% 85%, #ff3d8a 0%, rgba(255, 61, 138, 0) 60%), var(--orange); }
.hiw-art { position: absolute; inset: 0 0 auto 0; height: 300px; z-index: -1; }

.site-mock { position: absolute; left: 106px; top: 40px; width: 300px; height: 260px; background: #111; border-radius: 14px 0 0 14px; padding: 18px 20px; color: var(--white); box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.5); }
.site-mock-top { display: flex; gap: 6px; }
.site-mock-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.22); }
.site-mock-hero { margin-top: 22px; }
.site-mock-hero b { display: block; width: 170px; height: 22px; border-radius: 5px; background: var(--white); }
.site-mock-hero i { display: block; width: 210px; height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.25); margin-top: 10px; }
.site-mock-hero i + i { width: 150px; }
.site-mock-row { display: flex; gap: 8px; margin-top: 22px; }
.site-mock-row s { display: block; width: 60px; height: 44px; border-radius: 8px; background: rgba(255, 255, 255, 0.12); text-decoration: none; }
.site-mock-tag { position: absolute; left: 20px; bottom: 18px; display: inline-flex; align-items: center; gap: 8px; height: 36px; padding: 4px 14px 4px 4px; border-radius: 999px; background: #1f1f1f; font-size: 12px; color: var(--white); }
.site-mock-tag .mm { width: 28px; height: 28px; border-radius: 50%; background: var(--jaune); color: var(--ink); display: grid; place-items: center; }
.site-mock-tag .mm svg { width: 14px; }

.marquee { position: absolute; left: 0; right: 0; overflow: hidden; }
.marquee.m1 { top: 82px; } .marquee.m2 { top: 136px; } .marquee.m3 { top: 190px; }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: marquee 22s linear infinite; }
.marquee.m2 .marquee-track { animation-duration: 28s; animation-direction: reverse; }
.marquee.m3 .marquee-track { animation-duration: 25s; }
.marquee span { display: inline-flex; align-items: center; height: 34px; padding: 7px 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.49); color: var(--ink); font-size: 14px; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.app-tile { position: absolute; left: 50%; top: 96px; width: 96px; height: 96px; margin-left: -48px; border-radius: 22px; background: #151515; color: var(--white); display: grid; place-items: center; box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.18); }
.app-tile svg { width: 44px; }

.stack { position: absolute; left: 50%; top: 44px; width: 210px; margin-left: -105px; height: 240px; }
.sheet { position: absolute; left: 0; top: 0; width: 150px; height: 200px; border-radius: 12px; background: var(--white); border: 3px solid var(--white); box-shadow: 0 11px 5px rgba(0, 0, 0, 0.2); padding: 14px; }
.sheet b { display: block; width: 70%; height: 12px; border-radius: 4px; background: #111; }
.sheet i { display: block; width: 90%; height: 6px; border-radius: 3px; background: #ccc; margin-top: 8px; }
.sheet u { display: block; width: 100%; height: 70px; border-radius: 8px; background: linear-gradient(135deg, #ffd23f, #ff5a00); margin-top: 12px; }
.sheet.s1 { transform: rotate(-14deg) translate(-30px, 20px); }
.sheet.s2 { transform: rotate(-4deg) translate(10px, 8px); }
.sheet.s3 { transform: rotate(8deg) translate(58px, 20px); }

/* ---------- about: the 750x229 dashed box ---------- */
.about { padding-top: 100px; }
.about-box { max-width: 750px; margin-inline: auto; padding: 43px; text-align: center; }
.about-box p { margin: 0; font-size: 20px; line-height: 28px; color: var(--grey); }
.about-box .accent { font-size: 22px; color: var(--grey); }
.about-box a { color: var(--grey); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- benefits: 82/78 centred, six 200px tiles ---------- */
.benefits { padding-top: 140px; }
.benefits-title { max-width: 640px; }
.benefits-lede { max-width: 530px; margin-top: 36px; }
.benefits-wrap { position: relative; margin-top: 100px; }
.benefits-wrap { overflow: hidden; }
.benefits-track { display: flex; gap: 32px; width: max-content; width: -webkit-max-content; animation: benefits-drift 40s linear infinite; -webkit-backface-visibility: hidden; }
.benefits-track:hover { animation-play-state: paused; }
/* With JS the wrap scrolls itself in px and wraps by exactly one list; the CSS animation is only the no-JS fallback. */
.js-queue .benefits-track { animation: none; }
.js-queue .benefits-wrap { overflow-x: hidden; overflow-y: hidden; scrollbar-width: none; }
.js-queue .benefits-wrap::-webkit-scrollbar { display: none; }
/* Explicit width: WebKit sizes a max-content flex child from its items' unwrapped text, not their 200px flex-basis, which left an empty half in every copy. Six tiles of 200px and five gaps of 32px. */
.benefits-list { list-style: none; padding: 0; margin: 0; display: flex; gap: 32px; flex: none; width: 1352px; margin-right: 32px; }
.benefit { width: 200px; min-width: 0; }
.benefit h3, .benefit p { min-width: 0; overflow-wrap: anywhere; }
.benefits-track { gap: 0; }
.benefit { flex: 0 0 200px; }
/* Three identical lists; the loop moves exactly one list plus its gap, so the third copy is already in place when the first restarts. */
@keyframes benefits-drift { from { transform: translateX(0); } to { transform: translateX(calc(-100% / 3 - 32px / 3)); } }
.benefit-art { position: relative; width: 200px; height: 200px; border-radius: var(--r-card); display: grid; place-items: center; overflow: hidden; }
.benefit-icon { width: 76px; height: 76px; stroke: rgba(255, 255, 255, 0.98); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; fill: rgba(255, 255, 255, 0.55); filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.7)) drop-shadow(0 10px 14px rgba(0, 0, 0, 0.22)); }
.b1 { background: radial-gradient(70% 60% at 20% 90%, #8a3cff 0%, rgba(138, 60, 255, 0) 60%), linear-gradient(180deg, #ffb200, #ff7a00); }
.b2 { background: radial-gradient(70% 60% at 80% 85%, #ffd23f 0%, rgba(255, 210, 63, 0) 60%), linear-gradient(180deg, #1a2cff, #6a4dff); }
.b3 { background: radial-gradient(70% 60% at 85% 20%, #3b4bff 0%, rgba(59, 75, 255, 0) 60%), linear-gradient(180deg, #ff5a00, #ff2d55); }
.b4 { background: radial-gradient(70% 60% at 20% 20%, #ff3d8a 0%, rgba(255, 61, 138, 0) 60%), linear-gradient(180deg, #0f9d58, #35e07a); }
.b5 { background: radial-gradient(70% 60% at 80% 80%, #ffd23f 0%, rgba(255, 210, 63, 0) 60%), linear-gradient(180deg, #ff2d55, #ff7a59); }
.b6 { background: radial-gradient(70% 60% at 20% 80%, #ff5a00 0%, rgba(255, 90, 0, 0) 60%), linear-gradient(180deg, #2745d8, #8a3cff); }
.benefit h3 { margin-top: 16px; font-size: 22px; line-height: 24.2px; font-weight: 500; }
.benefit p { margin: 8px 0 0; font-size: 14px; line-height: 16px; color: var(--grey); }
.benefits-nav { display: flex; gap: 24px; margin-top: 28px; }
.round-btn { width: 50px; height: 50px; border-radius: 50%; border: 0; background: var(--white); color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: transform 0.2s, background-color 0.2s; }
.round-btn:hover { background: #f4f2f3; transform: translateY(-1px); }
.round-btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; }

/* ---------- pricing: white 448x590 card and black 640x590 card ---------- */
.pricing { padding-top: 130px; }
.pricing-title { max-width: 670px; }
.pricing-grid { position: relative; margin-top: 140px; display: grid; grid-template-columns: 448px 640px; justify-content: space-between; }
.price-left { position: relative; height: 590px; border-radius: var(--r-card); background: var(--white); padding: 40px; display: flex; flex-direction: column; justify-content: flex-end; }
.club--big { top: -56px; left: -80px; right: auto; width: 460px; height: 300px; border-radius: 26px; padding: 12px; gap: 12px; transform: rotate(-9deg); }
.club--big span { border-radius: 16px; }
.club--big span svg { width: 56%; }
.club--big small { font-size: 10px; left: 24px; bottom: -22px; }
.price-left-body { position: relative; z-index: 1; }
.price-left-body .card-title { margin-top: 16px; }
.price-card { position: relative; height: 590px; border-radius: var(--r-card); background: var(--ink); color: var(--white); padding: 40px; border: 1px solid var(--ink); overflow: hidden; box-shadow: 0 20px 68px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.25) inset; }
.price-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.price-head h3 { font-size: 28px; line-height: 32px; font-weight: 500; }
.tag { font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; padding: 8px 12px; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 6px; color: rgba(255, 255, 255, 0.85); }
.dashed-rule { border: 0; border-top: 1px dashed rgba(255, 255, 255, 0.5); margin: 24px 0; }
.discount { display: inline-flex; align-items: center; height: 38px; padding: 0 14px; border-radius: 999px; background: rgba(255, 0, 132, 0.18); color: #ff0084; font-size: 14px; }
.price { display: flex; align-items: baseline; gap: 10px; margin: 22px 0 0; white-space: nowrap; }
.price-amount { font-size: 56px; line-height: 56px; letter-spacing: -2px; font-weight: 500; }
.price-per { font-size: 14px; color: rgba(255, 255, 255, 0.85); }
.included { position: relative; margin-top: 44px; padding: 32px; border-radius: 8px; background: #1b1b1b; box-shadow: inset 0 1px 0.25px rgba(255, 255, 255, 0.16), inset 0 2px 1px rgba(255, 255, 255, 0.11); }
.included-tag { position: absolute; top: -12px; left: 32px; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 10px; border-radius: 4px; background: #2a2a2a; color: rgba(255, 255, 255, 0.7); }
.included ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; row-gap: 6px; font-size: 14px; line-height: 20px; }
.join { position: absolute; left: 40px; bottom: 40px; display: inline-flex; align-items: center; gap: 14px; height: 70px; padding: 8px 24px 8px 8px; border-radius: 8px; background: #1b1b1b; color: var(--white); text-decoration: none; font-size: 16px; font-weight: 500; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16); transition: background-color 0.2s; }
.join:hover { background: #262626; }
.join-icon { width: 54px; height: 54px; border-radius: 6px; background: var(--bleu); color: var(--white); display: grid; place-items: center; }
.join-icon svg { width: 28px; }
.price-disc { position: absolute; right: -40px; bottom: -60px; width: 220px; height: 220px; border-radius: 50%; background: var(--bleu); color: var(--white); display: grid; place-items: center; }
.price-disc svg { width: 96px; margin: -40px 40px 0 0; }
.dashed-pair { display: grid; grid-template-columns: 544px 544px; justify-content: space-between; margin-top: 32px; }
.dashed-pair .dashed-box { padding: 40px; min-height: 160px; }
.dashed-pair h3 { display: flex; align-items: center; gap: 12px; font-size: 22px; line-height: 24px; font-weight: 500; }
.dash-icon { width: 24px; height: 24px; stroke: var(--ink); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.dashed-pair p { margin: 16px 0 0; font-size: 16px; line-height: 20px; color: var(--grey); max-width: 310px; }

/* ---------- faq: 82/78 left, 390x454 card right ---------- */
.faq { padding-top: 100px; padding-bottom: 100px; }
.faq-grid { display: grid; grid-template-columns: 590px 390px; justify-content: space-between; }
.faq-title { max-width: 590px; }
.faq-list { margin-top: 74px; }
.faq-item { border: 0; }
.faq-item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 48px; font-size: 20px; line-height: 22px; font-weight: 500; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; flex: none; transition: transform 0.2s; }
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-item p { margin: 4px 0 18px; font-size: 16px; line-height: 22px; color: var(--grey); max-width: 520px; }
.faq-card { position: relative; height: 454px; border-radius: var(--r-card); padding: 32px; color: var(--white); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; box-shadow: 0 50px 50px rgba(0, 0, 0, 0.2); background: radial-gradient(70% 55% at 85% 90%, #ff3d8a 0%, rgba(255, 61, 138, 0) 60%), radial-gradient(70% 60% at 30% 100%, #8a3cff 0%, rgba(138, 60, 255, 0) 60%), linear-gradient(180deg, #ffd23f 0%, #ff8a00 60%, #ff5a00 100%); }
.faq-avatar { position: absolute; top: 32px; left: 32px; width: 128px; height: 128px; border-radius: 50%; background: #111; color: var(--white); display: grid; place-items: center; }
.faq-avatar svg { width: 56px; }
.faq-card .btn--big { margin-top: 24px; }
.card-row-icon { width: 36px; height: 36px; display: grid; place-items: center; flex: none; }
.card-row-icon svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; fill: none; }

/* ---------- footer: black band, 70/66 title, the form where their calendar sits ---------- */
.footer { background: var(--ink); color: var(--white); padding: 60px 0 60px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1fr) 390px; grid-template-areas: "main form" "bottom form"; justify-content: space-between; column-gap: 40px; align-items: start; }
.footer-main { grid-area: main; min-width: 0; }
.footer-bottom { grid-area: bottom; min-width: 0; }
.footer-side { grid-area: form; min-width: 0; display: grid; gap: 24px; align-content: start; }
.contact-card { min-width: 0; }
.brand--light { color: var(--white); }
.footer-title { margin-top: 82px; font-size: 70px; line-height: 66px; letter-spacing: -3px; max-width: 560px; }
.footer .lede { margin-top: 30px; max-width: 360px; }
.discs { position: relative; height: 240px; margin-top: 110px; width: 690px; }
.discs span { position: absolute; border-radius: 50%; display: grid; place-items: center; }
.discs span svg { width: 40%; }
.d1 { left: 0; bottom: 0; width: 150px; height: 150px; background: #35ff6a; color: #003a12; }
.d2 { left: 100px; bottom: 30px; width: 170px; height: 170px; background: #ff3d8a; color: #3a001a; }
.d3 { left: 230px; bottom: 90px; width: 110px; height: 110px; background: var(--orange); color: #fff; }
.d4 { left: 330px; bottom: 60px; width: 170px; height: 170px; background: var(--bleu); color: #fff; }
.d5 { left: 130px; bottom: 0; width: 140px; height: 140px; background: #000; color: #fff; border: 2px solid #111; }
.d6 { left: 260px; bottom: 0; width: 130px; height: 130px; background: var(--jaune); color: #2a1e00; }
.d7 { left: 380px; bottom: 0; width: 140px; height: 140px; background: var(--orange); color: #fff; }
.d8 { left: 520px; bottom: 0; width: 170px; height: 170px; background: #ff0084; color: #fff; }
.footer-meta { margin: 40px 0 0; font-size: 14px; line-height: 20px; display: flex; gap: 24px; flex-wrap: wrap; }
.footer-meta a { color: #a29d98; text-decoration: none; }
.footer-meta a:hover { color: var(--white); }
.footer-lang { color: #a29d98; }
.cal-card { border-radius: var(--r-card); background: #0d0d0d; padding: 24px; display: grid; gap: 16px; box-shadow: 0 50px 50px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08); }
.cal-inline { min-height: 0; }
.cal-inline:not([hidden]) { min-height: 620px; }
.cal-fallback p { margin: 0 0 16px; font-size: 15px; line-height: 22px; color: rgba(255, 255, 255, 0.7); }
.contact-card { border-radius: var(--r-card); background: #0d0d0d; padding: 24px; display: grid; gap: 16px; align-self: start; box-shadow: 0 50px 50px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08); }
.contact-card-title { margin: 0 0 6px; font-size: 17px; font-weight: 500; }
.hp { position: absolute; left: -9999px; margin: 0; }
.field { display: grid; gap: 8px; }
.field label { font-size: 13px; color: rgba(255, 255, 255, 0.7); }
.optional { color: rgba(255, 255, 255, 0.45); }
.field input, .field textarea { font: inherit; font-size: 15px; color: var(--white); background: #171717; border: 1px solid #2a2a2a; border-radius: 8px; padding: 12px 14px; min-height: 46px; width: 100%; transition: border-color 0.2s, box-shadow 0.2s; }
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.field input:focus, .field textarea:focus { outline: none; border-color: #4a4a4a; box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08); }
.field-error { display: none; font-size: 13px; color: #ff7a7a; }
.field input:user-invalid { border-color: #ff7a7a; }
.field input:user-invalid ~ .field-error { display: block; }
.contact-card .btn--big { margin-top: 4px; }

/* ---------- reveals: their ~900ms fade, given 12px of rise and a 90ms stagger ---------- */
.js-motion [data-reveal] { opacity: 0; transform: translateY(var(--rise, 12px)); transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1) calc(var(--i, 0) * 90ms), transform 1s cubic-bezier(0.25, 1, 0.5, 1) calc(var(--i, 0) * 90ms); }
/* Measured on designjoy.co at 390: cards rise 100px while fading in over about a second. */
@media (max-width: 767px) { :root { --rise: 100px; } .js-motion [data-reveal] { transition-delay: 0s; } }
.js-motion [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- mobile: 44px gutters, everything stacks ---------- */
@media (max-width: 767px) {
  .hiw-title { max-width: none; }
  .hiw-cards { grid-template-columns: 1fr; gap: 32px; margin-top: 60px; justify-content: stretch; }
  .hiw-card { height: 440px; }
  .site-mock { left: 60px; }
  .about-box { padding: 43px 24px; }
  .benefits { padding-top: 90px; }
  .benefits-title { max-width: none; }
  .benefits-wrap { margin-top: 60px; }
  .pricing { padding-top: 100px; }
  .pricing-grid { grid-template-columns: 1fr; row-gap: 32px; margin-top: 90px; }
  .price-left { height: 400px; overflow: visible; }
  .club--big { width: 300px; height: 195px; top: -40px; left: 8px; }
  .price-card { height: auto; padding: 32px; padding-bottom: 130px; }
  .discount { height: auto; min-height: 38px; padding: 8px 14px; line-height: 20px; white-space: normal; }
  .price-amount { font-size: 44px; line-height: 44px; }
  .price-per { font-size: 13px; }
  .price-head { flex-direction: column-reverse; align-items: flex-start; gap: 14px; }
  .included ul { grid-template-columns: 1fr; }
  .join { left: 32px; bottom: 32px; }
  .price-disc { width: 110px; height: 110px; right: -36px; bottom: -40px; }
  .price-disc svg { width: 48px; margin: -20px 24px 0 0; }
  .dashed-pair { grid-template-columns: 1fr; row-gap: 20px; }
  .faq { padding-top: 90px; padding-bottom: 60px; }
  .faq-grid { grid-template-columns: 1fr; row-gap: 60px; }
  .faq-list { margin-top: 48px; }
  .faq-item summary { font-size: 18px; }
  .faq-card { height: auto; min-height: 454px; padding-top: 196px; }
  .faq-card .card-title { font-size: 34px; line-height: 36px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "main" "form" "bottom"; row-gap: 40px; }
  .footer-title { font-size: 44px; line-height: 46px; letter-spacing: -2px; margin-top: 60px; max-width: none; }
  .footer-title br { display: none; }
  .footer-title .accent { display: block; }
  .discs { width: 302px; height: 170px; margin-top: 20px; }
  .discs span svg { width: 40%; }
  .d1 { left: 0; bottom: 0; width: 84px; height: 84px; }
  .d2 { left: 54px; bottom: 26px; width: 92px; height: 92px; }
  .d3 { left: 126px; bottom: 60px; width: 60px; height: 60px; }
  .d4 { left: 176px; bottom: 40px; width: 92px; height: 92px; }
  .d5 { left: 72px; bottom: 0; width: 76px; height: 76px; }
  .d6 { left: 140px; bottom: 0; width: 70px; height: 70px; }
  .d7 { left: 204px; bottom: 0; width: 76px; height: 76px; }
  .d8 { left: 236px; bottom: 30px; width: 66px; height: 66px; }
  .hiw-title br { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .benefits-track { animation: none; }
  .benefits-wrap { overflow-x: auto; }
  .benefits-list--copy { display: none; }
  .js-motion [data-reveal] { opacity: 1; transform: none; transition: none; }
}
