/* ==========================================================================
   ZOE — UGC SUBSCRIPTIONS FOR EVERY BRAND
   Aesthetic: soft-luxe editorial. Cream canvas, lilac/rose gradient,
   flared serif display, quiet geometric sans body.
   ========================================================================== */

:root {
  /* Ink & neutrals */
  --ink: #15121A;
  --ink-soft: #3A2F40;
  --ink-mute: #7A6F82;
  --ink-whisper: #B7AEC0;

  /* Paper & surfaces */
  --cream: #F5EDE5;
  --cream-deep: #EBE2DA;
  --paper: #FBF6F0;
  --paper-warm: #F1E6DE;

  /* Pastel gradient stops */
  --mauve: #A88AC9;
  --mauve-deep: #7B5B9E;
  --rose: #EBB3C4;
  --lilac: #D5BCE7;
  --petal: #F5D6DE;
  --peach: #F7DCC5;

  /* Signature gradients */
  --g-pill: linear-gradient(92deg, #F2D8E3 0%, #D8BDE8 50%, #F6D4DE 100%);
  --g-text: linear-gradient(95deg, #B697D1 0%, #D5B3C9 40%, #EBB6C6 100%);
  --g-text-deep: linear-gradient(95deg, #7758A6 0%, #9A78B5 50%, #CE7D94 100%);
  --g-card: linear-gradient(160deg, #F4D9E3 0%, #E2C6EC 50%, #F3DDD6 100%);
  --g-dark: radial-gradient(140% 120% at 50% 0%, #2A1F33 0%, #18121C 55%, #0E0A13 100%);
  --g-step-a: linear-gradient(160deg, #F2DCE6 0%, #E8CDE8 100%);
  --g-step-b: linear-gradient(160deg, #EFE0F0 0%, #DDC5E8 100%);
  --g-step-c: linear-gradient(160deg, #F5E3D8 0%, #ECC9DA 100%);

  /* Type */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-sans: "Geist", -apple-system, "SF Pro Text", "Helvetica Neue", sans-serif;
  --font-mono: "Geist Mono", "SF Mono", ui-monospace, monospace;

  /* Geometry */
  --r-xs: 10px;
  --r-sm: 16px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 44px;

  /* Spacing */
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(64px, 9vw, 140px);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
em, i { font-style: italic; }
s { opacity: 0.55; }

/* =========================================================================
   BACKGROUND ATMOSPHERE — grain + gradient orbs
   ========================================================================= */
.grain {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: multiply;
  z-index: 2;
}

.orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.orb-1 { width: 620px; height: 620px; background: #E8C5DC; top: -120px; right: -160px; }
.orb-2 { width: 540px; height: 540px; background: #CFB3E0; top: 30%; left: -180px; }
.orb-3 { width: 480px; height: 480px; background: #F4D8BB; bottom: -160px; right: 10%; }

/* =========================================================================
   TYPOGRAPHY SYSTEM
   ========================================================================= */
.display {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 70, "opsz" 144, "wght" 450;
  font-weight: 450;
  font-size: clamp(46px, 7vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0;
  text-transform: none;
}
.display em { font-style: italic; font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 400; }
.display__line { display: block; }
.display__line--grad {
  background: var(--g-text-deep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  font-variation-settings: "SOFT" 90, "opsz" 144, "wght" 430;
  /* Prevent descenders (g, f, p, y) from being clipped by overflow:hidden ancestors */
  line-height: 1.1;
  padding-bottom: 0.18em;
}
.display__line--grad em { line-height: 1.1; }
.display--xl { font-size: clamp(56px, 9vw, 140px); letter-spacing: -0.028em; }
.display--lg { font-size: clamp(48px, 7.5vw, 120px); }
.display--md { font-size: clamp(40px, 5.6vw, 88px); }
.display--sm { font-size: clamp(32px, 4.2vw, 64px); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow--ink { color: var(--ink); }
.eyebrow--light { color: rgba(255,255,255,0.7); }
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mauve-deep);
  box-shadow: 0 0 0 4px rgba(168,138,201,0.18);
  display: inline-block;
}

.lede {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 60, "wght" 350, "SOFT" 80;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  color: var(--ink-soft);
  margin: 18px 0 0;
  max-width: 26ch;
}

.section-sub {
  max-width: 58ch;
  color: var(--ink-mute);
  font-size: 17px;
  line-height: 1.6;
  margin: 14px auto 0;
}
.section-head { text-align: center; padding: 0 var(--gutter); margin-bottom: clamp(40px, 5vw, 72px); }
.section-head .eyebrow { justify-content: center; }
.section-head--left { text-align: left; }
.section-head--left .eyebrow { justify-content: flex-start; }
.section-head--left .section-sub { margin-left: 0; }

.fineprint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 18px 0 0;
}

/* =========================================================================
   CTA BUTTONS
   ========================================================================= */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px 13px 24px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .4s var(--ease);
  white-space: nowrap;
  line-height: 1;
  will-change: transform;
}
.cta svg { transition: transform .35s var(--ease); }
.cta:hover svg { transform: translateX(3px); }

.cta--pill {
  background: var(--g-pill);
  color: var(--ink);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 0 0 1px rgba(120,90,155,0.18),
    0 18px 40px -16px rgba(154,115,186,0.55);
}
.cta--pill:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 0 0 1px rgba(120,90,155,0.22), 0 26px 50px -18px rgba(154,115,186,0.7); }

.cta--solid {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 10px 24px -10px rgba(21,18,26,0.55);
}
.cta--solid:hover { background: #241D2C; transform: translateY(-1px); }

.cta--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(21,18,26,0.14);
}
.cta--ghost:hover { background: rgba(21,18,26,0.04); }
.cta--ghost--light { color: var(--paper); border-color: rgba(255,255,255,0.22); }
.cta--ghost--light:hover { background: rgba(255,255,255,0.06); }

.cta--lg { padding: 17px 28px; font-size: 15px; }
.cta--block { justify-content: center; width: 100%; }

/* =========================================================================
   ANNOUNCEMENT MARQUEE
   ========================================================================= */
.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 5;
}
.marquee__track {
  display: inline-flex;
  gap: 48px;
  padding-left: 48px;
  white-space: nowrap;
  animation: marquee 44s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.marquee__track span { opacity: 0.85; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================================
   NAV — floating pill card (sits inside the hero)
   ========================================================================= */
.nav--float {
  position: absolute;
  inset: 20px 24px auto 24px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 12px 14px 12px 28px;
  background: rgba(255,253,250,0.92);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  border-radius: 999px;
  border: 1px solid rgba(21,18,26,0.05);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 20px 50px -30px rgba(21,18,26,0.18);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand__wordmark {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "wght" 420, "SOFT" 90;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.brand__star {
  color: var(--mauve);
  font-size: 18px;
  transform: translateY(-2px);
}
.brand__tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-left: 2px;
}
.nav__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--ink);
  transition: right .4s var(--ease);
}
.nav__links a:hover::after { right: 0; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  width: 22px; height: 1.6px; background: var(--ink); display: block;
}

/* =========================================================================
   HERO
   ========================================================================= */
/* --- Hero v4: matches variation-2 — pill nav, photo edge-to-edge right, pricing bar at bottom --- */
.hero--v4 {
  position: relative;
  max-width: 1440px;
  margin: 20px auto 0;
  padding: 0 24px;
  z-index: 1;
}
.hero__card {
  position: relative;
  min-height: clamp(600px, 54vw, 720px);
  padding: clamp(110px, 12vw, 150px) 0 clamp(160px, 14vw, 200px) clamp(40px, 5vw, 80px);
  background:
    radial-gradient(60% 80% at 90% 0%, rgba(232,197,220,0.5), transparent 60%),
    radial-gradient(60% 80% at 0% 100%, rgba(207,179,224,0.35), transparent 60%),
    linear-gradient(180deg, #FAF3ED 0%, #F4E8DF 100%);
  border-radius: 32px;
  border: 1px solid rgba(21,18,26,0.05);
  overflow: hidden;
  isolation: isolate;
}

.hero--v4 .nav--float {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 5;
}

.hero--v4 .hero__copy {
  position: relative;
  max-width: min(560px, 44%);
  z-index: 3;
}
.hero--v4 .hero__headline {
  font-size: clamp(38px, 5.2vw, 72px);
  letter-spacing: -0.03em;
  font-variation-settings: "SOFT" 30, "opsz" 144, "wght" 560;
  font-weight: 600;
}
.hero--v4 .hero__headline .display__line--grad {
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 440;
  background: linear-gradient(94deg, #CCB1DF 0%, #E3BCCD 50%, #D9B2DB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.035em;
}

/* Photo: right 50%, edge to edge, bleeds off right with selfie arm */
.hero__zoe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  margin: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.hero__zoe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 20%;
  display: block;
  transform: scale(1.05);
  transform-origin: center center;
}
/* Soft left fade so the photo blends into the cream background */
.hero__zoe::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #FAF3ED 0%, rgba(250,243,237,0.4) 12%, transparent 28%);
  z-index: 2;
  pointer-events: none;
}

/* Hero v3 (legacy image overlay, kept for reference) */
.hero--img {
  max-width: 1440px;
  margin: 20px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.hero__stage {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(21,18,26,0.18);
}
.hero__img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
@media (min-width: 1120px) {
  .hero__img { image-rendering: auto; }
}
.hero__hit {
  position: absolute;
  display: block;
  z-index: 5;
  border-radius: 999px;
  transition: background .25s var(--ease);
}
.hero__hit:hover { background: rgba(168,138,201,0.08); }
.hero__hit:focus-visible {
  outline: 2px solid var(--mauve-deep);
  outline-offset: 2px;
  background: rgba(168,138,201,0.08);
}
.hero__hit--cta:hover { background: rgba(168,138,201,0); transform: translateY(-1px); }

/* Entire nav area (top band of the hero image) — one big clickable zone */
.hero__navhit {
  position: absolute;
  left: 2%;
  top: 3%;
  right: 2%;
  height: 10%;
  z-index: 5;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s var(--ease);
}
.hero__navhit:hover { background: rgba(168,138,201,0.06); }
.hero__navhit:focus-visible { outline: 2px solid var(--mauve-deep); outline-offset: 4px; }

/* Floating HTML pricing capsule that replaces the baked-in one.
   Negative top margin pulls the capsule up so the hero image extends ~halfway down it. */
.hero--img .pricebar--hero {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  margin: clamp(24px, 3vw, 48px) clamp(36px, 5vw, 96px) 0;
  z-index: 4;
  background: #FDFBF7;
}

/* Real HTML buttons overlaid exactly on top of the baked-in buttons */
.hero__btn {
  position: absolute;
  z-index: 6;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(92deg, #F2D8E3 0%, #D8BDE8 50%, #F6D4DE 100%);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.85vw, 13px);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 0 0 1px rgba(120,90,155,0.18),
    0 14px 28px -14px rgba(154,115,186,0.55);
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), filter .3s var(--ease);
}
.hero__btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 0 0 1px rgba(120,90,155,0.28),
    0 22px 38px -16px rgba(154,115,186,0.7);
  filter: saturate(1.08) brightness(1.02);
}
.hero__btn:active { transform: translateY(0); }
.hero__btn:focus-visible { outline: 2px solid var(--mauve-deep); outline-offset: 3px; }

/* --- (legacy) Hero v2 styles, kept in case we revert --- */
.hero--v2 {
  position: relative;
  max-width: 1440px;
  margin: 20px auto 0;
  padding: 0 24px;
  z-index: 1;
}
.hero__v2-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: clamp(24px, 3vw, 56px);
  align-items: end;
  min-height: clamp(540px, 60vw, 720px);
  padding: clamp(108px, 13vw, 168px) 0 0 clamp(24px, 3vw, 56px);
  background:
    radial-gradient(90% 110% at 88% 5%, rgba(232,197,220,0.55), transparent 55%),
    radial-gradient(110% 120% at 5% 95%, rgba(207,179,224,0.45), transparent 55%),
    linear-gradient(180deg, #FAF3ED 0%, #F4E8DF 100%);
  border-radius: 40px;
  border: 1px solid rgba(21,18,26,0.05);
  overflow: hidden;
}

.hero__copy {
  position: relative;
  padding-bottom: clamp(180px, 18vw, 260px);
  z-index: 2;
}
.hero__headline {
  text-transform: uppercase;
  font-variation-settings: "SOFT" 40, "opsz" 144, "wght" 520;
  font-weight: 500;
  font-size: clamp(40px, 6.2vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.hero__headline .display__line { display: block; }
.hero__headline .display__line--grad {
  text-transform: uppercase;
  font-variation-settings: "SOFT" 90, "opsz" 144, "wght" 460;
  letter-spacing: -0.038em;
  background: linear-gradient(94deg, #CCB1DF 0%, #E3BCCD 50%, #D9B2DB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Bleed photo — no frame, extends to right edge */
.hero__photo--bleed {
  position: relative;
  align-self: stretch;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border-top-right-radius: 40px;
  margin-right: calc(-1 * clamp(24px, 3vw, 56px));
}
.hero__photo--bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 28%;
  display: block;
}

.hero__copy .lede { margin-top: 20px; max-width: 22ch; }

.hero__callout {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 10px 22px 10px 10px;
  background: transparent;
  border: none;
  border-radius: 999px;
  max-width: 100%;
}
.hero__callout-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(168,138,201,0.35);
  color: var(--mauve-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero__callout strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.hero__callout > div span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 3px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero__bullets {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-soft);
}
.hero__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__bullets svg { color: var(--mauve-deep); }

/* --- Hero photo --- */
.hero__photo {
  position: relative;
  margin: 0;
  isolation: isolate;
}
.hero__photo-frame {
  position: relative;
  border-radius: 48px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--g-card);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 40px 80px -40px rgba(120,90,155,0.45),
    0 20px 40px -24px rgba(21,18,26,0.18);
}
.hero__photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 80% 0%, rgba(255,220,235,0.7), transparent 60%),
              radial-gradient(100% 80% at 20% 100%, rgba(215,193,232,0.7), transparent 60%);
  z-index: 1;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  position: relative;
  z-index: 0;
  transition: transform 1.2s var(--ease);
}
.hero__photo:hover .hero__photo-frame img { transform: scale(1.03); }
.hero__photo-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  box-shadow: 0 4px 16px -4px rgba(21,18,26,0.14);
}
.hero__photo-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #5FC88A;
  box-shadow: 0 0 0 3px rgba(95,200,138,0.25);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(95,200,138,0.25); }
  50% { box-shadow: 0 0 0 7px rgba(95,200,138,0); }
}

.hero__chip {
  position: absolute;
  background: var(--paper);
  border: 1px solid rgba(21,18,26,0.06);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 12.5px;
  color: var(--ink-soft);
  box-shadow: 0 14px 30px -16px rgba(21,18,26,0.24);
  z-index: 3;
}
.hero__chip strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: 4px;
}
.hero__chip--tr { top: 24px; right: -22px; transform: rotate(2deg); }
.hero__chip--bl { bottom: 70px; left: -28px; transform: rotate(-3deg); }

/* --- Wide floating pricing bar (overlaps bottom of hero) --- */
.pricebar {
  position: absolute;
  left: clamp(48px, 5vw, 96px);
  right: clamp(48px, 5vw, 96px);
  bottom: clamp(-80px, -8vw, -60px);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0;
  padding: clamp(28px, 3vw, 40px) clamp(28px, 3vw, 44px);
  background: rgba(255,253,250,0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(21,18,26,0.05);
  border-radius: 28px;
  align-items: center;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 40px 80px -30px rgba(120,90,155,0.2),
    0 20px 40px -20px rgba(21,18,26,0.12);
  z-index: 3;
}
.pricebar__left { padding-right: clamp(20px, 2.5vw, 36px); }
.pricebar__mid {
  position: relative;
  padding: 28px 32px;
  border-left: 1px solid rgba(21,18,26,0.08);
  border-right: 1px solid rgba(21,18,26,0.08);
  text-align: center;
}
.pricebar__mid .pricecard__ribbon {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
}
.pricebar__mid .pricecard__tier { text-align: center; margin: 0 0 6px; }
.pricebar__mid .pricecard__price { justify-content: center; }
.pricebar__mid .pricecard__amount { font-size: clamp(44px, 4.2vw, 60px); }
.pricebar__mid .pricecard__was { display: block; margin: 4px 0 0; font-size: 16px; }

.pricebar__h {
  font-variation-settings: "SOFT" 60, "opsz" 144, "wght" 440;
  font-size: clamp(26px, 2.6vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}
.pricebar__h .display__line--grad {
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 420;
  text-transform: uppercase;
  background: linear-gradient(94deg, #CCB1DF 0%, #E3BCCD 50%, #D9B2DB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}
.pricebar__h em { font-style: italic; }
.pricebar__left .cta { margin-top: 18px; }
.pricebar__left .fineprint { margin-top: 12px; }

.pricebar__feats {
  padding-left: clamp(24px, 3vw, 40px);
  display: grid;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-soft);
}
.pricebar__feats li { display: inline-flex; align-items: center; gap: 12px; }
.pricebar__fico {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(168,138,201,0.14);
  color: var(--mauve-deep);
  flex-shrink: 0;
}

/* =========================================================================
   PRICE CARD
   ========================================================================= */
.pricecard {
  position: relative;
  padding: 28px;
  border-radius: var(--r-md);
  background: var(--paper-warm);
  border: 1px solid rgba(21,18,26,0.06);
  box-shadow: 0 18px 44px -24px rgba(21,18,26,0.25);
}
.pricecard__ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--g-pill);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 10px 22px -12px rgba(154,115,186,0.55);
  white-space: nowrap;
}
.pricecard__tier {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 16px 0 8px;
}
.pricecard__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.pricecard__amount {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 80, "opsz" 144, "wght" 400;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.pricecard__period {
  font-size: 15px;
  color: var(--ink-mute);
}
.pricecard__was {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 60, "wght" 400;
  font-size: 20px;
  color: var(--ink-mute);
  margin-left: 6px;
}
.pricecard__feats {
  margin-top: 20px;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.pricecard__feats li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricecard__feats em {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(168,138,201,0.14);
  color: var(--mauve-deep);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
}
.pricecard--teaser {
  padding: 36px 32px 32px;
}

/* =========================================================================
   TRUSTED / LOGO MARQUEE
   ========================================================================= */
.trusted {
  padding: clamp(140px, 12vw, 180px) var(--gutter) 48px;
  border-bottom: 1px solid rgba(21,18,26,0.05);
  background: transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.trusted__label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 24px;
}
.trusted__marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.trusted__track {
  display: inline-flex;
  gap: 64px;
  padding-left: 64px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.logo {
  color: var(--ink-soft);
  opacity: 0.62;
  font-size: 28px;
  line-height: 1;
  transition: opacity .3s;
}
.logo:hover { opacity: 1; }
.logo--serif { font-family: var(--font-display); font-variation-settings: "SOFT" 80, "wght" 500; }
.logo--sans { font-family: var(--font-sans); font-weight: 700; letter-spacing: -0.03em; font-size: 24px; }
.logo--caps { font-family: var(--font-sans); font-weight: 600; font-size: 20px; letter-spacing: 0.24em; }
.logo--italic { font-style: italic; }

/* =========================================================================
   HOW IT WORKS
   ========================================================================= */
.how {
  padding: var(--section-y) var(--gutter);
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.how-step {
  position: relative;
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid rgba(21,18,26,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 420px;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.how-step:hover { transform: translateY(-4px); box-shadow: 0 28px 50px -30px rgba(21,18,26,0.3); }
.how-step--a { background: var(--g-step-a); }
.how-step--b { background: var(--g-step-b); }
.how-step--c { background: var(--g-step-c); }
.how-step__num {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 340;
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
  opacity: 0.35;
}
.how-step h3 {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 50, "opsz" 144, "wght" 420;
  font-size: 32px;
  margin: 0;
  letter-spacing: -0.01em;
}
.how-step p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 28ch;
}
.how-step__visual {
  margin-top: auto;
  position: relative;
  min-height: 120px;
}

/* mock cards inside how-step */
.card-mock {
  position: absolute;
  inset: auto 0 0 0;
  transform: translateY(20%);
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 40px -20px rgba(21,18,26,0.28);
  border: 1px solid rgba(21,18,26,0.05);
}
.card-mock--subscribe { display: flex; flex-direction: column; gap: 8px; }
.card-mock__chip {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  align-self: start;
  padding: 4px 8px;
  background: rgba(168,138,201,0.14);
  border-radius: 999px;
}
.card-mock__big {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 80, "opsz" 144, "wght" 420;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.card-mock__big em { font-size: 14px; font-style: normal; color: var(--ink-mute); }
.card-mock__cta {
  font-size: 12px;
  color: var(--mauve-deep);
  font-weight: 500;
}

.card-mock--brief { padding: 14px; }
.card-mock__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.card-mock__tags span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 6px 10px;
  background: var(--paper-warm);
  color: var(--ink-soft);
  border-radius: 999px;
  border: 1px solid rgba(21,18,26,0.05);
}

.card-mock--receive {
  padding: 0;
  aspect-ratio: 16/10;
  position: absolute;
  inset: auto 0 -12% 0;
  overflow: hidden;
  background: var(--ink);
}
.card-mock__poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: saturate(1.05);
}
.card-mock__play {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 10px 20px -8px rgba(0,0,0,0.3);
}

/* =========================================================================
   VIRAL TWEET SECTION
   ========================================================================= */
.viral {
  padding: var(--section-y) var(--gutter);
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.viral__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.viral__copy .display__line--grad { text-transform: none; }
.viral__stats {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: clamp(16px, 2.4vw, 36px);
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(21,18,26,0.08);
}
.viral__stats > div { display: flex; flex-direction: column; }
.viral__stats strong {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 70, "opsz" 144, "wght" 420;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.viral__stats span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
}

/* --- Tweet card --- */
.tweet {
  position: relative;
  background: #fff;
  border: 1px solid rgba(21,18,26,0.08);
  border-radius: 20px;
  padding: 20px 20px 14px;
  box-shadow: 0 30px 60px -30px rgba(21,18,26,0.3);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  color: #0f1419;
  max-width: 560px;
  margin: 0 auto;
  transform: rotate(-0.6deg);
  transition: transform .5s var(--ease);
}
.tweet:hover { transform: rotate(0deg) translateY(-2px); }
.tweet__header {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
}
.tweet__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--g-card);
}
.tweet__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.tweet__who { min-width: 0; }
.tweet__name {
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #0f1419;
}
.tweet__verified path { fill: #A68AD0; }
.tweet__handle {
  color: #536471;
  font-size: 13.5px;
}
.tweet__x { color: #0f1419; }
.tweet__body {
  font-size: 15px;
  line-height: 1.35;
  margin: 10px 0 12px;
  color: #0f1419;
}
.tweet__body em { font-style: normal; color: #1D9BF0; font-weight: 500; }

.tweet__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: #000;
  max-height: 640px;
  margin: 0 auto;
  cursor: pointer;
}
.tweet__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tweet__playbtn, .tweet__mutebtn {
  position: absolute;
  border-radius: 999px;
  background: rgba(15,20,25,0.72);
  color: #fff;
  backdrop-filter: blur(6px);
  transition: transform .3s, background .3s, opacity .3s;
  z-index: 2;
}
.tweet__playbtn {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  display: grid; place-items: center;
}
.tweet__playbtn:hover { transform: translate(-50%, -50%) scale(1.06); background: rgba(15,20,25,0.85); }
.tweet__playbtn[data-playing="true"] { opacity: 0; pointer-events: none; }
.tweet__mutebtn {
  bottom: 12px; right: 12px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
}
.tweet__mutebtn[data-muted="false"] svg path:last-child { display: none; }

.tweet__time {
  color: #536471;
  font-size: 13.5px;
  margin: 14px 0 12px;
}
.tweet__time b { color: #0f1419; font-weight: 700; }

.tweet__actions {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 10px;
  margin-top: 4px;
}
.tweet__actions button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #536471;
  font-size: 13px;
  padding: 6px 8px;
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.tweet__actions button:hover { background: rgba(29,155,240,0.08); color: #1D9BF0; }
.tweet__actions button:nth-child(2):hover { background: rgba(0,186,124,0.08); color: #00BA7C; }
.tweet__actions button:nth-child(3):hover { background: rgba(249,24,128,0.08); color: #F91880; }
.tweet__actions button:nth-child(4):hover { background: rgba(29,155,240,0.08); color: #1D9BF0; }

/* =========================================================================
   BENEFITS GRID
   ========================================================================= */
.benefits {
  padding: var(--section-y) var(--gutter);
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(21,18,26,0.06);
  background: rgba(21,18,26,0.06);
}
.benefits__grid li {
  background: var(--paper);
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .35s;
  min-height: 240px;
}
.benefits__grid li:hover { background: var(--paper-warm); }
.benefits__ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--c) 28%, white 72%);
  color: color-mix(in srgb, var(--c) 70%, var(--ink) 30%);
}
.benefits__grid h3 {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 60, "opsz" 144, "wght" 440;
  font-size: 26px;
  margin: 0;
  letter-spacing: -0.01em;
}
.benefits__grid p {
  color: var(--ink-mute);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* =========================================================================
   GALLERY — 4 aligned 9:16 reels
   ========================================================================= */
.gallery {
  padding: var(--section-y) var(--gutter);
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.reels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.reel {
  position: relative;
  margin: 0;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: var(--ink);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  box-shadow: 0 20px 50px -30px rgba(21,18,26,0.35);
}
.reel:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -24px rgba(21,18,26,0.4); }
.reel__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center center;
  transition: transform 1.4s var(--ease);
}
.reel:hover .reel__media { transform: scale(1.04); }
.reel__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 38%);
  pointer-events: none;
}
.reel__mute {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  color: #15121A;
  display: grid;
  place-items: center;
  z-index: 10;
  border: 1px solid rgba(21,18,26,0.1);
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.35);
  transition: background .25s var(--ease), transform .25s var(--ease);
  cursor: pointer;
}
.reel__mute:hover { background: #fff; transform: scale(1.08); }
.reel__mute:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.reel__mute svg { position: absolute; width: 18px; height: 18px; }
.reel__mute[data-muted="true"] .reel__mute-on { display: none; }
.reel__mute[data-muted="false"] .reel__mute-off { display: none; }
.reel figcaption {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.reel__tag {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.reel__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

@media (max-width: 1080px) {
  .reels { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .reels { grid-template-columns: 1fr; }
  .reel { aspect-ratio: 9 / 12; }
}

.reels__disclaimer {
  margin: 22px auto 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}
.reels__disclaimer .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mauve-deep);
  box-shadow: 0 0 0 3px rgba(168,138,201,0.18);
  display: inline-block;
  flex-shrink: 0;
}

/* =========================================================================
   QUOTES
   ========================================================================= */
.quotes {
  padding: clamp(48px, 6vw, 96px) var(--gutter);
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Peel-style sticker overlapping the far-right quote card */
.quotes__sticker {
  position: absolute;
  top: clamp(-40px, -4vw, -20px);
  right: clamp(-32px, -3vw, -12px);
  width: clamp(240px, 24vw, 340px);
  height: auto;
  z-index: 3;
  transform: rotate(8deg);
  filter: drop-shadow(0 22px 40px rgba(120,90,155,0.28));
  animation: sticker-float 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sticker-float {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-5px); }
}
@media (prefers-reduced-motion: reduce) {
  .quotes__sticker { animation: none; }
}
@media (max-width: 1080px) {
  .quotes__sticker { top: auto; right: auto; left: 50%; bottom: -20px; transform: translateX(-50%) rotate(-4deg); width: 220px; }
  @keyframes sticker-float {
    0%, 100% { transform: translateX(-50%) rotate(-4deg) translateY(0); }
    50% { transform: translateX(-50%) rotate(-4deg) translateY(-5px); }
  }
}

/* Small peel-style sticker above testimonials */
.sticker {
  position: relative;
  width: 118px;
  height: 118px;
  margin: 0 auto clamp(28px, 3.5vw, 48px);
  animation: sticker-float 4.5s ease-in-out infinite;
}
.sticker__peel {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotate(-8deg);
  filter: drop-shadow(0 14px 20px rgba(154,115,186,0.25));
}
.sticker__face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(60% 60% at 30% 30%, rgba(255,255,255,0.45), transparent 70%),
    conic-gradient(from 210deg,
      #E9C7D8 0%, #F3D4C6 22%, #CDB2E0 48%, #E9C7D8 72%, #F3D4C6 100%);
  border: 1px solid rgba(21,18,26,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  /* Peel corner: clip the bottom-right to create a folded-over tab */
  clip-path: polygon(
    0 0, 100% 0, 100% 72%, 72% 100%, 0 100%
  );
}
/* The folded-back corner */
.sticker::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #FDFBF7 0%, #E8D9E6 100%);
  border: 1px solid rgba(21,18,26,0.15);
  border-top: none;
  border-left: none;
  transform: rotate(-8deg);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  border-bottom-right-radius: 18px;
  box-shadow: -2px -2px 6px rgba(21,18,26,0.08) inset;
  pointer-events: none;
}
.sticker__line {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--ink);
  display: block;
}
.sticker__line--sm {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@keyframes sticker-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .sticker { animation: none; }
}
.quote {
  background: var(--paper);
  border: 1px solid rgba(21,18,26,0.06);
  border-radius: var(--r-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 220px;
}
.quote p {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 70, "opsz" 90, "wght" 400;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.quote--mid p { font-size: 28px; }
.quote footer strong {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13.5px;
  display: block;
}
.quote footer span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
  display: block;
}

/* =========================================================================
   PRICING FULL
   ========================================================================= */
.pricing {
  padding: var(--section-y) var(--gutter);
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pricing__head { text-align: center; margin-bottom: clamp(40px, 5vw, 72px); }
.pricing__head .eyebrow { justify-content: center; }

.pricing__card-wrap {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.pricecard--full {
  padding: clamp(28px, 3vw, 44px);
  border-radius: var(--r-lg);
  background: var(--paper);
}
.pricecard__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(21,18,26,0.08);
}
.pricecard__sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 6px 0 0;
}
.pricecard__feats--full {
  grid-template-columns: 1fr 1fr;
  display: grid;
  gap: 14px 28px;
  margin: 24px 0 28px;
  font-size: 14.5px;
}
.pricecard__legal {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.55;
}

.pricing__guarantees {
  display: grid;
  gap: 16px;
}
.guarantee {
  padding: 28px;
  background: var(--g-card);
  border-radius: var(--r-lg);
  color: var(--ink);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.guarantee::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.6), transparent 70%);
}
.guarantee h3 {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 80, "opsz" 144, "wght" 440;
  font-size: 32px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.guarantee p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.5;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq {
  padding: var(--section-y) var(--gutter);
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.faq__list {
  border-top: 1px solid rgba(21,18,26,0.12);
}
.faq__item {
  border-bottom: 1px solid rgba(21,18,26,0.12);
}
.faq__item details { padding: 24px 0; }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 60, "opsz" 144, "wght" 400;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color .3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--mauve-deep); }
.faq__plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(21,18,26,0.06);
  flex-shrink: 0;
  position: relative;
  transition: background .3s, transform .4s var(--ease);
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  left: 50%; top: 50%;
}
.faq__plus::before { width: 12px; height: 1.6px; transform: translate(-50%, -50%); }
.faq__plus::after { width: 1.6px; height: 12px; transform: translate(-50%, -50%); transition: transform .4s var(--ease); }
.faq__item details[open] .faq__plus { background: var(--g-pill); }
.faq__item details[open] .faq__plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__item details p {
  margin: 16px 0 8px;
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.65;
  max-width: 72ch;
}

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.final {
  padding: clamp(40px, 6vw, 80px) var(--gutter);
  max-width: 1440px;
  margin: 0 auto clamp(40px, 5vw, 80px);
  position: relative;
  z-index: 1;
}
.final__inner {
  position: relative;
  background: var(--g-dark);
  color: var(--paper);
  padding: clamp(56px, 8vw, 120px) clamp(32px, 5vw, 80px);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-align: center;
}
.final__inner .display { color: var(--paper); }
.final__inner .display__line--grad {
  background: linear-gradient(92deg, #E8C3D7 0%, #D3B7E7 50%, #F0C5C7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final__aside {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 340;
  font-size: 0.55em;
  color: rgba(255,255,255,0.55);
  margin-top: 18px;
  letter-spacing: 0;
}
.final__sub {
  max-width: 52ch;
  margin: 24px auto 0;
  color: rgba(255,255,255,0.65);
  font-size: 16.5px;
  line-height: 1.6;
}
.final__ctas {
  display: inline-flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.final__inner .cta--solid {
  background: var(--paper);
  color: var(--ink);
}
.final__inner .cta--solid:hover { background: #fff; }
.final__glow {
  position: absolute;
  inset: auto 0 -40% 0;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(214,176,238,0.35), transparent 60%);
  pointer-events: none;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.foot {
  padding: 48px var(--gutter) 60px;
  border-top: 1px solid rgba(21,18,26,0.08);
  background: rgba(235,226,218,0.3);
  position: relative;
  z-index: 1;
}
.foot__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.foot__brand { display: inline-flex; align-items: center; gap: 10px; }
.foot__nav {
  display: inline-flex;
  gap: 28px;
  justify-content: center;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.foot__nav a:hover { color: var(--ink); }
.foot__legal {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}
.foot__legal a {
  color: var(--ink);
  border-bottom: 1px solid rgba(21,18,26,0.25);
  transition: border-color .2s, color .2s;
}
.foot__legal a:hover { color: var(--mauve-deep); border-bottom-color: var(--mauve-deep); }

/* =========================================================================
   REVEAL ANIMATIONS
   ========================================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
.hero__copy [data-reveal]:nth-child(1) { transition-delay: 0s; }
.hero__copy [data-reveal]:nth-child(2) { transition-delay: .08s; }
.hero__copy [data-reveal]:nth-child(3) { transition-delay: .16s; }
.hero__copy [data-reveal]:nth-child(4) { transition-delay: .24s; }
.hero__copy [data-reveal]:nth-child(5) { transition-delay: .32s; }
.hero__copy [data-reveal]:nth-child(6) { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .hero__pricing { grid-template-columns: 1fr; gap: 28px; }
  .how__steps { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .quotes__grid { grid-template-columns: 1fr; }
  .gallery__masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .viral__grid { grid-template-columns: 1fr; }
  .pricing__card-wrap { grid-template-columns: 1fr; }
  .pricecard__feats--full { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__inner { grid-template-columns: auto 1fr auto; gap: 12px; }
  .brand__tag { display: none; }

  .hero { padding-top: 32px; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__copy .display { font-size: clamp(42px, 11vw, 68px); }
  .hero__chip--tr { right: 8px; top: 12px; }
  .hero__chip--bl { display: none; }
  .hero__photo-frame { aspect-ratio: 1/1.1; border-radius: 28px; }
  .hero__pricing { padding: 28px 22px; }

  /* Hero floating pricebar -> stacked single column on mobile */
  .hero--img { padding: 0 16px; }
  .hero--img .pricebar--hero {
    margin: 28px 0 0;
    grid-template-columns: 1fr;
    padding: 24px 22px;
    border-radius: 24px;
    text-align: center;
  }
  .pricebar__left { padding-right: 0; text-align: center; }
  .pricebar__left .cta { margin: 16px auto 0; }
  .pricebar__h { font-size: clamp(24px, 6vw, 32px); }
  .pricebar__mid {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(21,18,26,0.08);
    border-bottom: 1px solid rgba(21,18,26,0.08);
    margin: 22px 0 4px;
    padding: 36px 16px 22px;
  }
  .pricebar__mid .pricecard__ribbon { top: -16px; font-size: 9.5px; padding: 7px 14px; }
  .pricebar__mid .pricecard__amount { font-size: clamp(40px, 11vw, 56px); }
  .pricebar__feats {
    padding-left: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    margin-top: 18px;
  }

  .benefits__grid { grid-template-columns: 1fr; }
  .gallery__masonry { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 1; }

  .viral__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .foot__inner { grid-template-columns: 1fr; text-align: center; }
  .foot__nav { justify-content: center; flex-wrap: wrap; }

  .tweet { transform: none; }

  .final__inner { padding: 56px 28px; border-radius: 28px; }

  /* Pricing section: card head + guarantees */
  .pricing { padding: var(--section-y) 16px; }
  .pricecard--full { padding: 28px 22px; }
  .pricecard__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .pricecard__price { gap: 8px; }
  .pricecard__amount { font-size: clamp(44px, 13vw, 68px); }
  .pricecard__was { margin-left: 0; font-size: 18px; }
  .pricecard__ribbon { font-size: 9.5px; padding: 7px 12px; letter-spacing: 0.14em; }
  .pricing__guarantees { gap: 14px; }
  .guarantee {
    min-height: 0;
    padding: 24px 22px;
  }
  .guarantee h3 { font-size: 26px; margin-bottom: 8px; }
  .guarantee p { font-size: 14px; }
}

@media (max-width: 520px) {
  .marquee__track { animation-duration: 60s; gap: 32px; padding-left: 32px; }
  .hero__photo-frame { border-radius: 24px; }
  .hero__chip { font-size: 11px; padding: 8px 12px; }
  .pricecard__feats--full { gap: 10px; }
  .cta { padding: 12px 18px; font-size: 13px; }
  .quote p { font-size: 19px; }
  .quote--mid p { font-size: 22px; }
}

@media (max-width: 360px) {
  .pricecard__ribbon {
    font-size: 9px;
    padding: 6px 10px;
    letter-spacing: 0.12em;
  }
  .pricebar__mid .pricecard__amount { font-size: 44px; }
}
