/* SuperCompress × supermemory layout clone */
:root {
  --bg: #ffffff;
  --text: #0b1015;
  --text-muted: rgba(11, 16, 21, 0.6);
  --text-dim: #888e94;
  --blue: #0562ef;
  --blue-soft: rgba(5, 98, 239, 0.08);
  --border: #c5dbf2;
  --border-light: rgba(71, 148, 224, 0.3);
  --paper: #fafafa;
  --font-heading: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --nav-h: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --edge: min(1232px, calc(100% - 48px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: var(--blue); color: #fff; }

.edge { width: var(--edge); margin: 0 auto; }

/* ——— Nav ——— */
.sc-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
}
.sc-nav-inner {
  height: 100%;
  width: var(--edge);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.sc-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.sc-brand img { width: 22px; height: 22px; }
.sc-nav-links {
  display: flex;
  gap: 22px;
  justify-content: center;
}
.sc-nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  opacity: 0.78;
}
.sc-nav-links a:hover { opacity: 1; }
.sc-nav-end {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sc-login {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 13.5px;
  font-weight: 500;
}
.sc-login:hover { background: var(--paper); }

.btn-primary {
  display: inline-flex;
  align-items: stretch;
  height: 44px;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform 0.12s var(--ease), background 0.18s ease;
}
.btn-primary:hover { background: #0456d4; }
.btn-primary-label {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
}
.btn-primary-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  border-left: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.12);
}
.btn-primary-sm {
  height: 36px;
  font-size: 13.5px;
}
.btn-primary-sm .btn-primary-label { padding: 0 14px; }
.btn-primary-sm .btn-primary-arrow { width: 36px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  background: var(--paper);
  border: 1px solid var(--border-light);
  color: var(--text);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: background 0.18s ease, transform 0.12s var(--ease);
}
.btn-secondary:hover { background: #fff; }

/* ——— Hero ——— */
.sc-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - var(--nav-h));
  margin-top: var(--nav-h);
  overflow: hidden;
  text-align: center;
}
.sc-hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.sc-dots-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.sc-dither-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}
.sc-dither-canvas {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}
.sc-hands .sc-dither-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc-catalog-visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 28px;
}
.sc-catalog-visual .sc-dither-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  box-shadow: none;
}
.sc-pixel-frame {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(5, 98, 239, 0.25);
  box-shadow:
    inset 8px 8px 0 -7px rgba(5, 98, 239, 0.55),
    inset -8px -8px 0 -7px rgba(5, 98, 239, 0.55),
    inset 8px -8px 0 -7px rgba(5, 98, 239, 0.55),
    inset -8px 8px 0 -7px rgba(5, 98, 239, 0.55);
}
.sc-dither-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  image-rendering: pixelated;
  mix-blend-mode: soft-light;
  opacity: 0.55;
}
.sc-install-card,
.sc-final-art {
  position: relative;
  overflow: hidden;
}
.sc-install-copy,
.sc-term,
.sc-final-copy {
  position: relative;
  z-index: 1;
}
.sc-final-art .sc-dither-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  mix-blend-mode: multiply;
}

/* Chip / CTA micro pixel accents */
.sc-chip,
.btn-primary,
.sc-npx {
  position: relative;
}
.sc-chip::before,
.sc-npx::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(circle at 1px 1px, rgba(5, 98, 239, 0.55) 1px, transparent 0);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

/* Tone down previous soft gradients — dots canvas owns the field */
.sc-hero-dots {
  background: none;
  mask-image: none;
}
.sc-hero-center {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 32px;
  gap: 0;
}
.sc-chip {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid rgba(5, 98, 239, 0.25);
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(11,16,21,0.03);
  margin-bottom: 28px;
}
.sc-chip-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-right: 1px solid rgba(5,98,239,0.2);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.sc-chip-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--blue);
}
.sc-chip-dot::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 1px solid rgba(5,98,239,0.4);
}
.sc-chip-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.sc-chip-text svg { opacity: 0.55; }

