/* ============================================================
   RAYSE — Design System
   Warm editorial / cinematic. Static, dependency-free.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --bg:      #F1EDEB;   /* cream */
  --ink:     #1c1814;   /* near-black */
  --ink-2:   #161310;   /* deeper */
  --accent:  #FFCE31;   /* signature yellow */
  --accent-h:#ffd955;   /* hover */
  --blush:   #E8DCD9;   /* warm blush */
  --muted:   #8d8275;   /* mono labels / captions */
  --body:    #4c463f;   /* body copy on light */
  --surface: #ffffff;
  --surface-2:#F7F4F1;
  --danger:  #C25A3C;
  --success: #1c8a4a;

  /* On dark */
  --on-dark:        #F1EDEB;
  --on-dark-soft:   rgba(241,237,235,0.82);
  --on-dark-mute:   rgba(241,237,235,0.6);
  --on-dark-line:   rgba(241,237,235,0.14);

  /* Type */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Space Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Layout */
  --maxw: 1120px;
  --gutter: 40px;

  /* Radius / shadow */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 24px;
  --shadow-card: 0 32px 64px -34px rgba(28,24,20,0.42), 0 4px 14px -10px rgba(28,24,20,0.16);
  --shadow-float: 0 40px 90px -44px rgba(28,24,20,0.42);

  /* Motion */
  --ease-out: cubic-bezier(.2,.7,.2,1);
  --dur: .7s;

  /* Nav */
  --nav-h: 66px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--accent); color: var(--ink); }

/* Focus */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--accent); color: var(--ink);
  padding: 10px 18px; border-radius: 6px; z-index: 200;
  font-weight: 600; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Utility ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.mono {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow { display:block; margin-bottom: 22px; }
.rule { display: block; width: 52px; height: 6px; background: var(--accent); margin-bottom: 22px; transform-origin: left center; }
.rule--ink { background: var(--ink); }
.tabnum { font-variant-numeric: tabular-nums; }

/* Section rhythm */
.section { padding: clamp(72px, 9vw, 120px) 0; }
.section--tight { padding: clamp(56px, 7vw, 96px) 0; }

/* Backgrounds */
.bg-ink   { background: var(--ink); color: var(--on-dark); }
.bg-blush { background: var(--blush); }
.bg-white { background: var(--surface); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  padding: 14px 28px; border-radius: 4px;
  transition: background .25s var(--ease-out), transform .25s var(--ease-out), color .25s var(--ease-out), box-shadow .25s var(--ease-out);
  will-change: transform;
}
.btn--primary { background: var(--accent); color: var(--ink); box-shadow: 0 10px 30px -14px rgba(255,206,49,0.8); }
.btn--primary:hover { background: var(--accent-h); transform: translateY(-2px); box-shadow: 0 18px 40px -16px rgba(255,206,49,0.9); }
.btn--ghost { border: 1px solid rgba(241,237,235,0.3); color: var(--on-dark); }
.btn--ghost:hover { border-color: var(--on-dark); transform: translateY(-2px); }
.btn .arrow { transition: transform .25s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(26,22,19,0.86);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(241,237,235,0.12);
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled { background: rgba(16,16,18,0.95); box-shadow: 0 10px 30px -20px rgba(0,0,0,0.6); }
/* Cinematic hero: nav is transparent over the render, solid once scrolled */
.nav--cine:not(.is-scrolled) { background: transparent; border-bottom-color: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 13px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo img { height: 22px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  color: rgba(241,237,235,0.74); font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em; position: relative; padding: 4px 0;
  transition: color .2s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: #fff; }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta { background: var(--accent); color: var(--ink); font-weight: 600; font-size: 14px; padding: 10px 22px; border-radius: 4px; transition: background .2s ease, transform .2s ease; }
.nav__cta:hover { background: var(--accent-h); transform: translateY(-1px); }

.nav__burger { display: none; width: 42px; height: 42px; border-radius: 8px; position: relative; }
.nav__burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--on-dark); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .2s ease; }
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 20px; }
.nav__burger span:nth-child(3) { top: 25px; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: var(--accent); z-index: 200; transition: width .1s linear; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: 92vh; min-height: 92dvh;
  display: flex; align-items: center;
  background-color: var(--blush);
  background-size: cover;
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: 78% center;
  will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg,
    rgba(241,237,235,0.985) 0%,
    rgba(241,237,235,0.94) 28%,
    rgba(241,237,235,0.6) 50%,
    rgba(241,237,235,0.06) 72%,
    rgba(241,237,235,0) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  padding: 120px var(--gutter) 96px;
}
.hero__content { max-width: 640px; }
.hero h1 { font-weight: 300; letter-spacing: -0.022em; color: var(--ink); max-width: 18ch; }
.hero h1 .sm { display: block; font-size: clamp(22px,2.6vw,34px); line-height: 1.16; }
.hero h1 .lg { display: block; margin-top: 14px; font-size: clamp(36px,4.6vw,60px); line-height: 1.06; }
.hero__kicker { margin-top: 44px; }
.hero__actions { margin-top: 26px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero__scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero__scroll-hint .mouse { width: 22px; height: 34px; border: 1.5px solid var(--muted); border-radius: 12px; position: relative; }
.hero__scroll-hint .mouse::after { content:""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 6px; background: var(--muted); border-radius: 2px; animation: scrollDot 1.6s ease-in-out infinite; }
@keyframes scrollDot { 0%{opacity:0; transform: translate(-50%,0)} 40%{opacity:1} 100%{opacity:0; transform: translate(-50%,10px)} }

/* Hero floating live cards (elevate) */
.hero__stage { position: absolute; z-index: 2; right: max(calc((100vw - var(--maxw)) / 2 + 20px), 4vw); top: 50%; transform: translateY(-50%); width: 340px; pointer-events: none; }
.float-card {
  background: rgba(255,255,255,0.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6); border-radius: var(--r-md);
  box-shadow: 0 30px 60px -30px rgba(28,24,20,0.5); padding: 14px 16px;
  pointer-events: auto;
}
.float-card + .float-card { margin-top: 16px; }
.float-card__top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.float-card__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.float-card__val { font-weight: 600; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); }
.float-card__body { font-size: 13px; line-height: 1.45; color: #2f2822; }
.float-card__foot { margin-top: 8px; display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; color: var(--muted); }
.float-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ink); color: var(--on-dark); border-radius: 30px; padding: 10px 15px;
  box-shadow: 0 24px 48px -22px rgba(28,24,20,0.6); font-size: 13px; font-weight: 600;
  pointer-events: auto;
}
.float-pill .badge { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.float-pill .ico { width: 22px; height: 22px; border-radius: 7px; background: var(--accent); color: var(--ink); display: flex; align-items: center; justify-content: center; }
.f-anim { animation: floaty 6s ease-in-out infinite; }
.f-anim--2 { animation-delay: -2s; }
.f-anim--3 { animation-delay: -4s; }
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-10px) } }

