:root {
  --bg: #e6d8c7;
  --bg-soft: #dfcfbc;
  --surface: #efe3d4;
  --surface-2: #e7d8c6;
  --text: #342b23;
  --text-soft: #5b4d40;
  --text-dim: #786756;
  --line: rgba(76, 58, 40, 0.15);
  --warm: #a77743;
  --warm-soft: rgba(167, 119, 67, 0.22);
  --ok: #9fd3be;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-1: 0 10px 30px rgba(0,0,0,0.35);
  --shadow-2: 0 35px 80px rgba(0,0,0,0.55);
  --max: 1200px;
  --nav-h: 72px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(980px 640px at 82% -12%, rgba(167,119,67,0.26), transparent 58%),
    radial-gradient(1200px 700px at -5% -30%, rgba(255,249,240,0.52), transparent 62%),
    radial-gradient(1400px 760px at 50% 120%, rgba(167,119,67,0.16), transparent 70%),
    linear-gradient(180deg, #eadbc9 0%, #e3d2bf 45%, #dcc9b3 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", "Inter", Roboto, Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,252,247,0.28) 0, transparent 240px),
    radial-gradient(760px 280px at 50% 102%, rgba(167,119,67,0.14), transparent 72%),
    radial-gradient(900px 360px at 50% 120%, rgba(95,70,44,0.12), transparent 70%);
  z-index: 0;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
  position: relative;
  background: linear-gradient(180deg, rgba(255,250,243,0.2), rgba(231,215,196,0.14));
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(242,230,214,0.2), rgba(227,207,182,0.2));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--warm);
  opacity: 0.7;
}

h1, h2, h3 {
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h1 { font-size: clamp(40px, 7vw, 82px); font-weight: 640; }
h2 { font-size: clamp(30px, 4.5vw, 56px); font-weight: 620; }
h3 { font-size: clamp(20px, 2.3vw, 28px); font-weight: 580; }

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: clamp(15px, 1.5vw, 18px);
}

.lead {
  font-size: clamp(18px, 2.2vw, 24px);
  color: #3d3126;
  max-width: 920px;
}

.muted { color: var(--text-dim); }

.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--nav-h);
  backdrop-filter: blur(18px) saturate(130%);
  background: rgba(236, 221, 203, 0.88);
  border-bottom: 1px solid rgba(87, 64, 41, 0.16);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 640;
  letter-spacing: 0.01em;
  color: #3f3327;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #f1d8b7, #b88853 65%, #825d38);
  box-shadow: 0 0 16px rgba(167,119,67,0.35);
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 13px;
  color: #4d3f31;
  opacity: 0.9;
  transition: opacity .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: #2f251d;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 560;
  letter-spacing: 0.01em;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  color: #fffaf4;
  background: linear-gradient(180deg, #b98953, #96693d);
  box-shadow: 0 14px 34px rgba(122,84,47,0.26);
}

.btn-primary:hover { box-shadow: 0 18px 44px rgba(122,84,47,0.34); }

.btn-ghost {
  border-color: rgba(84, 63, 43, 0.22);
  background: rgba(255,255,255,0.35);
  color: #4a3b2d;
}

.btn-ghost:hover {
  border-color: rgba(84, 63, 43, 0.4);
  background: rgba(255,255,255,0.55);
}

.hero {
  border-top: none;
  padding: 68px 0 84px;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  background:
    radial-gradient(760px 340px at 80% 18%, rgba(167,119,67,0.2), transparent 70%),
    radial-gradient(600px 300px at 22% 98%, rgba(167,119,67,0.12), transparent 70%);
}

.page-hero { min-height: 46vh; }

.hero-grid,
.grid-2,
.logic-grid,
.app-preview,
.footer-grid {
  display: grid;
  gap: 24px;
}

.hero-grid { grid-template-columns: 1.2fr .9fr; align-items: center; gap: 36px; }
.grid-2 { grid-template-columns: 1fr 1fr; align-items: stretch; gap: 26px; }
.logic-grid { grid-template-columns: 1.05fr .95fr; }
.app-preview { grid-template-columns: .95fr 1.05fr; align-items: center; }

