/* ============================================================================
   Argos Operating System — argos-os.com
   Design system. Dark, glassmorphic, premium. No dependencies beyond Google Fonts.
   Evolved from the argos-os.intelamation.net landing system.
   ============================================================================ */

:root {
  --bg: #030912;
  --bg-2: #06101e;
  --bg-3: #0a1628;
  --blue: #0070f3;
  --purple: #7c3aed;
  --cyan: #00d4ff;
  --green: #34d399;
  --text: #e6edf7;
  --muted: #9aa7bd;
  --muted-2: #6f7f96;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-strong: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(162, 184, 220, 0.10);
  --glass-border-strong: rgba(162, 184, 220, 0.18);
  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  --grad: linear-gradient(135deg, #0070f3 0%, #7c3aed 60%, #00d4ff 100%);
  --grad-2: linear-gradient(135deg, #0070f3, #7c3aed);
  --container: 1180px;
  --space: clamp(64px, 9vw, 104px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: var(--cyan); text-decoration: none; transition: color .15s ease; }
a:hover { color: #66e7ff; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -0.015em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.narrow { max-width: 820px; }

/* ---------- Background ---------- */
.bg-gradient {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(0, 112, 243, 0.18), transparent 60%),
    radial-gradient(900px 500px at 100% 8%, rgba(124, 58, 237, 0.16), transparent 60%),
    radial-gradient(700px 400px at 50% 110%, rgba(0, 212, 255, 0.10), transparent 60%),
    linear-gradient(180deg, #030912 0%, #050e1c 100%);
}
.bg-orb { position: fixed; border-radius: 50%; filter: blur(80px); opacity: 0.4; z-index: 0; pointer-events: none; animation: drift 18s ease-in-out infinite; }
.bg-orb-1 { width: 420px; height: 420px; top: -100px; left: -100px; background: #0070f3; }
.bg-orb-2 { width: 360px; height: 360px; top: 32%; right: -120px; background: #7c3aed; animation-delay: -6s; }
.bg-orb-3 { width: 300px; height: 300px; bottom: -100px; left: 28%; background: #00d4ff; opacity: 0.22; animation-delay: -12s; }
@keyframes drift { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(20px,-30px,0); } }
@media (prefers-reduced-motion: reduce) { .bg-orb { animation: none; } html { scroll-behavior: auto; } }

/* ---------- Utility bar ---------- */
.utility {
  position: relative; z-index: 51;
  background: rgba(2, 6, 14, 0.85);
  border-bottom: 1px solid var(--glass-border);
  font-size: 12.5px; color: var(--muted);
}
.utility-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 7px 24px; flex-wrap: wrap; }
.utility-meta { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.utility-meta .dot { color: var(--cyan); }
.utility-meta a { color: var(--text); font-weight: 600; }
.utility-actions { display: flex; gap: 18px; align-items: center; }
.utility-actions a { color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.utility-actions a:hover { color: var(--text); }
.utility-actions .live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); display: inline-block; }
@media (max-width: 860px) { .utility-meta span:nth-child(n+2) { display: none; } }
@media (max-width: 620px) { .utility-actions a span.lbl { display: none; } }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); background: rgba(3, 9, 18, 0.72); border-bottom: 1px solid var(--glass-border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 13px 24px; max-width: var(--container); margin: 0 auto; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand-mark { flex-shrink: 0; }
.brand-text { font-family: 'Fraunces', serif; font-weight: 600; font-size: 21px; letter-spacing: -0.01em; }
.brand-os { color: var(--cyan); font-weight: 500; margin-left: 5px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links > a { color: var(--muted); font-size: 14.5px; font-weight: 500; }
.nav-links > a:hover, .nav-links > a.active { color: var(--text); }
.nav-cta { padding: 9px 16px !important; border-radius: var(--radius-pill); border: 1px solid var(--glass-border-strong); background: var(--glass-bg-strong); color: var(--text) !important; }
.nav-cta:hover { border-color: var(--cyan); }
.nav-right { display: flex; align-items: center; gap: 22px; }
/* Prominent, always-visible Argos Service login */
.nav-signin { display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px; border-radius: var(--radius-pill); font-weight: 700; font-size: 15.5px; letter-spacing: 0.01em; background: var(--grad-2); color: #fff !important; border: 1px solid transparent; box-shadow: 0 6px 22px rgba(0, 112, 243, 0.42); white-space: nowrap; transition: transform .15s, box-shadow .15s, filter .15s; }
.nav-signin:hover { transform: translateY(-1px); filter: brightness(1.09); box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5); color: #fff !important; }
.nav-signin svg { width: 16px; height: 16px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-right { gap: 12px; }
  .nav-signin { padding: 9px 17px; font-size: 14.5px; }
  .nav-links { position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(4, 10, 20, 0.98); backdrop-filter: blur(20px); padding: 84px 24px 24px; transform: translateY(-100%);
    transition: transform .28s ease; height: 100vh; z-index: 49; }
  .nav-links.open { transform: translateY(0); }
  .nav-links > a { padding: 15px 4px; border-bottom: 1px solid var(--glass-border); font-size: 17px; }
  .nav-cta { margin-top: 16px; text-align: center; }
}

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 24px; border-radius: var(--radius-pill); font-weight: 600; font-size: 15px; border: 1px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .15s, border-color .15s, background .15s; font-family: inherit; }
.btn-primary { background: var(--grad-2); color: #fff !important; box-shadow: 0 8px 28px rgba(0, 112, 243, 0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(124, 58, 237, 0.45); }
.btn-ghost { background: var(--glass-bg-strong); color: var(--text) !important; border-color: var(--glass-border-strong); }
.btn-ghost:hover { border-color: var(--cyan); transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 30px; font-size: 16px; }

/* ---------- Sections / headings ---------- */
.section { padding: var(--space) 0; }
.section-tight { padding: calc(var(--space) * 0.6) 0; }
.eyebrow { display: inline-block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--cyan); padding: 6px 13px; border-radius: var(--radius-pill); border: 1px solid var(--glass-border); background: var(--glass-bg); margin-bottom: 20px; font-family: 'Manrope', sans-serif; font-weight: 600; }
.section-title { font-size: clamp(30px, 4vw, 46px); line-height: 1.1; margin: 0 0 14px; }
.section-sub { color: var(--muted); font-size: 17px; max-width: 720px; margin: 0 0 44px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }
.gradient-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Hero ---------- */
.hero { padding: clamp(64px, 9vw, 104px) 0 clamp(48px, 7vw, 80px); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero-inner { max-width: 720px; }
.display { font-size: clamp(40px, 6.4vw, 74px); line-height: 1.04; letter-spacing: -0.022em; margin: 0 0 22px; }
.lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--muted); max-width: 680px; margin: 0 0 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 28px; }
.hero-meta { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); padding: 9px 15px; border-radius: var(--radius-pill); border: 1px solid var(--glass-border); background: var(--glass-bg); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); flex-shrink: 0; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); border: 1px solid var(--glass-border-strong); box-shadow: 0 30px 80px rgba(0,0,0,.55); aspect-ratio: 4/3.4; object-fit: cover; }
.hero-visual::after { content: ""; position: absolute; inset: -1px; border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(0,112,243,.25), transparent 40%, rgba(0,212,255,.2)); pointer-events: none; mix-blend-mode: screen; }
/* Clickable trust chip below the hero image -> live /_trust verification */
.hero-trust { display: flex; align-items: center; gap: 13px; margin-top: 16px; padding: 13px 16px; background: var(--glass-bg-strong); border: 1px solid var(--glass-border-strong); border-radius: 14px; color: var(--text); transition: border-color .2s, transform .15s; position: relative; z-index: 2; }
.hero-trust:hover { border-color: var(--cyan); transform: translateY(-2px); color: var(--text); }
.hero-trust .hf-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--grad-2); display: grid; place-items: center; flex-shrink: 0; }
.hero-trust .hero-trust-txt { flex: 1; line-height: 1.32; }
.hero-trust .hero-trust-txt strong { display: block; font-size: 14px; font-family: 'Manrope', sans-serif; }
.hero-trust .hero-trust-txt > span { font-size: 11.5px; color: var(--muted); }
.hero-trust .arrow { color: var(--cyan); font-weight: 700; transition: transform .15s; }
.hero-trust:hover .arrow { transform: translateX(4px); }
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } .hero-visual { display: none; } }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-split { grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } .grid-split { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.card { position: relative; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 26px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: border-color .2s, transform .2s, background .2s; color: var(--text); }
.card:hover { border-color: var(--glass-border-strong); background: var(--glass-bg-strong); }
a.card:hover { transform: translateY(-3px); }
.card h3 { font-size: 22px; margin: 14px 0 7px; }
.card p { color: var(--muted); margin: 0; font-size: 15px; }
.card-icon { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: linear-gradient(135deg, rgba(0,112,243,0.18), rgba(124,58,237,0.18)); border: 1px solid var(--glass-border-strong); color: var(--cyan); }
.card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.tagline { font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--cyan); margin-bottom: 9px; font-weight: 600; }
.module { display: flex; flex-direction: column; }
.module-soon .tagline { color: #c4a8ff; }
.module .card-link { margin-top: 16px; font-size: 14px; color: var(--cyan); font-weight: 600; }
.module-soon .card-link { color: var(--muted); }
.arrow { display: inline-block; transition: transform .15s; }
a.card.module:hover .arrow { transform: translateX(4px); }
.replaces { font-size: 12.5px; color: var(--muted-2); margin-top: 12px; }
.replaces b { color: var(--muted); font-weight: 600; }

/* ---------- Badges ---------- */
.badge { display: inline-block; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; padding: 5px 10px; border-radius: var(--radius-pill); border: 1px solid var(--glass-border-strong); }
.badge-live { color: var(--green); border-color: rgba(52, 211, 153, 0.35); background: rgba(52, 211, 153, 0.08); }
.badge-soon { color: #c4a8ff; border-color: rgba(124, 58, 237, 0.35); background: rgba(124, 58, 237, 0.12); }
.badge-beta { color: var(--cyan); border-color: rgba(0, 212, 255, 0.35); background: rgba(0, 212, 255, 0.08); }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 28px 18px; }
.stat-num { font-family: 'Fraunces', serif; font-size: clamp(34px, 4.5vw, 52px); line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { color: var(--muted); font-size: 14px; margin-top: 10px; }
@media (max-width: 680px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Built different ---------- */
.diff { display: flex; flex-direction: column; gap: 20px; }
.diff-item { display: grid; grid-template-columns: 110px 1fr; gap: 24px; align-items: start; padding: 30px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); backdrop-filter: blur(12px); }
.diff-num { font-family: 'Fraunces', serif; font-size: 56px; line-height: 1; background: var(--grad-2); -webkit-background-clip: text; background-clip: text; color: transparent; }
.diff-body h3 { font-size: 24px; margin: 0 0 9px; }
.diff-body p { color: var(--muted); margin: 0; font-size: 16px; }
@media (max-width: 640px) { .diff-item { grid-template-columns: 1fr; gap: 8px; } .diff-num { font-size: 42px; } }

/* ---------- Pricing ---------- */
.tier { display: flex; flex-direction: column; }
.tier-name { font-family: 'Fraunces', serif; font-size: 23px; font-weight: 600; margin-bottom: 6px; }
.tier-price { font-size: 18px; color: var(--muted); margin-bottom: 22px; }
.tier-list { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.tier-list li { font-size: 15px; color: var(--text); padding-left: 26px; position: relative; }
.tier-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--grad-2); }
.tier-featured { border-color: rgba(0, 212, 255, 0.35); background: linear-gradient(180deg, rgba(0,112,243,0.08), rgba(124,58,237,0.08)); box-shadow: 0 10px 40px rgba(0,112,243,0.18); }
.tier-badge { position: absolute; top: -12px; left: 26px; background: var(--grad-2); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 11px; border-radius: var(--radius-pill); }

/* ---------- Feature split (image + text) ---------- */
.split-img { border-radius: var(--radius-lg); border: 1px solid var(--glass-border-strong); box-shadow: var(--shadow); aspect-ratio: 16/11; object-fit: cover; }
.split-body h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 0 0 16px; line-height: 1.12; }
.checklist { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 13px; }
.checklist li { position: relative; padding-left: 32px; color: var(--text); font-size: 15.5px; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: rgba(52,211,153,0.14); border: 1px solid rgba(52,211,153,0.5); }
.checklist li::after { content: ""; position: absolute; left: 7px; top: 8px; width: 6px; height: 10px; border: solid var(--green); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ---------- Pills / partners ---------- */
.pill-wrap { display: flex; flex-wrap: wrap; gap: 12px; }
.pill { padding: 9px 17px; border-radius: var(--radius-pill); border: 1px solid var(--glass-border); background: var(--glass-bg); font-size: 14px; color: var(--text); }
.logo-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.logo-cell { padding: 18px; text-align: center; border: 1px solid var(--glass-border); border-radius: 12px; background: var(--glass-bg); color: var(--muted); font-weight: 600; font-size: 14px; }
@media (max-width: 760px) { .logo-row { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CTA card ---------- */
.cta-card { text-align: center; padding: 58px 32px; border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(0,112,243,0.10), rgba(124,58,237,0.10)); border: 1px solid var(--glass-border-strong); backdrop-filter: blur(12px); }
.cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 10px; }

/* ---------- Status tiles ---------- */
.status-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.status-tile { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border: 1px solid var(--glass-border); border-radius: 12px; background: var(--glass-bg); }
.status-tile .ok { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); flex-shrink: 0; }
.status-tile strong { font-size: 15px; display: block; font-family: 'Manrope', sans-serif; }
.status-tile span { font-size: 12.5px; color: var(--muted); }
@media (max-width: 760px) { .status-tiles { grid-template-columns: 1fr; } }

