:root {
  --bg: #030712;
  --bg-soft: #07111f;
  --panel: rgba(10, 22, 39, 0.88);
  --panel-strong: rgba(14, 30, 52, 0.96);
  --line: rgba(186, 227, 255, 0.18);
  --line-strong: rgba(212, 255, 82, 0.38);
  --text: #f3fbff;
  --muted: #9ab2c9;
  --acid: #d4ff52;
  --cyan: #53f6ff;
  --coral: #ff6b57;
  --violet: #96a8ff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --wrap: min(1740px, calc(100vw - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(83, 246, 255, 0.1), transparent 22%),
    radial-gradient(circle at top right, rgba(212, 255, 82, 0.08), transparent 18%),
    linear-gradient(180deg, #02050b 0%, #07111f 48%, #030712 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 92%);
  pointer-events: none;
  z-index: -1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--acid);
  color: #07111f;
}

.skip-link:focus {
  top: 16px;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(3, 7, 18, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

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

.brand img {
  width: 168px;
  height: auto;
}

.brand-text {
  display: none;
}

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

.nav a {
  color: var(--muted);
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.menu-cta {
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--acid), #87ff82);
  color: #03111a;
  font-weight: 700;
  clip-path: polygon(0 0, 92% 0, 100% 28%, 100% 100%, 8% 100%, 0 72%);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: center;
  overflow: clip;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.54) 0%, rgba(3, 7, 18, 0.75) 38%, rgba(3, 7, 18, 0.95) 100%),
    linear-gradient(115deg, rgba(83, 246, 255, 0.1), transparent 42%),
    linear-gradient(245deg, rgba(212, 255, 82, 0.12), transparent 40%);
  z-index: -2;
}

.hero::after {
  content: "SVS";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -56%);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(6rem, 22vw, 20rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.05);
  z-index: -1;
}

.hero-shell {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 84px 0 96px;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.6);
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  clip-path: polygon(0 0, 96% 0, 100% 42%, 100% 100%, 4% 100%, 0 56%);
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--acid);
}

h1,
h2,
h3,
.step-number {
  font-family: "Space Grotesk", sans-serif;
}

h1,
h2,
h3,
p,
li,
summary,
span {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero-copy {
  display: grid;
  gap: 14px;
}

.hero-copy p {
  margin: 0 auto;
  max-width: 64ch;
  color: #e7f5ff;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
}

.hero-widget {
  width: min(980px, 100%);
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(83, 246, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.9), rgba(8, 26, 44, 0.98));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 94% 0, 100% 18%, 100% 100%, 6% 100%, 0 82%);
}

.widget-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.widget-grid::-webkit-scrollbar {
  display: none;
}

.widget-field,
.widget-note {
  display: grid;
  gap: 4px;
}

.widget-field {
  padding: 18px 18px 16px;
  min-height: 88px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  clip-path: polygon(0 0, 94% 0, 100% 24%, 100% 100%, 6% 100%, 0 76%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.widget-field:hover,
.widget-field:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212, 255, 82, 0.42);
  background: linear-gradient(180deg, rgba(212, 255, 82, 0.08), rgba(83, 246, 255, 0.03));
}

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

.widget-value {
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.widget-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.widget-note strong {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--acid);
}

.widget-note span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.widget-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 17px 22px;
  background: linear-gradient(135deg, var(--acid), #9cff6d);
  color: #07111f;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  clip-path: polygon(0 0, 94% 0, 100% 34%, 100% 100%, 6% 100%, 0 66%);
  transition: transform 180ms ease, filter 180ms ease;
}

.widget-button:hover,
.widget-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.section {
  position: relative;
  padding: clamp(74px, 10vw, 132px) 0;
}

.section::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.section:nth-of-type(odd) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 72%);
}

.section-heading {
  margin: 0 0 38px;
  text-align: center;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

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

.overview-grid {
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
}

.story-panel,
.deal-card,
.route-card,
.review-card,
.faq-list details,
.legal-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.story-panel {
  padding: 30px;
  min-height: 100%;
}

.story-panel::before,
.deal-copy::before,
.step-card::before,
.review-card::before,
.faq-list details::before,
.legal-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--acid), var(--cyan), transparent);
}

.story-panel.primary {
  background:
    linear-gradient(135deg, rgba(83, 246, 255, 0.08), transparent 48%),
    linear-gradient(180deg, rgba(11, 30, 52, 0.98), rgba(7, 17, 31, 0.94));
  clip-path: polygon(0 0, 97% 0, 100% 10%, 100% 100%, 3% 100%, 0 90%);
}

.story-panel.secondary {
  transform: translateY(20px);
  clip-path: polygon(0 0, 92% 0, 100% 14%, 100% 100%, 8% 100%, 0 86%);
}

