:root {
  /* Modern dark product palette */
  --bg:           #08111F;
  --bg-2:         #0B1220;
  --surface:      #111B2E;
  --surface-2:    #172033;
  --surface-3:    #1E293B;
  --border:       #1F2A44;
  --border-soft:  #283248;

  --ink:          #F8FAFC;
  --ink-muted:    #CBD5E1;
  --ink-dim:      #94A3B8;
  --ink-fade:     #64748B;

  --cyan:         #22D3EE;
  --cyan-soft:    #67E8F9;
  --blue:         #38BDF8;
  --mint:         #34D399;
  --violet:       #8B5CF6;
  --amber:        #F59E0B;  /* status only, never brand */
  --rose:         #FB7185;  /* status only */

  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --max:    1240px;
  --pad-x:  clamp(20px, 4vw, 56px);

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-1: 0 1px 0 rgba(255,255,255,0.04) inset, 0 24px 60px -30px rgba(0,0,0,0.6);
  --glow-cyan:  0 0 0 1px rgba(34,211,238,0.25), 0 12px 40px -10px rgba(34,211,238,0.35);
  --glow-mint:  0 0 0 1px rgba(52,211,153,0.25), 0 12px 40px -10px rgba(52,211,153,0.30);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  background: rgba(34, 211, 238, 0.06);
  color: var(--cyan-soft);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 120ms ease, background 160ms ease, border 160ms ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--cyan);
  color: #0A1428;
}
.btn-primary:hover { background: var(--cyan-soft); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan-soft); }
.btn-arrow { transition: transform 160ms ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ------------------------------------------------------------------
   Header
------------------------------------------------------------------ */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(8, 17, 31, 0.72);
  border-bottom: 1px solid var(--border);
}
header.site .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 17px;
}
.brand .mark { width: 30px; height: 30px; }
.brand .word { color: var(--ink); }
.brand .word em {
  color: var(--cyan-soft);
  font-style: normal;
  font-weight: 600;
}

nav.primary {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.primary a {
  color: var(--ink-dim);
  font-size: 14px;
  font-weight: 500;
}
nav.primary a:hover { color: var(--ink); }
@media (max-width: 820px) {
  nav.primary { display: none; }
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ------------------------------------------------------------------
   Hero
------------------------------------------------------------------ */
.hero {
  position: relative;
  padding: clamp(64px, 9vw, 120px) 0 clamp(48px, 6vw, 88px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto -20%;
  height: 80%;
  background:
    radial-gradient(50% 60% at 30% 30%, rgba(34,211,238,0.16), transparent 70%),
    radial-gradient(40% 50% at 80% 10%, rgba(52,211,153,0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
}

.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--mint) 60%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  color: var(--ink-muted);
  font-size: clamp(16px, 1.6vw, 18px);
  max-width: 540px;
  margin: 0 0 28px;
}
.hero .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero .micro {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-fade);
  font-size: 13px;
}
.hero .micro .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(52,211,153,0.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(52,211,153,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

/* ------------------------------------------------------------------
   Hero product mock
------------------------------------------------------------------ */
.product-mock {
  position: relative;
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(34,211,238,0.10), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1), 0 60px 100px -40px rgba(0,0,0,0.7);
  padding: 14px;
}
.product-mock .chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px 12px;
  border-bottom: 1px solid var(--border);
}
.product-mock .chrome .dots {
  display: flex; gap: 6px;
}
.product-mock .chrome .dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--surface-3);
  border: 1px solid var(--border);
}
.product-mock .chrome .url {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-fade);
  padding: 4px 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.product-mock .chrome .net {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mint);
}

.mock-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 12px;
  padding: 12px 6px 6px;
}
@media (max-width: 560px) {
  .mock-body { grid-template-columns: 1fr; }
}

.sidebar {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px;
  font-size: 13px;
}
.sidebar .group { margin-bottom: 14px; }
.sidebar .group:last-child { margin-bottom: 0; }
.sidebar--compact .group { margin-bottom: 8px; }
.sidebar--compact .label { margin-bottom: 4px; }
.sidebar--compact li {
  padding: 4px 6px;
  font-size: 12px;
  gap: 6px;
}
.sidebar--compact li svg { width: 12px; height: 12px; }
.sidebar .label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-fade);
  margin-bottom: 6px;
}
.sidebar ul { list-style: none; margin: 0; padding: 0; }
.sidebar li {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  color: var(--ink-muted);
}
.sidebar li.active {
  background: rgba(34,211,238,0.10);
  color: var(--cyan-soft);
  border: 1px solid rgba(34,211,238,0.22);
}
.sidebar li svg { width: 14px; height: 14px; flex-shrink: 0; }

