@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --surface: #ECEEF2;
  --border: #D8DBE3;
  --border-strong: #B0B6C4;
  --text-dark: #111827;
  --text-mid: #4B5563;
  --text-light: #9CA3AF;
  --red: #CC2222;
  --red-light: #FEE2E2;
  --red-dark: #991B1B;
  --navy: #0F1E3A;
  --navy-light: #1E3A6E;
  --green: #15803D;
  --green-light: #DCFCE7;
  --mono: 'DM Mono', monospace;
}

.stm-dcmc, .stm-dcmc *, .stm-dcmc *::before, .stm-dcmc *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

.stm-dcmc {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--text-dark);
}

/* ── NAV ── */
.stm-nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-svg { width: 32px; height: 32px; }
.nav-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 20px; color: var(--navy); letter-spacing: 1px;
}
.nav-brand span { color: var(--red); }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links li a {
  display: block; padding: 0 18px; height: 64px; line-height: 64px;
  font-size: 13px; font-weight: 600; color: var(--text-mid);
  text-decoration: none; letter-spacing: 0.3px;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links li a:hover { color: var(--text-dark); border-color: var(--red); }
.nav-cta {
  background: var(--red); color: white; padding: 9px 20px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  border-radius: 3px; text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--red-dark); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 100px 48px 64px;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 48px; align-items: center;
  background: var(--white);
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 48%;
  background: var(--off-white);
  border-left: 1px solid var(--border);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-visual { position: relative; z-index: 1; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-radius: 100px;
  padding: 5px 14px 5px 5px; margin-bottom: 24px;
}
.hero-tag-dot {
  width: 22px; height: 22px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-tag-dot svg { width: 10px; height: 10px; fill: white; }
.hero-tag-text { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-mid); }

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(48px, 5.5vw, 76px);
  line-height: 0.95; text-transform: uppercase; color: var(--navy);
  margin-bottom: 20px;
}
.hero-headline em { color: var(--red); font-style: normal; }
.hero-headline .rule {
  display: block; width: 56px; height: 5px;
  background: var(--red); margin: 16px 0;
}

.hero-sub {
  font-size: 16px; color: var(--text-mid); line-height: 1.75;
  max-width: 440px; margin-bottom: 36px;
}

.hero-kpi-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden; margin-bottom: 36px;
}
.hero-kpi {
  padding: 18px 16px; border-right: 1px solid var(--border); background: var(--off-white);
}
.hero-kpi:last-child { border-right: none; }
.hero-kpi-val {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 28px;
  color: var(--navy); line-height: 1;
}
.hero-kpi-val span { color: var(--red); font-size: 18px; }
.hero-kpi-label { font-size: 11px; color: var(--text-light); letter-spacing: 0.5px; margin-top: 3px; font-weight: 600; text-transform: uppercase; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-red {
  background: var(--red); color: white;
  padding: 13px 28px; border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  transition: background 0.15s, transform 0.1s;
  border: none; cursor: pointer;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--navy);
  padding: 13px 28px; border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  border: 1.5px solid var(--border-strong);
  transition: border-color 0.15s, color 0.15s;
}
.btn-outline:hover { border-color: var(--navy); }

.hero-img-frame {
  position: relative; border-radius: 8px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.hero-img-frame img { width: 100%; display: block; }
.hero-img-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--navy); color: white;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  padding: 6px 12px; border-radius: 4px; letter-spacing: 0.5px;
}

/* ── TICKER ── */
.ticker {
  background: var(--navy); overflow: hidden;
  padding: 14px 0; border-top: 3px solid var(--red);
}
.ticker-inner {
  display: flex; gap: 0;
  animation: tick 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 40px; white-space: nowrap;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.ticker-item span { color: var(--red); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION SHELL ── */
.section { padding: 88px 48px; }
.section.bg-off { background: var(--off-white); }
.section.bg-navy { background: var(--navy); }
.section.bg-white { background: var(--white); }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--red);
  margin-bottom: 12px;
}
.section-eyebrow::before { content: '//'; opacity: 0.4; }

.section-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(32px, 3.5vw, 52px); text-transform: uppercase;
  color: var(--navy); line-height: 1.0; margin-bottom: 16px;
}
.section-title em { color: var(--red); font-style: normal; }
.section-title.light { color: white; }

.section-sub { font-size: 15px; color: var(--text-mid); line-height: 1.75; max-width: 540px; }
.section-sub.light { color: rgba(255,255,255,0.6); }

