:root {
  --ink: #0D1117;
  --ink-soft: #1C2333;
  --paper: #F8F6F0;
  --paper-warm: #EDE9E0;
  --accent: #1A5CFF;
  --accent-warm: #FF6B2B;
  --accent-pale: #E8EEFF;
  --gold: #C4963A;
  --rule: #D4CFC4;
  --muted: #6B665B;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 56px;
  --space-3xl: 80px;
  --space-4xl: 100px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.4;
  width: 100%;
  height: 100%;
}

.content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 80px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; outline-offset: 0; }

code {
  font-family: "DM Mono", monospace;
  font-size: 0.95em;
  background: rgba(0,0,0,0.05);
  padding: 1px 4px;
  border-radius: 2px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 80px;
  background: rgba(13,17,23,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo {
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.02em;
}

.logo:hover { text-decoration: none; color: var(--accent); }

.nav-list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-list a:hover { color: #fff; text-decoration: none; }

.site-header.scrolled {
  background: rgba(13,17,23,0.96);
  border-bottom-color: rgba(255,255,255,0.12);
}

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 80px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,92,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,92,255,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}

.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  top: -200px;
  right: -240px;
  background: radial-gradient(circle, rgba(26,92,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite alternate;
}

.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -120px;
  left: -160px;
  background: radial-gradient(circle, rgba(255,107,43,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite alternate-reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 60px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--space-md);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-lg);
  max-width: 980px;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.4);
}

.accent-word {
  color: var(--accent);
}

.hero-meta-pronunciation {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.68);
  margin: calc(-1 * var(--space-sm)) 0 var(--space-xl);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.hero-subtitle {
  font-family: Syne, sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.85);
  margin: 0 0 var(--space-md);
  max-width: 760px;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.hero-body {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin: 0 0 var(--space-2xl);
  max-width: 560px;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.9s;
  opacity: 0;
}

.meta-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
}

.meta-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.meta-value {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}

.hero-scroll {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

.scroll-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.scroll-text {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

section {
  padding: var(--space-4xl) 0;
  border-bottom: 1px solid var(--rule);
}

section:last-of-type { border-bottom: none; }

.section-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 var(--space-sm);
}

.section-label::after {
  content: "";
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
}

h2 {
  font-family: Syne, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 var(--space-md);
}

h3 {
  font-family: Syne, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 var(--space-xs);
}

p { max-width: 680px; margin: 0; }
p + p { margin-top: var(--space-sm); }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.summary-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: var(--space-xl);
}

.summary-pull {
  font-family: Syne, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: var(--space-xl);
}

.problem-card {
  position: relative;
  background: var(--paper);
  padding: 40px 32px;
  transition: background 0.3s ease;
  overflow: hidden;
  isolation: isolate;
}

.problem-card:hover { background: var(--paper-warm); }

.problem-card h3 { margin-bottom: var(--space-sm); }

.card-headline {
  font-family: Syne, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: var(--space-sm);
}

.card-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.problem-watermark {
  position: absolute;
  bottom: 16px;
  right: 20px;
  z-index: -1;
  pointer-events: none;
  font-family: Syne, sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--rule);
  transition: color 0.3s ease;
}

.problem-card:hover .problem-watermark { color: var(--accent-pale); }

.deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: var(--space-xl);
}

.deliverable-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--paper);
  padding: 32px 36px;
  transition: background 0.25s ease;
}

.deliverable-item:hover { background: var(--accent-pale); }

.deliverable-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 500;
}

.deliverable-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  max-width: none;
}

.flow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: var(--space-xl);
  list-style: none;
  padding: 0;
  counter-reset: none;
}

.flow-step {
  padding: 0 var(--space-md);
  text-align: center;
}

.step-num {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: var(--ink);
  color: var(--accent);
  font-family: Syne, sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.flow-step h3 { margin-bottom: var(--space-sm); }

.flow-step > p:first-of-type {
  font-family: Syne, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: var(--space-sm);
  color: var(--ink);
}

.step-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  max-width: none;
}

.architecture-diagram {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-xl);
}

.zone {
  padding: var(--space-md);
  border-radius: 8px;
}

.zone-control {
  background: rgba(219,234,254,0.12);
  border: 1px solid rgba(191,219,254,0.6);
}

.zone-support {
  background: rgba(241,240,236,0.4);
  border: 1px solid var(--rule);
}

.zone-title {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 var(--space-md);
  color: var(--ink);
}

