:root {
  --ink: #0b1220;
  --ink-2: #1d2939;
  --muted: #667085;
  --line: #dfe5ee;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --blue: #2f6bff;
  --blue-dark: #194bd6;
  --green: #14b87a;
  --green-soft: #e8fbf3;
  --shadow: 0 22px 60px rgba(17, 30, 54, 0.10);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 34%, #ffffff 100%);
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
a { color: inherit; }

.top-glow {
  position: fixed;
  inset: -260px auto auto 50%;
  width: 920px;
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(47,107,255,.14), rgba(47,107,255,0) 68%);
  pointer-events: none;
  z-index: -1;
}

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { height: 30px; width: auto; display: block; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  color: white; background: var(--ink);
  font-family: Manrope, sans-serif; font-weight: 800;
  position: relative; overflow: hidden;
}
.brand-mark::after {
  content: ""; width: 11px; height: 11px; border-radius: 50%;
  background: var(--green); position: absolute; right: -2px; top: -2px;
}
.brand-name { font-family: Manrope, sans-serif; font-size: 20px; font-weight: 800; letter-spacing: -.5px; }
.brand-name span { color: var(--blue); }
.header-cta {
  text-decoration: none; color: white; background: var(--ink);
  padding: 11px 17px; border-radius: 10px; font-size: 14px; font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { transform: translateY(-1px); background: #172238; }

.hero { text-align: center; padding: 52px 0 48px; }
.eyebrow, .section-kicker {
  text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; color: var(--blue);
}
.eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(20,184,122,.12); }
.hero h1 {
  max-width: 990px; margin: 16px auto 14px;
  font-family: Manrope, sans-serif; font-size: clamp(42px, 6.2vw, 76px); line-height: 1.03; letter-spacing: -.055em;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-copy { max-width: 820px; margin: 0 auto; color: var(--muted); font-size: 18px; line-height: 1.7; }

.model-picker {
  max-width: 780px; margin: 28px auto 0; padding: 20px;
  background: rgba(255,255,255,.92); border: 1px solid rgba(223,229,238,.95); border-radius: 20px;
  box-shadow: var(--shadow); text-align: left; backdrop-filter: blur(14px);
}
.model-picker > label { display: block; margin-bottom: 10px; font-weight: 700; font-size: 14px; }
.input-row { display: flex; gap: 10px; }
.input-wrap { position: relative; flex: 1; }
.input-wrap svg { position: absolute; left: 16px; top: 50%; width: 20px; transform: translateY(-50%); fill: #8591a3; }
.input-wrap input {
  width: 100%; height: 58px; padding: 0 16px 0 48px;
  border: 1px solid #ccd5e1; border-radius: 12px; outline: none; background: white; color: var(--ink);
  transition: border .2s ease, box-shadow .2s ease;
}
.input-wrap input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,107,255,.10); }
.input-row > button {
  border: 0; background: var(--blue); color: white; border-radius: 12px; padding: 0 22px; font-weight: 800; cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.input-row > button:hover { transform: translateY(-1px); background: var(--blue-dark); }
.input-row > button span { margin-left: 8px; }
.quick-picks { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.quick-picks button {
  border: 1px solid var(--line); background: var(--soft); color: var(--ink-2); border-radius: 999px; padding: 7px 11px; font-size: 12px; font-weight: 700; cursor: pointer;
}
.quick-picks button:hover { border-color: var(--blue); color: var(--blue); }
.hero-proof { margin-top: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; color: var(--muted); font-size: 13px; font-weight: 600; }
.hero-proof span::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 7px; }

.results { padding: 8px 0 56px; }
.results[hidden] { display: none; }
.results.reveal { animation: rise .55s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.results-heading, .table-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.results-heading h2, .section-intro h2, .table-heading h2, .bottom-cta h2 { font-family: Manrope, sans-serif; letter-spacing: -.035em; }
.results-heading h2, .section-intro h2, .table-heading h2 { margin: 6px 0 0; font-size: clamp(30px, 4vw, 46px); }
.results-heading h2 span { color: var(--blue); }
.secondary-button {
  border: 1px solid var(--line); background: white; border-radius: 10px; padding: 11px 15px; color: var(--ink); font-weight: 700; cursor: pointer;
}
.secondary-button:hover { border-color: var(--blue); color: var(--blue); }
.exporting .secondary-button { visibility: hidden; }

.positioning-banner {
  display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: center;
  padding: 22px; border: 1px solid rgba(47,107,255,.22); border-radius: 18px;
  background: linear-gradient(135deg, rgba(47,107,255,.09), rgba(20,184,122,.06));
}
.banner-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--ink); color: white; font-size: 24px; }
.positioning-banner strong { display: block; font-family: Manrope, sans-serif; font-size: 20px; }
.positioning-banner p { margin: 5px 0 0; color: var(--muted); line-height: 1.6; }

.scorecards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 14px 0 48px; }
.score-note { margin: 12px 0 0; color: var(--muted); font-size: 12.5px; line-height: 1.5; }
.scorecard { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 21px; min-width: 0; }
.scorecard .score-label { color: var(--muted); font-size: 13px; font-weight: 700; }
.score-compare { display: flex; align-items: stretch; gap: 10px; margin-top: 12px; }
.score-compare .score-side:first-child { justify-content: center; }
.score-arrow { align-self: center; }
.score-side { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.score-compare .score-side:first-child { flex: 0 0 auto; min-width: 52px; max-width: 45%; }
.score-side.ciq { flex: 1 1 auto; background: #eef3ff; border: 1px solid #d8e3fb; border-radius: 12px; padding: 8px 10px; }
.score-side-name { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.score-side.ciq .score-side-name { color: var(--blue); }
.score-side-value { font-family: Manrope, sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -.03em; line-height: 1.15; }
.score-side-value.strong { color: var(--ink); }
.ciq-pct { display: block; font-family: Manrope, sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 0; color: var(--blue); opacity: .75; line-height: 1; margin-bottom: 3px; }
.score-arrow { font-family: Manrope, sans-serif; font-size: 18px; font-weight: 800; color: var(--muted); padding-bottom: 3px; }
.scorebar { height: 6px; margin-top: 18px; border-radius: 999px; background: #edf1f6; overflow: hidden; }
.scorebar span { display: block; height: 100%; border-radius: inherit; background: var(--blue); transform-origin: left; animation: fill .7s .25s ease both; }
@keyframes fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.section-intro { margin: 0 0 18px; }
.advantage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 52px; }
.advantage-card {
  position: relative; overflow: hidden; min-height: 270px; padding: 22px;
  border: 1px solid var(--line); border-radius: var(--radius); background: white;
  transition: transform .25s ease, box-shadow .25s ease;
}
.advantage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-number { font-family: Manrope, sans-serif; font-size: 12px; font-weight: 800; color: var(--blue); letter-spacing: .12em; }
.advantage-card h3 { margin: 32px 0 10px; font-family: Manrope, sans-serif; font-size: 26px; line-height: 1.15; letter-spacing: -.03em; }
.advantage-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.advantage-card .card-tag { display: inline-flex; margin-top: 20px; padding: 7px 10px; border-radius: 999px; background: var(--green-soft); color: #08734d; font-size: 12px; font-weight: 800; }
.advantage-card::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: rgba(47,107,255,.06); right: -90px; top: -90px; }

.comparison-table-card { border: 1px solid var(--line); border-radius: var(--radius); background: white; padding: 24px; margin-bottom: 52px; box-shadow: 0 14px 40px rgba(17,30,54,.06); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 800px; }
th, td { text-align: left; vertical-align: top; padding: 11px 16px; border-bottom: 1px solid #edf1f5; line-height: 1.4; }
th { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
th:last-child { color: var(--blue); }
td:first-child { width: 22%; font-weight: 800; color: var(--ink); }
td:nth-child(2) { width: 36%; color: var(--muted); }
td:nth-child(3) { width: 42%; color: var(--ink-2); font-weight: 600; background: linear-gradient(90deg, rgba(47,107,255,.035), transparent); }
tr:last-child td { border-bottom: 0; }

.scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 52px; }
.scenario-card { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: white; }
.scenario-top { min-height: 104px; padding: 18px; background: var(--soft); border-bottom: 1px solid var(--line); }
.scenario-label { color: var(--blue); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.scenario-top h3 { font-family: Manrope, sans-serif; margin: 12px 0 0; font-size: 21px; line-height: 1.25; letter-spacing: -.025em; }
.scenario-body { padding: 18px; }
.scenario-side { margin-bottom: 14px; }
.scenario-side:last-child { margin-bottom: 0; }
.scenario-side strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.scenario-side.general strong { color: var(--muted); }
.scenario-side.ciq strong { color: var(--green); }
.scenario-side p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 14px; }
.scenario-side.ciq p { color: var(--ink-2); font-weight: 600; }

.bottom-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 32px; border-radius: 26px; color: white; background: var(--ink);
  position: relative; overflow: hidden;
}
.bottom-cta::after { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: rgba(47,107,255,.24); right: -180px; top: -210px; }
.section-kicker.light { color: #7fa2ff; }
.bottom-cta h2 { margin: 8px 0 10px; max-width: 730px; font-size: clamp(28px, 4vw, 43px); line-height: 1.1; }
.bottom-cta p:not(.section-kicker) { max-width: 720px; margin: 0; color: #b8c1d2; line-height: 1.6; }
.bottom-cta a {
  position: relative; z-index: 1; flex: 0 0 auto; text-decoration: none; background: white; color: var(--ink); padding: 16px 18px; border-radius: 12px; font-weight: 800;
}
.bottom-cta a span { margin-left: 8px; }
.disclaimer { max-width: 900px; margin: 18px auto 0; text-align: center; color: #98a2b3; font-size: 11px; line-height: 1.5; }

footer { border-top: 1px solid var(--line); background: #fafbfc; }
.footer-inner { min-height: 76px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--muted); font-size: 13px; }
.toast { position: fixed; right: 24px; bottom: 24px; padding: 12px 16px; border-radius: 10px; background: var(--ink); color: white; font-size: 13px; font-weight: 700; opacity: 0; transform: translateY(12px); pointer-events: none; transition: .25s ease; }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .scorecards { grid-template-columns: repeat(2, 1fr); }
  .advantage-grid, .scenario-grid { grid-template-columns: 1fr; }
  .advantage-card { min-height: auto; }
  .advantage-card h3 { margin-top: 28px; }
  .bottom-cta { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 680px) {
  .shell, .site-header { width: min(100% - 24px, 1180px); }
  .site-header { height: 70px; }
  .brand-name { font-size: 17px; }
  .header-cta { padding: 9px 12px; font-size: 12px; }
  .hero { padding: 52px 0 60px; }
  .hero h1 { font-size: 43px; }
  .hero-copy { font-size: 16px; }
  .model-picker { padding: 15px; }
  .input-row { flex-direction: column; }
  .input-row > button { height: 54px; }
  .results-heading { align-items: flex-start; flex-direction: column; }
  .positioning-banner { grid-template-columns: 1fr; }
  .scorecards { grid-template-columns: 1fr; }
  .comparison-table-card { padding: 18px; }
  .bottom-cta { padding: 28px 22px; }
  .footer-inner { flex-direction: column; justify-content: center; text-align: center; padding: 18px 0; }
}
