/* ═══════════════════════════════════════════════════
   JARVIS SEO v5 — Void × Lime
   ═══════════════════════════════════════════════════ */

:root {
  --void:   #06040f;
  --void2:  #0d0a1a;
  --lime:   #c6fd4f;
  --lime2:  #a3e635;
  --lime-d: rgba(198,253,79,0.12);
  --lime-g: rgba(198,253,79,0.06);
  --white:  #ffffff;
  --t1:     rgba(255,255,255,0.92);
  --t2:     rgba(255,255,255,0.5);
  --t3:     rgba(255,255,255,0.22);
  --t4:     rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.13);
  --green:  #22d3a5;
  --red:    #f7515e;
  --yellow: #fbbf24;
  --orange: #fb923c;
  --card:   rgba(255,255,255,0.035);
  --card-h: rgba(255,255,255,0.065);
  --r:      16px;
  --r-sm:   10px;
  --ease:   cubic-bezier(0.4,0,0.2,1);
  --spring: cubic-bezier(0.16,1,0.3,1);
  --font:   'Inter', system-ui, sans-serif;
  --display:'Syne', sans-serif;
  --mono:   'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--void);
  color: var(--t1);
  font-family: var(--font);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── AURORA BACKGROUND ─────────────────────────── */
.aurora {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.aurora-orb {
  position: absolute; border-radius: 50%;
  filter: blur(120px); will-change: transform;
}
.a1 {
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(198,253,79,0.07) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: drift1 22s ease-in-out infinite;
}
.a2 {
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.09) 0%, transparent 70%);
  bottom: -200px; right: -100px;
  animation: drift2 28s ease-in-out infinite;
}
.a3 {
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(6,182,212,0.06) 0%, transparent 70%);
  top: 40%; left: 55%;
  animation: drift3 20s ease-in-out infinite;
}
.a4 {
  width: 450px; height: 450px;
  background: radial-gradient(ellipse, rgba(219,39,119,0.05) 0%, transparent 70%);
  top: 20%; right: 10%;
  animation: drift1 32s ease-in-out infinite reverse;
}
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(60px,-50px)} 66%{transform:translate(-30px,40px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-70px,-60px) scale(1.1)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 40%{transform:translate(40px,30px) scale(1.15)} 80%{transform:translate(-20px,-40px) scale(0.9)} }

/* Noise texture overlay */
.noise {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── SITE HEADER ───────────────────────────────── */
.site-header {
  display: none;
  position: sticky; top: 0; z-index: 300;
  background: rgba(6,4,15,0.8);
  backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--border);
}
.site-header.on { display: block; }

.sh-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px; height: 58px;
  display: flex; align-items: center; gap: 16px;
}
.sh-logo {
  font-family: var(--display); font-size: 19px; font-weight: 800;
  color: var(--lime); letter-spacing: -0.5px; flex-shrink: 0;
}
.sh-logo span { opacity: 0.5; }
.sh-url {
  flex: 1; font-family: var(--mono); font-size: 12px; color: var(--t3);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.sh-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.sh-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 8px var(--lime);
  animation: blip 2s ease-in-out infinite;
}
@keyframes blip { 0%,100%{opacity:1} 50%{opacity:0.3} }
.sh-time { font-family: var(--mono); font-size: 12px; color: var(--t3); }
.sh-btn {
  font-family: var(--font); font-size: 12px; font-weight: 600;
  color: var(--t2); background: var(--card);
  border: 1px solid var(--border2); border-radius: 8px;
  padding: 7px 16px; cursor: pointer;
  transition: all 0.2s var(--ease);
}
.sh-btn:hover { color: var(--lime); border-color: rgba(198,253,79,0.3); background: var(--lime-g); }

/* ── HERO ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 420px;
  align-items: center; gap: 60px;
  position: relative; z-index: 2;
}

/* Hero LEFT */
.hero-left { padding: 80px 0; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--lime); padding: 7px 16px 7px 10px;
  background: var(--lime-g); border: 1px solid rgba(198,253,79,0.2);
  border-radius: 50px; margin-bottom: 36px;
  animation: fadeUp .7s .05s var(--spring) both;
}
.tag-ring {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--lime); position: relative;
}
.tag-ring::after {
  content: ''; position: absolute; inset: 4px; border-radius: 50%;
  background: var(--lime);
  animation: blip 2s ease-in-out infinite;
}

.hero-h1 {
  font-family: var(--display);
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 24px;
  animation: fadeUp .7s .12s var(--spring) both;
}
.h1-thin {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--t2);
  line-height: 1.05;
  letter-spacing: -2px;
}
.h1-bold {
  font-size: clamp(60px, 8vw, 108px);
  font-weight: 800;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -4px;
}
.h1-dot { color: var(--lime); }

.hero-p {
  font-size: 17px; font-weight: 400; line-height: 1.7;
  color: var(--t2); max-width: 480px;
  margin-bottom: 44px;
  animation: fadeUp .7s .2s var(--spring) both;
}

