:root {
  --bg: #06111c;
  --bg-deep: #040b13;
  --panel: rgba(14, 28, 44, 0.9);
  --panel-strong: rgba(18, 38, 58, 0.96);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f2f7ff;
  --muted: #9fb4c9;
  --cyan: #56f0ff;
  --lime: #d1ff4d;
  --ice: #bfd8ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --warp-a: 38px 84px 46px 92px / 52px 44px 88px 58px;
  --warp-b: 62px 44px 88px 34px / 44px 90px 52px 72px;
  --warp-c: 32px 78px 56px 70px / 64px 42px 76px 48px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(86, 240, 255, 0.16), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(209, 255, 77, 0.14), transparent 20%),
    radial-gradient(circle at 50% 82%, rgba(191, 216, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #07131f 0%, #040912 100%);
  min-width: 320px;
}

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.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
}

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

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

.page-shell {
  position: relative;
  isolation: isolate;
}

.site-header,
.site-footer,
.section-shell {
  width: min(1480px, calc(100vw - 28px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 8px 14px;
  backdrop-filter: blur(16px);
}

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

.brand-lockup img {
  width: 56px;
  height: 56px;
  flex: none;
}

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

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.84rem;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-nav a:not(.menu-cta) {
  color: var(--ice);
  font-size: 0.95rem;
}

.menu-cta,
.widget-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(209, 255, 77, 0.24);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lime), #f0ffb3);
  box-shadow: 0 12px 30px rgba(209, 255, 77, 0.24);
  color: #07111c;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.widget-button {
  display: flex;
  width: 100%;
}

.hero-section {
  padding: 12px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.22fr);
  gap: 26px;
  align-items: stretch;
}

