﻿:root {
  --ink: #f6f1e8;
  --paper: #f4efe5;
  --muted: #a8adb3;
  --soft: #737b84;
  --black: #050608;
  --carbon: #0a0d10;
  --panel: #10151a;
  --panel-2: #151b20;
  --line: rgba(246, 241, 232, 0.16);
  --line-strong: rgba(246, 241, 232, 0.28);
  --gold: #c89b55;
  --gold-bright: #e5c27a;
  --ocean: #1f6f85;
  --red: #bc3530;
  --green: #25d366;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  --radius: 8px;
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.96), rgba(10, 13, 16, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 120px);
  color: var(--ink);
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(200, 155, 85, 0.10), transparent 24%, transparent 72%, rgba(31, 111, 133, 0.11)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 260px);
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--ocean), var(--red));
  z-index: 200;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  padding: 22px 0;
  transition: padding 0.24s ease, background 0.24s ease, border-color 0.24s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(5, 6, 8, 0.82);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(200, 155, 85, 0.26), rgba(31, 111, 133, 0.16));
  color: var(--gold-bright);
  font-family: Oswald, Impact, sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-family: Oswald, Impact, sans-serif;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-text span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.nav-links a,
.footer-links a {
  color: rgba(246, 241, 232, 0.82);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.footer-links a:hover {
  color: var(--gold-bright);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.06);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  white-space: normal;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(200, 155, 85, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: transparent;
  color: #111;
  box-shadow: 0 16px 40px rgba(200, 155, 85, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f0cf88, #c8954a);
  color: #111;
}

.btn-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 11px;
}

.btn-block {
  width: 100%;
}

.menu-btn {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(246, 241, 232, 0.07);
}

.menu-btn span {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(5, 6, 8, 0.98);
  transform: translateX(100%);
  transition: transform 0.32s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-close {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  padding: 10px 16px;
  color: var(--ink);
  font-weight: 800;
}

.mobile-links {
  display: grid;
  align-content: center;
  gap: 100px;
  padding: 24px;
}

.mobile-links a {
    font-family: Oswald, Impact, sans-serif;
    font-size: 54px;
    line-height: 1;
    color: #e4c37b;
    text-transform: uppercase;
    border: 1px solid;
    border-top: 1px !important;
    border-left: 0;
    border-right: 0;
}

.mobile-links a.active,
.mobile-links a:hover {
  color: var(--gold-bright);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: 132px 0 74px;
}

.page-hero {
  min-height: 70svh;
  display: grid;
  align-items: end;
  padding: 144px 0 80px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--black);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(1.04) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.68) 44%, rgba(5, 6, 8, 0.24) 100%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.34) 0%, rgba(5, 6, 8, 0.18) 52%, #050608 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 44px;
}

