:root {
  color-scheme: dark;
  --bg: #06080f;
  --bg-soft: #0b1020;
  --surface: rgba(13, 19, 38, 0.68);
  --surface-strong: rgba(18, 27, 52, 0.85);
  --surface-elevated: rgba(26, 38, 74, 0.86);
  --text: #edf3ff;
  --muted: #b8c7eb;
  --border: rgba(193, 217, 255, 0.2);
  --accent: #73b4ff;
  --accent-strong: #99c8ff;
  --accent-dark: #3f8ef0;
  --link: #9cc9ff;
  --link-dark: #c5dcff;
  --card: rgba(15, 24, 46, 0.7);
  --shadow: 0 22px 52px rgba(0, 0, 0, 0.52);
  --glass-highlight: rgba(255, 255, 255, 0.22);
  --glass-edge: rgba(196, 216, 255, 0.36);
  --glass-radius: 22px;
  --glass-surface-bg: linear-gradient(165deg, rgba(31, 44, 76, 0.34), rgba(10, 16, 30, 0.58) 52%, rgba(7, 12, 24, 0.7));
  --glass-surface-border: rgba(223, 236, 255, 0.23);
  --glass-shadow-soft: 0 20px 42px rgba(0, 0, 0, 0.38);
  --glass-shadow-contact: 0 4px 12px rgba(3, 9, 22, 0.45);
  --glass-inset-top: inset 0 1px 0 rgba(255, 255, 255, 0.26);
  --glass-inset-bottom: inset 0 -14px 22px rgba(0, 0, 0, 0.22);
  --space-sm: 1.5rem;
  --space-md: 2.75rem;
  --space-lg: 4.5rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  background: #04050a;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "SF Pro Display", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #04050a;
  line-height: 1.62;
  letter-spacing: 0.01em;
}

body > :not(.ambient-bg) {
  position: relative;
  z-index: 1;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  --bg-0: #04050a;
  --bg-1: #061a3b;
  --bg-2: #160208;
  --glow-cool: rgba(80, 160, 255, 0.35);
  --glow-warm: rgba(255, 80, 120, 0.22);
  --x1: 22%;
  --y1: 18%;
  --x2: 76%;
  --y2: 32%;
  background: linear-gradient(120deg, var(--bg-0) 0%, var(--bg-1) 35%, var(--bg-2) 70%, var(--bg-0) 100%);
  background-size: 400% 400%;
  animation: ambientBaseShift 40s ease-in-out infinite;
}

.ambient-bg::before,
.ambient-bg::after {
  content: "";
  position: absolute;
  width: 90vmax;
  height: 90vmax;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.9;
  will-change: transform;
}

.ambient-bg::before {
  left: -30vmax;
  top: -30vmax;
  background: radial-gradient(circle at var(--x1) var(--y1), var(--glow-cool), rgba(80, 160, 255, 0) 60%);
  animation: ambientGlowOne 26s ease-in-out infinite alternate;
}

.ambient-bg::after {
  right: -35vmax;
  bottom: -35vmax;
  background: radial-gradient(circle at var(--x2) var(--y2), var(--glow-warm), rgba(255, 80, 120, 0) 60%);
  animation: ambientGlowTwo 34s ease-in-out infinite alternate;
}

@keyframes ambientBaseShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes ambientGlowOne {
  0% { transform: translate3d(0%, 0%, 0) scale(1); }
  50% { transform: translate3d(45%, 25%, 0) scale(1.15); }
  100% { transform: translate3d(20%, 55%, 0) scale(1.05); }
}

@keyframes ambientGlowTwo {
  0% { transform: translate3d(0%, 0%, 0) scale(1.1); }
  50% { transform: translate3d(-40%, -20%, 0) scale(1.25); }
  100% { transform: translate3d(-15%, -45%, 0) scale(1.05); }
}

.glass {
  position: relative;
  border-radius: var(--glass-radius);
}

.glass-surface,
.glass,
.card,
.legal-doc,
.legal-toc,
.provider-table,
.stepper li,
.badges span,
.faq-toc a {
  position: relative;
  overflow: hidden;
  border-radius: var(--glass-radius);
  background: var(--glass-surface-bg);
  border: 1.2px solid var(--glass-surface-border);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  box-shadow: var(--glass-shadow-soft), var(--glass-shadow-contact), var(--glass-inset-top), var(--glass-inset-bottom);
}

