:root {
  --bg: #07090d;
  --bg-soft: #0c1017;
  --panel: #101722;
  --panel-2: #151e2b;
  --text: #f3f6f8;
  --muted: #929dad;
  --line: rgba(215, 255, 51, 0.22);
  --lime: #d7ff33;
  --cyan: #55e7ff;
  --blue: #536dff;
  --violet: #a277ff;
  --orange: #ff8d45;
  --danger: #ff5d7b;
  --black: #050609;
  --shell: min(1240px, calc(100% - 48px));
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd,
pre {
  margin: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--black);
  background: var(--lime);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 9, 13, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid var(--lime);
  color: var(--black);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 25px;
  font-weight: 900;
  box-shadow: 6px 6px 0 rgba(83, 109, 255, 0.55);
  clip-path: polygon(0 0, 83% 0, 100% 17%, 100% 100%, 0 100%);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: clamp(20px, 2.6vw, 38px);
  margin-right: 32px;
}

.desktop-nav a {
  position: relative;
  color: #c7cdd7;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::before {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.desktop-nav a:hover::before,
.desktop-nav a:focus-visible::before {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--lime);
  border-radius: 0;
  padding: 0 25px;
  color: var(--black);
  background: var(--lime);
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.button b {
  font-size: 18px;
}

.button:hover,
.button:focus-visible {
  color: var(--text);
  background: var(--blue);
  box-shadow: 7px 7px 0 rgba(215, 255, 51, 0.75);
  transform: translate(-2px, -2px);
}

.button:focus-visible,
.text-link:focus-visible,
.service-card button:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible,
.modal-header button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.button-small {
  min-height: 43px;
  padding-inline: 20px;
}

.button-large {
  min-height: 62px;
  padding-inline: 32px;
}

.button-outline {
  color: var(--text);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--black);
  background: var(--cyan);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: transparent;
  cursor: pointer;
}

.menu-toggle i {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease;
}

.menu-toggle i:first-child {
  transform: translateY(-4px);
}

.menu-toggle i:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] i:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: 146px 0 0;
  background:
    radial-gradient(circle at 80% 35%, rgba(83, 109, 255, 0.18), transparent 28%),
    radial-gradient(circle at 15% 72%, rgba(85, 231, 255, 0.09), transparent 25%),
    var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  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: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 85%);
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.hero-glow {
  position: absolute;
  border: 1px solid rgba(215, 255, 51, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-one {
  top: 110px;
  right: -190px;
  width: 660px;
  height: 660px;
}

.hero-glow-two {
  top: 205px;
  right: -87px;
  width: 450px;
  height: 450px;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(48px, 7vw, 95px);
  grid-template-columns: 0.85fr 1.15fr;
  padding-bottom: 84px;
}

.live-chip,
.final-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(215, 255, 51, 0.45);
  padding: 8px 11px;
  color: var(--lime);
  background: rgba(215, 255, 51, 0.05);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.live-chip span,
.final-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px var(--lime);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.72); }
}

h1,
h2 {
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

h1 {
  margin-top: 28px;
  font-size: clamp(72px, 8.4vw, 132px);
  text-transform: uppercase;
}

h1 em,
h2 em {
  color: var(--lime);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin-top: 30px;
  color: #b2bbc8;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.text-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 4px;
  color: #d8dde5;
  font-size: 13px;
  font-weight: 750;
}

.text-link span {
  margin-left: 8px;
  color: var(--lime);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 40px;
}

.hero-tags span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 9px;
  color: #8e99aa;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.hero-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(215, 255, 51, 0.5);
  padding: 18px;
  background: rgba(8, 12, 18, 0.8);
  box-shadow:
    18px 18px 0 rgba(83, 109, 255, 0.16),
    0 0 70px rgba(83, 109, 255, 0.14);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}

.console-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 1px 4px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #8e99aa;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.signal {
  display: inline-flex;
  align-items: end;
  gap: 3px;
  color: var(--lime);
}

.signal i {
  width: 3px;
  background: currentColor;
}

.signal i:nth-child(1) { height: 4px; }
.signal i:nth-child(2) { height: 7px; }
.signal i:nth-child(3) { height: 10px; margin-right: 5px; }

