/* ============================================================
   Reinspiro — v3 · quiet, precise, product-first
   ============================================================ */
:root {
  --black: #000;
  --black-2: #0a0a0c;
  --light: #f5f5f7;
  --white: #fff;
  --cream: #faf8f4;

  --text: #f5f5f7;
  --text-2: #a1a1a6;
  --ink: #1d1d1f;
  --ink-2: #6e6e73;

  --purple: #503cff;          /* Fairplay --brand */
  --purple-2: #6a6bff;        /* shimmer */
  --purple-soft: #8b7cff;     /* links on black */
  --purple-deep: #3a24d6;

  --amber: #c97f14;
  --amber-2: #e8a33d;

  --maxw: 1080px;
  --pad: clamp(20px, 5vw, 48px);
  --r: 22px;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-fp: "Poppins", var(--font);

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text);
  line-height: 1.47;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "cv11", "ss01";
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--purple); color: #fff; }
.dim { color: var(--text-2); }

#flow { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
body > *:not(#flow) { position: relative; z-index: 1; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* section surfaces */
.s--black { background: transparent; color: var(--text); }
.s--light { background: var(--light); color: var(--ink); }
.s--white { background: var(--white); color: var(--ink); }
.s--cream { background: var(--cream); color: #1b1b18; }

/* ---------- type ---------- */
.kicker { font-size: 0.95rem; font-weight: 600; color: var(--purple-soft); letter-spacing: 0.01em; margin-bottom: 14px; }
.kicker--dark { color: var(--purple); }
.h2 { font-size: clamp(2rem, 4.8vw, 3.5rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.06; text-wrap: balance; }
.sub { font-size: clamp(1.1rem, 1.6vw, 1.4rem); color: var(--text-2); max-width: 680px; margin-top: 14px; line-height: 1.4; text-wrap: balance; }
.feature__title, .feature__desc, .studio__quote, .cta__title, .hero__sub { text-wrap: balance; }
.s--white .sub, .s--light .sub { color: var(--ink-2); }
.grad { background: linear-gradient(92deg, #7b6cff 0%, #b39bff 45%, #6a6bff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

.link { color: var(--purple-soft); font-weight: 500; font-size: 1.05rem; }
.link::after { content: " ›"; }
.link:hover { text-decoration: underline; text-underline-offset: 3px; }
.s--light .link, .s--white .link, .s--cream .link { color: var(--purple); }

.btn {
  display: inline-block; font-weight: 500; font-size: 0.95rem;
  padding: 11px 22px; border-radius: 980px; background: var(--purple); color: #fff;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { background: var(--purple-2); }
.btn--sm { padding: 7px 14px; font-size: 0.8rem; }
.btn--lg { padding: 16px 30px; font-size: 1.15rem; }

/* ---------- nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 90; background: rgba(0,0,0,0.72); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); height: 52px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.nav__logo { font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; }
.nav__links { display: flex; gap: 32px; justify-content: center; }
.nav__links a { font-size: 0.8rem; color: rgba(245,245,247,0.8); transition: color 0.2s; }
.nav__links a:hover { color: #fff; }
.nav__right { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.lang { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; }
.lang__btn { color: rgba(245,245,247,0.55); font-weight: 500; padding: 4px 2px; transition: color 0.2s; }
.lang__btn.is-active { color: #fff; }
.lang__btn:hover { color: #fff; }
.lang__sep { color: rgba(245,245,247,0.25); }
.burger { display: none; width: 36px; height: 36px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.burger span { display: block; width: 18px; height: 1.5px; background: #fff; transition: transform 0.3s var(--ease-out); }
.nav.is-open .burger span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav.is-open .burger span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 120px var(--pad) 80px; position: relative; }
.hero__inner { max-width: 880px; }
.hero .kicker { opacity: 0; animation: rise 0.9s var(--ease-out) 0.1s forwards; }
.hero__title { font-size: clamp(2.7rem, 7vw, 5.6rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.04; margin: 0 0 22px; opacity: 0; transform: translateY(24px); animation: rise 1s var(--ease-out) 0.2s forwards; }
.hero__sub { font-size: clamp(1.15rem, 1.8vw, 1.5rem); color: var(--text-2); max-width: 640px; margin: 0 auto 26px; line-height: 1.4; opacity: 0; animation: rise 1s var(--ease-out) 0.4s forwards; }
.hero__links { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: rise 1s var(--ease-out) 0.55s forwards; }
.hero__links .link { font-size: 1.15rem; }
@keyframes rise { to { opacity: 1; transform: none; } }
.hero__scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); width: 22px; height: 36px; border: 1.5px solid rgba(255,255,255,0.28); border-radius: 12px; opacity: 0; animation: rise 1s var(--ease-out) 1.2s forwards; }
.hero__scroll span { position: absolute; top: 7px; left: 50%; width: 3px; height: 7px; border-radius: 2px; background: #fff; transform: translateX(-50%); animation: dot 1.8s var(--ease) infinite; }
@keyframes dot { 50% { transform: translate(-50%, 10px); opacity: 0.2; } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- intro ---------- */
.intro { padding: clamp(60px, 9vw, 120px) 0 0; text-align: center; }
.intro .sub { margin-left: auto; margin-right: auto; }

/* ---------- feature ---------- */
.feature { padding: clamp(90px, 12vw, 150px) var(--pad); text-align: center; }
.feature__head { max-width: 720px; margin: 0 auto; }
.feature__head p + p { margin-top: 0; }
.feature__title { font-size: clamp(2.1rem, 5vw, 3.9rem); font-weight: 600; letter-spacing: -0.022em; line-height: 1.05; margin: 22px 0 16px; }
.feature__desc { font-size: clamp(1.05rem, 1.55vw, 1.32rem); color: var(--text-2); line-height: 1.45; margin-bottom: 18px; }
.s--light .feature__desc, .s--cream .feature__desc { color: var(--ink-2); }
/* minmax(0,1fr) gives the track a definite width, so the widgets' own
   `width: min(x, 100%)` and max-width resolve against the viewport instead
   of against their own max-content size (which overflowed on phones). */
.feature__visual { margin: clamp(48px, 6vw, 80px) auto 0; display: grid; grid-template-columns: minmax(0, 1fr); justify-items: center; align-items: center; }
.feature__visual > * { max-width: 100%; }
.badge { display: inline-block; font-size: 0.78rem; font-weight: 600; color: var(--purple); background: rgba(80,60,255,0.1); border: 1px solid rgba(80,60,255,0.25); padding: 6px 12px; border-radius: 980px; margin-top: 0; }

/* wordmark (matches the Fairplay dashboard: lowercase bold, suffix in brand with a slow sweep) */
.wm { margin-bottom: 18px; }
.wm__text { font-family: var(--font-fp); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.03em; line-height: 1; }
.wm__suffix {
  background: linear-gradient(90deg, var(--purple) 0%, var(--purple) 40%, var(--purple-2) 50%, var(--purple) 60%, var(--purple) 100%);
  background-size: 300% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: sweep 10s ease-in-out infinite;
}
.s--black .wm__suffix { background-image: linear-gradient(90deg, #6f60ff 0%, #6f60ff 40%, #9d95ff 50%, #6f60ff 60%, #6f60ff 100%); }
@keyframes sweep { 0%, 100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }
.wm__text--mac { font-family: var(--font); font-weight: 600; letter-spacing: -0.02em; }

/* ---------- phone ---------- */
.phone { width: 300px; aspect-ratio: 9 / 18.6; border-radius: 44px; background: #111114; padding: 10px; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.55), inset 0 0 0 1.5px rgba(255,255,255,0.12); animation: float 8s var(--ease) infinite; }
.phone::before { content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 92px; height: 26px; background: #111114; border-radius: 0 0 16px 16px; z-index: 2; }
.phone__screen { width: 100%; height: 100%; border-radius: 36px; background: #000; padding: 50px 14px 16px; display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.phone--light .phone__screen { background: #fff; color: #1b1b18; }
.s--light .phone, .s--cream .phone { box-shadow: 0 30px 70px rgba(27,27,24,0.22), inset 0 0 0 1.5px rgba(255,255,255,0.12); }
@keyframes float { 50% { transform: translateY(-8px); } }
.app-top { display: flex; align-items: center; justify-content: space-between; padding: 0 4px; }
.app-top__title { font-family: var(--font-fp); font-weight: 700; font-size: 0.95rem; color: #fff; letter-spacing: -0.02em; }
.app-top--mac .app-top__title { font-family: var(--font); font-weight: 600; color: #1b1b18; }
.app-top__dot { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--purple-2), var(--purple)); }

/* ticket (events) */
.ticket { flex: none; background: #fff; color: #1d1d1f; border-radius: 20px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,0.35); }
.checkin, .app-top, .list { flex: none; }
.ticket__head { padding: 14px 16px; background: linear-gradient(135deg, var(--purple), var(--purple-2)); color: #fff; display: flex; flex-direction: column; gap: 2px; text-align: left; }
.ticket__head b { font-size: 0.98rem; font-weight: 600; }
.ticket__head span { font-size: 0.74rem; opacity: 0.85; }
.ticket__qr { position: relative; width: 108px; height: 108px; margin: 14px auto 12px; border-radius: 8px; outline: 6px solid #fff; overflow: hidden;
  background: repeating-linear-gradient(90deg, #1d1d1f 0 8px, transparent 8px 16px), repeating-linear-gradient(0deg, #1d1d1f 0 8px, #fff 8px 16px); background-blend-mode: multiply; }
.ticket__scan { position: absolute; left: -6px; right: -6px; height: 3px; background: var(--purple-2); box-shadow: 0 0 14px var(--purple-2), 0 0 28px rgba(106,107,255,0.7); animation: scan 2.8s ease-in-out infinite; }
@keyframes scan { 0%, 100% { top: 0; } 50% { top: calc(100% - 3px); } }
.ticket__foot { display: flex; justify-content: space-between; padding: 0 16px 14px; font-size: 0.7rem; color: var(--ink-2); }
.ticket__foot b { color: #1d1d1f; font-weight: 600; }
.checkin { display: flex; align-items: center; gap: 10px; background: rgba(80,60,255,0.16); border: 1px solid rgba(106,107,255,0.35); color: #fff; padding: 12px 14px; border-radius: 16px; font-weight: 600; font-size: 0.9rem; animation: pop 2.8s var(--ease-out) infinite; }
.checkin i { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--purple-2); color: #fff; font-style: normal; font-size: 0.8rem; }
@keyframes pop { 0%, 42% { opacity: 0; transform: translateY(6px); } 56%, 92% { opacity: 1; transform: none; } 100% { opacity: 0; } }

/* in-phone list + tab bar (events / big mac) */
.list { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.list__title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin: 4px 4px 2px; }
.list--light .list__title { color: var(--ink-2); }
.list__row { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 12px; background: rgba(255,255,255,0.06); }
.list--light .list__row { background: #f6f3ec; }
.list__row div { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.list__row b { font-size: 0.82rem; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.list--light .list__row b { color: #1b1b18; }
.list__row span { font-size: 0.68rem; color: rgba(255,255,255,0.55); }
.list--light .list__row span { color: var(--ink-2); }
.list__row em { font-style: normal; font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.list--light .list__row em { color: var(--ink-2); font-size: 1rem; }
.list__dot { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--purple), var(--purple-2)); flex: none; }
.list__dot--alt { background: linear-gradient(135deg, #3a3a44, #6b6b76); }
.list__emoji { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: #fff; font-style: normal; font-size: 0.95rem; flex: none; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.tabbar { margin-top: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 10px 6px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.tabbar span { text-align: center; font-size: 0.64rem; color: rgba(255,255,255,0.45); padding-top: 14px; position: relative; }
.tabbar span::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 14px; height: 10px; border-radius: 3px; background: currentColor; opacity: 0.8; }
.tabbar span.is-on { color: var(--purple-2); }

/* swap */
/* --cw/--gap drive both the layout and the travel distance, so the cards land
   exactly in each other's slot at any size. */
.swap { --cw: 200px; --gap: 52px; --lift: 96px; position: relative; width: calc(var(--cw) * 2 + var(--gap)); height: 390px; }
.tcard { position: absolute; top: 100px; width: var(--cw); padding: 16px 16px 14px; border-radius: 18px; background: #fff; color: #1d1d1f; box-shadow: 0 24px 60px rgba(27,27,24,0.16); text-align: left; display: flex; flex-direction: column; gap: 3px; }
.tcard b { font-size: 0.95rem; font-weight: 600; margin-top: 10px; }
.tcard span { font-size: 0.75rem; color: var(--ink-2); }
.tcard em { font-style: normal; font-size: 0.7rem; color: var(--ink-2); margin-top: 6px; letter-spacing: 0.04em; }
.tcard__stripe { height: 46px; border-radius: 12px; background: linear-gradient(135deg, var(--purple), var(--purple-2)); }
.tcard__stripe--alt { background: linear-gradient(135deg, #1d1d1f, #4a4a52); }
/* A always passes in front and above, B behind and below — a consistent
   depth order, and a there-and-back cycle so the loop never snaps. */
.tcard--a { left: 0; animation: swapA 7s var(--ease) infinite; z-index: 2; }
.tcard--b { right: 0; animation: swapB 7s var(--ease) infinite; z-index: 1; }
@keyframes swapA {
  0%, 10%  { transform: translate(0, 0) scale(1); box-shadow: 0 24px 60px rgba(27,27,24,0.16); }
  30%      { transform: translate(calc((var(--cw) + var(--gap)) / 2), calc(var(--lift) * -1)) scale(1.04); box-shadow: 0 44px 84px rgba(27,27,24,0.28); }
  50%, 60% { transform: translate(calc(var(--cw) + var(--gap)), 0) scale(1); box-shadow: 0 24px 60px rgba(27,27,24,0.16); }
  80%      { transform: translate(calc((var(--cw) + var(--gap)) / 2), calc(var(--lift) * -1)) scale(1.04); box-shadow: 0 44px 84px rgba(27,27,24,0.28); }
  100%     { transform: translate(0, 0) scale(1); box-shadow: 0 24px 60px rgba(27,27,24,0.16); }
}
@keyframes swapB {
  0%, 10%  { transform: translate(0, 0) scale(1); }
  30%      { transform: translate(calc((var(--cw) + var(--gap)) / -2), var(--lift)) scale(0.96); }
  50%, 60% { transform: translate(calc((var(--cw) + var(--gap)) * -1), 0) scale(1); }
  80%      { transform: translate(calc((var(--cw) + var(--gap)) / -2), var(--lift)) scale(0.96); }
  100%     { transform: translate(0, 0) scale(1); }
}
.swap__btn { position: absolute; top: 145px; left: 50%; transform: translateX(-50%); width: 52px; height: 52px; border-radius: 50%; background: var(--purple); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(80,60,255,0.35); animation: spin 7s var(--ease) infinite; z-index: 3; }
@keyframes spin {
  0%, 10%  { transform: translateX(-50%) rotate(0deg); }
  50%, 60% { transform: translateX(-50%) rotate(180deg); }
  100%     { transform: translateX(-50%) rotate(360deg); }
}
.verified { position: absolute; left: 50%; bottom: 8px; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 980px; background: #fff; color: #1d1d1f; font-size: 0.85rem; font-weight: 500; box-shadow: 0 10px 30px rgba(27,27,24,0.12); white-space: nowrap; }
.verified i { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--purple); color: #fff; font-style: normal; font-size: 0.7rem; }

/* player (podcasts) */
.player { width: min(560px, 100%); background: #fff; color: #1d1d1f; border-radius: 24px; padding: 22px 22px 18px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); text-align: left; animation: float 9s var(--ease) infinite; }
.player__row { display: flex; align-items: center; gap: 14px; }
.player__cover { width: 60px; height: 60px; border-radius: 14px; background: linear-gradient(135deg, var(--purple), var(--purple-2)); display: grid; place-items: center; font-size: 1.5rem; flex: none; }
.player__meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.player__meta b { font-weight: 600; font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player__meta span { font-size: 0.8rem; color: var(--ink-2); }
.player__play { width: 44px; height: 44px; border-radius: 50%; background: var(--purple); display: grid; place-items: center; flex: none; }
.player__play span { width: 0; height: 0; border-left: 12px solid #fff; border-top: 7px solid transparent; border-bottom: 7px solid transparent; margin-left: 3px; }
.wave { display: flex; align-items: flex-end; gap: 3px; height: 46px; margin: 18px 0 10px; }
.wave i { flex: 1; border-radius: 2px; background: #e5e5ea; height: 30%; transform-origin: bottom; }
.wave i.on { background: var(--purple); animation: eq 0.9s ease-in-out infinite alternate; }
@keyframes eq { from { transform: scaleY(0.6); } to { transform: scaleY(1.1); } }
.player__bar { height: 5px; border-radius: 3px; background: #e5e5ea; overflow: hidden; }
.player__bar i { display: block; height: 100%; width: 0; background: var(--purple); }
.player__time { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--ink-2); margin-top: 6px; font-variant-numeric: tabular-nums; }
.lockcard { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding: 12px 14px; border-radius: 16px; background: var(--light); }
.lockcard i { font-style: normal; font-size: 1.1rem; }
.lockcard div { flex: 1; }
.lockcard b { display: block; font-weight: 600; font-size: 0.9rem; }
.lockcard div span { font-size: 0.76rem; color: var(--ink-2); }
.lockcard__cta { font-size: 0.8rem; font-weight: 600; color: #fff; background: var(--purple); padding: 7px 12px; border-radius: 980px; }

/* big mac */
.macstage { position: relative; display: grid; grid-template-columns: auto auto; align-items: center; justify-items: center; gap: 36px; max-width: 100%; }
.creator { display: flex; align-items: center; gap: 12px; text-align: left; }
.creator i { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, #ffe0b0, #ffc98a); color: #8a4b00; font-style: normal; font-weight: 700; font-size: 0.9rem; }
.creator b { display: block; font-weight: 600; }
.creator span { font-size: 0.76rem; color: var(--ink-2); }
.picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.picker__opt { padding: 12px 0; border-radius: 14px; border: 1.5px solid #e8e2d6; font-weight: 600; font-size: 0.95rem; background: #fff; transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out); }
.picker__opt.is-on { background: #fff4e0; border-color: var(--amber-2); transform: scale(1.04); }
.goal { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.goal__row { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--ink-2); }
.goal__row b { color: #1b1b18; font-weight: 600; font-variant-numeric: tabular-nums; }
.goal__bar { height: 8px; border-radius: 4px; background: #f0ebe1; overflow: hidden; }
.goal__bar i { display: block; height: 100%; width: 63%; border-radius: 4px; background: linear-gradient(90deg, var(--amber), var(--amber-2)); transition: width 0.4s var(--ease); }
.mac-cta { margin-top: auto; padding: 15px; border-radius: 16px; background: var(--amber); color: #fff; font-weight: 600; font-size: 1rem; box-shadow: 0 10px 24px rgba(201,127,20,0.3); }
.feed { display: flex; flex-direction: column; gap: 10px; }
.feed__item { display: flex; align-items: center; gap: 12px; background: #fff; padding: 12px 16px 12px 12px; border-radius: 16px; box-shadow: 0 14px 36px rgba(27,27,24,0.1); text-align: left; animation: float 7s var(--ease) infinite; }
.feed__item:nth-child(2) { animation-delay: -2.3s; } .feed__item:nth-child(3) { animation-delay: -4.6s; }
.feed__item i { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: #f3ede2; color: #6b4a12; font-style: normal; font-weight: 700; font-size: 0.8rem; }
.feed__item b { display: block; font-weight: 600; font-size: 0.9rem; }
.feed__item span { font-size: 0.74rem; color: var(--ink-2); }

/* ---------- and much more ---------- */
.more { padding: clamp(72px, 9vw, 112px) var(--pad); text-align: center; }
.more__text { font-size: clamp(1.5rem, 3.4vw, 2.5rem); font-weight: 600; letter-spacing: -0.02em; color: var(--text-2); }

/* ---------- services ---------- */
.services { padding: clamp(90px, 12vw, 150px) 0; text-align: center; }
.services .sub { margin-left: auto; margin-right: auto; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(40px, 5vw, 64px); text-align: left; }
.svc { background: var(--light); border-radius: var(--r); padding: 30px 28px; transition: transform 0.35s var(--ease-out), box-shadow 0.35s; }
.svc:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(29,29,31,0.08); }
.svc h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
.svc p { color: var(--ink-2); font-size: 0.98rem; }

/* ---------- stats ---------- */
.stats { padding: clamp(90px, 12vw, 150px) 0; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.stat__num { font-size: clamp(3rem, 7vw, 5.2rem); font-weight: 600; letter-spacing: -0.04em; line-height: 1; background: linear-gradient(92deg, #a99bff, #6a6bff 60%, #503cff); -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block; }
.stat__num small { font-size: 0.45em; font-weight: 600; margin-left: 4px; }
.stat p { color: var(--text-2); margin-top: 12px; max-width: 300px; font-size: 1rem; }

/* ---------- studio ---------- */
.studio { padding: clamp(90px, 12vw, 150px) 0; text-align: center; }
.studio__quote { font-size: clamp(1.5rem, 3.4vw, 2.5rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; max-width: 26ch; margin: 0 auto 18px; }
.studio__author { color: var(--ink-2); font-weight: 500; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(50px, 6vw, 80px); text-align: left; }
.quote { background: var(--light); border-radius: var(--r); padding: 28px; }
.quote blockquote { font-size: 0.98rem; line-height: 1.55; color: #3a3a3c; }
.quote figcaption { margin-top: 18px; display: flex; flex-direction: column; }
.quote figcaption b { font-weight: 600; }
.quote figcaption span { color: var(--ink-2); font-size: 0.85rem; }

/* ---------- contact ---------- */
.cta { padding: clamp(90px, 12vw, 150px) 0 0; text-align: center; }
.cta__title { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.04; margin-bottom: 30px; }
.cta__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 70px; text-align: left; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 36px; }
.cta__label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--purple-soft); }
.cta__grid p { margin-top: 8px; color: var(--text-2); line-height: 1.75; font-size: 0.95rem; }
.cta__grid a:hover { color: #fff; }
.footer { margin-top: 60px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer__inner { display: flex; justify-content: space-between; padding: 26px var(--pad); color: var(--text-2); font-size: 0.8rem; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .svc-grid, .quotes, .stats__grid, .cta__grid { grid-template-columns: 1fr 1fr; }
  .macstage { grid-template-columns: 1fr; }
  .feed { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 720px) {
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__links { display: none; }
  .nav .btn--sm { display: none; }
  .burger { display: flex; }
  .nav.is-open .nav__links { display: flex; flex-direction: column; gap: 18px; position: absolute; left: 0; right: 0; top: 52px; padding: 22px var(--pad) 28px; background: rgba(0,0,0,0.96); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav.is-open .nav__links a { font-size: 1.3rem; }
  .svc-grid, .quotes, .stats__grid, .cta__grid { grid-template-columns: 1fr; }
  .phone { width: 260px; }
  .tabbar, .phone .list__row + .list__row { display: none; }
  .ticket__qr { width: 96px; height: 96px; }
  /* same keyframes — only the variables change */
  /* card width follows the viewport so the pair never exceeds it on small phones */
  .swap { --gap: 26px; --cw: min(148px, (100vw - 2 * var(--pad) - var(--gap) - 4px) / 2); --lift: 102px; height: 400px; }
  .tcard { top: 106px; }
  .tcard__stripe { height: 36px; }
  .swap__btn { top: 154px; }
  .feed { flex-direction: column; }
  .footer__inner { flex-direction: column; gap: 6px; text-align: center; }
}
/* very small phones: the ticket text wraps an extra line, so the cards need
   more lift to still clear each other (and the button) as they cross */
@media (max-width: 340px) {
  .swap { --lift: 120px; height: 470px; }
  .tcard { top: 124px; }
  .swap__btn { top: 184px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  #flow { display: none; }
  .reveal, .hero .kicker, .hero__title, .hero__sub, .hero__links, .hero__scroll { opacity: 1; transform: none; }
}
