/* ============================================
   DESIGN TOKENS — LIGHT 2026
   ============================================ */
:root {
  /* Canvas — warm, soft off-whites (not stark) */
  --bg: oklch(98.8% 0.005 90);           /* page background: warm chalk */
  --bg-tint: oklch(97% 0.008 95);        /* softly tinted section */
  --bg-card: oklch(99.5% 0.003 90);      /* elevated surface */
  --bg-deep: oklch(18% 0.015 160);       /* deep ink for inverted surfaces */

  /* Ink */
  --ink: oklch(22% 0.018 170);           /* primary text, warm near-black */
  --ink-muted: oklch(42% 0.012 170);     /* secondary */
  --ink-soft: oklch(58% 0.008 170);      /* tertiary / meta */
  --ink-faint: oklch(72% 0.006 170);     /* disabled / hints */

  /* Lines */
  --line: oklch(90% 0.008 170 / .7);
  --line-strong: oklch(82% 0.01 170);
  --line-ink: oklch(22% 0.018 170 / .1);

  /* Brand — retuned forest green for light bg */
  --forest: oklch(48% 0.12 165);
  --forest-deep: oklch(38% 0.11 165);
  --forest-soft: oklch(92% 0.04 165);
  --forest-tint: oklch(96% 0.02 165);

  /* Accent — warm amber, restrained */
  --amber: oklch(74% 0.15 70);
  --amber-deep: oklch(62% 0.15 55);
  --amber-soft: oklch(94% 0.05 80);

  /* Supplementary hues (all share chroma ~0.12, lightness ~50%) */
  --violet: oklch(55% 0.12 300);
  --violet-soft: oklch(93% 0.04 300);
  --sky: oklch(58% 0.1 230);
  --sky-soft: oklch(93% 0.04 230);
  --rose: oklch(60% 0.14 20);
  --rose-soft: oklch(94% 0.04 20);

  /* Radii */
  --r-xs: 8px;
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 44px;

  /* Shadow — soft, layered paper */
  --shadow-xs: 0 1px 2px oklch(22% 0.02 170 / .04);
  --shadow-sm: 0 2px 8px oklch(22% 0.02 170 / .05), 0 1px 2px oklch(22% 0.02 170 / .04);
  --shadow-md: 0 10px 30px -10px oklch(22% 0.02 170 / .12), 0 4px 12px -4px oklch(22% 0.02 170 / .06);
  --shadow-lg: 0 30px 60px -20px oklch(22% 0.02 170 / .18), 0 14px 28px -8px oklch(22% 0.02 170 / .1);
  --shadow-xl: 0 50px 100px -30px oklch(22% 0.02 170 / .22), 0 24px 48px -12px oklch(22% 0.02 170 / .12);

  --ease: cubic-bezier(.22,1,.36,1);
  --ease-inout: cubic-bezier(.76,0,.24,1);

  /* Type */
  --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

html { color-scheme: light; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

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

::selection { background: var(--forest); color: var(--bg); }

/* Ambient background wash — very subtle, fixed */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60vw 40vw at 8% -4%, oklch(94% 0.05 165 / .6), transparent 55%),
    radial-gradient(ellipse 50vw 35vw at 102% 18%, oklch(95% 0.05 75 / .5), transparent 55%),
    radial-gradient(ellipse 40vw 30vw at 90% 95%, oklch(95% 0.04 230 / .35), transparent 60%);
}
/* Subtle paper grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: .45;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--forest);
  background: var(--forest-tint);
  border: 1px solid oklch(48% 0.12 165 / .18);
  border-radius: 99px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 3px oklch(48% 0.12 165 / .15);
  animation: pulse 2.4s ease-in-out infinite;
}
.eyebrow.amber {
  color: var(--amber-deep);
  background: var(--amber-soft);
  border-color: oklch(62% 0.15 55 / .2);
}
.eyebrow.amber::before { background: var(--amber-deep); box-shadow: 0 0 0 3px oklch(62% 0.15 55 / .18); }
.eyebrow .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .4; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .55; transform: scale(.85); } }

.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.01em; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 12px;
  z-index: 100;
  padding: 12px 20px 0;
  margin-top: 12px;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 20px;
  background: oklch(99% 0.003 90 / .78);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid var(--line);
  border-radius: 99px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled .nav-inner {
  box-shadow: var(--shadow-md);
  background: oklch(99% 0.003 90 / .92);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -.02em;
  color: var(--ink);
}
.nav-mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--bg);
  position: relative;
  flex-shrink: 0;
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: -.02em;
}
.nav-mark::after {
  content: '';
  position: absolute;
  top: 5px; right: 5px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-muted);
  border-radius: 99px;
  transition: all .2s;
}
.nav-links a:hover {
  color: var(--ink);
  background: oklch(90% 0.008 170 / .5);
}
.nav-actions { display: flex; gap: 8px; align-items: center; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: oklch(90% 0.008 170 / .5);
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.nav-toggle svg { transition: transform .3s var(--ease); }
.nav-toggle.open svg { transform: rotate(45deg); }

.mobile-menu {
  position: fixed;
  top: 76px; left: 20px; right: 20px;
  background: oklch(99% 0.003 90 / .98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: 20px;
  z-index: 99;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--r-sm);
  transition: background .2s;
}
.mobile-menu a:hover { background: oklch(90% 0.008 170 / .5); }
.mobile-menu-cta {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.005em;
  border-radius: 99px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s var(--ease), color .2s, border-color .2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow-sm), inset 0 1px 0 oklch(100% 0 0 / .15);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md), inset 0 1px 0 oklch(100% 0 0 / .2);
  background: oklch(28% 0.018 170);
}

.btn-accent {
  background: var(--amber);
  color: oklch(22% 0.04 55);
  box-shadow: 0 1px 0 oklch(50% 0.12 60 / .3) inset, var(--shadow-sm);
}
.btn-accent:hover {
  transform: translateY(-1px);
  background: oklch(78% 0.16 72);
  box-shadow: 0 1px 0 oklch(50% 0.12 60 / .3) inset, var(--shadow-md);
}

.btn-ghost {
  background: var(--bg-card);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-xs);
}
.btn-ghost:hover {
  background: oklch(100% 0 0);
  border-color: var(--ink-faint);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-sm { padding: 9px 16px; font-size: .82rem; }
.btn-lg { padding: 16px 28px; font-size: .98rem; }

.btn-arrow { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================
   LAUNCH BANNER
   ============================================ */