.sc-headline {
  margin: 0;
  max-width: 920px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.058em;
  color: var(--text);
  text-wrap: balance;
}
.sc-headline .dot { color: var(--blue); }
.sc-headline .mark {
  display: inline-block;
  vertical-align: -0.12em;
  width: 0.72em;
  height: 0.72em;
  margin: 0 0.08em;
}
.sc-headline .mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sc-subhead {
  margin: 22px 0 0;
  max-width: 600px;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.012em;
  color: var(--text-muted);
  text-wrap: pretty;
}

.sc-cta-group {
  margin-top: 28px;
  width: min(400px, 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sc-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sc-npx {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  width: 100%;
  padding: 0 14px;
  border: 1px dashed rgba(11,16,21,0.2);
  background: var(--paper);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-muted);
  transition: border-color 0.18s ease, color 0.18s ease;
}
.sc-npx:hover { border-color: rgba(5,98,239,0.4); color: var(--text); }
.sc-npx .dollar { color: rgba(5,98,239,0.55); }
.sc-npx .copy-ico { margin-left: auto; opacity: 0.45; }

.sc-quiet-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-muted);
}
.sc-quiet-link:hover { color: var(--text); }

.sc-ticker {
  margin-top: 36px;
  width: 100%;
  max-width: 720px;
}
.sc-ticker-label {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
}
.sc-ticker-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Hands strip — full bleed like SM */
.sc-hands {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(320px, 38vw);
  min-height: 220px;
  background: #07224f;
  overflow: hidden;
}
.sc-hands::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(5,98,239,0.35), transparent 70%),
    linear-gradient(180deg, rgba(7,34,79,0.2), rgba(7,34,79,0.55));
  pointer-events: none;
}
.sc-hands img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  filter: grayscale(1) contrast(1.35) brightness(0.55);
}
.sc-hands-mark {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.sc-hands-mark img {
  position: static;
  width: min(96px, 14vw);
  height: auto;
  opacity: 1;
  filter: brightness(0) invert(1);
}

/* ——— Section chrome ——— */
.sc-section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.sc-section-bar .glyph { color: var(--blue); margin-right: 6px; }

/* ——— Catalog ——— */
.sc-catalog {
  padding: 56px 0 96px;
}
.sc-catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  border: 1px solid var(--border);
  min-height: 560px;
}
.sc-catalog-left {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.sc-catalog-left h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 16ch;
}
.sc-catalog-left h2 .blue { color: var(--blue); }
.sc-catalog-left > p {
  margin: 16px 0 28px;
  max-width: 36ch;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
}
.sc-spine {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
}
.sc-spine li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.18s ease;
}
.sc-spine li[aria-current="true"],
.sc-spine li:hover { color: var(--text); }
.sc-spine li[aria-current="true"] .tick {
  width: 8px;
  height: 8px;
  background: var(--blue);
}
.sc-spine .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-right: 10px;
  color: var(--blue);
}
.sc-spine .tick {
  width: 8px;
  height: 8px;
  background: transparent;
}

.sc-catalog-right {
  display: flex;
  flex-direction: column;
  background: var(--paper);
}
.sc-catalog-visual {
  position: relative;
  flex: 1;
  min-height: 340px;
  background: #e4effd;
  border-bottom: 1px solid var(--border);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.sc-catalog-visual img {
  width: min(78%, 420px);
  height: auto;
  opacity: 0.95;
}
.sc-catalog-card {
  padding: 28px 32px 36px;
}
.sc-catalog-card .eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.sc-catalog-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.18;
}
.sc-catalog-card p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 48ch;
}
.sc-catalog-card[hidden] { display: none; }

