/* ===========================
   Steady — landing styles
   =========================== */

:root {
  /* Brand palette */
  --coral: #F37565;
  --coral-soft: #FCE2DD;
  --coral-pale: #FDEFEC;
  --lavender: #B9A7F5;
  --lavender-soft: #E8E2FB;
  --peach: #F5B3A8;
  --peach-soft: #FBE2DC;
  --cream: #F5EFE2;
  --cream-2: #EFE9DB;
  /* Aliases (kept for back-compat with components written for lime) */
  --lime: var(--coral);
  --lime-soft: var(--coral-pale);
  --lime-pale: var(--coral-pale);
  /* Neutrals */
  --ink: #1F1E20;
  --ink-2: #2A2A2D;
  --gray: #6B6864;
  --gray-2: #97938C;
  --line: #E8E2D2;
  --card: #F5EFE2;
  --white: #FFFDF8;
  --bg: #FAF6EC;

  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-2xl: 44px;

  --shadow-soft: 0 1px 0 rgba(15,15,16,.04), 0 12px 32px -16px rgba(15,15,16,.10);
  --shadow-lift: 0 1px 0 rgba(15,15,16,.04), 0 24px 48px -20px rgba(15,15,16,.18);

  --font-display: "Bricolage Grotesque", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Hide native cursor when custom cursor is active */
html[data-cursor="on"] body,
html[data-cursor="on"] body * { cursor: none !important; }
@media (pointer: coarse) {
  html[data-cursor="on"] body,
  html[data-cursor="on"] body * { cursor: auto !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* Custom cursor */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  transition: width .2s ease, height .2s ease, background .2s ease;
}
.cursor-ring {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--coral);
  transition: width .25s cubic-bezier(.2,.7,.2,1), height .25s cubic-bezier(.2,.7,.2,1),
              background .2s ease, border-color .2s ease, opacity .2s ease;
}
.cursor-hover .cursor-ring {
  width: 64px; height: 64px;
  background: rgba(243,117,101,0.15);
  border-color: var(--coral);
}
.cursor-text .cursor-ring {
  width: 4px; height: 28px;
  border-radius: 2px;
  background: var(--coral);
  border-color: transparent;
}
.cursor-drag .cursor-ring {
  width: 80px; height: 80px;
  border-color: var(--lavender);
  background: rgba(185,167,245,0.20);
}
.cursor-press .cursor-ring { width: 22px; height: 22px; background: var(--coral); border-color: var(--coral); }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--coral);
  z-index: 9998;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .1s linear;
}

/* Magnetic + spotlight */
.magnetic { transition: transform .25s cubic-bezier(.2,.7,.2,1); }
.spotlight { position: relative; overflow: hidden; }
.spotlight::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%),
              rgba(243,117,101,0.14), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  z-index: 1;
}
.spotlight:hover::before { opacity: 1; }
.spotlight > * { position: relative; z-index: 2; }

/* Draggable badge */
.draggable {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  transition: box-shadow .2s ease, transform .2s ease;
}
.draggable:hover { transform: scale(1.04); }
.draggable.dragging {
  cursor: grabbing;
  transition: none;
  z-index: 50 !important;
  box-shadow: 0 24px 40px -16px rgba(243,117,101,.35) !important;
}

/* Theme toggle button */
.theme-btn {
  width: 38px; height: 38px;
  border-radius: 999px;
  display: inline-grid; place-items: center;
  background: rgba(255,253,248,0.6);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, transform .35s ease, color .2s ease;
}
.theme-btn:hover { background: var(--coral-pale); transform: rotate(20deg); }

