:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-deep: #040b14;
  --surface: #0b1828;
  --surface-2: #0e1e31;
  --surface-3: #11253a;
  --text: #eaf5f7;
  --muted: #91a8b7;
  --soft: #c3d3da;
  --accent: #22d3ee;
  --accent-bright: #8be9f5;
  --accent-dark: #063c49;
  --border: rgba(142, 180, 197, 0.17);
  --border-strong: rgba(34, 211, 238, 0.34);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --radius: 18px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 280px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--bg-deep);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--accent-bright);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 17, 31, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.brand > span:last-child > span { color: var(--accent); }

.brand-mark {
  position: relative;
  display: block;
  width: 27px;
  height: 27px;
}

.brand-mark i {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: var(--bg);
}

.brand-mark i:first-child { top: 10px; left: 0; }
.brand-mark i:nth-child(2) { top: 1px; right: 0; }
.brand-mark i:last-child { right: 0; bottom: 1px; }

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  left: 6px;
  width: 16px;
  height: 1px;
  background: var(--accent);
  content: "";
  transform-origin: left center;
}

.brand-mark::before { top: 12px; transform: rotate(-29deg); }
.brand-mark::after { bottom: 12px; transform: rotate(29deg); }

.site-header nav,
.site-footer nav { display: flex; align-items: center; gap: 28px; }

.site-header nav a,
.site-footer nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-header nav a:hover,
.site-footer nav a:hover { color: var(--text); }

.header-cta {
  padding: 9px 15px;
  border: 1px solid var(--border-strong);
  border-radius: 9px;
  color: var(--accent-bright);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.header-cta:hover { border-color: var(--accent); background: rgba(34, 211, 238, 0.08); }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 74% 43%, rgba(13, 183, 210, 0.12), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, #081522 100%);
}

.hero-grid {
  position: absolute;
  inset: 0 0 0 48%;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(63, 155, 176, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 155, 176, 0.2) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 25%, #000 70%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 70%, transparent);
  transform: perspective(560px) rotateY(-12deg) rotateZ(-5deg) scale(1.16);
}

.hero-grid::before,
.hero-grid::after,
.hero-orb::before,
.hero-orb::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 22px var(--accent);
  content: "";
}

.hero-grid::before { top: 34%; left: 35%; }
.hero-grid::after { right: 26%; bottom: 28%; }

.hero-orb {
  position: absolute;
  border: 1px solid rgba(34, 211, 238, 0.16);
  border-radius: 50%;
}

.hero-orb-one { top: 210px; right: 11%; width: 270px; height: 270px; }
.hero-orb-two { right: 21%; bottom: 85px; width: 110px; height: 110px; }
.hero-orb-one::before { top: 40px; left: 21px; }
.hero-orb-one::after { right: 18px; bottom: 54px; }
.hero-orb-two::before { top: 2px; left: 46px; }
.hero-orb-two::after { right: 12px; bottom: 12px; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 760px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-block: 100px 70px;
}

.eyebrow,
.kicker {
  color: var(--accent-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.eyebrow span { width: 28px; height: 1px; background: var(--accent); }
.kicker { margin: 0 0 11px; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 7.5vw, 6.65rem);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

h1 em { color: var(--accent); font-style: normal; }

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--soft);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 21px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: var(--bg-deep); }
.button-primary:hover { background: var(--accent-bright); }
.button-secondary { border: 1px solid var(--border); background: rgba(14, 30, 49, 0.58); color: var(--text); }
.button-secondary:hover { border-color: var(--border-strong); }

.hero-stats {
  display: flex;
  gap: 0;
  margin: 72px 0 0;
}