.story-panel.tertiary {
  transform: translateY(-18px);
  clip-path: polygon(0 0, 96% 0, 100% 20%, 100% 100%, 4% 100%, 0 80%);
}

.story-panel h3,
.deal-copy h3,
.route-copy h3,
.review-card h3,
.legal-card h1,
.legal-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.story-panel p,
.deal-copy p,
.route-copy p,
.review-card p,
.legal-card p,
.legal-card li,
.faq-list p {
  margin: 0;
  max-width: 68ch;
  color: #e0edf7;
}

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

.fleet-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 360px;
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 97% 0, 100% 12%, 100% 100%, 3% 100%, 0 88%);
}

.fleet-card:nth-child(2n) {
  clip-path: polygon(0 0, 94% 0, 100% 18%, 100% 100%, 6% 100%, 0 82%);
}

.fleet-card:hover .fleet-photo img,
.fleet-card:focus-visible .fleet-photo img,
.route-card:hover img,
.route-card:focus-visible img {
  transform: scale(1.04);
}

.fleet-photo {
  position: relative;
  min-height: 100%;
}

.fleet-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 10%, rgba(3, 7, 18, 0.82) 100%);
}

.fleet-photo img,
.route-card img,
.deal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.fleet-copy {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
}

.fleet-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  text-transform: uppercase;
}

.fleet-copy p {
  margin: 0;
  color: #e0edf7;
  max-width: 34ch;
}

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

.fleet-specs span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fleet-price {
  display: grid;
  gap: 4px;
  justify-items: start;
}

.fleet-price strong {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  color: var(--acid);
}

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

.deals-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.deal-photo,
.route-visual {
  min-height: 100%;
}

.deal-card {
  display: grid;
  grid-template-columns: 1fr;
  clip-path: polygon(0 0, 97% 0, 100% 12%, 100% 100%, 3% 100%, 0 88%);
}

.deal-copy {
  position: relative;
  padding: 28px;
  display: grid;
  gap: 16px;
  background: linear-gradient(180deg, rgba(12, 26, 45, 0.95), rgba(7, 17, 31, 0.95));
}

.rate-strip {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.rate-strip strong {
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.step-card {
  position: relative;
  padding: 24px 22px;
  background: linear-gradient(180deg, rgba(11, 28, 47, 0.96), rgba(6, 16, 29, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  clip-path: polygon(0 0, 94% 0, 100% 18%, 100% 100%, 6% 100%, 0 82%);
}

.step-number {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.16);
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.step-card p {
  margin: 0;
  color: #e0edf7;
}

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

.route-card {
  display: grid;
  grid-template-rows: 340px auto;
  clip-path: polygon(0 0, 97% 0, 100% 12%, 100% 100%, 3% 100%, 0 88%);
}

.route-copy {
  padding: 24px;
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, rgba(11, 28, 47, 0.96), rgba(7, 17, 31, 0.96));
}

.route-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.route-meta span {
  padding: 8px 10px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

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

.review-card {
  padding: 24px;
  display: grid;
  gap: 18px;
  background: linear-gradient(180deg, rgba(8, 21, 37, 0.95), rgba(5, 13, 23, 0.95));
  clip-path: polygon(0 0, 94% 0, 100% 16%, 100% 100%, 6% 100%, 0 84%);
}

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

.review-head img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.review-card h3 {
  margin-bottom: 4px;
}

.review-role {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

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

.faq-list details {
  padding: 0 22px;
  background: rgba(9, 21, 36, 0.96);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  text-transform: uppercase;
}

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

.faq-list details p {
  padding: 0 0 22px;
}

.legal-page {
  min-height: calc(100svh - 160px);
}

.legal-card {
  padding: clamp(26px, 4vw, 42px);
  background: linear-gradient(180deg, rgba(8, 21, 37, 0.96), rgba(6, 16, 28, 0.96));
}

.legal-card h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.legal-card h2 {
  margin-top: 28px;
}

.legal-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 5, 11, 0.92);
}

.footer-line {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 12px 0;
  white-space: nowrap;
  overflow-x: auto;
  color: var(--muted);
  scrollbar-width: none;
}

.footer-line::-webkit-scrollbar {
  display: none;
}

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

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

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

  .story-panel.primary {
    grid-column: 1 / -1;
  }

}

@media (max-width: 860px) {
  .header-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 10ch;
  }

  .widget-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .widget-button {
    width: 100%;
    min-width: 0;
  }

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

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

  .fleet-photo {
    min-height: 260px;
  }

  .route-card {
    grid-template-rows: 280px auto;
  }
}

@media (max-width: 640px) {
  :root {
    --wrap: calc(100vw - 24px);
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 0.8rem;
  }

  .hero-shell {
    padding: 68px 0 78px;
  }

  .section-heading {
    margin-bottom: 28px;
  }
}