/* Color picker dock */
.color-dock {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 45;
  background: rgba(255,253,248,0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px 8px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 40px -16px rgba(31,30,32,.18);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.color-dock .lbl {
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gray);
  font-size: 10px;
  font-weight: 700;
}
.color-swatches { display: flex; gap: 6px; align-items: center; }
.swatch {
  width: 26px; height: 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  transition: transform .15s ease;
  display: inline-block;
  flex-shrink: 0;
}
.swatch:hover { transform: scale(1.15); }
.swatch[data-on="1"]::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--ink);
}
.swatch-picker {
  width: 26px; height: 26px;
  border-radius: 999px;
  border: 2px dashed var(--gray);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: conic-gradient(from 0deg, #F37565, #B9A7F5, #F5B3A8, #F37565);
}
.swatch-picker input {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer; border: 0; padding: 0;
}

@media (max-width: 640px) {
  .color-dock { left: 12px; bottom: 12px; padding: 6px 10px 6px 14px; gap: 10px; }
  .color-dock .lbl { display: none; }
}

/* Dark mode */
html[data-theme="dark"] {
  --bg: #131214;
  --ink: #F5F1E8;
  --ink-2: #FAF6EC;
  --gray: #9C9893;
  --line: #2A2A2D;
  --card: #1A191C;
  --white: #1F1E20;
  --cream: #1A191C;
}
html[data-theme="dark"] body {
  background-image: radial-gradient(rgba(245,241,232,0.04) 1px, transparent 1px);
}
html[data-theme="dark"] .nav {
  background: rgba(31,30,32,0.7);
  border-color: rgba(255,253,248,0.08);
}
html[data-theme="dark"] .nav-link { color: #E5E0D6; }
html[data-theme="dark"] .nav-link:hover { background: rgba(255,253,248,0.06); }
html[data-theme="dark"] .card { background: #1A191C; border-color: #2A2A2D; }
html[data-theme="dark"] .testimonial { background: #1A191C; }
html[data-theme="dark"] .testimonial .quote { color: var(--ink); }
html[data-theme="dark"] .chip { background: #1A191C; border-color: #2A2A2D; color: var(--ink); }
html[data-theme="dark"] .color-dock { background: rgba(31,30,32,0.75); border-color: #2A2A2D; color: var(--ink); }
html[data-theme="dark"] .theme-btn { background: #1A191C; border-color: #2A2A2D; color: var(--ink); }
html[data-theme="dark"] .cursor-dot { background: var(--coral); }
html[data-theme="dark"] .faq-q { color: var(--ink); }
html[data-theme="dark"] .stat-num { color: var(--ink); }

/* 3D tilt */
.tilt-wrap {
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}


body {
  /* very subtle dot grid on warm cream */
  background-image: radial-gradient(rgba(31,30,32,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
img { display: block; max-width: 100%; }

/* ---------- Typography ---------- */

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--ink);
}

.h1 { font-size: clamp(48px, 8.2vw, 124px); }
.h2 { font-size: clamp(40px, 5.6vw, 84px); }
.h3 { font-size: clamp(28px, 3.4vw, 48px); }
.h4 { font-size: clamp(20px, 2vw, 28px); }

.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  color: #3a3a3d;
  line-height: 1.45;
  max-width: 60ch;
}

.muted { color: var(--gray); }

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}

.center { text-align: center; }
.flex { display: flex; }
.col { display: flex; flex-direction: column; }
.row { display: flex; flex-direction: row; }
.between { justify-content: space-between; }
.aic { align-items: center; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; }
.gap-24 { gap: 24px; } .gap-32 { gap: 32px; } .gap-48 { gap: 48px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover { background: #000; }

.btn-coral, .btn-lime {
  background: var(--coral);
  color: var(--white);
}
.btn-coral:hover, .btn-lime:hover { box-shadow: 0 12px 30px -10px rgba(243,117,101,.55); transform: translateY(-1px); }

.btn-ghost {
  background: rgba(15,15,16,.04);
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(15,15,16,.08); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.arrow-circle {
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--coral);
  display: inline-grid; place-items: center;
  color: var(--white);
  margin-left: 6px;
  transition: transform .25s ease;
}
.btn:hover .arrow-circle { transform: translate(2px, -2px) rotate(-8deg); }

.btn-primary .arrow-circle { background: var(--coral); color: var(--white); }
.btn-coral .arrow-circle, .btn-lime .arrow-circle { background: var(--ink); color: var(--white); }

/* ---------- Chips / Badges ---------- */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(15,15,16,.03);
}
.chip .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--coral); box-shadow: 0 0 0 4px rgba(243,117,101,.22); }

.chip-lime, .chip-coral { background: var(--coral-pale); border-color: transparent; }
.chip-lavender { background: var(--lavender-soft); border-color: transparent; }
.chip-dark { background: var(--ink); color: var(--white); border-color: transparent; }
.chip-dark .dot { background: var(--coral); }

/* ---------- Cards ---------- */

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.card-soft {
  background: var(--card);
  border-radius: var(--r-xl);
  padding: 32px;
  border: 1px solid transparent;
}

/* ---------- Phone frame ---------- */

.phone {
  position: relative;
  width: 320px;
  aspect-ratio: 9 / 19;
  border-radius: 44px;
  background: #0F0F10;
  padding: 10px;
  box-shadow: 0 40px 80px -30px rgba(15,15,16,.35), 0 0 0 1px rgba(15,15,16,.06);
}
.phone::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #0F0F10;
  border-radius: 999px;
  z-index: 3;
}
.phone .screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: var(--coral-pale);
  position: relative;
}

/* ---------- Image slot defaults ---------- */
image-slot {
  --slot-bg: var(--coral-pale);
  --slot-border: rgba(31,30,32,.08);
  --slot-text: var(--gray);
}

/* ---------- Soft decorative blobs ---------- */

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .65;
  pointer-events: none;
  z-index: 0;
}
.blob.lime, .blob.coral { background: var(--coral); opacity: .22; }
.blob.lavender { background: var(--lavender); opacity: .25; }
.blob.mint, .blob.peach { background: var(--peach-soft); opacity: .85; }

/* ---------- Big background type ---------- */

.bg-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(140px, 22vw, 360px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--coral-pale);
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Grids ---------- */

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

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2.keep-2, .grid-3.keep-2, .grid-4.keep-2 { grid-template-columns: 1fr 1fr; }
}

/* ---------- Tag (small label) ---------- */

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--coral);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ---------- Mini icon pill ---------- */

