:root {
  --navy-950: #050810;
  --navy-900: #070c18;
  --navy-800: #0b1220;
  --navy-700: #10192b;
  --blue: #2f8bff;
  --blue-bright: #4aa0ff;
  --white: #f5f8ff;
  --muted: #aab3c8;
  --border: rgba(255,255,255,0.1);
  --radius: 14px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--white);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0; }
.accent { color: var(--blue-bright); }

.icon-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-circle svg { width: 24px; height: 24px; color: var(--white); }
.icon-circle.small { width: 44px; height: 44px; border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.04); }
.icon-circle.small svg { width: 20px; height: 20px; color: var(--blue-bright); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 0.9em 1.6em;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 24px rgba(47,139,255,0.35);
}
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-1px); }
.btn-lg { padding: 1.1em 1.8em; font-size: 1.05rem; width: 100%; max-width: 480px; }
.arrow { transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5,8,16,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  padding: 0.9rem 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-icon { width: 34px; height: 34px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 800; font-size: 1.05rem; }
.brand-tagline { font-size: 0.6rem; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; }

.main-nav { display: flex; gap: 1.75rem; margin-left: auto; }
.main-nav a { font-size: 0.92rem; font-weight: 500; color: var(--muted); padding-bottom: 4px; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: var(--white); border-color: var(--blue); }

.header-cta { margin-left: 0.5rem; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
  margin-left: auto;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

/* HERO */
.hero { position: relative; overflow: hidden; padding: 3.5rem 1.5rem 3rem; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center right;
  opacity: 0.9;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy-950) 0%, rgba(5,8,16,0.94) 30%, rgba(5,8,16,0.55) 55%, rgba(5,8,16,0.15) 75%, rgba(5,8,16,0.35) 100%),
              linear-gradient(0deg, var(--navy-950) 0%, rgba(5,8,16,0) 22%);
}
.hero-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.05; margin-bottom: 1.1rem; max-width: 620px; }
.hero-copy { max-width: 540px; color: var(--muted); font-size: 1.05rem; margin-bottom: 1.75rem; }

.use-icons { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-bottom: 2rem; }
.use-icons li { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; width: 92px; text-align: center; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.03em; }

.link-bar {
  display: flex; align-items: center; gap: 0.7rem;
  max-width: 480px;
  margin-top: 1rem;
  padding: 0.85em 1em;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}
.link-icon { flex-shrink: 0; color: var(--muted); }
.link-bar span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; }
.copy-btn { background: none; border: none; color: var(--muted); cursor: pointer; padding: 4px; flex-shrink: 0; }
.copy-btn:hover { color: var(--white); }
.copy-feedback { min-height: 1.2em; font-size: 0.8rem; color: var(--blue-bright); margin-top: 0.4rem; font-weight: 600; }

.qr-row { display: flex; align-items: center; gap: 1.25rem; margin-top: 1.75rem; }
.qr-code { width: 96px; height: 96px; border-radius: 10px; }
.qr-note { font-family: "Caveat", cursive; font-size: 1.4rem; line-height: 1.15; color: var(--blue-bright); }

.perk-icons { display: flex; flex-wrap: wrap; gap: 1.75rem 2.25rem; margin-top: 2.5rem; }
.perk-icons li { display: flex; align-items: center; gap: 0.55rem; font-size: 0.85rem; font-weight: 700; }
.perk-icons svg { width: 20px; height: 20px; color: var(--blue-bright); flex-shrink: 0; }

/* QUICK BAR */
.quick-bar { background: var(--navy-900); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.25rem 1.5rem 1.25rem; }
.quick-bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr) auto;
  gap: 2rem; align-items: center;
}
.quick-item { display: flex; gap: 1rem; align-items: flex-start; }
.quick-item strong { display: block; margin-bottom: 0.25rem; font-size: 1rem; }
.quick-item span:last-child { color: var(--muted); font-size: 0.88rem; }
.quick-cta { justify-self: end; }
.quick-disclaimer { max-width: 1280px; margin: 1.5rem auto 0; text-align: right; color: var(--muted); font-size: 0.78rem; }

/* SECTIONS */
.section { padding: 5.5rem 1.5rem; }
.section.alt { background: var(--navy-900); }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-inner.narrow { max-width: 800px; }
.section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.75rem; }
.section-lede { color: var(--muted); font-size: 1.05rem; max-width: 620px; margin-bottom: 3rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step-card {
  background: var(--navy-800); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(47,139,255,0.15); color: var(--blue-bright);
  font-weight: 800; margin-bottom: 1.25rem;
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.step-card p { color: var(--muted); font-size: 0.92rem; }

.coverage-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: start; }
.check-list li { position: relative; padding-left: 1.75rem; margin-bottom: 0.9rem; color: var(--white); font-size: 1rem; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--blue-bright); font-weight: 800;
}
.fine-print { color: var(--muted); font-size: 0.82rem; margin-top: 1.5rem; }
.coverage-stats { display: grid; gap: 1.25rem; }
.stat-card { background: var(--navy-800); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.75rem; display: flex; align-items: baseline; gap: 0.9rem; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--blue-bright); }
.stat-label { color: var(--muted); font-size: 0.88rem; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.benefit-card { background: var(--navy-800); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.benefit-card .icon-circle { margin-bottom: 1.25rem; }
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.benefit-card p { color: var(--muted); font-size: 0.9rem; }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--navy-800); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
}
.faq-item summary {
  cursor: pointer; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: space-between;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--blue-bright); margin-left: 1rem; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { color: var(--muted); margin-top: 0.9rem; font-size: 0.92rem; }
.faq-item a { color: var(--blue-bright); text-decoration: underline; }

/* FOOTER */
.site-footer { background: var(--navy-950); border-top: 1px solid var(--border); padding: 3.5rem 1.5rem 1.5rem; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--border);
}
.footer-note { color: var(--muted); font-size: 0.85rem; margin-top: 1rem; max-width: 320px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links h4, .footer-contact h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.4rem; }
.footer-links a, .footer-contact a:not(.btn) { color: var(--white); font-size: 0.92rem; }
.footer-links a:hover, .footer-contact a:not(.btn):hover { color: var(--blue-bright); }
.footer-cta { margin-top: 0.5rem; width: fit-content; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding-top: 1.5rem;
  display: flex; justify-content: space-between; color: var(--muted); font-size: 0.8rem; flex-wrap: wrap; gap: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .quick-bar-inner { grid-template-columns: 1fr; }
  .quick-cta { justify-self: start; }
  .quick-disclaimer { text-align: left; }
  .steps, .benefit-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .main-nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-900); border-bottom: 1px solid var(--border);
    padding: 0.5rem 1.5rem 1rem;
  }
  .main-nav.open a { padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
}

@media (max-width: 640px) {
  .hero { padding-top: 2rem; }
  .use-icons { gap: 1.1rem; }
  .use-icons li { width: 78px; }
  .btn-lg { width: 100%; }
  .link-bar { max-width: 100%; }
  .perk-icons { gap: 1.25rem 1.5rem; }
}