/* ── 2-COL LAYOUT ── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

.img-card {
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.img-card img { width: 100%; display: block; }
.img-card.dark-shadow { box-shadow: 0 8px 48px rgba(0,0,0,0.18); border-color: rgba(255,255,255,0.08); }

/* ── PROBLEM TAGS ── */
.problem-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 28px;
}
.problem-tag {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px; border-radius: 4px;
  border: 1px solid #FECACA; background: #FFF5F5;
}
.problem-x {
  width: 20px; height: 20px; background: var(--red); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 10px; font-weight: 900; flex-shrink: 0; margin-top: 1px;
}
.problem-text { font-size: 13px; font-weight: 600; color: #7F1D1D; line-height: 1.4; }

.solution-row {
  display: flex; flex-direction: column; gap: 10px; margin-top: 28px;
}
.solution-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: 4px;
  border: 1px solid var(--border); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.solution-item:hover { border-color: var(--red); box-shadow: 0 2px 12px rgba(204,34,34,0.08); }
.solution-check {
  width: 22px; height: 22px; background: var(--green-light); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 11px; font-weight: 900; flex-shrink: 0; margin-top: 1px;
}
.solution-title { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.solution-desc { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ─────────────────────────────────────────────────────────────
   INTERACTIVE SPECS EXPLORER
───────────────────────────────────────────────────────────── */
.specs-explorer { margin-top: 48px; }

.spec-tabs {
  display: flex; border-bottom: 1px solid var(--border); gap: 0; margin-bottom: 32px;
}
.spec-tab {
  padding: 12px 24px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.5px; color: var(--text-mid); cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s; background: none; border-top: none;
  border-left: none; border-right: none; font-family: 'Barlow', sans-serif;
}
.spec-tab:hover { color: var(--text-dark); }
.spec-tab.active { color: var(--red); border-bottom-color: var(--red); }

.spec-panel { display: none; }
.spec-panel.active { display: block; }

/* axis visual */
.axis-visual-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start;
}
.axis-bars { display: flex; flex-direction: column; gap: 20px; }
.axis-bar-row { }
.axis-bar-label {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 6px;
}
.axis-bar-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 24px; color: var(--navy); }
.axis-bar-desc { font-size: 12px; color: var(--text-light); font-weight: 500; }
.axis-bar-val { font-family: var(--mono); font-size: 14px; color: var(--red); font-weight: 500; }
.axis-track { height: 10px; background: var(--surface); border-radius: 100px; overflow: hidden; }
.axis-fill { height: 100%; background: var(--red); border-radius: 100px; width: 0; transition: width 0.9s cubic-bezier(0.4,0,0.2,1); }
.axis-fill.vmc-fill { background: var(--border-strong); }

.axis-info-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 8px; padding: 24px;
}
.axis-info-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 18px; color: var(--navy); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.axis-info-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.axis-info-row:last-child { border-bottom: none; }
.axis-info-key { color: var(--text-mid); font-weight: 500; }
.axis-info-val { color: var(--navy); font-weight: 700; font-family: var(--mono); }

/* load gauge */
.load-gauge-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
}
.gauge-container { display: flex; flex-direction: column; align-items: center; }
.gauge-svg { width: 240px; height: 140px; }
.gauge-label-row { display: flex; gap: 24px; margin-top: 8px; }
.gauge-legend { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-mid); }
.gauge-dot { width: 10px; height: 10px; border-radius: 50%; }

.load-details { }
.load-stat { margin-bottom: 24px; }
.load-stat-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; font-family: var(--mono); }
.load-stat-val { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 36px; color: var(--navy); line-height: 1; }
.load-stat-val em { color: var(--red); font-style: normal; font-size: 20px; }
.load-stat-desc { font-size: 13px; color: var(--text-mid); margin-top: 4px; }

/* spindle panel */
.spindle-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.spindle-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 24px; position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.spindle-card:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(204,34,34,0.08); }
.spindle-card-label { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; }
.spindle-card-val { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 40px; color: var(--navy); line-height: 1; }
.spindle-card-unit { font-size: 16px; color: var(--red); }
.spindle-card-desc { font-size: 12px; color: var(--text-mid); margin-top: 8px; line-height: 1.5; }
.spindle-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--red-light); color: var(--red);
  font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 100px;
}

/* ─────────────────────────────────────────────────────────────
   INTERACTIVE COMPARISON TOOL
───────────────────────────────────────────────────────────── */
.compare-tool {
  margin-top: 48px;
}
.compare-toggle-row {
  display: flex; align-items: center; gap: 16px; margin-bottom: 32px;
}
.compare-toggle-label { font-size: 13px; font-weight: 600; color: var(--text-mid); }
.view-toggle { display: flex; background: var(--surface); border-radius: 6px; padding: 3px; gap: 3px; }
.view-btn {
  padding: 7px 16px; border-radius: 4px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer;
  border: none; background: transparent; color: var(--text-mid);
  transition: all 0.15s; font-family: 'Barlow', sans-serif;
}
.view-btn.active { background: white; color: var(--navy); box-shadow: 0 1px 4px rgba(0,0,0,0.1); }

.compare-view { display: none; }
.compare-view.active { display: block; }