.launch-banner {
  background: var(--ink);
  color: var(--bg);
  padding: 10px 16px;
  text-align: center;
  font-size: .82rem;
  position: relative;
  z-index: 50;
  font-family: var(--mono);
  letter-spacing: 0;
  overflow: hidden;
}
.launch-banner-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.launch-banner .tag {
  font-size: .68rem;
  padding: 2px 8px;
  background: var(--amber);
  color: oklch(22% 0.04 55);
  border-radius: 99px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.launch-banner strong { color: var(--amber); font-weight: 500; }
.launch-banner a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: oklch(100% 0 0 / .4); transition: text-decoration-color .2s; }
.launch-banner a:hover { text-decoration-color: var(--amber); }

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

/* Dot-grid — modern, soft */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, oklch(22% 0.02 170 / .07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-badge-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-title {
  font-size: clamp(2.6rem, 8vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: .94;
  margin-bottom: 20px;
  color: var(--ink);
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding: .08em 0;
}
.hero-title .line-inner {
  display: inline-block;
}
.hero-title .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
  letter-spacing: -.01em;
}

.hero-sub {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--ink-muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.55;
  padding-top: 0;
  margin-top: 0;
}

.hero-ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* ============================================
   HERO STAGE — new 2026 composition
   clean central device + floating "proof" tiles
   ============================================ */
.hero-stage {
  position: relative;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  height: 560px;
  perspective: 1800px;
}

.stage-card {
  position: absolute;
  border-radius: var(--r-md);
  transition: transform .9s var(--ease), box-shadow .9s var(--ease);
  will-change: transform;
}

/* Central device — iPhone-ish, realistic */
.stage-phone {
  left: 50%;
  top: 50%;
  width: 310px;
  height: 600px;
  margin-left: -155px;
  margin-top: -300px;
  background: oklch(15% 0.008 170);
  border-radius: 48px;
  padding: 10px;
  z-index: 4;
  box-shadow:
    0 2px 6px oklch(22% 0.02 170 / .08),
    0 30px 60px -20px oklch(22% 0.02 170 / .35),
    0 60px 120px -40px oklch(22% 0.02 170 / .3),
    inset 0 0 0 1px oklch(30% 0.02 170);
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 40px;
  padding: 46px 18px 22px;
  position: relative;
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 98px; height: 26px;
  background: oklch(15% 0.008 170);
  border-radius: 99px;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.phone-greeting { font-size: .68rem; color: var(--ink-soft); }
.phone-greeting strong {
  display: block;
  color: var(--ink);
  font-size: .9rem;
  margin-top: 1px;
  font-weight: 600;
  font-family: var(--serif);
  font-style: italic;
}
.phone-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  color: var(--bg);
  font-family: var(--serif);
  font-style: italic;
}

.phone-hero-box {
  background: var(--ink);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  color: var(--bg);
}
.phone-hero-box::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--amber), transparent 65%);
  opacity: .35;
}
.phone-hero-label {
  font-size: .6rem;
  opacity: .7;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  position: relative;
  font-family: var(--mono);
}
.phone-hero-big {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -.025em;
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.phone-hero-big .num { font-variant-numeric: tabular-nums; }
.phone-hero-big .unit { font-size: .8rem; font-weight: 400; opacity: .6; font-family: var(--mono); }
.phone-hero-sub {
  font-size: .72rem;
  opacity: .75;
  position: relative;
  margin-top: 6px;
}

.phone-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.phone-action {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 4px;
  text-align: center;
  font-size: .58rem;
  color: var(--ink-muted);
  font-weight: 500;
}
.phone-action-icon {
  width: 24px; height: 24px;
  margin: 0 auto 4px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  background: var(--forest-soft);
}

.phone-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.phone-item:last-child { border-bottom: none; }
.phone-item-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.phone-item-icon.a { background: var(--forest-soft); }
.phone-item-icon.b { background: var(--amber-soft); }
.phone-item-icon.c { background: var(--sky-soft); }
.phone-item-main { flex: 1; min-width: 0; }
.phone-item-name { font-size: .76rem; font-weight: 600; color: var(--ink); }
.phone-item-meta { font-size: .64rem; color: var(--ink-soft); margin-top: 1px; font-family: var(--mono); }
.phone-item-badge {
  font-size: .65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
  font-family: var(--mono);
}
.phone-item-badge.stored { background: var(--forest-soft); color: var(--forest-deep); }
.phone-item-badge.sold { background: var(--amber-soft); color: var(--amber-deep); }
.phone-item-badge.given { background: var(--sky-soft); color: oklch(40% 0.12 230); }

/* Floating tiles */
.stage-tile {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.tile-insurance {
  left: 50%;
  top: 50%;
  margin-left: -440px;
  margin-top: -220px;
  width: 238px;
  transform: rotate(-4deg);
}
.tile-sales {
  left: 50%;
  top: 50%;
  margin-left: 210px;
  margin-top: -240px;
  width: 228px;
  transform: rotate(3deg);
}
.tile-donation {
  left: 50%;
  top: 50%;
  margin-left: -520px;
  margin-top: 70px;
  width: 216px;
  transform: rotate(3deg);
}
.tile-live {
  left: 50%;
  top: 50%;
  margin-left: 230px;
  margin-top: 90px;
  width: 238px;
  transform: rotate(-3deg);
}

.tile-label {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tile-label .tag { background: var(--forest-soft); color: var(--forest-deep); padding: 2px 8px; border-radius: 99px; font-size: .6rem; font-weight: 600; }
.tile-label .tag.a { background: var(--amber-soft); color: var(--amber-deep); }
.tile-label .tag.s { background: var(--sky-soft); color: oklch(40% 0.12 230); }

.tile-title { font-size: 1rem; font-weight: 600; color: var(--ink); letter-spacing: -.01em; margin-bottom: 4px; }
.tile-value {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1;
  margin: 6px 0 6px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}
.tile-value .trend {
  font-size: .7rem;
  color: var(--forest);
  font-family: var(--mono);
  font-weight: 500;
}
.tile-sub { font-size: .78rem; color: var(--ink-muted); line-height: 1.4; }

.tile-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
  margin-top: 10px;
}
.tile-mini-chart span {
  flex: 1;
  background: var(--forest-soft);
  border-radius: 2px;
}
.tile-mini-chart span.on { background: var(--forest); }

.live-pulse {
  position: relative;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--forest);
  display: inline-block;
  margin-right: 6px;
}
.live-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--forest);
  opacity: .5;
  animation: ring 2s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(.8); opacity: .6; }
  100% { transform: scale(2.2); opacity: 0; }
}

