:root {
  color-scheme: light;
  --navy: #011d42;
  --navy-2: #062a55;
  --blue: #0868ad;
  --cyan: #25c9d8;
  --mint: #36d6a5;
  --ink: #071a31;
  --muted: #5d6f84;
  --line: #d8e4ef;
  --paper: #ffffff;
  --soft: #eef6fb;
  --wash: #f8fbfe;
  --shadow: 0 24px 70px rgba(1, 29, 66, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fbfe 0%, #eef6fb 44%, #ffffff 100%);
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px max(22px, calc((100vw - 1180px) / 2 + 22px));
  background: rgba(1, 29, 66, 0.96);
  backdrop-filter: blur(12px);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 40px rgba(0, 12, 30, 0.22);
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}
.brand img { width: 64px; height: 64px; object-fit: contain; }
.brand strong, .footer-brand strong { display: block; font-size: 20px; line-height: 1.05; font-weight: 900; letter-spacing: 0; }
.brand small, .footer-brand span { display: block; margin-top: 4px; color: rgba(255,255,255,0.72); font-size: 13px; letter-spacing: 0; }
nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: rgba(255,255,255,0.78); font-size: 14px; }
nav a { text-decoration: none; white-space: nowrap; }
.nav-cta {
  color: white;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(255,255,255,0.1);
}
main { max-width: 1180px; margin: 0 auto; padding: 0 22px 72px; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: 44px;
  align-items: center;
  min-height: 650px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 22px 64px;
  color: white;
}
.hero-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background:
    radial-gradient(circle at 12% 18%, rgba(54,214,165,0.16), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(37,201,216,0.12), transparent 32%),
    linear-gradient(180deg, var(--navy) 0%, #073563 100%);
}
.eyebrow { margin: 0 0 14px; color: var(--mint); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: 0; }
h1, h2, h3, p { letter-spacing: 0; }
h1 { margin: 0; max-width: 820px; font-size: clamp(44px, 6vw, 78px); line-height: 0.98; }
h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.04; }
h3 { margin: 0 0 10px; font-size: 20px; line-height: 1.2; }
.lead { max-width: 760px; margin: 24px 0 0; color: rgba(255,255,255,0.78); font-size: 20px; line-height: 1.55; }
.hero-subgrid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 26px; max-width: 820px; }
.hero-subgrid div { border: 1px solid rgba(255,255,255,0.16); border-radius: 8px; padding: 13px; background: rgba(255,255,255,0.08); }
.hero-subgrid b { display: block; color: white; font-size: 14px; margin-bottom: 4px; }
.hero-subgrid span { color: rgba(255,255,255,0.72); font-size: 13px; line-height: 1.35; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  text-align: center;
}
.button.primary { color: var(--navy); background: white; }
.button.dark { color: white; background: var(--navy); }
.button.ghost { color: white; border: 1px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.08); }
.button.outline { color: var(--navy); border: 1px solid var(--line); background: white; }
.hero-card {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(2, 18, 35, 0.74);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.panel-top { display: flex; gap: 8px; padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.panel-top span { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,0.28); }
.flow-step { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.flow-step b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 999px; background: white; color: var(--navy); }
.flow-step:first-of-type b { background: var(--mint); }
.flow-step p { margin: 0; color: rgba(255,255,255,0.82); line-height: 1.45; }
.demo-video-section {
  margin-top: -26px;
  position: relative;
  z-index: 2;
}
.demo-video-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.44fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}
.demo-video-copy p { margin: 0; color: var(--muted); line-height: 1.65; }
.demo-video-frame {
  overflow: hidden;
  border: 1px solid rgba(6, 104, 173, 0.3);
  border-radius: 8px;
  background: #061f3c;
  box-shadow: 0 24px 70px rgba(1, 29, 66, 0.18);
}
.demo-video-frame video {
  display: block;
  width: 100%;
  max-height: 72vh;
  background: #061f3c;
}
.demo-video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.demo-video-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--muted);
  background: #f8fbfe;
  font-size: 13px;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chips span { border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; padding: 9px 12px; color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); font-size: 13px; }
