@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Quantico:wght@400;700&display=swap');

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

:root {
  --bg: #080a0f;
  --surface: #0d1117;
  --surface2: #161b24;
  --border: rgba(255,255,255,0.07);
  --border-bright: rgba(255,255,255,0.15);
  --text: #e8eaf0;
  --muted: #6b7280;
  --accent: #00e5a0;
  --accent2: #7c6dff;
  --accent3: #ff6b6b;
  --amber: #f59e0b;
  --mono: 'Space Mono', monospace;
  --sans: 'Quantico', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* ── ORBS ── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  animation: orb-drift 20s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: rgba(0,229,160,0.06); top: -200px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 500px; height: 500px; background: rgba(124,109,255,0.07); bottom: -150px; left: -100px; animation-delay: -7s; }
.orb-3 { width: 300px; height: 300px; background: rgba(245,158,11,0.05); top: 40%; left: 50%; animation-delay: -14s; }
@keyframes orb-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,30px) scale(0.97); }
}

/* ── LAYOUT ── */
.wrap {
  position: relative;
  z-index: 1;
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  background: rgba(8,10,15,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.header-row {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  color: var(--accent);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  height: 54px;
  object-fit: contain;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 6px 11px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav a:hover {
  color: var(--text);
  background: var(--surface2);
}

/* ── MAIN ── */
main {
  position: relative;
  z-index: 1;
}

/* ── SECTIONS ── */
.section { padding: 80px 0; }

/* ── HERO ── */
.hero { padding: 90px 0 60px; }

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 48px;
}

.hero-copy { min-width: 0; }

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-shell {
  width: min(100%, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.hero-logo-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  transform-origin: center;
  animation: hero-logo-spin 18s linear infinite;
  filter:
    drop-shadow(0 28px 50px rgba(0,0,0,0.4))
    drop-shadow(0 0 80px rgba(0,229,160,0.14));
}

@keyframes hero-logo-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0,229,160,0.25);
  background: rgba(0,229,160,0.06);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-pill::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: dot-pulse 2s infinite;
}
@keyframes dot-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.4); }
}

.hero h1 {
  font-family: var(--sans);
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 680px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.82) 60%, rgba(255,255,255,0.62) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero > .wrap > p {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.65;
  font-weight: 400;
  margin: 0 0 24px;
}

/* ── CHIPS ── */
.chips {
  margin: 20px 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
  letter-spacing: 0.03em;
}

/* ── BUTTONS ── */
.actions {
  margin: 24px 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  padding: 11px 22px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  border: 1px solid var(--border-bright);
  color: var(--text);
  background: transparent;
}
.btn:hover { border-color: var(--accent2); color: var(--accent2); }

.btn.primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  font-weight: 700;
}
.btn.primary:hover {
  background: #00ffc2;
  box-shadow: 0 0 30px rgba(0,229,160,0.3);
  border-color: #00ffc2;
  color: #000;
}

/* ── STATS ── */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 110px;
}

.stat strong {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.stat span {
  font-size: 11px;
  color: var(--muted);
}

/* ── HOME GRID CARDS ── */
.home-grid {
  margin-top: 32px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: var(--border-bright); transform: translateY(-2px); }
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  background: radial-gradient(ellipse at top left, rgba(0,229,160,0.06), transparent 60%);
}
.card:hover::before { opacity: 1; }

.card h3 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px;
}
.card ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.card ul li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.card ul li::before { content: '–'; opacity: 0.4; flex-shrink: 0; }
.card ul li a { color: var(--accent); text-decoration: none; }
.card ul li a:hover { text-decoration: underline; }
.card ul li strong { color: var(--text); font-weight: 600; }

/* ── SECTION LABEL ── */
.section-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── SURFACE (doc sections) ── */
.surface {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}

/* ── TYPOGRAPHY ── */
h2 {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
  margin: 0 0 12px;
}

h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 32px 0 10px;
}

h3:first-of-type { margin-top: 20px; }

h4 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}

p { line-height: 1.65; color: var(--muted); margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--text); }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0,229,160,0.25);
  background: rgba(0,229,160,0.06);
  border-radius: 999px;
  padding: 4px 12px;
  margin: 0 0 12px;
}

