
:root {
  --bg: #08090d;
  --bg-2: #111318;
  --panel: #13161c;
  --panel-2: #1b2028;
  --line: rgba(255,255,255,.10);
  --text: #f5f4f0;
  --muted: #b9bcc3;
  --red: #e11f1b;
  --red-dark: #c31411;
  --navy: #09182d;
  --navy-2: #0e2746;
  --gold: #d3ad59;
  --display: "Barlow Condensed", sans-serif;
  --body: "Inter", sans-serif;
  --radius: 28px;
  --shadow: 0 30px 80px rgba(0,0,0,.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.section-pad { padding: 108px 5vw; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 82px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  background: linear-gradient(to bottom, rgba(0,0,0,.78), transparent);
  transition: .25s ease;
}
.site-header.scrolled {
  background: rgba(8,9,13,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 46px; height: 46px; object-fit: contain; }
.brand-word, .footer-brand span { font-family: var(--display); font-weight: 800; letter-spacing: .06em; font-size: 24px; }
.desktop-nav {
  display: flex; align-items: center; gap: 26px;
  font-family: var(--display); letter-spacing: .06em; font-size: 16px; font-weight: 700;
}
.desktop-nav a { opacity: .92; }
.desktop-nav a:hover { opacity: .68; }
.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
}
.menu-button, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 130px 5vw 72px;
  overflow: hidden;
}
.hero-bg, .hero-overlay {
  position: absolute; inset: 0;
}
.hero-bg {
  background:
    radial-gradient(circle at 20% 10%, rgba(225,31,27,.18), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(211,173,89,.15), transparent 32%),
    linear-gradient(120deg, #101217 0%, #08090d 40%, #0b1320 100%);
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: perspective(900px) rotateX(64deg) scale(1.4) translateY(16%);
  transform-origin: bottom;
  opacity: .28;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8,9,13,.92) 0%, rgba(8,9,13,.70) 38%, rgba(8,9,13,.40) 68%, rgba(8,9,13,.65) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 24%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 36px;
  align-items: end;
  min-height: calc(100svh - 202px);
}
.eyebrow {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
}
.eyebrow.red { color: var(--red); }
.eyebrow.gold { color: var(--gold); }
.gold { color: var(--gold); }
.hero-copy h1,
.section-head h2,
.split-head h2,
.stride-head h2,
.contact-head h2,
.manifesto h2 {
  font-family: var(--display);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.03em;
  margin: 0;
}
.hero-copy h1 { font-size: clamp(64px, 8vw, 128px); max-width: 980px; }
.hero-copy h1 span { color: var(--red); }
.hero-tagline {
  font-family: var(--display);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 600;
  margin: 26px 0 10px;
}
.hero-text, .section-head > p, .split-head p, .fixture-copy p:last-child, .download-copy p:last-child, .origin-story p, .contact-head > p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}
.hero-text { max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .08em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); }
.btn-red:hover { background: var(--red-dark); }
.btn-gold-outline { border: 1px solid rgba(211,173,89,.7); color: var(--gold); }
.btn-gold-outline:hover { background: rgba(211,173,89,.12); }
.btn-white { background: #fff; color: #111; border: 0; cursor: pointer; }
.hero-panel { display: flex; flex-direction: column; gap: 18px; max-width: 420px; justify-self: end; }
.hero-card {
  border-radius: 24px;
  padding: 22px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.hero-card-red { background: linear-gradient(155deg, rgba(27,14,14,.76), rgba(17,19,24,.92)); }
.hero-card-blue { background: linear-gradient(155deg, rgba(8,24,45,.86), rgba(14,39,70,.76)); }
.mini-label {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .16em;
  color: #d9d9d9;
}
.hero-mark { object-fit: contain; }
.veldt-mark { height: 110px; width: auto; align-self: flex-start; }
.stride-mark { width: 82%; }
.roundel {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.12), rgba(255,255,255,.04) 60%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(211,173,89,.35);
}
.roundel.large { width: 190px; height: 190px; flex: 0 0 auto; }
.hero-card strong { font-size: 22px; font-family: var(--display); letter-spacing: .02em; }
.hero-card p { margin: 0; color: #d3d6da; line-height: 1.65; }
.scroll-note {
  position: absolute;
  right: 5vw;
  bottom: 28px;
  z-index: 3;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.74);
}

.bridge { background: var(--bg); }
.bridge-line {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 18px;
  align-items: center;
  color: #a2a7ae;
  font-family: var(--display);
  letter-spacing: .16em;
  font-size: 13px;
}
.bridge-line i { height: 1px; background: linear-gradient(90deg, var(--red), rgba(255,255,255,.16)); }
.split-head {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: end;
}
.split-head h2, .section-head h2, .contact-head h2 { font-size: clamp(54px, 6.2vw, 106px); }

.section-head {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 38px;
  align-items: end;
  margin-bottom: 44px;
}
.section-head h2 { max-width: 920px; }
.gear { background: #0b0d11; }
.product-showcase {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
  margin-bottom: 20px;
}
.feature-product {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #13161d;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}
.feature-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-product.large { min-height: 730px; }
.product-stack { display: grid; gap: 20px; }
.feature-product.small { min-height: 355px; }
.product-copy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px;
  background: linear-gradient(to top, rgba(6,7,10,.92), rgba(6,7,10,.0));
}
.product-copy span {
  font-family: var(--display);
  letter-spacing: .14em;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}
.product-copy h3 {
  margin: 8px 0 8px;
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: .94;
}
.product-copy p { margin: 0; max-width: 520px; color: #d1d5db; line-height: 1.65; }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.collection-card {
  background: #12151b;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 24px;
  overflow: hidden;
}
.collection-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}
.card-copy { padding: 18px 18px 22px; }
.card-copy p {
  margin: 0 0 10px;
  color: var(--red);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .13em;
  font-weight: 700;
}
.card-copy h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  line-height: .96;
  font-size: 32px;
}
.card-copy span { color: var(--muted); line-height: 1.55; display: block; }
.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding: 22px 2px 6px;
}
.product-rail::-webkit-scrollbar, .poster-rail::-webkit-scrollbar { height: 9px; }
.product-rail::-webkit-scrollbar-thumb, .poster-rail::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); border-radius: 999px; }
.rail-card {
  border-radius: 22px;
  overflow: hidden;
  background: #111418;
  border: 1px solid rgba(255,255,255,.06);
  min-height: 310px;
}
.rail-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.rail-card h4 {
  margin: 0;
  padding: 16px 18px 20px;
  font-family: var(--display);
  font-size: 30px;
  line-height: .96;
}
.gear-cta { margin-top: 34px; display: flex; justify-content: flex-end; }
.text-link {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(255,255,255,.42);
  padding-bottom: 6px;
}
.text-link span { color: var(--red); }