.panel {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 720px) {
  .panel { grid-template-columns: 1fr; }
}

.panel-head {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 10px; margin-bottom: 4px;
  border-bottom: 1px dashed var(--border);
}
.panel-head h3 {
  margin: 0; font-size: 14px; font-weight: 600;
}
.panel-head .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-fade);
}
.panel-head .meta .tag {
  color: var(--mint);
}

.timeline {
  grid-column: 1 / -1;
  position: relative;
  padding: 6px 4px 2px 8px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan) 0%, var(--mint) 100%);
  opacity: 0.6;
  border-radius: 2px;
}
.timeline .ev {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}
.timeline .ev .node {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(34,211,238,0.12);
  margin-left: 1px;
}
.timeline .ev.mint .node { background: var(--mint); box-shadow: 0 0 0 4px rgba(52,211,153,0.12); }
.timeline .ev.violet .node { background: var(--violet); box-shadow: 0 0 0 4px rgba(139,92,246,0.12); }
.timeline .ev.amber .node { background: var(--amber); box-shadow: 0 0 0 4px rgba(245,158,11,0.12); }
.timeline .ev .text { color: var(--ink-muted); font-size: 13px; }
.timeline .ev .text strong { color: var(--ink); font-weight: 600; }
.timeline .ev .date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-fade);
}

.stat {
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  padding: 10px 12px;
}
.stat .k {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-fade);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat .v {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.stat .delta { font-size: 11px; color: var(--mint); font-family: var(--font-mono); }
.stat .delta.warn { color: var(--amber); }

/* ------------------------------------------------------------------
   Section system
------------------------------------------------------------------ */
section { position: relative; }
section .container { position: relative; z-index: 1; }

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head.left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.section-head h2 {
  margin: 14px 0 12px;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-head p {
  color: var(--ink-muted);
  font-size: clamp(15px, 1.4vw, 17px);
  margin: 0;
}

/* ------------------------------------------------------------------
   Trust strip
------------------------------------------------------------------ */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
}
.strip .row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
.strip .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-fade);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.strip .items {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--ink-dim);
  font-size: 13px;
}
.strip .items span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.strip .items span::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 1px;
  opacity: 0.7;
}

/* ------------------------------------------------------------------
   Pain section (broken / scattered)
------------------------------------------------------------------ */
.pain {
  padding: clamp(72px, 8vw, 120px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.pain .grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: stretch;
}
.scatter {
  position: relative;
  grid-column: 1 / -1;
  min-height: 480px;
  padding: 24px 0;
}
.scatter .frag {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  box-shadow: 0 20px 40px -25px rgba(0,0,0,0.7);
  max-width: 280px;
  transform-origin: center;
}
.scatter .frag .head {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-fade);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}
.scatter .frag .head .pill {
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--surface-3);
  color: var(--ink-dim);
  font-size: 10px;
}
.scatter .frag .body {
  color: var(--ink-muted);
  font-size: 13px;
}
.scatter .frag .stamp {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--rose);
}
.scatter .frag .stamp.warn { color: var(--amber); }
.scatter .frag .stamp.lost { color: var(--ink-fade); text-decoration: line-through; }

.f1 { top: 0;    left: 0;   transform: rotate(-3deg); }
.f2 { top: 24px; left: 32%; transform: rotate(2deg); }
.f3 { top: 0;    right: 0;  transform: rotate(-1.5deg); }
.f4 { top: 170px; left: 6%; transform: rotate(1.5deg); }
.f5 { top: 200px; left: 38%; transform: rotate(-2deg); }
.f6 { top: 180px; right: 4%; transform: rotate(3deg); }
.f7 { top: 310px; left: 2%; transform: rotate(-1deg); }
.f8 { top: 330px; left: 34%; transform: rotate(2deg); }
.f9 { top: 300px; right: 3%; transform: rotate(-2deg); }