/* ── BADGES ── */
.badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(124,109,255,0.15);
  color: var(--accent2);
  border: 1px solid rgba(124,109,255,0.25);
  border-radius: 999px;
  padding: 2px 9px;
  vertical-align: middle;
  margin-left: 8px;
}
.badge.new {
  background: rgba(0,229,160,0.1);
  color: var(--accent);
  border-color: rgba(0,229,160,0.25);
}
.badge.stable {
  background: rgba(245,158,11,0.1);
  color: var(--amber);
  border-color: rgba(245,158,11,0.25);
}

/* ── DOC CARDS ── */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 14px 0 20px;
}

.doc-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  transition: border-color 0.2s;
}
.doc-card:hover { border-color: var(--border-bright); }
.doc-card h4 { color: var(--accent2); margin-bottom: 8px; }
.doc-card p { font-size: 13px; color: var(--muted); margin: 0; }

/* ── CODE ── */
pre {
  overflow: auto;
  border-radius: 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 18px 20px;
  line-height: 1.6;
  margin: 14px 0 20px;
}

pre code {
  color: #c9d3f0;
  font-family: var(--mono);
  font-size: 13px;
  background: none;
  padding: 0;
  border-radius: 0;
  border: none;
}

code { font-family: var(--mono); font-size: 0.875em; }

:not(pre) > code {
  background: rgba(124,109,255,0.1);
  color: var(--accent2);
  border-radius: 5px;
  padding: 2px 6px;
  border: 1px solid rgba(124,109,255,0.2);
  font-size: 0.82em;
}

/* ── LISTS ── */
ol { padding-left: 20px; line-height: 1.7; }
ul { padding-left: 18px; line-height: 1.7; }
li { margin: 6px 0; color: var(--muted); }
li strong { color: var(--text); }
li code { color: var(--accent2); }
.surface li a { color: var(--accent); }

/* ── TABLE ── */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 22px;
  font-size: 13px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
table th, table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
table th {
  background: var(--surface2);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
table tr:last-child td { border-bottom: none; }
table tr:hover td { background: var(--surface2); }
table td { color: var(--muted); }
table td code { color: var(--accent); background: none; border: none; padding: 0; }

/* ── DELIVERY GRID ── */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.card-ext::before { background: radial-gradient(ellipse at top left, rgba(124,109,255,0.08), transparent 60%); }
.card-ext { border-color: rgba(124,109,255,0.2); }
.card-ext:hover { border-color: rgba(124,109,255,0.4); }

.card-lib::before { background: radial-gradient(ellipse at top right, rgba(0,229,160,0.08), transparent 60%); }
.card-lib { border-color: rgba(0,229,160,0.2); }
.card-lib:hover { border-color: rgba(0,229,160,0.4); }

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  display: block;
  object-fit: contain;
}
.card-title { font-family: var(--sans); font-size: 18px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.card-sub { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-bottom: 14px; }
.card-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── TAGS ── */
.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 12px;
  margin-right: 4px;
  letter-spacing: 0.05em;
}
.tag-purple { background: rgba(124,109,255,0.15); color: var(--accent2); border: 1px solid rgba(124,109,255,0.2); }
.tag-green  { background: rgba(0,229,160,0.1);   color: var(--accent);  border: 1px solid rgba(0,229,160,0.2); }
.tag-amber  { background: rgba(245,158,11,0.1);  color: var(--amber);   border: 1px solid rgba(245,158,11,0.2); }
.tag-red    { background: rgba(255,107,107,0.1); color: var(--accent3); border: 1px solid rgba(255,107,107,0.2); }

/* ── CONNECTOR ── */
.connector { display: flex; align-items: center; justify-content: center; padding: 4px 0; position: relative; }
.connector-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--border-bright), transparent);
  position: relative;
}
.connector-line::after {
  content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 7px solid rgba(255,255,255,0.2);
}
.connector-label {
  position: absolute;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em;
  color: var(--muted); background: var(--bg); padding: 2px 8px;
  border-radius: 100px; border: 1px solid var(--border); white-space: nowrap;
}

