@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #080808;
  --bg2: #0f0f0f;
  --bg3: #141414;
  --panel: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.10);
  --border2: rgba(255,255,255,0.06);
  --border-y: rgba(216,216,0,0.30);
  --text: #f0f0f0;
  --muted: #888888;
  --muted2: #555555;
  --accent: #d8d800;
  --accent2: rgba(216,216,0,0.08);
  --accent3: rgba(216,216,0,0.15);
  --red: #ff4444;
  --green: #44ff88;
  --radius: 4px;
  --radius2: 8px;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;
  --sans: 'IBM Plex Sans', system-ui, sans-serif;
  --max: 1100px;
  --shadow: 0 20px 60px rgba(0,0,0,0.6);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #000; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted2); }

/* Background */
.bg-noise {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(216,216,0,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(216,216,0,0.03) 0%, transparent 60%),
    var(--bg);
}

/* ── LAYOUT ── */
.container {
  width: 100%; max-width: var(--max);
  margin: 0 auto; padding: 0 24px;
}

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,8,8,0.90);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border2);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.brand-logo {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 5px;
  background: var(--panel);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.brand-sub { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

.nav { display: flex; gap: 2px; align-items: center; }
.nav-link {
  font-size: 12px; font-family: var(--mono);
  color: var(--muted); padding: 6px 12px;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--text); background: var(--panel); }
.nav-btn {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer;
}
.chev { transition: transform .2s; }
[aria-expanded="true"] .chev { transform: rotate(180deg); }

.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.icon-btn {
  display: none; width: 36px; height: 36px; align-items: center; justify-content: center;
  background: var(--panel); border: 1px solid var(--border2);
  border-radius: var(--radius); color: var(--text); cursor: pointer;
}

/* Mega menu */
.nav-item { position: relative; }
.mega {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  width: 680px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 100;
}
.mega-inner-3 { display: grid; grid-template-columns: 220px 1fr 180px; }
.mega-rail {
  padding: 20px;
  border-right: 1px solid var(--border2);
  display: flex; flex-direction: column; gap: 14px;
}
.mega-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }
.mega-sub { font-size: 12px; color: var(--muted); line-height: 1.5; }
.rail-links { display: flex; flex-direction: column; gap: 4px; }
.rail-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted); padding: 6px 0;
  border-radius: var(--radius);
  transition: color .15s;
}
.rail-link:hover { color: var(--text); }
.rail-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.mega-actions { display: flex; flex-direction: column; gap: 6px; margin-top: auto; }
.mega-block { padding: 20px; border-right: 1px solid var(--border2); }
.mega-block:last-child { border-right: none; }
.mega-block-head { margin-bottom: 12px; }
.mega-block-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 2px; }
.mega-block-sub { font-size: 11px; color: var(--muted2); }
.mega-grid { display: flex; flex-direction: column; gap: 4px; }
.mega-card {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background .15s, border-color .15s;
}
.mega-card:hover { background: var(--panel); border-color: var(--border2); }
.mega-card-featured { border-color: var(--border-y) !important; background: var(--accent2) !important; }
.mega-ic {
  width: 32px; height: 32px; border-radius: var(--radius);
  background: var(--panel); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); flex-shrink: 0;
}
.mega-name { font-size: 12px; font-weight: 600; }
.mega-desc { font-size: 11px; color: var(--muted); }
.mini-links { display: flex; flex-direction: column; gap: 4px; }
.mini-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted); padding: 5px 0;
  transition: color .15s;
}
.mini-link:hover { color: var(--text); }
.mini-ic { color: var(--accent); font-size: 10px; }

/* Mobile menu */
.mobile-menu {
  border-top: 1px solid var(--border2);
  background: rgba(8,8,8,0.98);
}
.mobile-menu-inner {
  padding: 12px 0 20px;
  display: flex; flex-direction: column; gap: 2px;
}
.mobile-link {
  font-size: 13px; padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  transition: color .15s, background .15s;
}
.mobile-link:hover { color: var(--text); background: var(--panel); }
.mobile-actions { display: flex; gap: 8px; padding-top: 12px; border-top: 1px solid var(--border2); margin-top: 8px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 38px; padding: 0 18px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .08s, background .15s, box-shadow .15s, border-color .15s;
  white-space: nowrap; user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: rgba(216,216,0,0.5);
  box-shadow: 0 0 20px rgba(216,216,0,0.15);
}
.btn-primary:hover {
  background: #e8e800;
  box-shadow: 0 0 30px rgba(216,216,0,0.25);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); background: var(--panel); }