/* AI bar above input */
.hero-ai-bar {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
  animation: fadeUp .7s .22s var(--spring) both;
}
.hero-ai-btn {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 12px; font-weight: 600;
  color: var(--t2); background: var(--card);
  border: 1px solid var(--border2); border-radius: 8px;
  padding: 8px 16px; cursor: pointer;
  transition: all 0.2s var(--ease); white-space: nowrap;
}
.hero-ai-btn:hover {
  color: var(--lime); border-color: rgba(198,253,79,0.35);
  background: var(--lime-g);
  box-shadow: 0 0 20px rgba(198,253,79,0.1);
}
.hero-ai-hint {
  font-size: 12px; color: var(--t3); font-family: var(--mono);
  letter-spacing: 0.2px;
}
.hero-ai-hint.active { color: var(--lime); }

/* Input */
.hero-input-wrap { animation: fadeUp .7s .28s var(--spring) both; }

.hero-input-box {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 6px 6px 6px 18px;
  max-width: 560px;
  transition: all 0.3s var(--ease);
}
.hero-input-box:focus-within {
  border-color: rgba(198,253,79,0.4);
  background: rgba(198,253,79,0.05);
  box-shadow: 0 0 0 4px rgba(198,253,79,0.08), 0 8px 40px rgba(198,253,79,0.1);
}
.hib-icon { color: var(--t3); display: flex; align-items: center; margin-right: 10px; flex-shrink: 0; }
.hero-input-box:focus-within .hib-icon { color: var(--lime); }

.hib-input {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  font-family: var(--font); font-size: 15px; font-weight: 400;
  color: var(--t1); padding: 12px 10px 12px 0;
  caret-color: var(--lime);
}
.hib-input::placeholder { color: rgba(255,255,255,0.18); }

.hib-btn {
  flex-shrink: 0; display: flex; align-items: center; gap: 8px;
  background: var(--lime); color: #0a0a0a;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  border: none; border-radius: 10px;
  padding: 12px 22px; cursor: pointer;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}
.hib-btn:hover {
  background: var(--lime2);
  box-shadow: 0 6px 28px rgba(198,253,79,0.45);
  transform: translateY(-1px);
}
.hib-btn:active { transform: scale(0.97); }
.hib-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; box-shadow: none; }

.hero-hint {
  margin-top: 14px; font-size: 12px; color: var(--t3);
  letter-spacing: 0.3px;
}
.hint-check { color: var(--lime); margin-right: 3px; }

/* Hero RIGHT — decorative visualization */
.hero-right {
  animation: fadeUp .7s .35s var(--spring) both;
}
.vis-frame {
  position: relative; width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.vis-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.vr1 {
  width: 120px; height: 120px; border-color: rgba(198,253,79,0.35);
  animation: rotate 8s linear infinite;
}
.vr2 {
  width: 220px; height: 220px; border-color: rgba(198,253,79,0.15);
  animation: rotate 14s linear infinite reverse;
}
.vr3 {
  width: 330px; height: 330px; border-color: rgba(198,253,79,0.06);
  animation: rotate 22s linear infinite;
}
@keyframes rotate { to { transform: translate(-50%,-50%) rotate(360deg); } }

.vis-orb {
  width: 80px; height: 80px; border-radius: 50%;
  background: radial-gradient(circle, rgba(198,253,79,0.25) 0%, rgba(198,253,79,0.05) 60%, transparent 100%);
  border: 1px solid rgba(198,253,79,0.3);
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: orbPulse 3s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(198,253,79,0.15), inset 0 0 20px rgba(198,253,79,0.1);
}
@keyframes orbPulse { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.12)} }

.vis-bars {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: flex-end; gap: 7px; height: 70px;
}
.vis-bar {
  width: 10px; background: var(--lime); border-radius: 3px 3px 0 0;
  height: var(--h); opacity: 0.5;
  animation: barWave 2.5s ease-in-out infinite var(--d);
}
@keyframes barWave { 0%,100%{opacity:0.5;transform:scaleY(1)} 50%{opacity:0.9;transform:scaleY(1.15)} }

.vis-label {
  position: absolute; top: 62px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 9px; letter-spacing: 3px;
  color: var(--lime); opacity: 0.5; white-space: nowrap;
}
.vis-num {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display); font-size: 42px; font-weight: 800;
  color: var(--lime);
  text-shadow: 0 0 30px rgba(198,253,79,0.5);
  animation: orbPulse 3s ease-in-out infinite;
}

/* ── LOADING PAGE ──────────────────────────────── */
.loading-page {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px; position: relative; z-index: 2;
  padding: 40px;
}
.lp-ring {
  position: relative; width: 100px; height: 100px;
}
.lp-ring svg { width: 100%; height: 100%; }
.lp-arc { animation: spinArc 1.3s linear infinite; transform-origin: 50px 50px; }
@keyframes spinArc { to { transform: rotate(360deg); } }
.lp-letter {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 28px; font-weight: 800;
  color: var(--lime);
}
.lp-title {
  font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--t1);
}
.lp-dots b {
  animation: dotPop 1.3s ease-in-out infinite; opacity: 0;
  font-weight: 400;
}
.lp-dots b:nth-child(2) { animation-delay: .2s; }
.lp-dots b:nth-child(3) { animation-delay: .4s; }
@keyframes dotPop { 0%,80%,100%{opacity:0} 40%{opacity:1} }