/* App signal cards (replaces phone mockup) */
.app-signal-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-signal-card {
  background: linear-gradient(180deg, rgba(255,249,240,0.82), rgba(243,230,213,0.56));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-1);
}

.app-signal-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.app-signal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(95,70,44,0.1);
  font-size: 14px;
  color: var(--text-soft);
}

.app-signal-row:last-child { border-bottom: none; }

.app-signal-row strong {
  font-size: 18px;
  font-weight: 620;
  color: var(--text);
  letter-spacing: -0.01em;
}
.footer-grid { grid-template-columns: 1.2fr .8fr; gap: 20px; }

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-v2 {
  position: relative;
  overflow: hidden;
  padding: 58px 0 72px;
  min-height: calc(100vh - var(--nav-h));
  background: linear-gradient(110deg, rgba(233,219,202,0.92) 0%, rgba(225,208,186,0.72) 42%, rgba(223,205,182,0.36) 62%, rgba(220,201,178,0.18) 100%);
}

.hero-v2-grid {
  width: min(820px, 52vw);
  position: relative;
  z-index: 3;
  padding-right: 20px;
}

/* hero copy sits above background image, all text white */
.hero-v2-grid {
  z-index: 6;
}

.hero-v2-grid, .hero-v2-grid * {
  color: #fff !important;
}

.hero-copy-v2 h1 {
  font-size: clamp(40px, 5.1vw, 66px);
  line-height: 1.04;
}

.hero-media-bg {
  position: absolute;
  inset: 0;
  /* dark-left gradient keeps white text readable; hero image covers the full section */
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.18) 36%, rgba(0,0,0,0.0) 58%),
    url('hero1.png');
  background-position: left center, center center;
  background-size: cover, cover;
  background-repeat: no-repeat;
  border-radius: 0;
  z-index: 0;
}

.hero-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 260px at 78% 88%, rgba(167,119,67,0.2), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.hero-feature-tags {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-feature-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.hero-feature-tags span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--warm);
  box-shadow: 0 0 10px rgba(167,119,67,0.42);
}

.hero-flow-inline {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  font-size: 13px;
  font-weight: 540;
  letter-spacing: .01em;
}

.hero-flow-inline i {
  font-style: normal;
  color: rgba(255,255,255,0.7);
  opacity: .92;
}

.included-inline {
  margin-top: 14px;
  max-width: 880px;
  font-size: 15px;
  color: #5d4e40;
}

.included-inline strong {
  color: #46382b;
  font-weight: 620;
}

.ui-metrics {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.ui-metrics div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(95, 70, 44, 0.14);
  padding-bottom: 6px;
}

.ui-metrics span {
  color: #786756;
  font-size: 12px;
}

.ui-metrics strong {
  color: #47372a;
  font-size: 15px;
}

.rhythm-bars {
  height: 54px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 12px;
}

.rhythm-bars span {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(244,177,112,0.96), rgba(185,120,57,0.35));
  height: 20%;
  animation: rhythmFloat 2.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * .14s);
  box-shadow: 0 6px 16px rgba(167,119,67,0.28);
}

.hero-rhythm-card p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: #5a4a3a;
}

@keyframes rhythmFloat {
  0%, 100% { height: 20%; opacity: .62; }
  50% { height: 95%; opacity: 1; }
}

.hero-points {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 10px 16px;
  font-size: 14px;
  color: #5f5042;
}

.hero-points div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points div::before,
.list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--warm);
  box-shadow: 0 0 8px rgba(167,119,67,0.35);
}