@media (max-width: 820px) {
  .scatter { min-height: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 12px; }
  .scatter .frag {
    position: static;
    max-width: none;
    transform: none !important;
  }
}

/* ------------------------------------------------------------------
   Transformation
------------------------------------------------------------------ */
.transform {
  padding: clamp(72px, 8vw, 120px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.transform .container { position: relative; z-index: 1; }
.transform-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 60px minmax(0, 1.05fr);
  align-items: center;
  gap: 24px;
}
@media (max-width: 900px) {
  .transform-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.transform-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
}
@media (max-width: 900px) {
  .transform-arrow { transform: rotate(90deg); }
}

.modules {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-1);
}
.modules-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.modules-head .title { font-weight: 600; font-size: 14px; }
.modules-head .id {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-fade);
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 540px) {
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
}
.mod {
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.mod .ic {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(34,211,238,0.10);
  color: var(--cyan-soft);
}
.mod.mint .ic { background: rgba(52,211,153,0.10); color: var(--mint); }
.mod.violet .ic { background: rgba(139,92,246,0.10); color: var(--violet); }
.mod.amber .ic { background: rgba(245,158,11,0.10); color: var(--amber); }
.mod.blue .ic { background: rgba(56,189,248,0.10); color: var(--blue); }
.mod .ic svg { width: 16px; height: 16px; }
.mod .name { font-size: 13px; font-weight: 600; }
.mod .meta { font-family: var(--font-mono); font-size: 11px; color: var(--ink-fade); }

.junk {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px;
  position: relative;
}
.junk::before {
  content: "BEFORE";
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--rose);
  border: 1px solid var(--rose);
  padding: 2px 6px;
  border-radius: 4px;
}
.junk .row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 6px;
  border-bottom: 1px dashed var(--border);
  color: var(--ink-dim);
  font-size: 13px;
}
.junk .row:last-child { border-bottom: 0; }
.junk .row .src {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-fade);
  width: 88px; flex-shrink: 0;
}
.junk .row.lost { color: var(--ink-fade); text-decoration: line-through; }

.modules-tag {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--mint);
  border: 1px solid var(--mint);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ------------------------------------------------------------------
   Feature modules
------------------------------------------------------------------ */
.features {
  padding: clamp(72px, 8vw, 120px) 0;
}
.features--continuity {
  padding-top: 0;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.records-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) {
  .records-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .records-grid { grid-template-columns: 1fr; }
}
.records-grid .card {
  min-height: 200px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 160ms ease, transform 200ms ease;
}
.card:hover { border-color: var(--cyan); transform: translateY(-2px); }
.card .ic {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(34,211,238,0.10);
  color: var(--cyan-soft);
}
.card.mint .ic { background: rgba(52,211,153,0.10); color: var(--mint); }
.card.violet .ic { background: rgba(139,92,246,0.10); color: var(--violet); }
.card.amber .ic { background: rgba(245,158,11,0.10); color: var(--amber); }
.card.blue .ic { background: rgba(56,189,248,0.10); color: var(--blue); }
.card .ic svg { width: 20px; height: 20px; }
.card h3 {
  margin: 0; font-size: 18px; font-weight: 600; letter-spacing: -0.01em;
}
.card p {
  margin: 0; color: var(--ink-muted); font-size: 14px; line-height: 1.55;
}
.card .meta {
  margin-top: auto;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-fade);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card .meta::before {
  content: "";
  width: 14px; height: 1px;
  background: var(--cyan);
  opacity: 0.6;
}
.card.mint .meta::before { background: var(--mint); }
.card.violet .meta::before { background: var(--violet); }
.card.amber .meta::before { background: var(--amber); }
.card.blue .meta::before { background: var(--blue); }

.c-wide { grid-column: span 6; }
.c-third { grid-column: span 4; }
.c-half  { grid-column: span 6; }
.c-full  { grid-column: 1 / -1; }
@media (max-width: 980px) {
  .c-wide, .c-third, .c-half { grid-column: span 12; }
}

