:root {
  --bg: #0b1220;
  --panel: #101a30;
  --text: #e7eefc;
  --muted: #9fb0d0;
  --accent: #5cc8ff;
  --accent-strong: #1db3ff;
  --warn: #ffd166;
  --border: rgba(255, 255, 255, 0.08);
  --surface: rgba(16, 26, 48, 0.86);
  --surface-soft: rgba(11, 18, 32, 0.58);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 700px at 15% 10%, rgba(92, 200, 255, 0.18), transparent 60%),
    radial-gradient(900px 600px at 85% 20%, rgba(255, 209, 102, 0.12), transparent 55%), var(--bg);
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(11, 18, 32, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

header.site .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--text);
}

.brand .dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--warn));
  box-shadow: 0 0 0 6px rgba(92, 200, 255, 0.12);
}

nav a {
  color: var(--muted);
  margin-left: 14px;
  font-weight: 600;
}

nav a:hover {
  color: var(--text);
  text-decoration: none;
}

main {
  padding: 34px 0 64px;
}

.hero {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 26, 48, 0.92), rgba(16, 26, 48, 0.65));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.card {
  border-radius: var(--radius);
  background: rgba(16, 26, 48, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  padding: 18px;
}

.card h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

.muted {
  color: var(--muted);
}

.calc-form {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.field {
  grid-column: span 6;
}

.field.full,
.field--state {
  grid-column: span 12;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--muted);
}

.field input,
.field select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 18, 32, 0.55);
  color: var(--text);
  outline: none;
}

.field input:focus,
.field select:focus {
  border-color: rgba(92, 200, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(92, 200, 255, 0.12);
}

.field-note {
  margin: 6px 0 10px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.results {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.pill {
  grid-column: span 4;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 18, 32, 0.55);
  padding: 12px;
}

.pill .k {
  font-size: 12px;
  color: var(--muted);
}

.pill .v {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 800;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

th,
td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

th {
  font-size: 12px;
  color: var(--muted);
  background: rgba(11, 18, 32, 0.55);
}

tr:last-child td {
  border-bottom: none;
}

.ad-slot {
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(11, 18, 32, 0.35);
  padding: 14px;
  color: var(--muted);
  text-align: center;
}

.breadcrumbs {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs span {
  margin: 0 6px;
}

.seo-stack {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.featured-grid,
.cta-grid,
.offer-grid,
.footer-grid {
  display: grid;
  gap: 14px;
}

.featured-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cta-grid,
.offer-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr;
}

.feature-card,
.offer-card,
.legal-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  padding: 16px;
}

.feature-card h3,
.offer-card h3,
.legal-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.feature-card p,
.offer-card p,
.legal-card p,
.section-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warn);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.button {
  color: #08111d;
  background: linear-gradient(135deg, var(--warn), #ffb347);
}

.button:hover {
  text-decoration: none;
  filter: brightness(1.04);
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.2);
}

.check-list,
.steps-list,
.link-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.check-list li,
.steps-list li,
.link-list li {
  margin: 0 0 8px;
}

.money-strip {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 209, 102, 0.18);
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.1), rgba(92, 200, 255, 0.08));
  padding: 18px;
}

.money-strip h2,
.money-strip h3 {
  margin: 0 0 8px;
}

.money-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.money-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(7, 12, 22, 0.92);
  margin-top: 36px;
}

.site-footer .container {
  padding: 24px 0 34px;
}

.footer-title {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--text);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
}

.footer-meta {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

.consent-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 50;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 12, 22, 0.96);
  box-shadow: var(--shadow);
}

.consent-banner__inner {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.consent-banner__title {
  margin: 0;
  font-size: 18px;
}

.consent-banner__copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consent-banner__ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.tools-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.tools-table th,
.tools-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.tools-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.tools-table tr:last-child td {
  border-bottom: none;
}

.inline-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.section-lead {
  margin: 0 0 18px;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.content-shell {
  display: grid;
  gap: 18px;
}

.comparison-layout {
  align-items: start;
}

.comparison-card h2,
.compare-summary h2 {
  margin-bottom: 8px;
}

.compare-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0;
}

.compare-summary .section-copy {
  margin-top: 10px;
}

@media (max-width: 840px) {
  nav {
    display: none;
  }

  .field,
  .pill {
    grid-column: span 12;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .consent-banner {
    inset: auto 12px 12px 12px;
  }

  .compare-pills {
    grid-template-columns: 1fr;
  }
}
