/* 
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg-raised: #f4f6f9;
  --bg-card: #f9fafb;
  --bg-card-hover: #eef1f6;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.14);
  --accent: #746DF0;
  --accent-mid: #1a73e8;
  --accent-soft: rgba(116,109,240,0.08);
  --accent-border: rgba(15,100,220,0.2);
  --text-primary: #0d1117;
  --text-secondary: #4a5568;
  --text-muted: #8a96a8;
  --green: #0d6e4c;
  --green-soft: rgba(13,110,76,0.07);
  --green-border: rgba(13,110,76,0.18);
  --amber: #b45309;
  --amber-soft: rgba(180,83,9,0.07);

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'Courier New', monospace;
  --max-w: 1240px;
  --nav-h: 68px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.022) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 0;
} */

/* ── HERO ── */
#hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  width: 900px; height: 600px;
  top: -60px; right: -180px;
  background: radial-gradient(ellipse, rgba(15,100,220,0.055) 0%, transparent 68%);
  pointer-events: none;
}
/* ── FEATURE COUNT STRIP ── */
#count-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.count-inner {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  background: var(--border);
  gap: 1px;
}
.count-cell {
  background: var(--bg);
  padding: 22px 20px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}
.count-cell:hover { background: var(--bg-card); }
.count-cell.active-tab { background: var(--accent-soft); border-bottom-color: var(--accent); }
.count-num {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}
.count-label {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ── TAB NAV ── */
#tab-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.tab-scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.tab-scroll::-webkit-scrollbar { display: none; }
.tab-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 52px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--text-primary); background: var(--bg-card); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); background: var(--accent-soft); }
.tab-icon { font-size: 14px; }

/* ── FEATURE SECTIONS ── */
.feature-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.feature-section:nth-child(even) { background: var(--bg-raised); }

.fs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.fs-layout.reverse { direction: rtl; }
.fs-layout.reverse > * { direction: ltr; }

.fs-text {}
.fs-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.fs-eyebrow .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}
.tag-blue { background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-border); }
.tag-green { background: var(--green-soft); color: var(--green); border: 1px solid var(--green-border); }
.tag-amber { background: var(--amber-soft); color: var(--amber); border: 1px solid rgba(180,83,9,0.18); }

.fs-kw {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.fs-text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin-bottom: 18px;
}
.fs-text h2 em { font-style: italic; color: var(--accent); }

.fs-text p {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 15px;
}
.fs-text p:last-of-type { margin-bottom: 0; }
.fs-text strong { color: var(--text-primary); font-weight: 500; }

.stat-row {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  min-width: 130px;
}
.stat-num {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}
.stat-desc { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

.kw-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}
.kw-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 9px;
  border-radius: 4px;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  background: var(--bg);
  letter-spacing: 0.04em;
}

/* ── VISUAL MOCK CARDS ── */
.visual-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
}
.vc-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-card);
}
.vc-dot { width: 9px; height: 9px; border-radius: 50%; }
.vc-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
}
.vc-body { padding: 24px 20px; }

/* Copilot visual */
.cp-prompt {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.cp-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.cp-text { font-size: 14px; color: var(--text-primary); line-height: 1.5; }
.cp-cursor {
  display: inline-block;
  width: 2px; height: 14px;
  background: var(--accent);
  margin-left: 1px;
  vertical-align: middle;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.cp-outputs { display: flex; flex-direction: column; gap: 7px; }
.cp-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-primary);
  opacity: 0;
  animation: slideR 0.35s ease forwards;
}
.cp-item:nth-child(1){animation-delay:.5s}
.cp-item:nth-child(2){animation-delay:.9s}
.cp-item:nth-child(3){animation-delay:1.3s}
.cp-item:nth-child(4){animation-delay:1.7s}
@keyframes slideR { from{opacity:0;transform:translateX(-6px)} to{opacity:1;transform:none} }
.cp-check {
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; color: #fff; font-weight: 700; flex-shrink: 0;
}