.radar {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 420px;
  place-items: center;
  background:
    linear-gradient(rgba(85, 231, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 231, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}

.radar::before,
.radar::after {
  position: absolute;
  background: rgba(85, 231, 255, 0.13);
  content: "";
}

.radar::before {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.radar::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.radar-ring {
  position: absolute;
  border: 1px solid rgba(85, 231, 255, 0.13);
  border-radius: 50%;
}

.ring-one { width: 165px; height: 165px; }
.ring-two { width: 280px; height: 280px; }
.ring-three { width: 410px; height: 410px; }

.radar-sweep {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  opacity: 0.55;
  background: conic-gradient(from 0deg, rgba(215, 255, 51, 0.24), transparent 17%, transparent);
  animation: spin 7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.car-schematic {
  position: relative;
  z-index: 2;
  width: 88%;
  color: var(--lime);
  filter: drop-shadow(0 0 13px rgba(215, 255, 51, 0.35));
}

.car-name {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 12px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.console-stats {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  grid-template-columns: repeat(3, 1fr);
}

.console-stats article {
  padding: 14px 12px;
  background: var(--bg-soft);
}

.console-stats small {
  display: block;
  margin-bottom: 6px;
  color: #707c8d;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.console-stats strong {
  display: block;
  color: #e2e7ee;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.25;
}

.ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(215, 255, 51, 0.7);
  border-bottom: 1px solid rgba(215, 255, 51, 0.7);
  padding: 14px 0;
  background: var(--lime);
  color: var(--black);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 23px;
  animation: ticker 32s linear infinite;
}

.ticker span {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ticker i {
  width: 7px;
  height: 7px;
  background: var(--blue);
  transform: rotate(45deg);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: 116px 0;
}

.section-head {
  display: grid;
  align-items: start;
  gap: 40px;
  grid-template-columns: 0.3fr 1fr;
  margin-bottom: 64px;
}

.section-head > div,
.benefits-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
}

.section-no {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--lime);
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
}

.section-label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-head h2 {
  max-width: 900px;
  font-size: clamp(50px, 6vw, 82px);
}

.services-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--bg-soft);
  background-size: 80px 100%;
}

.service-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 390px;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: clamp(27px, 4vw, 45px);
  background: var(--panel);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}

.service-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--bg-soft);
  content: "";
  transform: rotate(-45deg) translate(7px, -7px);
  transform-origin: center;
}

.service-card-main {
  background:
    radial-gradient(circle at 85% 10%, rgba(85, 231, 255, 0.16), transparent 30%),
    var(--panel);
}

.service-card-accent {
  color: var(--black);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 40%),
    var(--lime);
}

.card-code {
  color: #748093;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.service-card-accent .card-code {
  color: rgba(5, 6, 9, 0.55);
}

.service-icon {
  position: absolute;
  top: 33px;
  right: 34px;
  display: grid;
  width: 69px;
  height: 69px;
  place-items: center;
  border: 1px solid rgba(215, 255, 51, 0.5);
  color: var(--lime);
  background: rgba(215, 255, 51, 0.04);
}

.service-card-accent .service-icon {
  border-color: rgba(5, 6, 9, 0.5);
  color: var(--black);
  background: rgba(5, 6, 9, 0.06);
}

.service-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  max-width: 470px;
  margin-top: 65px;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.service-card p {
  max-width: 480px;
  margin-top: 17px;
  color: #9aa4b4;
  font-size: 16px;
}

.service-card-accent p {
  color: rgba(5, 6, 9, 0.68);
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 8px;
  color: #8792a2;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.service-card button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 19px 0 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
  text-align: left;
  text-transform: uppercase;
}

.service-card-accent button {
  border-color: rgba(5, 6, 9, 0.25);
  color: var(--black);
}

.service-card button span {
  color: var(--lime);
  font-size: 20px;
}

.service-card-accent button span {
  color: var(--blue);
}

.benefits-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.benefits-section::before {
  position: absolute;
  top: -260px;
  left: -200px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(85, 231, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(85, 231, 255, 0.025), 0 0 0 160px rgba(85, 231, 255, 0.018);
  content: "";
}

.benefits-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  gap: clamp(55px, 8vw, 120px);
  grid-template-columns: 0.78fr 1.22fr;
}

.benefits-copy {
  position: sticky;
  top: 120px;
}

.benefits-copy h2 {
  width: 100%;
  margin-top: 28px;
  font-size: clamp(52px, 5.5vw, 78px);
}

.benefits-copy > p {
  width: 100%;
  max-width: 540px;
  margin-top: 27px;
  color: var(--muted);
  font-size: 17px;
}

.benefit-stack {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-stack article {
  display: grid;
  align-items: center;
  gap: 22px;
  grid-template-columns: 42px 1fr auto;
  padding: 29px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-stack article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--black);
  background: var(--cyan);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
}