.product-stage {
  position: relative;
  height: 560px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(260px 240px at 70% 20%, rgba(167,119,67,0.3), transparent 68%),
    radial-gradient(340px 220px at 30% 75%, rgba(255,255,255,0.35), transparent 72%),
    linear-gradient(180deg, #dcc7af, #cfb396);
  border: 1px solid rgba(95, 70, 44, 0.2);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  isolation: isolate;
}

.product-stage::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 65%;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0.45), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.module {
  position: absolute;
  border-radius: 26px;
  border: 1px solid rgba(110, 81, 51, 0.18);
  background: linear-gradient(160deg, rgba(255,248,238,0.45), rgba(255,255,255,0.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 24px 45px rgba(86,62,38,.28);
  backdrop-filter: blur(4px);
  transition: transform .5s ease, box-shadow .5s ease;
  z-index: 2;
}

.module:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 40px 64px rgba(0,0,0,.55);
}

.wrist {
  width: 220px; height: 220px; left: 60px; top: 86px;
  border-radius: 120px; display: grid; place-items: center;
}

.wrist::before {
  content: "";
  width: 120px; height: 120px; border-radius: 999px;
  border: 2px solid rgba(244,177,112,0.75);
  box-shadow: 0 0 0 10px rgba(244,177,112,0.12), 0 0 50px rgba(244,177,112,0.22), inset 0 0 24px rgba(244,177,112,0.28);
}

.foot {
  width: 330px; height: 170px; right: 36px; bottom: 82px;
  border-radius: 36px; transform: rotate(-10deg);
  display: flex; align-items: center; justify-content: center; gap: 12px; padding: 0 24px;
}

.foot span {
  width: 56px; height: 9px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(244,177,112,0.35), rgba(244,177,112,0.95), rgba(244,177,112,0.35));
  animation: pulseBand 2.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * .2s);
}

@keyframes pulseBand {
  0%, 100% { transform: scaleX(.75); opacity: .45; }
  50% { transform: scaleX(1.08); opacity: 1; }
}

.stage-label {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(95, 70, 44, 0.2);
  background: rgba(250,241,230,0.72);
  color: #4f4032;
  backdrop-filter: blur(8px);
  z-index: 3;
}

.label-wrist { left: 44px; top: 40px; }
.label-foot { right: 48px; bottom: 34px; }

.card,
.feature-card,
.checkout-card,
.checkout-summary,
.policy-card {
  background: linear-gradient(180deg, rgba(255,249,240,0.7), rgba(243,230,213,0.46));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-1);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
  /* equal height within grid rows */
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.card:hover,
.feature-card:hover,
.policy-card:hover {
  transform: translateY(-3px);
  border-color: rgba(138, 99, 63, 0.45);
  background: linear-gradient(180deg, rgba(255,252,247,0.84), rgba(233,214,192,0.58));
}

.list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.6;
}

.list li::before {
  position: absolute;
  left: 0;
  top: 10px;
}

.feature-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 16px;
}

.feature-card { min-height: 210px; position: relative; overflow: hidden; }

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% -20%;
  height: 90px;
  background: radial-gradient(circle at 50% 0%, rgba(244,177,112,0.2), transparent 70%);
  pointer-events: none;
}