.loading-log {
  max-width: 480px; width: 100%;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px 24px;
  font-family: var(--mono); font-size: 12px; color: var(--t3);
  display: flex; flex-direction: column; gap: 8px;
  min-height: 160px; max-height: 220px; overflow: hidden;
}
.log-line {
  display: flex; align-items: center; gap: 10px;
  animation: logIn .3s var(--ease) both;
}
@keyframes logIn { from{opacity:0;transform:translateX(-8px)} to{opacity:1;transform:translateX(0)} }
.log-line::before { content:''; width:6px; height:6px; border-radius:50%; flex-shrink:0; background:rgba(255,255,255,0.1); }
.log-line.active { color: var(--lime); }
.log-line.active::before { background: var(--lime); box-shadow: 0 0 8px var(--lime); }
.log-line.done { color: rgba(255,255,255,0.18); }
.log-line.done::before { background: var(--green); box-shadow: none; }

/* ── RESULTS PAGE ──────────────────────────────── */
.results-page {
  max-width: 1280px; margin: 0 auto;
  padding: 36px 32px 100px;
  position: relative; z-index: 2;
  animation: fadeUp .5s var(--spring) both;
}

/* BENTO ROW */
.bento-row {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 14px; margin-bottom: 14px;
}

/* Big score card */
.bento-score {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px 20px;
  display: flex; flex-direction: column; align-items: center;
  position: relative; overflow: hidden;
  transition: border-color .25s;
}
.bento-score::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(198,253,79,0.06) 0%, transparent 60%);
}
.bs-label {
  font-size: 9px; font-weight: 700; letter-spacing: 3px; color: var(--t3);
  text-transform: uppercase; margin-bottom: 12px;
}
.bs-num-wrap { position: relative; width: 160px; height: 160px; }
.bs-ring { width: 160px; height: 160px; position: absolute; inset: 0; }
.bs-num-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.bs-num {
  font-family: var(--display); font-size: 48px; font-weight: 800;
  color: var(--white); line-height: 1;
}
.bs-denom { font-size: 12px; color: var(--t3); font-family: var(--mono); margin-top: 2px; }
.bs-grade {
  font-family: var(--display); font-size: 11px; letter-spacing: 4px;
  display: inline-block; margin-top: 14px;
  padding: 4px 18px; border-radius: 50px;
  border: 1px solid currentColor;
  background: rgba(0,0,0,0.3);
}

/* Category bento */
.cat-bento {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
}
.cat-cell {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 20px;
  position: relative; overflow: hidden;
  transition: all .25s var(--ease);
  animation: fadeUp .4s var(--spring) both;
  cursor: default;
}
.cat-cell:hover {
  background: var(--card-h); border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.cat-cell::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  border-radius: var(--r) var(--r) 0 0;
}
.cat-cell.gA::after { background: var(--lime);   box-shadow: 0 0 12px rgba(198,253,79,0.6); }
.cat-cell.gB::after { background: var(--green);  }
.cat-cell.gC::after { background: var(--yellow); }
.cat-cell.gD::after { background: var(--orange); }
.cat-cell.gF::after { background: var(--red);    box-shadow: 0 0 12px rgba(247,81,94,0.5); }

.cc-name { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; color: var(--t3); text-transform: uppercase; margin-bottom: 10px; }
.cc-score { font-family: var(--display); font-size: 34px; font-weight: 800; line-height: 1; }
.cat-cell.gA .cc-score { color: var(--lime);  text-shadow: 0 0 20px rgba(198,253,79,0.4); }
.cat-cell.gB .cc-score { color: var(--green); }
.cat-cell.gC .cc-score { color: var(--yellow); }
.cat-cell.gD .cc-score { color: var(--orange); }
.cat-cell.gF .cc-score { color: var(--red);  text-shadow: 0 0 20px rgba(247,81,94,0.4); }

.cc-track { margin-top: 12px; height: 3px; background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden; }
.cc-fill  { height: 100%; border-radius: 2px; width: 0; transition: width 1.3s var(--spring); }
.cat-cell.gA .cc-fill { background: var(--lime); }
.cat-cell.gB .cc-fill { background: var(--green); }
.cat-cell.gC .cc-fill { background: var(--yellow); }
.cat-cell.gD .cc-fill { background: var(--orange); }
.cat-cell.gF .cc-fill { background: var(--red); }