/* ── FLOW STEPS ── */
.flow-section { margin-bottom: 16px; }
.flow-header {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px 14px 0 0;
  padding: 16px 24px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border);
}
.flow-header-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: dot-pulse 2s infinite; }
.flow-header-title { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--accent); }
.flow-steps {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  top: 58px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg, rgba(0,229,160,0.4), rgba(124,109,255,0.4), rgba(245,158,11,0.4), rgba(255,107,107,0.4));
  z-index: 0;
}
.step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 8px; position: relative; z-index: 1;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  margin-bottom: 16px; position: relative; transition: transform 0.3s; border: 1.5px solid;
}
.step:hover .step-num { transform: scale(1.12); }
.step-num-1 { background: rgba(0,229,160,0.1);   border-color: var(--accent);  color: var(--accent);  box-shadow: 0 0 20px rgba(0,229,160,0.2); }
.step-num-2 { background: rgba(124,109,255,0.1);  border-color: var(--accent2); color: var(--accent2); box-shadow: 0 0 20px rgba(124,109,255,0.2); }
.step-num-3 { background: rgba(245,158,11,0.1);   border-color: var(--amber);   color: var(--amber);   box-shadow: 0 0 20px rgba(245,158,11,0.2); }
.step-num-4 { background: rgba(255,107,107,0.1);  border-color: var(--accent3); color: var(--accent3); box-shadow: 0 0 20px rgba(255,107,107,0.2); }
.step-title { font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.step-file { font-family: var(--mono); font-size: 9px; color: var(--muted); margin-bottom: 8px; }
.step-desc { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* ── CORE MODULE CARDS ── */
.core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.module-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.module-card:hover { transform: translateY(-3px); }
.module-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; border-radius: 14px 14px 0 0;
}
.mc-blue::after   { background: linear-gradient(90deg, var(--accent2), transparent); }
.mc-blue:hover    { border-color: rgba(124,109,255,0.35); }
.mc-green::after  { background: linear-gradient(90deg, var(--accent), transparent); }
.mc-green:hover   { border-color: rgba(0,229,160,0.35); }
.mc-amber::after  { background: linear-gradient(90deg, var(--amber), transparent); }
.mc-amber:hover   { border-color: rgba(245,158,11,0.35); }
.module-name { font-family: var(--mono); font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.mc-blue  .module-name { color: var(--accent2); }
.mc-green .module-name { color: var(--accent); }
.mc-amber .module-name { color: var(--amber); }
.module-fn { font-family: var(--mono); font-size: 10px; color: var(--muted); margin-bottom: 12px; }
.module-items { list-style: none; display: flex; flex-direction: column; gap: 5px; padding: 0; margin: 0; }
.module-items li { font-size: 11px; color: var(--muted); display: flex; align-items: flex-start; gap: 7px; line-height: 1.4; }
.module-items li::before { content: '–'; opacity: 0.4; flex-shrink: 0; }

/* ── SAFETY + PLANNER GRID ── */
.shared-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.risk-panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 20px; grid-column: span 1;
}
.risk-title { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-bottom: 16px; letter-spacing: 0.08em; }
.risk-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.risk-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.risk-label { font-size: 12px; font-weight: 600; min-width: 54px; }
.risk-bar-wrap { flex: 1; height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.risk-bar { height: 100%; border-radius: 2px; }
.risk-note { font-size: 10px; color: var(--muted); }

.planner-panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 20px; grid-column: span 2;
}
.planner-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.ptab {
  flex: 1; padding: 8px 12px; border-radius: 8px;
  font-family: var(--mono); font-size: 11px; text-align: center;
  cursor: pointer; border: 1px solid var(--border);
  background: transparent; color: var(--muted); transition: all 0.2s; letter-spacing: 0.05em;
}
.ptab.active-h { background: rgba(0,229,160,0.1); border-color: rgba(0,229,160,0.3); color: var(--accent); }
.ptab.active-w { background: rgba(124,109,255,0.1); border-color: rgba(124,109,255,0.3); color: var(--accent2); }
.ptab:not(.active-h):not(.active-w):hover { border-color: var(--border-bright); color: var(--text); }
.pmode { display: none; }
.pmode.active { display: block; }
.pmode-title { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.pmode-desc { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.code-chip {
  font-family: var(--mono); font-size: 10px; background: var(--surface2);
  border: 1px solid var(--border); border-radius: 6px; padding: 8px 12px;
  color: var(--muted); line-height: 1.7; display: block;
}
.kw  { color: var(--accent2); }
.str { color: var(--accent); }
.cm  { color: rgba(107,114,128,0.7); }
.num { color: var(--amber); }

/* ── OUTCOMES ── */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.outcome-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px; text-align: center; transition: transform 0.3s;
}
.outcome-card:hover { transform: translateY(-3px); }
.outcome-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  display: block;
  object-fit: contain;
}
.outcome-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.outcome-desc { font-size: 11px; color: var(--muted); line-height: 1.6; }
.oc-safe   { border-color: rgba(0,229,160,0.2); }
.oc-safe:hover   { border-color: rgba(0,229,160,0.4); }
.oc-review { border-color: rgba(245,158,11,0.2); }
.oc-review:hover { border-color: rgba(245,158,11,0.4); }
.oc-block  { border-color: rgba(255,107,107,0.2); }
.oc-block:hover  { border-color: rgba(255,107,107,0.4); }

/* ── INSTALL STRIP ── */
.install-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid rgba(0,229,160,0.2);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 12px;
  gap: 16px;
  flex-wrap: wrap;
}
.install-left { display: flex; flex-direction: column; gap: 10px; }
.install-pkg { font-family: var(--mono); font-size: 15px; }
.install-scope { color: var(--muted); }
.install-name { color: var(--accent); font-weight: 700; }
.install-meta { display: flex; gap: 6px; flex-wrap: wrap; }
.install-cmd-wrap {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px; flex: 1; min-width: 260px;
}
.install-prompt { font-family: var(--mono); color: var(--accent); font-size: 13px; }
.install-cmd { font-family: var(--mono); font-size: 13px; color: var(--text); flex: 1; }
.copy-btn {
  display: flex; align-items: center; gap: 5px;
  background: transparent; border: 1px solid var(--border);
  border-radius: 6px; padding: 5px 10px;
  color: var(--muted); cursor: pointer; font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.05em; transition: all 0.2s;
}
.copy-btn:hover { border-color: var(--accent); color: var(--accent); }
.copy-btn svg { flex-shrink: 0; }

