:root {
  --navy: #071827;
  --blue: #0d2b45;
  --gold: #d7a64a;
  --cream: #f7f2e8;
  --white: #ffffff;
  --muted: #6b7280;
  --line: rgba(255,255,255,0.15);
  --shadow: 0 25px 70px rgba(0,0,0,0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--cream);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7,24,39,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(215,166,74,0.55);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 1.7rem;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 24px 72px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}
h3 { font-size: 1.2rem; margin-bottom: 10px; }
.hero-text, .section-heading p, .split p, .disclaimer-section p, .contact p {
  color: #334155;
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 14px; margin: 32px 0 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}
.primary { background: var(--navy); color: white; }
.secondary { border-color: rgba(7,24,39,0.2); color: var(--navy); background: white; }
.micro-copy { color: var(--muted); font-size: 0.9rem; }

.hero-card {
  background: linear-gradient(145deg, #071827, #12304b);
  border-radius: 28px;
  padding: 22px;
  color: white;
  box-shadow: var(--shadow);
  min-height: 430px;
}
.card-top { display: flex; gap: 8px; margin-bottom: 42px; }
.card-top span { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.35); }
.dashboard-preview {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 28px;
}
.dash-label { color: var(--gold); font-weight: 700; font-size: 0.85rem; }
.idea-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.idea-row:last-child { border-bottom: none; }
.idea-row strong { color: var(--gold); }

.trust-strip {
  background: var(--navy);
  color: white;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 0.92rem;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 24px;
}
.section.alt {
  max-width: none;
  background: white;
}
.section.alt .split { max-width: 1180px; margin: 0 auto; }
.section-heading { max-width: 720px; margin-bottom: 34px; }
.grid { display: grid; gap: 22px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.feature-card, .quote-card, .checklist {
  background: white;
  border: 1px solid rgba(7,24,39,0.09);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 35px rgba(7,24,39,0.06);
}
.feature-card p { color: #475569; line-height: 1.65; }
.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.checklist p {
  padding: 14px 0;
  margin: 0;
  border-bottom: 1px solid rgba(7,24,39,0.08);
  font-weight: 700;
}
.checklist p:last-child { border-bottom: none; }
.quote-card {
  background: var(--navy);
  color: white;
  font-size: 1.5rem;
  line-height: 1.5;
}
.disclaimer-section {
  background: var(--navy);
  color: white;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
}
.disclaimer-section p { color: rgba(255,255,255,0.78); max-width: 940px; }

.contact {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 24px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.signup-form {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}
input {
  width: 100%;
  border: 1px solid rgba(7,24,39,0.16);
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
}
.footer {
  background: #05111d;
  color: rgba(255,255,255,0.75);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px max(24px, calc((100vw - 1180px) / 2 + 24px));
}
.footer p { margin: 0; }

@media (max-width: 860px) {
  .menu-btn { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy);
    padding: 20px;
    border-radius: 18px;
  }
  .nav-links.open { display: flex; }
  .hero, .split, .contact { grid-template-columns: 1fr; }
  .grid.three { grid-template-columns: 1fr; }
  h1 { letter-spacing: -0.06em; }
  .hero { padding-top: 58px; }
}

/* ===== Proof / credibility block ===== */
.eyebrow.gold { color: var(--gold); }

.proof {
  background: var(--navy);
  color: var(--white);
  padding: 88px 24px;
}
.proof-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.proof-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  letter-spacing: -0.03em;
  margin: 10px 0 18px;
  line-height: 1.1;
}
.proof-lead {
  color: rgba(247,242,232,0.82);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto 40px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 auto 36px;
  max-width: 820px;
}
.stat {
  border: 1px solid rgba(215,166,74,0.35);
  border-radius: 16px;
  padding: 28px 18px;
  background: linear-gradient(180deg, rgba(215,166,74,0.08), rgba(215,166,74,0));
}
.stat strong {
  display: block;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat span {
  color: rgba(247,242,232,0.72);
  font-size: 0.9rem;
  line-height: 1.4;
}
.proof-teach {
  color: rgba(247,242,232,0.92);
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto 28px;
  font-weight: 500;
}
.proof-fine {
  color: rgba(247,242,232,0.5);
  font-size: 0.8rem;
  line-height: 1.55;
  max-width: 740px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .stat-grid { grid-template-columns: 1fr; }
}

/* ===== Contact details ===== */
.contact-details {
  margin-top: 22px;
  display: grid;
  gap: 8px;
}
.contact-details p {
  margin: 0;
  font-size: 1rem;
  color: var(--navy);
}
.contact-details a {
  color: var(--blue);
  font-weight: 600;
  border-bottom: 1px solid rgba(13,43,69,0.25);
}
.contact-details a:hover { border-bottom-color: var(--blue); }

/* ===== Top contact bar ===== */
.topbar {
  background: var(--blue);
  color: var(--cream);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 9px 16px;
  font-size: 0.85rem;
}
.topbar a {
  color: var(--cream);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.topbar a:hover { color: var(--gold); }
@media (max-width: 520px) {
  .topbar { font-size: 0.78rem; gap: 6px 16px; padding: 8px 12px; }
}

/* ===== Hero stat card (319%) ===== */
.hero-card {
  background: linear-gradient(160deg, var(--navy), var(--blue));
  border: 1px solid rgba(215,166,74,0.4);
  border-radius: 22px;
  padding: 40px 34px;
  color: var(--cream);
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.hero-stat-label {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(247,242,232,0.75);
  text-transform: uppercase;
}
.hero-stat-number {
  font-size: clamp(3.4rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.hero-stat-sub {
  margin: 0;
  font-size: 1rem;
  color: rgba(247,242,232,0.85);
}
.hero-stat-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.hero-stat-meta span {
  font-size: 0.75rem;
  border: 1px solid rgba(247,242,232,0.25);
  border-radius: 999px;
  padding: 5px 12px;
  color: rgba(247,242,232,0.8);
}