/* ── TABS ──────────────────────────────────────── */
.tab-row {
  display: flex; gap: 2px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 5px; margin-bottom: 14px;
  overflow-x: auto; scrollbar-width: none;
  position: relative;
}
.tab-row::-webkit-scrollbar { display: none; }
.tab-cursor {
  position: absolute; top: 5px; height: calc(100% - 10px);
  background: var(--lime-g); border: 1px solid rgba(198,253,79,0.25);
  border-radius: var(--r-sm);
  transition: all .3s var(--ease); pointer-events: none; z-index: 0;
}
.tab-btn {
  position: relative; z-index: 1;
  background: transparent; border: none;
  color: var(--t3); font-family: var(--font);
  font-size: 12px; font-weight: 600;
  padding: 9px 17px; cursor: pointer;
  border-radius: var(--r-sm); white-space: nowrap;
  transition: color .2s;
}
.tab-btn:hover { color: var(--t2); }
.tab-btn.active { color: var(--lime); }

.tab-body {
  min-height: 360px;
  animation: tabIn .25s var(--ease) both;
}
@keyframes tabIn { from{opacity:0;transform:translateY(7px)} to{opacity:1;transform:translateY(0)} }

/* ── CHECK GRID ────────────────────────────────── */
.checks-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 9px;
}
.check-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 15px 16px;
  display: flex; align-items: flex-start; gap: 12px;
  transition: all .22s var(--ease);
  animation: fadeUp .35s var(--spring) both;
}
.check-item:hover {
  background: var(--card-h); border-color: var(--border2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}
.check-icon {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; margin-top: 1px;
}
.check-icon.pass { background:rgba(34,211,165,0.1); color:var(--green); border:1px solid rgba(34,211,165,0.2); }
.check-icon.fail { background:rgba(247,81,94,0.1);  color:var(--red);   border:1px solid rgba(247,81,94,0.2); }
.check-icon.warn { background:rgba(251,191,36,0.1); color:var(--yellow);border:1px solid rgba(251,191,36,0.2); }
.check-icon.info { background:rgba(198,253,79,0.08);color:var(--lime);  border:1px solid rgba(198,253,79,0.15); }

.check-item:hover .check-icon.pass { box-shadow: 0 0 12px rgba(34,211,165,0.3); }
.check-item:hover .check-icon.fail { box-shadow: 0 0 12px rgba(247,81,94,0.3);  }
.check-item:hover .check-icon.warn { box-shadow: 0 0 12px rgba(251,191,36,0.3); }
.check-item:hover .check-icon.info { box-shadow: 0 0 12px rgba(198,253,79,0.3); }

.check-body { flex: 1; min-width: 0; }
.check-title { font-size: 13px; font-weight: 600; color: var(--t1); margin-bottom: 3px; }
.check-desc  { font-size: 12px; color: var(--t2); line-height: 1.55; }
.check-value {
  font-family: var(--mono); font-size: 11px; margin-top: 7px;
  display: inline-block; padding: 3px 9px; border-radius: 5px;
  max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  color: var(--lime); background: var(--lime-g); border: 1px solid rgba(198,253,79,0.15);
}
.check-value.bad  { color:var(--red);    background:rgba(247,81,94,0.08);  border-color:rgba(247,81,94,0.18); }
.check-value.warn { color:var(--yellow); background:rgba(251,191,36,0.08); border-color:rgba(251,191,36,0.18); }

/* ── METRIC BLOCKS ─────────────────────────────── */
.metric-block {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px;
}
.metric-title {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  color: var(--t3); text-transform: uppercase; margin-bottom: 18px;
}
.metric-row { display:flex; align-items:center; gap:14px; margin-bottom:13px; }
.metric-name { font-size:12px; font-weight:600; color:var(--t2); width:170px; flex-shrink:0; }
.metric-bar-wrap { flex:1; height:4px; background:rgba(255,255,255,0.05); border-radius:2px; overflow:hidden; }
.metric-bar-fill { height:100%; border-radius:2px; transition:width 1.3s var(--spring); }
.metric-val { font-family:var(--mono); font-size:12px; color:var(--t2); width:38px; text-align:right; flex-shrink:0; }

/* ── SECTION LABEL ─────────────────────────────── */
.section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 3px; color: var(--t3);
  text-transform: uppercase; margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::after { content:''; flex:1; height:1px; background:var(--border); }

/* ── AI BLOCK ──────────────────────────────────── */
.ai-block {
  background: var(--card); border: 1px solid rgba(198,253,79,0.15);
  border-radius: var(--r); margin-top: 14px;
  overflow: hidden; position: relative;
}
.ai-block::before {
  content: ''; position: absolute; top: -100px; right: -80px;
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(198,253,79,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.ai-block-head {
  padding: 20px 26px; border-bottom: 1px solid rgba(198,253,79,0.1);
  background: linear-gradient(90deg, rgba(198,253,79,0.06) 0%, transparent 60%);
  display: flex; align-items: center; gap: 16px;
}
.ai-head-left { display: flex; align-items: center; gap: 16px; flex: 1; }
.ai-glyph {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: rgba(198,253,79,0.1); border: 1px solid rgba(198,253,79,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--lime);
  animation: glyphSpin 5s ease-in-out infinite;
}
@keyframes glyphSpin { 0%,100%{transform:scale(1) rotate(0deg)} 50%{transform:scale(1.1) rotate(180deg)} }
.ai-title { font-size: 15px; font-weight: 700; color: var(--t1); }
.ai-sub   { font-size: 12px; color: var(--t3); margin-top: 2px; }
.ai-chip {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  color: var(--lime); background: var(--lime-g);
  border: 1px solid rgba(198,253,79,0.25);
  padding: 5px 13px; border-radius: 50px; flex-shrink: 0;
}
.ai-block-body { padding: 26px; }

.ai-thinking { display:flex; align-items:center; gap:10px; color:var(--t3); font-size:13px; }
.td {
  width:7px; height:7px; border-radius:50%;
  background:var(--lime); opacity:0;
  animation: tdBounce 1.4s ease-in-out infinite;
}
.td:nth-child(2){ animation-delay:.2s; }
.td:nth-child(3){ animation-delay:.4s; }
@keyframes tdBounce { 0%,100%{opacity:.15;transform:translateY(0)} 50%{opacity:1;transform:translateY(-5px)} }
.think-text { margin-left:4px; }

.rec-priority { margin-bottom: 26px; }
.rec-priority-title {
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.rec-priority-title::before { content:''; width:6px; height:6px; border-radius:50%; flex-shrink:0; }
.rec-priority-title.critical    { color:var(--red); }
.rec-priority-title.critical::before    { background:var(--red);    box-shadow:0 0 8px var(--red); }
.rec-priority-title.important   { color:var(--yellow); }
.rec-priority-title.important::before   { background:var(--yellow); box-shadow:0 0 8px var(--yellow); }
.rec-priority-title.recommended { color:var(--lime); }
.rec-priority-title.recommended::before { background:var(--lime);   box-shadow:0 0 8px var(--lime); }

.rec-item {
  display:flex; gap:16px; margin-bottom:10px;
  padding:15px 18px; border-radius:var(--r-sm);
  border:1px solid var(--border); background:rgba(255,255,255,0.02);
  transition:all .22s var(--ease);
}
.rec-item:hover { background:rgba(255,255,255,0.04); border-color:var(--border2); transform:translateX(5px); }
.rec-num { font-family:var(--display); font-size:22px; font-weight:800; opacity:.1; width:28px; flex-shrink:0; transition:opacity .2s; }
.rec-item:hover .rec-num { opacity:.4; }
.rec-body { flex:1; }
.rec-title { font-size:14px; font-weight:700; margin-bottom:6px; color:var(--t1); }
.rec-desc  { font-size:13px; color:var(--t2); line-height:1.65; }
.rec-impact {
  display:inline-block; margin-top:9px;
  font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
  padding:3px 11px; border-radius:50px; border:1px solid currentColor;
}
.impact-high   { color:var(--red);    background:rgba(247,81,94,0.08); }
.impact-medium { color:var(--yellow); background:rgba(251,191,36,0.08); }
.impact-low    { color:var(--lime);   background:var(--lime-g); }

.rec-title-row { display:flex; align-items:center; gap:8px; margin-bottom:6px; flex-wrap:wrap; }
.rec-title-row .rec-title { margin-bottom:0; }
.rec-effort {
  font-size:10px; font-weight:700; letter-spacing:1.2px; text-transform:uppercase;
  padding:2px 9px; border-radius:50px; border:1px solid currentColor;
  flex-shrink:0; white-space:nowrap;
}
.rec-code {
  margin-top:10px;
  background:rgba(0,0,0,0.4); border:1px solid var(--border2);
  border-radius:var(--r-sm); padding:10px 14px;
  font-family:'Courier New', monospace; font-size:12px;
  color:var(--lime); line-height:1.6; white-space:pre-wrap;
  word-break:break-all; overflow-x:auto;
}

/* AI rec summary block */
.rec-summary-block {
  display:flex; align-items:flex-start; gap:12px;
  margin-bottom:22px; padding:14px 18px;
  background:rgba(163,230,53,0.05); border:1px solid rgba(163,230,53,0.2);
  border-radius:var(--r-sm);
}
.rsb-icon { font-size:20px; flex-shrink:0; margin-top:1px; }
.rsb-text { font-size:13px; color:var(--t2); line-height:1.65; margin:0; }
.rsb-text strong { color:var(--t1); }

/* ── FOOTER ────────────────────────────────────── */
.site-footer {
  text-align:center; padding:24px;
  font-size:12px; color:var(--t3); letter-spacing:.5px;
  border-top:1px solid var(--border);
  position:relative; z-index:2;
  display:flex; justify-content:center; align-items:center; gap:16px;
}

/* ── UTILS ─────────────────────────────────────── */
.hidden { display:none !important; }
::-webkit-scrollbar { width:5px; height:5px; }
::-webkit-scrollbar-track { background:var(--void); }
::-webkit-scrollbar-thumb { background:rgba(255,255,255,0.08); border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background:rgba(255,255,255,0.16); }
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
.fade-in { animation: fadeUp .5s var(--spring) both; }
.typewriter { overflow:hidden; white-space:pre-wrap; }

/* ══════════════════════════════════════════════════
   VOICE INTERFACE
   ══════════════════════════════════════════════════ */

/* ── Wake Word Indicator ────────────────────────── */
.wake-indicator {
  position: fixed; bottom: 104px; right: 28px; z-index: 899;
  display: flex; align-items: center; gap: 7px;
  background: rgba(6,4,15,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px; padding: 6px 14px 6px 10px;
  opacity: 0; pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  backdrop-filter: blur(12px);
}
.wake-indicator.wake--on {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.wi-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  animation: wiBlink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes wiBlink { 0%,100%{opacity:1} 50%{opacity:0.25} }
.wi-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px;
  color: var(--t3); white-space: nowrap; text-transform: uppercase;
}

/* ── Floating Action Button ─────────────────────── */
.voice-fab {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--lime); color: #0a0a0a;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(198,253,79,0.45), 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease);
  overflow: visible;
}
.voice-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(198,253,79,0.6), 0 4px 12px rgba(0,0,0,0.4);
}
.voice-fab:active { transform: scale(0.95); }

/* Pulse rings on FAB */
.vfab-rings { position: absolute; inset: 0; border-radius: 50%; pointer-events: none; }
.vfab-ring {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(198,253,79,0.4);
  animation: fabPulse 2.4s ease-out infinite;
}
.vfab-ring.r1 { inset: -8px;  animation-delay: 0s; }
.vfab-ring.r2 { inset: -18px; animation-delay: 0.8s; }
@keyframes fabPulse {
  0%   { opacity: 0.7; transform: scale(0.85); }
  100% { opacity: 0;   transform: scale(1.4); }
}

/* FAB wake-active ring */
.voice-fab.fab--wake::before {
  content: '';
  position: absolute; inset: -4px; border-radius: 50%;
  border: 1.5px solid rgba(198,253,79,0.35);
  animation: fabPulse 2.4s ease-out infinite;
}

/* Mic ↔ X icon swap */
.vfab-mic, .vfab-close { position: absolute; transition: all 0.3s var(--spring); }
.vfab-close { opacity: 0; transform: rotate(-90deg) scale(0.5); }
.voice-fab.fab--active .vfab-mic  { opacity: 0; transform: rotate(90deg) scale(0.5); }
.voice-fab.fab--active .vfab-close { opacity: 1; transform: rotate(0deg) scale(1); }
.voice-fab.fab--active { background: var(--void2); color: var(--lime); border: 1.5px solid rgba(198,253,79,0.3); }

/* ── Overlay container ──────────────────────────── */
.voice-overlay {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(6,4,15,0.92);
  backdrop-filter: blur(24px) saturate(1.5);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.voice-overlay.vo--open {
  opacity: 1; pointer-events: auto;
}

/* Canvas waves — absolute behind everything */
.vo-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* ── Top bar ────────────────────────────────────── */
.vo-topbar {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(6,4,15,0.6) 0%, transparent 100%);
  z-index: 2;
}
.vo-brand {
  font-family: var(--display); font-size: 17px; font-weight: 800;
  color: var(--lime); letter-spacing: -0.5px;
}
.vo-brand span { opacity: 0.45; }
.vo-x {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: var(--t2); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s var(--ease);
}
.vo-x:hover { background: rgba(255,255,255,0.12); color: var(--white); }

/* ── Centre content ─────────────────────────────── */
.vo-center {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
  padding: 20px;
  animation: fadeUp 0.5s var(--spring) both;
}

/* ── Orb ────────────────────────────────────────── */
.vo-orb {
  position: relative; width: 130px; height: 130px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--spring);
}
.vo-orb-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s var(--ease);
}
.vo-orb--idle .vo-orb-ring    { border-color: rgba(198,253,79,0.2); }
.vo-orb--listening .vo-orb-ring { border-color: rgba(198,253,79,0.5); }
.vo-orb--speaking .vo-orb-ring  { border-color: rgba(56,189,248,0.5); }

.vo-orb-ring.r1 {
  width: 84px; height: 84px;
  animation: orbRing 3s linear infinite;
}
.vo-orb-ring.r2 {
  width: 108px; height: 108px;
  animation: orbRing 5s linear infinite reverse;
}
.vo-orb-ring.r3 {
  width: 130px; height: 130px;
  animation: orbRing 8s linear infinite;
}
@keyframes orbRing { to { transform: translate(-50%,-50%) rotate(360deg); } }

.vo-orb--listening .r1 { animation-duration: 1.2s; }
.vo-orb--listening .r2 { animation-duration: 2s; }
.vo-orb--listening .r3 { animation-duration: 3.5s; }
.vo-orb--speaking  .r1 { animation-duration: 0.9s; }
.vo-orb--speaking  .r2 { animation-duration: 1.6s; }
.vo-orb--speaking  .r3 { animation-duration: 2.8s; }

.vo-orb-core {
  width: 68px; height: 68px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(198,253,79,0.2) 0%, rgba(198,253,79,0.06) 60%, transparent 100%);
  border: 1.5px solid rgba(198,253,79,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 28px; font-weight: 800;
  color: var(--lime);
  box-shadow: 0 0 40px rgba(198,253,79,0.2), inset 0 0 20px rgba(198,253,79,0.06);
  animation: coreBreath 3s ease-in-out infinite;
  transition: all 0.4s var(--ease);
}
@keyframes coreBreath {
  0%,100% { transform: scale(1); box-shadow: 0 0 40px rgba(198,253,79,0.2), inset 0 0 20px rgba(198,253,79,0.06); }
  50%     { transform: scale(1.07); box-shadow: 0 0 60px rgba(198,253,79,0.35), inset 0 0 30px rgba(198,253,79,0.1); }
}
.vo-orb--listening .vo-orb-core {
  animation: coreListening 0.8s ease-in-out infinite;
  border-color: rgba(198,253,79,0.7);
  box-shadow: 0 0 60px rgba(198,253,79,0.45), inset 0 0 30px rgba(198,253,79,0.12);
}
@keyframes coreListening {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.12); }
}
.vo-orb--speaking .vo-orb-core {
  color: #38bdf8;
  border-color: rgba(56,189,248,0.6);
  background: radial-gradient(circle at 35% 35%, rgba(56,189,248,0.18) 0%, rgba(56,189,248,0.05) 60%, transparent 100%);
  box-shadow: 0 0 60px rgba(56,189,248,0.35), inset 0 0 30px rgba(56,189,248,0.1);
  animation: coreSpeaking 0.5s ease-in-out infinite;
}
@keyframes coreSpeaking {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.09); }
}