/* ---------- Contact form ---------- */
.form-card { padding: clamp(26px, 4vw, 40px); }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-size: 13.5px; font-weight: 600; margin-bottom: 7px; }
.field input, .field textarea, .field select { font: inherit; color: var(--text); background: rgba(0,0,0,0.25); border: 1px solid var(--glass-border-strong); border-radius: 11px; padding: 12px 14px; width: 100%; transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,112,243,0.25); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-status { margin-top: 14px; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: var(--green); } .form-status.err { color: #fb7185; }

/* ---------- Prose (legal / long-form) ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 26px; margin: 38px 0 14px; }
.prose h3 { font-size: 19px; margin: 26px 0 10px; font-family: 'Manrope', sans-serif; font-weight: 700; }
.prose p, .prose li { color: var(--muted); font-size: 15.5px; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--cyan); }
.prose strong { color: var(--text); }
.page-head { padding: 56px 0 8px; }
.page-head h1 { font-size: clamp(34px, 5vw, 52px); margin: 14px 0 10px; }
.page-head .updated { color: var(--muted-2); font-size: 13.5px; }

/* ---------- Footer ---------- */
.footer { padding: 60px 0 36px; border-top: 1px solid var(--glass-border); margin-top: 40px; position: relative; z-index: 1; background: rgba(2, 6, 14, 0.5); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr; gap: 36px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-tagline { color: var(--muted); font-size: 14px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--glass-border); display: grid; place-items: center; color: var(--muted); }
.footer-social a:hover { color: var(--text); border-color: var(--cyan); }
.footer-col h4 { font-family: 'Manrope', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); margin: 0 0 14px; }
.footer-col a { display: block; color: var(--muted); font-size: 14px; padding: 5px 0; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--glass-border); color: var(--muted-2); font-size: 13px; }
.footer-bottom .powered a { color: var(--muted); font-weight: 600; }
.footer-bottom .powered a:hover { color: var(--cyan); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(2) { transition-delay: .08s; }
.stagger.visible > *:nth-child(3) { transition-delay: .16s; }
.stagger.visible > *:nth-child(4) { transition-delay: .24s; }
.stagger.visible > *:nth-child(5) { transition-delay: .32s; }
.stagger.visible > *:nth-child(6) { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) { .reveal, .stagger > * { opacity: 1 !important; transform: none !important; } }

/* ============================================================================
   STATEMENT OF RECORD — the 2026-07-27 crown-jewel rebuild.
   The page is a filing that happens to be selling something. Ruled rows, one
   immovable margin, tabular numerals, a SCOPE column. This genre gets read the
   way an auditor reads — which is the posture we want, because we are the only
   vendor in this category that gets stronger under audit.
   ========================================================================= */

:root {
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --danger: #fb7185;          /* LAW — three sanctioned uses site-wide, and no others:
                                 (1) the roll-up comparison column,
                                 (2) the fail LED on /unfinished,
                                 (3) .fee-cap "You are the integration layer" — the
                                     wound line, which is alert semantics, not decoration.
                                 Never a badge. Never a CTA. Never inside the mark.
                                 If you need a fourth, you are decorating. Don't. */
  --rule: rgba(162,184,220,0.14);
  --amber: #fbbf24;
  --steel: #6f7f96;
}

/* ---------- mono means "this is checkable" ---------- */
.mono, .clm-scope, .clm-date, .nav-sup, .rec-val, .scope-tag {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.tabular { font-variant-numeric: tabular-nums; }

/* ---------- nav superscript counts (rendered from claims.json) ---------- */
.nav-sup {
  font-size: 9.5px; font-weight: 500; color: var(--cyan);
  margin-left: 3px; vertical-align: super; opacity: .85;
}

/* ---------- THE FOOTNOTE LAYER ---------- */
.clm { position: relative; white-space: nowrap; }
.clm-mark {
  display: inline-block; margin-left: 3px; width: 13px; height: 13px;
  line-height: 12px; text-align: center; vertical-align: super;
  font-size: 15px; text-decoration: none; border-radius: 50%;
  color: var(--amber); opacity: .9; transition: transform .15s ease, opacity .15s ease;
}
.clm-mark:hover { transform: scale(1.25); opacity: 1; }
.clm.green   .clm-mark { color: var(--green); }
.clm.roadmap .clm-mark { color: var(--steel); }
/* The dot pulses ONLY when a stranger can verify it against a third party. */
.clm.clm-live .clm-mark { animation: clmPulse 2.4s ease-in-out infinite; }
@keyframes clmPulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.clm:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 3px; }

.clm-drawer {
  position: absolute; z-index: 90; width: 340px; max-width: calc(100vw - 24px);
  background: #071120; border: 1px solid var(--glass-border-strong);
  border-radius: 14px; padding: 16px 18px 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,.6);
  opacity: 0; transform: translateY(-6px); transition: opacity .16s ease, transform .16s ease;
  white-space: normal;
}
.clm-drawer.open { opacity: 1; transform: translateY(0); }
.clm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.clm-pill {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: .04em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 999px;
}
.clm-pill.green   { color: var(--green); background: rgba(52,211,153,.10); border: 1px solid rgba(52,211,153,.28); }
.clm-pill.amber   { color: var(--amber); background: rgba(251,191,36,.09);  border: 1px solid rgba(251,191,36,.26); }
.clm-pill.roadmap { color: var(--steel); background: rgba(111,127,150,.10); border: 1px solid rgba(111,127,150,.26); }
.clm-x { background: none; border: 0; color: var(--muted-2); font-size: 20px; line-height: 1; cursor: pointer; padding: 0 2px; }
.clm-x:hover { color: var(--text); }
.clm-claim { font-weight: 600; font-size: 14.5px; color: var(--text); margin-bottom: 8px; }
.clm-ev { font-size: 13px; line-height: 1.6; color: var(--muted); margin-bottom: 12px; }
.clm-foot {
  display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 10.5px; color: var(--muted-2);
  border-top: 1px solid var(--rule); padding-top: 10px; margin-bottom: 10px;
}
.clm-verify { display: inline-block; font-size: 13px; font-weight: 600; color: var(--cyan); }
.clm-noverify { font-family: var(--mono); font-size: 11px; color: var(--muted-2); }

