/* altcotn.top — consolidated stylesheet */
/* Built from tokens + base + sections + animations + polish + extras */


/* ==== tokens.css ==== */
:root {
  /* Core */
  --ink: #0c0b0a;
  --ink-2: #141211;
  --ink-3: #1c1917;
  --paper: #f7f2ea;
  --paper-dim: rgba(247, 242, 234, 0.62);
  --paper-mute: rgba(247, 242, 234, 0.38);

  /* Ins gradient system */
  --blush: #ff6b8a;
  --peach: #ff9a6c;
  --lilac: #c9a0ff;
  --mint: #7dffc3;
  --gold: #ffd36b;
  --sky: #8ec5ff;

  --grad-ins: linear-gradient(135deg, var(--blush), var(--peach) 40%, var(--lilac));
  --grad-soft: linear-gradient(120deg, var(--mint), var(--gold));
  --grad-warm: linear-gradient(145deg, var(--peach), var(--blush));
  --grad-cool: linear-gradient(160deg, var(--lilac), var(--sky));

  /* Surfaces */
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --line: rgba(247, 242, 234, 0.1);
  --line-strong: rgba(247, 242, 234, 0.18);

  /* Type */
  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-body: "Syne", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Space / rhythm */
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --section: clamp(5rem, 12vw, 9rem);
  --radius-phone: 28px;
  --radius-soft: 18px;
  --max: 1180px;
  --nav-h: 72px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --dur-fast: 180ms;
  --dur: 520ms;
  --dur-slow: 900ms;

  /* Cursor */
  --cursor-x: 50%;
  --cursor-y: 50%;
  --scroll-p: 0;
}


/* ==== base.css ==== */
/* ============================================================
   altcotn.top — base, layout, chrome
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  min-height: 100%;
  color: var(--paper);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  background: var(--ink);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-loading {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: none;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--blush);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--peach);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Ambient field ---------- */

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
  mix-blend-mode: screen;
}

.ambient__blob--a {
  width: 52vw;
  height: 52vw;
  top: -18%;
  left: -12%;
  background: radial-gradient(circle, rgba(255, 107, 138, 0.55), transparent 68%);
  animation: driftA 18s ease-in-out infinite;
}

.ambient__blob--b {
  width: 44vw;
  height: 44vw;
  right: -10%;
  top: 20%;
  background: radial-gradient(circle, rgba(201, 160, 255, 0.45), transparent 68%);
  animation: driftB 22s ease-in-out infinite;
}

.ambient__blob--c {
  width: 38vw;
  height: 38vw;
  left: 30%;
  bottom: -15%;
  background: radial-gradient(circle, rgba(255, 154, 108, 0.35), transparent 68%);
  animation: driftC 20s ease-in-out infinite;
}

.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ambient__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

@keyframes driftA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6%, 8%) scale(1.08); }
}
@keyframes driftB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-8%, 5%) scale(1.1); }
}
@keyframes driftC {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, -10%) scale(0.94); }
}

/* ---------- Custom cursor ---------- */

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paper);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width var(--dur-fast) var(--ease-out),
    height var(--dur-fast) var(--ease-out),
    background var(--dur-fast),
    mix-blend-mode var(--dur-fast);
  will-change: transform;
}

.cursor.is-hover {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1.5px solid var(--paper);
  mix-blend-mode: difference;
}

.cursor.is-press {
  transform: translate(-50%, -50%) scale(0.75);
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(247, 242, 234, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), opacity 0.35s;
  will-change: transform;
}

.cursor-ring.is-hover {
  width: 72px;
  height: 72px;
  opacity: 0.4;
}

@media (pointer: coarse) {
  .cursor,
  .cursor-ring {
    display: none;
  }
  body {
    cursor: auto;
  }
  button,
  a {
    cursor: pointer;
  }
}

/* ---------- Loader ---------- */

.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
  width: min(280px, 70vw);
}

.loader__brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.loader__brand span {
  background: var(--grad-ins);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.loader__track {
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
}

.loader__fill {
  height: 100%;
  width: 0%;
  background: var(--grad-ins);
  border-radius: inherit;
  transition: width 0.15s linear;
}

.loader__pct {
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--paper-mute);
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  transition: background var(--dur), backdrop-filter var(--dur), border-color var(--dur);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(12, 11, 10, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line);
}

.nav__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  z-index: 2;
}

.nav__logo em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  background: var(--grad-ins);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-dim);
  transition: color var(--dur-fast);
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--grad-ins);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.nav__links a:hover {
  color: var(--paper);
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--paper);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast);
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(255, 107, 138, 0.25);
}

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 2;
}

.nav__burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--paper);
  transition: transform 0.35s var(--ease-out), opacity 0.25s, top 0.35s;
}

.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger span:nth-child(3) { top: 24px; }

.nav__burger.is-open span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