.btn-lg { height: 46px; padding: 0 26px; font-size: 13px; }

/* ── SECTIONS ── */
.section { padding: 80px 0; border-top: 1px solid var(--border2); }
.section:first-child { border-top: none; }
.section-hero { padding-top: 80px; padding-bottom: 80px; border-top: none; }

.section-label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); margin-bottom: 16px;
}
.section-label::before { content: '// '; }

.h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.h3 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
.lead { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; max-width: 560px; }
.sub { font-size: 14px; color: var(--muted); line-height: 1.7; }
.p { font-size: 13px; color: var(--muted); line-height: 1.65; }

.accent-text {
  color: var(--accent);
}
.grad {
  background: linear-gradient(90deg, #f0f0f0 30%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ── HERO ── */
.hero-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 48px; align-items: start;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 20px;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(216,216,0,0.6);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px rgba(216,216,0,0.6); }
  50% { box-shadow: 0 0 16px rgba(216,216,0,0.9); }
}

.cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }

.value-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.value-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
}
.check { color: var(--accent); font-size: 12px; flex-shrink: 0; }

.trust-bar {
  display: flex; gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow: hidden;
}
.trust-item {
  flex: 1; padding: 14px 16px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-kpi { font-size: 18px; font-weight: 700; color: var(--accent); }
.trust-label { font-size: 11px; color: var(--muted); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.06em; }

/* Dashboard card */
.dashboard-card {
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: var(--bg2);
  overflow: hidden;
  position: sticky; top: 80px;
}
.dash-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border2);
  background: var(--bg3);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.dash-dot-r { background: #ff5f56; }
.dash-dot-y { background: #ffbd2e; }
.dash-dot-g { background: #27c93f; }
.dash-title { font-size: 11px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.dash-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.dash-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.5s infinite;
}
.dash-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }

.dash-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  background: var(--panel);
  font-size: 12px;
}
.dash-row-label { color: var(--muted); }
.dash-row-val { font-weight: 600; }
.dash-row-green { color: var(--green); }
.dash-row-yellow { color: var(--accent); }

.spark-wrap { padding: 12px; border: 1px solid var(--border2); border-radius: var(--radius); background: var(--panel); }
.spark-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 11px; }
.spark-label { color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.spark-status { color: var(--green); }
.spark-svg { width: 100%; height: 48px; display: block; }
.spark-line { fill: none; stroke: var(--accent); stroke-width: 1.5; }
.spark-glow { fill: none; stroke: var(--accent); stroke-width: 3; opacity: 0.15; filter: blur(3px); }
.spark-area { fill: rgba(216,216,0,0.05); }
.spark-grid-line { stroke: var(--border2); stroke-width: 1; }

.dash-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.dash-mini {
  padding: 10px 12px;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  background: var(--panel);
}
.dash-mini-lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.dash-mini-val { font-size: 13px; font-weight: 600; }
.dash-foot {
  padding: 10px 16px;
  border-top: 1px solid var(--border2);
  font-size: 10px; color: var(--muted2);
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── METRICS STRIP ── */
.metrics-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}
.metric-block {
  padding: 28px 24px;
  border-right: 1px solid var(--border2);
}
.metric-block:last-child { border-right: none; }
.metric-num { font-size: 32px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.metric-desc { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── PROBLEM SECTION ── */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.problem-list { display: flex; flex-direction: column; gap: 0; }
.problem-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border2);
}
.problem-item:last-child { border-bottom: none; }
.problem-num { font-size: 11px; color: var(--muted2); flex-shrink: 0; padding-top: 2px; }
.problem-text { font-size: 13px; color: var(--muted); line-height: 1.6; }
.problem-text strong { color: var(--text); }

.chaos-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.chaos-pill {
  padding: 10px 12px;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  background: var(--panel);
  font-size: 11px; color: var(--muted2);
  text-align: center;
  transition: border-color .2s;
}
.chaos-pill.struck {
  text-decoration: line-through;
  color: var(--muted2);
  border-color: transparent;
}
.chaos-pill.highlight {
  border-color: var(--border-y);
  color: var(--accent);
  background: var(--accent2);
}
.chaos-replaced {
  margin-top: 12px; padding: 14px;
  border: 1px solid var(--border-y);
  border-radius: var(--radius);
  background: var(--accent2);
  font-size: 12px; text-align: center;
  font-weight: 600; color: var(--accent);
  letter-spacing: 0.05em;
}

/* ── HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--radius2); overflow: hidden; }
.step {
  padding: 28px 24px;
  border-right: 1px solid var(--border2);
  position: relative;
}
.step:last-child { border-right: none; }
.step-num {
  font-size: 11px; font-weight: 600;
  color: var(--accent); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 12px;
}
.step-title { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.step-desc { font-size: 12px; color: var(--muted); line-height: 1.65; }

/* ── PRODUCTS ── */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border2); border: 1px solid var(--border2); border-radius: var(--radius2); overflow: hidden; }
.product-card {
  padding: 28px;
  background: var(--bg);
  transition: background .2s;
  position: relative;
}
.product-card:hover { background: var(--bg2); }
.product-card-featured {
  border-top: 2px solid var(--accent) !important;
  background: var(--accent2);
}
.product-card-featured:hover { background: rgba(216,216,0,0.06); }
.product-kicker {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted2); margin-bottom: 10px;
}
.product-kicker-y { color: var(--accent); }
.product-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.product-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--muted);
}
.tag-y { border-color: var(--border-y); color: var(--accent); }
.product-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: gap .15s;
}
.product-link:hover { gap: 10px; }