.benefit-stack h3 {
  margin-bottom: 6px;
  font-size: clamp(23px, 2.4vw, 33px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.benefit-stack p {
  color: var(--muted);
  font-size: 14px;
}

.benefit-stack b {
  border: 1px solid rgba(85, 231, 255, 0.34);
  padding: 6px 8px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.benefit-stack .benefit-special {
  margin-inline: -20px;
  padding-inline: 20px;
  border-bottom-color: var(--lime);
  color: var(--black);
  background: var(--lime);
}

.benefit-stack .benefit-special > span {
  color: var(--text);
  background: var(--blue);
}

.benefit-stack .benefit-special p {
  color: rgba(5, 6, 9, 0.66);
}

.benefit-stack .benefit-special b {
  border-color: rgba(5, 6, 9, 0.38);
  color: var(--black);
}

.builder-section {
  background:
    linear-gradient(rgba(83, 109, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 109, 255, 0.035) 1px, transparent 1px),
    var(--bg-soft);
  background-size: 50px 50px;
}

.builder-layout {
  display: grid;
  align-items: start;
  gap: 22px;
  grid-template-columns: 1.2fr 0.8fr;
}

.trip-builder,
.trip-summary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 14, 21, 0.94);
}

.trip-builder {
  padding: clamp(24px, 4vw, 47px);
}

.trip-builder fieldset {
  margin: 0 0 36px;
  border: 0;
  padding: 0;
}

.trip-builder legend {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 13px;
  margin-bottom: 15px;
  color: #d9dee6;
  font-size: 15px;
  font-weight: 780;
}

.trip-builder legend span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--lime);
  color: var(--lime);
  font-family: var(--mono);
  font-size: 8px;
}

.choice-grid {
  display: grid;
  gap: 8px;
}

.choice-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.choice-grid-two {
  grid-template-columns: repeat(2, 1fr);
}

.choice-grid label,
.route-options label {
  position: relative;
  min-width: 0;
}

.choice-grid input,
.route-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid label > span,
.route-options label > span {
  display: grid;
  min-height: 77px;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  padding: 13px 15px;
  background: var(--panel);
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.choice-grid b,
.route-options b {
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.25;
}

.choice-grid small,
.route-options small {
  margin-top: 5px;
  color: #9aa6b7;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.choice-grid input:checked + span,
.route-options input:checked + span {
  border-color: var(--lime);
  color: var(--black);
  background: var(--lime);
  box-shadow: inset 0 -4px 0 var(--blue);
}

.choice-grid input:checked + span small,
.route-options input:checked + span small {
  color: rgba(5, 6, 9, 0.62);
}

.choice-grid input:focus-visible + span,
.route-options input:focus-visible + span {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.route-options {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
}

.route-options label:first-child {
  grid-column: 1 / -1;
}

.price-fieldset {
  border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
  padding-top: 31px !important;
}

.price-control {
  border: 1px solid var(--lime);
  padding: 19px 21px;
  background: rgba(215, 255, 51, 0.04);
}

.price-readout {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
}

.price-readout span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.price-readout output {
  color: var(--lime);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

input[type="range"] {
  width: 100%;
  height: 5px;
  border-radius: 0;
  background: linear-gradient(90deg, var(--lime) 0 var(--range-progress, 11%), #28313e var(--range-progress, 11%) 100%);
  cursor: pointer;
  appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  border: 4px solid var(--bg);
  border-radius: 0;
  background: var(--lime);
  box-shadow: 0 0 0 1px var(--lime);
  appearance: none;
}

input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 4px solid var(--bg);
  border-radius: 0;
  background: var(--lime);
  box-shadow: 0 0 0 1px var(--lime);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: #606d7f;
  font-family: var(--mono);
  font-size: 7px;
}

.price-fieldset > p {
  margin-top: 11px;
  color: #737f90;
  font-size: 11px;
}

.details-fieldset {
  border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
  padding-top: 31px !important;
}

.input-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.input-grid label {
  display: grid;
  gap: 7px;
}

.input-grid label > span {
  color: #7d899a;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.input-grid input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  padding: 0 14px;
  color: var(--text);
  outline: 0;
  background: var(--panel);
  font-size: 14px;
}

.input-grid input::placeholder {
  color: #9aa6b7;
}

.input-grid input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan);
}

.builder-submit {
  width: 100%;
}

.trip-summary {
  position: sticky;
  top: 100px;
  overflow: hidden;
  box-shadow: 15px 15px 0 rgba(83, 109, 255, 0.28);
}

.summary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #7a8697;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.summary-top b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
}

.summary-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

.summary-map {
  position: relative;
  overflow: hidden;
  height: 230px;
  color: var(--lime);
  background: #0b1119;
}

.summary-map svg {
  width: 100%;
  height: 100%;
}

.map-grid-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
}