@media (max-width: 860px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: block;
  }
  .nav.is-open .nav__mobile {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.nav__mobile {
  position: fixed;
  inset: 0;
  background: rgba(12, 11, 10, 0.96);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s, visibility 0.4s;
  z-index: 1;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.nav__mobile a em {
  font-style: italic;
  background: var(--grad-ins);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Shared utilities ---------- */

.wrap {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--grad-ins);
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.display em,
.grad-text {
  font-style: italic;
  background: var(--grad-ins);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.65;
  color: var(--paper-dim);
  max-width: 36ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast),
    background var(--dur-fast),
    color var(--dur-fast),
    border-color var(--dur-fast);
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-out);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--primary {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 12px 40px rgba(255, 107, 138, 0.22);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(255, 107, 138, 0.35);
}

.btn--ghost {
  color: var(--paper);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn--glow {
  color: var(--ink);
  background: var(--grad-ins);
  background-size: 160% 160%;
  animation: shimmer 6s ease infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Reveal motion lives in animations.css */

/* Main sits above ambient */
main {
  position: relative;
  z-index: 1;
}


/* ==== sections.css ==== */
/* ============================================================
   altcotn.top — page sections
   ============================================================ */

/* ---------- HERO ---------- */

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding: calc(var(--nav-h) + 1.5rem) 0 3rem;
  overflow: hidden;
}

.hero__grid {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__brand {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin: 1.1rem 0 1.35rem;
}

.hero__brand em {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  background: var(--grad-ins);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 16ch;
  margin-bottom: 1rem;
  color: var(--paper);
}

.hero__sub {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--paper-dim);
  max-width: 32ch;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(640px, 78dvh);
}

.hero__glow {
  position: absolute;
  width: 120%;
  height: 120%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 107, 138, 0.35), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(201, 160, 255, 0.28), transparent 40%);
  filter: blur(20px);
  pointer-events: none;
  animation: pulseGlow 7s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

/* Phone story player */
.phone {
  position: relative;
  width: min(300px, 72vw);
  aspect-ratio: 9 / 17.2;
  border-radius: var(--radius-phone);
  background: #111;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 0 8px rgba(255, 255, 255, 0.03),
    0 40px 90px rgba(0, 0, 0, 0.55),
    0 0 100px rgba(255, 107, 138, 0.18);
  overflow: hidden;
  isolation: isolate;
  transform: translateY(12px) rotate(-2deg);
}

.hero.is-ready .phone,
body.is-ready .hero .hero__visual.is-in .phone {
  animation: phoneFloat 8s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(12px) rotate(-2deg); }
  50% { transform: translateY(0) rotate(-1deg); }
}

.phone__bars {
  position: absolute;
  top: 12px;
  left: 10px;
  right: 10px;
  z-index: 20;
  display: flex;
  gap: 3px;
}

.phone__bar {
  flex: 1;
  height: 2px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.phone__bar > i {
  display: block;
  height: 100%;
  width: 0;
  background: #fff;
  border-radius: inherit;
}

.phone__bar.done > i { width: 100%; }
.phone__bar.active > i {
  animation: fillBar var(--story-dur, 4s) linear forwards;
}

@keyframes fillBar {
  from { width: 0; }
  to { width: 100%; }
}

.phone__chrome {
  position: absolute;
  top: 24px;
  left: 12px;
  right: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  padding: 1.5px;
  background: var(--grad-ins);
  flex-shrink: 0;
}

.phone__avatar span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #161412;
  border: 1.5px solid #111;
}

.phone__meta strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
}

.phone__meta em {
  font-style: normal;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
}

.phone__badge {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 7px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
}

.phone__slides {
  position: absolute;
  inset: 0;
}

.phone__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.45s ease, transform 0.55s var(--ease-out);
  display: grid;
  place-items: end center;
  padding: 0 18px 72px;
  text-align: left;
}

.phone__slide.on {
  opacity: 1;
  transform: scale(1);
}

.phone__slide .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ps1 .bg {
  background:
    radial-gradient(ellipse 90% 70% at 50% 20%, rgba(255, 107, 138, 0.5), transparent 55%),
    radial-gradient(ellipse 80% 60% at 80% 90%, rgba(201, 160, 255, 0.4), transparent 50%),
    linear-gradient(165deg, #1a1218, #0c0b0a 60%);
}
.ps2 .bg {
  background:
    radial-gradient(ellipse 70% 50% at 30% 30%, rgba(125, 255, 195, 0.3), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 70%, rgba(255, 211, 107, 0.25), transparent 50%),
    linear-gradient(180deg, #0e1412, #0c0b0a);
}
.ps3 .bg {
  background:
    radial-gradient(ellipse 80% 55% at 70% 25%, rgba(255, 154, 108, 0.45), transparent 50%),
    linear-gradient(200deg, #1a120e, #0c0b0a);
}
.ps4 .bg {
  background:
    radial-gradient(ellipse 90% 60% at 50% 40%, rgba(201, 160, 255, 0.4), transparent 55%),
    linear-gradient(180deg, #12101a, #0c0b0a);
}

.phone__slide .copy {
  position: relative;
  z-index: 2;
  width: 100%;
}

.phone__slide .kicker {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.phone__slide h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.phone__slide h3 em {
  font-style: italic;
  background: var(--grad-ins);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.phone__slide p {
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
  max-width: 22ch;
}

.phone__tap {
  position: absolute;
  top: 50px;
  bottom: 60px;
  width: 42%;
  z-index: 15;
}
.phone__tap--prev { left: 0; }
.phone__tap--next { right: 0; }

.phone__hint {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  z-index: 16;
  pointer-events: none;
}

@media (max-width: 920px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__sub {
    margin-inline: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__headline {
    margin-inline: auto;
  }
  .hero__brand {
    text-align: center;
  }
  .hero__brand em {
    display: inline;
  }
  .eyebrow {
    justify-content: center;
  }
  .eyebrow::before {
    display: none;
  }
  .phone {
    transform: none;
    animation: phoneFloatMobile 8s ease-in-out infinite;
  }
  @keyframes phoneFloatMobile {
    0%, 100% { transform: translateY(8px); }
    50% { transform: translateY(0); }
  }
  .hero__visual {
    min-height: auto;
    padding-top: 1rem;
  }
}

/* ---------- Marquee ---------- */

.marquee {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--line);
  background: rgba(12, 11, 10, 0.4);
  backdrop-filter: blur(8px);
  overflow: hidden;
  padding: 1.1rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 32s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.marquee__item em {
  font-style: italic;
  background: var(--grad-ins);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.marquee__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad-ins);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Manifesto / Flow path ---------- */

.flow {
  padding: var(--section) 0;
  position: relative;
}

.flow__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: clamp(3rem, 7vw, 5rem);
  align-items: end;
}

.flow__head h2 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
}

.flow__rail {
  position: relative;
  display: grid;
  gap: 0;
}

.flow__line {
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--blush),
    var(--peach),
    var(--lilac),
    var(--mint)
  );
  opacity: 0.35;
  border-radius: 99px;
  overflow: hidden;
}

.flow__line > span {
  display: block;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #fff, var(--gold));
  box-shadow: 0 0 16px rgba(255, 211, 107, 0.6);
  transition: height 0.1s linear;
}

.flow__steps {
  display: grid;
  gap: 0;
}

.flow-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.flow-step:last-child {
  border-bottom: none;
}

.flow-step__idx {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  background: var(--ink-2);
  border: 1px solid var(--glass-border);
  position: relative;
  z-index: 2;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-spring);
}

.flow-step.is-in .flow-step__idx {
  border-color: transparent;
  background: var(--grad-ins);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 0 28px rgba(255, 107, 138, 0.35);
  transform: scale(1.05);
}

.flow-step__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.flow-step__body h3 em {
  font-style: italic;
  background: var(--grad-ins);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.flow-step__body p {
  color: var(--paper-dim);
  max-width: 48ch;
  font-size: 0.98rem;
  line-height: 1.65;
}

.flow-step__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--paper-dim);
}

.tag--hot {
  background: linear-gradient(135deg, rgba(255, 107, 138, 0.28), rgba(255, 154, 108, 0.18));
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--paper);
}