.icon-pill {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: var(--coral-pale);
  display: inline-grid; place-items: center;
  color: var(--coral);
}
.icon-pill.lavender { background: var(--lavender-soft); color: var(--lavender); }
.icon-pill.peach { background: var(--peach-soft); color: var(--coral); }
.icon-pill.dark { background: var(--ink); color: var(--coral); }

/* ---------- FAQ ---------- */

.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 8px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
}
.faq-a-inner {
  padding: 0 8px 28px;
  color: var(--gray);
  font-size: 16px;
  max-width: 70ch;
}
.faq-toggle {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--coral-pale);
  color: var(--coral);
  display: inline-grid; place-items: center;
  flex-shrink: 0;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq-item.open .faq-toggle {
  background: var(--coral);
  color: var(--white);
  transform: rotate(45deg);
}

/* ---------- Navbar ---------- */

.nav-wrap {
  position: fixed;
  top: 20px;
  left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 14px;
  background: rgba(255,253,248,.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(31,30,32,.08);
  border-radius: 999px;
  box-shadow: 0 12px 30px -16px rgba(31,30,32,.18);
  max-width: 100%;
}
.nav-links {
  display: flex;
  gap: 4px;
  margin: 0 8px;
}
.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #2a2a2c;
  transition: background .18s ease;
}
.nav-link:hover { background: rgba(31,30,32,.05); }
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.nav-logo img { height: 30px; width: 30px; border-radius: 8px; display: block; }

@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* ---------- Footer ---------- */

.footer {
  background: #0B0B0C;
  color: #C8CACC;
  padding: clamp(72px, 8vw, 110px) 0 40px;
  border-radius: 44px 44px 0 0;
  margin-top: 60px;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  margin: 0 0 18px;
}
.footer a { color: #C8CACC; }
.footer a:hover { color: var(--lime); }

/* ---------- Floating CTA ---------- */

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 20px 40px -15px rgba(15,15,16,.45);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
}
.floating-cta.show { transform: translateY(0); opacity: 1; }
.floating-cta .arrow-circle { background: var(--coral); color: var(--white); }

