:root {
  --ink: #101b33;
  --muted: #64708a;
  --paper: #f7f9fc;
  --white: #ffffff;
  --line: #dbe3ef;
  --blue: #1769e8;
  --blue-dark: #0d3b8e;
  --lime: #d9f36b;
  --coral: #ff8066;
  --shadow: 0 18px 55px rgba(20, 43, 85, .12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(247,249,252,.88); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219,227,239,.8);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { display: block; width: 210px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: .9rem; color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 0; border-radius: 999px; padding: 12px 18px; background: var(--blue); color: white; font-weight: 800; cursor: pointer; box-shadow: 0 8px 18px rgba(23,105,232,.22); }
.button.secondary { background: var(--white); color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.button.dark { background: var(--ink); box-shadow: none; }
.menu-toggle { display: none; border: 1px solid var(--line); background: var(--white); border-radius: 10px; padding: 8px 10px; }
.hero { padding: 92px 0 70px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 62px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: .78rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 3px; background: var(--coral); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.7rem, 6vw, 5.6rem); line-height: .98; letter-spacing: -.075em; margin: 18px 0 24px; max-width: 780px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.02; letter-spacing: -.06em; margin-bottom: 16px; }
h3 { font-size: 1.08rem; line-height: 1.2; letter-spacing: -.02em; }
.lede { font-size: 1.12rem; line-height: 1.7; color: var(--muted); max-width: 650px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-art { min-height: 490px; position: relative; display: grid; place-items: center; }
.orb { width: 360px; height: 360px; border-radius: 50%; background: var(--lime); position: absolute; right: 4%; top: 6%; }
.dashboard { position: relative; width: min(100%, 500px); padding: 18px; border: 1px solid rgba(255,255,255,.8); border-radius: 24px; background: rgba(255,255,255,.82); box-shadow: var(--shadow); transform: rotate(2deg); }
.dash-top { display: flex; justify-content: space-between; gap: 10px; align-items: center; margin-bottom: 18px; }
.dash-title { font-size: .8rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.status { color: var(--blue); background: #e6f0ff; border-radius: 999px; padding: 5px 9px; font-size: .7rem; font-weight: 800; }
.metric-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.metric { background: var(--paper); border: 1px solid var(--line); border-radius: 15px; padding: 13px; }
.metric strong { display: block; font-size: 1.45rem; letter-spacing: -.05em; }
.metric span { color: var(--muted); font-size: .68rem; }
.review-card { display: grid; grid-template-columns: 38px 1fr auto; gap: 11px; align-items: start; padding: 15px 0; border-bottom: 1px solid var(--line); }
.review-card:last-child { border-bottom: 0; }
.avatar { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--blue-dark); color: #fff; font-size: .72rem; font-weight: 900; }
.stars { color: #f6b928; letter-spacing: .08em; font-size: .72rem; }
.review-name { font-size: .78rem; font-weight: 850; }
.review-copy { margin: 3px 0 0; color: var(--muted); font-size: .72rem; line-height: 1.4; }
.reply-tag { color: var(--blue); font-size: .68rem; font-weight: 850; white-space: nowrap; }
.section { padding: 86px 0; }
.section.alt { background: var(--white); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 32px; }
.section-head p { max-width: 520px; color: var(--muted); margin: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 10px 30px rgba(20,43,85,.04); }
.card.dark { background: var(--ink); color: white; border-color: var(--ink); }
.card p { color: var(--muted); }
.card.dark p { color: #bfcae0; }
.number { color: var(--coral); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; background: #e8f1ff; color: var(--blue); font-weight: 900; margin-bottom: 19px; }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 58px; align-items: start; }
.list { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.list li { display: flex; gap: 12px; align-items: flex-start; }
.list li::before { content: "✓"; flex: 0 0 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-weight: 900; font-size: .75rem; }
.quote { padding: 28px; border-left: 4px solid var(--coral); background: #fff6f3; border-radius: 0 18px 18px 0; }
.quote p { font-size: 1.25rem; line-height: 1.35; letter-spacing: -.03em; }
.mini-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 900; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--ink); color: white; font-size: .77rem; letter-spacing: .08em; text-transform: uppercase; }
td { color: var(--muted); }
td strong { color: var(--ink); }
tr:last-child td { border-bottom: 0; }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; padding: 25px; background: var(--white); }
.price-card.featured { background: var(--ink); color: white; transform: translateY(-8px); box-shadow: var(--shadow); }
.price-card.featured p, .price-card.featured .price-note { color: #c6d0e5; }
.price-card h3 { margin-bottom: 7px; }
.price-card p { color: var(--muted); }
.price { font-size: 2.35rem; line-height: 1; letter-spacing: -.07em; font-weight: 900; margin: 20px 0 5px; }
.price-note { font-size: .78rem; color: var(--muted); }
.price-card ul { margin: 24px 0; padding: 0; list-style: none; display: grid; gap: 10px; color: inherit; font-size: .9rem; }
.price-card li::before { content: "+"; color: var(--blue); font-weight: 900; margin-right: 8px; }
.price-card.featured li::before { color: var(--lime); }
.price-card .button { margin-top: auto; }
.channel-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.channel { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 17px 18px; border: 1px solid var(--line); background: var(--white); border-radius: 16px; }
.channel strong { font-size: .93rem; }
.channel span { font-size: .72rem; color: var(--blue); font-weight: 900; white-space: nowrap; }
.banner { border-radius: 28px; padding: 42px; background: var(--blue); color: white; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.banner p { color: #dbe9ff; max-width: 560px; margin: 0; }
.banner h2 { margin-bottom: 9px; }
.footer { padding: 38px 0; background: var(--ink); color: #ced6e5; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.footer .brand { color: white; }
.footer h3 { color: white; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }
.footer a { color: #ced6e5; display: block; margin: 8px 0; font-size: .88rem; }
.footer a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 30px; padding-top: 18px; font-size: .78rem; color: #9aa8c1; display: flex; justify-content: space-between; gap: 20px; }
.page-hero { padding: 70px 0 55px; background: var(--white); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 800px; font-size: clamp(2.6rem, 5vw, 4.7rem); }
.page-hero .lede { max-width: 740px; }
.step-list { display: grid; gap: 14px; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.step-num { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: var(--lime); font-weight: 900; }
.step h3 { margin-bottom: 5px; }
.step p { color: var(--muted); margin: 0; }
.contact-card { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-item { padding: 25px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; }
.contact-item a { color: var(--blue); font-weight: 800; }
.notice { padding: 17px 20px; background: #f0f8d5; border-radius: 16px; color: #425000; }
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; left: 20px; right: 20px; top: 68px; padding: 16px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  .hero-grid, .split, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 400px; }
  .grid-3, .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
  .banner { display: block; }
  .banner .button { margin-top: 22px; }
}
@media (max-width: 560px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .hero { padding-top: 60px; }
  .metric-row, .channel-grid, .contact-card { grid-template-columns: 1fr; }
  .orb { width: 280px; height: 280px; }
  .dashboard { transform: none; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 7px; }
  .brand-logo { width: 184px; }
}
