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

:root {
  --bg: #fff;
  --ink: #000;
  --muted: #5b5b5b;
  --line: #e8e8e8;
  --red: #e10600;
  --red-2: #c10500;
  --dark: #111;
  --max: 1440px;
  --font-display: 'Oswald', 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
}
h1 { font-size: clamp(2.2rem, 7vw, 5.4rem); margin-bottom: 0.28em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.lead { font-size: 1.08rem; max-width: 38rem; line-height: 1.7; }

.announce {
  background: #000; color: #fff; text-align: center;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 9px 12px; line-height: 1.45;
}
.announce strong { color: var(--red); }

.topbar {
  position: sticky; top: 0; z-index: 80;
  background: #000; color: #fff;
}
.topbar-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 10px 16px;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px 12px;
}
.announce a { color: #fff; text-decoration: underline; font-weight: 800; }
.announce a:hover { color: var(--red); }

.logo { min-width: 0; grid-column: 1; grid-row: 1; overflow: hidden; }
.logo img { height: 42px; width: auto; max-width: min(200px, 62vw); object-fit: contain; object-position: left center; }
.search { display: flex; grid-column: 1 / -1; grid-row: 2; min-width: 0; }
.search input {
  width: 100%; min-height: 44px; border: 0; background: #1a1a1a; color: #fff;
  padding: 0 14px; border-radius: 0;
}
.search button { display: none; }
.nav-toggle {
  grid-column: 2; grid-row: 1; justify-self: end;
  width: 44px; height: 44px; margin: 0; padding: 0;
  background: transparent; border: 0; cursor: pointer;
  display: grid; place-items: center;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block; width: 22px; height: 2px; background: #fff;
  transition: transform 0.2s ease, top 0.2s ease, background 0.2s ease;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: ""; position: absolute; left: 0;
}
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }
.nav { display: none; grid-column: 1 / -1; width: 100%; flex-direction: column; }
.nav.is-open { display: flex; }
.nav a {
  min-height: 48px; display: flex; align-items: center;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1px solid #222;
}
.nav a.is-active { color: var(--red); }
.nav-cart span {
  margin-left: 8px; background: var(--red); color: #fff;
  min-width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 28px;
  background: #000; color: #fff; border: 0; cursor: pointer;
  font-weight: 800; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  width: 100%;
}
.btn:hover { background: var(--red); }
.btn-ghost { background: transparent; border: 1px solid #fff; color: #fff; }
.btn-ghost:hover { background: #fff; color: #000; }
.btn-block { width: 100%; }
.btn-cta { background: var(--red); color: #fff; }
.btn-cta:hover { background: var(--red-2); }
.cta-row {
  display: grid; gap: 10px; margin: 8px 0 0; max-width: 440px;
}
.cta-row .btn { width: 100%; text-decoration: none; }

/* HERO Adidas */
.hero-full {
  position: relative; min-height: 78vh;
  color: #fff; display: grid; align-items: end;
  background: #000;
}
.hero-full img.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; max-width: none;
}
.hero-full::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 20%, rgba(0,0,0,0.72) 100%);
}
.hero-copy {
  position: relative; z-index: 1;
  padding: 48px 20px 64px; max-width: var(--max); width: 100%; margin: 0 auto;
}
.hero-copy .eyebrow { color: var(--red); margin-bottom: 10px; }
.hero-copy .lead { color: #eee; margin: 12px 0 22px; }
.hero-actions { display: grid; gap: 10px; width: 100%; max-width: 420px; }
.hero-actions .btn { width: 100%; }

.hero-rail {
  display: grid; grid-template-columns: 1fr; gap: 3px; background: #000;
}
.hero-rail a {
  position: relative; min-height: 220px; overflow: hidden; color: #fff;
}
.hero-rail img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; max-width: none; transition: transform 0.6s; }
.hero-rail a:hover img { transform: scale(1.05); }
.hero-rail span {
  position: absolute; left: 16px; bottom: 16px; z-index: 1;
  font-family: var(--font-display); font-size: 1.6rem; text-transform: uppercase;
  text-shadow: 0 2px 16px #000;
}