.glass-surface::before,
.glass::before,
.card::before,
.legal-doc::before,
.legal-toc::before,
.provider-table::before,
.stepper li::before,
.badges span::before,
.faq-toc a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.17) 0%, rgba(255, 255, 255, 0.06) 28%, rgba(255, 255, 255, 0) 72%);
  opacity: 0.72;
}

.glass > * {
  position: relative;
  z-index: 1;
}

.glass-surface > *,
.card > *,
.legal-doc > *,
.legal-toc > *,
.provider-table > *,
.stepper li > *,
.badges span > *,
.faq-toc a > * {
  position: relative;
  z-index: 1;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass-surface,
  .glass,
  .card,
  .legal-doc,
  .legal-toc,
  .provider-table,
  .stepper li,
  .badges span,
  .faq-toc a {
    background: rgba(10, 16, 30, 0.82);
  }
}

img {
  max-width: 100%;
  display: block;
}

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

a:hover,
a:focus {
  color: var(--link-dark);
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
.nav-link:focus-visible,
.accordion-trigger:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(153, 196, 255, 0.45);
  outline-offset: 3px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.narrow-content {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(180, 210, 255, 0.22);
}

.site-header.glass {
  overflow: visible;
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 650;
  font-size: 1.06rem;
  color: var(--text);
}

.brand img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 9px 18px rgba(87, 162, 255, 0.24));
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  font-size: 0.95rem;
}

.nav-link {
  color: var(--text);
  font-weight: 520;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
}

.nav-link[aria-current="page"] {
  color: #ecf4ff;
  background: linear-gradient(130deg, rgba(113, 176, 255, 0.3), rgba(100, 132, 255, 0.2));
  border: 1px solid rgba(194, 220, 255, 0.3);
}

.header-cta {
  padding: 0.45rem 0.98rem;
  font-size: 0.91rem;
}

.price-inline-button {
  margin-left: 0.55rem;
  padding: 0.36rem 0.7rem;
  font-size: 0.83rem;
  vertical-align: middle;
}

.hero {
  padding: var(--space-lg) 0 var(--space-md);
}

.hero h1 {
  font-size: clamp(2.15rem, 3.3vw, 3.35rem);
  margin-bottom: 0.64rem;
  line-height: 1.15;
  text-wrap: balance;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-subhead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin: 0 0 1rem;
  color: #e3ecff;
}

.hero-quicklist {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 0.9rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
  padding: 0;
}

.trust-strip li {
  list-style: none;
  margin: 0;
  padding: 0.67rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  backdrop-filter: blur(18px) saturate(135%);
  font-size: 0.95rem;
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}

.section-tight-top {
  padding-top: var(--space-sm);
}

.section {
  padding: var(--space-md) 0;
}

.section h2 {
  font-size: 1.74rem;
  margin: 0 0 0.8rem;
}

.section h3 {
  margin-top: 1.2rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.card {
  padding: 1.55rem;
}

.card h3,
.card h2 {
  margin-top: 0;
}

.details-card summary {
  font-weight: 700;
  cursor: pointer;
}

.details-card p:last-child {
  margin-bottom: 0;
}

.quick-definitions {
  margin-top: 1rem;
}

.setup-steps {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
}

.setup-steps h2,
.setup-steps h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}

.setup-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.setup-steps-list li {
  margin: 0;
  padding: 0.52rem 0.6rem;
  border: 1px solid rgba(199, 221, 255, 0.2);
  border-radius: 12px;
  background: rgba(17, 27, 54, 0.56);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.step-chip {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(210, 229, 255, 0.45);
  background: rgba(115, 179, 255, 0.3);
  color: #f5f9ff;
  font-size: 0.76rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
}

.setup-steps-note {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  color: #d8e6ff;
}

.setup-steps-full .setup-steps-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cta-with-setup {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1rem;
  align-items: start;
}

.setup-steps-compact {
  margin-top: 0;
}

.setup-steps-compact .setup-steps-list {
  gap: 0.4rem;
}

.setup-steps-compact .setup-steps-list li {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 0.93rem;
}

.setup-steps-compact .step-chip {
  width: 1.2rem;
  height: 1.2rem;
  flex-basis: 1.2rem;
  font-size: 0.72rem;
}


.setup-steps-plain p {
  margin: 0 0 0.35rem;
}

.setup-steps-plain p:last-child {
  margin-bottom: 0;
}

.setup-steps-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 0.15rem;
}

