* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, sans-serif; background: #09090b; color: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 96px;
  background: rgba(9,9,11,0.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
/* Canonical Senshin lockup (BEM, per CLAUDE.md §6) — full variant for nav.
   Wordmark 52px, strap 13px, mark spans the full text-column height.
   currentColor drives mark + wordmark + strap. Dark bg → titanium #E5E4E2.
   Strap is justified to wordmark width via JS measurement at load + resize
   (text-align-last:justify alone can't shrink the strap's intrinsic width).
   CSS-mask recolours the traced brushstroke SVG so we ship 15KB not 232KB. */
.senshin-lockup { display: inline-flex; align-items: center; gap: 14px; color: #E5E4E2; text-decoration: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.senshin-lockup__mark {
  width: 72px; height: 72px; flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url(/static/icons/senshin-logo-traced.svg) no-repeat center / contain;
          mask: url(/static/icons/senshin-logo-traced.svg) no-repeat center / contain;
}
.senshin-lockup__text { display: inline-flex; flex-direction: column; align-items: stretch; }
.senshin-lockup__word { font-family: 'Inter', -apple-system, sans-serif; font-size: 52px; font-weight: 700; letter-spacing: -0.015em; line-height: 1; color: currentColor; white-space: nowrap; align-self: flex-start; }
.senshin-lockup__strap {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em; line-height: 1;
  margin-top: 7px; text-transform: uppercase; color: currentColor; opacity: 0.75;
  /* Words + middots are flex children spread by space-between across exactly
     the wordmark column width on ONE line. Safari-safe, never wraps/stacks. */
  display: flex; justify-content: space-between; align-items: baseline;
  white-space: nowrap; width: 100%; box-sizing: border-box;
}
.senshin-lockup__strap > span { display: inline-block; }
.senshin-lockup__strap-dot { opacity: 0.6; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.45); transition: color 0.15s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  font-size: 12px; font-weight: 700; padding: 8px 18px; border-radius: 6px;
  background: #E5E4E2; color: #09090b; transition: all 0.15s;
}
.nav-cta:hover { background: #c8c6c4; }
.nav-login { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5); margin-right: 8px; }

/* ── HERO — split layout, halved vertical rhythm ──
   No min-height:100vh. Top padding only clears the 96px fixed nav with a
   little breathing room; bottom padding halved. The ticker sits flush
   beneath. On a 1080p screen the SEE cluster header is above the fold. */
