:root {
  --midnight: #0b0f18;
  --graphite: #131824;
  --stainless: #bcc5d0;
  --panel: rgba(17, 23, 37, 0.8);
  --cobalt: #1c3f74;
  --lumen: #ff3b3f;
  --mint: #7cffe6;
  --soft-white: #f7f7f9;
  --body: rgba(247, 247, 249, 0.75);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--midnight);
  color: var(--soft-white);
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.73rem;
  color: var(--mint);
  margin-bottom: 0.75rem;
}

.lede {
  color: var(--body);
  max-width: 60ch;
}

.lede--accent {
  color: var(--soft-white);
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) brightness(1.15);
  opacity: 0.45;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 55%),
    linear-gradient(130deg, rgba(0, 0, 0, 0.55), rgba(11, 15, 24, 0.25));
}

.nav {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 90vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.audio-toggle {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  color: var(--soft-white);
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.audio-toggle::before {
  content: "\25B6";
  font-size: 0.75rem;
}

.audio-toggle.active::before {
  content: "\23F8";
}

.audio-toggle.active {
  border-color: var(--mint);
  color: var(--mint);
}

.nav__cta {
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.95rem;
  transition: 0.3s;
}

.nav__cta:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding-top: 30vh;
  padding-bottom: 6rem;
}

.hero__content h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero__content .lede {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta__row {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.button {
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.3s;
}

.button.primary {
  background: linear-gradient(120deg, var(--lumen), #ff7a6d);
  color: var(--soft-white);
  box-shadow: 0 15px 30px rgba(255, 59, 63, 0.3);
}

.button.ghost {
  border-color: var(--border);
  color: var(--soft-white);
}

.button:hover {
  transform: translateY(-2px);
}

.hero__stats {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.hero__stats li {
  min-width: 160px;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--body);
}

.hero__stats span {
  display: block;
  font-size: 1.2rem;
  color: var(--soft-white);
}

.section {
  padding: 5rem 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section > * {
  width: min(1200px, 90vw);
}

.section--dark {
  background: var(--graphite);
}

.section__header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.fleet {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.fleet__card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(124, 255, 230, 0.2);
  color: var(--mint);
}

.fleet__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.fleet__title h3 {
  font-size: 1.5rem;
}

.specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1.2rem;
  font-size: 0.9rem;
  color: var(--body);
}

.price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.price strong {
  font-size: 2rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.badges span {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.pricing table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
}

.pricing th,
.pricing td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.pricing tr:last-child td {
  border-bottom: none;
}

.discounts {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.discounts span {
  color: var(--soft-white);
  font-weight: 600;
}

.booking__form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}

.booking__form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  gap: 0.4rem;
  color: var(--body);
}

.booking__form select,
.booking__form input {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--soft-white);
}

.switch {
  flex-direction: row !important;
  align-items: center;
  gap: 0.8rem;
}

.switch input {
  width: auto;
}

.booking__note {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: var(--body);
}

.why__grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why__grid article {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
}

.rules__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.rules ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.rules li {
  color: var(--body);
}

.footer {
  text-align: center;
  padding: 3rem 1rem;
  border-top: 1px solid var(--border);
}

.footer__contact {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  color: var(--body);
}

.tiny {
  font-size: 0.8rem;
  color: var(--body);
}

@media (max-width: 768px) {
  .hero__content {
    padding-top: 25vh;
  }

  .nav {
    width: 90vw;
  }

  .cta__row {
    flex-direction: column;
  }

  .hero__stats {
    flex-direction: column;
  }
}
