:root {
  --bg: #0b0d0e;
  --bg2: #111416;
  --panel: #121618;
  --panel2: #181d20;
  --line: #2a3135;
  --line-soft: #3a4449;
  --text: #eef2f3;
  --muted: #a9b1b5;
  --accent: #b8ff52;
  --accent-2: #8f979d;
  --accent-3: #636c72;
  --accent-4: #d8e0e4;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --wrap: min(1180px, calc(100vw - 30px));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: radial-gradient(65% 52% at 50% 0%, rgba(184, 255, 82, 0.09), transparent 55%), radial-gradient(58% 42% at 0% 12%, rgba(255, 255, 255, 0.035), transparent 58%), linear-gradient(180deg, #0e1113 0%, #0a0c0d 34%, #090a0b 100%);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: var(--wrap);
  margin: 0 auto;
}
.muted {
  color: var(--muted);
}
.header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(12, 14, 15, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 88px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-width: 0;
}
.brand-lockup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.brand-text {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 0.9;
  display: inline-block;
  background: linear-gradient(180deg, #f6f8f8 0%, #d3d9db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}
.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #eef3f5 0 12%, #cfd6da 13%, #90989d 26%, #3a4247 48%, #111518 72%, #0c0f11 100%);
  border: 2px solid var(--accent);
  box-shadow:
    0 0 0 3px rgba(184, 255, 82, 0.08),
    0 10px 22px rgba(0, 0, 0, 0.24);
}
.brand-mark::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.brand-mark::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.18) 70%, transparent 72%);
}
.brand-mark i,
.brand-mark b {
  position: absolute;
  display: block;
  left: -10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 255, 82, 0), rgba(184, 255, 82, 0.95));
}
.brand-mark i {
  top: 11px;
  width: 11px;
  opacity: 0.75;
}
.brand-mark b {
  top: 18px;
  width: 7px;
  opacity: 0.55;
}
.nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #d8dde0;
  padding: 10px 12px;
  border-radius: 999px;
}
.nav-links a:hover {
  background: #13181b;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: transparent;
  color: var(--text);
  font-weight: 760;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: 0.22s ease;
}
.btn:hover {
  transform: translateY(-1px);
  border-color: #7f8b92;
}
.btn.primary {
  background: linear-gradient(180deg, #caff72 0%, #b4f553 100%);
  color: #121708;
  border: none;
  box-shadow: 0 10px 24px rgba(184, 255, 82, 0.12);
}
.btn.ghost {
  background: #13181b;
}
.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: #101417;
  color: #f1f5f7;
  font-size: 30px;
  line-height: 1;
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  top: 84px;
  z-index: 80;
  padding: 16px;
  background: #111518;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 14px 12px;
  border-radius: 14px;
  font-weight: 700;
}
.mobile-menu a + a {
  margin-top: 6px;
}
.mobile-menu a:hover {
  background: #151a1d;
}
.section {
  padding: 36px 0;
}
.section.tight {
  padding-top: 22px;
}
.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #cbbeb0;
  font-weight: 800;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 0.96;
}
h1 {
  font-size: clamp(46px, 7vw, 88px);
}
h2 {
  font-size: clamp(34px, 5vw, 60px);
}
h3 {
  font-size: clamp(24px, 3.4vw, 34px);
}
p {
  line-height: 1.65;
}
.feature-card,
.text-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel2), var(--panel));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.text-card {
  padding: 30px;
}
.hero-shell {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 22px;
  align-items: stretch;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 680px;
  position: relative;
  overflow: hidden;
}
.hero-copy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(56% 40% at 14% 10%, rgba(184, 255, 82, 0.08), transparent 55%), radial-gradient(44% 26% at 82% 14%, rgba(255, 255, 255, 0.03), transparent 60%);
  pointer-events: none;
}
.hero-copy > * {
  position: relative;
  z-index: 1;
}
.hero-intro {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #141a1d;
  border: 1px solid var(--line-soft);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d6dde0;
}
.hero-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(184, 255, 82, 0.25);
}
.hero-copy h1 {
  max-width: 640px;
  font-size: clamp(48px, 7vw, 90px);
  letter-spacing: -0.04em;
}
.hero-copy p.main {
  font-size: 19px;
  color: #c9d1d5;
  margin: 18px 0 0;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-actions .btn {
  min-width: 200px;
}
.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.note {
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}
.note strong {
  display: block;
  font-size: 13px;
}
.note span {
  display: block;
  font-size: 12px;
  color: #9fa8ad;
  margin-top: 7px;
  line-height: 1.5;
}
.hero-art picture,
.hero-art img {
  width: 100%;
  height: 100%;
}
.hero-art img {
  object-fit: cover;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: start;
}
.grid-2.reverse {
  grid-template-columns: 0.92fr 1.08fr;
}
.media-full picture,
.media-full img {
  width: 100%;
}
.media-full img {
  height: auto;
  display: block;
}
.caption {
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  background: #111518;
}
.caption h3 {
  margin-bottom: 8px;
}
.caption p {
  margin: 0;
  color: var(--muted);
}
.points {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.point {
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: #13181b;
}
.point b {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}
.point span {
  display: block;
  font-size: 13px;
  color: #9faab1;
}
.mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.mode-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d1012;
  box-shadow: var(--shadow);
}
.mode-card img {
  width: 100%;
  height: auto;
  display: block;
}
.mode-copy {
  padding: 18px 20px 22px;
  border-top: 1px solid var(--line);
}
.mode-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.mode-top strong {
  font-size: 22px;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid var(--line-soft);
}
.red .pill {
  border-color: #4a555c;
  color: #d6e046;
}
.green .pill {
  border-color: #587543;
  color: #b8ff52;
}
.gold .pill {
  border-color: #6a7278;
  color: #d9e2a2;
}
.blue .pill {
  border-color: #536068;
  color: #c8d1d7;
}
.mode-copy p {
  margin: 0;
  color: var(--muted);
}
.list-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.check {
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: #13181b;
  font-weight: 700;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), rgba(184, 255, 82, 0.42), transparent);
  margin: 18px 0 0;
}
.cta-shell {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 20px;
  align-items: start;
}
.cta-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}
.tag {
  padding: 9px 12px;
  border-radius: 999px;
  background: #13181b;
  border: 1px solid var(--line-soft);
  font-size: 12px;
  color: #d7dee2;
}
.footer {
  padding: 28px 0 44px;
  color: #98a3aa;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
  font-size: 13px;
}
#demoLoading {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  z-index: 100;
}
#demoLoading.show {
  display: flex;
}
#demoLoading .box {
  padding: 18px 22px;
  background: #13181b;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  font-weight: 760;
}
@media (max-width: 980px) {
  .nav-cta .btn.primary {
    width: auto;
    min-width: 150px;
    padding: 13px 18px;
    white-space: nowrap;
  }
}
@media (max-width: 980px) {
  .nav-links,
  .nav-cta .btn.ghost {
    display: none;
  }
  .menu-btn {
    display: flex;
  }
  .hero-shell,
  .grid-2,
  .grid-2.reverse,
  .cta-shell,
  .mode-grid,
  .list-checks {
    grid-template-columns: 1fr;
  }
  .hero-notes {
    grid-template-columns: 1fr 1fr;
  }
  .hero-copy {
    min-height: auto;
  }
  .hero-art img {
    object-fit: contain;
    background: #080706;
  }
}
@media (max-width: 640px) {
  :root {
    --wrap: calc(100vw - 24px);
    --radius: 24px;
  }
  .nav {
    min-height: 78px;
    gap: 10px;
  }
  .brand {
    gap: 10px;
    font-size: 18px;
    min-width: 0;
  }
  .brand-lockup {
    min-width: 0;
  }
  .brand-text {
    font-size: 18px;
  }
  .brand-mark {
    width: 30px;
    height: 30px;
  }
  .text-card {
    padding: 24px;
  }
  .caption,
  .mode-copy {
    padding: 18px 18px 20px;
  }
  .btn {
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }
  .hero-notes {
    grid-template-columns: 1fr;
  }
  .nav-cta .btn.primary {
    width: auto;
    min-width: 132px;
    padding: 11px 16px;
    font-size: 15px;
    white-space: nowrap;
  }
  .menu-btn {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    flex: 0 0 auto;
  }
}

