:root {
  --navy: #081a2d;
  --navy-2: #0d2944;
  --blue: #1f6b9b;
  --blue-light: #eaf4fb;
  --gold: #d8aa48;
  --gold-light: #fff6df;
  --ink: #142033;
  --muted: #5e6b7e;
  --line: #d9e0e7;
  --surface: #f6f8fa;
  --white: #ffffff;
  --green: #26775a;
  --shadow: 0 18px 50px rgba(8, 26, 45, .12);
  --radius: 18px;
}

* { 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(--ink);
  background: var(--white);
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(800px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(217,224,231,.8);
}
.nav { height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 850; letter-spacing: -.02em; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  position: relative; box-shadow: 0 8px 18px rgba(8,26,45,.2);
}
.brand-mark:before { content: ""; position: absolute; width: 18px; height: 3px; background: var(--gold); left: 9px; top: 12px; border-radius: 2px; transform: rotate(-16deg); }
.brand-mark:after { content: ""; position: absolute; width: 13px; height: 3px; background: white; left: 11px; top: 21px; border-radius: 2px; transform: rotate(16deg); }
.brand small { display: block; font-size: 10px; color: var(--muted); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.brand-text { line-height: 1.05; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 650; font-size: 14px; }
.nav-links a:hover { color: var(--navy); }
.mobile-toggle { display:none; border:0; background:none; font-size: 24px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 12px; padding: 13px 19px; font-weight: 800; text-decoration: none; border: 1px solid transparent; transition: .2s ease; cursor: pointer; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: white; box-shadow: 0 12px 25px rgba(8,26,45,.18); }
.btn-primary:hover { background: var(--navy-2); }
.btn-secondary { background: white; color: var(--navy); border-color: var(--line); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-sm { padding: 10px 15px; font-size: 14px; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(216,170,72,.22), transparent 30%),
    radial-gradient(circle at 10% 35%, rgba(31,107,155,.15), transparent 30%),
    linear-gradient(180deg, #fff, #f8fbfd);
  padding: 82px 0 66px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 58px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-light); color: var(--blue); padding: 7px 11px; border-radius: 999px; font-size: 12px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.eyebrow:before { content:""; width: 7px; height:7px; border-radius:50%; background: var(--gold); }
h1 { font-size: clamp(42px, 6vw, 70px); line-height: .98; letter-spacing: -.055em; margin: 22px 0; color: var(--navy); }
.hero p { font-size: 19px; color: var(--muted); max-width: 630px; }
.hero-actions { display:flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 20px; }
.microcopy { font-size: 13px !important; color: var(--muted); }
.hero-proof { display:flex; flex-wrap:wrap; gap:16px; margin-top:24px; }
.proof-item { font-size: 13px; color: var(--muted); font-weight: 700; }
.proof-item:before { content:"✓"; color: var(--green); margin-right: 6px; font-weight: 900; }

.product-window { background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); overflow:hidden; transform: rotate(1.5deg); }
.window-bar { height: 46px; display:flex; align-items:center; gap:7px; padding: 0 16px; background: var(--navy); }
.window-dot { width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,.45); }
.window-label { margin-left:auto; color:white; font-size:11px; letter-spacing:.08em; text-transform:uppercase; font-weight:800; }
.product-window img { aspect-ratio: 16 / 10; object-fit: cover; object-position: top left; }
.floating-card { position:absolute; background:white; border:1px solid var(--line); border-radius:14px; padding:14px 16px; box-shadow:0 15px 35px rgba(8,26,45,.14); font-weight:750; font-size:13px; }
.hero-visual { position:relative; padding:22px; }
.floating-card.one { left:-10px; bottom:2px; }
.floating-card.two { right:-4px; top:0; }
.floating-card span { display:block; font-size:11px; color:var(--muted); font-weight:600; }

.logo-strip { padding: 22px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:white; }
.logo-strip .container { display:flex; justify-content:center; gap:32px; flex-wrap:wrap; color:var(--muted); font-size:13px; font-weight:750; text-align:center; }

section { padding: 86px 0; }
.section-head { max-width: 720px; margin:0 auto 46px; text-align:center; }
.kicker { color:var(--blue); font-size:12px; letter-spacing:.1em; text-transform:uppercase; font-weight:900; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height:1.05; letter-spacing:-.04em; color:var(--navy); margin:12px 0 16px; }
h3 { color:var(--navy); letter-spacing:-.02em; }
.section-head p { color:var(--muted); font-size:17px; }

.features { background:var(--surface); }
.feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.feature-card { background:white; border:1px solid var(--line); border-radius:var(--radius); padding:25px; box-shadow:0 8px 25px rgba(8,26,45,.04); }
.feature-card.wide { grid-column:span 2; }
.icon { width:42px; height:42px; border-radius:12px; background:var(--blue-light); display:grid; place-items:center; color:var(--blue); font-size:20px; font-weight:900; }
.feature-card h3 { margin:17px 0 8px; font-size:20px; }
.feature-card p { color:var(--muted); margin:0; }

.preview-grid { display:grid; grid-template-columns: 1fr 1fr; gap:34px; align-items:center; }
.preview-copy p { color:var(--muted); font-size:17px; }
.check-list { list-style:none; padding:0; margin:24px 0; }
.check-list li { margin:10px 0; padding-left:28px; position:relative; }
.check-list li:before { content:"✓"; position:absolute; left:0; width:20px; height:20px; border-radius:50%; background:var(--gold-light); color:#836019; text-align:center; line-height:20px; font-weight:900; }
.preview-stack { position:relative; min-height:450px; }
.preview-img { position:absolute; background:white; border:1px solid var(--line); border-radius:16px; padding:10px; box-shadow:var(--shadow); }
.preview-img img { border-radius:10px; }
.preview-img:first-child { top:0; right:0; width:90%; transform:rotate(1.5deg); }
.preview-img:last-child { bottom:0; left:0; width:82%; transform:rotate(-2deg); }

.audience { background:var(--navy); color:white; }
.audience h2, .audience h3 { color:white; }
.audience .section-head p { color:#b8c4d1; }
.audience-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.audience-card { border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.06); border-radius:var(--radius); padding:30px; }
.audience-card p { color:#c3cfda; }
.audience-card .icon { background:rgba(216,170,72,.16); color:var(--gold); }

.pricing { background:linear-gradient(180deg,#fff,#f7fafc); }
.price-card { width:min(650px,100%); margin:0 auto; background:white; border:1px solid var(--line); border-radius:24px; box-shadow:var(--shadow); overflow:hidden; }
.price-top { padding:34px; background:var(--navy); color:white; }
.price-top h3 { color:white; font-size:26px; margin:0 0 7px; }
.price-top p { color:#c4d0dc; margin:0; }
.price-body { padding:34px; }
.price { display:flex; align-items:flex-end; gap:10px; margin-bottom:20px; }
.price strong { font-size:64px; line-height:1; color:var(--navy); letter-spacing:-.06em; }
.price span { color:var(--muted); margin-bottom:9px; }
.price-note { background:var(--gold-light); color:#6e511c; padding:10px 12px; border-radius:10px; font-size:13px; font-weight:750; margin-bottom:24px; }
.bundle-list { columns:2; list-style:none; padding:0; }
.bundle-list li { break-inside:avoid; margin:10px 0; padding-left:24px; position:relative; }
.bundle-list li:before { content:"✓"; position:absolute; left:0; color:var(--green); font-weight:900; }
.price-cta { display:grid; gap:10px; margin-top:24px; }

.faq-list { max-width:820px; margin:0 auto; }
details { border-bottom:1px solid var(--line); padding:18px 0; }
summary { cursor:pointer; font-weight:800; color:var(--navy); list-style:none; padding-right:30px; position:relative; }
summary:after { content:"+"; position:absolute; right:0; top:-2px; font-size:22px; color:var(--blue); }
details[open] summary:after { content:"−"; }
details p { color:var(--muted); }

.lead-magnet { padding:56px 0; background:var(--gold-light); }
.lead-box { display:flex; align-items:center; justify-content:space-between; gap:30px; }
.lead-box h2 { font-size:34px; margin:0 0 8px; }
.lead-box p { margin:0; color:#6e5a32; }

.site-footer { background:#061422; color:white; padding:48px 0 25px; }
.footer-grid { display:grid; grid-template-columns:1.3fr .7fr .7fr; gap:36px; }
.site-footer p, .site-footer a { color:#aebdca; }
.site-footer a { text-decoration:none; display:block; margin:8px 0; }
.site-footer a:hover { color:white; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); margin-top:36px; padding-top:20px; display:flex; justify-content:space-between; gap:20px; font-size:12px; color:#91a2b1; }

.article-hero { padding:70px 0 35px; background:linear-gradient(180deg,#f7fafc,#fff); }
.article-hero h1 { font-size:clamp(38px,5vw,58px); max-width:850px; }
.article-meta { color:var(--muted); font-size:14px; }
.article { padding:40px 0 80px; }
.article h2 { font-size:31px; margin-top:42px; }
.article h3 { margin-top:30px; }
.article p, .article li { font-size:17px; color:#334155; }
.article-callout { background:var(--blue-light); border-left:4px solid var(--blue); border-radius:0 12px 12px 0; padding:20px; margin:28px 0; }

.modal { position:fixed; inset:0; display:none; align-items:center; justify-content:center; padding:20px; background:rgba(8,26,45,.72); z-index:100; }
.modal.open { display:flex; }
.modal-card { width:min(480px,100%); background:white; border-radius:18px; padding:28px; box-shadow:var(--shadow); }
.modal-card h3 { margin-top:0; }
.modal-close { float:right; border:0; background:none; font-size:25px; cursor:pointer; }

.legal { padding:70px 0; }
.legal h1 { font-size:48px; }
.legal h2 { font-size:26px; margin-top:35px; }
.legal p, .legal li { color:#415166; }

@media (max-width: 900px) {
  .hero-grid, .preview-grid, .audience-grid { grid-template-columns:1fr; }
  .hero { padding-top:55px; }
  .hero-visual { margin-top:20px; }
  .feature-grid { grid-template-columns:1fr 1fr; }
  .feature-card.wide { grid-column:span 1; }
  .preview-stack { min-height:520px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > :first-child { grid-column:1/-1; }
}
@media (max-width: 680px) {
  .container, .narrow { width:min(100% - 28px, 1120px); }
  .nav-links { display:none; position:absolute; top:70px; left:0; right:0; background:white; padding:20px; border-bottom:1px solid var(--line); flex-direction:column; align-items:flex-start; }
  .nav-links.open { display:flex; }
  .mobile-toggle { display:block; }
  .nav > .btn { display:none; }
  h1 { font-size:45px; }
  section { padding:64px 0; }
  .feature-grid { grid-template-columns:1fr; }
  .preview-stack { min-height:390px; }
  .bundle-list { columns:1; }
  .lead-box { flex-direction:column; align-items:flex-start; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-grid > :first-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
  .price-body, .price-top { padding:25px; }
  .floating-card { display:none; }
}