@media (max-width: 760px) {
  .flow__head {
    grid-template-columns: 1fr;
  }
}

/* ---------- Lookbook ---------- */

.lookbook {
  padding: var(--section) 0;
  position: relative;
}

.lookbook__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.lookbook__head h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}

.lookbook__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.shot {
  position: relative;
  border-radius: var(--radius-soft);
  overflow: hidden;
  isolation: isolate;
  min-height: 280px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  transition: transform 0.55s var(--ease-out), border-color 0.35s;
}

.shot:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
}

.shot--tall { grid-column: span 5; min-height: 420px; }
.shot--wide { grid-column: span 7; min-height: 420px; }
.shot--mid { grid-column: span 4; min-height: 300px; }
.shot--sq { grid-column: span 4; min-height: 300px; }
.shot--wide2 { grid-column: span 8; min-height: 300px; }

.shot__media {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease-out);
}

.shot:hover .shot__media {
  transform: scale(1.05);
}

.shot__media--1 {
  background:
    linear-gradient(160deg, rgba(12, 11, 10, 0.15), rgba(12, 11, 10, 0.55)),
    radial-gradient(circle at 30% 30%, rgba(255, 107, 138, 0.7), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 160, 255, 0.55), transparent 45%),
    linear-gradient(135deg, #2a1820, #0c0b0a);
}
.shot__media--2 {
  background:
    linear-gradient(180deg, transparent 40%, rgba(12, 11, 10, 0.7)),
    radial-gradient(circle at 70% 30%, rgba(255, 154, 108, 0.65), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(125, 255, 195, 0.35), transparent 40%),
    linear-gradient(200deg, #241810, #0c0b0a);
}
.shot__media--3 {
  background:
    radial-gradient(circle at 50% 40%, rgba(201, 160, 255, 0.55), transparent 50%),
    radial-gradient(circle at 20% 20%, rgba(142, 197, 255, 0.35), transparent 40%),
    linear-gradient(180deg, #18141f, #0c0b0a);
}
.shot__media--4 {
  background:
    radial-gradient(circle at 40% 60%, rgba(255, 211, 107, 0.45), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 138, 0.4), transparent 40%),
    linear-gradient(145deg, #1f1810, #0c0b0a);
}
.shot__media--5 {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(125, 255, 195, 0.4), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255, 154, 108, 0.35), transparent 40%),
    linear-gradient(180deg, #101816, #0c0b0a);
}

.shot__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12, 11, 10, 0.85) 100%);
  z-index: 1;
}

.shot__meta {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.shot__meta h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.shot__meta h3 em {
  font-style: italic;
}

.shot__meta span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

.shot__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (max-width: 860px) {
  .shot--tall,
  .shot--wide,
  .shot--mid,
  .shot--sq,
  .shot--wide2 {
    grid-column: span 12;
    min-height: 260px;
  }
}

/* ---------- Studio strip (sticky horizontal feel) ---------- */

.studio {
  padding: var(--section) 0;
  position: relative;
  overflow: hidden;
}

.studio__head {
  margin-bottom: 2.5rem;
}

.studio__head h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  max-width: 14ch;
}

.studio__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 340px);
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  padding-inline: var(--pad);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 107, 138, 0.4) transparent;
}

.studio__card {
  scroll-snap-align: start;
  border-radius: var(--radius-soft);
  padding: 1.75rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.45s var(--ease-out);
  text-decoration: none;
  color: inherit;
}

a.shot {
  text-decoration: none;
  color: inherit;
  display: block;
}

.studio__card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.studio__card::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
}

.studio__card--1::before { background: var(--blush); }
.studio__card--2::before { background: var(--peach); }
.studio__card--3::before { background: var(--lilac); }
.studio__card--4::before { background: var(--mint); }
.studio__card--5::before { background: var(--gold); }

.studio__card .num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--paper-mute);
}

.studio__card h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  margin: 1rem 0 0.6rem;
}

