@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --bg: #051019;
  --bg-alt: #0a1d28;
  --panel: rgba(10, 25, 36, 0.88);
  --panel-strong: rgba(7, 19, 29, 0.96);
  --line: rgba(110, 208, 244, 0.24);
  --line-strong: rgba(156, 255, 79, 0.35);
  --text: #f3fbff;
  --muted: #9fb6c4;
  --accent: #9cff4f;
  --accent-soft: rgba(156, 255, 79, 0.12);
  --accent-2: #55d9ff;
  --accent-3: #ff5c8a;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --max: 1580px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(85, 217, 255, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(156, 255, 79, 0.12), transparent 24%),
    linear-gradient(180deg, #051019 0%, #081721 38%, #07131d 100%);
  font: 400 16px/1.62 "Space Grotesk", sans-serif;
}

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

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 94%);
  opacity: 0.42;
}

.site-header,
.section-shell,
.footer-shell,
.legal-shell {
  width: min(calc(100% - 28px), var(--max));
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(85, 217, 255, 0.2), rgba(156, 255, 79, 0.06));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.brand-copy {
  min-width: 0;
}

.brand-name {
  display: block;
  font: 700 1rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-sub {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--accent);
  background: linear-gradient(90deg, rgba(156, 255, 79, 0.18), rgba(85, 217, 255, 0.12));
  color: var(--text);
  font: 700 0.92rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  padding: 10px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 0;
  min-height: 720px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(9, 20, 30, 0.72), rgba(9, 20, 30, 0.92));
  box-shadow: var(--shadow);
}

.hero-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 16, 25, 0.08), rgba(5, 16, 25, 0.08)),
    linear-gradient(90deg, rgba(5, 16, 25, 0) 0%, rgba(5, 16, 25, 0.22) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel {
  position: relative;
  display: grid;
  align-content: stretch;
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(7, 19, 29, 0.96) 0%, rgba(10, 29, 40, 0.95) 100%);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.hero-panel::before {
  top: 20px;
}

.hero-panel::after {
  bottom: 20px;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 28px;
}

.hero-copy h1 {
  margin: 0;
  font: 700 clamp(3.3rem, 7vw, 6.6rem)/0.86 "Barlow Condensed", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

.widget {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(85, 217, 255, 0.08), rgba(255, 92, 138, 0.06)),
    rgba(5, 16, 25, 0.72);
}

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

.widget-field {
  display: grid;
  gap: 8px;
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(85, 217, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.widget-field:hover,
.widget-submit:hover,
.fleet-card:hover,
.route-card:hover {
  transform: translateY(-3px);
}

.widget-field:hover {
  border-color: rgba(156, 255, 79, 0.48);
  background: rgba(156, 255, 79, 0.08);
}

.widget-label {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.widget-value {
  font: 700 1.06rem/1.2 "Space Grotesk", sans-serif;
}

.widget-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  margin-top: 6px;
  border: 1px solid var(--accent);
  background: linear-gradient(90deg, rgba(156, 255, 79, 0.2), rgba(85, 217, 255, 0.18));
  font: 700 0.98rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-sections {
  display: grid;
  gap: 22px;
  padding-bottom: 34px;
}

.section-band {
  position: relative;
  overflow: hidden;
}

.section-frame {
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(12, 31, 43, 0.78), rgba(8, 21, 31, 0.92)),
    rgba(8, 21, 31, 0.82);
  box-shadow: var(--shadow);
}

.section-frame::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.section-title {
  margin: 0 0 clamp(20px, 3vw, 32px);
  text-align: center;
  font: 700 clamp(2.7rem, 5vw, 5rem)/0.88 "Barlow Condensed", sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.overview-grid,
.steps-grid,
.conditions-grid,
.reviews-grid {
  display: grid;
  gap: 16px;
}

.overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.overview-card,
.step-card,
.condition-card,
.review-card,
.faq-item {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.card-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.content-title {
  margin: 0 0 12px;
  font: 700 clamp(1.45rem, 3vw, 2.2rem)/0.94 "Barlow Condensed", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.content-copy {
  margin: 0;
  max-width: 66ch;
  color: var(--text);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fleet-card {
  display: grid;
  grid-template-rows: 270px auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  transition: transform 180ms ease, border-color 180ms ease;
}

.fleet-card:hover {
  border-color: rgba(156, 255, 79, 0.42);
}

.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.fleet-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fleet-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-label {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-value {
  font: 700 1.46rem/1 "Barlow Condensed", sans-serif;
  letter-spacing: 0.03em;
}

.fleet-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: right;
}

.matrix-wrap {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(85, 217, 255, 0.06), rgba(255, 92, 138, 0.04));
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
}

.matrix-table th,
.matrix-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.matrix-table thead th {
  background: rgba(156, 255, 79, 0.08);
  color: var(--text);
  font: 700 0.78rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.matrix-table tbody tr:nth-child(odd) td {
  background: rgba(255, 255, 255, 0.02);
}

.matrix-table td:first-child {
  font: 700 1rem/1.2 "Space Grotesk", sans-serif;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dual-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
}

.routes-grid {
  display: grid;
  gap: 16px;
}

.route-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  transition: transform 180ms ease, border-color 180ms ease;
}

.route-card:hover {
  border-color: rgba(85, 217, 255, 0.42);
}

.route-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.route-copy {
  padding: 18px;
}

.conditions-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
}

.review-card img {
  width: 72px;
  height: 72px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.reviews-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-name {
  margin: 0 0 8px;
  font: 700 1.02rem/1.2 "Space Grotesk", sans-serif;
}

.review-copy {
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font: 700 1rem/1.4 "Space Grotesk", sans-serif;
  padding-right: 26px;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  color: var(--accent);
  font: 700 1.4rem/1 "Barlow Condensed", sans-serif;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  margin: 14px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 0 0 28px;
}

.footer-shell {
  overflow-x: auto;
  white-space: nowrap;
  border: 1px solid var(--line);
  background: rgba(5, 16, 25, 0.86);
}

.footer-line {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 62px;
  padding: 0 20px;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-line a:hover,
.site-nav a:hover {
  color: var(--text);
}

.legal-page {
  padding-bottom: 36px;
}

.legal-shell {
  padding-top: 22px;
}

.legal-card {
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(8, 21, 31, 0.9);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0 0 20px;
  font: 700 clamp(2.8rem, 5vw, 4.6rem)/0.9 "Barlow Condensed", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-card h2 {
  margin: 24px 0 10px;
  font: 700 1.5rem/1 "Barlow Condensed", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-card p {
  margin: 0 0 14px;
  color: var(--text);
}

.legal-card a {
  color: var(--accent);
}

@media (max-width: 1180px) {
  .hero-grid,
  .dual-grid,
  .overview-grid,
  .fleet-grid,
  .steps-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .route-card img {
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-grid,
  .overview-grid,
  .fleet-grid,
  .steps-grid,
  .dual-grid,
  .conditions-grid,
  .reviews-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 24px;
  }

  .hero-panel::before,
  .hero-panel::after {
    left: 24px;
    right: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 15vw, 4.7rem);
  }

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

  .matrix-table {
    min-width: 760px;
  }

  .matrix-wrap {
    overflow-x: auto;
  }
}

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

  .widget-field,
  .widget-submit,
  .fleet-card,
  .route-card {
    transition: none;
  }
}