/* JD visual */
.jd-block {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}
.jd-title { font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.jd-line {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 6px;
  animation: shimmer 2.5s ease infinite;
}
.jd-line.width_100 {
  width: 100%;
}
.jd-line.width_88 {
  width: 88%;
}
.jd-line.width_94 {
  width: 94%;
}
.jd-line.width_76 {
  width: 76%;
}
.jd-line.width_65 {
  width: 65%;
}
@keyframes shimmer {
  0%,100%{opacity:.5} 50%{opacity:1}
}
.jd-line:last-child { margin-bottom: 0; width: 65%; }
.skill-map {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.skill-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  letter-spacing: 0.05em;
}
.skill-chip.mapped { background: var(--green-soft); border-color: var(--green-border); color: var(--green); }
.compliance-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.cf-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--green-soft);
  border: 1px solid var(--green-border);
  color: var(--green);
  letter-spacing: 0.05em;
}

/* Sequence builder visual */
.seq-flow { display: flex; flex-direction: column; gap: 0; }
.seq-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  position: relative;
}
.seq-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 14px;
  top: 36px;
  width: 1px;
  height: calc(100% - 12px);
  background: var(--border);
}
.seq-node {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.seq-node.done { border-color: var(--green); background: var(--green-soft); color: var(--green); }
.seq-node.active { border-color: var(--accent); background: var(--accent-soft); color: var(--accent); animation: seqPulse 1.8s ease infinite; }
@keyframes seqPulse { 0%,100%{box-shadow:0 0 0 0 rgba(15,100,220,0)} 50%{box-shadow:0 0 0 5px rgba(15,100,220,0.12)} }
.seq-info .seq-name { font-size: 13px; font-weight: 500; color: var(--text-primary); margin-bottom: 2px; }
.seq-info .seq-sub { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); }