.zone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.zone-control .zone-dot { background: #3b82f6; }
.zone-support .zone-dot { background: #78716c; }

.layer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

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

.arch-card {
  background: #fff;
  border: 1px solid #E2E0D8;
  border-radius: 8px;
  padding: 13px 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.arch-card:hover { transform: translateY(-2px); border-color: var(--accent); }

.arch-card-dashed {
  background: #fffdf5;
  border-style: dashed;
  border-color: #FCD34D;
}

.arch-name {
  font-family: Syne, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 4px;
  max-width: none;
}

.arch-sub {
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted);
  margin: 0;
  max-width: none;
}

.connectors {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-md);
}

.connector {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: var(--muted);
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 4px 10px;
}

.conn-line {
  width: 12px;
  height: 1px;
  background: var(--accent);
}

.zone-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 24px;
  color: var(--muted);
}

.conn-arrow {
  font-family: "DM Mono", monospace;
  font-size: 14px;
  color: var(--accent);
}

.conn-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.arch-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-xl);
  font-size: 14px;
}

.arch-table thead {
  background: var(--ink);
  color: #fff;
}

.arch-table th {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 24px;
  text-align: left;
}

.arch-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
  line-height: 1.6;
}

.arch-table tr:nth-child(2n) { background: rgba(0,0,0,0.03); }
.arch-table tr:hover { background: var(--paper-warm); }

.arch-table td:first-child {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: var(--accent);
  white-space: nowrap;
  border-right: 1px solid var(--rule);
}

.arch-table td:nth-child(2) {
  font-weight: 600;
  white-space: nowrap;
  border-right: 1px solid var(--rule);
}

.arch-table td:last-child { color: var(--muted); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: var(--space-xl);
  list-style: none;
  padding: 0;
}

.why-item {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s;
  overflow: hidden;
}

.why-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.3s ease;
}

.why-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.why-item:hover::before { height: 100%; }

.why-num {
  display: block;
  font-family: Syne, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.why-item h3 { margin-bottom: var(--space-sm); }

.why-item > p:first-of-type {
  font-family: Syne, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: var(--space-sm);
}

.why-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  max-width: none;
}

.roadmap-list {
  list-style: none;
  padding: 0;
  margin-top: var(--space-xl);
}

.step-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left 0.25s ease;
}

.step-item:hover { padding-left: 12px; }

.step-item:first-child { border-top: 1px solid var(--rule); }

.step-item .step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  font-size: 24px;
  margin: 0;
}

.step-item h3 { margin-bottom: var(--space-xs); }

.step-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: none;
}

.closing {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 80px;
  margin-top: var(--space-4xl);
  border-bottom: none;
}

.closing::before,
.closing::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.closing::before { width: 200px; height: 200px; }
.closing::after { width: 300px; height: 300px; right: -80px; bottom: -80px; }

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-weight: 600;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
  letter-spacing: 0;
  margin-bottom: var(--space-2xl);
}

.closing-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-md);
}

.closing-footer p {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.72);
  max-width: none;
}

@keyframes gridDrift {
  0% { transform: translate(0); }
  100% { transform: translate(60px, 60px); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 1; }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: #1149d0;
  border-color: #1149d0;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-secondary:hover {
  border-color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: var(--space-2xl);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

pre { margin: 0; }

/* Section: Demo / Terminal */
.section-demo {
  background: var(--ink-soft);
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.08);
}

.terminal {
  margin-top: var(--space-xl);
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}

