/* ─────────────────────────────────────────
   Fish Receipt — Landing Page Styles
   ───────────────────────────────────────── */

/* ── Design tokens ── */
:root {
  /* ── Brand palette ── */
  --navy:        #034159;   /* brand dark 1  */
  --navy-mid:    #025951;   /* brand dark 2  */
  --teal-mid:    #02735E;   /* brand mid     */
  --teal-dark:   #038C3E;   /* brand green   */
  --teal:        #0CF25D;   /* brand accent  */
  --teal-light:  #5cf785;
  --teal-bg:     #e2fcee;
  --blue-soft:   #e2fcee;
  --blue-mist:   #f0fef6;
  --white:       #ffffff;
  --bg:          #ffffff;
  --bg-strip:    #f2fef7;
  --slate-100:   #f1f5f9;
  --slate-200:   #e2e8f0;
  --slate-300:   #cbd5e1;
  --slate-400:   #94a3b8;
  --slate-500:   #64748b;
  --slate-600:   #475569;
  --slate-900:   #0f172a;
  --text:        #034159;
  --text-body:   #334155;
  --text-muted:  #64748b;
  --green:       #038C3E;

  --r-sm:   6px;  --r-md:  12px;
  --r-lg:  20px;  --r-xl:  32px;
  --r-pill: 999px;

  --sh-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --sh-md: 0 4px 20px rgba(0,0,0,.09);
  --sh-lg: 0 20px 60px rgba(0,0,0,.16);
  --sh-phone: 0 32px 80px rgba(12,242,93,.15), 0 8px 32px rgba(0,0,0,.20);

  --font:      'Inter', system-ui, -apple-system, sans-serif;
  --ease:      200ms ease;
  --ease-med:  350ms ease;
  --nav-h:     84px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--nav-h); }
body { font-family: var(--font); color: var(--text-body); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol, li { list-style: none; }
button { font-family: var(--font); }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--teal-light);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--r-md);
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--ease);
}
.skip-link:focus { transform: translateY(0); }

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

/* ─────────────────────────────────────────
   Buttons
   ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; border-radius: var(--r-md);
  border: 2px solid transparent; cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease),
              transform var(--ease), box-shadow var(--ease), opacity var(--ease);
  white-space: nowrap; text-decoration: none; line-height: 1; min-height: 44px;
}
.btn:focus-visible { outline: 3px solid var(--teal-light); outline-offset: 3px; }
.btn:active:not(:disabled) { transform: scale(.97); }
.btn:disabled { opacity: .6; cursor: not-allowed; pointer-events: none; }

.btn--sm  { padding: 9px 20px;  font-size: .875rem; }
.btn--lg  { padding: 14px 26px; font-size: .975rem; border-radius: var(--r-lg); }

/* Dark navy — primary CTA in hero + nav */
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(3,65,89,.30); }

/* Outline — secondary hero CTA */
.btn--outline {
  background: transparent; color: var(--navy);
  border-color: var(--slate-300);
}
.btn--outline:hover { background: var(--slate-100); border-color: var(--slate-400); }

/* Teal — waitlist CTA */
.btn--teal {
  background: var(--teal); color: var(--navy);
  box-shadow: 0 4px 18px rgba(12,242,93,.35);
}
.btn--teal:hover { background: var(--teal-dark); color: var(--white); box-shadow: 0 6px 24px rgba(3,140,62,.45); transform: translateY(-1px); }

/* Spinner */
.btn-spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.35); border-top-color: var(--white); border-radius: 50%; animation: spin .6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─────────────────────────────────────────
   Navigation — white, sticky
   ───────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow var(--ease-med);
}
.nav.is-scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.nav__inner { display: flex; align-items: center; height: 100%; gap: 0; }

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  height: 70px;
  color: var(--navy);
}
.nav__logo {
  display: block;
  height: 64px;
  width: 134px;
  max-width: none;
  flex-shrink: 0;
  object-fit: contain;
  object-position: left center;
}

.nav__links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav__link  { padding: 7px 14px; font-size: .9rem; font-weight: 500; color: var(--text-body); border-radius: var(--r-md); transition: color var(--ease), background var(--ease); }
.nav__link:hover { color: var(--navy); background: var(--slate-100); }
.nav__link.is-active { color: var(--teal-dark); font-weight: 600; }