.hero-copy {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero h1,
.page-hero h1 {
  max-width: 960px;
  font-size: 112px;
}

.hero-sub,
.page-hero-content p,
.section-head p {
  max-width: 760px;
  color: #d7dce0;
  font-size: 21px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-spec {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(10, 13, 16, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-spec div {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.hero-spec div:last-child {
  border-bottom: 0;
}

.hero-spec span,
.metric span,
.stage-price span,
.spec-strip span,
.stage-specs span,
.field-head span,
.field-head label,
.micro,
.tag,
.model-type,
.info-card span,
.feature-panel span {
  display: block;
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-spec strong {
  display: block;
  margin-top: 5px;
  font-family: Oswald, Impact, sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.intro-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(200, 155, 85, 0.12), rgba(31, 111, 133, 0.12), rgba(188, 53, 48, 0.10));
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.strip-grid p {
  margin: 0;
  padding: 20px;
  color: rgba(246, 241, 232, 0.86);
  font-weight: 700;
}

.section {
  position: relative;
  z-index: 2;
  padding: 112px 0;
}

.surface-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(246, 241, 232, 0.035), rgba(246, 241, 232, 0.015));
}

.section-head {
  max-width: 930px;
  margin-bottom: 44px;
}

.section-head h2,
.cta h2 {
  font-size: 66px;
}

.muted {
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.copy-column p {
  margin: 0 0 18px;
  color: #d6dce0;
  font-size: 18px;
}

.showroom-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
}

.model-menu {
  display: grid;
  gap: 8px;
  align-content: start;
  max-height: 720px;
  overflow: auto;
  padding-right: 8px;
}

.model-tab,
.stage-control,
.filter-row button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 241, 232, 0.04);
  color: var(--ink);
}

.model-tab {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  width: 100%;
  padding: 14px;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.model-tab:hover,
.model-tab.active {
  border-color: rgba(229, 194, 122, 0.6);
  background: rgba(200, 155, 85, 0.12);
}

.model-tab .num {
  color: var(--gold-bright);
  font-family: Oswald, Impact, sans-serif;
  font-size: 22px;
}

.model-tab strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.model-tab small {
  display: block;
  color: var(--soft);
  font-size: 11px;
  font-weight: 700;
}

.model-stage,
.config-preview,
.form-panel,
.info-card,
.feature-panel,
.journal-card,
.fleet-card,
.video-card,
.social-card,
.team-card,
.spec-table,
.cta,
.metric-grid,
.vip-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(246, 241, 232, 0.07), rgba(246, 241, 232, 0.03));
  box-shadow: var(--shadow);
}

.model-stage {
  min-height: 720px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.stage-top,
.stage-bottom {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.stage-top {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.stage-top h3 {
  font-size: 78px;
}

.stage-price {
  text-align: right;
}

.stage-price strong {
  display: block;
  color: var(--gold-bright);
  font-size: 17px;
}

.stage-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 350px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(31, 111, 133, 0.24), transparent 48%),
    linear-gradient(300deg, rgba(200, 155, 85, 0.12), transparent 48%);
}

.stage-letter,
.config-letter {
  position: absolute;
  color: rgba(246, 241, 232, 0.06);
  font-family: Oswald, Impact, sans-serif;
  font-size: 230px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.stage-visual img {
  position: relative;
  z-index: 1;
  width: min(860px, 92%);
  max-height: 370px;
  object-fit: contain;
  filter: drop-shadow(0 42px 30px rgba(0, 0, 0, 0.62));
  transition: opacity 0.2s ease, transform 0.24s ease;
}

.stage-visual img:hover {
  transform: translateY(-4px) scale(1.01);
}

.stage-bottom {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.74fr) auto;
  align-items: end;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d9dde0;
  background: rgba(246, 241, 232, 0.04);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.stage-specs,
.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.stage-specs div,
.spec-strip div {
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 6, 8, 0.26);
}

.stage-specs strong,
.spec-strip strong {
  display: block;
  margin-top: 5px;
  font-family: Oswald, Impact, sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.stage-actions {
  display: grid;
  gap: 10px;
}

.stage-control {
  min-width: 104px;
  min-height: 42px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-fleet {
  display: none;
}

.cards-grid,
.fleet-cards,
.news-grid,
.video-grid,
.social-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  padding: 26px;
}

.info-card h3 {
  margin-top: 16px;
  font-size: 34px;
}

.info-card p,
.feature-panel p,
.journal-card p,
.fleet-card p,
.timeline p {
  margin: 12px 0 0;
  color: var(--muted);
}

.image-band {
  padding-top: 0;
}

.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 18px;
}

.band-stack {
  display: grid;
  gap: 18px;
}

figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.band-large {
  min-height: 620px;
}

.band-stack figure {
  min-height: 301px;
}

figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

figure:hover img {
  transform: scale(1.035);
  opacity: 1;
}

figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  color: var(--paper);
  background: linear-gradient(180deg, transparent, rgba(5, 6, 8, 0.9));
  font-size: 15px;
  font-weight: 700;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.metric {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-top: 6px;
  font-family: Oswald, Impact, sans-serif;
  font-size: 58px;
  line-height: 1;
  text-transform: uppercase;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  padding: 36px;
  background:
    linear-gradient(90deg, rgba(200, 155, 85, 0.18), rgba(31, 111, 133, 0.16)),
    var(--panel);
}

.page-hero-content {
  max-width: 980px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 241, 232, 0.04);
}

.timeline-item strong {
  color: var(--gold-bright);
  font-family: Oswald, Impact, sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  filter: grayscale(0.65);
}

.team-card .body {
  padding: 18px;
}

.team-card h3 {
  font-size: 26px;
}

.feature-matrix {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
}

.feature-panel {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: grid;
  align-content: end;
}

.feature-large {
  grid-row: span 2;
  min-height: 660px;
}

.feature-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.62;
}

.feature-panel > div {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 8, 0.95));
}

.feature-panel h2 {
  margin-top: 14px;
  font-size: 58px;
}

.feature-panel h3 {
  margin-top: 14px;
  font-size: 36px;
}

