/* =========================================================
   BREITBECK GmbH — Sportwagenvermietung
   Premium dark-luxury aesthetic with 3D motion
   ========================================================= */

:root {
  --bg-0: #0a0a0c;
  --bg-1: #111114;
  --bg-2: #17171b;
  --bg-3: #1f1f24;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --ink-0: #ffffff;
  --ink-1: rgba(255, 255, 255, 0.92);
  --ink-2: rgba(255, 255, 255, 0.66);
  --ink-3: rgba(255, 255, 255, 0.42);

  --gold: #e6b34a;
  --gold-soft: #f4d28a;
  --gold-deep: #b88a2f;
  --red: #c8332b;
  --red-deep: #8a1f1a;

  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;

  --ff-display: "Anton", "Bebas Neue", "Impact", sans-serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

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

html, body {
  background: var(--bg-0);
  color: var(--ink-1);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  perspective: 2000px;
  perspective-origin: 50% 30%;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ================================
   Typography utilities
   ================================ */
.display {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.muted { color: var(--ink-2); }
.num-readout {
  font-family: var(--ff-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* ================================
   Nav
   ================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 14px 48px;
  background: rgba(10, 10, 12, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  color: var(--ink-2);
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink-0); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}
.nav-links a:hover::after { right: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: #1a1204;
  box-shadow: 0 10px 30px rgba(230, 179, 74, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(230, 179, 74, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: left 0.6s;
}
.btn-primary:hover::before { left: 140%; }

.btn-ghost {
  background: transparent;
  color: var(--ink-0);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ================================
   HERO
   ================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(200, 51, 43, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(230, 179, 74, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #0a0a0c 0%, #0f0c14 50%, #0a0a0c 100%);
  z-index: 0;
}
.hero-bg::after {
  /* subtle grid */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 75%);
}
/* floating neon columns */
.neon-col {
  position: absolute;
  width: 2px;
  height: 60vh;
  top: 0;
  background: linear-gradient(180deg, transparent, var(--red) 40%, var(--red) 60%, transparent);
  filter: blur(1px);
  opacity: 0.35;
  animation: pulseNeon 4s ease-in-out infinite;
}
.neon-col.c2 { background: linear-gradient(180deg, transparent, var(--gold) 40%, var(--gold) 60%, transparent); animation-delay: 1s; }
.neon-col.c3 { animation-delay: 2s; }
@keyframes pulseNeon {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.55; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-copy { padding-right: 20px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.02);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #3ee07f;
  box-shadow: 0 0 12px #3ee07f;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(56px, 6.8vw, 116px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin-bottom: 56px;
  text-transform: uppercase;
  word-spacing: 0.02em;
}
/* Global italic-accent rule — Anton has no real italic, so the synthetic skew
   causes glyphs to overhang their bounding box. Inline-block + generous
   padding-right + overflow:visible prevents clipping across every section. */
.accent,
.hero h1 .accent,
.panel-title .accent,
.exp-copy h2 .accent,
.featured-content h3 .accent,
.cta-big h2 .accent,
.page-title .accent {
  display: inline-block;
  padding-right: 0.5em;
  margin-right: -0.1em;
  overflow: visible;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 50%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  line-height: 1.05;
}
.hero h1 .strike {
  position: relative;
  display: inline-block;
}
.hero h1 .strike::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 12%;
  height: 6px;
  background: var(--red);
  transform: skewY(-2deg);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-meta {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta .m {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta .m-num {
  font-family: var(--ff-display);
  font-size: 44px;
  line-height: 1;
  color: var(--ink-0);
}
.hero-meta .m-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* 3D car stage */
.stage {
  position: relative;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  perspective: 1600px;
}
.stage-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 2 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(230, 179, 74, 0.18),
    0 0 120px -20px rgba(230, 179, 74, 0.25);
  transform-style: preserve-3d;
  will-change: transform;
  background: #0a0a0e;
}
.stage-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.stage-frame:hover .stage-photo {
  transform: scale(1.04);
}
.stage-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 15%, transparent 30%, rgba(0,0,0,0.35) 90%),
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.4) 100%);
  mix-blend-mode: multiply;
}
.stage-frame::before {
  /* subtle gold inner glow on edges */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  border-radius: inherit;
  box-shadow: inset 0 0 60px rgba(230, 179, 74, 0.12);
}

/* Spec labels floating around the car */
.stage-spec {
  position: absolute;
  z-index: 4;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 10px;
  transform-style: preserve-3d;
  opacity: 0;
  animation: specIn 0.8s ease-out forwards;
}
.stage-spec.s1 { top: 18%; left: -4%; animation-delay: 1.2s; }
.stage-spec.s2 { top: 40%; right: -6%; animation-delay: 1.4s; }
.stage-spec.s3 { bottom: 22%; left: 2%; animation-delay: 1.6s; }
@keyframes specIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
.stage-spec .line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.stage-spec.s2 .line { background: linear-gradient(-90deg, var(--gold), transparent); order: 2; }
.stage-spec .big {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}

/* brand strip */
.brand-strip {
  position: relative;
  z-index: 2;
  padding: 28px 48px 60px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.brand-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.brand-strip .label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}
.brand-strip .marks {
  display: flex;
  align-items: center;
  gap: 52px;
  flex-wrap: wrap;
}
.brand-mark {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  transition: color 0.2s;
  white-space: nowrap;
}
.brand-mark:hover { color: var(--ink-1); }

/* ================================
   Section shell
   ================================ */
section.panel,
.panel {
  position: relative;
  padding: 140px 48px;
  max-width: 1440px;
  margin: 0 auto;
}
.panel-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  margin-bottom: 88px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.panel-title {
  font-family: var(--ff-display);
  font-size: clamp(44px, 5.2vw, 80px);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.panel-title .accent {
  font-style: italic;
  display: inline-block;
  padding-right: 0.5em;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.panel-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 560px;
  text-wrap: pretty;
}

/* ================================
   Fleet (3D tilt cards)
   ================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 1400px;
}
.fleet-grid.fleet-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  gap: 32px;
}
.fleet-grid.fleet-grid-2 .fleet-card h3 { font-size: 32px; }
.fleet-grid.fleet-grid-2 .fleet-card .price .num { font-size: 20px; }
.fleet-card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.3s,
              box-shadow 0.4s;
  will-change: transform;
  cursor: pointer;
}
.fleet-card:hover {
  border-color: var(--gold);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.8),
              0 0 40px -10px rgba(230, 179, 74, 0.3);
}
.fleet-card .imgwrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #000;
  transform: translateZ(20px);
}
.fleet-card .imgwrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fleet-card:hover .imgwrap img { transform: scale(1.06); }
.fleet-card .img-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,12,0.95) 100%);
}
.fleet-card .tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transform: translateZ(40px);
}
.fleet-card .avail {
  position: absolute;
  top: 16px; right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(62, 224, 127, 0.12);
  border: 1px solid rgba(62, 224, 127, 0.35);
  border-radius: 2px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3ee07f;
  transform: translateZ(40px);
}
.fleet-card .avail .d {
  width: 6px; height: 6px; border-radius: 50%;
  background: #3ee07f;
  box-shadow: 0 0 8px #3ee07f;
}
.fleet-card .avail.hot {
  color: var(--gold);
  background: rgba(230, 179, 74, 0.12);
  border-color: rgba(230, 179, 74, 0.35);
}
.fleet-card .avail.hot .d { background: var(--gold); box-shadow: 0 0 8px var(--gold); }

.fleet-card .body {
  padding: 24px;
  transform: translateZ(30px);
}
.fleet-card .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.fleet-card h3 {
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
  flex: 1 1 auto;
  min-width: 0;
}
.fleet-card .price {
  text-align: right;
  flex: 0 0 auto;
  white-space: nowrap;
}
.fleet-card .price .num {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}
.fleet-card .price .per {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
  margin-top: 4px;
}
.fleet-card .spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.fleet-card .spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fleet-card .spec-val {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--ink-0);
  font-weight: 500;
}
.fleet-card .spec-label {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.fleet-card .card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(230, 179, 74, 0.15), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
}
.fleet-card:hover .card-glow { opacity: 1; }

/* ================================
   Experience section (numbers + 3D tilt image)
   ================================ */
.exp-section {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(230, 179, 74, 0.08), transparent 60%),
    var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.exp-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.exp-copy h2 {
  font-family: var(--ff-display);
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 1.12;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 48px;
}
.exp-copy h2 .accent {
  font-style: italic;
  display: inline-block;
  padding-right: 0.5em;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.exp-copy p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 40px;
  max-width: 520px;
}
.exp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.exp-stat {
  padding: 28px 24px 0 0;
  border-right: 1px solid var(--line);
}
.exp-stat:last-child { border-right: 0; padding-right: 0; }
.exp-stat-num {
  font-family: var(--ff-display);
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 6px;
}
.exp-stat-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.exp-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  transform-style: preserve-3d;
  perspective: 1400px;
}
.exp-visual-inner {
  position: absolute; inset: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  transform-style: preserve-3d;
  transform: rotateY(-6deg) rotateX(4deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow:
    0 50px 100px -20px rgba(0,0,0,0.8),
    0 0 60px -10px rgba(230, 179, 74, 0.3),
    inset 0 0 0 1px var(--line-strong);
}
.exp-visual-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.exp-visual-inner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(230, 179, 74, 0.15) 100%);
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  top: -24px; right: -24px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 50%, var(--gold-deep));
  color: #1a1204;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--ff-display);
  line-height: 0.95;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 40px rgba(230, 179, 74, 0.3);
  animation: floatBadge 6s ease-in-out infinite, spinBadge 40s linear infinite;
  transform-style: preserve-3d;
  z-index: 5;
  padding: 16px;
}
.floating-badge .inner {
  animation: spinBadgeReverse 40s linear infinite;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.floating-badge .inner strong {
  font-size: 32px;
  display: block;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotateZ(-5deg); }
  50% { transform: translateY(-12px) rotateZ(5deg); }
}
@keyframes spinBadge { to { transform: rotate(360deg); } }
@keyframes spinBadgeReverse { to { transform: rotate(-360deg); } }

/* ================================
   How it works (3D steps)
   ================================ */
.how-section { background: var(--bg-0); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.step {
  position: relative;
  background: var(--bg-1);
  padding: 48px 40px 56px;
  transition: background 0.3s;
  overflow: hidden;
}
.step:hover { background: var(--bg-2); }
.step-num {
  font-family: var(--ff-display);
  font-size: 96px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  margin-bottom: 32px;
  display: block;
  opacity: 0.9;
}
.step h4 {
  font-family: var(--ff-display);
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.step p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 360px;
}
.step-icon {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}

/* ================================
   Featured hero-card (full-bleed car with parallax)
   ================================ */
.featured {
  position: relative;
  margin: 0 48px 120px;
  max-width: 1344px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  min-height: 640px;
  isolation: isolate;
  background: #000;
}
.featured-bg {
  position: absolute; inset: 0;
  z-index: 1;
  overflow: hidden;
}
.featured-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  will-change: transform;
}
.featured-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,12,0.95) 0%, rgba(10,10,12,0.4) 50%, rgba(10,10,12,0.2) 100%),
    linear-gradient(180deg, transparent 50%, rgba(10,10,12,0.9) 100%);
}
.featured-content {
  position: relative;
  z-index: 2;
  padding: 80px;
  height: 100%;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 620px;
}
.featured-content h3 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 4.4vw, 72px);
  line-height: 1.08;
  text-transform: uppercase;
  margin: 20px 0 20px;
}
.featured-content h3 .accent {
  font-style: italic;
  display: inline-block;
  padding-right: 0.5em;
  color: var(--gold);
}
.featured-content p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 40px;
}
.featured-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  margin-bottom: 36px;
}
.featured-spec .v {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--ink-0);
  line-height: 1;
}
.featured-spec .v .u {
  font-size: 14px;
  color: var(--ink-2);
  margin-left: 4px;
}
.featured-spec .l {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px;
}