.studio__card h3 em {
  font-style: italic;
  background: var(--grad-ins);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.studio__card p {
  color: var(--paper-dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

.studio__card .foot {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

.studio__card .foot i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: grid;
  place-items: center;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.studio__card:hover .foot i {
  background: var(--paper);
  color: var(--ink);
  border-color: transparent;
}

.studio__card .foot i svg {
  width: 12px;
  height: 12px;
}

/* ---------- Rhythm / metrics (not in hero) ---------- */

.rhythm {
  padding: var(--section) 0;
  position: relative;
}

.rhythm__panel {
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 107, 138, 0.18), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(201, 160, 255, 0.15), transparent 45%),
    rgba(255, 255, 255, 0.03);
  padding: clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
  position: relative;
}

.rhythm__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.rhythm__panel h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin: 0.85rem 0 1rem;
  max-width: 14ch;
}

.rhythm__stats {
  display: grid;
  gap: 1.25rem;
}

.stat {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.stat:last-child {
  border-bottom: none;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--grad-ins);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--paper-mute);
  letter-spacing: 0.04em;
}

.ring-viz {
  width: min(260px, 100%);
  margin-inline: auto;
  aspect-ratio: 1;
  position: relative;
}

.ring-viz svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-viz .track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 10;
}

.ring-viz .prog {
  fill: none;
  stroke: url(#siteRing);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 660;
  stroke-dashoffset: 660;
}

.ring-viz.is-in .prog {
  animation: drawSiteRing 1.6s var(--ease-out) forwards;
}

@keyframes drawSiteRing {
  to { stroke-dashoffset: 120; }
}

.ring-viz__center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(0);
}

.ring-viz__center b {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}

.ring-viz__center small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

@media (max-width: 800px) {
  .rhythm__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Voices ---------- */

.voices {
  padding: var(--section) 0;
}

.voices__head {
  margin-bottom: 2.5rem;
}

.voices__head h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}

.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.voice {
  padding: 1.75rem;
  border-radius: var(--radius-soft);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 280px;
  transition: border-color 0.35s, background 0.35s;
}

.voice:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.045);
}

.voice blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  flex: 1;
}

.voice blockquote em {
  font-style: italic;
  background: var(--grad-ins);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.voice__who {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.voice__who .av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-ins);
  padding: 2px;
}

.voice__who .av i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--ink-2);
}

.voice__who strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}

.voice__who span {
  font-size: 0.75rem;
  color: var(--paper-mute);
}

@media (max-width: 860px) {
  .voices__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Pricing ---------- */

.plans {
  padding: var(--section) 0;
}

.plans__head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.plans__head .eyebrow {
  justify-content: center;
}

.plans__head .eyebrow::before {
  display: none;
}

.plans__head h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin: 0.85rem auto 0.75rem;
}

.plans__head p {
  margin-inline: auto;
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.plan {
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 2rem 1.65rem;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.35s;
}

.plan:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.plan--featured {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 107, 138, 0.22), transparent 55%),
    rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 138, 0.35);
  box-shadow: 0 24px 60px rgba(255, 107, 138, 0.12);
}

.plan__badge {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--grad-ins);
  color: var(--ink);
}

.plan__name {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-bottom: 0.75rem;
}

.plan__price {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.plan__price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--paper-mute);
  letter-spacing: 0;
}

.plan__desc {
  color: var(--paper-dim);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  min-height: 2.8em;
}

.plan__list {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 2rem;
  flex: 1;
}

.plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--paper-dim);
}

.plan__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--grad-ins);
  flex-shrink: 0;
}

.plan .btn {
  width: 100%;
}

@media (max-width: 860px) {
  .plans__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Final CTA ---------- */

.finale {
  padding: var(--section) 0 calc(var(--section) * 0.7);
  position: relative;
}

.finale__panel {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: min(640px, 85dvh);
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad);
  border: 1px solid var(--line);
}

.finale__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255, 107, 138, 0.4), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 80%, rgba(201, 160, 255, 0.3), transparent 50%),
    radial-gradient(ellipse 60% 40% at 15% 70%, rgba(255, 154, 108, 0.25), transparent 45%),
    linear-gradient(180deg, #161214, #0c0b0a);
  z-index: 0;
}

.finale__orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.5;
  animation: float 9s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.finale__orb--a {
  top: 10%;
  left: 8%;
  background: var(--blush);
}
.finale__orb--b {
  bottom: 5%;
  right: 10%;
  background: var(--lilac);
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -18px); }
}

.finale__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.finale__content h2 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  margin: 0.85rem 0 1rem;
}

.finale__content .lede {
  margin-inline: auto;
  margin-bottom: 2rem;
  max-width: 40ch;
}

.finale__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ---------- Footer ---------- */

.footer {
  position: relative;
  z-index: 1;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer__brand {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.footer__brand em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  background: var(--grad-ins);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer__blurb {
  color: var(--paper-mute);
  font-size: 0.9rem;
  max-width: 28ch;
  line-height: 1.55;
}

.footer h4 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-bottom: 1rem;
}

.footer__col a {
  display: block;
  font-size: 0.92rem;
  color: var(--paper-dim);
  padding: 0.3rem 0;
  transition: color var(--dur-fast);
}

.footer__col a:hover {
  color: var(--paper);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--paper-mute);
  letter-spacing: 0.04em;
}

.footer__social {
  display: flex;
  gap: 1.25rem;
}

.footer__social a:hover {
  color: var(--paper);
}

@media (max-width: 800px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track {
    animation: none;
  }
  .phone__bar.active > i {
    width: 100%;
  }
  html {
    scroll-behavior: auto;
  }
}


/* ==== animations.css ==== */
/* ============================================================
   altcotn.top — scroll & entrance motion system
   ============================================================ */

:root {
  --reveal-dur: 0.95s;
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --reveal-dist: 56px;
  --reveal-dist-lg: 88px;
}