.nav__cta { margin-left: auto; border-radius: var(--r-lg); }

/* ─────────────────────────────────────────
   Hero — light, white/blue
   ───────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #f0fef6 50%, #e2fcee 100%);
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 80px;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero__blob {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: .5;
}
.hero__blob--1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(12,242,93,.14) 0%, transparent 70%); top: -200px; right: -100px; }
.hero__blob--2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(2,115,94,.12) 0%, transparent 70%); bottom: -100px; left: -50px; }

.hero__fish-accent { position: absolute; color: var(--teal); }
.hero__fish-accent--1 { width: 60px; top: 30%; left: 4%; opacity: .18; transform: rotate(-15deg); }
.hero__fish-accent--2 { width: 42px; bottom: 20%; right: 3%; opacity: .14; transform: rotate(20deg) scaleX(-1); }

.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 32px;
  align-items: center;
}

/* ── Hero copy (left) ── */
.hero__copy { display: flex; flex-direction: column; gap: 22px; }

.badge--cs {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--blue-soft);
  color: var(--teal-dark);
  border: 1px solid rgba(12,242,92,.35);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  width: fit-content;
}

.hero__headline {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  font-weight: 900;
  line-height: 1.10;
  color: var(--navy);
  letter-spacing: -.03em;
}
.hero__accent {
  color: var(--teal);
  position: relative;
  display: inline-block;
}
.hero__accent::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%);
  border-radius: 2px;
  opacity: .4;
}