.hero-stats div {
  display: grid;
  min-width: 160px;
  padding-right: 34px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.hero-stats div + div { padding-left: 34px; border-left: 1px solid var(--border); }
.hero-stats dt { color: var(--text); font-size: 25px; font-weight: 800; }
.hero-stats dd { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.35; }

.section { padding-block: 110px; }

.section-heading {
  display: grid;
  margin-bottom: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 60px;
}

.section-heading-wide { grid-template-columns: minmax(0, 1fr) minmax(280px, 470px); }

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 730;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.section-heading > p,
.guide-intro > p { margin: 0; color: var(--muted); }

.finder-section {
  background: #091624;
  border-bottom: 1px solid var(--border);
}

.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.path-card {
  display: grid;
  min-height: 118px;
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.path-card:hover { border-color: var(--border-strong); background: var(--surface-2); transform: translateY(-2px); }
.path-card-wide { grid-column: 1 / -1; }
.path-icon { display: grid; width: 45px; height: 45px; place-items: center; border: 1px solid var(--border-strong); border-radius: 11px; color: var(--accent); font: 750 11px/1 ui-monospace, monospace; }
.path-content { display: flex; flex-direction: column; gap: 3px; }
.path-content strong { font-size: 17px; }
.path-content small { color: var(--muted); font-size: 14px; }
.path-arrow { color: var(--accent); font-size: 22px; transition: transform 180ms ease; }
.path-card:hover .path-arrow { transform: translate(2px, -2px); }

.providers-section { background: var(--bg); }
.provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.provider-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 455px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15, 34, 53, 0.92), rgba(9, 23, 38, 0.92));
  flex-direction: column;
  scroll-margin-top: 100px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.provider-card::after {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(34, 211, 238, 0.08);
  border-radius: 50%;
  content: "";
}

.provider-card:hover,
.provider-card:target { border-color: var(--border-strong); box-shadow: var(--shadow); transform: translateY(-3px); }
.provider-card:target { animation: target-pulse 1.2s ease-out; }

@keyframes target-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.28); }
  100% { box-shadow: 0 0 0 18px rgba(34, 211, 238, 0); }
}