/* ===== V13: PURE BLACK + INTEGRATED BALLISTIC LOGO ===== */
html,
body {
  background: #000 !important;
  color-scheme: dark;
}
:root {
  --bg: #000;
  --bg2: #000;
  --panel: #000;
  --panel2: #000;
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.15);
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.72);
  --accent: #b8ff52;
  --shadow: none;
}
body {
  background: #000 !important;
  color: #fff;
}
.header {
  background: rgba(0, 0, 0, 0.96) !important;
  border-bottom: 1px solid rgba(184, 255, 82, 0.12) !important;
  backdrop-filter: blur(12px);
}
.nav {
  min-height: 82px;
}

.mobile-menu {
  background: #000 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}
.mobile-menu a:hover {
  background: rgba(184, 255, 82, 0.06) !important;
}
.btn {
  background: #000 !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
}
.btn.primary {
  background: var(--accent) !important;
  color: #0b0f05 !important;
  border-color: transparent !important;
  box-shadow: 0 0 24px rgba(184, 255, 82, 0.12) !important;
}
.menu-btn {
  background: #000 !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  color: #fff !important;
}
.section {
  background: #000 !important;
}
.feature-card,
.text-card,
.mode-card,
.note,
.point,
.check,
.tag {
  background: #000 !important;
  box-shadow: none !important;
}
.feature-card,
.text-card,
.mode-card {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.caption,
.mode-copy {
  background: #000 !important;
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}
.note,
.point,
.check,
.tag {
  border-color: rgba(255, 255, 255, 0.12) !important;
}
.eyebrow {
  color: #fff !important;
}
.muted,
.caption p,
.mode-copy p,
.note span,
.point span,
.hero-copy p.main {
  color: rgba(255, 255, 255, 0.72) !important;
}
.hero {
  padding-top: 18px !important;
}

.hero-shell-new {
  display: grid !important;
  grid-template-columns: 0.94fr 1.06fr !important;
  gap: 22px !important;
  align-items: stretch !important;
}
.hero-copy-new {
  min-height: 100% !important;
  padding: 34px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--radius) !important;
  background: #000 !important;
  overflow: hidden !important;
  position: relative !important;
}
.hero-copy-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(45% 28% at 15% 0%, rgba(184, 255, 82, 0.06), transparent 60%);
  pointer-events: none;
}
.hero-copy-new > * {
  position: relative;
  z-index: 1;
}
.hero-intro {
  margin-bottom: 18px !important;
}
.hero-pill {
  background: #000 !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
}
.hero-pill::before {
  background: var(--accent) !important;
}
.hero-copy-new h1 {
  font-size: clamp(44px, 6vw, 78px) !important;
  letter-spacing: -0.04em !important;
  max-width: 720px !important;
}
.hero-copy-new p.main {
  font-size: 18px !important;
  max-width: 620px !important;
}
.hero-actions {
  margin-top: 26px !important;
}
.hero-notes {
  grid-template-columns: repeat(3, 1fr) !important;
}
.hero-art {
  background: #000 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.hero-art img {
  background: #000 !important;
  object-fit: cover !important;
}
.divider {
  background: linear-gradient(90deg, transparent, rgba(184, 255, 82, 0.35), transparent) !important;
}
.footer {
  background: #000 !important;
  color: rgba(255, 255, 255, 0.6) !important;
}
@media (max-width: 980px) {
  .hero-shell-new {
    grid-template-columns: 1fr !important;
  }
  .hero-art img {
    object-fit: contain !important;
  }
  .hero-notes {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 640px) {
  .nav {
    min-height: 76px;
  }
  .brand-orb-only {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
  .header-orb {
    width: 40px;
    height: 40px;
  }
  .nav-cta .btn.primary {
    min-width: 136px !important;
    padding: 11px 16px !important;
    font-size: 15px !important;
  }
  .hero-logo-stage {
    height: 118px;
    margin-bottom: 12px;
    background-size: contain;
  }
  .hero-copy-new {
    padding: 24px !important;
  }
  .hero-copy-new h1 {
    font-size: 44px !important;
  }
  .hero-notes {
    grid-template-columns: 1fr !important;
  }
}

/* ===== V14: REAL BALLISTIC LOGO IN HEADER ===== */
.brand-real-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  height: 64px;
  padding: 0;
}
.header-real-logo {
  display: block;
  width: auto;
  height: 60px;
  max-width: 240px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 9px rgba(184, 255, 82, 0.2));
}
@media (max-width: 980px) {
  .brand-real-logo {
    height: 58px;
  }
  .header-real-logo {
    height: 54px;
    max-width: 205px;
  }
}
@media (max-width: 640px) {
  .brand-real-logo {
    height: 50px;
    max-width: 150px;
  }
  .header-real-logo {
    height: 46px;
    max-width: 150px;
  }
}

