:root {
  --bg: #FF5544;
  --fg: #FFFFFF;
  --accent: #0A0A0A;
  --muted: #1A1A1A;
  --ink: #0A0A0A;
  --surface: #222222;
  --paper: #F4F0EA;
  --paper-2: #ECE6DC;
  --line: rgba(10,10,10,0.12);
  --line-soft: rgba(10,10,10,0.06);
  --shadow-1: 0 1px 2px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-2: 0 4px 12px rgba(0,0,0,0.10), 0 24px 60px rgba(0,0,0,0.18);
  --shadow-3: 0 30px 80px rgba(0,0,0,0.30);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --t-fast: 220ms;
  --t-med: 420ms;
  --t-slow: 700ms;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.5;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
svg { display: block; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- TOP BAR ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  pointer-events: none;
}
.topbar > * { pointer-events: auto; }

.logo {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  display: inline-flex;
  align-items: baseline;
}
.logo-dot { color: var(--bg); transition: color var(--t-fast) var(--ease); }
.logo:hover .logo-dot { color: var(--fg); }

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 32px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  opacity: 0.92;
  transition: opacity var(--t-fast) var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--fg);
  transition: right var(--t-med) var(--ease);
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { right: 0; }

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--accent);
  color: var(--fg);
  border: none;
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.cta-pill:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.24); }
.cta-pill:active { transform: translateY(0); }
.cta-toggle {
  position: relative;
  width: 24px; height: 24px;
  background: var(--bg);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--accent);
  transition: transform var(--t-med) var(--ease);
}
.cta-toggle::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.5);
}
.cta-pill:hover .cta-toggle { transform: translateX(2px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--bg);
  color: var(--fg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
}

.hero-cluster {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.duck {
  position: absolute;
  fill: var(--accent);
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.32));
  opacity: 0.96;
  animation: float 7s ease-in-out infinite;
  will-change: transform;
}
.duck-1 { top: 12%; left: 6%;  width: 160px; animation-delay: 0s;   transform: rotate(-10deg); }
.duck-2 { top: 52%; left: 14%; width: 300px; animation-delay: 0.8s; transform: rotate(-4deg); }
.duck-3 { top: 18%; right: 10%; width: 220px; animation-delay: 1.6s; transform: rotate(7deg); }
.duck-4 { top: 56%; right: 6%; width: 360px; animation-delay: 0.4s; transform: rotate(-2deg); }
.duck-5 { top: 38%; left: 44%; width: 130px; animation-delay: 2.2s; transform: rotate(14deg); opacity: 0.85; }

@keyframes float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -14px; }
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1080px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.85;
}
.hero-eyebrow-sep { opacity: 0.5; }
.hero-headline {
  font-size: clamp(48px, 8.4vw, 112px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto 44px;
}
.scroll-cue {
  width: 52px; height: 52px;
  background: var(--fg);
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  animation: bounce 2.6s var(--ease) infinite;
  transition: transform var(--t-fast) var(--ease);
}
.scroll-cue:hover { transform: scale(1.06); }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
.hero-meta {
  position: absolute;
  bottom: 28px;
  left: 40px; right: 40px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  z-index: 2;
}

/* ---------- SECTION HEAD ---------- */
.section-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 6px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
}
.section-title {
  font-size: clamp(36px, 5.4vw, 72px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.section-note {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.55;
  max-width: 520px;
  opacity: 0.78;
}

/* ---------- SCALE ---------- */
.scale {
  background: var(--accent);
  color: var(--fg);
  padding: 140px 40px 80px;
  position: relative;
}
.scale .section-head { max-width: 1400px; margin: 0 auto 80px; }
.scale-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.scale-mark {
  padding: 32px 24px 36px;
  border-right: 1px solid rgba(255,255,255,0.14);
  position: relative;
  cursor: pointer;
  transition: background var(--t-med) var(--ease);
}
.scale-mark:last-child { border-right: none; }
.scale-mark::before {
  content: '';
  position: absolute;
  left: 24px; right: 24px; bottom: 0;
  height: 2px;
  background: var(--bg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.scale-mark:hover { background: rgba(255,255,255,0.03); }
.scale-mark:hover::before { transform: scaleX(1); }
.scale-size {
  display: block;
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.scale-unit {
  font-size: 0.45em;
  font-weight: 400;
  margin-left: 4px;
  opacity: 0.7;
}
.scale-comp {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0.6;
}
.scale-line {
  display: block;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scale-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 4px;
  opacity: 0.7;
}
.scale-foot {
  max-width: 1400px;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* ---------- LINES ---------- */
.lines {
  background: var(--paper);
  color: var(--accent);
  padding: 140px 40px 100px;
}
.lines .section-head { max-width: 1400px; margin: 0 auto 64px; }
.line-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.line-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.line-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--bg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.line-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
  border-color: var(--accent);
}
.line-card:hover::after { transform: scaleX(1); }

.line-img {
  aspect-ratio: 4/5;
  background: var(--paper-2);
  overflow: hidden;
  position: relative;
}
.line-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.line-card:hover .line-img img { transform: scale(1.04); }
.line-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.06) 100%);
  pointer-events: none;
}

.line-meta { padding: 22px 22px 26px; }
.line-num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 10px;
}
.line-name {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.line-size {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--bg);
  margin-bottom: 12px;
}
.line-voice {
  font-size: 13.5px;
  line-height: 1.5;
  opacity: 0.72;
  margin-bottom: 18px;
  min-height: 60px;
}
.line-price {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.line-price span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 4px;
}
.line-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 8px;
  background: var(--paper-2);
  border-radius: 3px;
  opacity: 0.75;
}