.provider-top { position: relative; z-index: 1; display: flex; margin-bottom: 25px; align-items: center; justify-content: space-between; gap: 15px; }
.provider-monogram { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--border-strong); border-radius: 12px; background: var(--accent-dark); color: var(--accent-bright); font: 800 12px/1 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: -0.03em; }
.tag { padding: 5px 9px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.tag-accent { border-color: rgba(34, 211, 238, 0.22); background: rgba(34, 211, 238, 0.07); color: var(--accent-bright); }
.provider-card h3 { margin-bottom: 10px; font-size: 25px; letter-spacing: -0.035em; }
.provider-summary { min-height: 52px; margin-bottom: 22px; color: var(--muted); font-size: 14px; }
.best-for { margin-bottom: 22px; padding-top: 18px; border-top: 1px solid var(--border); color: var(--soft); font-size: 13px; }
.best-for span { display: block; margin-bottom: 3px; color: var(--accent-bright); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.provider-details { display: grid; margin: 0 0 26px; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.provider-details div { min-width: 0; }
.provider-details dt { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.provider-details dd { margin: 3px 0 0; overflow-wrap: anywhere; color: var(--text); font-size: 12px; font-weight: 650; }
.provider-link { display: flex; margin-top: auto; align-items: center; justify-content: space-between; color: var(--accent-bright); font-size: 13px; font-weight: 800; text-decoration: none; }
.provider-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.compare-section { border-block: 1px solid var(--border); background: #091624; }
.table-shell { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
table { width: 100%; min-width: 860px; border-collapse: collapse; font-size: 13px; }
th, td { padding: 18px 20px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: middle; }
thead th { background: #0d1d2e; color: var(--muted); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
tbody th { color: var(--text); font-size: 14px; }
tbody td { color: var(--soft); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgba(34, 211, 238, 0.035); }
.table-note { margin: 15px 3px 0; color: var(--muted); font-size: 12px; }

.guide-section { background: var(--bg); }
.guide-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 100px; align-items: start; }
.guide-intro { position: sticky; top: 120px; }
.guide-intro h2 { margin-bottom: 22px; }
.guide-intro > p { max-width: 440px; }
.text-link { display: inline-flex; margin-top: 30px; gap: 10px; color: var(--accent-bright); font-size: 13px; font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.criteria-list { margin: 0; padding: 0; list-style: none; }
.criteria-list li { display: grid; padding: 26px 0; border-bottom: 1px solid var(--border); grid-template-columns: 52px 1fr; gap: 20px; }
.criteria-list li:first-child { padding-top: 0; }
.criteria-list li > span { display: grid; width: 37px; height: 37px; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--accent); font: 800 10px/1 ui-monospace, monospace; }
.criteria-list h3 { margin-bottom: 4px; font-size: 17px; }
.criteria-list p { margin: 0; color: var(--muted); font-size: 14px; }

.faq-section { border-top: 1px solid var(--border); background: #091624; }
.faq-layout { display: grid; grid-template-columns: 0.55fr 1.45fr; gap: 100px; }
.faq-list { border-top: 1px solid var(--border); }
details { border-bottom: 1px solid var(--border); }
summary { display: flex; padding: 23px 2px; align-items: center; justify-content: space-between; gap: 30px; cursor: pointer; font-size: 16px; font-weight: 700; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--accent); font-size: 22px; font-weight: 300; transition: transform 180ms ease; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 720px; margin: -4px 0 24px; color: var(--muted); font-size: 14px; }

.site-footer { border-top: 1px solid var(--border); background: var(--bg-deep); }
.footer-top { display: flex; padding-block: 58px 45px; align-items: flex-start; justify-content: space-between; gap: 50px; }
.footer-top > div > p { max-width: 360px; margin: 14px 0 0; color: var(--muted); font-size: 13px; }
.footer-bottom { display: flex; padding-block: 20px 30px; border-top: 1px solid var(--border); justify-content: space-between; gap: 30px; }
.footer-bottom p { margin: 0; color: #78909f; font-size: 11px; }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .hero { min-height: 690px; }
  .hero-inner { min-height: 690px; padding-top: 80px; }
  .hero-grid { left: 25%; opacity: 0.16; }
  .section { padding-block: 85px; }
  .section-heading, .section-heading-wide { grid-template-columns: 1fr; gap: 18px; }
  .section-heading > p { max-width: 620px; }
  .guide-layout, .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .guide-intro { position: static; }
  .footer-top { align-items: flex-start; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 66px; }
  .header-cta { display: none; }
  .hero, .hero-inner { min-height: 660px; }
  .hero-inner { padding-block: 70px 50px; }
  h1 { font-size: clamp(3rem, 16vw, 4.5rem); }
  .hero-copy { font-size: 1rem; }
  .hero-orb-one { right: -130px; }
  .hero-stats { width: 100%; margin-top: 54px; }
  .hero-stats div { min-width: 0; padding-right: 16px; grid-template-columns: 1fr; gap: 0; }
  .hero-stats div + div { padding-left: 16px; }
  .section { padding-block: 68px; }
  .section-heading { margin-bottom: 34px; }
  .path-grid, .provider-grid { grid-template-columns: 1fr; }
  .path-card-wide { grid-column: auto; }
  .path-card { min-height: 106px; padding: 18px; gap: 14px; }
  .path-content small { font-size: 12px; line-height: 1.45; }
  .provider-card { min-height: 0; padding: 24px; }
  .provider-summary { min-height: 0; }
  .provider-details { gap: 8px; }
  .footer-top, .footer-bottom { flex-direction: column; }
  .site-footer nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
}

@media (max-width: 390px) {
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .button { width: 100%; }
  .path-icon { width: 38px; height: 38px; }
  .path-card { grid-template-columns: auto 1fr; }
  .path-arrow { display: none; }
  .provider-details { grid-template-columns: 1fr 1fr; }
  .provider-details div:last-child { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