/* ---------- the record table (the instrument panel, as a filing) ---------- */
.record { border-top: 1px solid var(--rule); margin: 26px 0; }
.record-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 13px 2px; border-bottom: 1px solid var(--rule);
  opacity: 0; animation: inkIn .5s ease forwards;
}
.record-row:nth-child(1) { animation-delay: .10s; }
.record-row:nth-child(2) { animation-delay: .36s; }
.record-row:nth-child(3) { animation-delay: .62s; }
.record-row:nth-child(4) { animation-delay: .88s; }
@keyframes inkIn { to { opacity: 1; } }
.rec-key { color: var(--muted); font-size: 14px; }
.rec-val { font-size: 13.5px; color: var(--text); text-align: right; }
.led { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 7px; vertical-align: middle; }
.led.pass  { background: var(--green); box-shadow: 0 0 0 3px rgba(52,211,153,.14); }
.led.scope { background: var(--amber); box-shadow: 0 0 0 3px rgba(251,191,36,.12); }
.led.road  { background: var(--steel); }
.led.fail  { background: var(--danger); box-shadow: 0 0 0 3px rgba(251,113,133,.14); }
.led.pass.livedot { animation: clmPulse 2.4s ease-in-out infinite; }

/* ---------- scope tag: every operational number carries one ---------- */
.scope-tag {
  display: inline-block; font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--muted-2); border: 1px solid var(--rule); border-radius: 4px;
  padding: 2px 7px; margin-top: 8px;
}