/* per-item hover under-glow */
.line-card-micro:hover       { box-shadow: 0 12px 36px rgba(255,85,68,0.18),  var(--shadow-2); }
.line-card-classic:hover     { box-shadow: 0 12px 36px rgba(10,10,10,0.22),  var(--shadow-2); }
.line-card-designer:hover    { box-shadow: 0 12px 36px rgba(155,81,224,0.22), var(--shadow-2); }
.line-card-mega:hover        { box-shadow: 0 12px 36px rgba(39,174,96,0.20),  var(--shadow-2); }
.line-card-architect:hover   { box-shadow: 0 12px 36px rgba(242,201,76,0.22), var(--shadow-2); }

/* ---------- PRODUCTION ---------- */
.production {
  background: var(--accent);
  color: var(--fg);
  padding: 140px 40px 120px;
}
.production .section-head { max-width: 1400px; margin: 0 auto 64px; }
.prod-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
}
.prod-card {
  background: var(--accent);
  padding: 40px 32px 44px;
  position: relative;
  transition: background var(--t-med) var(--ease);
}
.prod-card:hover { background: var(--muted); }
.prod-num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 18px;
}
.prod-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.prod-text {
  font-size: 14.5px;
  line-height: 1.55;
  opacity: 0.78;
}

/* ---------- B2B ---------- */
.b2b {
  background: var(--paper);
  color: var(--accent);
  padding: 140px 40px 120px;
}
.b2b-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.b2b-copy .section-title { margin-bottom: 32px; }
.b2b-lead {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 18px;
  max-width: 520px;
}
.b2b-text {
  font-size: 14.5px;
  line-height: 1.6;
  opacity: 0.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.b2b-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.b2b-meta-num {
  display: block;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--bg);
  margin-bottom: 8px;
}
.b2b-meta-label {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  line-height: 1.3;
}
.b2b-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--fg);
  border: none;
  border-radius: 999px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.b2b-btn:hover {
  background: var(--bg);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255,85,68,0.32);
}
.b2b-btn:hover svg path { stroke: var(--accent); }

.palette {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  position: sticky;
  top: 100px;
}
.swatch {
  background: var(--c);
  aspect-ratio: 1/1.2;
  border-radius: 3px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}
.swatch:hover { transform: translateY(-3px) scale(1.02); }
.swatch-code {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  mix-blend-mode: difference;
  color: #fff;
}
.swatch-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  align-self: flex-end;
  mix-blend-mode: difference;
  color: #fff;
}