.tile-live-count {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin: 6px 0;
}
.tile-live-legend {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.tile-live-legend span {
  font-size: .68rem;
  color: var(--ink-soft);
  font-family: var(--mono);
  display: flex;
  align-items: center;
  gap: 4px;
}
.tile-live-legend span::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
}
.tile-live-legend .a::before { background: var(--forest); }
.tile-live-legend .b::before { background: var(--amber); }
.tile-live-legend .c::before { background: var(--sky); }

/* Trust bar */
.trust-bar {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
  font-family: var(--mono);
}
.trust-bar-item { display: flex; align-items: center; gap: 8px; }
.trust-bar-item svg { color: var(--forest); }

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
  background: var(--bg-tint);
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  animation: slide 40s linear infinite;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: -.01em;
}
.marquee-item .serif-italic { color: var(--ink); font-size: 1.2rem; }
.marquee-sep { color: var(--amber-deep); font-size: .6rem; }

/* ============================================
   SERVICES — 4 piliers
   ============================================ */
.services {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.section-title {
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
  margin: 22px 0 22px;
  color: var(--ink);
}
.section-title .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
  letter-spacing: -.01em;
}
.section-sub {
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.svc {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}
.svc:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

/* Store — featured: dark forest banner with warm amber glow, matching the notify CTA */
.svc-store {
  grid-column: span 12;
  grid-row: auto;
  background: var(--ink);
  border: 1px solid oklch(22% 0.018 170);
  min-height: 320px;
  color: var(--bg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  padding: 44px 48px;
  align-items: stretch;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.svc-store::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 140%; height: 100%;
  background: radial-gradient(ellipse, oklch(48% 0.12 165 / .45), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.svc-store::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -10%;
  width: 60%; height: 100%;
  background: radial-gradient(circle, oklch(62% 0.15 55 / .25), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.svc-store-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, oklch(100% 0 0 / .08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.svc-store > *:not(.svc-store-grid-bg):not(.svc-arrow) { position: relative; z-index: 1; }
.svc-store-grid-bg { z-index: 0; }
.svc-store .svc-arrow { position: absolute; z-index: 2; }
.svc-store .svc-num { color: oklch(100% 0 0 / .55); }
.svc-store .svc-title { color: var(--bg); font-size: clamp(2.2rem, 3.4vw, 3rem); margin-bottom: 16px; }
.svc-store .svc-title .accent { color: var(--amber); }
.svc-store .svc-desc { color: oklch(100% 0 0 / .72); font-size: 1rem; max-width: 480px; margin-bottom: 0; }
.svc-store .svc-stat-label { color: oklch(100% 0 0 / .55); }
.svc-store .svc-stat-val { color: var(--bg); font-family: var(--sans); }
.svc-store .svc-stat-val.amber { color: var(--amber); }
.svc-store .svc-stat-sub { color: oklch(100% 0 0 / .55); }
.svc-store .svc-feat-chip {
  background: oklch(100% 0 0 / .08);
  border-color: oklch(100% 0 0 / .16);
  color: var(--bg);
}
.svc-store-left { display: flex; flex-direction: column; justify-content: center; gap: 0; min-width: 0; }
.svc-store-right { display: flex; flex-direction: column; justify-content: center; gap: 20px; min-width: 0; }

/* Supporting cards: uniform 2x2 grid (span 6 each) */
.svc-resell { grid-column: span 6; }
.svc-give { grid-column: span 6; }
.svc-recycle { grid-column: span 6; }
.svc-care { grid-column: span 6; }

.svc-num {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
  position: relative;
  font-weight: 500;
}
.svc-title {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.02;
  margin-bottom: 14px;
  color: var(--ink);
  position: relative;
}
.svc-title .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
  letter-spacing: -.01em;
}

.svc-desc {
  font-size: .94rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 22px;
  position: relative;
  flex: 1;
}

.svc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  position: relative;
}
.svc-feat-chip {
  padding: 5px 12px;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: .78rem;
  color: var(--ink);
  font-weight: 500;
  font-family: var(--sans);
}

.svc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  background: var(--bg-tint);
  border: 1px solid var(--line);
}
.svc-icon svg { width: 22px; height: 22px; color: var(--ink); }
.svc-icon.g1 { background: var(--forest-soft); border-color: oklch(48% 0.12 165 / .15); }
.svc-icon.g1 svg { color: var(--forest-deep); }
.svc-icon.g2 { background: var(--amber-soft); border-color: oklch(62% 0.15 55 / .2); }
.svc-icon.g2 svg { color: var(--amber-deep); }
.svc-icon.g3 { background: var(--violet-soft); border-color: oklch(55% 0.12 300 / .18); }
.svc-icon.g3 svg { color: var(--violet); }
.svc-icon.g5 { background: var(--sky-soft); border-color: oklch(58% 0.1 230 / .2); }
.svc-icon.g5 svg { color: oklch(40% 0.12 230); }

.svc-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  position: relative;
}
.svc-stat-label {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-weight: 500;
}
.svc-stat-val {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  font-family: var(--sans);
}
.svc-stat-val.amber { color: var(--amber-deep); }
.svc-stat-sub { font-size: .76rem; color: var(--ink-soft); margin-top: 6px; font-family: var(--sans); }

.svc-arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
  color: var(--ink-muted);
  z-index: 2;
  border: 1px solid var(--line);
}
.svc-store .svc-arrow {
  background: oklch(100% 0 0 / .1);
  color: var(--bg);
  border-color: oklch(100% 0 0 / .18);
}
.svc:hover .svc-arrow { transform: rotate(-45deg); background: var(--ink); color: var(--bg); border-color: var(--ink); }
.svc-store:hover .svc-arrow { background: var(--amber); color: oklch(22% 0.04 55); border-color: var(--amber); }

/* Store inner visual — refined proof card on the dark background */
.svc-store-viz {
  position: relative;
  padding: 20px 22px;
  border: 1px solid oklch(100% 0 0 / .14);
  border-radius: var(--r-md);
  background: oklch(100% 0 0 / .06);
  box-shadow: 0 1px 0 oklch(100% 0 0 / .08) inset;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.svc-store-viz-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: oklch(100% 0 0 / .55);
}
.svc-store-viz-head .live {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--amber);
}
.svc-store-viz-head .live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px oklch(74% 0.15 70 / .2);
}
.svc-store-viz-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid oklch(100% 0 0 / .1);
  font-size: .9rem;
}
.svc-store-viz-row:first-of-type { border-top: none; }
.svc-store-viz-row .label { color: oklch(100% 0 0 / .65); }
.svc-store-viz-row .value { color: var(--bg); font-weight: 600; font-variant-numeric: tabular-nums; }
.svc-store-viz-row .value.g { color: var(--amber); }