/* Base — hidden until .is-in */
.reveal {
  opacity: 0;
  will-change: transform, opacity, filter;
  transition:
    opacity var(--reveal-dur) var(--reveal-ease),
    transform var(--reveal-dur) var(--reveal-ease),
    filter var(--reveal-dur) var(--reveal-ease-soft),
    clip-path 1.1s var(--reveal-ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: none;
}

/* Direction presets */
.reveal-up {
  transform: translate3d(0, var(--reveal-dist), 0);
}

.reveal-down {
  transform: translate3d(0, calc(var(--reveal-dist) * -0.7), 0);
}

.reveal-left {
  transform: translate3d(calc(var(--reveal-dist) * -1.15), 0, 0);
}

.reveal-right {
  transform: translate3d(var(--reveal-dist-lg), 0, 0);
}

.reveal-left-up {
  transform: translate3d(calc(var(--reveal-dist) * -0.9), var(--reveal-dist), 0);
}

.reveal-right-up {
  transform: translate3d(calc(var(--reveal-dist) * 0.9), var(--reveal-dist), 0);
}

.reveal-scale {
  transform: translate3d(0, 28px, 0) scale(0.92);
}

.reveal-scale-in {
  transform: scale(1.08);
  filter: blur(6px);
}

.reveal-blur {
  transform: translate3d(0, 24px, 0);
  filter: blur(12px);
}

.reveal-rotate {
  transform: translate3d(0, 40px, 0) rotate(-3deg);
  transform-origin: left center;
}

.reveal-rotate-r {
  transform: translate3d(0, 40px, 0) rotate(3deg);
  transform-origin: right center;
}

/* Clip / mask wipes */
.reveal-clip-x {
  transform: none;
  clip-path: inset(0 100% 0 0);
}

.reveal-clip-y {
  transform: none;
  clip-path: inset(100% 0 0 0);
}

.reveal-clip-x.is-in,
.reveal-clip-y.is-in {
  clip-path: inset(0 0 0 0);
}

/* Soft fade only */
.reveal-fade {
  transform: none;
}

/* Stagger delays */
.reveal-d1 { transition-delay: 0.07s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.21s; }
.reveal-d4 { transition-delay: 0.28s; }
.reveal-d5 { transition-delay: 0.35s; }
.reveal-d6 { transition-delay: 0.42s; }
.reveal-d7 { transition-delay: 0.49s; }
.reveal-d8 { transition-delay: 0.56s; }

/* JS-assigned stagger via custom property */
.reveal[style*="--stagger"] {
  transition-delay: var(--stagger, 0s);
}

/* ---------- Section-specific polish ---------- */

/* Hero: copy from left, phone from right */
.hero .hero__copy .reveal {
  transform: translate3d(-48px, 18px, 0);
}

.hero .hero__copy .reveal.is-in {
  transform: none;
}

.hero .hero__visual.reveal {
  transform: translate3d(64px, 24px, 0) scale(0.94);
  filter: blur(4px);
}

.hero .hero__visual.reveal.is-in {
  transform: none;
  filter: none;
}

.hero .phone {
  transition: transform 1.1s var(--reveal-ease);
}

.hero .hero__visual.reveal:not(.is-in) .phone {
  transform: translateY(28px) rotate(-6deg);
}

.hero .hero__visual.reveal.is-in .phone {
  /* keep float animation after settle */
  animation: phoneFloat 8s ease-in-out 0.6s infinite;
}

/* Flow steps: alternate left / right slide */
.flow-step.reveal {
  opacity: 0;
}

.flow-step:nth-child(odd).reveal {
  transform: translate3d(-72px, 20px, 0);
}

.flow-step:nth-child(even).reveal {
  transform: translate3d(72px, 20px, 0);
}

.flow-step.reveal.is-in {
  opacity: 1;
  transform: none;
}

.flow-step .flow-step__body > * {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.7s var(--reveal-ease),
    transform 0.7s var(--reveal-ease);
}

.flow-step.is-in .flow-step__body > *:nth-child(1) {
  transition-delay: 0.12s;
  opacity: 1;
  transform: none;
}
.flow-step.is-in .flow-step__body > *:nth-child(2) {
  transition-delay: 0.22s;
  opacity: 1;
  transform: none;
}
.flow-step.is-in .flow-step__body > *:nth-child(3) {
  transition-delay: 0.32s;
  opacity: 1;
  transform: none;
}

.flow-step__idx {
  transition:
    border-color 0.45s,
    box-shadow 0.45s,
    transform 0.55s cubic-bezier(0.34, 1.4, 0.64, 1),
    background 0.45s,
    color 0.45s;
}

/* Lookbook shots: cascade from sides + scale */
.shot.reveal {
  opacity: 0;
  transition:
    opacity 0.9s var(--reveal-ease),
    transform 0.9s var(--reveal-ease),
    border-color 0.35s,
    filter 0.9s var(--reveal-ease);
}

.shot--tall.reveal {
  transform: translate3d(-60px, 40px, 0) scale(0.94);
}
.shot--wide.reveal {
  transform: translate3d(60px, 40px, 0) scale(0.94);
}
.shot--mid.reveal {
  transform: translate3d(-40px, 48px, 0) scale(0.95);
}
.shot--sq.reveal {
  transform: translate3d(0, 56px, 0) scale(0.92);
}
.shot--wide2.reveal {
  transform: translate3d(48px, 48px, 0) scale(0.95);
}

.shot.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

.shot .shot__meta {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.65s var(--reveal-ease) 0.2s,
    transform 0.65s var(--reveal-ease) 0.2s;
}

.shot.is-in .shot__meta {
  opacity: 1;
  transform: none;
}

.shot .shot__media {
  transition: transform 0.8s var(--reveal-ease);
}

.shot.reveal:not(.is-in) .shot__media {
  transform: scale(1.12);
}

.shot.reveal.is-in .shot__media {
  transform: scale(1);
}

.shot:hover .shot__media {
  transform: scale(1.05);
}

/* Studio cards: slide from right in a wave */
.studio__card.reveal {
  opacity: 0;
  transform: translate3d(80px, 24px, 0) rotate(1.5deg);
  transition:
    opacity 0.85s var(--reveal-ease),
    transform 0.85s var(--reveal-ease),
    border-color 0.35s;
}

.studio__card.reveal.is-in {
  opacity: 1;
  transform: none;
}

.studio__card:hover {
  transform: translateY(-3px);
}

.studio__card.reveal.is-in:hover {
  transform: translateY(-3px);
}

/* Voices: left / up / right */
.voice.reveal {
  opacity: 0;
  transition:
    opacity 0.9s var(--reveal-ease),
    transform 0.9s var(--reveal-ease),
    border-color 0.35s,
    background 0.35s;
}

.voices__grid .voice:nth-child(1).reveal {
  transform: translate3d(-64px, 28px, 0);
}
.voices__grid .voice:nth-child(2).reveal {
  transform: translate3d(0, 56px, 0);
}
.voices__grid .voice:nth-child(3).reveal {
  transform: translate3d(64px, 28px, 0);
}

.voice.reveal.is-in {
  opacity: 1;
  transform: none;
}

.voice blockquote {
  transition: transform 0.7s var(--reveal-ease) 0.15s, opacity 0.7s var(--reveal-ease) 0.15s;
}

.voice.reveal:not(.is-in) blockquote {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}

.voice.reveal.is-in blockquote {
  opacity: 1;
  transform: none;
}

/* Plans: rise with slight horizontal offset */
.plan.reveal {
  opacity: 0;
  transition:
    opacity 0.9s var(--reveal-ease),
    transform 0.9s var(--reveal-ease),
    border-color 0.35s;
}

.plans__grid .plan:nth-child(1).reveal {
  transform: translate3d(-48px, 48px, 0) scale(0.96);
}
.plans__grid .plan:nth-child(2).reveal {
  transform: translate3d(0, 64px, 0) scale(0.94);
}
.plans__grid .plan:nth-child(3).reveal {
  transform: translate3d(48px, 48px, 0) scale(0.96);
}

.plan.reveal.is-in {
  opacity: 1;
  transform: none;
}

.plan.reveal.is-in:hover {
  transform: translateY(-4px);
}

/* Stats: slide from left */
.stat.reveal {
  transform: translate3d(-40px, 0, 0);
}

.stat.reveal.is-in {
  transform: none;
}

/* Ring: scale + blur */
.ring-viz.reveal {
  transform: scale(0.8);
  filter: blur(8px);
  opacity: 0;
}

.ring-viz.reveal.is-in {
  transform: none;
  filter: none;
  opacity: 1;
}

/* Marquee soft fade-in */
.marquee {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 1s var(--reveal-ease), transform 1s var(--reveal-ease);
}

.marquee.is-in {
  opacity: 1;
  transform: none;
}

/* Finale panel */
.finale__panel {
  opacity: 0;
  transform: translate3d(0, 48px, 0) scale(0.97);
  transition:
    opacity 1s var(--reveal-ease),
    transform 1s var(--reveal-ease);
}

.finale__panel.is-in {
  opacity: 1;
  transform: none;
}

.finale__content .reveal {
  transform: translate3d(0, 32px, 0);
}

.finale__content .reveal.is-in {
  transform: none;
}

/* Section heads: title from left, lede from right */
.flow__head .display.reveal,
.lookbook__head .display.reveal,
.studio__head .display.reveal,
.voices__head .display.reveal,
.rhythm__panel .display.reveal {
  transform: translate3d(-56px, 20px, 0);
}

.flow__head .lede.reveal,
.lookbook__head .lede.reveal,
.rhythm__panel .lede.reveal {
  transform: translate3d(48px, 16px, 0);
}

.plans__head .display.reveal {
  transform: translate3d(0, 36px, 0) scale(0.96);
}

/* Footer columns */
.footer__grid > * {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.8s var(--reveal-ease), transform 0.8s var(--reveal-ease);
}

.footer.is-in .footer__grid > *:nth-child(1) {
  transition-delay: 0.05s;
  opacity: 1;
  transform: none;
}
.footer.is-in .footer__grid > *:nth-child(2) {
  transition-delay: 0.12s;
  opacity: 1;
  transform: none;
}
.footer.is-in .footer__grid > *:nth-child(3) {
  transition-delay: 0.19s;
  opacity: 1;
  transform: none;
}
.footer.is-in .footer__grid > *:nth-child(4) {
  transition-delay: 0.26s;
  opacity: 1;
  transform: none;
}

/* Tag chips pop */
.flow-step__tags .tag {
  opacity: 0;
  transform: translate3d(-12px, 8px, 0) scale(0.9);
  transition:
    opacity 0.45s var(--reveal-ease),
    transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.flow-step.is-in .flow-step__tags .tag:nth-child(1) {
  transition-delay: 0.35s;
  opacity: 1;
  transform: none;
}
.flow-step.is-in .flow-step__tags .tag:nth-child(2) {
  transition-delay: 0.42s;
  opacity: 1;
  transform: none;
}
.flow-step.is-in .flow-step__tags .tag:nth-child(3) {
  transition-delay: 0.49s;
  opacity: 1;
  transform: none;
}

/* ---------- Line draw under section titles ---------- */
.display.reveal {
  position: relative;
}

/* ---------- Mobile: reduce travel distance ---------- */
@media (max-width: 860px) {
  :root {
    --reveal-dist: 36px;
    --reveal-dist-lg: 44px;
  }

  .flow-step:nth-child(odd).reveal,
  .flow-step:nth-child(even).reveal {
    transform: translate3d(0, 40px, 0);
  }

  .voices__grid .voice:nth-child(1).reveal,
  .voices__grid .voice:nth-child(3).reveal {
    transform: translate3d(0, 40px, 0);
  }

  .plans__grid .plan:nth-child(1).reveal,
  .plans__grid .plan:nth-child(3).reveal {
    transform: translate3d(0, 40px, 0) scale(0.97);
  }

  .studio__card.reveal {
    transform: translate3d(36px, 20px, 0);
  }

  .hero .hero__visual.reveal {
    transform: translate3d(0, 40px, 0) scale(0.96);
  }

  .hero .hero__copy .reveal {
    transform: translate3d(0, 24px, 0);
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-up,
  .reveal-down,
  .reveal-left,
  .reveal-right,
  .reveal-left-up,
  .reveal-right-up,
  .reveal-scale,
  .reveal-scale-in,
  .reveal-blur,
  .reveal-rotate,
  .reveal-rotate-r,
  .reveal-clip-x,
  .reveal-clip-y,
  .reveal-fade,
  .flow-step.reveal,
  .shot.reveal,
  .studio__card.reveal,
  .voice.reveal,
  .plan.reveal,
  .marquee,
  .finale__panel,
  .footer__grid > *,
  .flow-step__tags .tag,
  .flow-step .flow-step__body > *,
  .shot .shot__meta {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    transition: none !important;
  }
}


/* ==== polish.css ==== */
/* ============================================================
   altcotn.top — polish layer (chrome, overlays, micro-UX)
   ============================================================ */

/* Scroll progress */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  z-index: 200;
  background: var(--grad-ins);
  background-size: 200% 100%;
  transform-origin: left;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(255, 107, 138, 0.55);
  transition: width 0.05s linear;
}

/* Active nav link */
.nav__links a.is-active {
  color: var(--paper);
}

.nav__links a.is-active::after {
  transform: scaleX(1);
}

/* Back to top */
.to-top {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--glass-border);
  background: rgba(12, 11, 10, 0.72);
  backdrop-filter: blur(14px);
  color: var(--paper);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.92);
  transition:
    opacity 0.35s var(--ease-out),
    visibility 0.35s,
    transform 0.35s var(--ease-out),
    border-color 0.25s,
    background 0.25s;
}