/* ---------- MANIFESTO ---------- */
.manifesto {
  background: var(--bg);
  color: var(--fg);
  padding: 160px 40px 180px;
  text-align: center;
}
.manifesto-text {
  font-size: clamp(28px, 4.4vw, 56px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.manifesto-text span { display: block; }
.manifesto-em { font-style: italic; opacity: 0.78; }
.manifesto-sign {
  margin-top: 64px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--accent);
  color: var(--fg);
  padding: 80px 40px 32px;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo { font-size: 24px; }
.footer-brand p {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.55;
  opacity: 0.7;
  max-width: 240px;
}
.footer-tag {
  margin-top: 18px !important;
  font-size: 11px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5 !important;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  line-height: 2;
  opacity: 0.85;
  transition: opacity var(--t-fast) var(--ease);
}
.footer-col a:hover { opacity: 1; color: var(--bg); }
.footer-bottom {
  max-width: 1400px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* ---------- MODAL ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.modal[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-card {
  position: relative;
  background: var(--fg);
  color: var(--accent);
  width: 100%;
  max-width: 540px;
  border-radius: 4px;
  padding: 36px 36px 32px;
  box-shadow: var(--shadow-3);
  transform: translateY(16px) scale(0.98);
  transition: transform var(--t-med) var(--ease);
}
.modal[aria-hidden="false"] .modal-card { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: var(--accent);
  border-radius: 50%;
  transition: background var(--t-fast) var(--ease);
}
.modal-close:hover { background: var(--paper-2); }
.modal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 14px;
}
.modal-eyebrow-sep { opacity: 0.4; }
.modal-title {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 14px;
}
.modal-voice {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.75;
  margin-bottom: 24px;
}
.modal-rows {
  border-top: 1px solid var(--line);
  margin-bottom: 24px;
}
.modal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  gap: 16px;
}
.modal-row:last-child { border-bottom: none; }
.modal-row-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
}
.modal-row-value {
  font-size: 14px;
  text-align: right;
  font-weight: 500;
}
.modal-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.modal-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--accent);
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.modal-btn:hover { background: var(--paper-2); border-color: var(--accent); }
.modal-btn-primary {
  background: var(--accent);
  color: var(--fg);
  border-color: var(--accent);
}
.modal-btn-primary:hover { background: var(--bg); border-color: var(--bg); color: var(--accent); }

/* ---------- REVEAL ANIMATION ---------- */
.section-head, .line-card, .prod-card, .scale-mark, .b2b-copy, .palette, .manifesto-text {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.section-head.in, .line-card.in, .prod-card.in, .scale-mark.in, .b2b-copy.in, .palette.in, .manifesto-text.in {
  opacity: 1;
  transform: translateY(0);
}
.line-card.in:nth-child(1) { transition-delay: 0ms; }
.line-card.in:nth-child(2) { transition-delay: 60ms; }
.line-card.in:nth-child(3) { transition-delay: 120ms; }
.line-card.in:nth-child(4) { transition-delay: 180ms; }
.line-card.in:nth-child(5) { transition-delay: 240ms; }
.prod-card.in:nth-child(1) { transition-delay: 0ms; }
.prod-card.in:nth-child(2) { transition-delay: 80ms; }
.prod-card.in:nth-child(3) { transition-delay: 160ms; }
.prod-card.in:nth-child(4) { transition-delay: 240ms; }
.prod-card.in:nth-child(5) { transition-delay: 320ms; }
.prod-card.in:nth-child(6) { transition-delay: 400ms; }

/* ---------- MOBILE ---------- */
@media (max-width: 1080px) {
  .line-grid { grid-template-columns: repeat(3, 1fr); }
  .line-card:nth-child(4), .line-card:nth-child(5) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .topbar { padding: 16px 20px; }
  .nav { display: none; }
  .cta-pill { padding: 5px 5px 5px 14px; font-size: 12px; gap: 10px; }
  .cta-toggle { width: 20px; height: 20px; }
  .hero { padding: 100px 20px 80px; }
  .hero-meta { left: 20px; right: 20px; font-size: 10px; }
  .duck-1, .duck-5 { display: none; }
  .duck-2 { width: 200px; top: 60%; left: 4%; }
  .duck-3 { width: 160px; top: 14%; right: 4%; }
  .duck-4 { width: 240px; top: 64%; right: 2%; }
  .scale { padding: 100px 20px 60px; }
  .scale-rail { grid-template-columns: 1fr; border-top: none; }
  .scale-mark { border-right: none; border-top: 1px solid rgba(255,255,255,0.14); padding: 24px 16px 28px; }
  .scale-mark::before { left: 16px; right: 16px; }
  .scale-foot { flex-direction: column; gap: 10px; }
  .lines { padding: 100px 20px 80px; }
  .line-grid { grid-template-columns: 1fr; gap: 14px; }
  .production { padding: 100px 20px 80px; }
  .prod-grid { grid-template-columns: 1fr; }
  .b2b { padding: 100px 20px 80px; }
  .b2b-grid { grid-template-columns: 1fr; gap: 48px; }
  .palette { grid-template-columns: repeat(4, 1fr); position: static; }
  .b2b-meta { grid-template-columns: 1fr; gap: 16px; }
  .manifesto { padding: 100px 20px 120px; }
  .footer { padding: 60px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .modal-card { padding: 28px 24px 24px; }
  .modal-title { font-size: 28px; }
  .scroll-cue { width: 44px; height: 44px; }
}

/* === coverage patch === */
.cta-label {
  display: inline-block;
  color: var(--fg);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}