/* ── Status text ────────────────────────────────── */
.vo-status {
  font-family: var(--mono); font-size: 13px; letter-spacing: 1.5px;
  color: var(--t2); text-transform: uppercase;
  transition: color 0.3s;
  min-height: 20px; text-align: center;
}

/* ── Transcript pill ────────────────────────────── */
.vo-transcript {
  min-height: 28px; min-width: 200px; max-width: 520px;
  text-align: center; font-size: 15px; font-weight: 500; color: var(--lime);
  background: rgba(198,253,79,0.07); border: 1px solid rgba(198,253,79,0.18);
  border-radius: 50px; padding: 6px 22px;
  transition: all 0.3s var(--ease);
  font-style: italic; letter-spacing: 0.2px;
}
.vo-transcript:empty { background: transparent; border-color: transparent; }

/* ── Response text ──────────────────────────────── */
.vo-response {
  max-width: 500px; text-align: center;
  font-size: 14px; line-height: 1.7; color: var(--t2);
  min-height: 22px;
  transition: all 0.3s;
}

/* ── Mic button ─────────────────────────────────── */
.vo-mic-btn {
  position: relative;
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(198,253,79,0.1);
  border: 1.5px solid rgba(198,253,79,0.35);
  color: var(--lime); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease);
}
.vo-mic-btn:hover {
  background: rgba(198,253,79,0.18);
  border-color: rgba(198,253,79,0.6);
  transform: scale(1.07);
  box-shadow: 0 0 32px rgba(198,253,79,0.3);
}
.vo-mic-btn:active { transform: scale(0.95); }
.vo-mic-btn.active {
  background: var(--lime); color: #0a0a0a;
  border-color: var(--lime);
  box-shadow: 0 0 48px rgba(198,253,79,0.55);
  animation: micPulse 1s ease-in-out infinite;
}
@keyframes micPulse {
  0%,100% { box-shadow: 0 0 48px rgba(198,253,79,0.55); }
  50%     { box-shadow: 0 0 72px rgba(198,253,79,0.8); }
}
.vo-mic-glow {
  position: absolute; inset: -12px; border-radius: 50%;
  background: rgba(198,253,79,0.1);
  animation: micGlow 2s ease-in-out infinite;
  pointer-events: none;
}
.vo-mic-btn.active .vo-mic-glow {
  animation: micGlowActive 0.8s ease-in-out infinite;
}
@keyframes micGlow       { 0%,100%{opacity:0} 50%{opacity:1} }
@keyframes micGlowActive { 0%,100%{opacity:0.6;transform:scale(1)} 50%{opacity:0;transform:scale(1.5)} }