.hero__sub {
  font-size: 1.1rem; color: var(--text-body); line-height: 1.7; max-width: 440px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__trust {
  display: flex; align-items: center; gap: 8px;
  font-size: .875rem; color: var(--text-muted);
}
.hero__trust svg { color: var(--teal); flex-shrink: 0; }

/* ── 3 Phone Mockups (right) ── */
.hero__phones {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 0 20px;
  gap: 0;
}

.hero__phones-glow {
  position: absolute;
  width: 480px; height: 300px;
  top: 50%; left: 50%; transform: translate(-50%, -40%);
  background: radial-gradient(ellipse, rgba(12,242,93,.13) 0%, transparent 70%);
  pointer-events: none;
}

/* Phone shell */
.ph {
  position: relative;
  width: 185px;
  border-radius: 36px;
  background: #0a0a0e;
  border: 1.5px solid rgba(255,255,255,.15);
  box-shadow: var(--sh-phone);
  overflow: hidden;
  flex-shrink: 0;
}
.ph--left  { transform: rotate(-5deg) translateY(28px) translateX(22px); z-index: 1; }
.ph--center { transform: translateY(-14px); z-index: 3; width: 195px;
  box-shadow: 0 40px 90px rgba(12,242,93,.16), 0 12px 40px rgba(0,0,0,.28); }
.ph--right { transform: rotate(5deg) translateY(16px) translateX(-22px); z-index: 2; }

/* Dynamic island */
.ph__island {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 68px; height: 12px;
  background: #0a0a0e; border-radius: 8px; z-index: 10;
}

/* Screen areas */
.ph__screen {
  min-height: 400px;
  display: flex; flex-direction: column;
  padding-top: 28px;
  overflow: hidden;
}
.ph__screen--light { background: #f8fbff; }
.ph__screen--dark  { background: #0f1923; }

/* Status bar */
.ph__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px 6px;
  font-size: .58rem; font-weight: 700; letter-spacing: .02em;
}
.ph__bar--dark  { color: var(--navy); }
.ph__bar--light { color: rgba(255,255,255,.9); }
.ph__bar-icons  { display: flex; align-items: center; gap: 5px; }

/* ── Phone 1: Alerts ── */
.ph__app-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 14px 8px;
  border-bottom: 1px solid var(--slate-200);
}
.ph__app-title { font-size: .82rem; font-weight: 800; color: var(--navy); }
.ph__filter    { font-size: .65rem; font-weight: 600; color: var(--teal); display: flex; align-items: center; gap: 2px; }

.ph__list { flex: 1; overflow: hidden; }

.ph__alert-item {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 9px 14px;
}
.ph__divider { height: 1px; background: var(--slate-200); margin: 0 14px; }

.ph__thumb {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; margin-top: 1px;
}
.ph__thumb--blue   { background: #dbeafe; }
.ph__thumb--green  { background: #dcfce7; }
.ph__thumb--orange { background: #fef3c7; }

.ph__alert-body { flex: 1; min-width: 0; }
.ph__alert-name  { font-size: .65rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.ph__alert-price { font-size: .68rem; font-weight: 700; color: var(--text-body); margin-top: 2px; }
.ph__alert-drop  { font-size: .6rem; color: var(--green); font-weight: 600; margin-top: 1px; }
.ph__alert-time  { font-size: .58rem; color: var(--slate-400); flex-shrink: 0; margin-top: 2px; }

/* ── Phone 2: Scan ── */
.ph__scan-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 14px 8px;
}
.ph__back       { font-size: 1.2rem; font-weight: 300; color: var(--teal-light); line-height: 1; padding: 2px 4px; }
.ph__scan-title { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.9); }

.ph__scan-hint { font-size: .62rem; color: rgba(255,255,255,.6); text-align: center; padding: 0 20px 10px; line-height: 1.4; }

.ph__viewfinder {
  position: relative;
  margin: 0 14px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.3);
}

/* Corner markers */
.ph__corner {
  position: absolute;
  width: 14px; height: 14px;
  z-index: 2;
}
.ph__corner::before, .ph__corner::after {
  content: ''; position: absolute;
  background: var(--teal-light);
  border-radius: 1px;
}
.ph__corner--tl { top: 0; left: 0; }
.ph__corner--tl::before { top: 0; left: 0; width: 2px; height: 14px; }
.ph__corner--tl::after  { top: 0; left: 0; width: 14px; height: 2px; }
.ph__corner--tr { top: 0; right: 0; }
.ph__corner--tr::before { top: 0; right: 0; width: 2px; height: 14px; }
.ph__corner--tr::after  { top: 0; right: 0; width: 14px; height: 2px; }
.ph__corner--bl { bottom: 0; left: 0; }
.ph__corner--bl::before { bottom: 0; left: 0; width: 2px; height: 14px; }
.ph__corner--bl::after  { bottom: 0; left: 0; width: 14px; height: 2px; }
.ph__corner--br { bottom: 0; right: 0; }
.ph__corner--br::before { bottom: 0; right: 0; width: 2px; height: 14px; }
.ph__corner--br::after  { bottom: 0; right: 0; width: 14px; height: 2px; }

/* Receipt paper */
.ph__receipt-paper {
  background: #fffdf5;
  margin: 8px;
  border-radius: 4px;
  padding: 6px 8px;
  font-family: 'Courier New', monospace;
  font-size: .52rem;
  color: #333;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}
.ph__rp-logo  { font-size: .72rem; font-weight: 900; text-align: center; letter-spacing: .05em; color: #034158; }
.ph__rp-sub   { font-size: .55rem; text-align: center; letter-spacing: .08em; color: #034158; margin-bottom: 2px; }
.ph__rp-addr  { font-size: .5rem; text-align: center; color: #555; }
.ph__rp-mem   { font-size: .5rem; text-align: center; color: #555; margin-bottom: 4px; }
.ph__rp-div   { border-top: 1px dashed #aaa; margin: 3px 0; }
.ph__rp-row   { display: flex; justify-content: space-between; font-size: .5rem; color: #333; }
.ph__rp-total { display: flex; justify-content: space-between; font-size: .58rem; font-weight: 900; color: #034158; margin-top: 2px; }
.ph__rp-thanks { font-size: .5rem; text-align: center; color: #555; margin-top: 4px; line-height: 1.3; }

/* Scan line animation */
.ph__scan-line {
  position: absolute;
  left: 4px; right: 4px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--teal-light) 40%, var(--teal) 60%, transparent 100%);
  box-shadow: 0 0 8px rgba(12,242,93,.8);
  z-index: 3;
  animation: scanmove 2.2s ease-in-out infinite;
}
@keyframes scanmove {
  0%   { top: 8px;  opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { top: calc(100% - 8px); opacity: 0; }
}

.ph__shutter {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.4);
  margin: 8px auto 4px;
  position: relative;
}
.ph__shutter::after {
  content: ''; position: absolute; inset: 5px;
  background: rgba(255,255,255,.6);
  border-radius: 50%;
}

/* ── Phone 3: Item Details ── */
.ph__detail-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 14px 8px;
}
.ph__back--dark { color: var(--teal); }
.ph__detail-title { font-size: .8rem; font-weight: 700; color: var(--navy); }

.ph__product-img {
  margin: 0 14px 6px;
  background: var(--blue-soft);
  border-radius: 10px;
  height: 64px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.ph__product-name {
  padding: 0 14px 8px;
  font-size: .68rem; font-weight: 700; color: var(--navy); line-height: 1.35;
}
.ph__prices {
  display: flex; align-items: stretch;
  margin: 0 14px 8px;
  background: var(--slate-100); border-radius: 8px;
  overflow: hidden;
}
.ph__price-col { flex: 1; padding: 8px 10px; }
.ph__price-divider { width: 1px; background: var(--slate-200); }
.ph__price-label { font-size: .55rem; color: var(--text-muted); margin-bottom: 2px; }
.ph__price-val   { font-size: .88rem; font-weight: 800; color: var(--navy); }
.ph__price-val--low { color: var(--teal-dark); }
.ph__price-badge {
  display: inline-block; margin-top: 2px;
  background: #dcfce7; color: var(--green);
  font-size: .52rem; font-weight: 700;
  padding: 1px 5px; border-radius: 4px;
}
.ph__warehouses-label { padding: 0 14px 4px; font-size: .6rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.ph__warehouses { padding: 0 14px; display: flex; flex-direction: column; gap: 5px; }
.ph__wh-row { display: flex; align-items: center; gap: 5px; }
.ph__wh-name  { flex: 1; font-size: .62rem; font-weight: 500; color: var(--navy); }
.ph__wh-price { font-size: .62rem; font-weight: 700; color: var(--text-body); }
.ph__wh-time  { font-size: .56rem; color: var(--slate-400); }

/* ── Tab bar (shared) ── */
.ph__tabs {
  display: flex;
  border-top: 1px solid var(--slate-200);
  margin-top: auto;
  background: var(--white);
}
.ph__tabs--dark { border-top-color: rgba(255,255,255,.10); background: rgba(255,255,255,.05); }

.ph__tab {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 6px 2px; gap: 2px;
  font-size: .48rem; color: var(--slate-400); position: relative;
}
.ph__tab--active { color: var(--teal); }
.ph__tab--dim    { color: rgba(255,255,255,.35); }
.ph__tab--scan-active { color: var(--teal-light); }
.ph__tab-dot {
  position: absolute; top: 5px; left: 50%; transform: translateX(4px);
  width: 5px; height: 5px; background: #ef4444; border-radius: 50%;
  border: 1px solid var(--white);
}

/* ─────────────────────────────────────────
   How It Works — compact horizontal strip
   ───────────────────────────────────────── */
.how-strip {
  background: var(--bg-strip);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding-block: 48px;
}

.how-strip__inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: center;
}

.how-strip__label {}
.how-strip__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1.2;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.how-step {
  flex: 1;
  display: flex; flex-direction: column;
  gap: 8px;
}
.how-connector {
  display: flex;
  align-items: center;
  padding-top: 22px; /* align with step icons */
  flex-shrink: 0;
  padding-inline: 4px;
  color: var(--teal);
}

.how-step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  background: var(--teal);
  color: var(--navy);
  border-radius: 50%;
  font-size: .75rem; font-weight: 800;
  flex-shrink: 0;
}

.how-step__icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--white);
  border: 1.5px solid var(--teal-bg);
  border-radius: var(--r-md);
  color: var(--teal-mid);
  box-shadow: var(--sh-sm);
  margin: 2px 0;
}

.how-step__title { font-size: .95rem; font-weight: 700; color: var(--navy); }
.how-step__desc  { font-size: .85rem; color: var(--text-muted); line-height: 1.55; max-width: 180px; }

/* ─────────────────────────────────────────
   Why Fish Receipt — 3 horizontal cards
   ───────────────────────────────────────── */
.why-section {
  padding-block: 80px;
  background: var(--white);
}

.why-header { margin-bottom: 48px; }
.why-title  { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: var(--navy); letter-spacing: -.02em; }

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 32px 28px;
  background: var(--bg-strip);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  transition: transform var(--ease-med), box-shadow var(--ease-med);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.why-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--teal);
  color: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
}
.why-card__title { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.why-card__desc  { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ─────────────────────────────────────────
   Waitlist — dark navy banner
   ───────────────────────────────────────── */
.waitlist {
  position: relative;
  overflow: hidden;
  padding-block: 80px;
  background: var(--navy);
}

.waitlist__bg { position: absolute; inset: 0; pointer-events: none; }
.waitlist__blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.waitlist__blob--1 { width: 400px; height: 400px; background: rgba(12,242,93,.10); top: -100px; right: -50px; }
.waitlist__blob--2 { width: 300px; height: 300px; background: rgba(2,89,81,.30); bottom: -80px; left: -60px; }
.waitlist__fish { position: absolute; width: 200px; bottom: 20px; right: 80px; opacity: .6; }

.waitlist__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}

/* Left illustration */
.waitlist__illus { flex-shrink: 0; }
.wl-phone {
  width: 80px; height: 140px;
  background: rgba(255,255,255,.10);
  border: 1.5px solid rgba(255,255,255,.20);
  border-radius: 20px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.wl-phone__screen {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.wl-phone__icon  { font-size: 2rem; }
.wl-phone__dollar {
  position: absolute; top: -12px; right: -14px;
  width: 32px; height: 32px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(12,242,93,.4);
}
.wl-sparkles { position: absolute; inset: 0; pointer-events: none; }
.wl-sp { position: absolute; color: var(--teal-light); font-size: 1rem; animation: sparkle 2s ease-in-out infinite; }
.wl-sp--1 { top: 0; left: 85px; animation-delay: 0s; }
.wl-sp--2 { top: 30px; left: 95px; animation-delay: .6s; font-size: .7rem; }
.wl-sp--3 { top: 15px; left: 108px; animation-delay: 1.2s; font-size: 1.3rem; }
@keyframes sparkle { 0%,100% { opacity: .4; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.1); } }

/* Right: content + form */
.waitlist__content { display: flex; flex-direction: column; gap: 16px; }

.waitlist__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -.025em; line-height: 1.15;
}
.waitlist__sub {
  font-size: 1rem; color: rgba(255,255,255,.7); line-height: 1.7; max-width: 480px;
}

/* Form */
.wl-form { width: 100%; max-width: 560px; }
.wl-form__row { display: flex; gap: 10px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.wl-form__input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--r-lg);
  border: 1.5px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
  color: var(--white);
  font-family: var(--font); font-size: 1rem;
  outline: none; min-height: 50px;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
  backdrop-filter: blur(8px);
}
.wl-form__input::placeholder { color: rgba(255,255,255,.4); }
.wl-form__input:focus {
  border-color: var(--teal-light);
  background: rgba(255,255,255,.14);
  box-shadow: 0 0 0 3px rgba(12,242,93,.18);
}
.wl-form__input.is-error {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,.15);
}

.wl-form__error {
  margin-top: 8px; font-size: .875rem; color: #fca5a5;
  display: flex; align-items: center; gap: 6px;
}

/* Success state */
.wl-success {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  background: rgba(12,242,93,.12);
  border: 1px solid rgba(12,242,93,.35);
  border-radius: var(--r-lg);
  max-width: 480px;
  animation: fadeup .4s ease both;
}
@keyframes fadeup { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.wl-success__icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(12,242,93,.20); color: var(--teal-light); flex-shrink: 0;
}
.wl-success__title { font-size: .95rem; font-weight: 700; color: var(--white); }
.wl-success__msg   { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 2px; }

.waitlist__privacy {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; color: rgba(255,255,255,.4);
}
.waitlist__privacy a { color: rgba(255,255,255,.72); text-decoration: underline; text-underline-offset: 2px; }
.waitlist__privacy a:hover { color: var(--teal-light); }

/* ─────────────────────────────────────────
   Footer
   ───────────────────────────────────────── */
.footer { background: var(--slate-900); padding-block: 48px 36px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.footer__top-row { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 8px 12px;
}
.footer__logo {
  display: block;
  width: 148px;
  height: auto;
}
.footer__slogan { font-size: .875rem; color: var(--slate-400); font-style: italic; }
.footer__divider { width: 60px; height: 1px; background: var(--slate-600); margin-block: 4px; }
.footer__platforms { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.platform-pill { padding: 5px 14px; border-radius: var(--r-pill); font-size: .78rem; font-weight: 600; color: var(--slate-400); border: 1px solid var(--slate-600); letter-spacing: .02em; }
.footer__disclaimer { font-size: .78rem; color: var(--slate-500); max-width: 540px; line-height: 1.65; }
.footer__links { font-size: .78rem; color: var(--slate-400); }
.footer__links a { text-decoration: underline; text-underline-offset: 3px; }
.footer__links a:hover { color: var(--teal-light); }
.footer__copy { font-size: .78rem; color: var(--slate-600); }

/* ─────────────────────────────────────────
   Supporting pages
   ───────────────────────────────────────── */
.legal-page,
.status-page { min-height: 100vh; background: linear-gradient(160deg, #ffffff 0%, #f0fef6 55%, #e2fcee 100%); }
.simple-nav { position: static; }
.simple-nav .nav__inner { justify-content: space-between; }
.simple-nav__back { margin-left: auto; }
.legal-main { padding-block: 56px 80px; }
.legal-card {
  max-width: 780px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--bg);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
}
.legal-card h1 { color: var(--navy); font-size: clamp(2rem, 5vw, 3rem); line-height: 1.12; letter-spacing: -.035em; }
.legal-card__updated { margin-top: 8px; color: var(--text-muted); font-size: .9rem; }
.legal-card h2 { margin-top: 30px; color: var(--navy); font-size: 1.2rem; }
.legal-card p { margin-top: 10px; }
.legal-card ul { margin-top: 10px; padding-left: 22px; }
.legal-card li { list-style: disc; margin-top: 6px; }
.legal-card a { color: var(--teal-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.status-main { display: grid; min-height: calc(100vh - var(--nav-h)); place-items: center; padding-block: 56px; }
.status-card { text-align: center; }
.status-card__icon {
  display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 20px;
  border-radius: 50%; background: var(--teal-bg); color: var(--teal-dark);
}
.status-card p { max-width: 520px; margin: 14px auto 24px; }

/* ─────────────────────────────────────────
   Scroll animations
   ───────────────────────────────────────── */
.will-animate { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.will-animate.is-visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────
   Responsive — Tablet 700–1024px
   ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero__copy  { align-items: center; }
  .hero__sub   { max-width: 100%; }
  .hero__phones { padding-bottom: 0; }
  .ph--left, .ph--right { display: none; }
  .ph--center { width: 220px; transform: none; }
  .ph--center .ph__screen { min-height: 460px; }

  .how-strip__inner { grid-template-columns: 1fr; gap: 32px; }
  .how-strip__title { font-size: 1.3rem; }
  .nav__links { display: none; }
  .nav__cta   { margin-left: auto; }
}

@media (max-width: 700px) {
  :root { --nav-h: 60px; }
  .container { padding-inline: 18px; }
  .nav__brand { min-width: 0; height: 52px; }
  .nav__logo { height: 46px; width: 96px; }

  .hero { padding-top: calc(var(--nav-h) + 20px); padding-bottom: 40px; }

  .how-strip { padding-block: 36px; }
  .how-steps { flex-direction: column; gap: 20px; }
  .how-connector { display: none; }
  .how-step__desc { max-width: 100%; }

  .why-section { padding-block: 64px; }
  .why-cards { grid-template-columns: 1fr; gap: 16px; }

  .waitlist { padding-block: 64px; }
  .waitlist__inner { grid-template-columns: 1fr; gap: 36px; }
  .waitlist__illus { display: none; }
  .wl-form__row { flex-direction: column; }
  .wl-form__btn { width: 100%; }
}

@media (min-width: 700px) and (max-width: 1024px) {
  .why-cards { grid-template-columns: 1fr 1fr; }
  .waitlist__inner { grid-template-columns: auto 1fr; }
  .how-steps { flex-wrap: wrap; gap: 20px; }
  .how-connector { display: none; }
  .how-step { flex: 0 0 calc(33% - 10px); }
}

/* ─────────────────────────────────────────
   Theme Toggle Button
   ───────────────────────────────────────── */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--slate-200);
  background: transparent;
  color: var(--text-body);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
  flex-shrink: 0;
  margin-left: 8px;
}
.theme-toggle:hover { background: var(--teal-bg); border-color: var(--teal-dark); color: var(--teal-dark); transform: scale(1.08); }
.theme-toggle:focus-visible { outline: 3px solid var(--teal-light); outline-offset: 2px; }

/* Light mode: show moon, hide sun */
.icon-sun  { display: none; }
.icon-moon { display: block; }

/* Dark mode: show sun, hide moon */
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* ─────────────────────────────────────────
   Smooth theme transition
   ───────────────────────────────────────── */
*, *::before, *::after {
  transition-property: background-color, border-color, color, box-shadow;
  transition-duration: 250ms;
  transition-timing-function: ease;
}
/* Exclude animations and transforms from the global transition */
.btn, .why-card, .theme-toggle, .nav, .wl-sp, .ph__scan-line {
  transition: background var(--ease), color var(--ease), border-color var(--ease),
              transform var(--ease), box-shadow var(--ease), opacity var(--ease);
}

/* ─────────────────────────────────────────
   Dark Mode — Brand palette:
   #034159 · #025951 · #02735E · #038C3E · #0CF25D
   ───────────────────────────────────────── */
[data-theme="dark"] {
  /* Surfaces */
  --bg:        #011824;
  --bg-strip:  #021f2b;
  --white:     #021f2b;

  /* Text */
  --text:      #f0fefa;
  --text-body: rgba(220,250,240,0.80);
  --text-muted:rgba(220,250,240,0.50);

  /* Light tint backgrounds → dark equivalents */
  --teal-bg:   #021f2b;
  --blue-soft: #021f2b;
  --blue-mist: #011824;

  /* Slate scale → dark */
  --slate-100: #021f2b;
  --slate-200: rgba(12,242,93,0.10);
  --slate-300: rgba(255,255,255,0.18);
  --slate-400: rgba(255,255,255,0.35);
  --slate-500: rgba(255,255,255,0.45);
  --slate-600: rgba(255,255,255,0.25);
  --slate-900: #010f18;

  /* Shadow */
  --sh-phone:  0 32px 80px rgba(12,242,93,.22), 0 8px 32px rgba(0,0,0,.65);
}

/* ── Nav ── */
[data-theme="dark"] .nav {
  background: rgba(1,24,36,0.96);
  border-bottom-color: rgba(12,242,93,0.08);
}
[data-theme="dark"] .nav__link        { color: rgba(220,250,240,0.75); }
[data-theme="dark"] .nav__link:hover  { color: #f0fefa; background: rgba(12,242,93,0.07); }
[data-theme="dark"] .theme-toggle     { border-color: rgba(255,255,255,0.15); color: rgba(220,250,240,0.7); }
[data-theme="dark"] .theme-toggle:hover { background: rgba(12,242,93,0.10); border-color: var(--teal); color: var(--teal); }

/* ── Buttons ── */
[data-theme="dark"] .btn--navy {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}
[data-theme="dark"] .btn--navy:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(12,242,93,.30);
}
[data-theme="dark"] .btn--outline {
  color: rgba(220,250,240,0.85);
  border-color: rgba(255,255,255,0.22);
}
[data-theme="dark"] .btn--outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.40);
}

/* ── Hero ── */
[data-theme="dark"] .hero {
  background: linear-gradient(160deg, #011824 0%, #021f2b 55%, #025951 100%);
}
[data-theme="dark"] .hero__headline { color: #f0fefa; }
[data-theme="dark"] .hero__blob--1  { background: radial-gradient(circle, rgba(12,242,93,.12) 0%, transparent 70%); }
[data-theme="dark"] .hero__blob--2  { background: radial-gradient(circle, rgba(2,115,94,.14)  0%, transparent 70%); }
[data-theme="dark"] .hero__phones-glow { background: radial-gradient(ellipse, rgba(12,242,93,.12) 0%, transparent 70%); }

/* ── Badge ── */
[data-theme="dark"] .badge--cs {
  background: rgba(12,242,93,0.08);
  color: var(--teal);
  border-color: rgba(12,242,93,0.22);
}

/* ── Phone mockups — light screens ── */
[data-theme="dark"] .ph__screen--light  { background: #0c2030; }
[data-theme="dark"] .ph__bar--dark      { color: rgba(220,250,240,0.90); }
[data-theme="dark"] .ph__app-title      { color: #f0fefa; }
[data-theme="dark"] .ph__alert-name     { color: #f0fefa; }
[data-theme="dark"] .ph__alert-price    { color: rgba(220,250,240,0.80); }
[data-theme="dark"] .ph__detail-title   { color: #f0fefa; }
[data-theme="dark"] .ph__product-name   { color: #f0fefa; }
[data-theme="dark"] .ph__price-val      { color: #f0fefa; }
[data-theme="dark"] .ph__wh-name        { color: rgba(220,250,240,0.85); }
[data-theme="dark"] .ph__wh-price       { color: rgba(220,250,240,0.70); }
[data-theme="dark"] .ph__tabs           { background: #0c2030; }
[data-theme="dark"] .ph__product-img    { background: rgba(12,242,93,0.08); }
[data-theme="dark"] .ph__price-badge    { background: rgba(12,242,93,0.14); }
[data-theme="dark"] .ph__thumb--blue    { background: rgba(12,242,93,0.10); }
[data-theme="dark"] .ph__thumb--green   { background: rgba(12,242,93,0.14); }
[data-theme="dark"] .ph__thumb--orange  { background: rgba(255,165,0,0.12); }

/* ── How It Works ── */
[data-theme="dark"] .how-strip {
  background: var(--bg-strip);
  border-color: rgba(12,242,93,0.08);
}
[data-theme="dark"] .how-strip__title { color: #f0fefa; }
[data-theme="dark"] .how-step__title  { color: #f0fefa; }
[data-theme="dark"] .how-step__icon   { background: #011824; border-color: rgba(12,242,93,0.18); }

/* ── Why cards ── */
[data-theme="dark"] .why-section      { background: var(--bg); }
[data-theme="dark"] .why-title        { color: #f0fefa; }
[data-theme="dark"] .why-card         { background: var(--bg-strip); border-color: rgba(12,242,93,0.10); }
[data-theme="dark"] .why-card__title  { color: #f0fefa; }
[data-theme="dark"] .why-card:hover   { box-shadow: 0 4px 24px rgba(12,242,93,.12); border-color: rgba(12,242,93,0.22); }

/* ── Waitlist ── */
[data-theme="dark"] .waitlist            { background: #010f18; }
[data-theme="dark"] .waitlist__blob--1   { background: rgba(12,242,93,.07); }
[data-theme="dark"] .waitlist__blob--2   { background: rgba(2,89,81,.22); }
[data-theme="dark"] .waitlist__title     { color: #f0fefa; }
[data-theme="dark"] .waitlist__sub       { color: rgba(220,250,240,0.72); }
[data-theme="dark"] .wl-success__title   { color: #f0fefa; }
[data-theme="dark"] .wl-success__msg     { color: rgba(220,250,240,0.65); }
[data-theme="dark"] .wl-form__input      { color: #f0fefa; }
[data-theme="dark"] .waitlist__privacy   { color: rgba(220,250,240,0.40); }

/* ── Footer ── */
[data-theme="dark"] .footer            { background: #010a10; }
[data-theme="dark"] .footer__brand     { background: rgba(255,255,255,0.06); border: 1px solid rgba(12,242,93,0.12); }
[data-theme="dark"] .legal-page,
[data-theme="dark"] .status-page       { background: linear-gradient(160deg, #011824 0%, #021f2b 55%, #025951 100%); }
[data-theme="dark"] .legal-card         { background: var(--bg-strip); border-color: rgba(12,242,93,0.10); }
[data-theme="dark"] .legal-card h1,
[data-theme="dark"] .legal-card h2      { color: #f0fefa; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .will-animate { opacity: 1; transform: none; }
}