/* AI Calls visual */
.call-ui { display: flex; flex-direction: column; gap: 12px; }
.call-live {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.live-badge {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px; color: #c53030;
  background: rgba(197,48,48,0.07);
  border: 1px solid rgba(197,48,48,0.18);
  border-radius: 4px;
  padding: 3px 8px;
}
.live-dot { width: 5px; height: 5px; background: #c53030; border-radius: 50%; animation: pulse 1.2s ease infinite; }
.wave-mini {
  flex: 1;
  height: 28px;
  display: flex;
  align-items: center;
  gap: 2.5px;
  overflow: hidden;
}
.wb {
  width: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  animation: wave 1s ease infinite;
}
.wb:nth-child(1){height:8px;animation-delay:0s}
.wb:nth-child(2){height:18px;animation-delay:.08s}
.wb:nth-child(3){height:22px;animation-delay:.16s}
.wb:nth-child(4){height:14px;animation-delay:.24s}
.wb:nth-child(5){height:20px;animation-delay:.32s}
.wb:nth-child(6){height:10px;animation-delay:.4s}
.wb:nth-child(7){height:24px;animation-delay:.48s}
.wb:nth-child(8){height:16px;animation-delay:.56s}
.wb:nth-child(9){height:8px;animation-delay:.64s}
.wb:nth-child(10){height:20px;animation-delay:.72s}
@keyframes wave { 0%,100%{transform:scaleY(.3);opacity:.4} 50%{transform:scaleY(1);opacity:1} }
.call-timer { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
.call-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.call-meta-grid .small_font {
  font-size: 12px;
  font-weight: 400;
}
.cmi {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 11px 13px;
}
.cmi-l { font-family: var(--font-mono); font-size: 9.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--text-muted); margin-bottom:3px; }
.cmi-v { font-size: 13px; font-weight: 500; color: var(--text-primary); }
.cmi-v.good { color: var(--green); }
.cmi-v.active-col { color: var(--accent); }

/* Interview visual */
.interview-ui { display: flex; flex-direction: column; gap: 8px; }
.iformat {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 15px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s;
}
.iformat.sel { border-color: var(--accent); background: var(--accent-soft); }
.if-icon { width: 34px; height: 34px; background: var(--bg); border-radius: 7px; display:flex; align-items:center; justify-content:center; font-size:15px; flex-shrink:0; border: 1px solid var(--border); }
.if-name { font-size: 13.5px; font-weight: 500; color: var(--text-primary); margin-bottom:1px; }
.if-desc { font-size: 11px; color: var(--text-muted); }
.if-badge { margin-left:auto; font-family:var(--font-mono); font-size:9.5px; padding:3px 8px; border-radius:4px; background:var(--accent-soft); color:var(--accent); border:1px solid var(--accent-border); flex-shrink:0; }
.re-card {
  display: flex; align-items: center; gap: 12px;
  margin-top: 4px;
  padding: 13px 15px;
  background: var(--green-soft);
  border: 1px solid var(--green-border);
  border-radius: 8px;
}
.re-icon { width: 34px; height: 34px; background: #fff; border-radius: 7px; display:flex; align-items:center; justify-content:center; font-size:15px; flex-shrink:0; border:1px solid var(--green-border); }
.re-name { font-size: 13px; font-weight: 500; color: var(--green); margin-bottom:1px; }
.re-desc { font-size: 11px; color: var(--green); opacity:.7; }

/* Sourcing visual */
.src-bars { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.src-row { display: flex; align-items: center; gap: 10px; }
.src-lbl { font-family:var(--font-mono); font-size:10.5px; color:var(--text-secondary); width:80px; flex-shrink:0; }
.src-wrap { flex:1; height:7px; background:var(--border); border-radius:4px; overflow:hidden; }
.src-fill { height:100%; border-radius:4px; animation:grow 1.1s ease forwards; transform-origin:left; transform:scaleX(0); }
.src-fill.f1{background:var(--accent);animation-delay:.25s;}
.src-fill.f2{background:#2563eb;animation-delay:.45s;}
.src-fill.f3{background:#6366f1;animation-delay:.65s;}
.src-fill.f4{background:var(--green);animation-delay:.85s;}
.src-fill.f5{background:#ea580c;animation-delay:1.05s;}
@keyframes grow{to{transform:scaleX(1)}}
.src-pct { font-family:var(--font-mono); font-size:11px; color:var(--text-muted); width:32px; text-align:right; flex-shrink:0; }
.phase-pills { display:flex; flex-wrap:wrap; gap:6px; margin-top:12px; }
.pp { font-family:var(--font-mono); font-size:10px; padding:4px 9px; border-radius:4px; border:1px solid var(--border); color:var(--text-muted); background:var(--bg-raised); }

/* Compliance visual */
.compliance-ui { display: flex; flex-direction: column; gap: 7px; }
.cf-row {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 14px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 7px;
}
.cf-flag { font-size: 18px; flex-shrink:0; }
.cf-info .cf-name { font-size:13px; font-weight:500; color:var(--text-primary); margin-bottom:1px; }
.cf-info .cf-region { font-family:var(--font-mono); font-size:10px; color:var(--text-muted); }
.cf-status {
  margin-left:auto; font-family:var(--font-mono); font-size:9.5px;
  padding:3px 8px; border-radius:4px;
  flex-shrink:0;
}
.cf-status.on { background:var(--green-soft); color:var(--green); border:1px solid var(--green-border); }
.cf-status.ph { background:var(--amber-soft); color:var(--amber); border:1px solid rgba(180,83,9,0.18); }

/* Reporting visual */
.report-ui { display: flex; flex-direction: column; gap: 10px; }
.rpt-metric {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 15px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.rpt-icon { font-size: 20px; flex-shrink:0; }
.rpt-name { font-size:13px; font-weight:500; color:var(--text-primary); margin-bottom:2px; }
.rpt-val { font-family:var(--font-mono); font-size:11px; color:var(--text-muted); }
.rpt-trend { margin-left:auto; font-family:var(--font-mono); font-size:12px; font-weight:500; flex-shrink:0; }
.up { color:var(--green); } .down { color:#c53030; }
.bar-chart { margin-top:4px; }
.bar-chart-row { display:flex; align-items:center; gap:8px; margin-bottom:5px; }
.bc-label { font-family:var(--font-mono); font-size:10px; color:var(--text-muted); width:56px; flex-shrink:0; }
.bc-wrap { flex:1; height:14px; background:var(--border); border-radius:3px; overflow:hidden; position:relative; }
.bc-fill { height:100%; border-radius:3px; background:var(--accent); opacity:.75; animation:grow 1s ease forwards; transform-origin:left; transform:scaleX(0); }
.bc-val { font-family:var(--font-mono); font-size:10px; color:var(--text-muted); width:28px; text-align:right; flex-shrink:0; }

/* ── CAPABILITY TABLE ── */
#capability-table { padding: 100px 0; background: var(--bg); }
#capability-table .section_title {
  font-family: var(--font-display);
  font-size: clamp(28px,3.5vw,44px);
  font-weight:400; letter-spacing:-0.02em;
  margin-bottom: 12px;
}
#capability-table .section_title em { font-style:italic; color:var(--accent); }
#capability-table .intro { font-size:16px; color:var(--text-secondary); max-width:520px; margin-bottom:48px; line-height:1.65; }

.cap-table-wrap { overflow-x:auto; }
.cap-table { width:100%; border-collapse:collapse; }
.cap-table th {
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text-muted);
  padding:14px 16px;
  text-align:left;
  border-bottom:2px solid var(--border);
  background: var(--bg-card);
  min-width: 40px;
}
.cap-table th:first-child { width:220px; }
.cap-table th.excurit-col { color:var(--accent); background: var(--accent-soft); }
.cap-table td {
  padding:14px 16px;
  font-size:14px;
  border-bottom:1px solid var(--border);
  vertical-align:middle;
}
.cap-table td:first-child {
    font-weight: 500;
    color: var(--text-primary);
    min-width: 150px;
}
.cap-table td.small_td {
   font-size: 11px;
}
.cap-table td.excurit-col { background: rgba(15,100,220,0.03); }
.cap-table tr:hover td { background: var(--bg-card); }
.cap-table tr:hover td.excurit-col { background: var(--accent-soft); }
.check-y { color: var(--green); font-size:15px; }
.check-n { color: var(--text-muted); font-size:15px; }
.check-p { color: var(--amber); font-size:13px; font-family:var(--font-mono); }
.cap-table tfoot td {
  padding:18px 16px;
  font-size:13px;
  color:var(--text-muted);
  border-top: 1px solid var(--border);
}

/* ── SEO PROSE ── */
#seo-prose { padding: 100px 0; background: var(--bg-raised); }
.prose-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.prose-left h2 { font-family:var(--font-display); font-size:clamp(26px,3vw,40px); font-weight:400; letter-spacing:-0.02em; margin-bottom:22px; line-height:1.15; }
.prose-left h2 em { font-style:italic; color:var(--accent); }
.prose-left p { font-size:15.5px; color:var(--text-secondary); line-height:1.72; margin-bottom:16px; }
.prose-left strong { color:var(--text-primary); font-weight:500; }
.faq { display:flex; flex-direction:column; }
.faq-item { border-top:1px solid var(--border); padding:20px 0; }
.faq-q { font-size:15px; font-weight:500; color:var(--text-primary); margin-bottom:9px; }
.faq-a { font-size:14.5px; color:var(--text-secondary); line-height:1.68; }

/* ── FADE UP ── */
.fade-up {
  opacity:0;
  transform:translateY(22px);
  transition:opacity .6s ease, transform .6s ease;
}
.fade-up.in { opacity:1; transform:none; }

/* ── RESPONSIVE ── */
@media(max-width:1199px) {
  .fs-layout { gap:50px 40px; }
  .prose-grid { gap:50px 40px; }
}
@media(max-width:1000px) {
  .count-inner { grid-template-columns:repeat(4,1fr); }
}
@media(max-width:991px) {
  .fs-layout { grid-template-columns:repeat(1,1fr); gap:40px 0; }
  .fs-layout.reverse { direction:ltr; }
  .prose-grid { grid-template-columns:repeat(1,1fr); gap:40px 0; }
}
@media(max-width:991px) {
  .cap-table th {
    padding: 10px;
    min-width: 100px;
  }
  .cap-table td {
      padding: 10px;
      font-size: 12px;
  }
  .cap-table tfoot td {
      padding: 12px 10px;
      font-size: 12px;
  }
}
@media(max-width:767px) {
  .count-inner { grid-template-columns:repeat(2,1fr); }
  .stat-row { flex-direction:column; }
}