/* Equipment mini-card sample inside feature */
.equip-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  padding: 10px;
}
@media (max-width: 520px) {
  .equip-list { grid-template-columns: 1fr; }
}
.equip-list .item {
  display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 8px;
  padding: 6px;
  border-radius: 6px;
}
.equip-list .item:hover { background: var(--surface-2); }
.equip-list .ic-sq {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--surface-3);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-dim);
}
.equip-list .ic-sq svg { width: 12px; height: 12px; }
.equip-list .name { font-size: 13px; }
.equip-list .name small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-fade);
  letter-spacing: 0.04em;
}
.equip-list .badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 999px;
  background: rgba(52,211,153,0.10);
  color: var(--mint);
}
.equip-list .badge.warn { background: rgba(245,158,11,0.10); color: var(--amber); }

/* Mini timeline inside feature */
.mini-timeline {
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  position: relative;
}
.mini-timeline ul { list-style: none; margin: 0; padding: 0; }
.mini-timeline li {
  display: grid;
  grid-template-columns: 60px 10px 1fr;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  font-size: 13px;
  color: var(--ink-muted);
}
.mini-timeline li .d {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-fade);
}
.mini-timeline li .n {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
}
.mini-timeline li.mint .n { background: var(--mint); }
.mini-timeline li.amber .n { background: var(--amber); }

/* Documents sample */
.doc-list {
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  padding: 10px;
}
.doc-list .doc {
  display: grid; grid-template-columns: 20px 1fr auto; align-items: center; gap: 10px;
  padding: 6px 4px;
  border-bottom: 1px dashed var(--border);
  font-size: 13px;
}
.doc-list .doc:last-child { border-bottom: 0; }
.doc-list .doc .nm small {
  display: block; font-family: var(--font-mono); font-size: 10px; color: var(--ink-fade);
}
.doc-list .doc svg { width: 14px; height: 14px; color: var(--ink-dim); }
.doc-list .doc .sz { font-family: var(--font-mono); font-size: 11px; color: var(--ink-fade); }

/* Contacts sample */
.contacts {
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  padding: 10px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
@media (max-width: 520px) { .contacts { grid-template-columns: 1fr; } }
.contacts .c {
  display: flex; align-items: center; gap: 10px;
  padding: 6px;
  border-radius: 8px;
}
.contacts .av {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 12px;
}
.contacts .meta { font-size: 13px; }
.contacts .meta small {
  display: block; font-family: var(--font-mono); font-size: 10px; color: var(--ink-fade);
}

/* Handover banner */
.handover-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}
@media (max-width: 720px) {
  .handover-bar { grid-template-columns: 1fr; }
}
.ho {
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  padding: 12px;
}
.ho .ph {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--cyan-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ho h4 { margin: 4px 0; font-size: 14px; font-weight: 600; }
.ho p { margin: 0; font-size: 12px; color: var(--ink-dim); }

/* ------------------------------------------------------------------
   CTA
------------------------------------------------------------------ */
.cta {
  padding: clamp(72px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: -10% 0 -10% 0;
  background:
    radial-gradient(40% 80% at 50% 50%, rgba(34,211,238,0.12), transparent 70%);
  pointer-events: none;
}
.cta .container { position: relative; }
.cta-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-1);
}
@media (max-width: 860px) {
  .cta-card { grid-template-columns: 1fr; }
}
.cta-card h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cta-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
}
.form {
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  border-radius: var(--r-md);
}
.form input {
  flex: 1 1 auto;
  background: transparent;
  border: 0;
  color: var(--ink);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  min-width: 0;
}
.form input::placeholder { color: var(--ink-fade); }
.form button {
  padding: 10px 16px;
  background: var(--cyan);
  color: #0A1428;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}
.form button:hover { background: var(--cyan-soft); }
.cta-fine {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-fade);
}

/* ------------------------------------------------------------------
   Footer
------------------------------------------------------------------ */
footer.site {
  border-top: 1px solid var(--border);
  padding: 36px 0 40px;
  color: var(--ink-fade);
  font-size: 13px;
}
footer.site .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
footer.site nav { display: flex; gap: 20px; flex-wrap: wrap; }
footer.site nav a:hover { color: var(--ink); }

/* utility */
.vh { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ------------------------------------------------------------------
   Static content pages (Privacy, Terms, etc.)
------------------------------------------------------------------ */
body.content-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.65;
}