.terminal-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: var(--space-sm) var(--space-md);
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.terminal-dots span:nth-child(1) { background: #ff5f57; }
.terminal-dots span:nth-child(2) { background: #febc2e; }
.terminal-dots span:nth-child(3) { background: #28c840; }

.terminal-title {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.05em;
}

.terminal-body {
  padding: var(--space-lg) var(--space-xl);
  margin: 0;
  font-family: "DM Mono", monospace;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  overflow-x: auto;
}

.term-prompt { color: var(--accent); }
.term-cmd { color: #fff; }
.term-ok { color: #1B8A5A; }
.term-warn { color: #D89210; }
.term-info { color: var(--accent-warm); }
.term-path { color: var(--accent-pale); }
.term-accent { color: var(--accent); }
.term-dim { color: rgba(255,255,255,0.45); }

/* Section: Preview / Browser Frame */
.browser-frame {
  margin-top: var(--space-xl);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 32px 96px rgba(13,17,23,0.08);
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: var(--space-sm) var(--space-md);
  background: var(--paper-warm);
  border-bottom: 1px solid var(--rule);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rule);
}

.browser-url {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 4px 12px;
  flex: 1;
  text-align: center;
}

.browser-viewport {
  max-height: 560px;
  overflow-y: auto;
  background: var(--ink);
}

.browser-viewport img {
  display: block;
  width: 100%;
  height: auto;
}

.preview-cta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

.preview-note {
  font-size: 14px;
  color: var(--muted);
}

/* Section: Get Started / Install */
.section-get-started {
  background: var(--paper-warm);
}

.install-steps {
  list-style: none;
  padding: 0;
  margin-top: var(--space-xl);
  display: grid;
  gap: var(--space-lg);
}

.install-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 2px;
  transition: border-color 0.2s, transform 0.2s;
}

.install-step:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.install-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--accent);
  font-family: Syne, sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.install-body {
  flex: 1;
}

.install-body h3 {
  margin: 0 0 var(--space-xs);
  font-size: 18px;
}

.code-block {
  background: var(--ink);
  color: #e8e8e8;
  font-family: "DM Mono", monospace;
  font-size: 13px;
  line-height: 1.6;
  padding: var(--space-md);
  border-radius: 2px;
  overflow-x: auto;
  margin: var(--space-sm) 0 0;
}

.install-note {
  font-size: 14px;
  color: var(--muted);
  margin: var(--space-xs) 0 0;
}

/* Closing CTAs */
.closing-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: var(--space-2xl);
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.footer-brand .logo {
  font-size: 22px;
  color: #fff;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-top: var(--space-xs);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.footer-col h4 {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 var(--space-md);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-sm);
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
}

.footer-bottom p {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  max-width: none;
  margin: 0;
}

/* Nav dashboard link */
.nav-dashboard {
  color: var(--accent) !important;
  position: relative;
}

.nav-dashboard::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.2s;
}

.nav-dashboard:hover::after {
  opacity: 1;
}

/* Responsive for new components */
@media (max-width: 900px) {
  .content { padding: 0 32px; }
  .hero-content { padding: 120px 32px 40px; }
  .hero-scroll { padding: 24px 32px; }
  .site-header { padding: 20px 32px; }

  .summary-layout { grid-template-columns: 1fr; gap: 40px; }
  .problem-grid,
  .deliverables { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .flow-steps-4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .layer-grid,
  .layer-support { grid-template-columns: repeat(2, 1fr); }
  .closing { padding: 60px 32px; }
}

@media (max-width: 600px) {
  .content { padding: 0 20px; }
  .hero-content { padding: 100px 20px 32px; }
  .hero-scroll { padding: 20px; gap: 12px; }
  .hero-meta { flex-direction: column; gap: 20px; }
  .hero-title { letter-spacing: -0.02em; }
  .site-header { padding: 16px 20px; }

  section { padding: 64px 0; }

  .summary-layout { gap: 32px; }
  .summary-pull { font-size: 22px; padding-left: 18px; }

  .problem-card { padding: 32px 24px; }
  .deliverable-item { padding: 24px; gap: 16px; }
  .deliverable-icon { width: 32px; height: 32px; min-width: 32px; font-size: 11px; }

  .flow-steps,
  .flow-steps-4 { grid-template-columns: 1fr; }

  .why-item { padding: 24px; }
  .step-item { gap: 20px; padding: 22px 0; }
  .step-item .step-num { width: 40px; height: 40px; font-size: 20px; }

  .layer-grid,
  .layer-support { grid-template-columns: 1fr; }
  .connectors { gap: 8px; }
  .connector { font-size: 9px; padding: 3px 8px; }

  .arch-table {
    display: block;
    overflow-x: auto;
    font-size: 13px;
  }
  .arch-table th,
  .arch-table td { padding: 14px 16px; }

  .closing { padding: 48px 20px; margin-top: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-grid,
  .hero-glow,
  .hero-glow-2 { animation: none; }
  .hero-eyebrow,
  .hero-title,
  .hero-meta-pronunciation,
  .hero-subtitle,
  .hero-body,
  .hero-meta,
  .hero-scroll { opacity: 1; animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .why-item:hover,
  .step-item:hover,
  .problem-card:hover,
  .arch-card:hover,
  .deliverable-item:hover { transform: none; }
  .why-item:hover::before { height: 0; }
}