/* ================================
   Testimonials
   ================================ */
.testimonials {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s;
}
.t-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 16px;
}
.t-card blockquote {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-1);
  margin-bottom: 28px;
  font-weight: 400;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.t-author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 18px;
  color: #1a1204;
}
.t-author .name { font-weight: 600; font-size: 14px; color: var(--ink-0); }
.t-author .meta { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }

/* ================================
   CTA big
   ================================ */
.cta-big {
  position: relative;
  padding: 160px 48px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(230, 179, 74, 0.15) 0%, transparent 60%),
    var(--bg-0);
  border-top: 1px solid var(--line);
}
.cta-big .bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-display);
  font-size: clamp(200px, 22vw, 400px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(230, 179, 74, 0.08);
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.cta-big-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.cta-big h2 {
  font-family: var(--ff-display);
  font-size: clamp(48px, 6vw, 104px);
  line-height: 1.06;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.cta-big h2 .accent {
  font-style: italic;
  display: inline-block;
  padding-right: 0.5em;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-big p {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cta-big .btn-row {
  display: inline-flex;
  gap: 16px;
  justify-content: center;
}

/* ================================
   Footer
   ================================ */
footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding: 80px 48px 32px;
}
.footer-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img { height: 60px; margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ink-0); }
.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ================================
   Reveal animation
   ================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ================================
   Sub-pages: page hero + layouts
   ================================ */
.page-hero {
  position: relative;
  padding: 200px 48px 120px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200, 51, 43, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(230, 179, 74, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #0a0a0c 0%, #0f0c14 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 75%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.breadcrumb a { color: var(--ink-3); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--ink-3); opacity: 0.4; }
.breadcrumb .current { color: var(--gold); }

.page-title {
  font-family: var(--ff-display);
  font-size: clamp(52px, 7.4vw, 128px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.page-title .accent {
  font-style: italic;
  display: inline-block;
  padding-right: 0.5em;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  line-height: 1.05;
}
.page-lead {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 680px;
}

/* Large car detail on subpages */
.car-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}
.car-detail:last-child { border-bottom: 0; }
.car-detail.reverse { grid-template-columns: 1fr 1.2fr; }
.car-detail.reverse .car-detail-visual { order: 2; }
.car-detail.reverse .car-detail-body { order: 1; }

.car-detail-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  transform-style: preserve-3d;
  perspective: 1400px;
  background: #000;
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.8);
}
.car-detail-visual-inner {
  position: absolute; inset: 0;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-style: preserve-3d;
}
.car-detail-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.car-detail-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,12,0.6) 100%);
  pointer-events: none;
  z-index: 1;
}
.car-detail-tag {
  position: absolute;
  top: 24px; left: 24px;
  z-index: 2;
  padding: 8px 14px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.car-detail-body h2 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 4.2vw, 66px);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.car-detail-body .subline {
  font-family: var(--ff-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.car-detail-body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 520px;
}
.spec-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-bottom: 32px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.spec-row .k {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.spec-row .v {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--ink-0);
}
.spec-row .v .u { color: var(--ink-2); font-size: 14px; margin-left: 4px; }

/* Ablauf vertical timeline */
.timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 80px; bottom: 80px;
  left: 40px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
  opacity: 0.4;
}
.tl-step {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 40px 0;
  align-items: start;
}
.tl-dot {
  position: relative;
  width: 82px; height: 82px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 32px;
  color: var(--gold);
  box-shadow: 0 0 40px rgba(230,179,74,0.15);
  z-index: 2;
}
.tl-dot::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.2;
  animation: tlPulse 3s ease-in-out infinite;
}
@keyframes tlPulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.2); opacity: 0; }
}
.tl-body {
  padding-top: 12px;
}
.tl-body h3 {
  font-family: var(--ff-display);
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tl-body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 20px;
  max-width: 620px;
}
.tl-body .sub-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.tl-body .sub-list li {
  padding: 8px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
}
.tl-body .sub-list li::before {
  content: "✓ ";
  color: var(--gold);
  font-weight: 700;
  margin-right: 6px;
}

