:root {
  --navy: #0d2636;
  --cream: #f7ead2;
  --cream-2: #fff8eb;
  --red: #c23a28;
  --green: #38c172;
  --text: #1d2b34;
  --muted: #60717d;
  --line: rgba(13, 38, 54, 0.14);
  --shadow: 0 22px 70px rgba(13, 38, 54, 0.16);
  --soft-shadow: 0 14px 40px rgba(13, 38, 54, 0.07);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fffdf8;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--cream);
  font-weight: 950;
  box-shadow: 0 10px 26px rgba(13, 38, 54, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover { color: var(--navy); }

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: 9px;
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 850;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--red); color: white; box-shadow: 0 14px 30px rgba(194, 58, 40, 0.26); }
.button-secondary { background: white; color: var(--navy); border-color: var(--line); box-shadow: 0 12px 26px rgba(13, 38, 54, 0.08); }
.button-dark { background: var(--navy); color: var(--cream); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(194, 58, 40, 0.18), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(247, 234, 210, 0.34), transparent 34%),
    linear-gradient(135deg, var(--navy) 0%, #12374d 100%);
  color: white;
  padding: 92px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}

.eyebrow {
  background: rgba(247, 234, 210, 0.12);
  border: 1px solid rgba(247, 234, 210, 0.22);
  color: var(--cream);
  padding: 8px 12px;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.light { color: var(--cream); }

.dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(68, 210, 124, 0.16);
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h3 { color: var(--navy); }

.hero-lede {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  max-width: 680px;
}

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

.hero-note {
  margin: 18px 0 0;
  color: rgba(247, 234, 210, 0.78);
  font-size: 13px;
}

.screenshot-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.screenshot-frame {
  background: #f8fbfc;
  border-radius: 22px;
  overflow: hidden;
  color: var(--text);
}

.screenshot-browser-bar {
  height: 46px;
  background: white;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8dee3;
}

.mock-url {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.dashboard-screenshot {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: top center;
  background: #eef3f5;
}

.screenshot-caption {
  margin-top: 12px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.screenshot-caption strong { color: var(--cream); }

.section { padding: 78px 0; }

.section-muted {
  background: #f8fafb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--soft-shadow);
}

.stat b {
  display: block;
  color: var(--red);
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.privacy-note {
  margin-top: 18px;
  background: var(--cream-2);
  border: 1px solid rgba(194, 58, 40, 0.16);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--muted);
}

.privacy-note strong { color: var(--navy); }

.module-grid,
.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.module,
.opportunity {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 210px;
  box-shadow: var(--soft-shadow);
}

.opportunity { min-height: 180px; }

.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--cream-2);
  display: grid;
  place-items: center;
  color: var(--red);
  font-weight: 950;
  margin-bottom: 14px;
}

.module h3,
.opportunity h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 20px;
  letter-spacing: -0.025em;
}

.module p,
.opportunity p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
}

.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.panel-dark {
  background: var(--navy);
  color: white;
}

.panel-dark h2,
.panel-dark h3 { color: white; }

.panel p {
  color: var(--muted);
  margin: 0 0 18px;
}

.panel-dark p,
.panel-dark li {
  color: rgba(255, 255, 255, 0.78);
}

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

.check-list li {
  color: var(--muted);
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 950;
}

.panel-dark .check-list li::before { color: var(--cream); }

.tech-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tech {
  background: #f4f6f7;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 850;
  font-size: 13px;
}

.acquisition {
  background: linear-gradient(135deg, #fff7e7, #ffffff);
}

.final-cta-section { padding-top: 54px; }

.cta-box {
  background: var(--navy);
  color: white;
  border-radius: 34px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-box h2 { color: white; }

.cta-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
  font-size: 17px;
}

footer {
  padding: 34px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

footer a {
  color: var(--navy);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .module-grid,
  .opportunity-grid {
    grid-template-columns: 1fr;
  }

  .mobile-menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
  }

  .nav-cta {
    margin-top: 8px;
  }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1120px); }
  .hero { padding: 58px 0; }
  .section { padding: 56px 0; }
  .stats { grid-template-columns: 1fr; }
  .dashboard-screenshot { min-height: 260px; }
  .cta-box { padding: 28px; }

  .hero-actions .button,
  .cta-box .button {
    width: 100%;
  }
}