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

:root {
  --ink:        #0C1F3A;
  --blue:       #185FA5;
  --blue-light: #85B7EB;
  --blue-deep:  #0C447C;
  --coral:      #D85A30;
  --coral-soft: #F0997B;
  --paper:      #F5F2ED;
  --paper-dark: #EAE5DC;
  --white:      #FFFFFF;
  --muted:      #6B6560;
  --rule:       rgba(12,31,58,0.12);
  --teal:       #0F6E56;
  --serif: 'EB Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  height: 56px;
}
.nav-wordmark { height: 22px; width: auto; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-right a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-right a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 13px !important;
  font-weight: 500;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--blue-deep) !important; color: var(--white) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  color: var(--ink);
  height: 56px;
  align-items: center;
}

/* ── LAYOUT ── */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── HERO ── */
.hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--rule);
}
.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  max-width: 680px;
}
.hero h1 em { color: var(--coral); font-style: italic; }
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--coral);
  color: var(--white);
  border: none;
  padding: 11px 20px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s;
  min-height: 44px;
}
.btn-primary:hover { background: #c04e27; }
.hero-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
}
.hero-note strong { color: var(--teal); font-weight: 500; }
.hero-success {
  display: none;
  color: var(--teal);
  font-size: 14px;
  margin-top: 12px;
  font-weight: 400;
}

/* ── PRODUCT PREVIEW ── */
.product-preview-section {
  padding: 0 40px 72px;
  border-bottom: 1px solid var(--rule);
}
.product-preview-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.product-preview-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(12,31,58,0.06), 0 8px 32px rgba(12,31,58,0.10), 0 24px 64px rgba(12,31,58,0.08);
  border: 1px solid var(--rule);
}
.product-preview-chrome {
  background: var(--paper-dark);
  padding: 9px 14px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.product-preview-chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(12,31,58,0.18);
}
.product-preview-img {
  width: 100%;
  display: block;
}

.reassurance {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  padding: 20px 0 0;
}

/* ── SECTIONS ── */
section { padding: 80px 0; border-bottom: 1px solid var(--rule); }
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.section-h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-h2 em { color: var(--coral); font-style: italic; }
.section-intro {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── PROBLEM ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 28px 24px;
}
.problem-number {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.problem-text {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.65;
}
.problem-text strong { font-weight: 500; }

/* ── HOW IT WORKS ── */
.steps {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}
.step {
  display: grid;
  grid-template-columns: 48px 1fr 280px;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  align-items: center;
}
.step-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top left;
  border-radius: 6px;
  border: 1px solid var(--rule);
  box-shadow: 0 2px 10px rgba(12,31,58,0.08);
  display: block;
}
.step:last-child { border-bottom: 1px solid var(--rule); }
.step-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--coral);
  padding-top: 2px;
}
.step-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.step-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── CATEGORY BADGES ── */
.cat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.cat-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* ── EARLY ACCESS ── */
.access-block {
  background: var(--ink);
  border-radius: 16px;
  padding: 56px 48px;
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.access-left h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.access-left h2 em { color: var(--coral-soft); font-style: italic; }
.access-left p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 320px;
  font-weight: 300;
}
.access-right { flex-shrink: 0; min-width: 280px; }
.btn-access {
  display: block;
  background: var(--coral);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  text-align: center;
  text-decoration: none;
  min-height: 44px;
  width: 100%;
}
.btn-access:hover { background: #c04e27; }
.access-note {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  letter-spacing: 0.02em;
}
.access-success {
  display: none;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  text-align: center;
  padding: 20px 16px;
  background: rgba(15,110,86,0.25);
  border: 1px solid rgba(15,110,86,0.4);
  border-radius: 8px;
  line-height: 1.6;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}
.about-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--ink); font-weight: 500; }
.about-details {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 28px 24px;
}
.about-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  gap: 12px;
}
.about-detail-row:last-child { border-bottom: none; }
.about-detail-label { color: var(--muted); font-weight: 300; white-space: nowrap; }
.about-detail-value { color: var(--ink); font-weight: 500; text-align: right; }
.about-detail-value.green { color: var(--teal); }

/* ── FOOTER ── */
footer {
  padding: 40px max(40px, calc((100% - 780px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--rule);
  margin-top: 80px;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.footer-wordmark { height: 20px; width: auto; }
.footer-meta {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}
.footer-company {
  margin-top: 2px;
  font-size: 11px;
  color: var(--muted);
  opacity: 0.7;
}
.footer-right {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-right a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.footer-right a:hover { color: var(--ink); }

/* ── LEGAL PAGES ── */
.legal-content {
  padding: 80px 0 120px;
  max-width: 680px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 48px;
  transition: color 0.15s;
}
.legal-back:hover { color: var(--ink); }
.legal-content h1 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.legal-date {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 56px;
}
.legal-content h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin: 48px 0 12px;
  letter-spacing: -0.3px;
}
.legal-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 12px;
}
.legal-content p strong { color: var(--ink); font-weight: 500; }
.legal-content ul {
  margin: 8px 0 16px 20px;
  list-style: disc;
}
.legal-content li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 4px;
  padding-left: 4px;
}
.legal-content a {
  color: var(--blue);
  text-decoration: none;
}
.legal-content a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  nav {
    padding: 0 20px;
    flex-wrap: wrap;
    height: auto;
  }
  .nav-logo { height: 56px; }
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
  .nav-right {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 16px;
    border-top: 1px solid var(--rule);
  }
  nav.open .nav-right { display: flex; }
  .nav-right a {
    padding: 12px 0;
    font-size: 15px;
    width: 100%;
    border-bottom: 1px solid var(--rule);
  }
  .nav-right a:last-child { border-bottom: none; }
  .nav-cta {
    background: none !important;
    color: var(--coral) !important;
    padding: 12px 0;
    border-radius: 0;
    font-size: 15px !important;
    font-weight: 500;
  }
  .container { padding: 0 20px; }
  .product-preview-section { padding: 0 20px 56px; }
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 38px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }
  .btn-primary { width: 100%; justify-content: center; }
  section { padding: 64px 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1fr; }
  .step-img { display: none; }
  .access-block { flex-direction: column; padding: 36px 24px; gap: 32px; }
  .access-right { min-width: unset; width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 20px;
  }
  .footer-right { justify-content: flex-start; gap: 16px; }
  .legal-content { padding: 48px 0 80px; }
  .legal-content h1 { font-size: 34px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 32px; }
  section { padding: 56px 0; }
  .container { padding: 0 16px; }
  nav { padding: 0 16px; }
  footer { padding: 28px 16px; }
}
