/* ==========================================================================
   mwahhh.com — "Velvet Hours" v1.0
   The 1am aesthetic: velvet void, heartbeat pink, champagne, haze violet.
   Fraunces flirts in the headlines. Inter Tight does the talking.
   DM Mono keeps the receipts.
   ========================================================================== */

:root {
  /* Surfaces — velvet void, violet undertone */
  --void: #0B0812;
  --panel: #151021;
  --panel-2: #1F1830;
  --overlay: rgba(11, 8, 18, 0.82);
  --line: rgba(247, 239, 226, 0.09);
  --line-strong: rgba(247, 239, 226, 0.16);

  /* Text — candlelight cream, never white */
  --cream: #F7EFE2;
  --muted: #C6BDD1;
  --faint: #8F869D;
  --ink: #150E1C;

  /* Signature — the heartbeat */
  --heart: #FF2E63;
  --heart-deep: #D91A50;
  --blush: #FFD4DF;
  --honey: #F5C97B;
  --haze: #A48BFF;
  --online: #53E08C;

  /* Legacy aliases (subpages) */
  --bg-base: var(--void);
  --bg-elevated: var(--panel);
  --bg-elevated2: var(--panel-2);
  --border-subtle: var(--line-strong);
  --text-primary: var(--cream);
  --text-secondary: var(--muted);
  --text-tertiary: var(--faint);
  --cherry: var(--heart);
  --cherry-deep: var(--heart-deep);
  --butter: var(--honey);
  --pop-blue: var(--haze);

  /* Type */
  --font-display: 'Fraunces', 'Instrument Serif', Georgia, serif;
  --font-ui: 'Inter Tight', -apple-system, system-ui, sans-serif;
  --font-mono: 'DM Mono', 'SF Mono', ui-monospace, monospace;

  /* Motion */
  --dur-fast: 220ms;
  --dur-slow: 700ms;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --radius: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --max-w: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }

body {
  overflow-anchor: none;
  background: var(--void);
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--heart); color: var(--ink); }
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--heart);
  outline-offset: 3px;
  border-radius: 4px;
}

/* film grain */
.grain {
  position: fixed; inset: -50%; pointer-events: none; z-index: 2000;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 44px); }

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.loader {
  position: fixed; inset: 0; z-index: 3000;
  background: var(--void);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.9s var(--ease-expo);
}
.loader.done { transform: translateY(-101%); }
.loader.gone { display: none; }
.loader-inner { text-align: center; }
.loader-word {
  font-family: var(--font-display);
  font-style: italic; font-weight: 380;
  font-size: clamp(44px, 9vw, 92px);
  letter-spacing: -0.02em;
  color: var(--cream);
  display: inline-flex;
}
.loader-word .ch { display: inline-block; opacity: 0; transform: translateY(0.55em) rotate(6deg); }
.loader-word .kiss-dot { color: var(--heart); }
.loader-line {
  margin: 26px auto 0; width: min(220px, 50vw); height: 1px;
  background: var(--line-strong); position: relative; overflow: hidden;
}
.loader-line i {
  position: absolute; inset: 0; background: var(--heart);
  transform: scaleX(0); transform-origin: left center;
}
.loader-status {
  margin-top: 14px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: lowercase; color: var(--faint);
}
@media (prefers-reduced-motion: reduce) {
  .loader { display: none; }
}

/* ==========================================================================
   CURSOR
   ========================================================================== */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 2600;
  border-radius: 50%;
  transform: translate(-100px, -100px);
}
.cursor-dot { width: 6px; height: 6px; background: var(--heart); }
.cursor-ring {
  width: 34px; height: 34px; border: 1px solid rgba(255, 46, 99, 0.55);
  display: flex; align-items: center; justify-content: center;
  transition: width 0.28s var(--ease-out), height 0.28s var(--ease-out),
              border-color 0.28s var(--ease-out), background 0.28s var(--ease-out);
}
.cursor-ring .cursor-label {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em;
  color: var(--ink); opacity: 0; transition: opacity 0.2s var(--ease-out);
}
.cursor-ring.is-hover { width: 52px; height: 52px; background: rgba(255, 46, 99, 0.12); }
.cursor-ring.is-label {
  width: 64px; height: 64px; background: var(--heart); border-color: var(--heart);
}
.cursor-ring.is-label .cursor-label { opacity: 1; }
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ==========================================================================
   WORDMARK
   ========================================================================== */
.wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 420;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--cream);
  white-space: nowrap;
  display: inline-flex; align-items: baseline; gap: 2px;
}
.wordmark .kiss-dot { color: var(--heart); }
.wordmark .mark {
  width: 0.42em; height: 0.42em; align-self: center; margin-left: 0.14em;
  fill: var(--heart);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out),
              transform 0.5s var(--ease-expo);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: var(--overlay);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 18px;
}
.site-header .wordmark { font-size: 28px; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a.nav-link {
  position: relative;
  font-size: 13px; font-weight: 550; letter-spacing: 0.08em; text-transform: lowercase;
  color: var(--muted); text-decoration: none;
  padding: 9px 14px; border-radius: var(--radius-pill);
  transition: color var(--dur-fast) var(--ease-out);
}
.site-nav a.nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px;
  height: 1px; background: var(--heart);
  transform: scaleX(0); transform-origin: right center;
  transition: transform 0.35s var(--ease-expo);
}
.site-nav a.nav-link:hover { color: var(--cream); }
.site-nav a.nav-link:hover::after { transform: scaleX(1); transform-origin: left center; }
@media (max-width: 760px) {
  .site-nav a.nav-link { display: none; }
  .site-header .wrap { height: 62px; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ui); font-size: 15px; font-weight: 620;
  letter-spacing: 0.03em; text-transform: lowercase; text-decoration: none;
  border-radius: var(--radius-pill); padding: 16px 30px;
  border: 1px solid transparent; cursor: pointer;
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease-spring),
              color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
.btn:active { transform: scale(0.96); }
.btn .btn-fill {
  content: ""; position: absolute; inset: -2px; border-radius: 50%;
  background: var(--heart-deep);
  transform: scale(0); z-index: 0;
  transition: transform 0.5s var(--ease-expo);
}
.btn > span, .btn > svg { position: relative; z-index: 1; }
.btn:hover .btn-fill { transform: scale(2.4); }

.btn-cherry {
  background: var(--heart); color: var(--ink);
  box-shadow: 0 8px 32px rgba(255, 46, 99, 0.28);
}
.btn-cherry:hover { box-shadow: 0 14px 44px rgba(255, 46, 99, 0.42); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border-color: var(--line-strong);
}
.btn-ghost .btn-fill { background: var(--panel-2); }
.btn-ghost:hover { border-color: var(--faint); }
.btn-sm { font-size: 13px; padding: 10px 20px; }

/* ==========================================================================
   KICKER / HEADINGS
   ========================================================================== */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.24em; text-transform: lowercase;
  color: var(--heart); margin-bottom: 20px;
}
.kicker::before {
  content: ""; width: 22px; height: 1px; background: var(--heart); opacity: 0.7;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 380;
  letter-spacing: -0.015em;
  line-height: 1.02;
  font-variation-settings: "SOFT" 40, "WONK" 0;
}
h2 { font-size: clamp(40px, 5.6vw, 68px); margin-bottom: 20px; }
h2 em, h1 em {
  font-style: italic; color: var(--heart);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

.section { padding: clamp(90px, 12vw, 170px) 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 76px); }
.section-head p { color: var(--muted); font-size: 19px; max-width: 560px; }

.sec-index {
  position: absolute; top: clamp(40px, 6vw, 80px); right: clamp(20px, 4vw, 44px);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em;
  color: var(--faint); writing-mode: vertical-rl;
}