/* ===== V15: RETRO TO DIGITAL HERITAGE SECTION ===== */
.legacy-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: start;
}
.legacy-copy {
  padding: 30px;
}
.legacy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(184, 255, 82, 0.2);
  background: rgba(184, 255, 82, 0.08);
  color: #dfffb0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.legacy-copy h2 {
  margin-top: 0;
}
.legacy-band {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(184, 255, 82, 0.16);
  background: linear-gradient(180deg, rgba(184, 255, 82, 0.08), rgba(184, 255, 82, 0.03));
  color: #eff6ea;
  font-size: 15px;
  line-height: 1.6;
}
.legacy-points {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.legacy-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.legacy-point:first-child {
  border-top: 0;
  padding-top: 0;
}
.legacy-point .num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(184, 255, 82, 0.12);
  border: 1px solid rgba(184, 255, 82, 0.2);
  color: #dfffb0;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.legacy-point b {
  display: block;
  margin-bottom: 4px;
}
.legacy-point p {
  margin: 0;
  color: #aab5bc;
  font-size: 14px;
  line-height: 1.6;
}
.legacy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.legacy-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d5dee4;
  font-size: 12px;
}
.legacy-collage {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-auto-rows: minmax(190px, auto);
  gap: 16px;
}
.legacy-tile {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0f12;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}
.legacy-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
}
.legacy-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 9, 0.02) 0%, rgba(5, 8, 9, 0.05) 55%, rgba(5, 8, 9, 0.14) 100%);
  pointer-events: none;
}
.legacy-tile .year {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 14, 16, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f7fff1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.legacy-tile.retro {
  grid-row: span 2;
  min-height: 424px;
}
.legacy-tile.logo {
  grid-column: 1 / -1;
  min-height: 180px;
}
@media (max-width: 980px) {
  .legacy-shell {
    grid-template-columns: 1fr;
  }
  .legacy-collage {
    grid-template-columns: 1fr 1fr;
  }
  .legacy-tile.retro {
    grid-row: auto;
    min-height: 320px;
    grid-column: 1 / -1;
  }
  .legacy-tile.logo {
    min-height: 160px;
  }
}
@media (max-width: 640px) {
  .legacy-copy {
    padding: 24px;
  }
  .legacy-collage {
    grid-template-columns: 1fr;
  }
  .legacy-tile.retro,
  .legacy-tile.logo {
    grid-column: auto;
    min-height: unset;
  }
  .legacy-tile {
    min-height: 260px;
  }
  .legacy-point {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }
}

/* ===== V16 HERO FIX: replace oversized logo stage with cinematic image ===== */
.hero-cinematic-stage {
  width: min(1180px, 100%) !important;
  height: clamp(260px, 38vw, 520px) !important;
  margin: 0 auto 24px !important;
  background: none !important;
  filter: none !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}
.hero-cinematic-stage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 54% center;
}
@media (max-width: 760px) {
  .hero-cinematic-stage {
    height: 240px !important;
    margin-bottom: 18px !important;
    border-radius: 20px;
  }
  .hero-cinematic-stage img {
    object-position: 59% center;
  }
}