.spec-table {
  display: grid;
  overflow: hidden;
}

.spec-row {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 0.8fr;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row strong {
  font-family: Oswald, Impact, sans-serif;
  font-size: 25px;
  text-transform: uppercase;
}

.spec-row span {
  color: var(--muted);
  font-weight: 700;
}

.config-main {
  position: relative;
  z-index: 2;
  padding: 126px 0 92px;
}

.config-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.86fr);
  gap: 22px;
  align-items: start;
}

.config-preview {
  position: sticky;
  top: 96px;
  overflow: hidden;
}

.config-image {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(31, 111, 133, 0.22), transparent 54%),
    linear-gradient(300deg, rgba(188, 53, 48, 0.12), transparent 52%);
}

.config-image img {
  position: relative;
  z-index: 1;
  width: 92%;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 42px 32px rgba(0, 0, 0, 0.62));
}

.config-summary {
  padding: 28px;
  border-top: 1px solid var(--line);
}

.config-summary h1 {
  font-size: 70px;
}

.form-panel {
  padding: 26px;
}

.form-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.form-head h2 {
  font-size: 42px;
}

.field {
  margin-bottom: 24px;
}

.field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.model-switcher,
.engine-options,
.addons {
  display: grid;
  gap: 10px;
}

.model-switcher {
  grid-template-columns: repeat(2, 1fr);
}

.model-choice,
.option-inner {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 241, 232, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.model-choice {
  padding: 12px;
  text-align: left;
}

.model-choice.active,
.model-choice:hover,
.option input:checked + .option-inner {
  border-color: rgba(229, 194, 122, 0.65);
  background: rgba(200, 155, 85, 0.12);
}

.model-choice strong {
  display: block;
  font-family: Oswald, Impact, sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.model-choice span {
  display: block;
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.option {
  position: relative;
  display: block;
}

.option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
}

.option-title {
  display: block;
  font-weight: 800;
}

.option-sub {
  display: block;
  margin-top: 2px;
  color: var(--soft);
  font-size: 12px;
}

.option-price {
  min-width: max-content;
  color: var(--gold-bright);
  font-family: Oswald, Impact, sans-serif;
  font-size: 25px;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.swatch {
  position: relative;
}

.swatch input {
  position: absolute;
  opacity: 0;
}

.swatch span {
  display: block;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(246, 241, 232, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.24);
}

.swatch input:checked + span {
  border-color: var(--paper);
  outline: 4px solid rgba(200, 155, 85, 0.22);
}

.input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 6, 8, 0.34);
  color: var(--ink);
  outline: 0;
  padding: 14px;
}

.input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 155, 85, 0.12);
}

textarea.input {
  min-height: 120px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-grid + .input,
.form-grid + .input + textarea {
  margin-top: 10px;
}

.price-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(229, 194, 122, 0.48);
  border-radius: var(--radius);
  background: rgba(200, 155, 85, 0.12);
}

.price-total span {
  color: var(--gold-bright);
  font-weight: 800;
  text-transform: uppercase;
}

.price-total strong {
  font-family: Oswald, Impact, sans-serif;
  font-size: 48px;
  line-height: 1;
}

.micro {
  margin: 10px 0 16px;
}

.floating-summary {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 95;
  width: min(720px, calc(100% - 28px));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 13, 16, 0.93);
  box-shadow: var(--shadow);
  transform: translateX(-50%) translateY(130%);
  transition: transform 0.25s ease;
}

.floating-summary.show {
  transform: translateX(-50%) translateY(0);
}

.floating-summary span {
  display: block;
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-summary strong {
  display: block;
  font-family: Oswald, Impact, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-row button {
  min-height: 40px;
  padding: 9px 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.filter-row button.active,
.filter-row button:hover {
  color: #111;
  background: var(--gold-bright);
  border-color: transparent;
}

.journal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 18px;
}

.journal-side {
  display: grid;
  gap: 18px;
}

.journal-card {
  overflow: hidden;
}

.journal-card .media {
  height: 270px;
  overflow: hidden;
}

.journal-featured .media {
  height: 520px;
}

.journal-card img,
.fleet-card img,
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.journal-card:hover img,
.fleet-card:hover img,
.video-card:hover img {
  transform: scale(1.035);
}

.article-body,
.fleet-card .body {
  padding: 22px;
}

.article-body h2 {
  margin: 12px 0 10px;
  font-size: 52px;
}

.article-body h3,
.fleet-card h3 {
  margin: 12px 0 10px;
  font-size: 34px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

[hidden] {
  display: none !important;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(229, 194, 122, 0.45);
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(200, 155, 85, 0.1);
}

.fleet-card {
  overflow: hidden;
}

.fleet-card .media {
  height: 300px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(120deg, rgba(31, 111, 133, 0.18), transparent 54%),
    linear-gradient(300deg, rgba(200, 155, 85, 0.12), transparent 52%);
}

.fleet-card .media img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 30px 25px rgba(0, 0, 0, 0.55));
}

.vip-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 34px;
  align-items: end;
}

