*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0E0B;
  --surface: #111714;
  --surface2: #161E18;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --green: #2D6A4F;
  --green-bright: #52B788;
  --green-glow: rgba(82,183,136,0.12);
  --text: #F5F4F0;
  --text-2: rgba(245,244,240,0.55);
  --text-3: rgba(245,244,240,0.28);
  --gold: #D4AF37;
}

.accent-green {
  color: var(--green-bright);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 900px) {
  html,
  body {
    overscroll-behavior-x: none;
  }
  body {
    touch-action: pan-y;
  }
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px 20px;
  background: rgba(10,14,11,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: padding 0.3s ease;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--text);
}
.nav-logo span { color: var(--green-bright); }

.nav-center {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2.2vw, 28px);
}

.nav-center a {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-center a:hover { color: var(--green-bright); }

.nav-end {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.nav-store-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border2);
  color: var(--text-2);
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-store-btn:hover {
  color: var(--text);
  border-color: rgba(82,183,136,0.35);
  background: rgba(82,183,136,0.06);
}

.nav-cta {
  background: var(--green-bright);
  color: #0A0E0B;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── HERO ── */
.hero#top {
  scroll-margin-top: 88px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px clamp(24px, 4vw, 56px) 80px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-copy {
  text-align: left;
}

.hero-copy h1 {
  text-align: left;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Radial glow background */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center top, rgba(45,106,79,0.25) 0%, rgba(82,183,136,0.08) 40%, transparent 70%);
  pointer-events: none;
}

/* Animated orb */
.hero-orb {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,183,136,0.06) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(1.1); opacity: 0.7; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82,183,136,0.08);
  border: 1px solid rgba(82,183,136,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-bright);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 8px var(--green-bright);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

h1 .off { color: var(--green-bright); }
h1 .tagline {
  display: block;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-2);
  margin-top: 16px;
  font-family: 'DM Sans', sans-serif;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-sub-stack {
  max-width: 36em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-sub-stack p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
}

.hero-sub-stack p + p {
  margin-top: 1.15em;
}

/* ── EMAIL FORM ── */
.waitlist-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.waitlist-form input {
  flex: 1;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 15px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}
.waitlist-form input::placeholder { color: var(--text-3); }
.waitlist-form input:focus { border-color: rgba(82,183,136,0.4); }

.waitlist-form button {
  background: var(--green-bright);
  color: #0A0E0B;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 15px 26px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}
.waitlist-form button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.waitlist-form button:hover { opacity: 0.9; transform: translateY(-1px); }
.waitlist-form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.waitlist-form button:disabled:hover { opacity: 0.65; transform: none; }

.form-note {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 12px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}

/* Success state */
.success-msg {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(82,183,136,0.1);
  border: 1px solid rgba(82,183,136,0.25);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-bright);
  position: relative;
  z-index: 1;
}
.success-msg.show { display: flex; }

.waitlist-error {
  display: none;
  width: 100%;
  max-width: 440px;
  margin-top: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(245, 180, 160, 0.95);
  background: rgba(200, 90, 70, 0.12);
  border: 1px solid rgba(200, 90, 70, 0.28);
  border-radius: 12px;
  position: relative;
  z-index: 1;
}
.waitlist-error.show { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── PHONE MOCKUP ── */
.phone-showcase {
  position: relative;
  z-index: 1;
  margin-top: 0;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.1s;
}









.phone-logo span { color: var(--green-bright); }

/* Mini streak card */






/* Mini stats */





/* Mini XP bar */







/* Mini CTA button */




/* ── STATS STRIP ── */
.stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.strip-stat {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 16px 24px;
  position: relative;
}

.strip-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: var(--border);
}

.strip-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--green-bright);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.strip-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Feature bento (compact capability grid under #features intro) */
section.feature-bento-section {
  padding: 0 24px 64px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 20px 22px;
  scroll-margin-top: 96px;
}

.feature-bento-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.2;
}

.feature-bento-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .feature-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .feature-bento-grid {
    grid-template-columns: 1fr;
  }

  section.feature-bento-section {
    padding-bottom: 48px;
  }
}

/* ── SECTIONS ── */
section {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 520px;
}

/* ── FULL PHONE MOCKUP ── */
.full-phone-wrap {
  position: relative;
  display: inline-block;
}