.setup-steps-inline {
  margin-top: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.setup-steps-inline h3 {
  font-size: 1.16rem;
}

.setup-steps-inline .setup-steps-list {
  display: block;
  list-style: decimal;
  padding-left: 1.2rem;
}

.setup-steps-inline .setup-steps-list li {
  border: 0;
  background: transparent;
  padding: 0;
  display: list-item;
}

.setup-steps-inline .step-chip {
  display: none;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.76rem 1.3rem;
  border-radius: 999px;
  border: 1.2px solid rgba(214, 234, 255, 0.36);
  background: linear-gradient(155deg, rgba(139, 198, 255, 0.36), rgba(88, 139, 255, 0.24) 56%, rgba(53, 95, 206, 0.2));
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.34), inset 0 -11px 20px rgba(7, 24, 60, 0.34), 0 16px 26px rgba(11, 44, 101, 0.36), 0 26px 42px rgba(0, 0, 0, 0.42), 0 7px 0 rgba(13, 32, 77, 0.42);
  color: #f3f9ff;
  font-weight: 620;
  text-decoration: none;
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.06) 42%, rgba(255, 255, 255, 0) 75%);
  opacity: 0.88;
}

.button::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(130% 100% at 22% -25%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08) 32%, rgba(255, 255, 255, 0) 62%);
  opacity: 0.52;
  mix-blend-mode: screen;
}

.button > * {
  position: relative;
  z-index: 1;
}

.button.secondary {
  background: linear-gradient(165deg, rgba(31, 44, 76, 0.33), rgba(10, 16, 30, 0.64) 50%, rgba(7, 12, 24, 0.74));
  color: #d9ebff;
  border-color: rgba(193, 224, 255, 0.38);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.28), inset 0 -12px 22px rgba(1, 8, 24, 0.4), 0 14px 24px rgba(8, 24, 56, 0.42), 0 24px 40px rgba(0, 0, 0, 0.45), 0 7px 0 rgba(3, 14, 38, 0.5);
}

.button:hover,
.button:focus {
  background: linear-gradient(155deg, rgba(180, 221, 255, 0.52), rgba(120, 173, 255, 0.3) 56%, rgba(65, 114, 224, 0.24));
  border-color: rgba(233, 245, 255, 0.72);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.44), inset 0 -12px 22px rgba(9, 32, 76, 0.34), 0 20px 30px rgba(15, 54, 116, 0.42), 0 30px 50px rgba(0, 0, 0, 0.44), 0 8px 0 rgba(12, 37, 92, 0.4);
}

.button:active {
  transform: translateY(1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 -9px 18px rgba(9, 28, 67, 0.32), 0 9px 16px rgba(10, 32, 76, 0.34), 0 16px 28px rgba(0, 0, 0, 0.36), 0 4px 0 rgba(12, 37, 92, 0.34);
}

.button.secondary:hover,
.button.secondary:focus {
  background: linear-gradient(165deg, rgba(49, 72, 126, 0.45), rgba(20, 30, 56, 0.66) 52%, rgba(9, 15, 30, 0.8));
  color: #e8f3ff;
  border-color: rgba(218, 238, 255, 0.62);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.36), inset 0 -12px 22px rgba(2, 10, 29, 0.42), 0 18px 29px rgba(7, 24, 58, 0.44), 0 30px 48px rgba(0, 0, 0, 0.46), 0 8px 0 rgba(4, 17, 45, 0.46);
}

.list-clean {
  padding-left: 1.2rem;
}

.list-clean li {
  margin-bottom: 0.5rem;
}

.numbered-list {
  padding-left: 1.2rem;
}

.list-check {
  list-style: none;
  padding-left: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.4rem;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.price {
  font-size: clamp(2rem, 5vw, 2.6rem);
  margin: 0.2rem 0;
  line-height: 1.1;
}


.price-was {
  text-decoration: line-through;
  opacity: 0.72;
  font-size: 0.76em;
  margin-right: 0.5rem;
}

.price-now {
  color: #f7fbff;
}

.price-meta,
.meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0.35rem 0;
}