/* Hero metrics bar (elevate) */
.metrics-bar { background: var(--surface); border-top: 1px solid rgba(28,24,20,0.08); border-bottom: 1px solid rgba(28,24,20,0.08); }
.metrics-bar__inner { max-width: var(--maxw); margin: 0 auto; padding: 26px var(--gutter); display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.metric { display: flex; align-items: center; gap: 14px; }
.metric__ico { width: 36px; color: var(--ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.metric__ico svg { width: 34px; height: 34px; }
.metric__val { font-weight: 600; font-size: clamp(20px,2.4vw,26px); line-height: 1; letter-spacing: -0.02em; color: var(--ink); }
.metric__lbl { margin-top: 5px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.metric + .metric { position: relative; }
.metric + .metric::before { content: ""; position: absolute; left: -12px; top: 50%; transform: translateY(-50%); width: 1px; height: 38px; background: rgba(28,24,20,0.1); }

@media (max-width: 1024px) {
  .hero__stage { width: 300px; right: 3vw; }
}
@media (max-width: 900px) {
  .hero__stage { display: none; }
  .metrics-bar__inner { grid-template-columns: repeat(2,1fr); gap: 20px 24px; }
  .metric:nth-child(3)::before { display: none; }
}
@media (max-width: 560px) {
  .metrics-bar__inner { grid-template-columns: 1fr 1fr; gap: 18px; padding: 20px var(--gutter); }
  .metric + .metric::before { display: none; }
  .metric__ico { width: 30px; }
  .metric__ico svg { width: 28px; height: 28px; }
}

/* Banners under hero */
.banner-yellow { background: var(--accent); color: var(--ink); }
.banner-yellow__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 12px var(--gutter);
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; text-align: center;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.banner-yellow__inner .dim { opacity: 0.55; }

.subbanner { background: var(--ink); color: var(--on-dark); position: relative; overflow: hidden; }
.subbanner__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 34px var(--gutter);
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.subbanner p { font-size: clamp(20px,2.4vw,28px); font-weight: 300; line-height: 1.35; letter-spacing: -0.015em; max-width: 30ch; }
.pulse-tag { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); display: flex; align-items: center; gap: 11px; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(255,206,49,0.18); }
.pulse-dot--live { animation: pulseLive 2s ease-out infinite; }
@keyframes pulseLive { 0%{box-shadow:0 0 0 0 rgba(255,206,49,0.5)} 70%{box-shadow:0 0 0 10px rgba(255,206,49,0)} 100%{box-shadow:0 0 0 0 rgba(255,206,49,0)} }

/* ============================================================
   HEADINGS / SHARED SECTION HEADER
   ============================================================ */
.sec-head { max-width: 880px; }
.sec-head--center { margin: 0 auto 40px; text-align: center; display: flex; flex-direction: column; align-items: center; }
h2.display { font-weight: 300; font-size: clamp(30px,4.4vw,58px); line-height: 1.08; letter-spacing: -0.022em; }
h2.display .strong { font-weight: 500; }
.lead { font-size: 19px; line-height: 1.64; color: var(--body); }
.divider-soft { max-width: var(--maxw); margin: 0 auto; height: 1px; background: linear-gradient(90deg,transparent,rgba(28,24,20,0.16),transparent); }

/* ============================================================
   MOMENTS (Home)
   ============================================================ */
.moment {
  display: grid; gap: 64px; align-items: center;
  margin-bottom: clamp(72px, 10vw, 112px);
}
.moment--a { grid-template-columns: 1fr 340px; }
.moment--b { grid-template-columns: 340px 1fr; }
.moment--c { grid-template-columns: 1fr 400px; }
.moment__label { margin-bottom: 18px; }
.moment__label .idx { color: var(--ink); }
.moment h3 { font-weight: 500; font-size: clamp(26px,3vw,38px); line-height: 1.1; letter-spacing: -0.015em; margin-bottom: 20px; }
.moment__body { font-size: 18px; line-height: 1.62; color: var(--body); max-width: 46ch; }
.moment__punch { margin-top: 22px; font-weight: 600; font-size: 20px; line-height: 1.4; color: var(--ink); max-width: 40ch; }
.moment__ui { justify-self: center; width: 320px; max-width: 100%; }

/* product cards */
.card {
  background: var(--surface); border-radius: var(--r-md); padding: 18px;
  box-shadow: var(--shadow-card);
}
.card--offer { border: 1px solid rgba(0,0,0,0.09); border-radius: 18px; padding: 22px; box-shadow: var(--shadow-float); width: 100%; }
.avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--blush); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: var(--ink); flex-shrink: 0; }
.bubble { position: relative; background: var(--surface-2); border-radius: 10px; padding: 12px 13px 14px; font-size: 13px; line-height: 1.45; color: #2f2822; }
.bubble .stamp { position: absolute; right: 11px; bottom: 8px; font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.shared-pill { display: flex; align-items: center; gap: 9px; margin-top: 14px; background: var(--ink); border-radius: 12px; padding: 12px 14px; }
.shared-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.shared-pill .txt { font-size: 13px; font-weight: 600; color: var(--on-dark); }
.shared-pill .time { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: rgba(241,237,235,0.6); }
.chip-yellow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; background: var(--accent); color: var(--ink); padding: 4px 8px; border-radius: 20px; font-weight: 700; }

/* offer rows */
.offer-row { border: 1px solid rgba(0,0,0,0.09); border-radius: 12px; padding: 15px 16px; margin-bottom: 12px; }
.offer-row--dim { opacity: 0.72; }
.offer-row--win { border: 2px solid var(--accent); box-shadow: 0 10px 26px -16px rgba(255,206,49,0.7); margin-bottom: 0; }
.offer-row__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 7px; }
.offer-price { font-weight: 600; font-size: 22px; }
.tag-shaky { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--danger); background: rgba(194,90,60,0.1); padding: 4px 8px; border-radius: 20px; }
.check-mini { width: 16px; height: 16px; border-radius: 50%; background: var(--ink); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; }