.full-phone {
  width: 260px;
  background: #0D110E;
  border-radius: 38px;
  border: 2px solid rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.8),
    0 0 0 8px #0A0C0A,
    0 0 0 10px rgba(255,255,255,0.06),
    0 40px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(82,183,136,0.08);
  position: relative;
}

.full-phone::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 28px;
  background: #0A0C0A;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.full-phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px 4px;
  position: relative;
  z-index: 5;
}

.full-phone-time {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #F5F4F0;
  padding-top: 12px;
}

.full-phone-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 12px;
}

.full-phone-content {
  padding: 6px 16px 12px;
  height: 420px;
  overflow: hidden;
}

.full-phone-content.full-phone-content--stats {
  height: 448px;
}

/* Screen sections */
.fp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.fp-wordmark {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #F5F4F0;
}
.fp-wordmark span { color: #52B788; }

.fp-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2D6A4F, #52B788);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #0D110E;
}

.fp-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #F5F4F0;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.fp-card {
  background: #141A16;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
}

.fp-card-green {
  background: linear-gradient(135deg, #0F2018, #162B1F);
  border: 1px solid rgba(82,183,136,0.18);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
}

.fp-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.28);
  margin-bottom: 5px;
}

.fp-big-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #52B788;
  letter-spacing: -0.05em;
  line-height: 1;
}

.fp-bar-track {
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  overflow: hidden;
  margin: 6px 0;
}

.fp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #2D6A4F, #52B788);
  border-radius: 100px;
}

.fp-tag {
  display: inline-block;
  background: #52B788;
  border-radius: 100px;
  padding: 3px 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #0D110E;
  margin-right: 4px;
  margin-bottom: 4px;
}

.fp-tag-outline {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 9px;
  color: rgba(245,244,240,0.4);
  margin-right: 4px;
  margin-bottom: 4px;
}

.fp-xp-pill {
  background: rgba(82,183,136,0.12);
  border: 1px solid rgba(82,183,136,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #52B788;
}

.fp-gold-pill {
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #D4AF37;
}

.fp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.fp-mini-text {
  font-size: 10px;
  color: rgba(245,244,240,0.5);
}

.fp-body-text {
  font-size: 11px;
  color: rgba(245,244,240,0.6);
  line-height: 1.5;
}

.fp-title-text {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #F5F4F0;
  letter-spacing: -0.01em;
}

/* Stats grid */
.fp-stats-row {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.fp-stat {
  flex: 1;
  background: #141A16;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
}

.fp-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #52B788;
  letter-spacing: -0.04em;
  line-height: 1;
}

.fp-stat-label {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.28);
  margin-top: 3px;
}

/* Bottom nav */
.fp-nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 8px 10px 14px;
  background: #111714;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.fp-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}

.fp-nav-label {
  font-size: 8px;
  font-weight: 500;
  color: rgba(245,244,240,0.28);
}

.fp-nav-label.active {
  color: #52B788;
  font-weight: 700;
}

.fp-nav-center {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #52B788;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px #111714, 0 0 12px rgba(82,183,136,0.3);
  margin-bottom: 12px;
}

/* Feature row layout */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-row-reverse {
  direction: ltr;
}
.feature-row-reverse .feature-phone { order: 2; }
.feature-row-reverse .feature-copy { order: 1; }

.feature-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-copy { }

.feature-row-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 14px;
}

.feature-row-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
}

.feature-row-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 24px;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}

.feature-bullet span { font-size: 16px; flex-shrink: 0; }

@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }
  .feature-row-reverse { direction: ltr; }
  .feature-phone { order: -1; }
  .full-phone { width: 220px; }
}


/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav { padding: 16px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .how-section { grid-template-columns: 1fr; gap: 48px; }
  .stats-strip { gap: 0; }
  .strip-stat { min-width: 100px; padding: 12px 16px; }
  .strip-num { font-size: 24px; }
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }
  .footer-logo { justify-self: unset; }
  .footer-links { justify-self: unset; justify-content: center; }
  .footer-copy { justify-self: unset; text-align: center; }
  .waitlist-form { flex-direction: column; }
  .final-form { flex-direction: column; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-copy,
  .hero-copy h1 {
    text-align: center;
  }
  .hero-copy .hero-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-sub-stack {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-copy .waitlist-form,
  .hero-copy .form-note,
  .hero-copy .success-msg,
  .hero-copy .waitlist-error {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .hero { padding: 100px 20px 60px; }
  h1 { font-size: 44px; }
  
}

/* ── FEATURE ROWS ── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-row-reverse { direction: ltr; }

.feature-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-copy { }

.feature-row-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 14px;
}

.feature-row-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
}

.feature-row-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 24px;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}

.feature-bullet span {
  font-size: 16px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }
  .feature-row-reverse { direction: ltr; }
  .feature-phone { order: -1; }
}


/* ── HOW IT WORKS ── */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.how-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--green-glow);
  border: 1px solid rgba(82,183,136,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--green-bright);
  flex-shrink: 0;
}

