/* ================================================================== */
/* Agility — product detail page styles (all-sans, block dividers)     */
/* ================================================================== */

:root {
  --ag-navy: #0a1d3a;
  --ag-navy-2: #14305b;
  --ag-paper: #f5f1ea;
  --ag-line-dark: rgba(255, 255, 255, .14);
}

/* ================================================================== */
/* HERO                                                                 */
/* ================================================================== */
.ag-hero {
  padding: 40px 32px 88px;
  background: var(--ag-paper);
  color: var(--ag-navy);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.ag-hero-inner {
  max-width: 1640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .ag-hero { padding: 96px 22px 64px; }
  .ag-hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Gallery wrapper (main image + thumbs) */
.ag-hero-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Back-to-listing link above the gallery. */
.ag-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft, #666);
  transition: color .15s ease, gap .15s ease;
  align-self: flex-start;
}
.ag-back-link:hover { color: var(--ink, #0a1d3a); gap: 9px; }

/* Main media — sliding track, first photo wide, next peeks ~half */
.ag-hero-media-row {
  width: 100%;
  overflow: hidden;
  container-type: inline-size; /* lets slots size from row width in CSS (cqw) */
}
.ag-hero-media-track {
  display: flex;
  gap: 18px;
  width: max-content;
  transition: transform .75s cubic-bezier(.32, .72, 0, 1);
  will-change: transform;
}
.ag-hero-media-slot {
  flex: 0 0 auto;
  width: calc((100cqw - 18px) / 1.5); /* matches gallery_controller measure(); reserves height at first paint to kill CLS */
  aspect-ratio: 4 / 5;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.ag-hero-media-slot image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  --slot-bg: transparent;
}

/* Controls row beneath photos */
.ag-hero-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 4px;
}
.ag-hero-arrow {
  width: 36px; height: 36px;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: var(--ag-navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: opacity .2s ease;
}
.ag-hero-arrow:hover { opacity: .55; }
.ag-hero-img-counter {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ag-navy);
  font-variant-numeric: tabular-nums;
  margin-left: 8px;
}

/* Legacy thumbs / pill / overlay arrows — no longer rendered, kept hidden */
.ag-hero-media,
.ag-hero-variant-pill,
.ag-hero-thumbs { display: none; }

/* Body — all sans */
.ag-hero-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: center;
  max-width: 540px;
  font-family: 'Inter', sans-serif;
}
.ag-hero-eyebrow {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-ink, #8a6a00);
}
.ag-hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 700;
  line-height: 1;
  margin: 0;
  letter-spacing: -.035em;
  color: var(--ag-navy);
}
.ag-hero-tagline {
  font-size: 18px;
  line-height: 1.45;
  color: var(--ag-navy);
  margin: 0;
  max-width: 28ch;
  font-weight: 500;
  letter-spacing: -.005em;
}
.ag-hero-paragraph {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft, rgba(10,29,58,.7));
  margin: 0;
  text-wrap: pretty;
}
.ag-hero-accent {
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--accent-ink, #8a6a00);
  margin: 4px 0 0;
  font-weight: 500;
  text-wrap: pretty;
}

/* Segmented M/F toggle */
.ag-toggle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .6);
  border-radius: 14px;
  margin: 8px 0 0;
  isolation: isolate;
}
.ag-toggle-btn {
  position: relative;
  appearance: none;
  background: transparent;
  border: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink-soft);
  text-align: left;
  padding: 14px 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: 10px;
  transition: color .25s ease;
  z-index: 1;
}
.ag-toggle-btn.active { color: var(--ag-navy); }
.ag-toggle-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.005em;
}
.ag-toggle-sub {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.ag-toggle-thumb {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(50% - 6px);
  bottom: 6px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(10, 29, 58, .08);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  z-index: 0;
}

/* CTAs */
.ag-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.ag-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 15px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.ag-cta-primary {
  background: rgb(37, 211, 102); /* darker WhatsApp green — white text now meets WCAG AA (≈4.7:1) */
  color: #fff;
}

.ag-cta-primary:hover {
  background: #1cb957;
  transform: translateY(-1px);
}
.ag-cta-ghost {
  background: transparent;
  color: var(--ag-navy);
  border-color: var(--ag-navy);
}
.ag-cta-ghost:hover {
  background: var(--ag-navy);
  color: #fff;
  transform: translateY(-1px);
}

/* Trust meta row */
.ag-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: .04em;
  margin-top: 8px;
}
.ag-meta-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ink-soft);
  opacity: .5;
}