.vault-strip, .vault-meta { display: none; }

/* ============================================
   EARN COMING SOON
   ============================================ */
.earn-soon {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.earn-soon-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.earn-soon-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.earn-soon-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 50%; height: 200%;
  background: radial-gradient(circle, oklch(94% 0.05 80), transparent 55%);
  pointer-events: none;
}

.earn-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--amber-soft);
  border: 1px solid oklch(62% 0.15 55 / .2);
  border-radius: 99px;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--amber-deep);
  margin-bottom: 20px;
  position: relative;
}
.earn-soon-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber-deep);
  animation: pulse 2s ease-in-out infinite;
}

.earn-soon-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
  margin-bottom: 18px;
  color: var(--ink);
  position: relative;
}
.earn-soon-title .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--amber-deep);
  letter-spacing: -.01em;
}
.earn-soon-desc {
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 26px;
  font-size: .98rem;
  position: relative;
}

.earn-soon-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.earn-soon-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-size: .94rem;
}
.earn-soon-features .check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--forest-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-deep);
  margin-top: 1px;
}
.earn-soon-features svg { flex-shrink: 0; width: 11px; height: 11px; }

.earn-soon-viz {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-soon-shape {
  position: absolute;
  width: 280px;
  height: 280px;
  background: conic-gradient(from 0deg, var(--forest), var(--amber), var(--sky), var(--forest));
  border-radius: 50%;
  filter: blur(48px);
  opacity: .3;
  animation: rotate-slow 28s linear infinite;
}
@keyframes rotate-slow { to { transform: rotate(360deg); } }

.coming-soon-center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
}
.cs-label {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .06em;
  color: var(--amber-deep);
  margin-bottom: 10px;
}
.cs-date {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 8px;
  font-family: var(--serif);
  font-style: italic;
}
.cs-sub {
  font-size: .78rem;
  color: var(--ink-muted);
  font-family: var(--mono);
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  box-shadow: var(--shadow-xs);
}
.step:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }

.step-mockup {
  flex: 1;
  margin: -36px -32px 24px;
  background: var(--bg-tint);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  min-height: 220px;
}

.step-1 .step-mockup { background: linear-gradient(135deg, var(--forest-tint), var(--bg-tint)); }
.step-viz-cal {
  width: 224px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-md);
}
.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--ink-soft);
}
.cal-head strong { color: var(--ink); font-size: .84rem; font-weight: 600; font-family: var(--sans); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .66rem;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-weight: 500;
}
.cal-day.active {
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
  box-shadow: 0 0 0 3px var(--amber-soft);
}
.cal-day.hl { color: var(--ink); }
.cal-day.hd { color: var(--ink-soft); font-size: .6rem; letter-spacing: .04em; }

.step-2 .step-mockup { background: linear-gradient(135deg, var(--amber-soft), var(--bg-tint)); }
.step-viz-route {
  position: relative;
  width: 260px;
  height: 180px;
}
.route-pin {
  position: absolute;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--forest);
}
.route-pin.start { top: 8px; left: 14px; }
.route-pin.end {
  bottom: 8px; right: 14px;
  border-color: var(--amber-deep);
  color: var(--amber-deep);
}
.route-pin svg { width: 16px; height: 16px; }
.route-truck {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  background: var(--ink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  box-shadow: var(--shadow-md);
}
.route-truck svg { width: 20px; height: 20px; }

.step-3 .step-mockup { background: linear-gradient(135deg, var(--sky-soft), var(--bg-tint)); }
.step-4 .step-mockup { background: linear-gradient(135deg, var(--violet-soft), var(--bg-tint)); }

/* Step 1 — carton stack */
.step-viz-carton {
  position: relative;
  width: 240px;
  height: 200px;
}
.carton-stack {
  position: absolute;
  inset: 0;
}
.carton-box {
  position: absolute;
  border-radius: 6px;
  background: linear-gradient(145deg, oklch(82% 0.06 80), oklch(72% 0.08 70));
  box-shadow:
    0 1px 0 oklch(100% 0 0 / .4) inset,
    0 -2px 0 oklch(0% 0 0 / .06) inset,
    0 12px 24px -8px oklch(22% 0.02 170 / .18);
}
.carton-box.back  { width: 110px; height: 80px;  right: 22px; top: 18px;  transform: rotate(-6deg); opacity: .7; }
.carton-box.mid   { width: 130px; height: 100px; left: 16px;  top: 36px;  transform: rotate(2deg); }
.carton-box.front { width: 170px; height: 120px; left: 36px;  bottom: 14px; transform: rotate(-1deg); }
.carton-tape {
  position: absolute;
  left: 0; right: 0;
  top: 42%;
  height: 14px;
  background: oklch(88% 0.02 80 / .65);
  border-top: 1px dashed oklch(0% 0 0 / .08);
  border-bottom: 1px dashed oklch(0% 0 0 / .08);
}
.carton-label {
  position: absolute;
  right: 10px; bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 10px 6px 6px;
  box-shadow: var(--shadow-sm);
}
.carton-qr {
  width: 28px; height: 28px;
  border-radius: 4px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1px solid var(--line);
}
.carton-qr svg { width: 20px; height: 20px; }
.carton-label-id { font-family: var(--mono); font-size: .7rem; font-weight: 600; color: var(--ink); letter-spacing: .02em; }
.carton-label-sub { font-family: var(--mono); font-size: .58rem; color: var(--ink-soft); }

.path-icon.deliver { background: var(--forest-soft); color: var(--forest-deep); }
.path-icon.keep { background: var(--forest-soft); color: var(--forest-deep); }
.step-viz-paths {
  width: 260px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}
.path-label {
  font-family: var(--mono);
  font-size: .66rem;
  color: var(--ink-soft);
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.path-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
  color: var(--ink);
}
.path-item:last-child { border-bottom: none; }
.path-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.path-icon svg { width: 13px; height: 13px; }
.path-icon.keep { background: var(--forest-soft); color: var(--forest-deep); }
.path-icon.sell { background: var(--amber-soft); color: var(--amber-deep); }
.path-icon.donate { background: var(--sky-soft); color: oklch(40% 0.12 230); }
.path-icon.recycle { background: var(--violet-soft); color: var(--violet); }
.path-name { flex: 1; font-weight: 500; }
.path-count { font-family: var(--mono); font-size: .72rem; color: var(--ink-soft); }

.step-num {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .04em;
  color: var(--forest);
  margin-bottom: 12px;
}
.step-title {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 10px;
  line-height: 1.15;
  color: var(--ink);
}
.step-title .accent { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--forest); }
.step-desc { font-size: .92rem; color: var(--ink-muted); line-height: 1.55; }