.page-intro {
  padding: var(--space-md) 0 var(--space-sm);
}

.risk-reducers,
.secondary-cta {
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

.stepper li {
  padding: 0.84rem;
}

.stepper span {
  display: inline-flex;
  width: 1.55rem;
  height: 1.55rem;
  align-items: center;
  justify-content: center;
  background: rgba(122, 184, 255, 0.35);
  border: 1px solid rgba(205, 229, 255, 0.44);
  color: #f7fbff;
  border-radius: 999px;
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.callout,
.provider-recommendation {
  border-left: 3px solid rgba(154, 198, 255, 0.72);
}


.compact-flow h2 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.compact-flow p {
  margin: 0.4rem 0;
}


.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.badges span {
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-size: 0.9rem;
}

.provider-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 1rem;
  overflow: hidden;
}

.provider-table th,
.provider-table td {
  padding: 0.62rem;
  border-bottom: 1px solid rgba(193, 217, 255, 0.16);
  text-align: left;
  vertical-align: top;
  background: transparent;
}

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

.provider-grid-compact {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.provider-card {
  padding: 1.1rem;
}

.provider-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.provider-card h3 a {
  text-decoration: none;
}

.provider-card h3 a:hover {
  text-decoration: underline;
}

.provider-recommendation {
  padding: 1.5rem;
}

.provider-updated {
  text-align: right;
  margin-top: 1rem;
}

.faq-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.faq-toc a {
  padding: 0.36rem 0.68rem;
  border-radius: 999px;
}

.accordion-item {
  margin-top: 1rem;
  padding: 0.2rem 1.25rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.accordion-item:first-of-type {
  margin-top: 0.25rem;
}

.accordion-item:hover {
  border-color: rgba(232, 242, 255, 0.34);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4), 0 6px 14px rgba(3, 9, 22, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.32), inset 0 -14px 22px rgba(0, 0, 0, 0.2);
}

.accordion-item:focus-within {
  border-color: rgba(202, 224, 255, 0.44);
  box-shadow: 0 0 0 3px rgba(143, 192, 255, 0.24), var(--glass-shadow-soft), var(--glass-shadow-contact), var(--glass-inset-top), var(--glass-inset-bottom);
}

.accordion-trigger {
  width: 100%;
  display: block;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 1rem 0;
  min-height: 3rem;
  font: inherit;
  font-weight: 620;
  line-height: 1.45;
  color: var(--text);
  cursor: pointer;
}

.accordion-trigger:hover {
  color: #f7fbff;
}

.accordion-trigger:focus-visible {
  outline: 2px solid rgba(156, 203, 255, 0.66);
  outline-offset: 5px;
  border-radius: 12px;
}

.accordion-panel {
  padding: 0.2rem 0 1.4rem;
}

.accordion-panel p,
.accordion-panel ul {
  margin-top: 0.35rem;
  margin-bottom: 0.85rem;
}

.accordion-panel[hidden] {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(175deg, rgba(9, 14, 28, 0.88), rgba(6, 10, 22, 0.95));
  color: #dce8ff;
  padding: 2rem 0 3rem;
  margin-top: 3rem;
  backdrop-filter: blur(20px) saturate(130%);
}

@media (prefers-reduced-motion: reduce) {
  .ambient-bg,
  .ambient-bg::before,
  .ambient-bg::after {
    animation: none !important;
  }
}

.site-footer a {
  color: #bcd6ff;
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-note {
  font-size: 0.9rem;
  color: #a8bde4;
}

.footer-label {
  font-weight: 620;
  color: #f5f9ff;
}

.legal-wrap {
  width: min(920px, 100%);
}

.legal-doc {
  padding: 2rem;
}

.legal-doc h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.legal-doc h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.legal-doc p,
.legal-doc li {
  line-height: 1.75;
}

.legal-toc {
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
}

.legal-toc ul {
  margin: 0;
  padding-left: 1.1rem;
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 760px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .setup-steps-full .setup-steps-list {
    grid-template-columns: 1fr;
  }

  .cta-with-setup {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    gap: 0.5rem;
  }

}


.callout-spaced {
  margin-top: 1.4rem;
}


.baseline-subhead {
  font-size: 1.15rem;
  line-height: 1.45;
}