.hero {
  display: flex; align-items: center;
  padding: 116px 60px 84px; gap: 48px; position: relative;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -100px;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(229,228,226,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-left { flex: 1; max-width: 480px; z-index: 1; }
.hero-badge {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: #E5E4E2; margin-bottom: 20px;
  padding: 5px 14px; border: 1px solid rgba(229,228,226,0.25); border-radius: 20px;
}
.hero h1 {
  font-size: 52px; font-weight: 800; line-height: 1.08; letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.hero h1 .gold {
  background: linear-gradient(135deg, #E5E4E2 0%, #c8c6c4 50%, #E5E4E2 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
/* The three brand verbs (See / Shape / Lead) — platinum + a subtle halo so
   they read as a vertical echo of the "See · Shape · Lead" strapline. Same
   platinum-glow motif used on the ticker icons. */
.hero h1 .verb {
  filter: drop-shadow(0 0 6px rgba(229,228,226,0.35));
}
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 26px;
}
.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn-gold {
  background: #E5E4E2; color: #09090b; font-size: 14px; font-weight: 700;
  padding: 13px 30px; border-radius: 8px; display: inline-block; transition: all 0.15s;
}
.btn-gold:hover { background: #c8c6c4; transform: translateY(-1px); }
.btn-ghost { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.45); padding: 13px 20px; }
.btn-ghost:hover { color: #fff; }

/* Hero right — tilted stacked screens */
.hero-right { flex: 1; position: relative; height: 500px; max-width: 560px; z-index: 1; }
.tilt-card {
  position: absolute; border-radius: 12px; overflow: hidden;
  background: #111113; border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.tc1 { width: 420px; height: 320px; top: 10px; left: 0; transform: rotate(-2deg); z-index: 3; }
.tc2 { width: 300px; height: 220px; top: 80px; left: 200px; transform: rotate(3deg); z-index: 2; opacity: 0.85; }
.tc3 { width: 270px; height: 188px; top: 250px; left: 56px; transform: rotate(-1deg); z-index: 4; }
.tc-inner { padding: 14px; }
.tc-header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tc-header .dot { width: 7px; height: 7px; border-radius: 50%; }
.tc-header span { font-size: 11px; color: rgba(255,255,255,0.35); font-weight: 600; }
.pill { display: inline-block; font-size: 8px; font-weight: 700; padding: 2px 7px; border-radius: 8px; margin-right: 4px; }
.pill-r { background: rgba(255,50,80,0.15); color: #f44; }
.pill-a { background: rgba(255,170,0,0.12); color: #fa0; }
.pill-g { background: rgba(80,200,100,0.12); color: #5c5; }
.pill-gold { background: rgba(229,228,226,0.15); color: #E5E4E2; }

/* ── TICKER TAPE — sits flush under the hero ── */
.ticker-wrap {
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 34px 0; overflow: hidden; position: relative;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.ticker-wrap::before { left: 0; background: linear-gradient(90deg, #09090b, transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(-90deg, #09090b, transparent); }
.ticker {
  display: flex; gap: 56px; animation: tickerScroll 40s linear infinite;
  width: max-content;
}
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.tick-item {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
  font-size: 15px; color: rgba(255,255,255,0.55); white-space: nowrap;
}
.tick-txt { display: flex; flex-direction: column; gap: 3px; line-height: 1.25; }
.tick-title { font-weight: 600; color: rgba(255,255,255,0.88); letter-spacing: -0.2px; }
.tick-sub { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.4); }
/* Ticker icons — one product-relevant mark per Senshin deliverable. Single-colour,
   inherits via currentColor, glows via drop-shadow to match the dot aesthetic. */
.tick-ico { width: 20px; height: 20px; flex-shrink: 0; display: block; }
.tick-ico.red   { color: #f44;    filter: drop-shadow(0 0 5px rgba(255,50,80,0.55)); }
.tick-ico.amber { color: #fa0;    filter: drop-shadow(0 0 5px rgba(255,170,0,0.45)); }
.tick-ico.green { color: #5c5;    filter: drop-shadow(0 0 5px rgba(80,200,100,0.45)); }
.tick-ico.blue  { color: #4af;    filter: drop-shadow(0 0 5px rgba(70,170,255,0.45)); }
.tick-ico.gold  { color: #E5E4E2; filter: drop-shadow(0 0 5px rgba(229,228,226,0.55)); }

/* ── BRAND STRIP — the third eye, compressed to one beat ── */
.brand-strip {
  padding: 34px 60px;
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(229,228,226,0.05), transparent 70%),
    #09090b;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.brand-strip-inner { max-width: 880px; margin: 0 auto; }
.brand-eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase;
  color: #E5E4E2; margin-bottom: 12px;
}
.brand-strip p {
  font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.55); margin: 0;
}
.brand-strip p .gold { color: #E5E4E2; }
.brand-strip p em { color: rgba(255,255,255,0.85); font-style: italic; }
.brand-strip .brand-sub {
  font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 12px;
}

/* ── CLUSTERS — See / Shape / Lead, cascading decks ──
   Three interspersed clusters. Generous clean air between clusters for the
   narrative reset; inside a cluster the cards overlap into a deck. */
.cluster { padding: 0 60px; margin-bottom: 80px; }
.cluster:first-of-type { margin-top: 56px; }
.cluster-head { max-width: 920px; margin: 0 auto 40px; }
.cluster-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: #E5E4E2; margin-bottom: 14px;
}
.cluster-eyebrow .gap { color: rgba(229,228,226,0.5); margin: 0 6px; }
.cluster-head h2 {
  font-size: 38px; font-weight: 800; letter-spacing: -1px; line-height: 1.1;
  margin-bottom: 12px;
}
.cluster-head .cluster-sub {
  font-size: 16px; color: rgba(255,255,255,0.42); line-height: 1.6; max-width: 720px;
}
.cluster-head .cluster-sub .gold { color: #E5E4E2; }

/* The deck — cards overlap by -28px with ascending z-index + a slight
   horizontal stagger so it reads as a hand of cards, not a flat grid.
   Opaque card backgrounds so the overlap is legible. */
.deck { max-width: 920px; margin: 0 auto; }
.cl-card {
  position: relative;
  background: #0e0e11;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 26px 54px rgba(0,0,0,0.55);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.cl-card + .cl-card { margin-top: -28px; }
.cl-card:nth-child(1) { z-index: 1; width: 100%; }
.cl-card:nth-child(2) { z-index: 2; width: 95%; margin-left: auto; }
.cl-card:nth-child(3) { z-index: 3; width: 90%; margin-right: auto; }
.cl-card:hover { transform: translateY(-4px); border-color: rgba(229,228,226,0.22); z-index: 9; }
.cl-card .bc-label {
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: #E5E4E2; margin-bottom: 10px;
}
.cl-card h4 { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.82); margin-bottom: 4px; }
.cl-card .bc-desc { font-size: 12px; color: rgba(255,255,255,0.32); margin-bottom: 14px; line-height: 1.5; }
.cl-card-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start;
}
.cl-card-cols.narrow { grid-template-columns: 1.4fr 1fr; }

/* ── Simulated UI fragments (reused inside cluster cards) ── */

/* RACI matrix */
.raci-grid { width: 100%; border-collapse: collapse; }
.raci-grid th {
  font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.2); padding: 5px 6px; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.raci-grid th:first-child { text-align: left; }
.raci-grid td {
  font-size: 10px; padding: 6px; text-align: center; color: rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.02);
}
.raci-grid td:first-child { text-align: left; color: rgba(255,255,255,0.6); font-weight: 500; }
.raci-cell {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 4px; font-size: 9px; font-weight: 800;
}
.raci-a { background: rgba(229,228,226,0.2); color: #E5E4E2; }
.raci-r { background: rgba(27,79,114,0.25); color: #5ba3d9; }
.raci-c { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.35); }
.raci-i { background: rgba(255,255,255,0.03); color: rgba(255,255,255,0.2); }

/* Gantt fragment (kept for reuse) */
.gantt-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.gantt-label { font-size: 9px; color: rgba(255,255,255,0.4); width: 80px; flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gantt-track { flex: 1; height: 14px; position: relative; background: rgba(255,255,255,0.02); border-radius: 3px; }
.gantt-bar { position: absolute; height: 100%; border-radius: 3px; top: 0; }
.gantt-bar.cp { border: 1px solid rgba(255,50,80,0.5); }
.gantt-diamond {
  position: absolute; width: 8px; height: 8px; transform: rotate(45deg);
  top: 3px; border-radius: 1px;
}

/* Finance burn rate chart */
.burn-chart { position: relative; width: 100%; height: 150px; }
.burn-chart svg { width: 100%; height: 100%; }

/* Signal cards */
.sig-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.sig-row:last-child { margin-bottom: 0; }
.sig-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 3px;
}
.sig-dot.red { background: #f44; box-shadow: 0 0 10px rgba(255,50,80,0.4); }
.sig-dot.amber { background: #fa0; box-shadow: 0 0 10px rgba(255,170,0,0.3); }
.sig-dot.green { background: #5c5; box-shadow: 0 0 10px rgba(80,200,100,0.3); }
.sig-title { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.72); }
.sig-meta { font-size: 10px; color: rgba(255,255,255,0.28); margin-top: 2px; line-height: 1.45; }

/* Nudge box */
.nudge {
  padding: 12px; border-radius: 8px; border-left: 3px solid #E5E4E2;
  background: rgba(229,228,226,0.03);
}
.nudge-label { font-size: 9px; color: #E5E4E2; font-weight: 700; margin-bottom: 5px; letter-spacing: 0.5px; }
.nudge-text { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.5; }
/* Senshin-designed bolt icon — replaces the stock ⚡ emoji on nudge labels. */
.nudge-ico { width: 9px; height: 9px; display: inline-block; vertical-align: -1px; margin-right: 3px; }

/* ── Control Tower fragment ── */
.ct-card { display: flex; flex-direction: column; gap: 14px; }
.ct-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.ct-proj { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: -0.2px; }
.ct-meta { font-size: 9px; color: rgba(255,255,255,0.3); margin-top: 3px; letter-spacing: 0.3px; }
.ct-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.ct-pill {
  font-size: 9px; font-weight: 800; letter-spacing: 1px; padding: 4px 8px;
  border-radius: 4px; text-transform: uppercase;
}
.ct-pill-crit { background: rgba(255,50,80,0.12); color: #f44; border: 1px solid rgba(255,50,80,0.25); }
.ct-pill-gold { background: rgba(229,228,226,0.12); color: #E5E4E2; border: 1px solid rgba(229,228,226,0.25); }
.ct-dims { display: flex; flex-direction: column; gap: 8px; }
.ct-dim-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.ct-dim-label { font-size: 10px; color: rgba(255,255,255,0.45); font-weight: 500; }
.ct-dim-val { font-size: 11px; font-weight: 700; letter-spacing: -0.3px; }
.ct-dim-red { color: #f44; }
.ct-dim-amber { color: #fa0; }
.ct-dim-green { color: #5c5; }
.ct-bar { height: 5px; background: rgba(255,255,255,0.04); border-radius: 3px; overflow: hidden; }
.ct-bar-fill { height: 100%; border-radius: 3px; transition: width 0.4s ease; }
.ct-bar-red   { background: linear-gradient(90deg, rgba(255,50,80,0.6), #f44); box-shadow: 0 0 8px rgba(255,50,80,0.3); }
.ct-bar-amber { background: linear-gradient(90deg, rgba(255,170,0,0.5), #fa0); box-shadow: 0 0 8px rgba(255,170,0,0.25); }
.ct-bar-green { background: linear-gradient(90deg, rgba(80,200,100,0.5), #5c5); box-shadow: 0 0 8px rgba(80,200,100,0.2); }
.ct-nudge {
  padding: 12px 14px; border-radius: 8px;
  background: rgba(229,228,226,0.04);
  border-left: 2px solid rgba(229,228,226,0.5);
}
.ct-nudge-label { font-size: 9px; font-weight: 800; letter-spacing: 1.2px; color: #E5E4E2; margin-bottom: 5px; }
.ct-nudge-text { font-size: 11px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ── EVM S-curve chart ── */
.evm-chart { position: relative; width: 100%; height: 200px; margin-top: 4px; }
.evm-chart svg { width: 100%; height: 100%; }

/* ── Comparative radar ── */
.radar-wrap { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.radar-svg { flex: 1; min-width: 0; max-width: 240px; height: auto; }
.radar-legend { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.radar-legend-item { display: flex; align-items: center; gap: 8px; font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 500; }
.radar-swatch { width: 14px; height: 14px; border-radius: 3px; flex-shrink: 0; }
.radar-swatch-dashed { background: transparent !important; border: 1.5px dashed #46c8d2; }

/* Recovery option rows */
.rec-opt { padding: 10px; border-radius: 8px; background: rgba(255,255,255,0.02); margin-bottom: 8px; }
.rec-opt:last-child { margin-bottom: 0; }
.rec-opt-pick { background: rgba(229,228,226,0.04); border: 1px solid rgba(229,228,226,0.1); }
.rec-opt-title { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 600; }
.rec-opt-pick .rec-opt-title { color: rgba(255,255,255,0.78); font-weight: 700; }
.rec-opt-meta { font-size: 9px; color: rgba(255,255,255,0.25); margin-top: 3px; }
.rec-opt-pick .rec-opt-meta { color: rgba(255,255,255,0.32); }

/* Challenge box */
.challenge-box { padding: 12px; background: rgba(120,80,200,0.05); border-radius: 8px; border-left: 2px solid rgba(120,80,200,0.45); }
.challenge-label { font-size: 9px; color: rgba(150,110,230,0.85); font-weight: 700; font-family: monospace; margin-bottom: 6px; letter-spacing: 0.5px; }
.challenge-text { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.55; }
.challenge-src { margin-top: 12px; font-size: 9px; color: rgba(255,255,255,0.2); }

/* Export tiles */
.exp-tiles { display: flex; gap: 10px; flex-wrap: wrap; }
.exp-tile { flex: 1; min-width: 110px; background: rgba(255,255,255,0.03); border-radius: 8px; padding: 16px 12px; text-align: center; }
.exp-tile-ico { font-size: 24px; margin-bottom: 6px; color: #E5E4E2; line-height: 0; }
.exp-tile-ico svg { width: 22px; height: 22px; }
.exp-tile-name { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.62); }
.exp-tile-meta { font-size: 8px; color: rgba(255,255,255,0.22); margin-top: 2px; }

/* Progress bars */
.prog { height: 5px; background: rgba(255,255,255,0.05); border-radius: 3px; margin: 6px 0; overflow: hidden; }
.prog .bar { height: 100%; border-radius: 3px; }

/* ── TRUST BAND — built by delivery professionals ── */
.trust {
  margin: 0 60px 0; padding: 32px 40px;
  max-width: 920px; margin-left: auto; margin-right: auto;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.trust-copy { flex: 1; min-width: 260px; }
.trust-copy .bc-label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #E5E4E2; margin-bottom: 8px; }
.trust-copy h4 { font-size: 17px; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 6px; letter-spacing: -0.3px; }
.trust-copy p { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.6; }
.trust-stats { display: flex; gap: 28px; }
.trust-stat-num { font-size: 28px; font-weight: 800; color: #E5E4E2; letter-spacing: -0.5px; }
.trust-stat-label { font-size: 9px; color: rgba(255,255,255,0.28); margin-top: 2px; }

/* ── STATS BAND — tucked up under the last cluster ── */
.stats {
  display: flex; justify-content: center; gap: 80px; padding: 56px 40px;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.04);
  flex-wrap: wrap;
}
.stat-num {
  font-size: 42px; font-weight: 800; letter-spacing: -2px; text-align: center;
  background: linear-gradient(135deg, #E5E4E2, #c8c6c4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; margin-top: 4px; }

/* ── CTA — tight and commanding ── */
.cta-section { text-align: center; padding: 64px 40px 88px; }
.cta-section h2 {
  font-size: 44px; font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; line-height: 1.1;
}
.cta-section .gold {
  background: linear-gradient(135deg, #E5E4E2, #c8c6c4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cta-section p { font-size: 15px; color: rgba(255,255,255,0.35); margin-bottom: 28px; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { padding: 104px 40px 32px; gap: 36px; }
  .hero h1 { font-size: 44px; }
  .brand-strip { padding: 30px 40px; }
  .brand-strip p { font-size: 16px; }
  .cluster { padding: 0 40px; margin-bottom: 64px; }
  .cluster:first-of-type { margin-top: 44px; }
  .cluster-head h2 { font-size: 32px; }
  .cta-section h2 { font-size: 36px; }
  .stats { gap: 50px; padding: 48px 30px; }
  .trust { margin-left: 40px; margin-right: 40px; }
}

@media (max-width: 860px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { flex-direction: column; padding: 96px 24px 32px; gap: 32px; overflow: hidden; }
  .hero::before { width: 460px; height: 460px; top: -140px; right: -160px; }
  .hero-left { max-width: 100%; text-align: center; }
  .hero h1 { font-size: 36px; line-height: 1.1; letter-spacing: -1px; }
  .hero-sub { margin-left: auto; margin-right: auto; max-width: 460px; }
  .hero-ctas { justify-content: center; }
  /* Show ONE centred tilted hero card (Control Tower) below CTAs */
  .hero-right {
    display: block; flex: 0 0 auto;
    position: relative; height: auto;
    width: 100%; max-width: 440px; margin: 4px auto 0;
  }
  .hero-right .tc2, .hero-right .tc3 { display: none; }
  .hero-right .tc1 {
    position: relative;
    width: 100%; max-width: 420px; height: auto;
    top: auto; left: auto;
    transform: rotate(-1.5deg);
    transform-origin: center top;
    margin: 0 auto;
  }
  .ticker-wrap { padding: 18px 0; }
  .brand-strip { padding: 28px 24px; }
  .brand-strip p { font-size: 15px; }
  .cluster { padding: 0 24px; margin-bottom: 56px; }
  .cluster:first-of-type { margin-top: 36px; }
  .cluster-head h2 { font-size: 28px; }
  .cluster-head .cluster-sub { font-size: 15px; }
  /* Deck unstacks — no overlap, full width, normal flow on tablet/mobile */
  .deck { max-width: 560px; }
  .cl-card,
  .cl-card:nth-child(1),
  .cl-card:nth-child(2),
  .cl-card:nth-child(3) { width: 100%; margin-left: 0; margin-right: 0; }
  .cl-card + .cl-card { margin-top: 14px; }
  .cl-card-cols, .cl-card-cols.narrow { grid-template-columns: 1fr; gap: 16px; }
  .radar-wrap { flex-direction: column; gap: 12px; }
  .radar-svg { max-width: 240px; }
  .radar-legend { flex-direction: row; gap: 16px; flex-wrap: wrap; justify-content: center; }
  .evm-chart { height: 190px; }
  .trust { margin: 0 24px; padding: 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 32px 24px; padding: 44px 24px;
    max-width: 520px; margin: 36px auto 0;
  }
  .stat-num { font-size: 34px; }
  .cta-section { padding: 56px 24px 72px; }
  .cta-section h2 { font-size: 30px; }
}

@media (max-width: 860px) {
  .nav { height: 76px; padding: 0 24px; }
  .senshin-lockup { gap: 10px; }
  .senshin-lockup__mark { width: 56px; height: 56px; }
  .senshin-lockup__word { font-size: 38px; }
  .senshin-lockup__strap { font-size: 10px; letter-spacing: 0.16em; margin-top: 5px; }
  .hero { padding: 86px 24px 28px; }
}

@media (max-width: 480px) {
  .nav { padding: 0 14px; height: 60px; }
  .senshin-lockup { gap: 8px; }
  .senshin-lockup__mark { width: 44px; height: 44px; }
  .senshin-lockup__word { font-size: 28px; }
  .senshin-lockup__strap { font-size: 8px; letter-spacing: 0.14em; margin-top: 4px; }
  .nav-login { display: none; }
  .nav-cta { padding: 8px 12px; font-size: 11px; min-height: 36px; display: inline-flex; align-items: center; }
  .hero { padding: 70px 16px 24px; gap: 22px; }
  .hero::before { width: 340px; height: 340px; top: -100px; right: -100px; }
  .hero-badge { font-size: 10px; padding: 4px 12px; margin-bottom: 16px; letter-spacing: 1.2px; }
  .hero h1 { font-size: 29px; line-height: 1.12; letter-spacing: -0.8px; }
  .hero-sub { font-size: 14px; line-height: 1.6; margin-bottom: 22px; }
  .hero-ctas { gap: 8px; }
  .btn-gold {
    padding: 14px 28px; font-size: 14px;
    min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
  }
  .btn-ghost {
    padding: 12px 16px; font-size: 14px;
    min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
  }
  .hero-right { max-width: 100%; width: 94%; margin: 2px auto 0; }
  .hero-right .tc1 { transform: none; box-shadow: 0 12px 32px rgba(0,0,0,0.5); }
  .hero-right .tc1 .tc-inner { padding: 12px; }
  .ticker-wrap::before, .ticker-wrap::after { width: 48px; }
  .ticker { gap: 32px; }
  .tick-item { font-size: 13px; gap: 10px; }
  .tick-sub { font-size: 11px; }
  .tick-ico { width: 17px; height: 17px; }
  .brand-strip { padding: 24px 16px; }
  .brand-eyebrow { font-size: 11px; letter-spacing: 4px; }
  .brand-strip p { font-size: 14px; line-height: 1.6; }
  .cluster { padding: 0 16px; margin-bottom: 48px; }
  .cluster:first-of-type { margin-top: 28px; }
  .cluster-eyebrow { font-size: 11px; letter-spacing: 0.22em; }
  .cluster-head h2 { font-size: 24px; }
  .cluster-head .cluster-sub { font-size: 14px; }
  .cl-card { padding: 18px; border-radius: 14px; }
  .cl-card h4 { font-size: 14px; }
  .burn-chart { height: 130px; }
  .evm-chart { height: 170px; }
  .raci-grid th { font-size: 7px; padding: 4px 3px; }
  .raci-grid td { font-size: 9px; padding: 5px 3px; }
  .raci-grid td:first-child { font-size: 9px; }
  .raci-cell { width: 18px; height: 18px; font-size: 8px; }
  .exp-tile { min-width: calc(50% - 5px); }
  .trust { margin: 0 16px; padding: 20px; }
  .trust-stats { gap: 20px; }
  .trust-stat-num { font-size: 24px; }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 26px 18px; padding: 40px 16px;
    max-width: 340px; margin: 28px auto 0;
  }
  .stat-num { font-size: 28px; letter-spacing: -1.4px; }
  .stat-label { font-size: 11px; }
  .cta-section { padding: 48px 16px 64px; }
  .cta-section h2 { font-size: 25px; line-height: 1.15; }
  .cta-section p { font-size: 14px; margin-bottom: 24px; }
  .cta-section .btn-gold {
    display: flex !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 16px 32px !important;
    font-size: 15px !important;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
}

@media (max-width: 360px) {
  .senshin-lockup__strap { display: none; }
  .senshin-lockup__word { font-size: 24px; }
  .senshin-lockup__mark { width: 36px; height: 36px; }
  .hero h1 { font-size: 25px; letter-spacing: -0.6px; }
  .brand-strip p { font-size: 13px; }
  .cluster-head h2 { font-size: 22px; }
  .cta-section h2 { font-size: 22px; }
  .evm-chart { height: 150px; }
}

/* ── v3.1 — text contrast lift (readability on #09090b) ──
   Body floor #b0b0b0, subheads #d0d0d0, headlines stay #fff.
   Appended last so it wins on source order without !important.
   SVG chart gridline ticks left as-is — data-viz furniture, not copy. */
.hero-sub { color: #d0d0d0; }
.btn-ghost { color: #b0b0b0; }
.nav-links a { color: #b0b0b0; }
.nav-login { color: #b0b0b0; }
.tick-item { color: #b0b0b0; }
.tick-title { color: #ededed; }
.tick-sub { color: #b0b0b0; }
.brand-strip p { color: #c8c8c8; }
.brand-strip p em { color: #f2f2f2; }
.brand-strip .brand-sub { color: #b0b0b0; }
.cluster-head .cluster-sub { color: #d0d0d0; }
.cl-card h4 { color: #e2e2e2; }
.cl-card .bc-desc { color: #b0b0b0; }
.sig-title { color: #d0d0d0; }
.sig-meta { color: #b0b0b0; }
.nudge-text { color: #b8b8b8; }
.ct-proj { color: #e2e2e2; }
.ct-meta { color: #b0b0b0; }
.ct-dim-label { color: #b8b8b8; }
.ct-nudge-text { color: #cccccc; }
.rec-opt-title { color: #b8b8b8; }
.rec-opt-pick .rec-opt-title { color: #e2e2e2; }
.rec-opt-meta { color: #b0b0b0; }
.rec-opt-pick .rec-opt-meta { color: #bcbcbc; }
.challenge-text { color: #b8b8b8; }
.challenge-src { color: #b0b0b0; }
.exp-tile-name { color: #d6d6d6; }
.exp-tile-meta { color: #b0b0b0; }
.raci-grid td { color: #b8b8b8; }
.raci-grid td:first-child { color: #d6d6d6; }
.raci-grid th { color: #b0b0b0; }
.trust-copy p { color: #b8b8b8; }
.trust-copy h4 { color: #e2e2e2; }
.trust-stat-label { color: #b0b0b0; }
.stat-label { color: #b0b0b0; }
.cta-section p { color: #b8b8b8; }
.radar-legend-item { color: #cccccc; }

/* ── Ethos line — for the curious. Muted gold, low-key, discoverable. ── */
.ethos {
  text-align: center; padding: 0 24px 56px;
  font-size: 12px; letter-spacing: 0.06em;
  color: rgba(229,228,226,0.42);
}

/* ════════════════════════════════════════════════════════════════════════
   v4 — positioning-first hero, See/Shape/Lead nav, breathing room, footer.
   Appended last so it wins on source order (same pattern as the v3.1
   contrast lift above). Per CLAUDE.md §25.
   ════════════════════════════════════════════════════════════════════════ */

/* Smooth-scroll for the See/Shape/Lead nav anchors; offset for fixed nav */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
.cluster { scroll-margin-top: 116px; }

/* Hero — positioning statement reads BEFORE the emotional hook */
.hero-lede {
  font-size: 22px; font-weight: 700; line-height: 1.3;
  color: #f2f2f2; letter-spacing: -0.4px; margin-bottom: 16px;
}
.hero-badge { letter-spacing: 1.1px; }

/* Breathing room — each section is its own moment (Linear/Vercel rhythm).
   Decompressed 2026-06-01: more vertical air between every section so each
   element breathes (homepage feedback). */
.cluster { margin-bottom: 160px; }
.cluster:first-of-type { margin-top: 120px; }
.brand-strip { padding-top: 88px; padding-bottom: 88px; }
.stats { margin-top: 0; padding: 108px 40px; }
.trust { margin-top: 56px; }
.cta-section { padding: 132px 40px 132px; }

/* Footer — legal + product links, copyright, ethos line */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 60px 48px; margin-top: 56px;
}
.footer-inner {
  max-width: 920px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.footer-lockup { color: #E5E4E2; opacity: 0.7; }
.footer-lockup .senshin-lockup__mark { width: 44px; height: 44px; }
.footer-lockup .senshin-lockup__word { font-size: 30px; }
.footer-lockup .senshin-lockup__strap { font-size: 8px; margin-top: 4px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px; font-weight: 500; color: #b0b0b0; transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }
.footer-base {
  max-width: 920px; margin: 28px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-ethos {
  font-size: 12px; letter-spacing: 0.06em; color: rgba(229,228,226,0.42);
}
.footer-copy { font-size: 12px; color: #8a8a8a; }

@media (max-width: 1024px) {
  .cluster { margin-bottom: 100px; }
  .cluster:first-of-type { margin-top: 80px; }
  .cta-section { padding: 88px 30px 96px; }
  .site-footer { padding: 48px 40px 40px; }
}
@media (max-width: 860px) {
  .hero-lede { font-size: 19px; margin-bottom: 14px; }
  .cluster { margin-bottom: 88px; }
  .cluster:first-of-type { margin-top: 64px; }
  .stats { padding: 64px 24px; }
  .cta-section { padding: 76px 24px 84px; }
  .footer-inner, .footer-base { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 480px) {
  .hero-lede { font-size: 17px; }
  .cluster { margin-bottom: 72px; }
  .cluster:first-of-type { margin-top: 48px; }
  .site-footer { padding: 40px 16px 36px; }
}

/* ════════════════════════════════════════════════════════════════════════
   v5 — CRYSTAL BALL HERO (2026-06-04)
   Centred orb: glass sphere with blue internal glow, breathing animation,
   brushstroke logo (enso) inside, orbiting signal molecules at three
   distances, slow dashed orbit rings. Replaces the split tilted-card hero.
   Appended last so it wins on source order. Per CLAUDE.md §25.
   ════════════════════════════════════════════════════════════════════════ */

.hero-orb {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 124px 24px 96px;
  gap: 0;
}
.hero-orb .hero-badge { margin-bottom: 8px; }

/* ── Orb stage — holds rings, ball, orbiting molecules ── */
.orb-stage {
  position: relative;
  width: 460px;
  height: 460px;
  margin: 4px auto 4px;
  flex-shrink: 0;
}

/* ── Dashed orbit rings (slow rotation) ── */
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(150,190,255,0.13);
  transform: translate(-50%, -50%);
  animation: ringSpin linear infinite;
}
.ring1 { width: 280px; height: 280px; animation-duration: 44s; }
.ring2 { width: 360px; height: 360px; animation-duration: 64s; animation-direction: reverse; border-color: rgba(150,190,255,0.10); }
.ring3 { width: 440px; height: 440px; animation-duration: 88s; border-color: rgba(150,190,255,0.07); }
@keyframes ringSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ── The glass sphere ── */
.crystal-ball {
  position: absolute;
  top: 50%; left: 50%;
  width: 210px; height: 210px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(150,190,255,0.18);
  background:
    radial-gradient(circle at 36% 30%,
      rgba(130,185,255,0.30) 0%,
      rgba(50,105,205,0.18) 42%,
      rgba(14,30,72,0.55) 74%,
      rgba(6,10,26,0.78) 100%);
  box-shadow:
    inset 0 0 60px rgba(95,155,245,0.30),
    inset 0 -22px 52px rgba(0,0,0,0.55),
    0 0 70px rgba(70,135,235,0.38),
    0 24px 64px rgba(0,0,0,0.6);
  transform: translate(-50%, -50%);
  animation: orbBreathe 5.5s ease-in-out infinite;
}
@keyframes orbBreathe {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      inset 0 0 60px rgba(95,155,245,0.30),
      inset 0 -22px 52px rgba(0,0,0,0.55),
      0 0 70px rgba(70,135,235,0.38),
      0 24px 64px rgba(0,0,0,0.6);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.035);
    box-shadow:
      inset 0 0 72px rgba(120,175,255,0.42),
      inset 0 -22px 52px rgba(0,0,0,0.55),
      0 0 96px rgba(90,155,250,0.52),
      0 24px 64px rgba(0,0,0,0.6);
  }
}

/* Logo inside the ball — the enso renders as a circle, not a square.
   object-fit:contain preserves aspect; the SVG is transparent so no patch. */
.orb-logo {
  position: relative;
  z-index: 2;
  width: 128px; height: 128px;
  object-fit: contain;
  opacity: 0.94;
  filter: drop-shadow(0 0 14px rgba(150,195,255,0.55));
}

/* Glass highlight — soft specular sheen, top-left */
.orb-highlight {
  position: absolute;
  top: 13%; left: 18%;
  width: 48%; height: 36%;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%,
    rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(-18deg);
  filter: blur(2px);
  pointer-events: none;
  z-index: 3;
  /* Quiet "is something watching?" breath — the specular sheen reads as a
     faint face behind the kanji. Slow enough to be near-subliminal. */
  transform-origin: 42% 44%;
  animation: orbHighlightBreath 10s ease-in-out infinite;
}

/* Barely-there breathing pulse on the specular highlight. Keeps the
   rotate(-18deg) base so the sheen stays put while it slowly swells. */
@keyframes orbHighlightBreath {
  0%, 100% { transform: rotate(-18deg) scale(1);    opacity: 0.92; }
  50%      { transform: rotate(-18deg) scale(1.05); opacity: 1; }
}

/* ── Orbiting signal molecules ── */
.orbit {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  animation: orbitSpin linear infinite;
}
.orbit-inner { --r: 138px; animation-duration: 6s; }
.orbit-mid   { --r: 178px; animation-duration: 10s; }
.orbit-outer { --r: 218px; animation-duration: 16s; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.mol {
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  transform: rotate(var(--a)) translateX(var(--r));
}
.mol-red {
  background: #f44;
  box-shadow: 0 0 8px 2px rgba(255,68,68,0.7), 0 0 18px 5px rgba(255,68,68,0.32);
}
.mol-amber {
  background: #fa0;
  box-shadow: 0 0 8px 2px rgba(255,170,0,0.7), 0 0 18px 5px rgba(255,170,0,0.32);
}
.mol-green {
  background: #5c5;
  box-shadow: 0 0 8px 2px rgba(80,200,100,0.7), 0 0 18px 5px rgba(80,200,100,0.32);
}

/* ── Headline / strapline / sub / CTAs ── */
/* Split headline frames the orb: "The crystal ball" above, "for projects." below. */
.hero-orb .orb-headline {
  font-size: 52px; font-weight: 800; line-height: 1.06;
  letter-spacing: -1.5px; margin: 0;
}
.hero-orb .orb-headline--top { margin: 16px 0 0; }
.hero-orb .orb-headline--bot { margin: 0 0 18px; }
.hero-orb .orb-strap {
  font-size: 14px; font-weight: 600; letter-spacing: 0.32em;
  text-transform: uppercase; color: #7E8FA1; margin-bottom: 24px;
}
.hero-orb .orb-sub {
  max-width: 560px; margin-left: auto; margin-right: auto; margin-bottom: 28px;
}
.hero-orb .orb-ctas { justify-content: center; }
.hero-orb .orb-cta { font-size: 15px; padding: 14px 38px; }

/* Reduced motion — freeze every orb animation */
@media (prefers-reduced-motion: reduce) {
  .crystal-ball, .orbit, .orbit-ring, .orb-highlight { animation: none !important; }
}

/* ── Orb responsive ── */
@media (max-width: 860px) {
  .hero-orb { padding: 92px 24px 40px; }
  .orb-stage { width: 400px; height: 400px; }
  .crystal-ball { width: 184px; height: 184px; }
  .orb-logo { width: 112px; height: 112px; }
  .orbit-inner { --r: 120px; }
  .orbit-mid   { --r: 154px; }
  .orbit-outer { --r: 190px; }
  .ring1 { width: 244px; height: 244px; }
  .ring2 { width: 312px; height: 312px; }
  .ring3 { width: 384px; height: 384px; }
  .hero-orb .orb-headline { font-size: 40px; }
}
@media (max-width: 480px) {
  .hero-orb { padding: 76px 16px 28px; }
  .orb-stage { width: 300px; height: 300px; margin: 4px auto; }
  .crystal-ball { width: 138px; height: 138px; }
  .orb-logo { width: 84px; height: 84px; }
  .orbit-inner { --r: 90px; }
  .orbit-mid   { --r: 116px; }
  .orbit-outer { --r: 142px; }
  .mol { width: 10px; height: 10px; margin: -5px 0 0 -5px; }
  .ring1 { width: 182px; height: 182px; }
  .ring2 { width: 234px; height: 234px; }
  .ring3 { width: 286px; height: 286px; }
  .hero-orb .orb-headline { font-size: 30px; letter-spacing: -0.8px; }
  .hero-orb .orb-headline--top { margin: 12px 0 0; }
  .hero-orb .orb-headline--bot { margin: 0 0 14px; }
  .hero-orb .orb-strap { font-size: 12px; letter-spacing: 0.26em; }
  .hero-orb .orb-sub { font-size: 14px; }
}
@media (max-width: 360px) {
  .orb-stage { width: 268px; height: 268px; }
  .crystal-ball { width: 122px; height: 122px; }
  .orb-logo { width: 74px; height: 74px; }
  .orbit-inner { --r: 80px; }
  .orbit-mid   { --r: 104px; }
  .orbit-outer { --r: 128px; }
  .ring1 { width: 162px; height: 162px; }
  .ring2 { width: 210px; height: 210px; }
  .ring3 { width: 258px; height: 258px; }
  .hero-orb .orb-headline { font-size: 26px; }
}

/* Section decompression — let each section own its share of the viewport.
   Stacks on top of the v4 rhythm; appended last so it wins. */
.brand-strip { padding-top: 120px; padding-bottom: 120px; }
.cluster { margin-bottom: 200px; }
.cluster:first-of-type { margin-top: 150px; }
.stats { padding: 140px 40px; }
.trust { margin-top: 96px; margin-bottom: 40px; }
.cta-section { padding: 160px 40px; }
.ticker-wrap { padding: 44px 0; }

/* ── MORE INSIDE — invite after the reduced grid (a taste, not a catalogue) ── */
.more-invite {
  text-align: center; max-width: 640px;
  margin: 40px auto 0; padding: 0 40px;
}
.more-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: #E5E4E2; margin-bottom: 14px;
}
.more-invite h2 {
  font-size: 38px; font-weight: 800; letter-spacing: -1px; line-height: 1.1;
  margin-bottom: 14px;
}
.more-invite p {
  font-size: 16px; color: rgba(255,255,255,0.42); line-height: 1.6;
  margin: 0 auto 30px; max-width: 560px;
}
.more-invite .more-cta { font-size: 15px; padding: 14px 36px; }
@media (max-width: 860px) {
  .more-invite { margin-top: 8px; }
  .more-invite h2 { font-size: 30px; }
}
@media (max-width: 480px) {
  .more-invite { padding: 0 16px; }
  .more-invite h2 { font-size: 26px; }
  .more-invite p { font-size: 14px; }
}

@media (max-width: 1024px) {
  .brand-strip { padding-top: 80px; padding-bottom: 80px; }
  .cluster { margin-bottom: 120px; }
  .cluster:first-of-type { margin-top: 90px; }
  .stats { padding: 96px 30px; }
  .cta-section { padding: 104px 30px; }
}
@media (max-width: 860px) {
  .brand-strip { padding-top: 56px; padding-bottom: 56px; }
  .cluster { margin-bottom: 96px; }
  .cluster:first-of-type { margin-top: 64px; }
  .stats { padding: 72px 24px; }
  .cta-section { padding: 84px 24px; }
}
@media (max-width: 480px) {
  .brand-strip { padding-top: 44px; padding-bottom: 44px; }
  .cluster { margin-bottom: 72px; }
  .cluster:first-of-type { margin-top: 44px; }
  .stats { padding: 56px 16px; }
  .cta-section { padding: 64px 16px; }
}