.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── TIERS ── */
.tiers-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.tier-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.3s ease, transform 0.2s ease;
}
.tier-pill:hover {
  border-color: rgba(82,183,136,0.25);
  transform: translateY(-2px);
}

.tier-pill.legendary {
  background: linear-gradient(135deg, #1A1408, #221A06);
  border-color: rgba(212,175,55,0.3);
}
.tier-pill.legendary:hover { border-color: rgba(212,175,55,0.5); }

.tier-emoji { font-size: 20px; flex-shrink: 0; }

.tier-name {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.tier-xp {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2px;
}
.tier-pill.legendary .tier-xp { color: var(--gold); }

/* ── FINAL CTA ── */
.final-cta {
  text-align: center;
  padding: 100px 24px 120px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(45,106,79,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.final-cta h2 em {
  font-style: normal;
  color: var(--green-bright);
}

.final-cta p {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.final-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-form input {
  flex: 1;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 15px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}
.final-form input::placeholder { color: var(--text-3); }
.final-form input:focus { border-color: rgba(82,183,136,0.4); }

.final-form button {
  background: var(--green-bright);
  color: #0A0E0B;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 15px 26px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.final-form button:hover { opacity: 0.9; transform: translateY(-1px); }
.final-form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.final-form button:disabled:hover { opacity: 0.65; transform: none; }

/* ── FOOTER ── */
footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px 32px;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  text-decoration: none;
  justify-self: start;
}
.footer-logo span { color: var(--green-bright); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  justify-self: center;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--text-2); }

.footer-copy {
  font-size: 12px;
  color: var(--text-3);
  margin: 0;
  text-align: right;
  justify-self: end;
}

.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease,
    border-color 0.2s ease, background 0.2s ease;
}
.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  border-color: rgba(82, 183, 136, 0.35);
  background: rgba(26, 32, 28, 0.95);
}
.scroll-top-btn:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .scroll-top-btn {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav { padding: 16px 24px; }
  .how-section { grid-template-columns: 1fr; gap: 48px; }
  .stats-strip { gap: 0; }
  .strip-stat { min-width: 100px; padding: 12px 16px; }
  .strip-num { font-size: 24px; }
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }
  .footer-logo { justify-self: unset; }
  .footer-links { justify-self: unset; justify-content: center; }
  .footer-copy { justify-self: unset; text-align: center; }
  .waitlist-form { flex-direction: column; }
  .final-form { flex-direction: column; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-copy,
  .hero-copy h1 {
    text-align: center;
  }
  .hero-copy .hero-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-sub-stack {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-copy .waitlist-form,
  .hero-copy .form-note,
  .hero-copy .success-msg,
  .hero-copy .waitlist-error {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .stats-strip { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 20px 60px; }
  h1 { font-size: 44px; }
}

/* ── HOW SECTION (desktop grid) ── */
.how-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SITE NAV (social + store + CTA in .nav-end) ── */
.nav-social {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: var(--text-2);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-social-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.07);
  border-color: var(--border2);
}

.nav-social-link svg {
  flex-shrink: 0;
}

/* ── INNER PAGES ── */
.page-shell {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.page-shell-wide {
  max-width: 960px;
}

.page-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 12px;
}

.page-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-intro {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 32px;
}

.legal-prose h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 12px;
  letter-spacing: -0.02em;
}

.legal-prose h2:first-child { margin-top: 0; }

.legal-prose p,
.legal-prose li {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-prose ul {
  margin: 0 0 16px 1.2em;
}

.legal-prose a {
  color: var(--green-bright);
  text-decoration: none;
}

.legal-prose a:hover { text-decoration: underline; }

/* Forms (feature request / bug) */
.form-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(82,183,136,0.4);
}

.form-field textarea { min-height: 140px; resize: vertical; }

.form-note-bottom {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 16px;
  line-height: 1.5;
}

.btn-submit {
  background: var(--green-bright);
  color: #0A0E0B;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  align-self: flex-start;
}

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

/* Blog index */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.blog-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
  border-color: rgba(82,183,136,0.25);
  transform: translateY(-2px);
}

.blog-card-meta {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}

.blog-card-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}