.to-top.is-show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.to-top:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: var(--paper);
  color: var(--ink);
}

.to-top svg {
  width: 18px;
  height: 18px;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  z-index: 300;
  transform: translateX(-50%) translateY(20px);
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: rgba(247, 242, 234, 0.95);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s var(--ease-out), visibility 0.35s;
  white-space: nowrap;
}

.toast.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: var(--pad);
  background: rgba(8, 7, 6, 0.82);
  backdrop-filter: blur(18px) saturate(1.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s, visibility 0.4s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox__panel {
  width: min(720px, 100%);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--ink-2);
  transform: translateY(28px) scale(0.96);
  transition: transform 0.5s var(--ease-out);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}

.lightbox.is-open .lightbox__panel {
  transform: none;
}

.lightbox__media {
  aspect-ratio: 16 / 10;
  position: relative;
}

.lightbox__media > div {
  position: absolute;
  inset: 0;
}

.lightbox__body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.lightbox__body h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.lightbox__body h3 em {
  font-style: italic;
  background: var(--grad-ins);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lightbox__body span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--paper-mute);
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(12, 11, 10, 0.55);
  color: var(--paper);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background 0.25s, color 0.25s;
}

.lightbox__close:hover {
  background: var(--paper);
  color: var(--ink);
}

