:root {
  --bg-0: #0A0A0C;
  --bg-1: #131317;
  --bg-2: #1C1C21;
  --card: #16161B;
  --card-hover: #1E1E24;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text-primary: #F5F5F7;
  --text-secondary: rgba(245, 245, 247, 0.68);
  --text-tertiary: rgba(245, 245, 247, 0.48);
  --blue: #0071E3;
  --blue-light: #29C1FF;
  --yellow: #F5C518;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 11px;
  --shadow-soft: 0 1px 0 rgba(255,255,255,0.04) inset, 0 10px 30px rgba(0,0,0,0.35);
  --shadow-lift: 0 24px 60px rgba(0,0,0,0.5);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  background: var(--bg-0);
  color: var(--text-primary);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img, svg {
  display: block;
}

/* Reveal-on-scroll: content is fully visible with no JS; JS only adds the animated entrance */
.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.site-header img {
  width: 32px;
  height: 32px;
}

.site-header .wordmark {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
}

.site-nav a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.site-nav a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.icon-lg {
  width: 22px;
  height: 22px;
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Router page */
.intro {
  text-align: center;
  padding: 56px 20px 8px;
}

.intro h1 {
  font-size: 36px;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text-primary);
}

.intro p.tagline {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0 0 4px;
}

.intro p.picker {
  font-size: 15.5px;
  margin: 20px 0 0;
  font-weight: 600;
  color: var(--text-primary);
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 40px 20px 80px;
  max-width: 1040px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .choice-grid {
    grid-template-columns: 1fr;
  }
}

.choice-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.choice-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: var(--border-strong);
  background: var(--card-hover);
}

.choice-card h2 {
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.choice-card p {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0 0 22px;
  flex-grow: 1;
}

/* Buttons */
.btn, .btn-outline, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-weight: 650;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease), background 0.2s var(--ease);
}

.btn {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #FFFFFF;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 10px 24px rgba(0, 113, 227, 0.35);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 14px 30px rgba(0, 113, 227, 0.45);
}

.btn-outline {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 1.5px solid var(--border-strong);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-primary);
  padding: 10px 18px;
  font-size: 13.5px;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 900px 520px at 50% -8%, rgba(0, 113, 227, 0.28), transparent 62%),
    radial-gradient(ellipse 600px 400px at 90% 10%, rgba(41, 193, 255, 0.10), transparent 60%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-2) 100%);
  color: var(--text-primary);
  text-align: center;
  padding: 76px 20px 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  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: radial-gradient(ellipse 700px 420px at 50% 0%, black, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 0 0 rgba(41, 193, 255, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(41, 193, 255, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(41, 193, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(41, 193, 255, 0); }
}

.hero h1 {
  font-size: 48px;
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--text-primary);
}

.hero .highlight {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 34px;
}

.hero .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Stat strip */
.stat-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

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

.stat-cell {
  text-align: center;
  padding: 26px 12px;
  border-right: 1px solid var(--border);
}

.stat-cell:last-child {
  border-right: none;
}

@media (max-width: 760px) {
  .stat-cell:nth-child(2n) {
    border-right: none;
  }
  .stat-cell:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }
}

.stat-cell .stat-icon {
  color: var(--blue-light);
  margin: 0 auto 10px;
}

.stat-cell .stat-value {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.stat-cell .stat-label {
  font-size: 12.5px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

/* Sections */
section {
  padding: 72px 20px;
}

.section-tight {
  padding-top: 0;
}

.eyebrow-light {
  display: block;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 10px;
}

section h2 {
  font-size: 30px;
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text-primary);
}

.section-lead {
  text-align: center;
  color: var(--text-secondary);
  font-size: 16.5px;
  max-width: 640px;
  margin: 0 auto 44px;
}

/* About / trust band */
.about-band {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-copy p {
  color: var(--text-secondary);
  font-size: 16.5px;
  margin: 0 0 28px;
}

.chip-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 16px;
}

.chip .icon {
  color: var(--blue-light);
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(0, 113, 227, 0.45);
  background: var(--card-hover);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,113,227,0.22), rgba(41,193,255,0.14));
  border: 1px solid rgba(0, 113, 227, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-bottom: 16px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--text-primary);
}