.feature-card p + p { margin-top: 10px; color: #584a3d; font-size: 15px; }

.logic-pipeline { background: rgba(245,231,214,0.7); border-radius: 20px; padding: 20px; display: grid; gap: 12px; border: 1px solid var(--line); }

.step-node {
  padding: 16px 16px 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(95, 70, 44, 0.16);
  background: linear-gradient(180deg, rgba(255,253,249,0.72), rgba(244,230,212,0.56));
}

.step-node strong { display: block; margin-bottom: 6px; font-size: 15px; color: #463729; }
.step-node small { display: block; color: var(--text-soft); font-size: 13px; line-height: 1.5; }

.timeline {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 14px;
}

.timeline .card { min-height: 190px; }
.timeline .n { font-size: 12px; color: var(--warm); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; display: inline-block; }

.phone {
  height: 560px;
  border-radius: 40px;
  border: 1px solid rgba(95, 70, 44, 0.2);
  background: #d9c2a5;
  box-shadow: var(--shadow-2);
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  border-radius: 999px;
  background: #4e3c2b;
  border: 1px solid rgba(255,255,255,0.2);
  z-index: 3;
}

.phone-screen {
  height: 100%;
  border-radius: 28px;
  background:
    radial-gradient(200px 120px at 70% 8%, rgba(167,119,67,0.24), transparent 70%),
    linear-gradient(180deg, #f4e8d8 0%, #e8d6bf 100%);
  border: 1px solid rgba(95, 70, 44, 0.14);
  padding: 34px 18px 18px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 14px;
}

.app-title { font-size: 16px; color: #453628; font-weight: 560; }
.app-sub { font-size: 13px; color: var(--text-dim); }

.metric {
  background: rgba(255,250,243,0.64);
  border: 1px solid rgba(95, 70, 44, 0.14);
  border-radius: 16px;
  padding: 14px;
}
.metric .k { font-size: 12px; color: var(--text-dim); }
.metric .v { font-size: 28px; margin-top: 4px; color: #584536; letter-spacing: -0.02em; }

.chart {
  height: 94px;
  border-radius: 12px;
  margin-top: 10px;
  background:
    linear-gradient(180deg, rgba(244,177,112,0.22), rgba(244,177,112,0.02)),
    repeating-linear-gradient(to right, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 42px),
    repeating-linear-gradient(to top, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 22px);
  position: relative;
  overflow: hidden;
}

.chart::after {
  content: "";
  position: absolute;
  inset: 18px 10px auto 10px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(255,215,168,0.88);
  border-top: none;
  border-left: none;
  transform: skewX(-16deg) scaleX(1.02);
  opacity: .9;
}

.safety-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(159,211,190,0.35);
  background: rgba(159,211,190,0.08);
  color: #376f5b;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  margin-bottom: 8px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cta-block {
  margin-top: 24px;
  border-radius: 26px;
  border: 1px solid rgba(95, 70, 44, 0.2);
  background:
    radial-gradient(320px 140px at 10% 10%, rgba(167,119,67,0.22), transparent 70%),
    linear-gradient(180deg, #f2e4d1, #e5d2bb);
  padding: 30px;
  box-shadow: var(--shadow-2);
}

.cta-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.checkout-wrap {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: stretch;
}

.checkout-card,
.checkout-summary { border-radius: 24px; }

.checkout-card { position: relative; overflow: hidden; }

.checkout-card::after {
  content: "";
  position: absolute;
  inset: auto -25% -70px -25%;
  height: 120px;
  background: radial-gradient(circle at 50% 0%, rgba(167,119,67,0.18), transparent 68%);
  pointer-events: none;
}

.early-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(95, 70, 44, 0.18);
  background: rgba(255,247,237,0.72);
  color: #5a4430;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

.early-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--warm);
  box-shadow: 0 0 10px rgba(167,119,67,0.38);
}

.checkout-product { margin-top: 16px; }
.checkout-label { display: inline-block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; }
.checkout-product h3 { font-size: clamp(24px, 3vw, 34px); color: #3e3126; }
.checkout-includes { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(95, 70, 44, 0.14); }

.checkout-summary { display: grid; align-content: start; gap: 14px; }
.summary-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; border-bottom: 1px solid rgba(95, 70, 44, 0.12); padding-bottom: 12px; }
.summary-row span { color: var(--text-dim); font-size: 14px; }
.summary-row strong { color: #3b2f24; font-size: clamp(18px, 2.3vw, 28px); letter-spacing: -0.01em; text-align: right; }

.checkout-cta {
  margin-top: 6px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(131, 92, 55, 0.45);
  isolation: isolate;
}

.checkout-cta::after,
.waitlist-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.34) 46%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .6s ease;
  z-index: -1;
}

.checkout-cta:hover,
.waitlist-submit:hover {
  transform: translateY(-2px) scale(1.01);
}

.checkout-cta:hover::after,
.waitlist-submit:hover::after { transform: translateX(120%); }

.checkout-note { font-size: 13px; color: var(--text-dim); margin-top: -2px; }

.trust-row {
  margin-top: 4px;
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 10px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(95, 70, 44, 0.16);
  background: rgba(255,250,243,0.76);
  color: #59493a;
  font-size: 13px;
  line-height: 1.35;
}

.trust-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--warm);
  box-shadow: 0 0 8px rgba(167,119,67,0.32);
  flex-shrink: 0;
}