.availability { background: var(--bg-2); }
.availability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.availability-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.08);
}
.light-card { background: linear-gradient(145deg, #151920, #111318); }
.dark-card { background: linear-gradient(145deg, #111318, #0a1220); }
.availability-label {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--display);
  color: var(--red);
  letter-spacing: .16em;
  font-size: 12px;
}
.logo-pad {
  display: grid;
  place-items: center;
  min-height: 210px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.logo-pad.light { background: #efefef; }
.logo-pad.dark { background: linear-gradient(145deg, #050507, #101318); }
.logo-pad img { max-height: 160px; width: auto; }
.availability-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 42px;
  line-height: .94;
}
.availability-card p { color: var(--muted); line-height: 1.75; margin: 0 0 18px; }
.website-link {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: .06em;
  border-bottom: 1px solid rgba(255,255,255,.38);
  padding-bottom: 4px;
}
.website-link:hover { color: var(--gold); border-bottom-color: var(--gold); }

.horizon { background: #0f1217; border-top: 1px solid rgba(255,255,255,.06); }
.horizon-marquee {
  text-align: center;
  margin-bottom: 44px;
}
.horizon-marquee span {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(34px, 6.5vw, 94px);
  font-weight: 800;
  line-height: .92;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.16);
  max-width: 100%;
}
.horizon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.future-card {
  border-radius: 28px;
  min-height: 320px;
  padding: 30px;
  background: linear-gradient(145deg, #171c24, #111318);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.future-card span { font-family: var(--display); letter-spacing: .14em; color: var(--red); font-size: 12px; }
.future-card h3 { margin: 12px 0; font-family: var(--display); font-size: 54px; line-height: .88; }
.future-card p { color: var(--muted); line-height: 1.7; margin: 0; }

.stride {
  background:
    radial-gradient(circle at 92% 10%, rgba(211,173,89,.12), transparent 22%),
    linear-gradient(135deg, #081528 0%, #07111f 55%, #05090f 100%);
}
.stride-head h2 { font-size: clamp(56px, 6vw, 104px); }
.brand-slab {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 26px;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  padding: 28px;
  margin-bottom: 26px;
}
.brand-slab h3, .fixture-copy h3, .stakeholder-intro h3 {
  margin: 8px 0 10px;
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: .92;
}
.brand-slab p { margin: 0; color: #a9bfd5; line-height: 1.75; }
.fixture-highlight {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 20px;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  padding: 22px;
  margin-bottom: 26px;
}
.fixture-visual img {
  width: 100%;
  border-radius: 18px;
}
.stakeholder-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  padding: 28px;
}
.stakeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stakeholder-grid article {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  min-height: 150px;
}
.stakeholder-grid strong {
  display: block;
  font-family: var(--display);
  font-size: 30px;
  line-height: .96;
  margin-bottom: 8px;
}
.stakeholder-grid span { color: #a9bfd5; line-height: 1.55; }
.download-strip {
  margin-top: 26px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  padding: 24px;
}
.download-copy h3 { margin: 8px 0 10px; font-family: var(--display); font-size: clamp(34px, 4.6vw, 62px); line-height: .92; }
.download-art img { width: 100%; border-radius: 18px; }

.poster-gallery {
  background: #0c1017;
}
.poster-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 25%);
  gap: 18px;
  overflow-x: auto;
  padding: 0 2px 8px;
  margin-bottom: 26px;
}
.poster-card {
  background: #131822;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  overflow: hidden;
}
.poster-card img {
  width: 100%;
  aspect-ratio: 4 / 6;
  object-fit: cover;
}
.poster-card h4 {
  margin: 0;
  padding: 16px 18px 20px;
  font-family: var(--display);
  font-size: 28px;
  line-height: .95;
}
.poster-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  gap: 18px;
}
.poster-feature {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.08);
  background: #11151d;
  min-height: 620px;
}
.poster-feature img {
  width: 100%; height: 100%; object-fit: cover;
}
.poster-feature.wide { min-height: 620px; }
.poster-copy {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(7,8,12,.95), rgba(7,8,12,.18));
}
.poster-copy span {
  font-family: var(--display);
  color: var(--gold);
  letter-spacing: .14em;
  font-size: 12px;
}
.poster-copy h3 { margin: 8px 0 0; font-family: var(--display); font-size: clamp(28px, 3vw, 46px); line-height: .96; }

.origins { background: #0b0d11; }
.origin-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; margin-bottom: 20px; }
.origin-card {
  border-radius: 26px;
  background: #12161d;
  border: 1px solid rgba(255,255,255,.08);
  padding: 28px;
}
.origin-card h3 { margin: 0 0 12px; font-family: var(--display); font-size: 42px; }
.origin-badges { display: grid; gap: 18px; }
.badge-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 88px;
  padding: 14px;
  border-radius: 18px;
  background: #0f1319;
}
.badge-row img { max-width: 84px; max-height: 84px; object-fit: contain; }
.badge-row span { font-family: var(--display); font-size: 28px; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.timeline article {
  padding: 24px;
  border-radius: 24px;
  background: #11151b;
  border: 1px solid rgba(255,255,255,.08);
}
.timeline span {
  display: inline-flex;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(225,31,27,.14);
  color: var(--red);
  font-family: var(--display);
  font-weight: 800;
  margin-bottom: 16px;
}
.timeline h4 { margin: 0 0 8px; font-family: var(--display); font-size: 32px; line-height: .95; }
.timeline p { color: var(--muted); line-height: 1.6; margin: 0; }

.manifesto {
  background: linear-gradient(135deg, #e11f1b 0%, #cc1714 100%);
  text-align: center;
}
.manifesto h2 { font-size: clamp(56px, 7vw, 114px); }
.manifesto h2 span { color: #250202; }
.manifesto p:last-child { margin: 18px 0 0; font-family: var(--display); font-size: 34px; }

.contact { background: #080b10; }
.contact .section-head { margin-bottom: 28px; }
.lead-form {
  background: #10141a;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 28px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--display);
  letter-spacing: .08em;
  font-size: 14px;
}
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.10);
  background: #0a0d12;
  color: #fff;
  border-radius: 14px;
  padding: 16px 15px;
  outline: none;
}
.lead-form textarea { resize: vertical; margin-top: 4px; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--red); }
.form-note { color: #7f8792; font-size: 12px; margin: 14px 0 0; }

.site-footer {
  padding: 40px 5vw;
  background: #05070b;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: 1.1fr .9fr .7fr;
  gap: 20px;
  align-items: end;
}
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.footer-brand img { width: 44px; height: 44px; object-fit: contain; }
.footer-branding p, .footer-mini { color: #a3a8af; line-height: 1.6; }
.site-footer strong { font-family: var(--display); font-size: 26px; line-height: 1; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1150px) {
  .hero-grid, .product-showcase, .split-head, .brand-slab, .fixture-highlight, .download-strip, .origin-grid, .section-head, .poster-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: unset; justify-self: stretch; flex-direction: row; flex-wrap: wrap; }
  .hero-card { flex: 1 1 320px; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .stakeholder-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .section-pad { padding: 90px 5vw; }
  .desktop-nav { display: none; }
  .menu-button {
    display: flex;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
  .menu-button span { display: block; height: 2px; background: #fff; }
  .mobile-nav {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 35;
    background: rgba(8,9,13,.98);
    padding: 110px 6vw 40px;
    flex-direction: column;
    gap: 16px;
    transform: translateY(-100%);
    transition: transform .3s ease;
  }
  .mobile-nav.open { transform: translateY(0); }
  .mobile-nav a {
    font-family: var(--display);
    font-size: 46px;
    font-weight: 800;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }
  .hero-copy h1 { font-size: clamp(52px, 14vw, 86px); }
  .collection-grid, .availability-grid, .horizon-grid, .timeline { grid-template-columns: 1fr; }
  .stakeholder-grid { grid-template-columns: 1fr; }
  .poster-rail { grid-auto-columns: minmax(260px, 70%); }
  .product-rail { grid-auto-columns: minmax(220px, 72%); }
  .form-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { height: 70px; padding: 0 5vw; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-word, .footer-brand span { font-size: 20px; }
  .hero { padding: 112px 5vw 54px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .scroll-note { display: none; }
  .hero-panel { flex-direction: column; }
  .feature-product.large { min-height: 520px; }
  .feature-product.small { min-height: 280px; }
  .product-copy h3, .card-copy h3, .availability-card h3, .timeline h4, .badge-row span { font-size: 28px; }
  .future-card h3 { font-size: 42px; }
  .poster-feature { min-height: 480px; }
  .poster-rail { grid-auto-columns: 86%; }
  .product-rail { grid-auto-columns: 82%; }
}


/* =========================================================
   VELDTSTRIDE v5 — STANDARDIZED MEDIA SYSTEM
   ========================================================= */

/* Main product feature imagery */
.feature-product {
  min-height: 0 !important;
}
.feature-product img {
  width: 100%;
  height: clamp(320px, 42vw, 560px) !important;
  object-fit: cover !important;
  object-position: center !important;
}
.feature-product.small img {
  height: clamp(250px, 28vw, 340px) !important;
}

/* Product category cards */
.collection-card img {
  width: 100%;
  height: 320px !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center !important;
}
.collection-card .card-copy {
  min-height: 165px;
}

/* Compact product rail */
.rail-card {
  min-height: 0 !important;
}
.rail-card img {
  width: 100%;
  height: 220px !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center !important;
}
.rail-card h4 {
  min-height: 68px;
}

/* STRIDE fixture feature */
.fixture-visual img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

/* STRIDE poster carousel */
.poster-rail {
  grid-auto-columns: minmax(220px, 20%) !important;
  gap: 16px !important;
  scroll-snap-type: x mandatory;
}
.poster-card {
  max-width: 320px;
  scroll-snap-align: start;
}
.poster-card img {
  width: 100%;
  height: 300px !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: top center !important;
}

/* Large STRIDE poster highlights */
.poster-feature,
.poster-feature.wide {
  min-height: 460px !important;
}
.poster-feature img {
  width: 100%;
  height: 460px !important;
  object-fit: cover !important;
  object-position: top center !important;
}

/* Google Play / QR artwork */
.download-art {
  display: flex;
  justify-content: center;
}
.download-art img {
  width: min(100%, 520px) !important;
  max-height: 520px;
  object-fit: contain;
  border-radius: 18px;
}

/* Cleaner rhythm across galleries */
.collection-grid,
.product-rail,
.poster-rail,
.poster-grid {
  gap: 16px !important;
}

/* Tablet */
@media (max-width: 900px) {
  .poster-rail {
    grid-auto-columns: minmax(220px, 46%) !important;
  }
  .product-rail {
    grid-auto-columns: minmax(210px, 46%) !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .feature-product.large,
  .feature-product.small {
    min-height: 0 !important;
  }
  .feature-product img {
    height: 360px !important;
  }
  .feature-product.small img {
    height: 260px !important;
  }
  .collection-card img {
    height: 280px !important;
  }
  .rail-card img {
    height: 210px !important;
  }
  .poster-rail {
    grid-auto-columns: 76% !important;
  }
  .poster-card img {
    height: 270px !important;
  }
  .poster-feature,
  .poster-feature.wide {
    min-height: 380px !important;
  }
  .poster-feature img {
    height: 380px !important;
  }
  .fixture-visual img,
  .download-art img {
    max-height: 380px;
  }
}


/* =========================================================
   PRE-FINAL MEDIA REFINEMENT
   500 x 500 VELDTSTRIDE PRODUCT SYSTEM
   STRIDE CAROUSEL + DOWNLOAD + HOVER
   ========================================================= */

.feature-product img,
.collection-card img,
.rail-card img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  max-width: 500px;
  max-height: 500px;
  object-fit: cover !important;
  object-position: center !important;
  margin-inline: auto;
}
.feature-product.large,
.feature-product.small { min-height: 0 !important; }
.collection-card .card-copy { min-height: 150px; }

.poster-rail {
  grid-auto-columns: minmax(198px, 18%) !important;
  gap: 14px !important;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 4px;
}
.poster-card {
  max-width: 288px !important;
  scroll-snap-align: start;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.poster-card img {
  width: 100%;
  height: 270px !important;
  object-fit: cover !important;
  object-position: top center !important;
  transition: transform .28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .poster-card:hover {
    transform: translateY(-4px) scale(1.04);
    z-index: 4;
    box-shadow: 0 24px 60px rgba(0,0,0,.40);
    border-color: rgba(211,173,89,.38);
  }
  .poster-card:hover img { transform: scale(1.035); }
  .poster-feature { transition: transform .28s ease, box-shadow .28s ease; }
  .poster-feature:hover {
    transform: scale(1.025);
    z-index: 3;
    box-shadow: 0 28px 70px rgba(0,0,0,.36);
  }
}

.poster-download {
  display: block;
  width: fit-content;
  margin: 0 18px 18px;
  padding: 8px 13px;
  border: 1px solid rgba(211,173,89,.52);
  border-radius: 999px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.poster-download:hover {
  background: var(--gold);
  color: #07111f;
  transform: translateY(-1px);
}
.poster-feature { position: relative; }
.poster-download-overlay {
  position: absolute;
  right: 18px;
  top: 18px;
  margin: 0;
  z-index: 5;
  background: rgba(7,11,18,.76);
  backdrop-filter: blur(8px);
}

.poster-feature,
.poster-feature.wide { min-height: 414px !important; }
.poster-feature img {
  height: 414px !important;
  object-fit: cover !important;
  object-position: top center !important;
}
.fixture-visual img,
.download-art img { max-height: 468px !important; }

@media (max-width: 900px) {
  .poster-rail { grid-auto-columns: minmax(198px, 41%) !important; }
  .product-rail { grid-auto-columns: minmax(220px, 48%) !important; }
}
@media (max-width: 640px) {
  .feature-product img,
  .collection-card img,
  .rail-card img {
    max-width: 500px;
    max-height: 500px;
    aspect-ratio: 1 / 1 !important;
  }
  .poster-rail { grid-auto-columns: 72% !important; }
  .poster-card { max-width: none !important; }
  .poster-card img { height: 252px !important; }
  .poster-feature,
  .poster-feature.wide { min-height: 360px !important; }
  .poster-feature img { height: 360px !important; }
  .fixture-visual img,
  .download-art img { max-height: 340px !important; }
}


/* Final production copyright */
.site-copyright {
  grid-column: 1 / -1;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #7f8792;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .12em;
  text-align: center;
}