/* ============================================
   USE CASES
   ============================================ */
.usecases {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.uc-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.uc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.uc-visual {
  position: relative;
  aspect-ratio: 16 / 7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.uc-visual-wardrobe { background: linear-gradient(135deg, var(--forest-tint), var(--bg-tint)); color: var(--forest-deep); }
.uc-visual-tools    { background: linear-gradient(135deg, var(--amber-soft), var(--bg-tint)); color: var(--amber-deep); }
.uc-visual-baby     { background: linear-gradient(135deg, var(--rose-soft), var(--bg-tint)); color: oklch(50% 0.14 20); }
.uc-visual-home     { background: linear-gradient(135deg, var(--violet-soft), var(--bg-tint)); color: var(--violet); }
.uc-illus { width: 128px; height: 128px; opacity: .82; }
.uc-chip {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}
.uc-body {
  padding: 28px 30px 30px;
}
.uc-tag {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.uc-title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 10px;
}
.uc-title .accent { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--forest); letter-spacing: -.01em; }
.uc-desc {
  font-size: .96rem;
  line-height: 1.55;
  color: var(--ink-muted);
  margin-bottom: 18px;
  text-wrap: pretty;
}
.uc-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.uc-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: var(--ink);
}
.uc-points li svg {
  width: 15px; height: 15px;
  color: var(--forest);
  flex-shrink: 0;
  padding: 2px;
  background: var(--forest-soft);
  border-radius: 50%;
  box-sizing: content-box;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi {
  padding: 140px 0;
  position: relative;
  z-index: 1;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.testi-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 4rem;
  line-height: 1;
  color: var(--forest);
  opacity: .8;
  margin-bottom: -24px;
  margin-top: -8px;
}

.testi-number {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1;
  margin: 14px 0 14px;
  color: var(--ink);
}
.testi-number .unit {
  font-family: var(--mono);
  font-style: normal;
  font-size: .7rem;
  font-weight: 400;
  color: var(--ink-soft);
  margin-left: 6px;
  letter-spacing: .04em;
}
.testi-quote {
  font-size: .98rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 28px;
  flex: 1;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: .82rem;
  color: var(--bg);
  flex-shrink: 0;
  font-family: var(--serif);
  font-style: italic;
}
.testi-avatar.c1 { background: var(--forest); }
.testi-avatar.c2 { background: var(--amber-deep); }
.testi-avatar.c3 { background: oklch(40% 0.12 230); }
.testi-name { font-size: .9rem; font-weight: 600; color: var(--ink); }
.testi-role { font-size: .76rem; color: var(--ink-soft); margin-top: 2px; font-family: var(--mono); }

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
  transition: color .2s;
}
.faq-q:hover { color: var(--forest); }
.faq-toggle {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 20px;
  transition: all .3s var(--ease);
  color: var(--ink);
  position: relative;
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s var(--ease);
}
.faq-toggle::before { width: 12px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-toggle {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.faq-item.open .faq-toggle::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), padding .4s;
  color: var(--ink-muted);
  line-height: 1.65;
  font-size: .95rem;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 26px;
}