/* Über uns — split hero + philosophy blocks */
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 80px 0;
}
.story-block {
  padding: 48px 40px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.story-block:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.story-block .num {
  font-family: var(--ff-display);
  font-size: 80px;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  margin-bottom: 20px;
  display: block;
}
.story-block h3 {
  font-family: var(--ff-display);
  font-size: 34px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}
.story-block p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* Kontakt: form + info */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  padding: 80px 0;
}
.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 48px 40px;
}
.contact-form h3 {
  font-family: var(--ff-display);
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-form .sub {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-field label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--ink-0);
  padding: 14px 16px;
  font-family: var(--ff-body);
  font-size: 15px;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field textarea { min-height: 120px; resize: vertical; }

.contact-info {
  padding: 20px 0;
}
.info-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.info-block:first-child { padding-top: 0; }
.info-block .label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.info-block .value {
  font-family: var(--ff-display);
  font-size: 28px;
  line-height: 1.1;
  color: var(--ink-0);
  text-transform: uppercase;
}
.info-block .value a { color: var(--ink-0); transition: color 0.2s; }
.info-block .value a:hover { color: var(--gold); }
.info-block .note {
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 8px;
}

/* responsive */
@media (max-width: 1100px) {
  .car-detail, .car-detail.reverse { grid-template-columns: 1fr; gap: 32px; }
  .car-detail.reverse .car-detail-visual { order: 0; }
  .story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .spec-table { grid-template-columns: 1fr; }
  .tl-step { grid-template-columns: 80px 1fr; gap: 20px; }
  .tl-dot { width: 64px; height: 64px; font-size: 24px; }
  .timeline::before { left: 31px; }
}
@media (max-width: 720px) {
  .page-hero { padding: 140px 20px 80px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
}
/* ================================
   Responsive — base
   ================================ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .stage { height: 520px; }
  .panel-head { grid-template-columns: 1fr; gap: 24px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured-content { padding: 48px; }
}
@media (max-width: 720px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero-inner { padding: 0 20px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  section.panel { padding: 80px 20px; }
  .panel { padding: 80px 20px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .featured-specs { grid-template-columns: repeat(2, 1fr); }
  .exp-stats { grid-template-columns: 1fr; }
  .exp-stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px 0; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ================================
   ANIMATIONS — professional polish
   ================================ */

/* Hero letter-rise reveal — each word lives in an overflow:hidden mask */
.rise-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: inherit;
  /* extra vertical + right room so italic ascenders/descenders/skew don't clip */
  padding: 0.12em 0.5em 0.12em 0;
  margin: -0.12em -0.1em -0.12em 0;
}
.rise-word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s cubic-bezier(0.2, 0.85, 0.2, 1);
  will-change: transform;
}
.hero h1.risen .rise-word-inner { transform: translateY(0); }