/* ── FEATURE GRID ── */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border2); border-radius: var(--radius2); overflow: hidden; }
.feature-card {
  padding: 24px;
  border-right: 1px solid var(--border2);
  background: var(--bg);
}
.feature-card:last-child { border-right: none; }
.feature-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; margin-bottom: 14px;
  background: var(--panel);
}

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bordered-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: var(--bg2);
}
.bordered-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted); line-height: 1.5;
}

/* ── QUOTES ── */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: var(--bg2);
}
.quote-card blockquote {
  font-size: 13px; color: var(--text); line-height: 1.7;
  font-style: italic; margin-bottom: 14px;
}
.quote-card blockquote::before { content: '"'; color: var(--accent); font-style: normal; margin-right: 2px; }
.quote-card blockquote::after { content: '"'; color: var(--accent); font-style: normal; margin-left: 2px; }
.quote-source { font-size: 11px; color: var(--muted2); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── PRICING TEASER ── */
.pricing-teaser {
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: center;
  padding: 40px;
  border: 1px solid var(--border-y);
  border-radius: var(--radius2);
  background: var(--accent2);
}
.price-range { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* ── FAQ ── */
.faq { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius2); overflow: hidden; }
.faq-item {
  border-bottom: 1px solid var(--border2);
  overflow: hidden;
}
.faq-item:last-child { border-bottom: none; }
details summary {
  cursor: pointer;
  padding: 18px 24px;
  font-size: 13px; font-weight: 600; font-family: var(--mono);
  display: flex; align-items: center; justify-content: space-between;
  list-style: none;
  transition: background .15s;
}
details summary::-webkit-details-marker { display: none; }
details summary:hover { background: var(--panel); }
details summary::after {
  content: '+'; color: var(--accent); font-size: 18px; font-weight: 300; flex-shrink: 0;
}
details[open] summary::after { content: '−'; }
.faq-body {
  padding: 0 24px 18px;
  font-size: 13px; color: var(--muted); line-height: 1.7;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 64px;
  border: 1px solid var(--border-y);
  border-radius: var(--radius2);
  background: linear-gradient(135deg, var(--accent2) 0%, transparent 60%);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, rgba(216,216,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-btns { display: flex; gap: 10px; justify-content: center; margin-top: 24px; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border2);
  padding: 48px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-logo { width: 32px; height: 32px; border: 1px solid var(--border); border-radius: var(--radius); padding: 4px; }
.footer-tagline { font-size: 12px; color: var(--muted); line-height: 1.6; }
.footer-col-title { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 12px; }
.footer-link { display: block; font-size: 12px; color: var(--muted2); padding: 4px 0; transition: color .15s; }
.footer-link:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--border2); }
.footer-legal { font-size: 11px; color: var(--muted2); }
.footer-badges { display: flex; gap: 16px; }
.footer-badge { font-size: 11px; color: var(--muted2); }
.footer-badge:hover { color: var(--muted); }

/* ── BENTO ── */
.bento { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1px; background: var(--border2); border: 1px solid var(--border2); border-radius: var(--radius2); overflow: hidden; }
.bento-card {
  padding: 28px; background: var(--bg);
  transition: background .2s;
}
.bento-card:hover { background: var(--bg2); }
.bento-wide { grid-column: 1 / -1; border-bottom: 1px solid var(--border2); }
.bento-featured { border-top: 2px solid var(--accent); background: var(--accent2); }
.bento-kicker {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted2); margin-bottom: 10px;
}
.bento-kicker-y { color: var(--accent); }
.bento-tags { display: flex; gap: 6px; margin-top: 14px; }