/* ---------- the ledger table (/proof) ---------- */
.ledger { width: 100%; border-collapse: collapse; margin-top: 22px; font-size: 14px; }
.ledger th {
  text-align: left; font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2);
  border-bottom: 1px solid var(--glass-border-strong); padding: 0 14px 10px 0;
}
.ledger td { padding: 15px 14px 15px 0; border-bottom: 1px solid var(--rule); vertical-align: top; line-height: 1.55; }
.ledger tr:target td { background: rgba(0,212,255,.05); }
.ledger .l-claim { color: var(--text); font-weight: 600; width: 27%; }
.ledger .l-ev { color: var(--muted); font-size: 13px; }
.ledger .l-scope { font-family: var(--mono); font-size: 11px; color: var(--muted-2); white-space: nowrap; }

/* ---------- the wound: itemised, inside the genre ---------- */
.wound { font-size: clamp(19px,2.4vw,25px); line-height: 1.45; color: var(--text); margin: 0 0 26px; max-width: 62ch; }
.wound strong { color: #fff; }
.fee { width: 100%; border-collapse: collapse; font-size: 14px; }
.fee th, .fee td { text-align: left; padding: 12px 14px 12px 0; border-bottom: 1px solid var(--rule); }
.fee th { font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); font-weight: 500; }
.fee td { color: var(--muted); }
.fee .n { font-family: var(--mono); font-variant-numeric: tabular-nums; color: var(--text); text-align: right; white-space: nowrap; }
.fee-cap { font-family: var(--mono); font-size: 12px; color: var(--danger); margin-top: 14px; letter-spacing: .02em; }