/* word-level reveal targets (JS splits) */
.split-lines .line { display: block; overflow: hidden; }
.split-lines .line > span { display: inline-block; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 130px 0 40px; overflow: hidden;
}
#heart-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
  opacity: 0.9;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(52vw 40vh at 68% 34%, rgba(255, 46, 99, 0.14), transparent 68%),
    radial-gradient(40vw 34vh at 20% 78%, rgba(164, 139, 255, 0.10), transparent 70%);
}
.hero .wrap {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero h1 {
  font-size: clamp(54px, 9.2vw, 132px);
  line-height: 0.98;
  margin: 0 0 26px;
}
.hero h1 .row { display: block; overflow: hidden; }
.hero h1 .row > span { display: inline-block; will-change: transform; }
.hero h1 em .dot { color: var(--cream); font-style: normal; }
.hero-typing {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em;
  color: var(--faint); margin-bottom: 22px; text-transform: lowercase;
}
.hero-typing .dots { display: inline-flex; gap: 3px; }
.hero-typing .dots i {
  width: 4px; height: 4px; border-radius: 50%; background: var(--heart);
  animation: typing 1.2s infinite var(--ease-out);
}
.hero-typing .dots i:nth-child(2) { animation-delay: 0.18s; }
.hero-typing .dots i:nth-child(3) { animation-delay: 0.36s; }
.hero .sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--muted);
  max-width: 540px; line-height: 1.58;
  margin-bottom: 36px;
}
.hero .sub em {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.08em; color: var(--cream);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.disclosure {
  font-size: 12px; color: var(--faint); letter-spacing: 0.08em;
  font-family: var(--font-mono);
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em;
  color: var(--faint); text-transform: lowercase;
}
.hero-scroll i {
  width: 1px; height: 44px; background: var(--line-strong);
  position: relative; overflow: hidden; display: block;
}
.hero-scroll i::after {
  content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 50%;
  background: var(--heart);
  animation: scroll-hint 1.8s var(--ease-expo) infinite;
}
@keyframes scroll-hint {
  0% { top: -50%; } 60%, 100% { top: 110%; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding: 120px 0 90px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 56px; }
  .hero .phone-col { display: flex; justify-content: center; }
  .hero-scroll { display: none; }
}

/* ==========================================================================
   PHONE MOCKUP — live chat
   ========================================================================== */
.phone-col { perspective: 1200px; }
.phone {
  width: 340px; max-width: 88vw;
  background: linear-gradient(160deg, var(--panel) 0%, #120D1E 100%);
  border: 1px solid var(--line-strong);
  border-radius: 44px;
  padding: 16px 16px 22px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 8px rgba(31, 24, 48, 0.5),
    0 0 90px rgba(255, 46, 99, 0.12);
  transform: rotate(2.5deg);
  will-change: transform;
}
.phone-top {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 6px 15px; border-bottom: 1px solid var(--line);
}
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; font-size: 17px;
  color: var(--cream); flex: none;
}
img.avatar { object-fit: cover; border: 1px solid var(--line-strong); }
.phone-top .who .name { font-size: 15px; font-weight: 620; line-height: 1.2; }
.phone-top .who .status {
  font-size: 11px; color: var(--faint); font-family: var(--font-mono);
  display: flex; align-items: center; gap: 6px; letter-spacing: 0.06em;
}
.phone-top .who .status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--online);
  box-shadow: 0 0 8px rgba(83, 224, 140, 0.8);
}
.chat {
  padding: 16px 4px 4px; display: flex; flex-direction: column; gap: 10px;
  height: 396px; justify-content: flex-end; overflow: hidden;
}
.bubble {
  max-width: 84%; padding: 10px 15px; font-size: 14.5px; line-height: 1.45;
  border-radius: 20px;
  opacity: 1; transform-origin: bottom left;
}
.bubble.them {
  align-self: flex-start; background: var(--panel-2);
  color: var(--cream); border-bottom-left-radius: 7px;
}
.bubble.me {
  align-self: flex-end; background: var(--heart); color: var(--ink);
  font-weight: 530;
  border-bottom-right-radius: 7px; transform-origin: bottom right;
}
.chat .stamp {
  font-family: var(--font-mono);
  font-size: 10px; color: var(--faint); text-align: center; padding: 6px 0 2px;
  letter-spacing: 0.14em;
}
.chat .is-hidden { display: none; }
.bubble.pop { animation: bubble-pop 0.45s var(--ease-spring) both; }
@keyframes bubble-pop {
  from { opacity: 0; transform: scale(0.7) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.typing {
  align-self: flex-start; display: inline-flex; gap: 5px;
  background: var(--panel-2); border-radius: 20px; border-bottom-left-radius: 7px;
  padding: 13px 16px;
}
.typing.is-hidden { display: none; }
.typing i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--faint);
  animation: typing 1.2s infinite var(--ease-out);
}
.typing i:nth-child(2) { animation-delay: 0.18s; }
.typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 26px 0; overflow: hidden; position: relative;
  background: rgba(21, 16, 33, 0.4);
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-display); font-style: italic; font-weight: 380;
  font-size: clamp(22px, 3vw, 34px); white-space: nowrap;
  color: var(--cream); padding-right: 18px;
}
.marquee-track .m-sep { color: var(--heart); font-style: normal; }
.marquee-track span:nth-child(4n+3) { color: var(--faint); }

/* ==========================================================================
   HOW — pinned acts
   ========================================================================== */
.how { position: relative; }
.acts { display: grid; gap: 18px; }
.act {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(22px, 4vw, 60px);
  align-items: start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 52px);
  position: relative; overflow: hidden;
}
.act::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px 200px at 85% 0%, rgba(255, 46, 99, 0.07), transparent 70%);
}
.act .num {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.3em;
  color: var(--heart); padding-top: 10px;
}
.act h3 {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 12px; letter-spacing: -0.01em;
}
.act p { font-size: 17px; color: var(--muted); max-width: 560px; }
.act .act-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
@media (max-width: 700px) {
  .act { grid-template-columns: 1fr; gap: 12px; }
}

