:root {
  --ink: #071827;
  --ink-2: #0f2438;
  --teal: #2de2c5;
  --blue: #7aa7ff;
  --amber: #f6b94b;
  --paper: #f6fbff;
  --surface: #ffffff;
  --muted: #64748b;
  --text: #172033;
  --border: #d9e5ee;
  --shadow: 0 18px 50px rgba(7, 24, 39, 0.12);
  --radius: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 16px 0;
  background: rgba(7, 24, 39, 0.98);
  box-shadow: 0 1px 18px rgba(7, 24, 39, 0.08);
  transition: 0.25s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 18px rgba(7, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}
.nav-inner { display: flex; align-items: center; gap: 24px; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: white; }
.navbar.scrolled .brand { color: var(--ink); }
.brand-mark { width: 36px; height: 36px; border-radius: 8px; }
.brand-name { letter-spacing: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,0.86); font-size: 0.94rem; font-weight: 600; }
.navbar.scrolled .nav-links { color: var(--text); }
.nav-links a:hover { color: var(--teal); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}
.btn-primary { background: var(--teal); color: var(--ink); box-shadow: 0 10px 28px rgba(45,226,197,0.22); }
.btn-secondary { background: transparent; border-color: rgba(255,255,255,0.32); color: white; }
.btn-lg { min-height: 52px; padding: 14px 24px; }
.btn-full { width: 100%; }

.mobile-toggle { display: none; background: none; border: 0; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 24px; height: 2px; background: white; }
.navbar.scrolled .mobile-toggle span { background: var(--ink); }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 20% 20%, rgba(45,226,197,0.18), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(122,167,255,0.22), transparent 28%),
    linear-gradient(135deg, #071827 0%, #0f2438 58%, #102f47 100%);
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-content { position: relative; padding-top: 80px; }
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 54px;
  align-items: center;
}
.hero-copy { max-width: 860px; }
.eyebrow, .section-tag, .card-kicker {
  display: inline-flex;
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
h1 { max-width: 900px; font-size: clamp(2.4rem, 6vw, 5.4rem); line-height: 0.98; letter-spacing: 0; }
h2 { font-size: clamp(1.9rem, 3vw, 3rem); line-height: 1.08; letter-spacing: 0; color: var(--ink); }
h3 { font-size: 1.18rem; line-height: 1.2; color: var(--ink); }
h1, h2, h3, p, li, a { overflow-wrap: break-word; }
.hero-sub { max-width: 760px; margin: 24px 0 30px; color: rgba(255,255,255,0.78); font-size: 1.15rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.readiness-board {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
}
.board-logo { width: 70px; height: 70px; border-radius: var(--radius); margin-bottom: 18px; }
.board-title { font-weight: 800; font-size: 1.1rem; margin-bottom: 16px; }
.board-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
}
.board-row strong { color: white; white-space: nowrap; }
.board-row.alert strong { color: var(--amber); }
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  overflow: hidden;
}
.proof-strip div { padding: 18px; background: rgba(255,255,255,0.08); }
.proof-strip strong { display: block; color: white; font-size: 1.15rem; }
.proof-strip span { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.section { padding: 88px 0; }
.band { background: var(--paper); border-block: 1px solid var(--border); }
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.align-start { align-items: start; }
.lead-copy { color: var(--muted); font-size: 1.05rem; }
.source-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}
.source-note a { color: var(--ink); font-weight: 700; text-decoration: underline; }
.section-header { text-align: center; max-width: 760px; margin: 0 auto 38px; }
.section-header.left { text-align: left; margin-left: 0; }
.section-header p { color: var(--muted); margin-top: 14px; font-size: 1.06rem; }