/* ---------- comparison: the ONLY other sanctioned use of --danger ---------- */
.vs-rollup { border-left: 2px solid rgba(251,113,133,.4); }
.vs-rollup .vs-h { color: var(--danger); }
.vs-argos { border-left: 2px solid rgba(0,212,255,.45); }
.vs-argos .vs-h { color: var(--cyan); }

/* ---------- terminal (Break the Ledger) ---------- */
.term {
  background: #05090f; border: 1px solid var(--glass-border-strong); border-radius: 12px;
  overflow: hidden; margin: 24px 0; box-shadow: var(--shadow);
}
.term-bar {
  display: flex; align-items: center; gap: 7px; padding: 9px 14px;
  border-bottom: 1px solid var(--rule); background: rgba(255,255,255,.02);
  font-family: var(--mono); font-size: 11.5px; color: var(--muted-2);
}
.term-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(162,184,220,.22); }
.term-body {
  font-family: var(--mono); font-size: 13px; line-height: 1.75; padding: 18px;
  white-space: pre-wrap; color: #cfe0f5; overflow-x: auto; margin: 0;
}
.term-body .t-err { color: var(--danger); }
.term-body .t-cmt { color: var(--muted-2); }
.term-body .t-ok  { color: var(--green); }
.term-cap { font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); padding: 0 18px 16px; }