/* ── Hint chips ─────────────────────────────────── */
.vo-hints {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  max-width: 480px;
}
.vo-hint-chip {
  font-size: 12px; color: var(--t3);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px; padding: 6px 16px;
  cursor: pointer; transition: all 0.2s var(--ease);
  font-family: var(--mono); letter-spacing: 0.3px;
}
.vo-hint-chip:hover {
  color: var(--lime); border-color: rgba(198,253,79,0.3);
  background: rgba(198,253,79,0.07);
}

/* ══════════════════════════════════════════════════
   AI SETTINGS MODAL
   ══════════════════════════════════════════════════ */

/* Header AI button */
.sh-btn--ai {
  display: flex; align-items: center; gap: 7px;
}
.ai-status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--t3); flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.ai-status-dot.connected {
  background: var(--lime);
  box-shadow: 0 0 8px rgba(198,253,79,0.7);
  animation: blip 2s ease-in-out infinite;
}

/* Backdrop */
.ai-modal-backdrop {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(6,4,15,0.7);
  backdrop-filter: blur(6px);
  animation: fadeIn .2s var(--ease);
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* Modal */
.ai-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  z-index: 501; width: 540px; max-width: calc(100vw - 32px);
  background: rgba(13,10,26,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(198,253,79,0.06);
  animation: modalIn .3s var(--spring);
  overflow: hidden;
}
@keyframes modalIn {
  from { opacity:0; transform:translate(-50%,-50%) scale(0.93); }
  to   { opacity:1; transform:translate(-50%,-50%) scale(1); }
}

.aim-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(135deg, rgba(198,253,79,0.05) 0%, transparent 60%);
}
.aim-title-wrap { display: flex; align-items: center; gap: 14px; }
.aim-icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: rgba(198,253,79,0.1); border: 1px solid rgba(198,253,79,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--lime);
}
.aim-title { font-size: 16px; font-weight: 700; color: var(--t1); }
.aim-sub   { font-size: 12px; color: var(--t3); margin-top: 2px; }
.aim-close {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: var(--t3); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.aim-close:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.aim-body { padding: 22px 24px 24px; }

.aim-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  color: var(--t3); text-transform: uppercase; margin-bottom: 10px;
}