.waitlist-wrap { margin-top: 18px; }

.waitlist-panel {
  border: 1px solid rgba(255, 228, 198, 0.18);
  border-radius: 28px;
  padding: 34px;
  background:
    radial-gradient(480px 280px at 78% 18%, rgba(186, 130, 76, 0.28), transparent 70%),
    radial-gradient(420px 240px at 10% 92%, rgba(186, 130, 76, 0.16), transparent 72%),
    linear-gradient(165deg, #1b140f, #0f0b09 68%);
  box-shadow: 0 28px 72px rgba(43, 25, 10, 0.42), inset 0 1px 0 rgba(255, 232, 206, 0.16);
  color: #f8efe2;
  position: relative;
  overflow: hidden;
}

.waitlist-panel::after {
  content: "";
  position: absolute;
  inset: auto -15% -32% -15%;
  height: 55%;
  background: radial-gradient(ellipse at 50% 0%, rgba(186, 130, 76, 0.22), transparent 72%);
  pointer-events: none;
}

.waitlist-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 22px; align-items: start; }
.waitlist-copy h2, .waitlist-copy p, .waitlist-copy .eyebrow { color: #f2e4d2; }
.waitlist-copy p { max-width: 660px; color: #e5cfb5; }
.waitlist-copy .eyebrow::before { background: #d9a978; }

.waitlist-form {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 223, 191, 0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(8px);
  display: grid;
  gap: 12px;
}

.waitlist-field { display: grid; gap: 7px; }
.waitlist-field label { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #e7d0b5; }

.waitlist-input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 223, 191, 0.22);
  background: rgba(15, 10, 8, 0.54);
  color: #f9efdf;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease, background .25s ease;
}

.waitlist-input::placeholder { color: rgba(230, 204, 172, 0.6); }

.waitlist-input:hover {
  border-color: rgba(232, 182, 124, 0.46);
  background: rgba(19, 13, 10, 0.66);
  transform: translateY(-1px);
}

.waitlist-input:focus {
  outline: none;
  border-color: rgba(232, 182, 124, 0.78);
  box-shadow: 0 0 0 4px rgba(186, 130, 76, 0.2), 0 10px 24px rgba(33, 18, 8, 0.45);
  background: rgba(20, 13, 10, 0.78);
}

textarea.waitlist-input { min-height: 120px; resize: vertical; }

.waitlist-submit {
  margin-top: 4px;
  width: fit-content;
  min-width: 150px;
  border: 1px solid rgba(217, 169, 120, 0.55);
  background: linear-gradient(180deg, #c89259, #9e6d3f);
  color: #fff8ef;
  box-shadow: 0 14px 34px rgba(95, 56, 22, 0.42);
  position: relative;
  overflow: hidden;
}

.waitlist-submit:hover { box-shadow: 0 20px 44px rgba(95, 56, 22, 0.5); }

.waitlist-success {
  margin-top: 8px;
  color: #f0dfcb;
  font-size: 14px;
  border: 1px solid rgba(217, 169, 120, 0.4);
  background: rgba(23, 15, 10, 0.58);
  border-radius: 12px;
  padding: 10px 12px;
}

.contact-section {
  margin-top: 18px;
}

.contact-cards {
  margin-top: 20px;
}

.contact-card {
  border-radius: 20px;
}

.contact-card p {
  margin-top: 10px;
}

.contact-meta {
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
}

.footer-business-note {
  margin-top: 12px;
  max-width: 680px;
  color: #5b4c3d;
}

.footer-contact {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: #4b3a2b;
  border: 1px solid rgba(95, 70, 44, 0.22);
  background: rgba(255, 250, 241, 0.52);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-link span {
  color: #6f5b47;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(138, 99, 63, 0.5);
  background: rgba(255, 249, 238, 0.9);
  box-shadow: 0 10px 22px rgba(113, 77, 43, 0.16);
}

.faq-wrap { margin-top: 22px; display: grid; gap: 10px; }

details {
  border: 1px solid rgba(95, 70, 44, 0.16);
  border-radius: 14px;
  background: rgba(255,250,243,0.62);
  padding: 14px 16px;
  transition: border-color .3s ease, background .3s ease;
}

details:hover,
details[open] { border-color: rgba(138, 99, 63, 0.48); background: rgba(255,250,243,0.88); }

summary {
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  color: #4b3b2d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--warm); font-size: 22px; line-height: 1; transform: translateY(-1px); }
details[open] summary::after { content: "−"; }

details p { margin-top: 10px; font-size: 15px; color: var(--text-soft); }

footer {
  padding: 46px 0 56px;
  border-top: 1px solid var(--line);
  background: radial-gradient(520px 220px at 82% -40%, rgba(167,119,67,0.22), transparent 70%), #d8c1a5;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-content: flex-start;
  justify-content: flex-end;
}

.footer-nav a { font-size: 14px; color: #584838; opacity: .85; }
.footer-nav a:hover { opacity: 1; }

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.policy-card h3 { margin-bottom: 8px; }

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.99);
  transition: opacity .8s cubic-bezier(.2,.7,0,1), transform .8s cubic-bezier(.2,.7,0,1);
  will-change: opacity, transform;
}

.reveal.show { opacity: 1; transform: translateY(0) scale(1); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

/* Fallback: if JS didn't run or IntersectionObserver failed, ensure hero text remains visible */
.hero .reveal {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 1080px) {
  .hero-v2-grid,
  .hero-grid,
  .grid-2,
  .logic-grid,
  .app-preview,
  .footer-grid,
  .waitlist-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .timeline { grid-template-columns: repeat(2, minmax(180px, 1fr)); }
  .product-stage { height: 500px; }
  .hero-v2-grid { width: min(650px, 62vw); }
}

@media (max-width: 760px) {
  :root { --nav-h: 66px; }
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 74px 0; }
  .nav-links { display: none; }
  .hero { padding-top: 44px; }
  .product-stage { height: 420px; }
  .hero-v2 {
    min-height: auto;
    padding-bottom: 28px;
    background: linear-gradient(180deg, rgba(233,219,202,0.92), rgba(225,208,186,0.68));
  }
  .hero-v2-grid {
    width: 100%;
    max-width: 100%;
  }
  .hero-copy-v2 h1 { font-size: clamp(34px, 10vw, 48px); }
  .hero-feature-tags { gap: 8px; }
  .hero-feature-tags span { font-size: 11px; padding: 8px 12px; }
  .hero-media-bg { inset: 0; }
  .hero-flow-inline {
    display: flex;
    flex-wrap: wrap;
    border-radius: 16px;
    gap: 6px;
    margin-top: 14px;
  }
  .hero-flow-inline i { margin: 0 2px; }

  .wrist { width: 170px; height: 170px; left: 22px; top: 80px; }
  .wrist::before { width: 92px; height: 92px; }
  .foot { width: 240px; height: 130px; right: 12px; bottom: 74px; }

  .hero-points,
  .feature-grid,
  .safety-grid,
  .timeline,
  .checkout-wrap,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .checkout-card,
  .checkout-summary,
  .waitlist-panel { padding: 20px; }

  .waitlist-form { padding: 14px; }

  .checkout-cta,
  .waitlist-submit { width: 100%; }

  .phone { height: 520px; }
  .cta-block { padding: 24px; }

  .footer-contact,
  .contact-link {
    width: 100%;
  }

  .contact-link {
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