/* ---------- mobile nav sheet — most first reads are on a phone ---------- */
@media (max-width: 900px) {
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-links {
    display: flex; flex-direction: column; gap: 4px;
    position: fixed; inset: 0; height: 100svh; z-index: 80;
    background: #040a14; padding: 84px 24px calc(28px + env(safe-area-inset-bottom));
    overflow-y: auto;
  }
  body.nav-open .nav-links a { font-size: 20px; padding: 14px 0; border-bottom: 1px solid var(--rule); }
  .clm-drawer { width: calc(100vw - 24px); }
}

@media (prefers-reduced-motion: reduce) {
  .record-row { animation: none; opacity: 1; }
  .clm.clm-live .clm-mark, .led.pass.livedot { animation: none; }
  .clm-drawer { transition: none; }
}

/* ---------- .rightfor — the concession block on every comparison page ----------
   Conceding, sincerely, the buyer for whom the competitor is the better choice.
   This is the credibility engine that licenses the attack: a page that never
   says "buy them instead" is an advert, not a comparison. Styled deliberately
   COOLER and quieter than the attack column so it reads as considered rather
   than as a rhetorical trick. */
.rightfor {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(255,255,255,.018), transparent 70%);
}
.rightfor .section-title { font-size: clamp(21px, 2.4vw, 27px); }
.rightfor .card {
  border-left: 2px solid rgba(162,184,220,.28);
  background: var(--glass-bg);
}
.rightfor .eyebrow { color: var(--muted-2); }