.feature-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14.5px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  text-align: center;
  padding: 8px;
  position: relative;
}

.step .step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #FFFFFF;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(0, 113, 227, 0.4);
}

.step h3 {
  font-size: 16.5px;
  margin: 0 0 8px;
  color: var(--text-primary);
}

.step p {
  color: var(--text-secondary);
  font-size: 14.5px;
  margin: 0;
}

/* Why-us icon grid */
.why-section {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
}

.why-card .feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.why-card strong {
  display: block;
  font-size: 14.5px;
  margin-bottom: 3px;
  color: var(--text-primary);
}

.why-card span {
  font-size: 13.5px;
  color: var(--text-secondary);
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--text-primary);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .chevron {
  color: var(--blue-light);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}

.faq-item[open] .chevron {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0 0 20px;
  color: var(--text-secondary);
  font-size: 14.5px;
  max-width: 660px;
}

/* Service area */
.service-area {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.service-area p {
  color: var(--text-secondary);
  font-size: 16px;
}

.pin-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,113,227,0.22), rgba(41,193,255,0.14));
  border: 1px solid rgba(0, 113, 227, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--blue-light);
}

/* Closing CTA */
.closing {
  position: relative;
  background:
    radial-gradient(ellipse 700px 400px at 50% 0%, rgba(0, 113, 227, 0.24), transparent 65%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-0) 100%);
  color: var(--text-primary);
  text-align: center;
  padding: 72px 20px;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.closing h2 {
  color: var(--text-primary);
  margin: 0 0 12px;
}

.closing .section-lead {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.closing .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 32px 20px;
  color: var(--text-tertiary);
  font-size: 13px;
  border-top: 1px solid var(--border);
  background: var(--bg-0);
}

.site-footer a {
  color: var(--text-secondary);
}

/* Homepage hero visual (two-column hero, illustration, and nationwide coverage graphic) */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  text-align: left;
  padding-bottom: 56px;
}

@media (max-width: 940px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 32px;
  }
}

.hero-copy h1 {
  text-align: left;
}

.hero-copy .sub {
  text-align: left;
  margin: 0 0 28px;
  max-width: 480px;
}

@media (max-width: 940px) {
  .hero-copy h1,
  .hero-copy .sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-copy .cta-row {
    justify-content: center !important;
  }
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  justify-self: center;
  margin: 0 auto;
}

.hero-visual svg {
  width: 100%;
  height: 100%;
}

.radar-ring {
  fill: none;
  stroke: var(--blue-light);
  stroke-width: 1.5;
  opacity: 0;
  animation: radarPulse 3s ease-out infinite;
}

.radar-ring.r2 {
  animation-delay: 1s;
}

.radar-ring.r3 {
  animation-delay: 2s;
}

@keyframes radarPulse {
  0% { r: 95; opacity: 0.55; }
  100% { r: 195; opacity: 0; }
}

.node-dot {
  animation: nodePulse 2.4s ease-in-out infinite;
}

.node-dot.dot-b {
  animation-delay: 0.6s;
}

@keyframes nodePulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(19,19,23,0.78);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

.float-badge .icon {
  width: 14px;
  height: 14px;
  color: var(--blue-light);
  flex-shrink: 0;
}

.badge-top {
  top: 4%;
  right: 0;
}

.badge-bottom {
  bottom: 6%;
  left: 0;
}

@media (max-width: 940px) {
  .badge-top {
    top: 0;
    right: 2%;
  }
  .badge-bottom {
    bottom: 2%;
    left: 2%;
  }
}

@media (max-width: 520px) {
  .float-badge {
    font-size: 10px;
    padding: 6px 10px;
  }
}

.picker-line {
  text-align: center;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