/* ── SNIPPET PANEL ── */
.snippet-panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; margin-bottom: 40px;
}
.snippet-tabs {
  display: flex; border-bottom: 1px solid var(--border);
  padding: 0 4px; gap: 2px; overflow-x: auto; scrollbar-width: none;
}
.snippet-tabs::-webkit-scrollbar { display: none; }
.stab {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em;
  padding: 12px 16px; background: transparent; border: none;
  color: var(--muted); cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.stab:hover { color: var(--text); }
.stab-active { color: var(--accent); border-bottom-color: var(--accent); }
.snippet-body { padding: 24px 28px; min-height: 220px; }
.snippet { display: none; }
.snippet.active { display: block; }
.snippet-line { font-family: var(--mono); font-size: 13px; line-height: 1.9; color: var(--text); }
.snippet-comment { font-family: var(--mono); font-size: 12px; line-height: 1.9; color: rgba(107,114,128,0.7); }

/* ── EXPORTS ── */
.exports-row {
  border-top: 1px solid var(--border); padding: 16px 28px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.exports-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.exports-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.exp-chip { font-family: var(--mono); font-size: 10px; padding: 3px 9px; border-radius: 5px; border: 1px solid; }
.exp-fn   { color: var(--accent);  border-color: rgba(0,229,160,0.25);  background: rgba(0,229,160,0.07); }
.exp-type { color: var(--accent2); border-color: rgba(124,109,255,0.25); background: rgba(124,109,255,0.07); }

/* ── CTA ROW ── */
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

/* ── CONTACT ── */
.contact-note { margin-top: 14px; color: var(--muted); font-size: 14px; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer p { font-family: var(--mono); font-size: 12px; color: var(--muted); margin: 0; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--text); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.6s ease forwards;
  animation-play-state: paused;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.65s; }
.delay-6 { animation-delay: 0.8s; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-bright); border-radius: 3px; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .hero-layout { grid-template-columns: 1fr; gap: 28px; }
  .hero-logo-shell { max-width: 420px; margin: 0 auto; }
  .hero-logo-image { max-width: 360px; }
  .delivery-grid, .core-grid, .shared-grid, .outcomes-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .flow-steps::before { display: none; }
  .planner-panel { grid-column: span 1; }
  .brand-logo { width: auto; height: 4px; }
  .surface { padding: 20px 16px; }
  h2 { font-size: 22px; }
  .nav a { font-size: 10px; padding: 5px 7px; }
  .hero h1 { font-size: clamp(30px, 8vw, 48px); }
}