.section {
  margin-top: 30px;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 60px rgba(6, 37, 72, 0.07);
}
.section.flat {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}
.section-heading { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr); gap: 34px; align-items: end; margin-bottom: 32px; }
.section-heading .eyebrow, .content-hero .eyebrow { color: var(--blue); }
.section p, .section li, .content-hero p { color: var(--muted); line-height: 1.65; }
.content-hero .eyebrow { color: var(--mint); }
.content-hero .lead { color: rgba(255,255,255,0.82); }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { min-height: 170px; border: 1px solid var(--line); border-radius: 8px; padding: 22px; background: var(--wash); transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease; }
.card:hover, .audience-card:hover { transform: translateY(-2px); border-color: #b9d2e8; box-shadow: 0 18px 50px rgba(6, 37, 72, 0.1); }
.card strong { color: var(--blue); }
.numbered { counter-reset: step; display: grid; gap: 12px; }
.numbered .card { position: relative; padding-left: 76px; min-height: 130px; }
.numbered .card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 22px;
  left: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--mint);
  color: var(--navy);
  font-weight: 950;
}
.audience-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.audience-card { border: 1px solid var(--line); border-radius: 8px; padding: 24px; background: white; box-shadow: 0 12px 40px rgba(6, 37, 72, 0.05); transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease; }
.audience-card .tag { display: inline-block; margin-bottom: 14px; padding: 6px 10px; border-radius: 999px; color: var(--navy); background: #dffcf4; font-weight: 900; font-size: 12px; }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; padding: 0; margin: 22px 0 0; list-style: none; }
.feature-list li { border-left: 4px solid var(--blue); border-radius: 8px; padding: 14px 16px; background: #f8fbfe; color: var(--muted); line-height: 1.5; }
.callout {
  margin-top: 22px;
  border: 1px solid rgba(54,214,165,0.32);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(135deg, #f3fffb, #f8fbfe);
}
.callout p { margin: 0; }
.metric-row { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; margin-top: 24px; }
.metric { border: 1px solid rgba(54,214,165,0.3); border-radius: 8px; padding: 18px; background: #f3fffb; }
.metric b { display:block; font-size: 22px; color: var(--navy); }
.metric span { color: var(--muted); font-size: 14px; }
.rail-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; margin-top: 24px; }
.rail { padding: 18px; border-radius: 8px; border: 1px solid rgba(54,214,165,0.34); background: #f3fffb; }
.rail b { display: block; margin-bottom: 6px; color: var(--ink); }
.rail span { color: var(--muted); font-size: 14px; }
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,0.55fr); gap: 34px; align-items: center; }
.code {
  display: block;
  margin: 18px 0 0;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid #b9d2e8;
  background: #061f3c;
  color: white;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  line-height: 1.45;
}
.dark-band { background: var(--navy); color: white; border-color: rgba(255,255,255,0.08); }
.dark-band h2, .dark-band h3 { color: white; }
.dark-band p, .dark-band li { color: rgba(255,255,255,0.76); }
.link-list { display: grid; gap: 10px; }
.link-list a { display: block; padding: 14px 16px; border: 1px solid var(--line); border-radius: 8px; color: var(--blue); background: #f8fbfe; font-weight: 900; text-decoration: none; overflow-wrap: anywhere; }
.wizard { display: grid; gap: 18px; }
.wizard-layout { display: grid; grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr); gap: 18px; align-items: start; }
.wizard-panel { border: 1px solid var(--line); border-radius: 8px; background: white; padding: 22px; box-shadow: 0 14px 44px rgba(6, 37, 72, 0.06); }
.wizard-panel h3 { margin-bottom: 14px; }
.wizard-fields { display: grid; gap: 12px; }
.wizard-field { display: grid; gap: 6px; }
.wizard-field label { font-weight: 900; color: var(--ink); }
.wizard-field span, .small-note { color: var(--muted); font-size: 13px; line-height: 1.45; }
.wizard-field input, .wizard-field textarea, .wizard-field select {
  width: 100%;
  border: 1px solid #b9d2e8;
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #f8fbfe;
  font: inherit;
}
.wizard-field textarea { min-height: 220px; resize: vertical; font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 13px; line-height: 1.45; }
.wizard-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 14px; }
.wizard-actions button, .mini-button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
  color: white;
  background: var(--navy);
}
.wizard-actions button.secondary, .mini-button.secondary { color: var(--navy); background: #e8f3fb; border: 1px solid #b9d2e8; }
.source-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.source-pills span { border: 1px solid var(--line); border-radius: 999px; padding: 7px 10px; background: #f8fbfe; color: var(--muted); font-size: 13px; }
.danger-note { border-left: 4px solid #c85959; border-radius: 8px; padding: 12px 14px; background: #fff7f7; color: #7c2d2d; line-height: 1.45; }
.status-box { border: 1px solid #b9d2e8; border-radius: 8px; padding: 14px; background: #f8fbfe; color: var(--muted); white-space: pre-wrap; overflow-wrap: anywhere; min-height: 52px; }
.status-box.good { border-color: rgba(54,214,165,0.44); background: #f3fffb; color: #07503e; }
.status-box.bad { border-color: #e5b1b1; background: #fff7f7; color: #7c2d2d; }
.wizard-table-wrap, .table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: white; }
.wizard-table { width: 100%; min-width: 1080px; border-collapse: collapse; font-size: 13px; }
.wizard-table th, .wizard-table td { border-bottom: 1px solid var(--line); padding: 10px; text-align: left; vertical-align: top; }
.wizard-table th { color: var(--ink); background: #eef6fb; font-size: 12px; text-transform: uppercase; }
.wizard-table input, .wizard-table select, .wizard-table textarea { width: 100%; border: 1px solid #c7d9e8; border-radius: 8px; padding: 8px; background: #f8fbfe; font: inherit; }
.wizard-table textarea { min-height: 72px; resize: vertical; }
.share-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.share-card { border: 1px solid var(--line); border-radius: 8px; background: #f8fbfe; padding: 16px; }
.share-card a, .share-card code { overflow-wrap: anywhere; }
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; padding: 0; margin: 22px 0 0; list-style: none; }
.check-list li { padding: 12px 14px; border-radius: 8px; border: 1px solid var(--line); background: #f8fbfe; }
.price { font-size: clamp(52px, 7vw, 90px); line-height: 0.92; color: var(--mint); font-weight: 950; }
.content-hero { padding: 70px 0 34px; color: white; }
.content-hero h1 { font-size: clamp(42px, 5vw, 68px); }
.content-shell {
  margin: 0 -22px 28px;
  padding: 0 22px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  border-bottom: 1px solid rgba(1, 29, 66, 0.14);
}
footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 22px 48px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer-brand img { width: 52px; height: 52px; object-fit: contain; }
.footer-brand span { color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-links a { color: var(--blue); font-weight: 900; text-decoration: none; }
@media (max-width: 920px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  nav { gap: 10px 14px; }
  .hero, .section-heading, .split, .wizard-layout, .demo-video-copy { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 46px; }
  .grid, .grid.two, .rail-grid, .check-list, .audience-grid, .hero-subgrid, .metric-row, .feature-list, .share-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 38px 24px; }
  .section.flat { padding-left: 0; padding-right: 0; }
  footer { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  main { padding: 0 16px 48px; }
  .site-header { padding: 14px 16px; }
  .brand img { width: 52px; height: 52px; }
  h1 { font-size: clamp(34px, 10vw, 44px); line-height: 1.03; }
  .lead { font-size: 17px; }
  .grid, .grid.two, .rail-grid, .check-list, .audience-grid, .hero-subgrid, .metric-row, .feature-list, .share-grid { grid-template-columns: 1fr; }
  .actions { flex-direction: column; align-items: stretch; }
  .hero-card { margin-top: 22px; }
  .content-shell { margin-left: -16px; margin-right: -16px; padding-left: 16px; padding-right: 16px; }
}