/* ===== CORRECT HERO PRESENTATION IMAGE ===== */
.hero-presentation-red {
  object-fit: cover !important;
  object-position: center 34% !important;
}
@media (max-width: 760px) {
  .hero-presentation-red {
    object-fit: contain !important;
    object-position: center top !important;
    background: #000 !important;
  }
}

/* FINAL HERO PRESENTATION IMAGE FIX */
.hero-presentation-picture {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
}
.hero-presentation-picture img,
.hero-presentation-red {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #000 !important;
}

/* ===== V18 FINAL CONTENT + RESPONSIVE CLEANUP ===== */
.mode-card.spectrum {
  grid-column: 1 / -1;
}
.mode-card.spectrum .pill {
  border-color: rgba(220, 184, 108, 0.48);
  color: #e9c886;
}
.mode-card.spectrum picture,
.mode-card.spectrum img {
  width: 100%;
  display: block;
}
.mode-card picture {
  display: block;
  background: #000;
}
.mode-card img {
  max-width: 100%;
  object-fit: contain;
  background: #000;
}
.feature-card.media-full picture {
  display: block;
  background: #000;
}
.feature-card.media-full img {
  max-width: 100%;
  object-fit: contain;
  background: #000;
}
@media (max-width: 980px) {
  .mode-card.spectrum {
    grid-column: auto;
  }
  .mode-card.spectrum img {
    height: auto !important;
    object-fit: contain !important;
  }
  .mode-card picture source + img {
    height: auto;
  }
}
@media (max-width: 760px) {
  .section {
    overflow-x: clip;
  }
  .mode-card,
  .feature-card,
  .text-card {
    max-width: 100%;
  }
  .mode-card img,
  .media-full img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
  }
  .mode-card.spectrum .mode-copy {
    padding-top: 16px;
  }
  .mode-top {
    align-items: flex-start;
  }
  .mode-top strong {
    font-size: 20px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .btn {
    min-width: 0;
  }
}
@media (max-width: 420px) {
  .mode-copy {
    padding: 16px 16px 18px;
  }
  .mode-top {
    gap: 8px;
  }
  .pill {
    min-width: 0;
    font-size: 10px;
    letter-spacing: 0.11em;
  }
}

/* V19 focused visual cleanup */
@media (max-width: 760px) {
  #cta .cta-shell > figure.media-full {
    width: calc(100vw - 20px) !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw + 10px) !important;
    border-radius: 22px !important;
  }
  #cta .cta-shell > figure.media-full img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}

/* V20 B2B STORYTELLING */
.dna-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.dna-card,
.value-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border-radius: 22px;
  padding: 26px;
  min-height: 220px;
}
.dna-card span {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #e0b85f;
}
.dna-card h3 {
  font-size: 25px;
  margin: 18px 0 12px;
}
.dna-card p,
.value-card span {
  color: var(--muted);
  line-height: 1.65;
}
.dna-band {
  margin-top: 18px;
  text-align: center;
  letter-spacing: 0.13em;
}
.value-grid {
  grid-template-columns: repeat(3, 1fr);
}
.value-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.value-card b {
  font-size: 19px;
}
.partner-facts .text-card {
  height: 100%;
}
@media (max-width: 980px) {
  .dna-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .dna-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }
  .dna-card,
  .value-card {
    min-height: 0;
  }
  .dna-band {
    font-size: 11px;
    letter-spacing: 0.08em;
  }
}