.hero-copy,
.hero-media,
.slab {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(13, 27, 42, 0.95), rgba(7, 16, 28, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: var(--warp-a);
  padding: clamp(28px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

h1,
h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 8ch;
  font-size: clamp(2.9rem, 5.6vw, 5.1rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4.4vw, 4.2rem);
}

.hero-intro {
  max-width: 34ch;
  margin: 18px 0 0;
  color: var(--ice);
  font-size: 1.08rem;
  line-height: 1.62;
}

.widget-link {
  display: block;
  border-radius: var(--warp-c);
  padding: 22px;
  background:
    linear-gradient(140deg, rgba(86, 240, 255, 0.12), transparent 54%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.widget-grid {
  display: grid;
  gap: 14px;
}

.faux-field {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 26px 42px 32px 34px / 28px 28px 44px 36px;
  background: rgba(7, 17, 28, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.faux-field span {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.faux-field strong {
  font-size: 1rem;
  color: var(--text);
}

.widget-foot {
  display: block;
}

.hero-media {
  border-radius: var(--warp-b);
  min-height: 620px;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 11, 19, 0.12), rgba(4, 11, 19, 0.26)),
    linear-gradient(135deg, rgba(6, 17, 28, 0.08), rgba(6, 17, 28, 0.72));
}

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

.hero-pins {
  position: absolute;
  inset: auto 24px 24px auto;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.hero-pin {
  min-width: 210px;
  padding: 14px 16px;
  border-radius: 24px 34px 22px 42px / 28px 26px 40px 30px;
  background: rgba(6, 17, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-pin span,
.card-meta,
.price-note,
.step-index,
.faq-list summary span,
.review-role {
  color: var(--muted);
}

.hero-pin strong,
.fleet-price,
.review-name {
  font-size: 1.05rem;
}

.section-shell {
  padding: 18px 0;
}

.slab {
  border-radius: var(--warp-a);
  padding: clamp(26px, 3vw, 42px);
}

.slab.alt-shape {
  border-radius: var(--warp-b);
}

.slab.tight-shape {
  border-radius: var(--warp-c);
}

.overview-grid,
.deals-grid,
.steps-grid,
.reviews-grid {
  display: grid;
  gap: 18px;
}

.overview-grid {
  grid-template-columns: 1.1fr 0.82fr 1fr;
}

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

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

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

.content-card,
.deal-card,
.step-card,
.review-card,
.table-shell,
.faq-item {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: rgba(7, 17, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.content-card {
  border-radius: 26px 50px 28px 40px / 38px 30px 50px 32px;
}

.content-card h3,
.deal-card h3,
.step-card h3,
.review-card h3,
.fleet-title {
  margin: 0 0 12px;
  font-family: "Syne", sans-serif;
  font-size: 1.36rem;
  line-height: 1.05;
}

.content-card p,
.deal-card p,
.step-card p,
.review-card blockquote,
.faq-answer,
.fleet-copy,
.table-shell td {
  margin: 0;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--ice);
}

.image-card {
  display: flex;
  min-height: 100%;
  align-items: end;
  padding: 0;
  border-radius: 42px 28px 72px 36px / 34px 60px 42px 68px;
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 10, 17, 0.02), rgba(3, 10, 17, 0.8));
}

.image-card h3,
.image-card p {
  position: relative;
  z-index: 1;
}

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

.fleet-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px 54px 34px 46px / 40px 36px 62px 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(165deg, rgba(14, 28, 44, 0.96), rgba(7, 17, 28, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.fleet-card:hover,
.fleet-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(86, 240, 255, 0.48);
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.42);
}

.fleet-image {
  position: relative;
  padding: 18px 18px 0;
}

.fleet-image img {
  width: 100%;
  height: auto;
  border-radius: 24px 40px 28px 34px / 36px 28px 44px 32px;
}

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

.fleet-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.fleet-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  white-space: nowrap;
  border-radius: 999px;
  background: rgba(209, 255, 77, 0.14);
  color: var(--lime);
  font-weight: 800;
}

.fleet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fleet-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.88rem;
}

.table-shell {
  border-radius: 34px 58px 28px 64px / 54px 32px 62px 44px;
  padding: 10px;
}

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

.facts-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.facts-table tr:last-child td {
  border-bottom: 0;
}

.facts-table td:first-child {
  width: 27%;
  color: var(--lime);
  font-weight: 700;
}

.deal-card,
.step-card,
.review-card,
.faq-item {
  border-radius: 28px 40px 30px 54px / 38px 30px 58px 36px;
}

.deal-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 16px;
  border-radius: 24px 36px 24px 42px / 30px 28px 44px 34px;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-head img {
  width: 72px;
  height: 72px;
  border-radius: 24px 18px 28px 16px / 20px 26px 18px 30px;
  object-fit: cover;
}

.review-card blockquote {
  margin-bottom: 16px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  border-radius: 28px 38px 30px 54px / 40px 28px 52px 36px;
  background: rgba(7, 17, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
}

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

.faq-list summary span:last-child {
  font-size: 1.8rem;
  line-height: 1;
}

.faq-answer {
  padding: 0 0 22px;
}

.site-footer {
  padding: 12px 8px 28px;
}

.footer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 22px;
  white-space: nowrap;
  overflow-x: auto;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.legal-main {
  width: min(980px, calc(100vw - 28px));
  margin: 0 auto;
  padding: 36px 0 48px;
}

.legal-card {
  padding: clamp(26px, 3vw, 40px);
  border-radius: var(--warp-a);
  background: linear-gradient(145deg, rgba(13, 27, 42, 0.94), rgba(7, 16, 28, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  max-width: none;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin-bottom: 24px;
}

.legal-card h2 {
  font-size: 1.6rem;
  margin: 24px 0 12px;
}

.legal-card p,
.legal-card li {
  color: var(--ice);
  line-height: 1.7;
}

.legal-card ul {
  padding-left: 18px;
}

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

  .overview-grid .image-card,
  .hero-media {
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    padding-inline: 6px;
  }

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

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

  .hero-media {
    min-height: 340px;
  }

  .hero-pins {
    inset: auto 16px 16px auto;
  }

  .facts-table td:first-child {
    width: 36%;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  .section-shell {
    width: min(100vw - 16px, 1480px);
  }

  h1 {
    max-width: 9ch;
  }

  .brand-copy span,
  .header-nav a:not(.menu-cta),
  .footer-line {
    font-size: 0.84rem;
  }

  .facts-table,
  .facts-table tbody,
  .facts-table tr,
  .facts-table td {
    display: block;
    width: 100%;
  }

  .facts-table td {
    padding: 12px 14px;
  }
}