/* ==========================================================================
   CAST
   ========================================================================== */
.cast-scroller { overflow: visible; }
.cast {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.cast-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 26px;
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color var(--dur-fast) var(--ease-out);
  will-change: transform;
}
.cast-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(340px 240px at var(--mx, 50%) var(--my, 0%), rgba(255, 46, 99, 0.1), transparent 70%);
  transition: opacity 0.35s var(--ease-out); pointer-events: none;
}
.cast-card:hover { border-color: rgba(255, 46, 99, 0.35); }
.cast-card:hover::before { opacity: 1; }
.cast-card .photo-wrap {
  border-radius: 18px; overflow: hidden; margin-bottom: 18px;
  aspect-ratio: 1 / 1; border: 1px solid var(--line);
}
.cast-card .photo {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease-expo), filter 0.8s var(--ease-expo);
  filter: saturate(0.94);
}
.cast-card:hover .photo { transform: scale(1.08); filter: saturate(1.05); }
.cast-card .avatar { width: 60px; height: 60px; font-size: 25px; margin-bottom: 18px; }
.cast-card h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 27px; margin-bottom: 3px; letter-spacing: -0.01em;
}
.cast-card .role {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em;
  color: var(--faint); margin-bottom: 16px;
}
.cast-card .quote {
  font-size: 14.5px; color: var(--muted); line-height: 1.55;
  padding-left: 12px; border-left: 2px solid var(--heart); margin-bottom: 18px;
}
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: lowercase;
  padding: 5px 12px; border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong); color: var(--faint);
}
.tag.hot { border-color: rgba(255, 46, 99, 0.45); color: var(--heart); }
.tag.first { border-color: rgba(245, 201, 123, 0.4); color: var(--honey); }
.tag.haze { border-color: rgba(164, 139, 255, 0.45); color: var(--haze); }
.cast-more { margin-top: 30px; color: var(--faint); font-size: 15px; }
.cast-more em { color: var(--cream); font-family: var(--font-display); font-style: italic; }
@media (max-width: 1020px) { .cast { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .cast { grid-template-columns: 1fr; } }

/* avatar gradient variants */
.av-1 { background: linear-gradient(135deg, var(--heart), var(--heart-deep)); color: var(--ink); }
.av-2 { background: linear-gradient(135deg, #2A2140, #45304C); color: var(--blush); border: 1px solid var(--line-strong); }
.av-3 { background: linear-gradient(135deg, #372A5E, #221B36); color: var(--haze); border: 1px solid var(--line-strong); }
.av-4 { background: linear-gradient(135deg, #5C4626, #2A2140); color: var(--honey); border: 1px solid var(--line-strong); }

/* ==========================================================================
   FEATURES
   ========================================================================== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease-expo), border-color var(--dur-fast) var(--ease-out);
}
.feature:hover { transform: translateY(-5px); border-color: rgba(255, 46, 99, 0.35); }
.feature .ico {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--panel-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.45s var(--ease-spring);
}
.feature:hover .ico { transform: rotate(-8deg) scale(1.08); }
.feature .ico svg {
  width: 22px; height: 22px; stroke: var(--heart); stroke-width: 1.8; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.feature.butter .ico svg { stroke: var(--honey); }
.feature.blue .ico svg { stroke: var(--haze); }
.feature h3 { font-size: 18px; font-weight: 620; margin-bottom: 8px; letter-spacing: 0.005em; }
.feature p { font-size: 15px; color: var(--muted); }
@media (max-width: 880px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .features { grid-template-columns: 1fr; } }

/* ==========================================================================
   MANIFESTO — scrub quote
   ========================================================================== */
.manifesto { padding: clamp(110px, 16vw, 220px) 0; }
.manifesto p {
  font-family: var(--font-display); font-weight: 380; font-style: italic;
  font-size: clamp(34px, 5.4vw, 72px); line-height: 1.16;
  letter-spacing: -0.015em;
  max-width: 1080px;
}
.manifesto .w { opacity: 0.14; display: inline-block; transition: opacity 0.3s linear; }
.manifesto .w.lit { opacity: 1; }
.manifesto .w.hot { color: var(--heart); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 780px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 26px 4px; font-size: 19px; font-weight: 560;
  transition: color var(--dur-fast) var(--ease-out);
}
.faq summary:hover { color: var(--blush); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-display); font-size: 30px; font-weight: 300;
  color: var(--heart); line-height: 1; flex: none;
  transition: transform 0.4s var(--ease-spring);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq .a {
  padding: 0 4px 26px; color: var(--muted); font-size: 16px; max-width: 660px;
}
.faq .a a { color: var(--heart); }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta {
  position: relative; overflow: hidden;
  text-align: center; padding: clamp(130px, 18vw, 240px) 0;
}
.final-cta .glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(46vw 40vh at 50% 100%, rgba(255, 46, 99, 0.16), transparent 70%),
    radial-gradient(30vw 26vh at 78% 20%, rgba(164, 139, 255, 0.08), transparent 70%);
}
.final-cta h2 { font-size: clamp(46px, 8vw, 110px); margin-bottom: 22px; line-height: 0.98; }
.final-cta p { color: var(--muted); font-size: 19px; margin-bottom: 40px; }
.final-cta .wrap { position: relative; }
.burst-zone { position: relative; display: inline-block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 100px; font-size: 14px;
  position: relative; overflow: hidden;
}
.site-footer .top {
  display: flex; flex-wrap: wrap; gap: 40px;
  justify-content: space-between; align-items: flex-start; margin-bottom: 44px;
}
.site-footer .wordmark { font-size: 34px; }
.site-footer .foot-tag { color: var(--faint); margin-top: 8px; font-size: 13.5px; }
.foot-links { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-links h4 {
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.22em; text-transform: lowercase;
  color: var(--faint); margin-bottom: 14px;
}
.foot-links a {
  display: block; color: var(--muted); text-decoration: none;
  padding: 5px 0; font-size: 14.5px;
  transition: color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.foot-links a:hover { color: var(--heart); transform: translateX(3px); }
.site-footer .legal {
  border-top: 1px solid var(--line); padding-top: 26px;
  color: var(--faint); font-size: 12px; letter-spacing: 0.05em;
  font-family: var(--font-mono);
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between;
}
.giant-word {
  font-family: var(--font-display); font-style: italic; font-weight: 380;
  font-size: clamp(90px, 19vw, 300px); line-height: 0.9;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 239, 226, 0.16);
  user-select: none; pointer-events: none;
  text-align: center;
  margin: 30px 0 60px;
  transition: -webkit-text-stroke-color 0.6s var(--ease-out);
}
.giant-word .fill {
  background: linear-gradient(90deg, var(--heart), var(--haze));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0;
  opacity: 0; transition: opacity 0.8s var(--ease-out);
}
.giant-word.lit .fill { opacity: 1; }

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.mobile-cta {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 150;
  transform: translateY(120%);
  transition: transform 0.5s var(--ease-expo);
}
.mobile-cta.show { transform: none; }
.mobile-cta .btn { width: 100%; padding: 17px; font-size: 16px; box-shadow: 0 12px 44px rgba(255, 46, 99, 0.4); }
@media (max-width: 760px) {
  .mobile-cta { display: block; }
}

/* ==========================================================================
   PROSE PAGES (legal, support, etc.)
   ========================================================================== */
.page-hero { padding: 150px 0 34px; }
.page-hero h1 { font-size: clamp(40px, 6.4vw, 64px); margin-bottom: 12px; }
.page-hero .meta {
  color: var(--faint); font-size: 12.5px; letter-spacing: 0.08em;
  font-family: var(--font-mono);
}
.prose { max-width: 740px; padding-bottom: 120px; }
.prose h2 { font-size: 29px; margin: 50px 0 14px; }
.prose h3 {
  font-family: var(--font-ui); font-size: 16.5px; font-weight: 620;
  margin: 30px 0 8px; color: var(--cream);
}
.prose p { color: var(--muted); margin-bottom: 15px; }
.prose ul, .prose ol { color: var(--muted); margin: 0 0 16px 22px; }
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--heart); }
.prose a { color: var(--heart); }
.prose strong { color: var(--cream); }
.prose .callout {
  background: var(--panel); border: 1px solid var(--line);
  border-left: 3px solid var(--heart); border-radius: 14px;
  padding: 18px 21px; margin: 24px 0; font-size: 15px; color: var(--muted);
}

/* ---------- 404 ---------- */
.err-page {
  min-height: 88vh; display: flex; align-items: center; text-align: center;
  padding-top: 60px;
}
.err-page .n {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(100px, 20vw, 190px); color: var(--heart); line-height: 1;
}
.err-page h1 { font-size: clamp(30px, 4.4vw, 44px); margin: 12px 0 16px; }
.err-page p { color: var(--muted); margin-bottom: 30px; }
.err-page .wrap { width: 100%; }

/* ==========================================================================
   REVEALS (CSS fallback + GSAP hooks)
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
  }
  .reveal.in { opacity: 1; transform: none; }
  body.has-gsap .reveal { transition: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  html { scroll-behavior: auto; }
  #heart-canvas, .hero-scroll { display: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