/* ---------- Reveal-text (word stagger) ---------- */
.reveal-text .rv-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.08em;
  line-height: inherit;
}
.reveal-text .rv-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-text.revealed .rv-word .rv-inner { transform: translateY(0); }
.reveal-text.revealed .rv-word:nth-child(1n) .rv-inner { transition-delay: calc(var(--reveal-delay,0ms) + 0ms); }
.reveal-text.revealed .rv-word:nth-child(2n) .rv-inner { transition-delay: calc(var(--reveal-delay,0ms) + 60ms); }
.reveal-text.revealed .rv-word:nth-child(3n) .rv-inner { transition-delay: calc(var(--reveal-delay,0ms) + 120ms); }
.reveal-text.revealed .rv-word:nth-child(4n) .rv-inner { transition-delay: calc(var(--reveal-delay,0ms) + 180ms); }
.reveal-text.revealed .rv-word:nth-child(5n) .rv-inner { transition-delay: calc(var(--reveal-delay,0ms) + 240ms); }
.reveal-text.revealed .rv-word:nth-child(6n) .rv-inner { transition-delay: calc(var(--reveal-delay,0ms) + 300ms); }
.reveal-text.revealed .rv-word:nth-child(7n) .rv-inner { transition-delay: calc(var(--reveal-delay,0ms) + 360ms); }
.reveal-text.revealed .rv-word:nth-child(8n) .rv-inner { transition-delay: calc(var(--reveal-delay,0ms) + 420ms); }

/* ---------- Section indicator (right rail) ---------- */
.section-indicator {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 44;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.si-dot {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  height: 18px;
}
.si-dot::after {
  content: "";
  width: 26px; height: 2px;
  background: var(--gray-2);
  border-radius: 2px;
  transition: background .3s ease, width .3s cubic-bezier(.2,.7,.2,1);
  order: 2;
}
.si-num { order: 1; opacity: 0; transition: opacity .3s ease; }
.si-label { display: none; }
.si-dot.on { color: var(--ink); }
.si-dot.on::after { background: var(--coral); width: 40px; }
.si-dot.on .si-num { opacity: 1; }
.si-dot:hover .si-num { opacity: 1; }
.si-dot:hover::after { background: var(--coral); }
@media (max-width: 980px) { .section-indicator { display: none; } }

/* ---------- Brand marquee ---------- */
.brand-marquee {
  overflow: hidden;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.marquee-label { display: inline-block; padding: 0 4px; }
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-33.333%, 0, 0); }
}
.brand-marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- Giant wordmark ---------- */
.giant-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(120px, 24vw, 360px);
  line-height: 0.82;
  letter-spacing: -0.06em;
  text-align: center;
  user-select: none;
  pointer-events: none;
  margin: 0;
  color: var(--coral);
}

/* ---------- Fade up on view ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ---------- Scroll hint ---------- */
.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
}
.scroll-hint::before {
  content: "";
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--coral) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'><path d='M12 5v14'/><path d='m6 13 6 6 6-6'/></svg>") center / 14px no-repeat;
  animation: bob 1.6s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/* ---------- Parallax helper ---------- */
.parallax { will-change: transform; }

/* ---------- Misc ---------- */

.divider-v {
  width: 1px;
  background: var(--line);
  align-self: stretch;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}

.star {
  color: var(--ink);
  font-size: 16px;
}

.testimonial {
  background: var(--card);
  border-radius: var(--r-xl);
  padding: 36px;
  position: relative;
}
.testimonial .quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.avatar {
  width: 46px; height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--peach), var(--coral));
  color: var(--white);
  font-weight: 700;
  display: inline-grid; place-items: center;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.avatar.lavender { background: linear-gradient(135deg, #D6CDFA, var(--lavender)); }
.avatar.dark { background: linear-gradient(135deg, #3a3a3d, var(--ink)); }

.kpi-card {
  background: var(--coral);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
}

.shine {
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 60%, #2a2a2d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lime-highlight, .coral-highlight {
  background: var(--coral);
  padding: 0 .18em;
  border-radius: 10px;
  color: var(--white);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.lavender-highlight {
  background: var(--lavender);
  padding: 0 .18em;
  border-radius: 10px;
  color: var(--white);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Brand decorative pattern (lavender + coral squiggles + bars), inline SVG */
.brand-pattern {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><g fill='none' stroke-width='12' stroke-linecap='round'><path d='M20 60 Q60 20 110 60 T200 60' stroke='%23F37565'/><path d='M30 170 Q70 130 120 170 T210 170' stroke='%23F37565' opacity='0.55'/><rect x='40' y='95' width='14' height='38' rx='7' fill='%23B9A7F5'/><rect x='72' y='80' width='14' height='53' rx='7' fill='%23F5B3A8'/><rect x='160' y='100' width='14' height='34' rx='7' fill='%23F37565' opacity='0.5'/><rect x='185' y='85' width='14' height='48' rx='7' fill='%23B9A7F5' opacity='0.8'/></g></svg>");
  background-size: 280px 280px;
}