.wrap, .section { max-width: var(--max); margin: 0 auto; }
.section { padding: 64px 20px; width: 100%; }
.section-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 36px;
}
.section-head a { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; border-bottom: 2px solid #000; }

.shop-by { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
.named-tile {
  display: flex; flex-direction: column; min-height: 0; color: #111; background: #f4f4f4;
}
.named-tile-media {
  display: block; aspect-ratio: 1; background: #fff; overflow: hidden;
}
.named-tile img {
  width: 100%; height: 100%; object-fit: cover; min-height: 0; max-width: none;
}
.shop-levels a, .shop-by a { min-height: 0; }
.level-bar {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 0;
}
.level-bar a {
  min-height: 44px; padding: 10px 18px; border: 1px solid #000;
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; display: inline-flex; align-items: center;
}
.level-bar a.is-on, .level-bar a:hover { background: #000; color: #fff; }
.level-tag, .card-levels a {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid #000; padding: 2px 7px; margin: 2px 4px 0 0;
}
.card-ref {
  font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; margin: 2px 0 6px;
}
.stock-note { font-size: 14px; color: var(--muted); margin: 0 0 18px; line-height: 1.6; }
.waitlist-form {
  display: grid; gap: 14px; margin: 24px 0 8px; max-width: 520px;
  scroll-margin-top: 88px;
}
.waitlist-form label { margin-top: 6px; }
.waitlist-form .btn { width: 100%; margin-top: 8px; }
.waitlist-ok { color: #0a7a32; font-weight: 700; }
.waitlist-err { color: var(--red); font-weight: 700; }
.section.waitlist-band { padding-top: 24px; padding-bottom: 32px; }
.brand-bar { margin-top: 0; margin-bottom: 0; }
.shop-brands { align-items: stretch; }
.shop-brands .brand-tile,
.brand-tile {
  display: flex; flex-direction: column; min-height: 0; color: #111; background: #f4f4f4;
}
.brand-tile img {
  width: 100%; aspect-ratio: 1; object-fit: contain; min-height: 160px; background: #fff; padding: 12px;
}
.brand-caption {
  display: grid; gap: 4px; padding: 14px 12px 16px; color: #111;
}
.brand-caption strong {
  font-family: var(--font-display); font-size: 1.05rem; text-transform: uppercase; color: #111;
}
.brand-caption em {
  position: static; font-style: normal; font-size: 13px; color: #333; text-shadow: none; font-weight: 600;
}

.coaches { display: none; }

.split-campaign { display: grid; grid-template-columns: 1fr; gap: 3px; }
.split-card {
  position: relative; min-height: 340px; overflow: hidden; color: #fff; display: flex; align-items: flex-end;
}
.split-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; max-width: none; }
.split-card .cap {
  position: relative; z-index: 1; padding: 24px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75)); width: 100%;
}
.split-card h3 { font-size: 2rem; margin-bottom: 8px; }
.split-card .btn { width: auto; display: inline-flex; }

/* Product cards Adidas */
.grid-products {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px 16px;
}
.card { background: #fff; }
.card-media {
  display: block; position: relative; aspect-ratio: 1; background: #f3f3f3; overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.45s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-badges {
  position: absolute; top: 8px; left: 8px; right: 8px; z-index: 2;
  display: flex; flex-wrap: wrap; align-items: flex-start; gap: 4px;
  pointer-events: none;
}
.badge {
  background: var(--red); color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 7px;
  line-height: 1.25;
}
.card-body { padding: 18px 8px 20px; }
.card-tags {
  display: flex; flex-wrap: wrap; gap: 4px; margin: 0 0 10px;
}
.card-cat { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.card h3 { font-size: 0.95rem; font-family: var(--font-body); text-transform: none; font-weight: 600; letter-spacing: 0; line-height: 1.25; margin: 4px 0; }
.price { font-weight: 700; font-size: 14px; }
.price s { color: var(--muted); font-weight: 500; margin-left: 6px; }
.card .btn-cta {
  display: inline-flex; width: 100%; margin-top: 12px;
  min-height: 44px; padding: 10px 14px; font-size: 12px;
}
.ph { width: 100%; height: 100%; display: grid; place-items: center; background: #eee; color: #999; font-weight: 800; text-transform: uppercase; }
.ph.big { min-height: 320px; }

.mosaic {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
}
.mosaic img { width: 100%; height: 160px; object-fit: cover; max-width: none; }
.mosaic .wide { grid-column: 1 / -1; }
.mosaic .wide img { height: 220px; }

.story-band {
  position: relative; min-height: 420px; color: #fff; display: grid; align-items: center;
}
.story-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; max-width: none; }
.story-band .inner {
  position: relative; z-index: 1; padding: 40px 16px; max-width: 720px;
  background: linear-gradient(90deg, rgba(0,0,0,0.7), transparent);
}
.story-band .hero-actions { margin-top: 18px; max-width: 420px; }
.story-band .btn-ghost { width: 100%; }

.coaches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.coaches figure { margin: 0; }
.coaches img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: grayscale(0.2); }
.coaches figcaption { font-size: 12px; font-weight: 700; text-transform: uppercase; padding: 8px 0; }

.page-hero {
  position: relative; min-height: 0; color: #fff; display: grid; align-items: end;
}
.page-hero img.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; max-width: none; min-height: 240px; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent, rgba(0,0,0,0.78)); }
.page-hero .wrap { position: relative; z-index: 1; padding: 28px 16px 32px; }
.page-hero h1 { font-size: clamp(1.7rem, 9vw, 5.4rem); overflow-wrap: anywhere; }
.page-hero .lead { color: #ddd; margin: 12px 0 16px; max-width: 38rem; }
.page-hero .hero-actions { margin-top: 4px; max-width: 100%; }

.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.page-hero .crumbs, .page-hero .crumbs a { color: #ccc; }

.seo-copy p, .guide p { margin: 0 0 16px; color: #222; font-size: 16px; line-height: 1.7; }
.seo-copy a, .guide a { text-decoration: underline; }
.seo-copy a.btn, .guide a.btn { text-decoration: none; }
.seo-copy h2, .guide h2 { margin: 8px 0 12px; }
.section.seo-copy { padding-bottom: 16px; }
.section.faq { padding-top: 16px; padding-bottom: 48px; }
.section.seo-copy + .section.faq { padding-top: 8px; }
.seo-list { padding-left: 18px; margin: 0 0 16px; }
.seo-zones { font-size: 14px; color: var(--muted); margin-top: 18px; }

.faq details { border-bottom: 1px solid var(--line); padding: 14px 0; }
.faq summary { cursor: pointer; font-weight: 700; min-height: 44px; display: flex; align-items: center; text-transform: uppercase; font-size: 14px; letter-spacing: 0.04em; }

.filters {
  display: grid;
  gap: 20px;
  margin: 12px 0 48px;
}
.section > h1 { margin: 6px 0 36px; }
.product-layout { display: grid; gap: 32px; }
.similar { margin-top: 64px; }
.product-gallery { display: grid; gap: 6px; }
.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.thumbs button { border: 1px solid transparent; padding: 0; background: #f3f3f3; cursor: pointer; }
.thumbs button.is-on { border-color: #000; }
.thumbs img, .product-main { width: 100%; aspect-ratio: 1; object-fit: cover; background: #f3f3f3; }
.buy-box, .form-grid { display: grid; gap: 10px; margin: 16px 0; }
label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
input, select, textarea {
  min-height: 48px; width: 100%; background: #fff; color: #000;
  border: 1px solid #000; padding: 10px 12px; border-radius: 0;
}
.bullets { color: var(--muted); padding-left: 18px; }
.checkout-layout { display: grid; gap: 24px; }
.form-grid { grid-template-columns: 1fr; }
.form-grid .full { grid-column: 1 / -1; }
.summary { border: 1px solid #000; padding: 16px; }
.cart-line {
  display: grid; grid-template-columns: 88px 1fr auto; gap: 12px; align-items: center;
  border-bottom: 1px solid var(--line); padding: 14px 0;
}
.cart-line img { width: 88px; height: 88px; object-fit: cover; }
.qty-row { display: flex; gap: 8px; align-items: center; }
.qty-row button { min-width: 44px; min-height: 44px; background: #fff; border: 1px solid #000; cursor: pointer; }

.why-grid, .products-grid { display: grid; gap: 12px; }
.why-grid article, .offer-card { border: 1px solid var(--line); padding: 18px; }
.offer-card img { width: 100%; height: 140px; object-fit: cover; margin-bottom: 10px; }

.product-info > .btn-cta { margin: 14px 0 8px; width: 100%; }
.footer { margin-top: auto; background: #000; color: #fff; padding: 36px 16px 24px; }
.footer-grid { display: grid; gap: 20px; max-width: var(--max); margin: 0 auto; }
.footer h3 { margin-bottom: 6px; font-size: 0.95rem; letter-spacing: 0.08em; }
.footer p, .footer a { color: #bdbdbd; font-size: 14px; }
.footer-meta { margin-top: 8px; font-size: 13px; }
.footer-links { display: grid; gap: 0; }
.footer-links a { min-height: 36px; display: flex; align-items: center; }
.footer-copy { max-width: var(--max); margin: 20px auto 0; color: #777; font-size: 12px; line-height: 1.5; }
.table-wrap { overflow-x: auto; margin: 8px 0 20px; }
.rate-table { width: 100%; border-collapse: collapse; min-width: 280px; }
.rate-table th, .rate-table td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--line); font-size: 15px; }
.rate-table th { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.guide-index { list-style: none; padding: 0; margin: 8px 0 28px; display: grid; gap: 12px; }
.guide-index a { display: grid; gap: 4px; padding: 14px 0; border-bottom: 1px solid var(--line); text-decoration: none; min-height: 44px; }
.guide-index strong { font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem; }
.guide-index span { color: var(--muted); font-size: 14px; }

.empty { color: var(--muted); padding: 24px 0; }

@media (min-width: 640px) {
  .logo img { height: 52px; }
  .shop-by { grid-template-columns: repeat(3, 1fr); }
  .hero-rail { grid-template-columns: 1fr 1fr; }
  .hero-full .hero-actions { grid-template-columns: max-content max-content; max-width: none; }
  .hero-full .hero-actions .btn { width: auto; }
  .cta-row { grid-template-columns: max-content max-content; max-width: none; }
  .cta-row .btn { width: auto; }
  .split-campaign { grid-template-columns: 1fr 1fr; }
  .grid-products { grid-template-columns: repeat(3, 1fr); }
  .mosaic { grid-template-columns: repeat(4, 1fr); }
  .mosaic img { height: 180px; }
  .mosaic .wide { grid-column: span 2; }
  .mosaic .wide img { height: 180px; }
  .coaches { grid-template-columns: repeat(4, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .products-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .topbar-inner {
    display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  }
  .search { flex: 1 1 160px; grid-column: auto; }
  .nav { display: flex; flex-direction: row; width: auto; gap: 18px; align-items: center; grid-column: auto; }
  .nav a { border: 0; min-height: 0; padding: 8px 0; }
  .search button { display: none; }
  .hero-full { min-height: 88vh; }
  .hero-copy { padding: 48px 24px 64px; }
  .topbar-inner { padding-left: 24px; padding-right: 24px; }
  .page-hero .wrap { padding: 48px 24px 56px; }
  .page-hero .hero-actions { grid-template-columns: max-content max-content; max-width: none; }
  .page-hero .hero-actions .btn { width: auto; }
  .grid-products { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .shop-by { grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .section { padding-top: 88px; padding-bottom: 88px; }
  .section.seo-copy { padding-bottom: 20px; }
  .section.faq { padding-top: 12px; padding-bottom: 56px; }
  .section.waitlist-band { padding-top: 28px; padding-bottom: 36px; }
  .product-layout { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
  .product-info { position: sticky; top: 88px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .checkout-layout { grid-template-columns: 1.2fr 0.8fr; }
  .coaches { grid-template-columns: repeat(7, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

.badge-soon { background: #111; }
.badge-off { background: var(--red); }
.badge-flash { background: #ff6a00; animation: pulse 1.6s ease-in-out infinite; }
.badge-best { background: #0a7a32; }
.badge-promo { background: #1254c8; }
.off-tag {
  display: inline-block; margin-left: 8px; background: var(--red); color: #fff;
  font-size: 13px; font-weight: 800; padding: 4px 8px; letter-spacing: 0.04em;
}
.price-note { font-size: 14px; color: var(--muted); margin: 4px 0 14px; }
.price.lg { font-size: 1.35rem; margin: 12px 0 4px; }

.rail-flash { background: #fff6ef; }
.rail-best { background: #f3faf5; }
.rail-promo { background: #f4f7ff; }
.rail { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.flash-timer { font-family: var(--font-body); font-size: 14px; letter-spacing: 0; text-transform: none; margin-left: 10px; color: var(--red); }

.tile-kids { box-shadow: inset 0 0 0 4px #ffcc00; }
.tile-debutant { box-shadow: inset 0 0 0 4px #0a84ff; }

.theme-kids .announce { background: linear-gradient(90deg, #ff3b30, #ffcc00 50%, #34c759); color: #111; }
.theme-kids .announce strong { color: #111; }
.theme-kids .page-hero::after { background: linear-gradient(transparent, rgba(255, 60, 0, 0.62)); }
.theme-kids .card-body { background: #fff8e1; }
.theme-kids .btn { background: #ff3b30; }
.theme-kids .level-bar a.is-on, .theme-kids .level-bar a:hover { background: #ffcc00; color: #111; border-color: #ffcc00; }

.theme-debutant .announce { background: #0a84ff; }
.theme-debutant .page-hero::after { background: linear-gradient(transparent, rgba(10, 80, 200, 0.7)); }
.theme-debutant .card-body { background: #eef6ff; }
.theme-debutant .btn { background: #0a84ff; }
.theme-debutant .level-bar a.is-on, .theme-debutant .level-bar a:hover { background: #0a84ff; color: #fff; }

.theme-mma .page-hero::after { background: linear-gradient(transparent, rgba(0,0,0,0.82)); }

.zoom-stage {
  position: relative; overflow: hidden; cursor: zoom-in; background: #f3f3f3; aspect-ratio: 1;
}
.zoom-stage img { width: 100%; height: 100%; object-fit: contain; transform-origin: center; transition: transform 0.12s linear; }
.zoom-hint {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  background: #111; color: #fff; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 10px;
}
.zoom-dialog {
  width: min(96vw, 980px); max-height: 92vh; border: 0; padding: 0; background: #111;
}
.zoom-dialog::backdrop { background: rgba(0,0,0,0.82); }
.zoom-dialog img { width: 100%; height: auto; max-height: 88vh; object-fit: contain; cursor: zoom-in; }
.zoom-close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  min-height: 44px; min-width: 44px; border: 0; background: #fff; color: #000;
  font-weight: 800; cursor: pointer;
}

.similar { margin-top: 64px; }
.similar .lead { margin: 8px 0 22px; color: var(--muted); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.hero-copy, .section-head, .card, .brand-tile {
  animation: fadeUp 0.55s ease both;
}
.hero-bg { animation: ken 18s ease-in-out alternate infinite; }
@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero-full { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg, .card-media img { animation: none !important; transform: none !important; }
}