/* closer statement */
.closer-statement { max-width: 720px; margin: 0 auto clamp(56px,8vw,80px); text-align: center; padding: 8px 0; }
.closer-statement p { font-size: clamp(24px,2.8vw,32px); line-height: 1.3; font-weight: 400; letter-spacing: -0.01em; color: var(--ink); }
.hl { display: inline-block; font-weight: 600; background: linear-gradient(transparent 62%, var(--accent) 62%); }

/* moment 4 · stats card */
.recap {
  background: var(--ink); border-radius: var(--r-xl); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; margin-bottom: clamp(56px,8vw,80px);
}
.recap__body { padding: clamp(36px,5vw,56px) clamp(28px,4vw,48px); }
.recap__num { display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; }
.recap__num .n { font-weight: 600; font-size: clamp(64px,9vw,96px); line-height: 0.9; letter-spacing: -0.03em; color: var(--on-dark); }
.recap__num .cap { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark-mute); line-height: 1.1; align-self: flex-end; padding-bottom: 4px; }
.recap p { font-size: 18px; line-height: 1.6; color: var(--on-dark-soft); max-width: 38ch; margin-top: 14px; }
.recap__punch { margin-top: 20px; font-weight: 600; font-size: 21px; line-height: 1.35; color: #fff; }
.recap__list { margin-top: 30px; display: flex; flex-direction: column; gap: 11px; }
.recap__list li { display: flex; align-items: center; gap: 11px; font-size: 14px; color: rgba(241,237,235,0.78); list-style: none; }
.check-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.recap__media { position: relative; min-height: 420px; background: #241f1a center/cover; }

/* ============================================================
   TWO-COL feature (Homekeep, Why-chose, etc.)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split--41 { grid-template-columns: 1.15fr 0.85fr; gap: 56px; }
.feature-copy .lead { margin-top: 24px; max-width: 44ch; }
.feature-punch { margin-top: 18px; font-size: 20px; font-weight: 500; color: var(--ink); }

/* Homekeep app card */
.hk { background: var(--surface-2); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-float); }
.hk__head { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.hk__logo { width: 24px; height: 24px; border-radius: 7px; background: var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; font-size: 12px; color: var(--ink); }
.hk__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hk__home { border-radius: 12px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); }
.hk__home--fav { border: 2px solid var(--accent); }
.hk__thumb { height: 78px; background-size: cover; background-position: center; }
.hk__home-body { padding: 10px 11px; }
.hk__notes { margin-top: 14px; background: var(--surface); border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; padding: 14px; }
.msg { display: flex; gap: 9px; margin-bottom: 10px; }
.msg__av { width: 24px; height: 24px; border-radius: 50%; background: var(--blush); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; flex-shrink: 0; }
.msg__b { background: var(--bg); border-radius: 10px 10px 10px 2px; padding: 9px 11px; font-size: 13px; line-height: 1.4; color: #2f2822; }
.msg--me { flex-direction: row-reverse; margin-bottom: 0; }
.msg--me .msg__av { background: var(--accent); }
.msg--me .msg__b { background: var(--ink); color: var(--on-dark); border-radius: 10px 10px 2px 10px; }

/* ============================================================
   PHONE MOCK (selling relationship)
   ============================================================ */
.phone {
  width: 300px; max-width: 100%; margin: 0 auto;
  background: #0f0d0b; border-radius: 42px; padding: 11px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.6);
}
.phone__screen { background: var(--surface-2); border-radius: 32px; overflow: hidden; }
.phone__head { padding: 16px 18px 14px; display: flex; align-items: center; gap: 9px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.phone__logo { width: 26px; height: 26px; border-radius: 8px; background: var(--ink); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; font-size: 12px; color: var(--accent); }
.tag-live { margin-left: auto; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--success); background: rgba(28,138,74,0.1); padding: 4px 8px; border-radius: 20px; }
.phone__list { padding: 14px 18px 6px; display: flex; flex-direction: column; gap: 13px; }
.timeline-row { display: flex; align-items: flex-start; gap: 11px; }
.timeline-row .t-title { font-size: 13px; font-weight: 600; color: var(--ink); }
.timeline-row .t-meta { font-family: var(--font-mono); font-size: 9px; color: var(--muted); }
.phone__next { padding: 12px 14px 16px; margin-top: 4px; }
.phone__next-inner { display: flex; align-items: center; gap: 9px; background: var(--ink); border-radius: 22px; padding: 11px 15px; }
.pull-quote { margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--on-dark-line); max-width: 760px; }
.pull-quote p { font-size: clamp(22px,2.6vw,30px); line-height: 1.3; letter-spacing: -0.01em; color: var(--on-dark); font-weight: 400; }
.accent-txt { color: var(--accent); }

/* ============================================================
   RAE (Agents) voice card
   ============================================================ */
.rae { background: #2b2b2e; border: 1px solid rgba(241,237,235,0.12); border-radius: 22px; padding: 22px; box-shadow: 0 44px 90px -44px rgba(0,0,0,0.7); }
.rae__head { display: flex; align-items: center; gap: 11px; padding-bottom: 16px; border-bottom: 1px solid rgba(241,237,235,0.1); margin-bottom: 20px; }
.rae__logo { width: 30px; height: 30px; border-radius: 9px; background: var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; font-size: 13px; color: var(--ink); }
.rae__status { margin-left: auto; display: flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #7fbf8f; }
.rae__status .dot { width: 7px; height: 7px; border-radius: 50%; background: #7fbf8f; animation: pulseLive 2s ease-out infinite; }
.voice-note { display: flex; justify-content: flex-end; margin-bottom: 20px; }
.voice-note__inner { max-width: 88%; background: var(--accent); color: var(--ink); border-radius: 16px 16px 4px 16px; padding: 14px 16px; }
.eq { display: flex; align-items: flex-end; gap: 2px; height: 18px; }
.eq span { width: 3px; background: var(--ink); border-radius: 2px; animation: eq 1s ease-in-out infinite; }
@keyframes eq { 0%,100%{transform: scaleY(0.3)} 50%{transform: scaleY(1)} }
.rae__reply { display: flex; gap: 10px; align-items: flex-start; }
.rae__reply-body { flex: 1; background: var(--ink); border: 1px solid rgba(241,237,235,0.14); border-radius: 4px 16px 16px 16px; padding: 15px 16px; }
.rae__logged { display: flex; flex-direction: column; gap: 11px; }
.rae__logged li { display: flex; align-items: center; gap: 11px; list-style: none; }
.rae__logged .txt { font-size: 14px; line-height: 1.4; color: var(--on-dark); }

/* ============================================================
   STATS (Agents · the Rayse effect)
   ============================================================ */
.stats-stage { margin-top: 40px; position: relative; display: flex; justify-content: center; align-items: center; min-height: 440px; }
.stat-card {
  position: relative; background: var(--ink); border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(28,24,20,0.6); padding: 34px 32px 30px;
}
.stat-card::before { content:""; position: absolute; top:0; left:0; width:100%; height:5px; background: var(--accent); }
.stat-card__label { margin-bottom: 18px; color: var(--muted); }
.stat-card__num { font-weight: 300; font-size: clamp(52px,6vw,88px); line-height: 0.86; letter-spacing: -0.035em; color: var(--accent); }
.stat-card__num .pct { font-size: 0.42em; font-weight: 400; color: var(--on-dark); }
.stat-card__desc { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(241,237,235,0.14); font-size: 17px; line-height: 1.45; color: var(--on-dark-soft); }
.stats-stage__left  { position: absolute; left: 0;  top: 50%; transform: translateY(-50%); z-index: 1; width: 46%; max-width: 400px; }
.stats-stage__right { position: absolute; right: 0; top: 50%; transform: translateY(-50%); z-index: 1; width: 64%; max-width: 580px; }
.stats-stage__right .stat-card { padding-left: 272px; }
.stats-stage__img { position: relative; z-index: 2; display: flex; justify-content: center; }
.stats-stage__img img { max-height: 480px; width: auto; }
/* Fallback stacked stats for narrow screens */
.stats-stack { display: none; margin-top: 32px; gap: 20px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-hero { padding: clamp(96px,12vw,120px) 0 clamp(72px,9vw,96px); }
.about-hero h1 { font-weight: 300; font-size: clamp(34px,5vw,68px); line-height: 1.04; letter-spacing: -0.028em; max-width: 20ch; }
.about-hero h1 .strong { display: block; font-weight: 500; }
.about-intro { margin-top: 64px; display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; max-width: 1040px; }
.about-intro p { font-size: 18px; line-height: 1.62; color: var(--body); }
.about-intro strong { font-weight: 600; color: var(--ink); }

.stat-strip { background: var(--accent); color: var(--ink); }
.stat-strip__inner { max-width: var(--maxw); margin: 0 auto; padding: 26px var(--gutter); display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.stat-strip__num { font-weight: 600; font-size: clamp(30px,3.4vw,44px); line-height: 1; letter-spacing: -0.03em; }
.stat-strip__note { margin-left: auto; opacity: 0.55; }

.founder { display: grid; grid-template-columns: 260px 1fr; gap: 52px; align-items: start; padding-bottom: 52px; margin-bottom: 52px; border-bottom: 1px solid var(--on-dark-line); }
.founder:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.founder img { width: 100%; border-radius: 14px; filter: grayscale(1) contrast(1.05); transition: filter .5s ease; }
.founder:hover img { filter: grayscale(0) contrast(1); }
.founder__role { color: var(--accent); margin-bottom: 12px; font-size: 11px; letter-spacing: 0.18em; }
.founder h3 { font-weight: 500; font-size: clamp(24px,2.8vw,34px); line-height: 1.1; letter-spacing: -0.018em; color: var(--on-dark); margin-bottom: 20px; }
.founder p { font-size: 17px; line-height: 1.68; color: rgba(241,237,235,0.76); max-width: 62ch; }

.leader { display: grid; grid-template-columns: 132px 1fr; gap: 36px; align-items: start; padding-bottom: 44px; border-bottom: 1px solid rgba(28,24,20,0.12); }
.leaders { display: flex; flex-direction: column; gap: 44px; }
.leaders .leader:last-child { border-bottom: none; padding-bottom: 0; }
.leader img { width: 100%; border-radius: 12px; filter: grayscale(1) contrast(1.05); transition: filter .5s ease; }
.leader:hover img { filter: grayscale(0) contrast(1); }
.leader h3 { font-weight: 600; font-size: 21px; line-height: 1.2; letter-spacing: -0.012em; color: var(--ink); }
.leader__role { margin-top: 7px; margin-bottom: 16px; color: var(--muted); font-size: 11px; letter-spacing: 0.16em; }
.leader p { font-size: 16px; line-height: 1.68; color: var(--body); max-width: 70ch; }

.about-head-2 { margin-bottom: 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; }

.advisors { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px 28px; }
.advisor img { width: 100%; border-radius: 12px; filter: grayscale(1) contrast(1.05); margin-bottom: 14px; transition: filter .5s ease, transform .5s ease; }
.advisor:hover img { filter: grayscale(0); transform: translateY(-3px); }
.advisor__name { font-weight: 600; font-size: 16px; line-height: 1.25; color: var(--ink); }
.advisor__title { margin-top: 6px; color: var(--muted); font-size: 10px; letter-spacing: 0.1em; line-height: 1.45; }

.investors { display: grid; grid-template-columns: repeat(6,1fr); gap: 28px 24px; align-items: center; }
.investors img { width: 100%; max-height: 46px; object-fit: contain; filter: grayscale(1); opacity: 0.62; transition: opacity .3s ease, filter .3s ease; }
.investors img:hover { opacity: 1; filter: grayscale(0); }

/* ============================================================
   CLOSE / CTA
   ============================================================ */
.close { text-align: center; }
.close h2 { font-weight: 400; font-size: clamp(28px,3.6vw,46px); line-height: 1.16; letter-spacing: -0.018em; color: var(--on-dark); max-width: 22ch; margin: 0 auto; }
.close__media { margin-top: 56px; }
.close__media img { width: 100%; max-width: 820px; margin: 0 auto; }
.close__actions { margin-top: 44px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.close__fine { margin-top: 28px; font-size: 15px; color: rgba(241,237,235,0.66); }
.close__fine a { color: var(--accent); border-bottom: 1px solid rgba(255,206,49,0.5); }
.close__fine a:hover { border-bottom-color: var(--accent); }
.tease p { font-weight: 300; font-size: clamp(19px,2.1vw,26px); line-height: 1.4; letter-spacing: -0.01em; color: var(--on-dark-soft); font-style: italic; max-width: 32ch; margin: 0 auto; }

/* Bridge strip */
.bridge { background: var(--ink-2); border-top: 1px solid rgba(241,237,235,0.1); padding: 26px 0; }
.bridge a { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: rgba(241,237,235,0.6); transition: color .2s ease; }
.bridge a:hover { color: var(--accent); }
.bridge .lbl { color: rgba(241,237,235,0.42); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink-2); color: rgba(241,237,235,0.5); border-top: 1px solid rgba(241,237,235,0.1); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 40px var(--gutter); }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid rgba(241,237,235,0.1); }
.footer__brand img { height: 20px; margin-bottom: 16px; }
.footer__tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: rgba(241,237,235,0.5); max-width: 30ch; line-height: 1.6; }
.footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(241,237,235,0.4); margin-bottom: 14px; }
.footer__col a { display: block; color: rgba(241,237,235,0.72); font-size: 14px; margin-bottom: 10px; transition: color .2s ease; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: rgba(241,237,235,0.4); }

/* ============================================================
   HERO v2 — animated 3D device (home)
   ============================================================ */
.hero--v2 {
  position: relative; min-height: 92vh; min-height: 92dvh;
  display: flex; align-items: center; overflow: hidden;
  background:
    radial-gradient(85% 75% at 84% 8%, rgba(255,206,49,0.22), transparent 55%),
    radial-gradient(75% 90% at 4% 98%, rgba(232,220,217,0.9), transparent 62%),
    linear-gradient(158deg, #F5F0ED 0%, #EDE3DE 58%, #E7DAD6 100%);
}
.hero--v2 .hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 120px var(--gutter) 100px;
  position: relative; z-index: 2;
}
.hero--v2 .hero__content { max-width: 600px; }
.hero--v2 h1 .sm { font-size: clamp(22px,2.5vw,32px); }
.hero--v2 h1 .lg { font-size: clamp(42px,5.4vw,74px); }

.hero__device-stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 540px; perspective: 1500px; }
.hero-glow { position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(255,206,49,0.3), transparent 65%); filter: blur(12px); }
.hero-orbit { position: absolute; width: 460px; height: 460px; border-radius: 50%; border: 1px dashed rgba(28,24,20,0.13); animation: heroSpin 65s linear infinite; }
.hero-orbit::after { content: ""; position: absolute; inset: 52px; border-radius: 50%; border: 1px solid rgba(255,206,49,0.4); }
.hero-shadow { position: absolute; bottom: 60px; width: 210px; height: 34px; border-radius: 50%; background: radial-gradient(ellipse, rgba(28,24,20,0.3), transparent 70%); filter: blur(7px); animation: heroShadowIn 1.3s ease both; }

.hero-phone { position: relative; z-index: 2; transform: rotateX(4deg) rotateY(-13deg); transform-style: preserve-3d; animation: phoneIn 1.3s cubic-bezier(.2,.85,.25,1) both; }
.hero-phone__float { animation: phoneFloat 6.5s ease-in-out 1.6s infinite; }
.hero-tilt { transform: rotateX(var(--tiltX,0deg)) rotateY(var(--tiltY,0deg)); transition: transform .4s ease; transform-style: preserve-3d; }
.hero-device { width: 288px; background: #0f0d0b; border-radius: 46px; padding: 11px; box-shadow: 0 60px 100px -44px rgba(28,24,20,0.65), 0 0 0 2px rgba(0,0,0,0.25); }
.hero-screen { position: relative; background: #F7F4F1; border-radius: 36px; overflow: hidden; min-height: 522px; display: flex; flex-direction: column; }
.hero-screen__notch { width: 96px; height: 24px; background: #0f0d0b; border-radius: 0 0 16px 16px; margin: 0 auto; }
.hero-screen__head { padding: 12px 18px 14px; display: flex; align-items: center; gap: 9px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.hero-screen__head .sc-logo { width: 26px; height: 26px; border-radius: 8px; background: var(--ink); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; font-size: 12px; color: var(--accent); }
.hero-screen__body { padding: 16px 18px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.hero-screen .mini-row, .hero-screen .hero-pill { opacity: 0; animation: heroRowIn .55s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-screen .mini-row:nth-child(1) { animation-delay: 1.5s; }
.hero-screen .mini-row:nth-child(2) { animation-delay: 1.68s; }
.hero-screen .mini-row:nth-child(3) { animation-delay: 1.86s; }
.hero-screen .mini-row:nth-child(4) { animation-delay: 2.04s; }
.hero-screen .hero-pill { animation-delay: 2.3s; margin-top: auto; display: flex; align-items: center; gap: 9px; background: var(--ink); border-radius: 22px; padding: 11px 14px; }

@keyframes phoneIn {
  0%   { opacity: 0; transform: rotateX(18deg) rotateY(-48deg) rotateZ(-12deg) translateY(90px) scale(.86); }
  55%  { opacity: 1; }
  100% { opacity: 1; transform: rotateX(4deg) rotateY(-13deg) rotateZ(0) translateY(0) scale(1); }
}
@keyframes phoneFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@keyframes heroSpin { to { transform: rotate(360deg); } }
@keyframes heroShadowIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroRowIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .hero--v2 .hero__grid { grid-template-columns: 1fr; gap: 24px; padding: 96px var(--gutter) 72px; }
  .hero__device-stage { min-height: 470px; }
  .hero-orbit { width: 360px; height: 360px; }
  .hero-orbit::after { inset: 40px; }
  .hero-glow { width: 300px; height: 300px; }
}
@media (max-width: 560px) {
  .hero-device { width: 244px; }
  .hero-screen { min-height: 452px; }
  .hero__device-stage { min-height: 410px; }
  .hero-orbit { width: 290px; height: 290px; }
}

/* ============================================================
   HERO — cinematic C4D sequence (home)
   ============================================================ */
.hero--cine { display: block; position: relative; min-height: 100vh; min-height: 100dvh; margin-top: -68px; overflow: hidden; background: #101012; }
.hero-cine__canvas, .hero-cine__fallback { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0; }
.hero-cine__fallback { object-fit: cover; object-position: center; }
.hero-cine__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(16,16,18,0.6) 0%, rgba(16,16,18,0.16) 11%, rgba(16,16,18,0) 25%, rgba(16,16,18,0) 60%, rgba(16,16,18,0.32) 80%, rgba(16,16,18,0.64) 100%);
}
.hero-cine__inner {
  position: relative; z-index: 2; min-height: 100vh; min-height: 100dvh;
  max-width: var(--maxw); margin: 0 auto; padding: 92px var(--gutter) clamp(72px,11vh,150px);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end; text-align: center;
}
.hero-cine__kicker { font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(241,237,235,0.5); text-shadow: 0 1px 14px rgba(0,0,0,0.8); }
.hero-cine__lockup { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-cine__eyebrow { font-size: clamp(16px,1.7vw,21px); line-height: 1.3; color: rgba(241,237,235,0.7); text-shadow: 0 2px 24px rgba(0,0,0,0.85); margin: 0; }
.hero--cine .hero-cine__title { font-weight: 300; font-size: clamp(38px,4.6vw,66px); line-height: 1.04; letter-spacing: -0.024em; color: var(--on-dark); max-width: none; text-shadow: 0 2px 44px rgba(0,0,0,0.78); }
.hero-cine__bar { display: none; }
.m-br { display: none; }

/* Mobile: render band on top → yellow separator → headline on black below */
@media (max-width: 900px) {
  .hero.hero--cine { min-height: 0; overflow: visible; }
  .hero-cine__canvas, .hero-cine__fallback { position: relative; inset: auto; width: 100%; height: 52vh; height: 52dvh; }
  .hero-cine__veil { display: none; }
  .hero-cine__bar { display: block; width: 100%; height: 5px; background: var(--accent); }
  .hero-cine__inner {
    position: relative; z-index: 2; min-height: 0;
    padding: 40px var(--gutter); justify-content: flex-start;
  }
  .hero-cine__lockup { gap: 10px; }
  .hero-cine__eyebrow { font-size: clamp(15px,4vw,19px); }
  .hero--cine .hero-cine__title { font-size: clamp(32px,8vw,46px); }
  .m-br { display: inline; }
}

/* ============================================================
   PHONE SHOWCASE (scroll-linked coverflow)
   ============================================================ */
.showcase { position: relative; background: var(--ink); color: var(--on-dark); height: 340vh; }
.showcase__sticky {
  position: sticky; top: 0; height: 100vh; height: 100dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.showcase__glow {
  position: absolute; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,206,49,0.16), transparent 62%);
  top: 50%; left: 50%; transform: translate(-50%,-58%); pointer-events: none;
}
.showcase__intro { position: relative; z-index: 3; text-align: center; margin-bottom: clamp(16px,3vh,34px); padding: 0 var(--gutter); }
.showcase__intro .rule { margin: 0 auto 18px; }
.showcase__intro h2 { font-weight: 300; font-size: clamp(26px,3.4vw,44px); line-height: 1.1; letter-spacing: -0.02em; color: var(--on-dark); max-width: 20ch; margin: 0 auto; }
.showcase__intro .strong { font-weight: 500; }
.sc-caption { margin-top: 14px; font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); min-height: 1em; transition: opacity .3s ease; }

.sc-stage {
  position: relative; z-index: 2; width: 100%; max-width: 900px;
  height: 560px; display: flex; align-items: center; justify-content: center;
  perspective: 1600px;
}
.sc-phone {
  --offset: 0;
  position: absolute; left: 50%; top: 50%;
  width: 300px; aspect-ratio: 1100 / 2000;
  transform:
    translate(-50%, -50%)
    translateX(calc(var(--offset) * 300px))
    scale(calc(1 - min(0.16 * (var(--offset) * (var(--offset) < 0 ? -1 : 1)), 0.4)));
  transition: transform .7s var(--ease-out), opacity .7s var(--ease-out), filter .7s var(--ease-out);
  opacity: 0.28; filter: saturate(0.7) brightness(0.7);
  z-index: 1; will-change: transform, opacity;
}
/* offset-based depth (JS sets --offset; CSS cannot read sign in calc reliably, so use nth via attributes) */
.sc-phone[style*="--offset: 0"], .sc-phone.is-active { opacity: 1; filter: none; z-index: 5; }
.sc-phone[style*="--offset: -1"], .sc-phone[style*="--offset: 1"] { opacity: 0.5; z-index: 3; }
.sc-phone.is-active { transform: translate(-50%,-50%) scale(1); }
/* C4D device frame (image) over a live UI screen */
.sc-frame { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 2; pointer-events: none; filter: drop-shadow(0 38px 50px rgba(0,0,0,0.5)); }
.sc-screen { position: absolute; left: 9%; top: 3.2%; width: 78.2%; height: 93.4%; overflow: hidden; border-radius: 30px; background: var(--surface-2); color: var(--ink); display: flex; flex-direction: column; z-index: 1; }
.sc-screen-head { padding: 8px 18px 12px; display: flex; align-items: center; gap: 9px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.sc-screen-head .sc-logo { width: 26px; height: 26px; border-radius: 8px; background: var(--ink); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; font-size: 12px; color: var(--accent); }
.sc-screen-body { padding: 14px 18px; display: flex; flex-direction: column; justify-content: flex-start; gap: 12px; overflow: hidden; flex: 1; }
/* full app-screen chrome for the showcase phones */
.sc-status { display: flex; align-items: center; justify-content: space-between; padding: 13px 20px 2px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--ink); }
.sc-status__ic { display: flex; align-items: center; gap: 5px; color: var(--ink); }
.sc-status__ic svg { display: block; }
.sc-note { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.sc-bar { margin-top: 7px; height: 5px; border-radius: 3px; background: rgba(0,0,0,0.09); overflow: hidden; }
.sc-bar > span { display: block; height: 100%; background: var(--accent); border-radius: 3px; }
.sc-pill { display: flex; align-items: center; gap: 9px; background: var(--ink); border-radius: 22px; padding: 11px 14px; }
.sc-pill .t { font-size: 12.5px; color: var(--on-dark); font-weight: 500; }
.sc-mic { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--ink); border-radius: 22px; padding: 12px 14px; color: var(--on-dark); font-size: 12px; font-weight: 600; }
.sc-mic .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(255,206,49,0.2); }
.sc-tabbar { display: flex; align-items: center; justify-content: space-around; padding: 10px 12px 13px; border-top: 1px solid rgba(0,0,0,0.07); }
.sc-tab { display: flex; flex-direction: column; align-items: center; gap: 3px; color: rgba(28,24,20,0.4); font-family: var(--font-mono); font-size: 7.5px; letter-spacing: 0.06em; text-transform: uppercase; }
.sc-tab svg { width: 19px; height: 19px; }
.sc-tab.is-on { color: var(--ink); }
.chip-yellow, .tag-shaky, .tag-live { white-space: nowrap; }

.sc-controls { position: relative; z-index: 4; margin-top: clamp(14px,3vh,28px); display: flex; align-items: center; gap: 12px; }
.sc-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(241,237,235,0.28); transition: background .3s ease, transform .3s ease; }
.sc-dot.is-active { background: var(--accent); transform: scale(1.35); }
.sc-hint { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 4; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(241,237,235,0.4); }

/* Mini screen atoms reused inside showcase phones */
.mini-row { display: flex; align-items: flex-start; gap: 10px; }
.mini-row .t-title { font-size: 12px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.mini-row .t-meta { font-family: var(--font-mono); font-size: 8.5px; color: var(--muted); margin-top: 2px; }
.mini-check { width: 17px; height: 17px; border-radius: 50%; background: var(--accent); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; }
.mini-bubble { background: var(--surface); border: 1px solid rgba(0,0,0,0.07); border-radius: 12px; padding: 12px; font-size: 12px; line-height: 1.45; color: #2f2822; }
.mini-voice { background: var(--accent); color: var(--ink); border-radius: 14px 14px 4px 14px; padding: 12px 14px; align-self: flex-end; max-width: 90%; font-size: 12.5px; line-height: 1.5; font-weight: 500; }
.mini-offer { border: 1px solid rgba(0,0,0,0.09); border-radius: 11px; padding: 12px 13px; display: flex; justify-content: space-between; align-items: baseline; }
.mini-offer--win { border: 2px solid var(--accent); }
.mini-offer .p { font-weight: 600; font-size: 18px; }
.mini-thumb { height: 66px; border-radius: 10px; background-size: cover; background-position: center; }

@media (max-width: 900px) {
  .showcase { height: 300vh; }
  .sc-phone { width: 250px; }
  .sc-phone__screen { height: 440px; }
  .sc-phone { transform: translate(-50%,-50%) translateX(calc(var(--offset) * 250px)) scale(0.9); }
}
@media (max-width: 560px) {
  .showcase { height: 280vh; }
  .sc-phone { width: 230px; }
  .sc-phone__screen { height: 410px; }
  .showcase__glow { width: 380px; height: 380px; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s var(--ease-out); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
.rule { transform: scaleX(0); }
.is-in .rule, .rule.is-in { transform: scaleX(1); transition: transform .8s var(--ease-out); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --gutter: 32px; }
  .stats-stage__right .stat-card { padding-left: 32px; }
}

@media (max-width: 900px) {
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    background: rgba(20,17,14,0.98); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px var(--gutter) 24px;
    border-bottom: 1px solid rgba(241,237,235,0.12);
    transform: translateY(-120%); transition: transform .4s var(--ease-out);
    max-height: calc(100dvh - var(--nav-h)); overflow-y: auto;
  }
  .nav.is-open .nav__links { transform: translateY(0); }
  .nav__link { padding: 16px 0; font-size: 17px; border-bottom: 1px solid rgba(241,237,235,0.08); }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 16px; text-align: center; padding: 14px 22px; font-size: 16px; }
  .nav__burger { display: block; }

  .split, .split--41 { grid-template-columns: 1fr; gap: 40px; }
  .about-intro { grid-template-columns: 1fr; gap: 28px; max-width: 620px; }
  .about-head-2 { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .recap { grid-template-columns: 1fr; }
  .recap__media { min-height: 300px; order: -1; }
  .advisors { grid-template-columns: repeat(3,1fr); }
  .investors { grid-template-columns: repeat(4,1fr); }
  .founder { grid-template-columns: 200px 1fr; gap: 36px; }

  /* Moments stack, product UI on top */
  .moment, .moment--a, .moment--b, .moment--c { grid-template-columns: 1fr; gap: 36px; }
  .moment__ui { order: -1; }
  .moment--b .moment__ui { order: -1; }

  /* Stats: switch to stacked cards */
  .stats-stage { display: none; }
  .stats-stack { display: grid; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; --nav-h: 60px; }
  .hero { min-height: 88vh; min-height: 88dvh; }
  .hero__media { background-position: 72% center; }
  .hero__scrim {
    background: linear-gradient(180deg,
      rgba(241,237,235,0.97) 0%,
      rgba(241,237,235,0.9) 40%,
      rgba(241,237,235,0.55) 70%,
      rgba(241,237,235,0.2) 100%);
  }
  .hero__inner { padding: 90px var(--gutter) 72px; }
  .stat-strip__note { margin-left: 0; width: 100%; }
  .advisors { grid-template-columns: repeat(2,1fr); }
  .investors { grid-template-columns: repeat(3,1fr); gap: 22px 18px; }
  .founder { grid-template-columns: 1fr; gap: 20px; }
  .founder img { max-width: 200px; }
  .leader { grid-template-columns: 96px 1fr; gap: 20px; }
  .footer__top { flex-direction: column; gap: 28px; }
  .footer__cols { gap: 40px; }
  .btn { width: 100%; justify-content: center; }
  .hero__actions .btn { width: auto; }
  .close__actions .btn { width: 100%; }
  .hero__scroll-hint { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .rule { transform: scaleX(1) !important; }
  .hero__media { transform: none !important; }
}

/* ============================================================
   ADDED IN-REPO — not part of the design handoff.
   Keep additions below this line so the handoff CSS above stays
   a clean diff against any future drop from design.
   ============================================================ */

/* Legal line in the footer. The handoff footer omits Privacy / Terms / EULA /
   Media entirely; required-urls.txt treats them as linked from the site footer
   and indexed, so src/components/redesign/Footer.astro renders them. Without a
   rule here they would inherit `a { color: inherit; text-decoration: none }`
   and read as plain text. */
.footer__legal { display: flex; gap: 14px; flex-wrap: wrap; }
.footer__legal a { color: rgba(241,237,235,0.6); text-decoration: underline; text-underline-offset: 3px; }
.footer__legal a:hover { color: var(--accent); }