.offer-grid { display: grid; grid-template-columns: 1.1fr 0.95fr 0.95fr; gap: 18px; }
.offer-card, .mini-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 28px rgba(7,24,39,0.06);
}
.offer-card.featured { border-color: rgba(45,226,197,0.55); box-shadow: var(--shadow); }
.offer-card p { color: var(--muted); margin: 12px 0 16px; }
ul { margin-left: 20px; color: var(--text); }
li { margin: 8px 0; }
.price-band { margin-top: 22px; padding: 12px 14px; border-radius: var(--radius); background: #eafbf8; color: #06483f; font-weight: 800; }

.evidence-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.evidence-item {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  font-weight: 700;
}
.evidence-item span { color: var(--blue); font-weight: 800; }

.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.timeline div {
  padding: 20px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
}
.timeline strong { display: block; color: var(--ink); margin-bottom: 8px; }
.timeline span { color: var(--muted); font-size: 0.92rem; }

.contact { background: var(--ink); color: white; }
.contact h2 { color: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 56px; align-items: start; }
.contact p { color: rgba(255,255,255,0.75); margin-top: 16px; }
.disclaimer { font-size: 0.88rem; }
.contact-form { background: white; color: var(--text); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
label { display: grid; gap: 8px; margin-bottom: 16px; font-weight: 700; }
input, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
}
textarea { resize: vertical; }

.footer { padding: 34px 0; background: #06121e; color: rgba(255,255,255,0.72); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 36px; }
.footer-brand { color: white; }
.footer p { max-width: 620px; margin-top: 12px; }
.footer-links { display: grid; gap: 10px; font-weight: 700; color: rgba(255,255,255,0.86); }
.footer-links a:hover { color: var(--teal); }

.assessment-page { background: var(--paper); }
.assessment-page .navbar { background: white; box-shadow: 0 1px 18px rgba(7, 24, 39, 0.08); }
.assessment-page .brand,
.assessment-page .nav-links { color: var(--ink); }
.assessment-page .mobile-toggle span { background: var(--ink); }
.assessment-hero {
  padding: 130px 0 70px;
  color: white;
  background: linear-gradient(135deg, #071827 0%, #0f2438 100%);
}
.assessment-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: end;
}
.assessment-summary {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
}
.assessment-summary strong { font-size: 1.15rem; }
.assessment-summary span { color: rgba(255,255,255,0.75); }
.assessment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 30px;
  align-items: start;
}
.assessment-form,
.result-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 38px rgba(7,24,39,0.08);
}
.legal-content {
  max-width: 860px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 12px 38px rgba(7,24,39,0.08);
}
.legal-content h2 {
  margin-top: 28px;
  font-size: 1.4rem;
}
.legal-content p {
  margin-top: 12px;
  color: var(--muted);
}
.legal-content a { color: var(--ink); font-weight: 700; text-decoration: underline; }
fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin: 22px 0;
}
legend { padding: 0 8px; font-weight: 800; color: var(--ink); }
.check-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--text);
}
.check-row input { width: 18px; height: 18px; margin-top: 3px; }
.consent-row {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}
.consent-row a { color: var(--ink); text-decoration: underline; }
.form-status {
  min-height: 22px;
  margin: 12px 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}
.form-status.success { color: #047857; }
.form-status.error { color: #b91c1c; }
.result-panel { position: sticky; top: 96px; }
.score-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 22px 0;
  padding: 18px;
  border-radius: var(--radius);
  background: #eafbf8;
  color: #06483f;
}
.score-box strong { font-size: 2.5rem; line-height: 1; }
.score-box span { font-weight: 800; }
.result-panel .disclaimer { color: var(--muted); }

/* Urgency Bar */
.urgency-bar {
  background: #0f2438;
  border-bottom: 1px solid rgba(45,226,197,0.3);
  padding: 10px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.urgency-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.urgency-inner > span:not(.urgency-dot) {
  flex: 1 1 560px;
  min-width: 0;
  line-height: 1.45;
}
.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.urgency-cta {
  margin-left: 0;
  color: var(--teal);
  font-weight: 700;
  white-space: nowrap;
}
.urgency-cta:hover { text-decoration: underline; }

/* Readiness board ok state */
.board-row.ok strong { color: var(--teal); }

/* Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.comparison-card {
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.comparison-card.bad {
  background: #fafafa;
  border-color: #e2e8f0;
}
.comparison-card.good {
  background: #eafbf8;
  border-color: rgba(45,226,197,0.5);
  box-shadow: var(--shadow);
}
.comp-label {
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}
.comparison-card.good .comp-label { color: #06483f; }
.comp-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}
.comparison-card.good .comp-price { color: #06483f; }
.comparison-card ul { margin-left: 18px; }
.comparison-card li { margin: 8px 0; font-size: 0.93rem; color: var(--muted); }
.comparison-card.good li { color: var(--text); }

/* Offer note */
.offer-note {
  margin-top: 22px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--muted);
}
.offer-note a { color: var(--teal); font-weight: 700; }

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.faq-item h3 { margin-bottom: 10px; font-size: 1rem; }
.faq-item p { color: var(--muted); font-size: 0.93rem; line-height: 1.65; }

/* Deadline Box */
.deadline-box {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
}
.deadline-item strong { display: block; color: var(--teal); font-size: 1.05rem; }
.deadline-item span { color: rgba(255,255,255,0.7); font-size: 0.88rem; }

/* Select styling */
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
  background: white;
  color: var(--text);
}

@media (max-width: 1100px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.active {
    display: grid;
    position: absolute;
    top: 68px;
    left: 24px;
    right: 24px;
    padding: 18px;
    background: white;
    color: var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .hero-layout, .proof-strip, .offer-grid, .evidence-grid, .timeline, .split, .contact-grid, .footer-grid, .assessment-hero-inner, .assessment-grid, .comparison-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 60px 0 60px; }
  .hero-content { padding-top: 36px; }
  .urgency-inner { align-items: flex-start; }
  .urgency-cta { width: 100%; }
  h1 { font-size: 2.7rem; }
  .readiness-board { max-width: 420px; }
  .result-panel { position: static; }
}
