:root {
  color-scheme: dark;
  --bg: #07090d;
  --panel: #11151d;
  --panel-hover: #151b25;
  --line: #242b38;
  --text: #f6f7fa;
  --muted: #9ba6b7;
  --accent: #70f0ba;
  --accent-dark: #091d16;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -15%, rgba(41, 119, 89, .35), transparent 34rem),
    var(--bg);
  color: var(--text);
}

button, input, select { font: inherit; }
a { color: inherit; }

.site-header, main, footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
}

.brand-mark {
  padding: 6px 8px;
  border-radius: 7px;
  background: var(--accent);
  color: #06100c;
  font-size: 13px;
  letter-spacing: .03em;
}

.secure-label {
  color: var(--muted);
  font-size: 13px;
}

.hero {
  padding: 92px 0 74px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 850px;
  margin: 0 auto 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
}

.hero-copy {
  max-width: 680px;
  margin: 0 auto 34px;
  color: #b7c0ce;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
}

.search {
  display: block;
  width: min(580px, 100%);
  margin: 0 auto;
}

.search input {
  width: 100%;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  background: rgba(17, 21, 29, .86);
  color: var(--text);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .25);
}

.search input:focus { border-color: var(--accent); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
}
.trust-row span::before { content: "✓"; margin-right: 7px; color: var(--accent); }

.wizard {
  width: min(900px, 100%);
  min-height: 560px;
  margin: 0 auto 88px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(13, 17, 24, .96);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .3);
}

.progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 46px;
}
.progress i { height: 1px; background: var(--line); }
.progress-step {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #667184;
}
.progress-step span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid #343d4b;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}
.progress-step small { font-size: 12px; font-weight: 800; }
.progress-step.is-active, .progress-step.is-complete { color: var(--text); }
.progress-step.is-active span {
  border-color: var(--accent);
  background: var(--accent);
  color: #06100c;
}
.progress-step.is-complete { cursor: pointer; }
.progress-step.is-complete span {
  border-color: #318d6a;
  background: var(--accent-dark);
  color: var(--accent);
}

.wizard-step h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -.04em;
}
.step-copy {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.55;
}
.back-button {
  margin-bottom: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.back-button:hover { color: var(--text); }

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.option-button, .location-button {
  border: 1px solid var(--line);
  background: #111720;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}
.option-button {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 15px;
  min-height: 105px;
  padding: 19px;
  border-radius: 13px;
}
.option-button strong, .location-button strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}
.option-button span, .location-button span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.option-button:hover, .option-button:focus-visible,
.location-button:hover, .location-button:focus-visible {
  border-color: var(--accent);
  background: #14231e;
  outline: none;
}

.mini-map {
  width: 72px;
  height: 54px;
  opacity: .72;
}

.region-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(180px, .75fr);
  align-items: center;
  gap: 25px;
  margin: -4px 0 24px;
  padding: 19px;
  overflow: hidden;
  border: 1px solid #26343a;
  border-radius: 15px;
  background:
    radial-gradient(circle at 35% 50%, rgba(37, 130, 94, .16), transparent 52%),
    #090e13;
}
.region-map { width: 100%; height: auto; }
.map-ocean { fill: #081015; }
.map-country {
  fill: #26343a;
  stroke: #10191d;
  stroke-width: .7;
  vector-effect: non-scaling-stroke;
  transition: fill .18s ease, opacity .18s ease, stroke .18s ease;
}
.map-country.is-active {
  fill: #3d5b53;
  stroke: #70f0ba;
  opacity: 1;
}
.map-country.is-selected {
  fill: #70f0ba;
  stroke: #c7ffe9;
  stroke-width: 1.4;
}
.showcase-copy span, .showcase-copy small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.showcase-copy span {
  margin-bottom: 5px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.showcase-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
  letter-spacing: -.025em;
}

.wizard .search {
  width: 100%;
  margin: 0 0 18px;
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-height: 390px;
  overflow: auto;
  padding-right: 4px;
}
.location-button {
  min-height: 94px;
  padding: 16px;
  border-radius: 11px;
}
.location-button strong { font-size: 15px; }

.review-card {
  margin: 5px 0 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0a0e14;
}
.review-card div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  padding: 17px 19px;
  border-bottom: 1px solid var(--line);
}
.review-card div:last-child { border-bottom: 0; }
.review-card span { color: var(--muted); font-size: 13px; }
.review-card strong { font-size: 14px; text-align: right; }

.after-checkout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
  padding: 65px 0 85px;
  border-top: 1px solid var(--line);
}
.after-checkout h2 {
  margin: 0;
  font-size: clamp(29px, 4vw, 45px);
  letter-spacing: -.04em;
}
.after-checkout > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.status, .empty-state {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  text-align: center;
}

.checkout-button {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #06100c;
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}
.checkout-button:hover { filter: brightness(1.07); }
.checkout-button[aria-disabled="true"] {
  background: #272e39;
  color: #788394;
  cursor: not-allowed;
  pointer-events: none;
}
.checkout-note {
  margin: 10px 0 0;
  color: #7f8998;
  font-size: 11px;
  text-align: center;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .site-header, main, footer { width: min(100% - 24px, 1180px); }
  .secure-label { display: none; }
  .hero { padding: 68px 0 54px; }
  .wizard { min-height: 520px; padding: 22px 16px; }
  .progress { gap: 6px; margin-bottom: 36px; }
  .progress-step { gap: 5px; }
  .progress-step small { display: none; }
  .option-grid, .location-grid, .after-checkout { grid-template-columns: 1fr; }
  .option-button { grid-template-columns: 58px 1fr; padding: 15px; }
  .mini-map { width: 58px; }
  .region-showcase { grid-template-columns: 1fr; gap: 8px; }
  .showcase-copy { text-align: center; }
  .location-grid { max-height: none; }
  .review-card div { grid-template-columns: 1fr; gap: 7px; }
  .review-card strong { text-align: left; }
  .after-checkout { gap: 18px; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .map-country { transition: none; }
}