/* ================================================================== */
/* Section helpers (all sans, no italics)                              */
/* ================================================================== */
.ag-section-eyebrow {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif;
}
.ag-section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 12px 0 0;
}
.ag-accent-dot {
  color: var(--accent-ink, #8a6a00);
  margin: 0 .15em;
}

/* ================================================================== */
/* SPECIFICATIONS — Therapedic Navy block                              */
/* ================================================================== */
.ag-spec {
  background: var(--ag-navy);
  color: #fff;
  padding: 0;
}
.ag-spec-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  align-items: stretch;
  min-height: 600px;
}
@media (max-width: 900px) {
  .ag-spec-inner { grid-template-columns: 1fr; }
}

/* Left block — title on solid navy, kept fully visible */
.ag-spec-head {
  padding: 96px 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid var(--ag-line-dark);
  align-self: stretch;
}
.ag-spec .ag-section-eyebrow {
  color: rgba(255, 255, 255, .55);
}
.ag-spec .ag-section-title {
  color: #fff;
}
@media (max-width: 900px) {
  .ag-spec-head {
    padding: 64px 22px 40px;
    border-right: 0;
    border-bottom: 1px solid var(--ag-line-dark);
  }
}

/* Right block — spec list with full-width row dividers */
.ag-spec-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: 32px 56px;
  align-self: stretch;
}
@media (max-width: 900px) {
  .ag-spec-list { padding: 24px 22px 56px; }
}
.ag-spec-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ag-line-dark);
  align-items: baseline;
}
.ag-spec-row:last-child { border-bottom: 0; }
.ag-spec-row dt {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  margin: 0;
  font-family: 'Inter', sans-serif;
}
.ag-spec-row dd {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #fff;
  text-wrap: pretty;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: -.005em;
}
/* Size list: wraps naturally; capped at 3 per row on mobile. */
.ag-spec-sizes { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 14px; }
@media (max-width: 640px) {
  .ag-spec-row { grid-template-columns: 1fr; gap: 6px; }
  .ag-spec-sizes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 12px; }
}

/* ================================================================== */
/* WHAT'S INSIDE                                                        */
/* ================================================================== */
.ag-inside {
  background: var(--ag-paper);
  padding: 110px 32px 120px;
  font-family: 'Inter', sans-serif;
}
.ag-inside-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.ag-inside-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin: 0 0 48px;
  flex-wrap: wrap;
}
.ag-inside-head-text {
  max-width: 640px;
}
.ag-inside-sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 20px 0 0;
  max-width: 560px;
  text-wrap: pretty;
}

/* Arrow controls */
.ag-inside-arrows {
  display: flex;
  gap: 10px;
  margin-left: auto; /* stays right-aligned when the head wraps on mobile */
}
.ag-inside-arrow {
  appearance: none;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--ag-navy, #0a1d3a);
  background: transparent;
  color: var(--ag-navy, #0a1d3a);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
  font-family: inherit;
}
.ag-inside-arrow:hover:not(:disabled) {
  background: var(--ag-navy, #0a1d3a);
  color: #fff;
}
.ag-inside-arrow:disabled {
  opacity: .25;
  cursor: not-allowed;
}

/* Horizontal track */
.ag-inside-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 32px 28px 0;
  margin: 0 -32px 0 0;
  scroll-padding: 0 32px;
}
.ag-inside-track::-webkit-scrollbar { display: none; }

.ag-inside-track .ag-inside-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
}
@media (max-width: 720px) {
  .ag-inside-track .ag-inside-card { flex-basis: 80vw; }
}
@media (max-width: 980px) {
  .ag-inside-head { align-items: flex-start; }
}
.ag-inside-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease;
}
.ag-inside-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -24px rgba(10, 29, 58, .18);
}
.ag-inside-card-media {
  aspect-ratio: 4 / 3;
  background: var(--ag-paper);
  position: relative;
  overflow: hidden;
}
.ag-inside-card-media image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  --slot-bg: transparent;
}
.ag-inside-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ag-inside-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.ag-inside-card-body::before {
  content: '';
  position: absolute;
  top: 0; left: 28px;
  width: 32px; height: 3px;
  background: var(--accent-warm, #c96442);
}
.ag-inside-card-n {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--accent-ink, #8a6a00);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 6px;
}
.ag-inside-card-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ag-navy);
  margin: 0;
  line-height: 1.25;
  font-family: 'Inter', sans-serif;
}
.ag-inside-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  text-wrap: pretty;
  font-family: 'Inter', sans-serif;
}