/* Provider cards */
.aim-providers {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin-bottom: 4px;
}
.aim-provider-card {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 12px 14px;
  cursor: pointer; transition: all .22s var(--ease);
  background: rgba(255,255,255,0.03);
}
.aim-provider-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}
.aim-provider-card.selected {
  border-color: rgba(198,253,79,0.45);
  background: rgba(198,253,79,0.07);
  box-shadow: 0 0 0 1px rgba(198,253,79,0.2) inset;
}
.apc-top {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 5px;
}
.apc-name {
  font-size: 13px; font-weight: 700; color: var(--t1);
}
.apc-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  padding: 2px 8px; border-radius: 50px; border: 1px solid;
}
.apc-badge.free { color: var(--lime); border-color: rgba(198,253,79,0.3); background: rgba(198,253,79,0.08); }
.apc-badge.paid { color: var(--yellow); border-color: rgba(251,191,36,0.3); background: rgba(251,191,36,0.08); }
.apc-desc {
  font-size: 11px; color: var(--t3); line-height: 1.55;
}

/* Key input */
.aim-key-wrap {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; overflow: hidden;
  transition: border-color .2s;
}
.aim-key-wrap:focus-within {
  border-color: rgba(198,253,79,0.4);
  box-shadow: 0 0 0 3px rgba(198,253,79,0.07);
}
.aim-key-input {
  flex: 1; background: transparent; border: none; outline: none;
  font-family: var(--mono); font-size: 12px; color: var(--t1);
  padding: 12px 14px; caret-color: var(--lime);
  letter-spacing: 0.5px;
}
.aim-key-input::placeholder { color: rgba(255,255,255,0.2); letter-spacing: 0; }
.aim-eye {
  padding: 0 14px; background: transparent; border: none;
  color: var(--t3); cursor: pointer; height: 100%;
  display: flex; align-items: center;
  transition: color .2s;
}
.aim-eye:hover { color: var(--lime); }

