:root {
  --navy: #1b3a63;
  --navy-dark: #12294a;
  --blue: #4a90d2;
  --orange: #e8823f;
  --green: #34a373;
  --red: #e0645c;
  --ink: #1f2937;
  --muted: #5b6b7f;
  --line: #e3e8ef;
  --bg: #f6f8fb;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 30px -12px rgba(18, 41, 74, 0.18);
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px -6px rgba(232,130,63,0.55); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -6px rgba(232,130,63,0.6); }
.btn-ghost { background: transparent; color: var(--navy-dark); border-color: var(--navy-dark); }
.btn-ghost:hover { background: var(--navy-dark); color: #fff; }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
}

/* Header */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-dark);
  text-decoration: none;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-text { line-height: 1.15; }
.brand-text strong { display: block; font-size: 16px; font-weight: 700; color: var(--navy-dark); }
.brand-text span { display: block; font-size: 11.5px; color: var(--muted); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a { color: var(--ink); text-decoration: none; }
.nav-links a:hover { color: var(--orange); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

/* Hero */
.hero {
  background: linear-gradient(180deg, #eef4fb 0%, #f6f8fb 55%, var(--bg) 100%);
  color: var(--ink);
  padding: 56px 0 0;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: center;
  align-items: center;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  margin: 18px 0 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy-dark);
}
.hero p.lede {
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--muted);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 30px 0 8px;
  flex-wrap: wrap;
}
.hero-price-note {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 40px;
}
.hero-shot {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  max-width: 1040px;
  margin: 0 auto;
}
.hero-shot img { width: 100%; }
.hero > .wrap:last-child { padding-bottom: 60px; }

/* Sections */
section { padding: 84px 0; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin: 10px 0 12px;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.01em;
}
.section-head p { color: var(--muted); font-size: 16.5px; }

/* Value trio */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trio .card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
}
.trio .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.trio .icon svg { width: 22px; height: 22px; }
.trio .card h3 { font-size: 17.5px; margin: 0 0 8px; color: var(--navy-dark); }
.trio .card p { margin: 0; color: var(--muted); font-size: 15px; }

/* Feature grid */
.features-bg { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}
.feature {
  display: flex;
  gap: 16px;
}
.feature .num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #eaf1fb;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.feature h3 { margin: 2px 0 6px; font-size: 16.5px; color: var(--navy-dark); }
.feature p { margin: 0; color: var(--muted); font-size: 14.8px; }

/* Product tour */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tour-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tour-shot {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eef2f7;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10px;
}
.tour-shot img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: top center;
  border-radius: 6px;
  box-shadow: 0 2px 10px -4px rgba(18,41,74,0.25);
  border: 1px solid var(--line);
}
.tour-cap { padding: 18px 20px; }
.tour-cap h3 { margin: 0 0 6px; font-size: 16px; color: var(--navy-dark); }
.tour-cap p { margin: 0; color: var(--muted); font-size: 14.3px; }

/* About / founder */
.about-bg { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.about-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 20px;
}
.about-card p.bio {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 auto 28px;
  max-width: 700px;
}
.about-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-dark);
}
.stat-pill strong { color: var(--orange); font-size: 16px; }

/* Problem callout */
.problem {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.problem h2 { font-size: clamp(24px, 3vw, 32px); color: var(--navy-dark); font-weight: 800; line-height: 1.25; margin: 12px 0 16px;}
.problem p { color: var(--muted); font-size: 16.5px; }
.problem-card {
  background: var(--navy-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
}
.problem-card ul { margin: 0; padding: 0; list-style: none; }
.problem-card li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 15px;
  color: #dde5f0;
}
.problem-card li:last-child { border-bottom: none; }
.problem-card li svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; color: var(--green); }

/* Pricing */
.pricing-bg { background: var(--bg); }
.price-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  text-align: center;
}
.price-card .tag {
  display: inline-block;
  background: #eaf6ef;
  color: var(--green);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.price-card .amount { font-size: 56px; font-weight: 800; color: var(--navy-dark); }
.price-card .amount span { font-size: 17px; font-weight: 600; color: var(--muted); }
.price-card .sub { color: var(--muted); font-size: 14.5px; margin: 4px 0 24px; }
.price-card p.desc { color: var(--muted); font-size: 15.5px; margin-bottom: 26px; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, #eaf1fb, #fdeee3);
  color: var(--ink);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band h2 { font-size: clamp(24px, 3.4vw, 34px); margin: 0 0 14px; font-weight: 800; color: var(--navy-dark); }
.cta-band p { color: var(--muted); margin: 0 auto 28px; max-width: 520px; font-size: 16.5px; }

/* Footer */
footer.site {
  background: var(--navy-dark);
  color: #b9c6da;
  padding: 48px 0 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand { margin-bottom: 10px; }
.footer-brand p { max-width: 320px; color: #9fb2ca; }
footer.site h4 { color: #fff; font-size: 13.5px; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 14px; }
footer.site ul { list-style: none; margin: 0; padding: 0; }
footer.site li { margin-bottom: 10px; }
footer.site a { color: #b9c6da; text-decoration: none; }
footer.site a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; flex-wrap: wrap; gap: 10px;
  color: #8ea0b8; font-size: 13px;
}

@media (max-width: 900px) {
  .trio, .feature-grid { grid-template-columns: 1fr 1fr; }
  .problem { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .trio, .feature-grid, .tour-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .hero { padding-top: 44px; }
}