/* table view */
.compare-tbl {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}
.compare-tbl thead th {
  padding: 14px 20px; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
  text-align: left; background: var(--off-white); border-bottom: 1px solid var(--border);
}
.compare-tbl thead th.dc-head { background: var(--navy); color: white; }
.compare-tbl tbody tr { border-bottom: 1px solid var(--border); }
.compare-tbl tbody tr:last-child { border-bottom: none; }
.compare-tbl tbody tr:hover td { background: #FAFBFC; }
.compare-tbl td { padding: 14px 20px; font-size: 14px; }
.compare-tbl td.param { font-weight: 600; color: var(--text-dark); }
.compare-tbl td.vmc-val { color: var(--text-mid); }
.compare-tbl td.dc-val { color: var(--navy); font-weight: 700; background: rgba(15,30,58,0.03); }
.win-badge {
  display: inline-flex; align-items: center; gap: 4px; margin-left: 8px;
  background: var(--green-light); color: var(--green);
  font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 100px; letter-spacing: 0.5px;
}

/* bar chart view */
.bar-compare { display: flex; flex-direction: column; gap: 28px; }
.bar-compare-row { }
.bar-compare-label { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.bar-pair { display: flex; flex-direction: column; gap: 6px; }
.bar-entry { display: flex; align-items: center; gap: 12px; }
.bar-machine-name { font-size: 11px; font-weight: 600; color: var(--text-mid); width: 90px; text-align: right; flex-shrink: 0; }
.bar-track { flex: 1; height: 28px; background: var(--surface); border-radius: 4px; overflow: hidden; position: relative; }
.bar-fill-vmc { height: 100%; background: var(--border-strong); border-radius: 4px; width: 0; transition: width 0.8s cubic-bezier(0.4,0,0.2,1); display: flex; align-items: center; padding-left: 10px; }
.bar-fill-dc { height: 100%; background: var(--navy); border-radius: 4px; width: 0; transition: width 0.8s cubic-bezier(0.4,0,0.2,1) 0.1s; display: flex; align-items: center; padding-left: 10px; }
.bar-fill-label { font-size: 11px; font-weight: 700; color: white; white-space: nowrap; }
.bar-fill-vmc .bar-fill-label { color: var(--text-dark); }

/* ── MILLING HEADS ── */
.heads-section { }
.heads-tabs { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.head-tab {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 6px;
  border: 1px solid var(--border); cursor: pointer; background: var(--white);
  transition: all 0.15s;
}
.head-tab:hover { border-color: var(--red); }
.head-tab.active { background: var(--navy); border-color: var(--navy); }
.head-tab-icon { font-size: 20px; }
.head-tab-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--text-dark);
}
.head-tab.active .head-tab-name { color: white; }

.head-panel { display: none; }
.head-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.head-detail-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 32px; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.head-detail-desc { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; }
.head-detail-use { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 10px; font-family: var(--mono); }
.head-use-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.head-use-tag {
  background: var(--surface); border: 1px solid var(--border); border-radius: 4px;
  padding: 5px 12px; font-size: 12px; font-weight: 600; color: var(--text-dark);
}

.head-visual {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 8px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 80px; flex-direction: column; gap: 12px;
}
.head-visual-label { font-family: var(--mono); font-size: 11px; color: var(--text-light); letter-spacing: 1px; }

/* ── CREATIVES GRID ── */
.creatives-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.creative-thumb {
  border-radius: 8px; overflow: hidden; border: 1px solid var(--border);
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.creative-thumb:hover { transform: scale(1.02); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.creative-thumb img { width: 100%; display: block; }
.creative-thumb-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,30,58,0.9));
  padding: 24px 14px 14px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 13px; color: white; text-transform: uppercase; letter-spacing: 0.5px;
}
.creative-thumb:first-child { grid-column: span 2; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(15,30,58,0.95); display: none;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px; color: white;
  font-size: 32px; cursor: pointer; line-height: 1; background: none; border: none;
}

/* ── CTA ── */
.cta-wrap {
  background: var(--navy); border-radius: 12px; padding: 64px 56px;
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
  margin: 0 48px 80px; position: relative; overflow: hidden;
}
.cta-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.cta-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(28px, 3vw, 44px); text-transform: uppercase; color: white;
  line-height: 1.05; margin-bottom: 10px;
}
.cta-title em { color: var(--red); font-style: normal; }
.cta-sub { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 460px; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }

/* ── FOOTER ── */
.stm-footer {
  background: #060D1A; padding: 32px 48px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-left { }
.footer-brand { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 18px; color: white; }
.footer-brand span { color: var(--red); }
.footer-sub { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 3px; letter-spacing: 0.5px; }
.footer-right { font-size: 11px; color: rgba(255,255,255,0.25); text-align: right; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; } .d3 { transition-delay: 0.24s; }

/* ── RESPONSIVE ── */
@media(max-width:900px){
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 88px 24px 48px; }
  .hero::after { display: none; }
  .two-col, .two-col.flip { grid-template-columns: 1fr; direction: ltr; }
  .section { padding: 56px 24px; }
  .cta-wrap { grid-template-columns: 1fr; margin: 0 24px 56px; padding: 40px 32px; }
  .cta-actions { align-items: flex-start; }
  .creatives-grid { grid-template-columns: 1fr 1fr; }
  .creative-thumb:first-child { grid-column: span 1; }
  .axis-visual-wrap, .load-gauge-wrap, .spindle-grid { grid-template-columns: 1fr; }
  footer { padding: 24px; flex-direction: column; gap: 12px; align-items: flex-start; }
}