/* ============================================================================
   THE SEAM + THE UNFINISHED TAB
   Two sequences rebuilt in-brand, replacing the off-brand watercolour versions.
   Pure HTML/CSS/vanilla-JS — no video file, no watermark, and they inherit the
   type and colour system automatically, which a rendered MP4 never can.
   ========================================================================= */

/* ---------- THE SEAM: five databases that disagree → one client object ----- */
.seam { margin: 34px 0 0; }
.seam-toggle {
  display: inline-flex; gap: 4px; padding: 4px;
  background: rgba(255,255,255,.04); border: 1px solid var(--rule);
  border-radius: var(--radius-pill); margin-bottom: 26px;
}
.seam-toggle button {
  font-family: var(--mono); font-size: 12px; letter-spacing: .02em;
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: none; border: 0; color: var(--muted-2); cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.seam-toggle button.on { background: rgba(0,212,255,.12); color: var(--cyan); }
.seam-toggle button:not(.on):hover { color: var(--text); }

.seam-stage { position: relative; min-height: 300px; }
.seam-view { display: none; }
.seam-view.on { display: block; animation: seamIn .45s var(--ease, ease) both; }
@keyframes seamIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* --- state A: the roll-up. five stores, five different answers --- */
.seam-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.seam-db {
  border: 1px solid var(--rule); border-radius: 12px; padding: 14px 12px;
  background: rgba(255,255,255,.02); text-align: center;
}
.seam-db-name {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .09em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 12px;
}
.seam-cyl {
  width: 46px; height: 52px; margin: 0 auto 12px; position: relative;
  border: 1px solid rgba(162,184,220,.34); border-radius: 22px / 9px;
  background: linear-gradient(180deg, rgba(162,184,220,.10), rgba(162,184,220,.02));
}
.seam-cyl::before {
  content: ''; position: absolute; inset: -1px -1px auto -1px; height: 15px;
  border: 1px solid rgba(162,184,220,.34); border-radius: 50%;
  background: rgba(10,22,40,.9);
}
.seam-rec {
  font-family: var(--mono); font-size: 10.5px; line-height: 1.6;
  color: var(--muted); word-break: break-all;
}
.seam-rec b { color: var(--danger); font-weight: 500; }   /* sanctioned: the disagreement */
.seam-note { font-size: 14.5px; color: var(--muted); margin: 20px 0 0; max-width: 64ch; }

/* --- state B: argos. one object, many readers --- */
.seam-one { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.seam-core {
  border: 1px solid rgba(0,212,255,.4); border-radius: 14px;
  background: linear-gradient(180deg, rgba(0,212,255,.07), rgba(0,212,255,.01));
  padding: 18px 26px; text-align: center; position: relative;
}
.seam-core::after {
  content: ''; position: absolute; inset: -14px; border-radius: 22px;
  background: radial-gradient(closest-side, rgba(0,212,255,.14), transparent 72%);
  pointer-events: none; z-index: -1;
}
.seam-core-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .09em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 8px;
}
.seam-core-id { font-family: var(--mono); font-size: 15px; color: var(--text); }
.seam-readers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; width: 100%; }
.seam-reader {
  border: 1px solid var(--rule); border-radius: 10px; padding: 11px 8px;
  text-align: center; font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2);
  position: relative;
}
.seam-reader::before {
  content: ''; position: absolute; left: 50%; top: -22px; width: 1px; height: 22px;
  background: linear-gradient(180deg, rgba(0,212,255,.5), rgba(0,212,255,0));
}
.seam-reads {
  font-family: var(--mono); font-size: 10.5px; color: var(--cyan);
  margin-top: 7px; letter-spacing: 0; text-transform: none;
}