.vip-panel {
  padding: 18px;
  background: rgba(10, 13, 16, 0.76);
  backdrop-filter: blur(14px);
}

.vip-action {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
  background: rgba(246, 241, 232, 0.04);
}

.vip-action:last-child {
  margin-bottom: 0;
}

.vip-action span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(200, 155, 85, 0.14);
  color: var(--gold-bright);
  font-family: Oswald, Impact, sans-serif;
}

.vip-action strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.vip-action small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.video-card {
  position: relative;
  height: 280px;
  min-height: 280px;
  overflow: hidden;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 6, 8, 0.92));
}

.video-card .play {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold-bright);
  color: #111;
  font-weight: 800;
}

.video-card h3 {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  font-size: 30px;
}

.social-grid {
  grid-template-columns: repeat(5, 1fr);
}

.social-card {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.social-card span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.social-card strong {
  font-family: Oswald, Impact, sans-serif;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.footer {
  position: relative;
  z-index: 2;
  padding: 70px 0 30px;
  border-top: 1px solid var(--line);
  background: #050608;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: start;
}

.footer .muted {
  max-width: 560px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-header {
    padding: 14px 0;
  }

  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .menu-btn {
    display: grid;
  }

  .hero-content,
  .split-layout,
  .showroom-shell,
  .band-grid,
  .feature-matrix,
  .config-layout,
  .journal-layout,
  .vip-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 78px;
  }

  .section-head h2,
  .cta h2 {
    font-size: 52px;
  }

  .hero-spec,
  .vip-panel {
    max-width: 620px;
  }

  .model-menu,
  .model-stage {
    display: none;
  }

  .mobile-fleet {
    display: block;
  }

  .cards-grid,
  .fleet-cards,
  .news-grid,
  .video-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .metric:nth-child(2) {
    border-right: 0;
  }

  .config-preview {
    position: relative;
    top: auto;
  }

  .floating-summary {
    display: flex;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: 116px 0 58px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 50px;
  }

  .hero-sub,
  .page-hero-content p,
  .section-head p {
    font-size: 16px;
  }

  .hero-actions,
  .cta,
  .footer-bottom,
  .price-total,
  .form-head {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-spec {
    width: 100%;
  }

  .strip-grid,
  .cards-grid,
  .fleet-cards,
  .news-grid,
  .video-grid,
  .social-grid,
  .team-grid,
  .metric-grid,
  .stage-specs,
  .spec-strip,
  .form-grid,
  .model-switcher {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 0;
  }

  .section-head h2,
  .cta h2 {
    font-size: 38px;
  }

  .band-large,
  .band-stack figure {
    min-height: 320px;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .feature-large,
  .feature-panel {
    min-height: 420px;
  }

  .feature-panel h2 {
    font-size: 38px;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .config-image {
    min-height: 360px;
  }

  .config-summary h1 {
    font-size: 48px;
  }

  .form-panel,
  .config-summary,
  .article-body,
  .fleet-card .body,
  .info-card,
  .cta {
    padding: 20px;
  }

  .journal-featured .media,
  .journal-card .media,
  .fleet-card .media {
    height: 280px;
  }

  .article-body h2 {
    font-size: 38px;
  }

  .mobile-links a {
    font-size: 42px;
  }
}

/* Mobile menu viewport fix */
.mobile-menu {
  will-change: transform;
}

.mobile-menu.open {
  transform: translate3d(0, 0, 0);
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

body.menu-open .site-header {
  inset: 0;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  padding: 0;
  border-bottom: 0;
  background: #050608;
  backdrop-filter: none;
}

body.menu-open .site-header .nav {
  display: none;
}

body.menu-open .mobile-menu {
  position: absolute;
  inset: 0;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #050608;
}

body.menu-open .mobile-menu-head {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #050608;
}

body.menu-open .mobile-links {
  min-height: calc(100dvh - 92px);
  align-content: center;
}