.lightbox__close svg {
  width: 16px;
  height: 16px;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(12, 11, 10, 0.5);
  color: var(--paper);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background 0.25s, color 0.25s;
}

.lightbox__nav:hover {
  background: var(--paper);
  color: var(--ink);
}

.lightbox__nav--prev { left: max(1rem, env(safe-area-inset-left)); }
.lightbox__nav--next { right: max(1rem, env(safe-area-inset-right)); }
.lightbox__nav svg { width: 16px; height: 16px; }

.shot {
  cursor: none;
}

.shot__zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 11, 10, 0.35);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}

.shot__zoom svg {
  width: 14px;
  height: 14px;
}

.shot:hover .shot__zoom {
  opacity: 1;
  transform: scale(1);
}

/* Phone slide text choreography */
.phone__slide .copy > * {
  opacity: 0;
  transform: translate3d(-14px, 10px, 0);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
}

.phone__slide.on .copy > *:nth-child(1) {
  transition-delay: 0.12s;
  opacity: 1;
  transform: none;
}
.phone__slide.on .copy > *:nth-child(2) {
  transition-delay: 0.22s;
  opacity: 1;
  transform: none;
}
.phone__slide.on .copy > *:nth-child(3) {
  transition-delay: 0.32s;
  opacity: 1;
  transform: none;
}

.phone.is-paused .phone__bar.active > i {
  animation-play-state: paused;
}

.phone__pause-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  z-index: 18;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(12, 11, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s var(--ease-out);
}

.phone.is-paused .phone__pause-badge {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Studio drag affordance */
.studio__hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 var(--pad) 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

.studio__hint b {
  font-weight: 500;
  color: var(--paper-dim);
}

.studio__track {
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.studio__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.studio__track.is-dragging .studio__card {
  pointer-events: none;
}

/* Contact form */
.contact {
  margin-top: 2rem;
  width: min(440px, 100%);
  margin-inline: auto;
  text-align: left;
}

.contact__row {
  display: grid;
  gap: 0.65rem;
}

.contact label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  resize: vertical;
  min-height: 48px;
  cursor: text;
}

.contact textarea {
  min-height: 96px;
}

.contact input:focus,
.contact textarea:focus {
  border-color: rgba(255, 154, 108, 0.55);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 107, 138, 0.15);
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: rgba(247, 242, 234, 0.28);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.85rem;
  align-items: center;
}