/* ── CALLOUT ── */
.callout {
  margin-top: 24px; padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: var(--bg2);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.callout-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }

/* ── LOGO STRIP ── */
.logo-strip { margin-top: 28px; }
.logo-strip-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted2); margin-bottom: 10px; }
.logo-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.logo-pill {
  font-size: 11px; padding: 5px 10px;
  border: 1px solid var(--border2);
  border-radius: var(--radius); color: var(--muted2);
  background: var(--panel);
}

/* ── UTILITIES ── */
.muted { color: var(--muted); }
.section-head { margin-bottom: 40px; }
.divider { height: 1px; background: var(--border2); margin: 40px 0; }
.text-center { text-align: center; }
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 10px;
  border: 1px solid var(--border-y);
  border-radius: var(--radius); color: var(--accent);
  background: var(--accent2);
}

/* ── PRICING PAGE ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: var(--bg2);
  display: flex; flex-direction: column;
}
.price-card-featured {
  border-color: var(--border-y);
  background: var(--accent2);
  position: relative;
}
.price-card-featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #000;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  padding: 3px 12px; border-radius: 0 0 var(--radius) var(--radius);
}
.price-tier { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 8px; }
.price-name { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.price-sub { font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.price-val { margin-bottom: 8px; }
.price-amt { font-size: 36px; font-weight: 700; }
.price-term { font-size: 12px; color: var(--muted); }
.price-calc { font-size: 11px; color: var(--muted2); margin-bottom: 20px; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; flex: 1; }
.price-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--muted); }
.price-actions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.billing-toggle { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.billing-btn {
  flex: 1; padding: 8px 16px;
  font-family: var(--mono); font-size: 12px;
  background: none; border: none; color: var(--muted);
  cursor: pointer; transition: background .15s, color .15s;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.billing-btn.is-active { background: var(--panel); color: var(--text); }
.save-badge {
  font-size: 10px; color: var(--accent); padding: 2px 6px;
  border: 1px solid var(--border-y); border-radius: var(--radius);
}

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.form-input, .form-select, .form-textarea {
  font-family: var(--mono); font-size: 13px;
  background: var(--bg2); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 10px 14px; outline: none;
  transition: border-color .15s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: var(--bg2);
}
.contact-info-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 14px; }
.contact-email { font-size: 13px; color: var(--accent); }
.contact-list { display: flex; flex-direction: column; gap: 10px; }
.contact-list-item { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .dashboard-card { position: static; display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(2) { border-right: none; }
  .feature-card:nth-child(3), .feature-card:nth-child(4) { border-top: 1px solid var(--border2); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero-grid { gap: 32px; }
  .metrics-strip { grid-template-columns: repeat(2, 1fr); }
  .metric-block:nth-child(2) { border-right: none; }
  .metric-block:nth-child(3) { border-top: 1px solid var(--border2); }
  .metric-block:nth-child(4) { border-right: none; border-top: 1px solid var(--border2); }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border2); }
  .step:last-child { border-bottom: none; }
  .product-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 40px 24px; }
  .pricing-teaser { grid-template-columns: 1fr; }
  .callout { flex-direction: column; align-items: flex-start; }
  .nav { display: none; }
  .icon-btn { display: flex; }
  .header-cta .btn:not(.btn-primary) { display: none; }
  .chaos-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .h1 { font-size: 30px; }
  .h2 { font-size: 22px; }
  .cta-btns { flex-direction: column; }
  .cta-row { flex-direction: column; }
  .trust-bar { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
}

/* ── ANIMATIONS ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up 0.5s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* Sparkline animation */
@keyframes draw-line {
  from { stroke-dashoffset: 500; }
  to { stroke-dashoffset: 0; }
}
.spark-line { stroke-dasharray: 500; animation: draw-line 1.8s ease forwards; }