/* ================================================================== */
/* FEATURE CHAPTERS — Coros-style cinematic + big-stat block           */
/* HourGlass · NanoShield · MemoGel · TheraCool                        */
/* ================================================================== */
.ag-feat {
  background: #000;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Cinematic full-bleed ----------------------------------------- */
.ag-feat-cine {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 420px;
  overflow: hidden;
  background: #000;
}
@media (max-width: 720px) {
  .ag-feat-cine { aspect-ratio: 4 / 5; min-height: 600px; }
}

.ag-feat-cine-media {
  position: absolute; inset: 0;
}
/* Full-bleed cinematic video fills the banner edge-to-edge. */
.hg-cine-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ag-feat-cine-media image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  --slot-bg: #111;
  --slot-fg: #fff;
  --slot-border: rgba(255, 255, 255, .25);
}
.ag-feat-cine-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,.1) 60%, rgba(0,0,0,.7) 100%);
  pointer-events: none;
}

.ag-feat-cine-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px 64px 56px;
}
@media (max-width: 900px) {
  .ag-feat-cine-content { padding: 64px 24px 32px; }
}

/* HourGlass (mobile): stop overlaying — headline block on top, video below it. */
@media (max-width: 768px) {
  .ag-feat-hourglass .ag-feat-cine {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    min-height: 0;
    height: auto;
    background: #000;
  }
  .ag-feat-hourglass .ag-feat-cine-content {
    position: static;
    inset: auto;
    order: 0;
    padding: 32px 24px 20px;
  }
  .ag-feat-hourglass .ag-feat-cine-scrim { display: none; }
  .ag-feat-hourglass .ag-feat-cine-media {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    aspect-ratio: 16 / 10;
  }
  .ag-feat-hourglass .ag-feat-cine-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

.ag-feat-cine-eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 24px;
}

/* Cinematic title — solid white, modern simplicity */
.ag-feat-cine-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 5.6vw, 88px);
  font-weight: 700;
  letter-spacing: -.028em;
  line-height: 1;
  margin: 0;
  color: #fff;
  text-wrap: balance;
  max-width: 18ch;
}

/* --- Detail / big-stat block -------------------------------------- */
.ag-feat-detail {
  background: #000;
  color: #fff;
  padding: 56px 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) {
  .ag-feat-detail { padding: 72px 22px; gap: 40px; }
}

.ag-feat-detail-head {
  max-width: 740px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2;
}
.ag-feat-detail-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  letter-spacing: -.022em;
  line-height: 1.1;
  margin: 0;
  color: #fff;
}
.ag-feat-detail-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .68);
  margin: 0 auto;
  max-width: 56ch;
  text-wrap: pretty;
}