.contact__note {
  font-size: 0.75rem;
  color: var(--paper-mute);
}

/* Section ambient divider line */
.section-rule {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 138, 0.45),
    rgba(201, 160, 255, 0.45),
    transparent
  );
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.8s, transform 1s var(--ease-out);
}

.section-rule.is-in {
  opacity: 1;
  transform: scaleX(1);
}

/* Noise pulse on buttons */
.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.45) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
}

.btn--primary:hover::after {
  transform: translateX(120%);
}

/* Nav logo subtle pulse on load */
body.is-ready .nav__logo em {
  animation: logoShimmer 4s ease-in-out infinite;
}

@keyframes logoShimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
}

/* Hero scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-mute);
  opacity: 0;
  transition: opacity 0.6s 1.2s;
  z-index: 5;
  pointer-events: none;
}

body.is-ready .hero__scroll {
  opacity: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--blush), transparent);
  animation: scrollCue 1.8s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollCue {
  0%, 100% { transform: scaleY(0.35); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

body.is-scrolled-away .hero__scroll {
  opacity: 0;
}

@media (max-width: 920px) {
  .hero__scroll {
    display: none;
  }
}

/* Plan featured glow pulse */
.plan--featured {
  animation: featuredGlow 5s ease-in-out infinite;
}

@keyframes featuredGlow {
  0%, 100% { box-shadow: 0 24px 60px rgba(255, 107, 138, 0.12); }
  50% { box-shadow: 0 28px 70px rgba(255, 107, 138, 0.28); }
}

@media (prefers-reduced-motion: reduce) {
  .progress,
  .to-top,
  .toast,
  .lightbox,
  .lightbox__panel,
  .hero__scroll-line,
  .plan--featured,
  .btn--primary::after,
  body.is-ready .nav__logo em {
    animation: none !important;
    transition: none !important;
  }
}


/* ==== extras.css ==== */
/* ============================================================
   Extra polish — FAQ, skip, mobile CTA, brand shimmer
   ============================================================ */

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10001;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  transition: top 0.25s;
}

.skip-link:focus {
  top: 1rem;
}

.hero__brand em,
.nav__logo em,
.footer__brand em,
.loader__brand span {
  background-size: 200% 100%;
  animation: brandFlow 5s ease infinite;
}

@keyframes brandFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.faq {
  padding: var(--section) 0 calc(var(--section) * 0.55);
  position: relative;
  z-index: 1;
}

.faq__head {
  margin-bottom: 2rem;
}

.faq__head h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 14ch;
}

.faq__list {
  display: grid;
  gap: 0.65rem;
  max-width: 720px;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.faq__item[open],
.faq__item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--paper-mute);
  transition: transform 0.35s var(--ease-out), color 0.25s;
}

.faq__item[open] summary::after {
  content: "–";
  color: var(--peach);
  transform: rotate(180deg);
}

.faq__item p {
  padding: 0 1.35rem 1.25rem;
  color: var(--paper-dim);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 52ch;
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 50%;
  bottom: max(1rem, env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(120%);
  z-index: 85;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink);
  background: var(--grad-ins);
  background-size: 160% 160%;
  box-shadow: 0 12px 36px rgba(255, 107, 138, 0.4);
  transition: transform 0.4s var(--ease-out);
  white-space: nowrap;
}

.mobile-cta.is-show {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 860px) {
  .mobile-cta {
    display: inline-flex;
  }
  .to-top {
    bottom: calc(4.5rem + env(safe-area-inset-bottom));
  }
  body {
    padding-bottom: 4rem;
  }
}

.footer__stamp {
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

.footer__stamp a {
  color: var(--paper-dim);
  border-bottom: 1px solid rgba(255, 154, 108, 0.45);
}

.contact.is-sent {
  opacity: 0.55;
  pointer-events: none;
}

@media (max-width: 1020px) and (min-width: 861px) {
  .nav__links {
    gap: 1.1rem;
  }
  .nav__links a {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__brand em,
  .nav__logo em,
  .footer__brand em,
  .loader__brand span {
    animation: none;
  }
}


/* ==== upgrades v2 ==== */
:root {
  --font-cn: "Noto Serif SC", "Songti SC", "SimSun", serif;
  --font-body: "Syne", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --font-display: "Instrument Serif", var(--font-cn);
}

.hero__brand {
  font-size: clamp(3.2rem, 8vw, 6.2rem);
}

.hero__headline {
  font-family: var(--font-cn);
  font-weight: 500;
  max-width: 18ch;
}

.hero__sub {
  max-width: 36ch;
}

.display {
  font-family: var(--font-display);
}

.display.cn,
h2.display,
.flow-step__body h3,
.shot__meta h3,
.voice blockquote,
.faq__item summary {
  font-family: var(--font-cn), var(--font-display);
  font-weight: 500;
}

.zh-line {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-cn);
  font-size: 0.42em;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--paper-mute);
  font-style: normal;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__trust span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--grad-ins);
}

.nav__links a {
  font-size: 0.78rem;
}

.price-note {
  font-size: 0.8rem;
  color: var(--paper-mute);
  margin-top: 0.35rem;
}

.finale__panel {
  min-height: min(720px, 90dvh);
}

@media (max-width: 920px) {
  .hero__trust {
    justify-content: center;
  }
  .hero__headline {
    margin-inline: auto;
  }
}
