:root {
  --indigo: #1e2a44;
  --orange: #ff6b35;
  --teal: #00d4aa;
  --charcoal: #2d3748;
  --offwhite: #f7fafc;

  --bg: #0b1020;
  --card: rgba(30, 42, 68, 0.34);
  --card2: rgba(13, 19, 35, 0.6);
  --stroke: rgba(247, 250, 252, 0.12);
  --stroke2: rgba(247, 250, 252, 0.08);

  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--offwhite);
  background: radial-gradient(1000px 600px at 15% 15%, rgba(0, 212, 170, 0.12), transparent 60%),
    radial-gradient(1000px 600px at 85% 10%, rgba(255, 107, 53, 0.12), transparent 55%),
    radial-gradient(1200px 900px at 50% 90%, rgba(30, 42, 68, 0.35), transparent 60%),
    var(--bg);
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06), transparent 35%),
    radial-gradient(900px 500px at 50% 0%, rgba(0, 212, 170, 0.06), transparent 60%);
  mix-blend-mode: screen;
}

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

.mono { font-family: "Inter Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 16, 32, 0.65);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stroke2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--offwhite);
}

.brand__mark { width: 26px; height: 26px; }
.brand__word {
  letter-spacing: 0.16em;
  font-weight: 700;
}

.nav { display: flex; gap: 18px; }
.nav a {
  color: rgba(247, 250, 252, 0.82);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.nav a:hover { color: var(--offwhite); }

.hero { padding: 64px 0 40px; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.kicker {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(247, 250, 252, 0.72);
  border: 1px solid var(--stroke2);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(13, 19, 35, 0.35);
}

h1 {
  margin: 16px 0 12px;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.grad {
  background: linear-gradient(90deg, var(--orange), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(247, 250, 252, 0.78);
}

.cta { display: flex; gap: 12px; margin-top: 22px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--stroke2);
  color: var(--offwhite);
  background: rgba(13, 19, 35, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn--primary {
  border: 0;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  color: #0b1020;
}

.btn--primary:hover { filter: brightness(1.05); }
.btn--ghost:hover { background: rgba(247, 250, 252, 0.08); }

.mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.mini__item {
  border: 1px solid var(--stroke2);
  border-radius: 14px;
  padding: 12px;
  background: rgba(13, 19, 35, 0.35);
}

.mini__num { font-size: 18px; font-weight: 700; }
.mini__label { color: rgba(247, 250, 252, 0.7); font-size: 12px; margin-top: 4px; }

.card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(30, 42, 68, 0.38), rgba(13, 19, 35, 0.35));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card--glow {
  position: relative;
}

.card--glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(500px 200px at 20% 10%, rgba(255, 107, 53, 0.35), transparent 60%),
    radial-gradient(500px 220px at 80% 0%, rgba(0, 212, 170, 0.25), transparent 60%);
  filter: blur(18px);
  z-index: 0;
}

.card__top,
.card__body { position: relative; z-index: 1; }

.card__top {
  display: flex;
  gap: 8px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid var(--stroke2);
}

.pill {
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.25);
}

.pill--muted {
  background: rgba(247, 250, 252, 0.08);
  border: 1px solid var(--stroke2);
  font-weight: 700;
}

.card__body { padding: 14px; }

.route {
  border: 1px solid var(--stroke2);
  border-radius: 14px;
  overflow: hidden;
}

.route__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: rgba(13, 19, 35, 0.35);
}

.route__row--alt {
  background: rgba(0, 212, 170, 0.08);
}

.route__title { font-weight: 800; }
.route__meta { color: rgba(247, 250, 252, 0.74); }

.savings {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--stroke2);
  border-radius: 14px;
  padding: 12px;
  background: rgba(13, 19, 35, 0.35);
}

.savings__num { font-size: 22px; font-weight: 900; }
.savings__label { font-size: 12px; color: rgba(247, 250, 252, 0.7); margin-top: 2px; }

.check {
  font-weight: 800;
  color: rgba(0, 212, 170, 0.95);
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.2);
  padding: 8px 10px;
  border-radius: 999px;
}

.caption {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(247, 250, 252, 0.65);
}

.section { padding: 56px 0; }
.section--tight { padding: 38px 0 64px; }

h2 {
  margin: 0;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 28px;
  letter-spacing: -0.015em;
}

.section__sub {
  margin-top: 10px;
  color: rgba(247, 250, 252, 0.76);
  line-height: 1.6;
  max-width: 70ch;
}

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

.tile {
  border: 1px solid var(--stroke2);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(13, 19, 35, 0.35);
}

.tile__head { display: flex; align-items: center; gap: 10px; }
.tile__head img { width: 22px; height: 22px; }
.tile h3 { margin: 0; font-size: 16px; }
.tile p { margin: 10px 0 0; color: rgba(247, 250, 252, 0.74); line-height: 1.55; }

.tile__foot { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; }

.link {
  text-decoration: none;
  font-weight: 800;
  color: rgba(247, 250, 252, 0.9);
}
.link:hover { color: var(--teal); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke2);
  background: rgba(30, 42, 68, 0.22);
  color: rgba(247, 250, 252, 0.78);
}

.panel {
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) + 6px);
  padding: 18px;
  background: linear-gradient(180deg, rgba(30, 42, 68, 0.35), rgba(13, 19, 35, 0.45));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.bullets { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.bullets li { display: flex; align-items: center; gap: 10px; color: rgba(247, 250, 252, 0.78); }

.dot { width: 10px; height: 10px; border-radius: 999px; display: inline-block; }
.dot--teal { background: var(--teal); }
.dot--orange { background: var(--orange); }
.dot--indigo { background: #7aa2ff; }

.panel__form {
  border: 1px solid var(--stroke2);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(13, 19, 35, 0.35);
}

.label { font-weight: 800; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247, 250, 252, 0.7); }

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

input {
  flex: 1;
  border-radius: 12px;
  border: 1px solid var(--stroke2);
  background: rgba(11, 16, 32, 0.65);
  color: var(--offwhite);
  padding: 12px 12px;
  font-size: 16px;
  outline: none;
}

input::placeholder { color: rgba(247, 250, 252, 0.45); }
input:focus { border-color: rgba(0, 212, 170, 0.45); box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.12); }

.fine { margin-top: 10px; color: rgba(247, 250, 252, 0.6); font-size: 12px; line-height: 1.5; }
.status { margin-top: 12px; font-weight: 700; min-height: 18px; }

.footer {
  padding: 26px 0 40px;
  border-top: 1px solid var(--stroke2);
  background: rgba(11, 16, 32, 0.35);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 14px;
  align-items: center;
}

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

.footer__brand img { width: 22px; height: 22px; }
.footer__word { font-weight: 900; letter-spacing: 0.16em; }
.footer__tag { font-size: 12px; color: rgba(247, 250, 252, 0.68); margin-top: 2px; }

.footer__links { display: flex; gap: 14px; justify-content: center; }
.footer__links a { color: rgba(247, 250, 252, 0.76); text-decoration: none; font-weight: 700; font-size: 13px; }
.footer__links a:hover { color: var(--teal); }

.footer__copy { text-align: right; color: rgba(247, 250, 252, 0.6); font-size: 12px; }

@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .panel { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__copy { text-align: center; }
  .footer__links { justify-content: center; }
}