/* Status */
.aim-status {
  margin-top: 10px; min-height: 22px;
  font-size: 12px; line-height: 1.5;
  font-family: var(--mono);
  transition: all .2s;
}
.aim-status.ok   { color: var(--lime); }
.aim-status.err  { color: var(--red);  }
.aim-status.info { color: var(--t3);   }

/* Actions */
.aim-actions {
  display: flex; gap: 10px; margin-top: 16px;
}
.aim-btn {
  flex: 1; padding: 11px 16px; border-radius: 10px;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .22s var(--ease);
  border: 1px solid;
}
.aim-btn--test {
  background: transparent; color: var(--t2);
  border-color: rgba(255,255,255,0.12);
}
.aim-btn--test:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white); border-color: rgba(255,255,255,0.2);
}
.aim-btn--save {
  background: var(--lime); color: #0a0a0a;
  border-color: var(--lime);
}
.aim-btn--save:hover {
  background: var(--lime2);
  box-shadow: 0 4px 20px rgba(198,253,79,0.4);
}
.aim-btn:disabled { opacity: .4; cursor: not-allowed; }

/* Current config bar */
.aim-current {
  margin-top: 14px; padding: 10px 14px;
  border-radius: 8px; font-size: 12px; font-family: var(--mono);
  color: var(--t3); background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  display: none;
}
.aim-current.visible { display: block; }

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display:none; }
  .hero-left { padding: 100px 0 60px; }
  .bento-row { grid-template-columns: 1fr; }
  .cat-bento { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 700px) {
  .hero { padding: 0 20px; }
  .h1-thin { font-size: 36px; }
  .h1-bold { font-size: 52px; letter-spacing:-2px; }
  .results-page { padding: 20px 16px 60px; }
  .cat-bento { grid-template-columns: repeat(2,1fr); }
  .checks-grid { grid-template-columns: 1fr; }
  .tab-btn { padding:9px 12px; font-size:11px; }
}