body.content-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(45% 40% at 15% 0%, rgba(34, 211, 238, 0.07), transparent 65%),
    radial-gradient(35% 35% at 90% 5%, rgba(52, 211, 153, 0.05), transparent 60%);
  z-index: 0;
}

body.content-page a {
  color: var(--cyan-soft);
  text-decoration: underline;
  text-decoration-color: rgba(103, 232, 249, 0.35);
  text-underline-offset: 3px;
  transition: color 140ms ease, text-decoration-color 140ms ease;
}
body.content-page a:hover {
  color: var(--cyan);
  text-decoration-color: rgba(34, 211, 238, 0.6);
}

.content-page-wrap {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px) var(--pad-x) clamp(56px, 8vw, 88px);
}

.content-brand-strip {
  margin-bottom: clamp(28px, 4vw, 40px);
}
.content-brand-strip .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
}
.content-brand-strip .brand:hover { color: var(--ink); }
.content-brand-strip .brand .mark { width: 28px; height: 28px; flex-shrink: 0; }
.content-brand-strip .brand .word em {
  color: var(--cyan-soft);
  font-style: normal;
  font-weight: 600;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-1);
  padding: clamp(28px, 5vw, 48px) clamp(24px, 4vw, 40px);
}

.content-header {
  max-width: 42rem;
  margin-bottom: clamp(28px, 4vw, 40px);
  padding-bottom: clamp(24px, 3vw, 32px);
  border-bottom: 1px solid var(--border);
}
.content-header h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4.5vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.content-meta {
  margin: 0 0 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-fade);
  text-transform: uppercase;
}
.content-intro {
  margin: 0;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 42rem;
}

.content-body {
  max-width: 42rem;
}
.content-body > p {
  margin: 0 0 1.15em;
  color: var(--ink-muted);
}
.content-body > p:last-child { margin-bottom: 0; }

.content-section {
  margin-top: clamp(28px, 4vw, 40px);
}
.content-section h2 {
  margin: 0 0 14px;
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 600;
  color: var(--ink);
}
.content-section h3 {
  margin: 20px 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.content-section p {
  margin: 0 0 1.1em;
  color: var(--ink-muted);
}
.content-section p:last-child { margin-bottom: 0; }
.content-section ul {
  margin: 0 0 1.1em;
  padding-left: 1.35em;
  color: var(--ink-muted);
}
.content-section li { margin-bottom: 0.5em; }
.content-section li::marker { color: var(--ink-dim); }

.content-table-wrap {
  overflow-x: auto;
  margin: 0 0 1.1em;
}
.content-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: var(--ink-muted);
}
.content-section th,
.content-section td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.content-section th {
  color: var(--ink);
  font-weight: 600;
  background: var(--bg-2);
}

.content-closing {
  margin-top: clamp(36px, 5vw, 48px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--border);
  max-width: 42rem;
}
.content-closing h2 {
  margin: 0 0 12px;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.content-closing p {
  margin: 0;
  color: var(--ink-muted);
}

.content-page-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 28px var(--pad-x) 36px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-fade);
}
.content-page-footer p {
  margin: 0;
  line-height: 1.5;
}
.content-page-footer a {
  color: var(--ink-dim);
  text-decoration: none;
}
.content-page-footer a:hover {
  color: var(--ink-muted);
  text-decoration: underline;
}

@media (max-width: 520px) {
  .content-card {
    border-radius: var(--r-lg);
    padding: 24px 20px;
  }
}

/* ------------------------------------------------------------------
   Error pages
------------------------------------------------------------------ */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.error-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px) var(--pad-x);
  position: relative;
}
.error-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 50% 30%, rgba(34, 211, 238, 0.08), transparent 70%);
  pointer-events: none;
}
.error-brand {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.error-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 48px);
  box-shadow: var(--shadow-1);
}
.error-code {
  margin: 0 0 8px;
  font-size: clamp(56px, 12vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--mint) 60%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.error-title {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.error-copy {
  margin: 0 auto 28px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 42ch;
}
.error-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.error-footer {
  position: relative;
  z-index: 1;
  margin-top: clamp(28px, 4vw, 40px);
  font-size: 13px;
  color: var(--ink-fade);
  text-align: center;
}