@media (max-width: 780px) {
  .seam-grid, .seam-readers { grid-template-columns: repeat(2, 1fr); }
  .seam-reader::before { display: none; }
}

/* ---------- THE UNFINISHED TAB ---------- */
.untab-wrap { margin: 30px 0 0; max-width: 640px; }
.untab {
  display: flex; align-items: flex-end; gap: 0;
  border-bottom: 1px solid var(--glass-border-strong); padding-left: 10px;
}
.untab-t {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border: 1px solid transparent; border-bottom: 0;
  border-radius: 9px 9px 0 0; font-size: 13.5px; color: var(--muted-2);
  text-decoration: none; white-space: nowrap;
}
.untab-t.live {
  background: rgba(255,255,255,.045); border-color: var(--glass-border-strong);
  color: var(--text); margin-bottom: -1px;
}
.untab-t.live:hover { background: rgba(255,255,255,.07); color: #fff; }
.untab-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 19px; height: 19px; padding: 0 5px; border-radius: 999px;
  background: var(--amber); color: #1b1403;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  box-shadow: 0 0 0 4px rgba(251,191,36,.12);
  animation: untabPulse 2.8s ease-in-out infinite;
}
@keyframes untabPulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(251,191,36,.12); }
  50%     { box-shadow: 0 0 0 8px rgba(251,191,36,.04); }
}
.untab-body {
  border: 1px solid var(--glass-border-strong); border-top: 0;
  border-radius: 0 0 12px 12px; padding: 22px 24px;
  background: rgba(255,255,255,.02);
}
.untab-body p { margin: 0 0 14px; color: var(--muted); font-size: 15px; }
.untab-body p:last-child { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  .seam-view.on { animation: none; }
  .untab-badge { animation: none; }
}

/* ---------- narration control -------------------------------------------
   Optional, user-initiated, never autoplay. A site that promises no dark
   patterns does not start talking at you. One track at a time. */
.listen {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.04); border: 1px solid var(--rule);
  border-radius: var(--radius-pill); padding: 8px 16px 8px 13px;
  font-family: var(--mono); font-size: 12px; color: var(--muted-2);
  cursor: pointer; transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.listen:hover { border-color: rgba(0,212,255,.4); color: var(--text); background: rgba(0,212,255,.05); }
.listen.playing { border-color: rgba(0,212,255,.55); color: var(--cyan); background: rgba(0,212,255,.08); }
.listen-ico {
  width: 0; height: 0; border-style: solid;
  border-width: 5px 0 5px 8px; border-color: transparent transparent transparent currentColor;
}
.listen.playing .listen-ico {
  width: 8px; height: 9px; border: 0;
  background: linear-gradient(90deg, currentColor 0 3px, transparent 3px 5px, currentColor 5px 8px);
}
.listen-len { opacity: .6; }

/* ---------- Full bios (about page) ---------- */
.bio-profile { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
@media (max-width: 780px) { .bio-profile { grid-template-columns: 1fr; } }
.bio-photo-wrap { position: sticky; top: 100px; }
.bio-photo { width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg); object-fit: cover; border: 1px solid var(--glass-border-strong); }
.bio-name { font-size: 22px; font-weight: 700; margin: 16px 0 2px; }
.bio-titles { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0 0 14px; }
.bio-titles b { color: var(--text); font-weight: 600; }
.bio-focus-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.bio-focus-tag { font-size: 12px; font-weight: 600; color: var(--cyan); background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius-pill); padding: 5px 11px; }
.bio-copy p { color: var(--muted); font-size: 15.5px; line-height: 1.75; margin: 0 0 18px; }
.bio-copy h4 { color: var(--text); font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; margin: 28px 0 10px; }
.bio-copy ul { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0 0 18px; padding-left: 20px; }
.bio-copy li { margin-bottom: 6px; }
.bio-copy li b { color: var(--text); }
.bio-footnote { font-size: 13.5px; color: var(--muted-2); border-top: 1px solid var(--glass-border); padding-top: 16px; margin-top: 24px; }