/* ============================================
   NOTIFY / FINAL CTA
   ============================================ */
.notify {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.notify-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.notify-card {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-xl);
  padding: 100px 64px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.notify-card::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 140%; height: 100%;
  background: radial-gradient(ellipse, oklch(48% 0.12 165 / .45), transparent 60%);
  pointer-events: none;
}
.notify-card::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -10%;
  width: 60%; height: 100%;
  background: radial-gradient(circle, oklch(62% 0.15 55 / .25), transparent 60%);
  pointer-events: none;
}
/* Scanline pattern — understated */
.notify-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, oklch(100% 0 0 / .08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.notify-inner-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }

.notify-title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: .96;
  margin: 24px 0 22px;
  color: var(--bg);
}
.notify-title .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}
.notify-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: oklch(100% 0 0 / .72);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.4;
}

.notify-form {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: oklch(100% 0 0 / .08);
  border: 1px solid oklch(100% 0 0 / .12);
  border-radius: 99px;
  max-width: 460px;
  margin: 0 auto 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.notify-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-size: .95rem;
  color: var(--bg);
  font-family: inherit;
  min-width: 0;
}
.notify-input::placeholder { color: oklch(100% 0 0 / .4); }
.notify-submit {
  padding: 12px 22px;
  background: var(--amber);
  color: oklch(22% 0.04 55);
  border-radius: 99px;
  font-size: .88rem;
  font-weight: 600;
  transition: transform .2s, background .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.notify-submit:hover { background: oklch(80% 0.16 72); transform: translateY(-1px); }

.notify-success {
  display: none;
  padding: 14px 22px;
  background: oklch(48% 0.12 165 / .15);
  border: 1px solid oklch(48% 0.12 165 / .3);
  border-radius: 99px;
  color: oklch(88% 0.08 165);
  font-weight: 500;
  font-size: .95rem;
  max-width: 460px;
  margin: 0 auto 22px;
  font-family: var(--mono);
}
.notify-success.show { display: block; }

.notify-note {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: .78rem;
  color: oklch(100% 0 0 / .55);
  font-family: var(--mono);
}
.notify-note-item { display: flex; align-items: center; gap: 6px; }
.notify-note-item svg { color: oklch(70% 0.14 165); }

.launch-date-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  background: oklch(100% 0 0 / .08);
  border: 1px solid oklch(100% 0 0 / .12);
  border-radius: 99px;
  margin-bottom: 24px;
}
.launch-date-big-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: oklch(22% 0.04 55);
}
.launch-date-big-icon svg { width: 14px; height: 14px; }
.launch-date-big-text {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
}
.launch-date-big-label {
  font-size: .68rem;
  color: oklch(100% 0 0 / .5);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.launch-date-big-date {
  font-size: .88rem;
  color: var(--bg);
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--ink);
}
.footer-desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 22px;
  max-width: 320px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  color: var(--ink-muted);
}
.footer-social:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .9rem;
  color: var(--ink-muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--ink); }
.footer-links .soon {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: var(--amber-soft);
  color: var(--amber-deep);
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: 99px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--mono);
  font-size: .76rem;
  color: var(--ink-soft);
}
.footer-lang { display: flex; gap: 4px; background: var(--bg-tint); padding: 4px; border-radius: 99px; border: 1px solid var(--line); }
.footer-lang button {
  padding: 6px 12px;
  border-radius: 99px;
  font-size: .78rem;
  color: var(--ink-muted);
  transition: all .2s;
  font-family: var(--sans);
}
.footer-lang button.active {
  background: var(--ink);
  color: var(--bg);
}