/* ——— Demo ——— */
.sc-demo {
  padding: 72px 0 96px;
  border-top: 1px solid var(--border);
}
.sc-demo-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
}
.sc-demo-head h2 {
  margin: 12px 0 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.sc-demo-head h2 em {
  font-style: normal;
  color: var(--blue);
}
.sc-demo-stat {
  text-align: right;
}
.sc-demo-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.04em;
  color: var(--blue);
  line-height: 1;
}
.sc-demo-stat span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.sc-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.sc-presets button {
  height: 34px;
  padding: 0 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
}
.sc-presets button.active,
.sc-presets button:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.sc-stage {
  display: grid;
  grid-template-columns: 1fr 88px 1fr;
  min-height: 500px;
  border: 1px solid var(--border);
}
.sc-panel {
  display: flex;
  flex-direction: column;
  background: #fff;
  min-width: 0;
}
.sc-panel header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.sc-panel textarea,
.sc-panel pre {
  flex: 1;
  margin: 0;
  padding: 18px;
  border: 0;
  outline: 0;
  resize: none;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  white-space: pre-wrap;
  min-height: 320px;
  color: var(--text);
}
.sc-query {
  border-top: 1px solid var(--border);
  padding: 12px 14px 14px;
}
.sc-query label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.sc-query input {
  width: 100%;
  border: 0;
  outline: 0;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
}
.sc-panel--dark {
  background: #0b1015;
  color: #f5f9ff;
}
.sc-panel--dark header {
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
}
.sc-panel--dark pre { color: #f5f9ff; }
.sc-panel--dark .sc-panel-status {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.sc-compress {
  align-self: center;
  justify-self: center;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(5,98,239,0.35);
}
.sc-compress img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}
.sc-compress span {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sc-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-top: 0;
}
.sc-metrics div {
  padding: 16px;
  border-right: 1px solid var(--border);
}
.sc-metrics div:last-child { border-right: 0; }
.sc-metrics small {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.sc-metrics strong {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.03em;
}

/* ——— Agents ——— */
.sc-agents {
  padding: 72px 0 96px;
  border-top: 1px solid var(--border);
}
.sc-agents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.sc-agents h2 {
  margin: 12px 0 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.sc-agents h2 .blue { color: var(--blue); }
.sc-agents .lede {
  margin: 16px 0 28px;
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}
.sc-agent-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.sc-agent-list div {
  background: #fff;
  padding: 16px 18px;
}
.sc-agent-list strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.sc-agent-list span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ——— Install ——— */
.sc-install {
  padding: 0 0 96px;
}
.sc-install-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  background: #07224f;
  color: #faf7f2;
  min-height: 360px;
}
.sc-install-copy {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sc-install-copy .label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.sc-install-copy h2 {
  margin: 14px 0 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.sc-install-copy p {
  margin: 16px 0 28px;
  max-width: 40ch;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}
.sc-install-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.sc-install .btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}
.sc-term {
  margin: 28px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
}
.sc-term-head {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}
.sc-term-head i {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.sc-term-head i:nth-child(1) { background: #ff5f57; }
.sc-term-head i:nth-child(2) { background: #febc2e; }
.sc-term-head i:nth-child(3) { background: #28c840; }
.sc-term pre {
  margin: 0;
  padding: 22px 18px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.85;
  color: #e8eef7;
  overflow: auto;
}
.sc-term .dim { color: rgba(255,255,255,0.35); }
.sc-term .kw { color: #7dd3fc; }

/* ——— Final ——— */
.sc-final {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.sc-final-art {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
}
.sc-final-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.sc-final-copy { position: relative; z-index: 1; }
.sc-final-copy img { margin: 0 auto 18px; width: 48px; height: 48px; }
.sc-final-copy .label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.sc-final-copy h2 {
  margin: 14px auto 28px;
  max-width: 16ch;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

/* ——— Footer ——— */
.sc-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 40px;
}
.sc-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sc-footer p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}
.sc-footer-links {
  display: flex;
  gap: 18px;
}
.sc-footer-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.sc-footer-links a:hover { color: var(--text); }

.sc-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 100;
  padding: 10px 16px;
  background: var(--text);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(11,16,21,0.22);
  pointer-events: none;
}
.sc-toast[hidden] { display: none !important; }

@media (max-width: 960px) {
  .sc-nav-links { display: none; }
  .sc-nav-inner { grid-template-columns: 1fr auto; }
  .sc-cta-row { grid-template-columns: 1fr; }
  .sc-catalog-grid,
  .sc-agents-grid,
  .sc-install-card,
  .sc-stage { grid-template-columns: 1fr; }
  .sc-catalog-left { border-right: 0; border-bottom: 1px solid var(--border); }
  .sc-compress { margin: 16px auto; }
  .sc-metrics { grid-template-columns: 1fr 1fr; }
  .sc-metrics div:nth-child(2n) { border-right: 0; }
  .sc-metrics div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .sc-hands { height: 200px; }
}

/* Entrance helpers */
.gs-ready .hero-in { opacity: 0; transform: translateY(18px); }