.route-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-dasharray: 8 8;
  filter: drop-shadow(0 0 5px var(--lime));
  animation: dash 1.1s linear infinite;
}

@keyframes dash {
  to { stroke-dashoffset: -16; }
}

.summary-map circle {
  fill: var(--bg);
  stroke: currentColor;
  stroke-width: 4;
}

.map-from,
.map-to {
  position: absolute;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--black);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
}

.map-from {
  bottom: 35px;
  left: 21px;
}

.map-to {
  top: 19px;
  right: 20px;
}

.summary-route {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.summary-route small,
.summary-price > span {
  display: block;
  margin-bottom: 8px;
  color: #727e8f;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.summary-route strong {
  display: block;
  font-size: 20px;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.trip-summary dl {
  padding: 6px 20px;
}

.trip-summary dl div {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1.2fr;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.trip-summary dt {
  color: #6f7b8c;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.trip-summary dd {
  color: #d8dde5;
  font-size: 12px;
  font-weight: 750;
  text-align: right;
}

.summary-price {
  padding: 24px 20px;
  color: var(--black);
  background: var(--lime);
}

.summary-price > span {
  color: rgba(5, 6, 9, 0.55);
}

.summary-price strong {
  display: block;
  font-size: clamp(42px, 5vw, 62px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.summary-price small {
  color: rgba(5, 6, 9, 0.58);
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
}

.summary-note {
  padding: 13px 20px;
  color: #657183;
  font-size: 9px;
  line-height: 1.45;
}

.faq-section {
  background: var(--bg);
}

.faq-layout {
  display: grid;
  gap: clamp(50px, 8vw, 115px);
  grid-template-columns: 0.62fr 1.38fr;
}

.faq-layout > div:first-child {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  align-items: center;
  gap: 11px;
}

.faq-layout h2 {
  width: 100%;
  margin-top: 29px;
  font-size: clamp(50px, 5.5vw, 78px);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--lime);
  color: var(--lime);
  font-family: var(--mono);
  font-size: 17px;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 55px 25px 0;
  color: var(--muted);
  font-size: 15px;
}

.final-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    linear-gradient(135deg, rgba(83, 109, 255, 0.4), transparent 42%),
    var(--panel);
}

.final-section::before {
  position: absolute;
  top: -100px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(215, 255, 51, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(215, 255, 51, 0.03), 0 0 0 150px rgba(215, 255, 51, 0.018);
  content: "";
}

.final-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
}

.final-inner h2 {
  margin-top: 26px;
  font-size: clamp(78px, 11vw, 150px);
  text-transform: uppercase;
}

.final-inner p {
  max-width: 600px;
  margin-top: 27px;
  color: #a5afbe;
  font-size: 18px;
}

.final-inner .button {
  margin-top: 35px;
}

.site-footer {
  padding: 55px 0 20px;
  background: var(--black);
}

.footer-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 43px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand strong {
  font-family: var(--mono);
  font-size: 17px;
  letter-spacing: 0.05em;
}

.footer-brand p {
  margin-top: 8px;
  color: #6f7b8c;
  font-size: 13px;
}

.footer-data {
  display: grid;
  gap: 7px;
}

.footer-data p {
  display: grid;
  gap: 20px;
  grid-template-columns: 80px 1fr;
  color: #a3adbb;
  font-size: 12px;
}

.footer-data span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 17px;
  color: #505b6a;
  font-family: var(--mono);
  font-size: 8px;
}

.footer-bottom a {
  color: #9aa4b4;
}

.mobile-order-bar {
  display: none;
}

.toast {
  position: fixed;
  z-index: 400;
  right: 22px;
  bottom: 22px;
  border: 1px solid var(--lime);
  padding: 11px 15px;
  color: var(--black);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.order-modal {
  width: min(720px, calc(100% - 30px));
  max-width: none;
  border: 1px solid var(--lime);
  padding: 0;
  color: var(--text);
  background: var(--bg-soft);
  box-shadow: 20px 20px 0 rgba(83, 109, 255, 0.45);
}

.order-modal::backdrop {
  background: rgba(2, 3, 5, 0.82);
  backdrop-filter: blur(7px);
}

.modal-shell {
  padding: clamp(23px, 4vw, 40px);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.modal-header small {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.modal-header h2 {
  margin-top: 5px;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.045em;
}

.modal-header button {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  font-size: 26px;
}

.modal-lead {
  margin: 20px 0;
  color: var(--muted);
  font-size: 14px;
}

.order-modal pre {
  overflow: auto;
  max-height: 44vh;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px;
  color: #dbe1e9;
  background: var(--black);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.modal-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 18px;
    margin-right: 20px;
  }

  .hero-layout {
    gap: 38px;
    grid-template-columns: 0.92fr 1.08fr;
  }

  .radar {
    min-height: 360px;
  }

  .section-head {
    grid-template-columns: 0.25fr 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(720px, calc(100% - 36px));
  }

  .header-inner {
    min-height: 70px;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    display: grid;
    padding: 0 18px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 9, 13, 0.98);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav > a:not(.button) {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-nav .button {
    margin-top: 14px;
  }

  .hero {
    min-height: 0;
    padding-top: 120px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-console {
    max-width: 700px;
  }

  .section {
    padding: 86px 0;
  }

  .section-head {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .benefits-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .benefits-copy {
    position: static;
  }

  .builder-layout {
    grid-template-columns: 1fr;
  }

  .trip-summary {
    position: static;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: 70px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .brand-copy strong {
    font-size: 11px;
  }

  .hero {
    padding-top: 105px;
  }

  .hero-glow {
    display: none;
  }

  h1 {
    font-size: clamp(64px, 20vw, 88px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    gap: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    justify-self: start;
  }

  .hero-tags {
    gap: 5px;
  }

  .hero-tags span {
    font-size: 7px;
  }

  .hero-console {
    margin-right: 7px;
    padding: 12px;
    box-shadow: 8px 8px 0 rgba(83, 109, 255, 0.22);
  }

  .radar {
    min-height: 255px;
  }

  .ring-one { width: 110px; height: 110px; }
  .ring-two { width: 190px; height: 190px; }
  .ring-three { width: 270px; height: 270px; }

  .radar-sweep {
    width: 255px;
    height: 255px;
  }

  .console-stats {
    grid-template-columns: 1fr;
  }

  .console-stats article {
    display: grid;
    gap: 12px;
    grid-template-columns: 72px 1fr;
    padding: 9px 10px;
  }

  .console-stats small {
    margin: 0;
  }

  .section {
    padding: 70px 0;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .section-head h2,
  .benefits-copy h2,
  .faq-layout h2 {
    font-size: 45px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 365px;
    padding: 25px 21px;
  }

  .service-icon {
    top: 25px;
    right: 22px;
    width: 58px;
    height: 58px;
  }

  .service-icon svg {
    width: 34px;
    height: 34px;
  }

  .service-card h3 {
    margin-top: 58px;
    font-size: 40px;
  }

  .benefit-stack article {
    align-items: start;
    grid-template-columns: 34px 1fr;
  }

  .benefit-stack article > b {
    display: none;
  }

  .benefit-stack .benefit-special {
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .trip-builder {
    padding: 23px 17px;
  }

  .choice-grid-three {
    grid-template-columns: 1fr;
  }

  .choice-grid-three label > span {
    min-height: 63px;
  }

  .route-options {
    grid-template-columns: 1fr;
  }

  .route-options label:first-child {
    grid-column: auto;
  }

  .choice-grid-two label > span,
  .route-options label > span {
    min-height: 68px;
    padding: 11px;
  }

  .price-control {
    padding: 16px 14px;
  }

  .price-readout {
    align-items: center;
  }

  .price-readout output {
    font-size: 34px;
  }

  .input-grid {
    grid-template-columns: 1fr;
  }

  .trip-summary {
    margin-right: 8px;
    box-shadow: 8px 8px 0 rgba(83, 109, 255, 0.3);
  }

  .summary-map {
    height: 190px;
  }

  .faq-list summary {
    font-size: 17px;
  }

  .final-section {
    padding: 80px 0;
  }

  .final-inner h2 {
    font-size: 67px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-data p {
    grid-template-columns: 70px 1fr;
  }

  .mobile-order-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid var(--lime);
    padding: 8px 13px;
    background: rgba(7, 9, 13, 0.97);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  }

  .mobile-order-bar div {
    display: grid;
    line-height: 1.15;
  }

  .mobile-order-bar small {
    color: var(--lime);
    font-family: var(--mono);
    font-size: 7px;
    letter-spacing: 0.1em;
  }

  .mobile-order-bar strong {
    margin-top: 4px;
    font-size: 14px;
  }

  .mobile-order-bar a {
    display: grid;
    min-width: 108px;
    min-height: 43px;
    place-items: center;
    color: var(--black);
    background: var(--lime);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