/* Blog post */
.post-content {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.75;
}

.post-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin: 40px 0 16px;
  letter-spacing: -0.03em;
}

.post-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 10px;
}

.post-content p { margin-bottom: 16px; }

.post-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.post-content ul,
.post-content ol {
  margin: 0 0 16px 1.25em;
}

.post-content li { margin-bottom: 8px; }

.post-content a {
  color: var(--green-bright);
  text-decoration: none;
}

.post-content a:hover { text-decoration: underline; }

.post-summary {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.65;
}

.post-faq {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.post-faq h2 { margin-top: 0; }

.faq-item {
  margin-bottom: 20px;
}

.faq-item strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
  font-size: 16px;
}

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  touch-action: manipulation;
  transition: background 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--border2);
}
.nav-hamburger:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 3px;
}
.nav-hamburger .icon-close { display: none; }

/* ── MOBILE NAV — compact bar with hamburger ── */
@media (max-width: 900px) {
  .site-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    height: 62px;
    padding: 0 20px;
    row-gap: 0;
    grid-template-columns: unset;
  }
  .nav-logo { justify-self: unset; }
  .nav-center { display: none; }
  .nav-end { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── MOBILE MENU OPEN STATE (checkbox #site-nav-toggle + label; no JS required) ── */
body:has(#site-nav-toggle:checked) { overflow: hidden; }

@media (max-width: 900px) {
  /* Open menu must override closed .site-nav { height: 62px } or the bar stays one row tall */
  #site-nav-toggle:checked + .site-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    min-width: 100%;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: minmax(62px, auto) auto 1fr;
    grid-template-areas:
      "logo hamburger"
      "center center"
      "end end";
    align-items: start;
    align-content: start;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: rgba(10,14,11,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: env(safe-area-inset-top, 0) 24px max(48px, env(safe-area-inset-bottom, 0)) 24px;
    z-index: 10000;
    isolation: isolate;
    box-sizing: border-box;
  }

  #site-nav-toggle:checked + .site-nav .nav-logo {
    grid-area: logo;
    align-self: center;
  }

  #site-nav-toggle:checked + .site-nav .nav-hamburger {
    grid-area: hamburger;
    align-self: center;
  }

  #site-nav-toggle:checked + .site-nav .nav-hamburger .icon-hamburger { display: none; }
  #site-nav-toggle:checked + .site-nav .nav-hamburger .icon-close { display: block; }

  #site-nav-toggle:checked + .site-nav .nav-center {
    grid-area: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding-top: 4px;
  }

  #site-nav-toggle:checked + .site-nav .nav-center a {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-2);
    padding: 18px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
    white-space: normal;
  }

  #site-nav-toggle:checked + .site-nav .nav-center a:last-child { border-bottom: none; }
  #site-nav-toggle:checked + .site-nav .nav-center a:hover { color: var(--green-bright); }

  #site-nav-toggle:checked + .site-nav .nav-end {
    grid-area: end;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    padding-top: 24px;
    margin-top: 8px;
    border-top: 1px solid var(--border);
    justify-content: flex-start;
    min-width: 0;
  }

  #site-nav-toggle:checked + .site-nav .nav-social { justify-content: flex-start; }

  #site-nav-toggle:checked + .site-nav .nav-social-link {
    width: 44px;
    height: 44px;
  }

  #site-nav-toggle:checked + .site-nav .nav-store-btn {
    font-size: 15px;
    padding: 14px 20px;
    text-align: center;
    border-radius: 14px;
  }

  #site-nav-toggle:checked + .site-nav .nav-cta {
    font-size: 16px;
    padding: 16px 22px;
    text-align: center;
    border-radius: 14px;
  }
}

/* ── MOBILE CONTENT PADDING FIX (shorter nav on mobile) ── */
@media (max-width: 900px) {
  .hero { padding-top: 90px; }
  .page-shell { padding-top: 90px; }
}