/* Big stats (Coros-style 164% / AMOLED) */
.ag-feat-detail-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  padding: 24px 0 8px;
  position: relative;
  z-index: 2;
}
.ag-feat-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  max-width: 280px;
}
/* Big stats — solid color, modern simplicity */
.ag-feat-stat-value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(44px, 5.6vw, 80px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1;
  color: #fff;
}
.ag-feat-hourglass .ag-feat-stat-value { color: #c96442; }
.ag-feat-nanoshield .ag-feat-stat-value { color: #6fbab3; }
.ag-feat-belgium-latex .ag-feat-stat-value { color: #b08c5a; }
.ag-feat-memogel .ag-feat-stat-value { color: #7aa3d4; }
.ag-feat-theracool .ag-feat-stat-value { color: #6cc3d6; }
.ag-feat-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  font-weight: 500;
  line-height: 1.5;
  max-width: 22ch;
  text-wrap: pretty;
}
@media (max-width: 720px) {
  .ag-feat-detail-stats { gap: 36px; }
}

/* Product / detail image with radial glow behind */
.ag-feat-detail-product {
  position: relative;
  width: min(960px, 100%);
  aspect-ratio: 16 / 10;
  margin-top: 12px;
}
.ag-feat-detail-product::before {
  content: '';
  position: absolute;
  inset: -10% -8% auto -8%;
  height: 70%;
  background: radial-gradient(ellipse at 50% 60%, rgba(255, 255, 255, .04) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(40px);
  z-index: 0;
}
.ag-feat-nanoshield .ag-feat-detail-product::before,
.ag-feat-memogel .ag-feat-detail-product::before,
.ag-feat-theracool .ag-feat-detail-product::before,
.ag-feat-hourglass .ag-feat-detail-product::before {
  background: radial-gradient(ellipse at 50% 60%, rgba(255, 255, 255, .04) 0%, transparent 70%);
}
.ag-feat-detail-product image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  --slot-bg: #0f0f0f;
  --slot-fg: #fff;
  --slot-border: rgba(255, 255, 255, .2);
  z-index: 1;
}

/* Resilient reveal — don't depend on JS observers on this page */
.ag-hero .reveal,
.ag-spec .reveal,
.ag-inside .reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* Kill any inherited serif italics within agility scope */
.ag-hero em,
.ag-spec em,
.ag-inside em {
  font-style: normal;
  font-family: inherit;
  color: var(--accent-ink, #8a6a00);
}

/* ================================================================== */
/* SCROLL-DRIVEN FADE-UP ANIMATIONS                                    */
/* Uses CSS scroll-timeline (view()) — works in modern browsers.       */
/* Falls back to immediate visibility if unsupported.                  */
/* ================================================================== */
@keyframes agFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@supports (animation-timeline: view()) {
  .ag-hero-eyebrow,
  .ag-hero-title,
  .ag-hero-tagline,
  .ag-hero-paragraph,
  .ag-hero-accent,
  .ag-toggle,
  .ag-cta-row,
  .ag-meta,
  .ag-hero-gallery,
  .ag-spec-head .ag-section-eyebrow,
  .ag-spec-head .ag-section-title,
  .ag-spec-row,
  .ag-inside-head-text > *,
  .ag-inside-arrows,
  .ag-inside-card {
    animation: agFadeUp linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }

  /* Stagger spec rows */
  .ag-spec-row:nth-child(1) { animation-delay: 0ms; }
  .ag-spec-row:nth-child(2) { animation-delay: 40ms; }
  .ag-spec-row:nth-child(3) { animation-delay: 80ms; }
  .ag-spec-row:nth-child(4) { animation-delay: 120ms; }
  .ag-spec-row:nth-child(5) { animation-delay: 160ms; }
  .ag-spec-row:nth-child(6) { animation-delay: 200ms; }
  .ag-spec-row:nth-child(7) { animation-delay: 240ms; }
  .ag-spec-row:nth-child(8) { animation-delay: 280ms; }
}

/* Hover lift on interactive cards */
.ag-inside-card { transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s ease; }
.ag-inside-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -28px rgba(10, 29, 58, .22);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .ag-hero *, .ag-spec *, .ag-inside * {
    animation: none !important;
    transition: none !important;
  }
}

/* ================================================================== */
/* RESPONSIVE — mobile + tablet polish                                 */
/* ================================================================== */

/* Tablet (≤ 980) */
@media (max-width: 980px) {
  .ag-hero { padding: 100px 22px 56px; }
  .ag-hero-inner { gap: 36px; }
  .ag-hero-thumbs { grid-template-columns: repeat(5, 1fr); }
  .ag-spec { padding: 0; }
  .ag-spec-head { padding: 56px 24px 24px; }
  .ag-spec-list { padding: 8px 24px 56px; }
  .ag-inside { padding: 80px 22px 96px; }
  .ag-inside-head { gap: 24px; }
}

/* Mobile (≤ 720) */
@media (max-width: 720px) {
  .ag-hero {
    padding: 90px 18px 48px;
  }
  .ag-hero-inner { gap: 28px; }
  .ag-hero-media { box-shadow: 0 30px 60px -40px rgba(10, 29, 58, .25); }
  .ag-hero-arrow { width: 38px; height: 38px; }
  .ag-hero-variant-pill,
  .ag-hero-img-counter {
    font-size: 10px;
    padding: 8px 11px;
  }
  .ag-hero-body { gap: 16px; }
  .ag-hero-title { font-size: clamp(40px, 13vw, 64px); }
  .ag-hero-tagline { font-size: 16px; }
  .ag-toggle-btn { padding: 12px 14px; }
  .ag-toggle-label { font-size: 13px; }
  .ag-toggle-sub { font-size: 10px; }
  .ag-cta { padding: 14px 18px; font-size: 12px; }
  .ag-meta { font-size: 11px; gap: 8px; }

  .ag-spec-row { padding: 18px 0; }
  .ag-spec-row dt { font-size: 10px; }
  .ag-spec-row dd { font-size: 15px; }

  .ag-section-title { font-size: clamp(28px, 7vw, 40px); }
  .ag-inside-arrow { width: 44px; height: 44px; }
  .ag-inside-track { gap: 16px; padding-right: 24px; margin-right: -22px; }
  .ag-inside-track .ag-inside-card { flex-basis: 78vw; }
  .ag-inside-card-body { padding: 20px 22px 24px; }
  .ag-inside-card-title { font-size: 17px; }
  .ag-inside-card-desc { font-size: 13.5px; }

  /* Constrain product image on mobile */
  .ag-hero-media-slot {
    max-height: 75vw;
  }
  .ag-hero-media-slot img {
    max-height: 75vw;
    object-fit: contain;
  }
}

/* Very small (≤ 480) — collapse thumb count for legibility */
@media (max-width: 480px) {
  .ag-hero-thumbs { grid-template-columns: repeat(4, 1fr); }
  .ag-hero-thumbs > button:nth-child(5) { display: none; }
  .ag-cta-row { gap: 8px; width: 100%; }
  .ag-cta { flex: 1 1 auto; justify-content: center; }
}

/* ================================================================== */
/* PRODUCT DETAIL — variant tabs + feature list (shared with           */
/* product-detail.jsx and agility.jsx spec section)                    */
/* ================================================================== */

/* Variant tab switcher in spec section */
.pd-spec-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.pd-spec-tab {
  padding: 9px 22px;
  border: 1px solid oklch(75% 0.02 240);
  background: transparent;
  border-radius: 4px;
  font-size: 13px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  color: var(--ag-navy, #0a1d3a);
  cursor: pointer;
  letter-spacing: .02em;
  transition: background .18s, color .18s, border-color .18s;
}

.pd-spec-tab:hover {
  background: oklch(94% 0.01 240);
}

.pd-spec-tab.active {
  background: var(--ag-navy, #0a1d3a);
  color: #fff;
  border-color: var(--ag-navy, #0a1d3a);
}

/* Features row — dt aligned top */
.pd-features-row dt {
  align-self: flex-start;
  padding-top: 3px;
}

/* Feature chips grid */
/* Feature bullet list */
.pd-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

@media (max-width: 780px) {
  .pd-features-list { grid-template-columns: 1fr; }
}

.pd-feature-item {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.45;
  white-space: nowrap;
  color: inherit;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.pd-feature-item::before {
  content: '•';
  position: absolute;
  left: 0;
  font-size: 16px;
  line-height: 1.3;
  color: inherit;
}

/* Inline variant switcher inside spec list */
.pd-variant-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pd-variant-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.65);
  padding: 5px 16px;
  font-size: 12px;
  letter-spacing: .04em;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  border-radius: 3px;
  cursor: pointer;
  transition: all .18s;
}

.pd-variant-btn.active {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

.pd-variant-btn:hover:not(.active) {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

.pd-feature-check {
  color: oklch(48% 0.16 155);
  flex-shrink: 0;
}

/* Accessory card view link */
.acc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  color: inherit;
  opacity: .55;
  transition: opacity .2s;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.acc-card-cta:hover { opacity: 1; }

/* ── Color swatch selector (headboards & foundations) ── */
.pd-color-selector { margin: 20px 0 4px; }

.pd-color-selected-label {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 14px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ag-navy, #0a1d3a);
  letter-spacing: .01em;
}

.pd-color-material {
  font-weight: 400;
  opacity: .55;
}

.pd-color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pd-color-option {
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 3px;
  background: transparent;
  cursor: pointer;
  transition: border-color .18s, transform .15s;
  outline: none;
}

.pd-color-option:hover:not(.active) {
  border-color: oklch(72% 0.02 240);
  transform: scale(1.06);
}

.pd-color-option.active {
  border-color: var(--ag-navy, #0a1d3a);
}

.pd-swatch-pair {
  display: flex;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.pd-swatch {
  display: block;
  width: 32px;
  height: 32px;
}

/* ── 1:1 product image containers ── */
.ag-hero-media-slot {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
}

.ag-hero-media-slot image-slot {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* ================================================================== */
/* MOBILE PRODUCT HERO — definitive overrides (must stay last)         */
/* ================================================================== */
@media (max-width: 768px) {
  /* Clip anything that escapes */
  .ag-hero {
    overflow-x: hidden !important;
    padding: 20px 20px 48px !important;   /* top matches sides; .page-shell already clears the fixed nav */
  }

  /* Switch from 2-col grid to simple vertical flex — most reliable */
  .ag-hero-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Gallery — full width, centred */
  .ag-hero-gallery {
    width: 100% !important;
    min-width: 0 !important;
  }

  /* Body — full width, no overflow */
  .ag-hero-body {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    gap: 16px !important;
    align-self: stretch !important;
  }

  /* Text — responsive sizes, wrap safely */
  .ag-hero-eyebrow { font-size: 10px !important; }
  .ag-hero-title {
    font-size: clamp(36px, 10vw, 52px) !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
  .ag-hero-tagline {
    font-size: 16px !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
  }
  .ag-hero-paragraph {
    font-size: 14px !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
  }
  .ag-hero-accent {
    font-size: 13px !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
  }

  /* Toggle — fill full width */
  .ag-toggle {
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }
  .ag-toggle-btn {
    padding: 12px 10px !important;
  }
  .ag-toggle-label { font-size: 13px !important; }
  .ag-toggle-sub { font-size: 10px !important; }

  /* CTAs — stack vertically, full width */
  .ag-cta-row {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 4px !important;
  }
  .ag-cta {
    width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    padding: 14px 20px !important;
    font-size: 12px !important;
  }

  /* Gallery slots keep the desktop carousel behaviour (portrait 4/5, 1.5-image
     peek, working prev/next) — the JS sizes each slot; no mobile-specific crop. */
}

/* ==== NanoShield Pro® feature layout (ported from design agility.css) ==== */
/* NANO SHIELD PRO® FEATURE SECTION — scroll-scrub cinematic           */
/* ================================================================== */

.ag-feat-nanoshield-pro .ag-feat-cine-headline { color: #fff; }

.nsp-cine-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}

/* ── Hover-play wrap ── */
.nsp-hover-wrap {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 720px;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 52px 40px 40px;
  overflow: hidden;
  cursor: crosshair;
}

/* ── Title block ── */
.nsp-scrub-head {
  text-align: center;
  max-width: 640px;
  flex-shrink: 0;
}

.nsp-scrub-head .ag-feat-detail-title { margin-bottom: 12px; }
.nsp-scrub-head .ag-feat-detail-desc  { margin: 0 auto; max-width: 520px; }

.nsp-teal { color: #6fbab3; }
.nsp-accent-pro { color: #D97757; }

/* ── Scrub canvas ── */
.nsp-scrub-canvas {
  display: block;
  width: 100%;
  flex: 1;
  min-height: 220px;
  height: 0;
}

/* ── Hover hint ── */
.nsp-hover-hint {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  pointer-events: none;
  white-space: nowrap;
  transition: opacity .4s;
}

.nsp-hover-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #6fbab3;
  animation: nsp-dot-pulse 1.8s ease-in-out infinite;
}

.cu-hover-dot {
  background: #C87533 !important;
  animation: cu-dot-pulse 2.4s ease-in-out infinite !important;
}

/* ── Pillars ── */
.nsp-scrub-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 960px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  transition: opacity .15s, transform .15s;
}

.nsp-scrub-pillar {
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(111,186,179,0.03);
}

.nsp-scrub-pillar:last-child { border-right: none; }

.nsp-pillar-n {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(111,186,179,0.45);
  text-transform: uppercase;
}

.nsp-pillar-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.nsp-pillar-body {
  font-size: 11.5px;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  margin: 0;
}

/* ── Footer bar ── */
.nsp-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.nsp-footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,0.72);
}

.nsp-footer-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6fbab3;
  animation: nsp-dot-pulse 2.2s ease-in-out infinite;
}

@keyframes nsp-dot-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.nsp-footer-right {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* ── Responsive ── */
@media (max-width: 720px) {
  /* Let the section grow to fit head + canvas + 3 stacked pillars instead of
     clipping them inside the fixed 100vh/720px height. */
  .nsp-hover-wrap { height: auto; min-height: 0; overflow: visible; justify-content: flex-start; gap: 28px; padding: 40px 20px 28px; }
  .nsp-scrub-canvas { flex: none; height: 300px; min-height: 300px; }
  .nsp-hover-hint { display: none; }   /* hover cue is meaningless on touch */
  .nsp-scrub-pillars { grid-template-columns: 1fr; }
  .nsp-scrub-pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nsp-scrub-pillar:last-child { border-bottom: none; }
  .nsp-footer-bar { padding: 18px 24px; flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ================================================================== */
/* COPPER TECHNOLOGY FEATURE SECTION                                   */

/* ==== AeroLatex™ feature layout (ported from design agility.css) ==== */
/* AEROLATEX™ FEATURE SECTION — scroll-scrub cinematic                 */
/* ================================================================== */

.ag-feat-aerolatex .ag-feat-cine-headline {
  color: #fff;
}

/* Cinematic BG canvas */
.al-cine-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}

/* ── Hover-play wrap ── */
.al-hover-wrap {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 720px;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 52px 40px 40px;
  overflow: hidden;
  cursor: crosshair;
  gap: 0;
}

/* ── Centered title block ── */
.al-scrub-head {
  text-align: center;
  max-width: 640px;
  flex-shrink: 0;
}

.al-scrub-head .ag-feat-detail-title {
  margin-bottom: 12px;
}

.al-scrub-head .ag-feat-detail-desc {
  margin: 0 auto;
  max-width: 520px;
}

/* Gold accent in title */
.al-gold {
  color: #F5B731;
}

/* ── Scrub canvas ── */
.al-scrub-canvas {
  display: block;
  width: 100%;
  flex: 1;
  min-height: 220px;
  height: 0;
}

/* ── Hover hint ── */
.al-hover-hint {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  pointer-events: none;
  white-space: nowrap;
  transition: opacity .4s;
}

.al-hover-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #F5B731;
  animation: al-dot-pulse 1.8s ease-in-out infinite;
}

/* ── Pillars row ── */
.al-scrub-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  max-width: 960px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  transition: opacity .15s, transform .15s;
}

.al-scrub-pillar {
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255,255,255,0.02);
}

.al-scrub-pillar:last-child { border-right: none; }

.al-pillar-n {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(245,183,49,0.45);
  text-transform: uppercase;
}

.al-pillar-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.al-pillar-body {
  font-size: 11.5px;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  margin: 0;
}

/* ── Footer bar ── */
.al-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.al-footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,0.72);
}

.al-footer-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #F5B731;
  flex-shrink: 0;
  animation: al-dot-pulse 2.2s ease-in-out infinite;
}

@keyframes al-dot-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.al-footer-right {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* ── Responsive ── */
@media (max-width: 720px) {
  /* Grow to fit all content instead of clipping inside the fixed 100vh height. */
  .al-hover-wrap { height: auto; min-height: 0; overflow: visible; justify-content: flex-start; gap: 28px; padding: 40px 20px 28px; }
  .al-scrub-canvas { flex: none; height: 300px; min-height: 300px; }
  .al-hover-hint { display: none; }
  .al-scrub-pillars { grid-template-columns: 1fr; }
  .al-scrub-pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .al-scrub-pillar:last-child { border-bottom: none; }
  .al-footer-bar { padding: 18px 24px; flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ==== Copper feature (ported from design agility.css) ==== */
/* COPPER TECHNOLOGY FEATURE SECTION                                   */
/* ================================================================== */

/* Cinematic opener — warm copper gradient bg */
.ag-feat-copper .nsp-cine-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}

.cu-cine {
  background: linear-gradient(135deg, #1a0c04 0%, #2e1205 35%, #1a0c04 70%, #0e0703 100%);
}

.cu-scrim {
  background: linear-gradient(
    to bottom,
    rgba(26, 12, 4, 0.15) 0%,
    rgba(15, 7, 2, 0.55) 65%,
    rgba(10, 5, 1, 0.85) 100%
  );
}

.cu-headline { color: #E8A030; }

/* Accent colour in scrub head */
.cu-accent { color: #C87533; }

/* Scroll dot */
.cu-scroll-dot {
  background: #C87533;
  animation: cu-dot-pulse 2.4s ease-in-out infinite;
}
@keyframes cu-dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(200,117,51,0.5); }
  50%       { opacity: 0.4; box-shadow: 0 0 0 6px rgba(200,117,51,0); }
}

/* Pillar number */
.cu-pillar-n { color: #C87533 !important; }

/* ── Benefits section ── */
.cu-benefits-section {
  background: #0d0602;
  padding: 100px 40px 80px;
  border-top: 1px solid rgba(200,117,51,0.12);
}

.cu-benefits-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.cu-benefits-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cu-benefits-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #C87533;
  font-family: 'Inter', sans-serif;
}

.cu-benefits-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: #E8A030;
  letter-spacing: .01em;
  margin: 0;
}

.cu-benefits-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.cu-benefits-grid {
  display: grid;
  gap: 24px;
  width: 100%;
}

.cu-row-1 { grid-template-columns: repeat(4, 1fr); }

.cu-row-2 {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.cu-row-2 .cu-benefit-card {
  flex: 0 0 calc((100% - 72px) / 4);
}

.cu-benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 20px;
  background: rgba(200,117,51,0.06);
  border: 1px solid rgba(200,117,51,0.14);
  border-radius: 2px;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.cu-benefit-card:hover {
  background: rgba(200,117,51,0.12);
  border-color: rgba(200,117,51,0.32);
  transform: translateY(-3px);
}

.cu-benefit-icon {
  width: 60px;
  height: 60px;
  color: #C87533;
  flex-shrink: 0;
}

.cu-benefit-icon svg {
  width: 100%;
  height: 100%;
}

.cu-benefit-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,0.78);
  text-align: center;
  line-height: 1.4;
}

/* 7th card — centre it in the 4-col grid */
.cu-benefit-card:last-child:nth-child(4n+3),
.cu-benefit-card:nth-child(5) ~ .cu-benefit-card:last-child {
  grid-column: 2 / 4;
}

/* ── Periodic element bar ── */
.cu-element-bar {
  background: #0a0503;
  border-top: 1px solid rgba(200,117,51,0.10);
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 56px 64px;
}

.cu-element-tile {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border: 2px solid #C87533;
  background: linear-gradient(135deg, #2e1808 0%, #1a0d04 100%);
  display: grid;
  grid-template-areas:
    "num  mass"
    "sym  sym"
    "name name";
  grid-template-rows: auto 1fr auto;
  padding: 8px 10px;
  position: relative;
  box-shadow: 0 0 28px rgba(200,117,51,0.18), inset 0 0 20px rgba(200,117,51,0.06);
}

.cu-el-number {
  grid-area: num;
  font-size: 12px;
  font-weight: 700;
  color: rgba(200,117,51,0.7);
  font-family: 'Inter', sans-serif;
}

.cu-el-mass {
  grid-area: mass;
  font-size: 12px;
  font-weight: 500;
  color: rgba(200,117,51,0.55);
  font-family: 'Inter', sans-serif;
  text-align: right;
}

.cu-el-symbol {
  grid-area: sym;
  font-size: 52px;
  font-weight: 800;
  color: #E8A030;
  font-family: 'Inter', sans-serif;
  text-align: center;
  line-height: 1;
  align-self: center;
}

.cu-el-name {
  grid-area: name;
  font-size: 11px;
  font-weight: 500;
  color: rgba(200,117,51,0.6);
  font-family: 'Inter', sans-serif;
  text-align: center;
  letter-spacing: .08em;
  text-transform: lowercase;
}

.cu-element-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.52);
  font-family: 'Inter', sans-serif;
  max-width: 680px;
}

.cu-element-desc strong {
  color: #E8A030;
  font-weight: 700;
}

/* ── Footer bar ── */
.cu-footer-bar {
  background: #080401;
  border-top: 1px solid rgba(200,117,51,0.10);
}

.cu-footer-dot {
  background: #C87533 !important;
}

/* Accent stat value */
.ag-feat-copper .ag-feat-stat-value { color: #C87533; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .cu-benefits-section { padding: 72px 24px 64px; }
  .cu-benefits-grid { gap: 16px; }
  .cu-row-1 { grid-template-columns: repeat(3, 1fr); }
  /* Match cu-row-1: same grid instead of flex (was overflowing on mobile). */
  .cu-row-2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .cu-row-2 .cu-benefit-card { flex: none; }
  .cu-element-bar { flex-direction: column; align-items: flex-start; padding: 40px 24px; gap: 28px; }
}

@media (max-width: 620px) {
  .cu-benefits-grid { gap: 16px; }
  .cu-row-1 { grid-template-columns: repeat(2, 1fr); }
  .cu-row-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cu-row-2 .cu-benefit-card { flex: none; }
  /* Lone trailing card (odd count) spans both columns and centers. */
  .cu-row-2 .cu-benefit-card:last-child:nth-child(odd) { grid-column: 1 / -1; justify-self: center; width: calc(50% - 8px); }
  .cu-element-bar { padding: 32px 20px; }
  .cu-element-tile { width: 90px; height: 90px; }
  .cu-el-symbol { font-size: 40px; }
}

/* ================================================================== */
/* Canvas-only cines (AeroLatex / NanoShield): no footage to show, so  */
/* don't reserve 21:9 cinematic height — hug the text. Copper keeps the */
/* full cinematic banner (like Belgium Latex) — its lattice fills it.   */
/* ================================================================== */
.ag-feat-aerolatex .ag-feat-cine,
.ag-feat-nanoshield-pro .ag-feat-cine {
  aspect-ratio: auto;
  min-height: 0;
}
.ag-feat-aerolatex .ag-feat-cine-content,
.ag-feat-nanoshield-pro .ag-feat-cine-content {
  position: relative;
  inset: auto;
  padding: 48px 64px 40px;
}
@media (max-width: 900px) {
  .ag-feat-aerolatex .ag-feat-cine-content,
  .ag-feat-nanoshield-pro .ag-feat-cine-content {
    padding: 36px 24px 28px;
  }
}