.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: var(--ink);
  z-index: 200;
  transform-origin: left;
  transform: scaleX(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .usecases-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(6, 1fr); }
  .svc-store { grid-column: span 6; min-height: 420px; grid-template-columns: 1fr; gap: 24px; padding: 36px 32px; }
  .svc-resell, .svc-give, .svc-recycle, .svc-care { grid-column: span 3; }
  .earn-soon-card { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .earn-soon-viz { height: 280px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .tile-insurance { margin-left: -420px; }
  .tile-sales { margin-left: 180px; }
  .tile-donation { margin-left: -450px; }
  .tile-live { margin-left: 200px; }
}

@media (max-width: 880px) {
  .stage-phone { transform: scale(0.85); }
  .tile-insurance, .tile-sales, .tile-donation, .tile-live { display: none; }
  .hero-stage { height: 520px; }
}

@media (max-width: 768px) {
  .nav { top: 8px; padding: 8px 12px 0; margin-top: 8px; }
  .nav-inner { padding: 8px 10px 8px 14px; }
  .nav-brand { font-size: .98rem; }
  .nav-mark { width: 28px; height: 28px; font-size: .85rem; }
  .nav-links { display: none; }
  .nav-actions > .btn-ghost,
  .nav-actions > .btn-primary:not(.nav-mobile-cta) { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero-badge-row { margin-bottom: 24px; }
  .hero-title { font-size: clamp(2.2rem, 11vw, 3.6rem); margin-bottom: 16px; }
  .hero-sub { font-size: .98rem; margin-bottom: 28px; }
  .hero-ctas { margin-bottom: 40px; flex-direction: column; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
  .hero-ctas .btn { width: 100%; }

  .hero-stage { height: 480px; }
  .stage-phone { width: 270px; height: 520px; margin-left: -135px; margin-top: -260px; transform: none; }
  .phone-screen { padding: 42px 16px 20px; }
  .trust-bar { gap: 16px; font-size: .72rem; }

  .marquee-item { font-size: .95rem; }

  .services { padding: 100px 0 80px; }
  .section-header { margin-bottom: 56px; }
  .section-title { font-size: clamp(2rem, 7vw, 2.6rem); }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .svc-store, .svc-resell, .svc-give, .svc-recycle, .svc-care { grid-column: span 1; }
  .svc { padding: 28px 26px; min-height: auto; }
  .svc-store { padding: 36px 30px; }
  .svc-store .svc-title { font-size: 2.1rem; }
  .svc-stat-row { flex-direction: column; gap: 16px; }

  .earn-soon { padding: 60px 0 80px; }
  .earn-soon-card { padding: 32px 24px; }
  .earn-soon-title { font-size: clamp(1.8rem, 6vw, 2.3rem); }

  .process { padding: 100px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .step { min-height: auto; padding: 28px 26px; }
  .step-mockup { min-height: 200px; margin: -28px -26px 22px; padding: 32px 26px; }

  .testi { padding: 100px 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .usecases { padding: 100px 0; }
  .uc-body { padding: 22px 22px 24px; }
  .uc-visual { aspect-ratio: 16 / 8; }
  .uc-illus { width: 100px; height: 100px; }

  .faq { padding: 100px 0 60px; }
  .faq-q { font-size: 1rem; padding: 22px 0; }

  .notify { padding: 80px 0; }
  .notify-card { padding: 64px 28px 56px; border-radius: var(--r-lg); }
  .notify-form { flex-direction: column; border-radius: var(--r-md); gap: 8px; }
  .notify-input { width: 100%; text-align: center; padding: 14px 16px; }
  .notify-submit { width: 100%; padding: 14px 22px; border-radius: var(--r-sm); }

  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero-inner { padding: 0 16px; }
  .services-grid, .process-grid, .testi-grid, .faq-list, .notify-inner, .footer-inner { padding-left: 16px; padding-right: 16px; }
  .hero-title { font-size: clamp(2rem, 10vw, 2.8rem); }
  .svc { padding: 24px 22px; }
  .svc-title { font-size: 1.6rem; }
  .svc-store .svc-title { font-size: 1.9rem; }
  .notify-card { padding: 52px 22px 48px; }
}

/* ============================================
   REDUCED MOTION — hard guardrails
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none !important; transform: translateX(0) !important; }
  .coming-soon-shape { animation: none !important; }
  .eyebrow::before, .earn-soon-badge::before { animation: none !important; }
  .live-pulse::after { animation: none !important; opacity: 0; }
  /* Disable parallax and reveal transforms */
  [data-depth] { transform: none !important; }
  .hero-title .line-inner { transform: none !important; opacity: 1 !important; }
}