/* Universal reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--rev-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Prevent the mouse-tilt transform on fleet-cards from fighting the reveal */
.fleet-card[data-reveal] {
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Magnetic buttons need their own transition so magnetic pull feels elastic */
.btn-primary, .btn-ghost {
  transition: transform 0.2s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

/* ============================================
   INLINE CTA STRIP (between sections)
   ============================================ */
.cta-strip {
  position: relative;
  margin: 0 auto;
  max-width: 1320px;
  padding: 36px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background:
    radial-gradient(1100px 220px at 20% 50%, rgba(230,179,74,0.10), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  border: 1px solid rgba(230,179,74,0.22);
  border-radius: 22px;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(230,179,74,0.06) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.cta-strip:hover::before { opacity: 1; }
.cta-strip-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.cta-strip-eyebrow {
  font-family: var(--ff-mono, "JetBrains Mono", monospace);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.cta-strip-title {
  font-family: var(--ff-display, "Anton", sans-serif);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--ink-1, #f5f4f0);
}
.cta-strip-title .accent { color: var(--gold); }
.cta-strip-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .cta-strip { padding: 28px 24px; }
}

/* ============================================
   STICKY FLOATING CTA (bottom-right)
   ============================================ */
.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 12px 18px;
  background: linear-gradient(135deg, rgba(20,16,10,0.92), rgba(10,8,6,0.92));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(230,179,74,0.35);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(230,179,74,0.1);
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.sticky-cta-pulse {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}
.sticky-cta-pulse::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  animation: stickyPulse 1.8s ease-out infinite;
}
@keyframes stickyPulse {
  0%   { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}
.sticky-cta-label {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-1, #f5f4f0);
  font-weight: 500;
  white-space: nowrap;
}
.sticky-cta-label strong {
  color: var(--gold);
  font-weight: 600;
}
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft, #f0c870) 0%, var(--gold, #e6b34a) 50%, var(--gold-deep, #b8862c) 100%);
  color: #1a1204;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.sticky-cta-btn:hover { transform: translateY(-1px); }
.sticky-cta-close {
  background: transparent;
  border: 0;
  color: var(--ink-3, #888);
  cursor: pointer;
  padding: 4px 8px;
  font-size: 16px;
  line-height: 1;
  transition: color 0.2s ease;
}
.sticky-cta-close:hover { color: var(--ink-1, #f5f4f0); }
@media (max-width: 540px) {
  .sticky-cta { right: 12px; bottom: 12px; padding: 10px 10px 10px 14px; }
  .sticky-cta-label { display: none; }
}

/* Floating ambient glow pulse for hero neon columns */
@keyframes ambientPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.9; }
}
.neon-col { animation: ambientPulse 5s ease-in-out infinite; }
.neon-col.c2 { animation-delay: 1.7s; }
.neon-col.c3 { animation-delay: 3.2s; }

/* Eyebrow letter-tracking on reveal */
.eyebrow {
  transition: transform 0.6s ease-out;
}

/* Smooth subtle image zoom on fleet cards image hover (already has tilt) */
.fleet-card .imgwrap img {
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fleet-card:hover .imgwrap img {
  transform: scale(1.05);
}

/* Stage frame subtle entry scale */
.stage-frame {
  animation: stageEntry 1.4s cubic-bezier(0.2, 0.85, 0.2, 1) both;
}
@keyframes stageEntry {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  .rise-word-inner,
  [data-reveal],
  .stage-frame {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .hero-eyebrow, .hero-sub, .hero-cta, .hero-meta {
    opacity: 1 !important;
    transform: none !important;
  }
}
