/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #060e06;
  --surface: #0a1a0a;
  --surface-2: #0f2410;
  --green: #00e676;
  --green-dim: #00cc5e;
  --green-glow: rgba(0, 230, 118, 0.15);
  --amber: #ffab00;
  --amber-dim: #cc8800;
  --text: #e8f5e9;
  --text-muted: #7aaa7a;
  --border: rgba(0, 230, 118, 0.12);
  --terminal-bg: #020802;
  --terminal-line: rgba(0, 230, 118, 0.08);
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,230,118,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0,230,118,0.03) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #061006 100%);
  overflow: hidden;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,230,118,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,118,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-top { width: 400px; height: 400px; background: rgba(0,230,118,0.06); top: -100px; right: 20%; }
.glow-bottom { width: 300px; height: 300px; background: rgba(0,230,118,0.04); bottom: 10%; right: 10%; }

/* Climbing bars visualization */
.climbing-bars {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding: 80px 60px 80px 20px;
}

.bar {
  width: 8px;
  background: linear-gradient(to top, var(--green) 0%, rgba(0,230,118,0.3) 100%);
  border-radius: 4px 4px 0 0;
  position: relative;
  opacity: 0.8;
  box-shadow: 0 0 20px rgba(0,230,118,0.3);
}
.bar::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
}
.bar-1 { height: 20%; }
.bar-2 { height: 35%; }
.bar-3 { height: 50%; }
.bar-4 { height: 65%; }
.bar-5 { height: 80%; }
.bar-6 { height: 92%; }
.bar-7 { height: 70%; }

.status-row {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-weight: 500;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 80px 80px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 28px;
}

/* OUTCOMES */
.outcomes {
  padding: 120px 80px;
  position: relative;
}

.outcomes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.outcomes-header {
  margin-bottom: 72px;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 16px;
}

.outcomes-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.outcome-card {
  background: var(--surface);
  padding: 40px 36px;
  transition: background 0.3s ease;
}
.outcome-card:hover { background: var(--surface-2); }

.outcome-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--green-glow);
}

.outcome-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 12px;
}

.outcome-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* PROCESS */
.process {
  padding: 120px 80px;
  background: var(--surface);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.process-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--green);
  opacity: 0.6;
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Terminal card */
.terminal-card {
  background: var(--terminal-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  box-shadow: 0 0 60px rgba(0,230,118,0.05);
}

.terminal-header {
  background: rgba(0,230,118,0.06);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: var(--green); }

.terminal-title {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.terminal-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.log-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(0,230,118,0.7);
  font-size: 0.78rem;
}

.log-time { color: rgba(255,255,255,0.2); min-width: 36px; }
.log-ok { color: var(--green); font-weight: bold; }
.log-warn { color: var(--amber); font-weight: bold; }
.log-active { color: var(--green); }
.log-active-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-top: 5px;
  box-shadow: 0 0 6px var(--green);
  animation: pulse 1.5s infinite;
}
.cursor {
  animation: blink 1s step-end infinite;
  color: var(--green);
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* MANIFESTO */
.manifesto {
  padding: 120px 80px;
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.manifesto-inner { max-width: 860px; margin: 0 auto; }

.manifesto-label { color: rgba(255,171,0,0.6); }

.manifesto-quote {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.65;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 48px;
  border-left: 2px solid var(--border);
  padding-left: 32px;
}

.manifesto-answer {
  color: var(--text);
  font-style: normal;
  font-weight: 500;
  border-left-color: var(--green);
}

.manifesto-divider {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

/* CLOSING */
.closing {
  padding: 120px 80px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.closing::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,230,118,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
  max-width: 900px;
}

.path-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.path-line {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--border), var(--green), var(--border));
}

.path-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.path-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.path-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.path-ring-glow { border-color: var(--green); box-shadow: 0 0 12px var(--green); }
.path-inner-active { background: var(--green); box-shadow: 0 0 8px var(--green); }

.closing-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.closing-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
}

/* SEO AUDIT SECTION */
.audit-section {
  padding: 120px 80px;
  position: relative;
  background: var(--surface);
}
.audit-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.audit-inner { max-width: 760px; margin: 0 auto; }

.audit-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.audit-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.audit-form { margin-bottom: 0; }

.audit-input-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.audit-input {
  flex: 1;
  padding: 14px 18px;
  background: var(--terminal-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.audit-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,230,118,0.08); }
.audit-input::placeholder { color: var(--text-muted); opacity: 0.7; }

.audit-btn {
  padding: 14px 28px;
  background: var(--green);
  color: #060e06;
  border: none;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 140px;
  justify-content: center;
}
.audit-btn:hover:not(:disabled) { background: var(--green-dim); }
.audit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.spinning { animation: spin 0.8s linear infinite; display: inline-flex !important; }
@keyframes spin { to { transform: rotate(360deg); } }

.audit-error {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #ff6b6b;
  padding: 10px 14px;
  background: rgba(255,107,107,0.08);
  border: 1px solid rgba(255,107,107,0.2);
  border-radius: 6px;
}

/* Results */
.audit-results { margin-top: 48px; }

.audit-results-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.score-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid currentColor;
  flex-shrink: 0;
  line-height: 1;
}
.score-circle.score-good { color: var(--green); box-shadow: 0 0 24px rgba(0,230,118,0.2); }
.score-circle.score-ok { color: var(--amber); box-shadow: 0 0 24px rgba(255,171,0,0.15); }
.score-circle.score-bad { color: #ff6b6b; box-shadow: 0 0 24px rgba(255,107,107,0.15); }

.score-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: currentColor;
  line-height: 1;
}
.score-label { font-size: 0.65rem; color: var(--text-muted); margin-top: 2px; }

.score-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
}
.sb-pass { color: var(--green); }
.sb-warn { color: var(--amber); }
.sb-fail { color: #ff6b6b; }

.audit-url-label { font-size: 0.85rem; color: var(--text-muted); font-family: 'Courier New', monospace; }

/* Check rows */
.audit-checks { display: flex; flex-direction: column; gap: 2px; }

.check-row {
  background: var(--terminal-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
  transition: background 0.2s;
}
.check-row + .check-row { margin-top: 6px; }
.check-row:hover { background: rgba(0,230,118,0.03); }

.check-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-pass { background: rgba(0,230,118,0.15); color: var(--green); }
.check-warn { background: rgba(255,171,0,0.15); color: var(--amber); }
.check-fail { background: rgba(255,107,107,0.15); color: #ff6b6b; }

.check-text { display: flex; flex-direction: column; gap: 2px; }
.check-label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.check-value { font-size: 0.8rem; color: var(--text-muted); font-family: 'Courier New', monospace; }

.check-fix {
  margin-top: 10px;
  margin-left: 38px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding: 8px 12px;
  background: rgba(255,171,0,0.05);
  border-left: 2px solid rgba(255,171,0,0.3);
  border-radius: 0 4px 4px 0;
}
.check-fail .check-fix {
  background: rgba(255,107,107,0.05);
  border-left-color: rgba(255,107,107,0.3);
}

/* Domain files row */
.audit-domain-row { margin-top: 20px; }
.domain-files {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.83rem;
  flex-wrap: wrap;
}
.domain-file-label { color: var(--text-muted); font-weight: 600; }
.domain-file-item { font-family: 'Courier New', monospace; }
.df-pass { color: var(--green); }
.df-fail { color: #ff6b6b; }
.domain-fix {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  padding-left: 4px;
}

/* Audit CTA */
.audit-cta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.audit-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.audit-cta-text {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  max-width: 480px;
  line-height: 1.5;
}
.audit-cta-btn {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.audit-cta-btn:hover { background: var(--green); color: #060e06; }

/* Responsive */
@media (max-width: 900px) {
  .audit-section { padding: 80px 32px; }
  .audit-input-row { flex-direction: column; }
  .audit-btn { width: 100%; }
  .audit-results-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .audit-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* AIO CHECK SECTION — Free landing page lead magnet */
.aio-check-section {
  padding: 120px 80px;
  position: relative;
  background: var(--bg);
}
.aio-check-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.aio-check-inner { max-width: 760px; margin: 0 auto; }

.aio-check-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.aio-check-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.aio-check-inputs {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: wrap;
}

.aio-check-input {
  flex: 1;
  min-width: 160px;
  padding: 14px 18px;
  background: var(--terminal-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.aio-check-input-query { flex: 2; }
.aio-check-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,230,118,0.08); }
.aio-check-input::placeholder { color: var(--text-muted); opacity: 0.7; }

.aio-check-btn {
  padding: 14px 28px;
  background: var(--green);
  color: #060e06;
  border: none;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 130px;
  justify-content: center;
}
.aio-check-btn:hover:not(:disabled) { background: var(--green-dim); }
.aio-check-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.aio-check-error {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #ff6b6b;
  padding: 10px 14px;
  background: rgba(255,107,107,0.08);
  border: 1px solid rgba(255,107,107,0.2);
  border-radius: 6px;
}

/* Results */
.aio-check-results { margin-top: 48px; }

/* Verdict card */
.aio-verdict-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.aio-verdict-yes {
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.3);
}
.aio-verdict-no {
  background: rgba(255,171,0,0.06);
  border: 1px solid rgba(255,171,0,0.25);
}

.aio-verdict-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}
.aio-verdict-yes .aio-verdict-icon {
  background: rgba(0,230,118,0.15);
  color: var(--green);
}
.aio-verdict-no .aio-verdict-icon {
  background: rgba(255,171,0,0.12);
  color: var(--amber);
  font-size: 1.8rem;
}

.aio-verdict-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.aio-verdict-yes .aio-verdict-text h3 { color: var(--green); }
.aio-verdict-no .aio-verdict-text h3 { color: var(--amber); }
.aio-verdict-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; }

/* Citation status badges */
.aio-cited-badge,
.aio-not-cited-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.aio-cited-badge {
  background: rgba(0,230,118,0.07);
  border: 1px solid rgba(0,230,118,0.2);
  color: var(--text);
}
.aio-not-cited-badge {
  background: rgba(255,107,107,0.07);
  border: 1px solid rgba(255,107,107,0.2);
  color: var(--text);
}
.aio-cited-icon { font-size: 1.1rem; color: var(--green); }
.aio-not-cited-icon { font-size: 1rem; color: #ff6b6b; }

/* Sources / competitors list */
.aio-sources-block {
  background: var(--terminal-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
.aio-sources-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.aio-sources-list { display: flex; flex-direction: column; gap: 8px; }

.aio-source-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  background: rgba(0,230,118,0.02);
  border: 1px solid transparent;
  transition: background 0.15s;
}
.aio-source-row:hover { background: rgba(0,230,118,0.05); }
.aio-source-yours {
  background: rgba(0,230,118,0.08);
  border-color: rgba(0,230,118,0.2);
}

.aio-source-pos {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aio-source-favicon { border-radius: 2px; flex-shrink: 0; }
.aio-source-domain { flex: 1; color: var(--text); font-family: 'Courier New', monospace; }
.aio-source-you-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  background: rgba(0,230,118,0.12);
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* CTA */
.aio-check-cta {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.aio-check-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.aio-check-cta-text {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  max-width: 480px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .aio-check-section { padding: 80px 32px; }
  .aio-check-inputs { flex-direction: column; }
  .aio-check-btn { width: 100%; }
  .aio-check-cta-inner { flex-direction: column; align-items: flex-start; }
  .aio-verdict-card { flex-direction: column; gap: 12px; }
}

/* FOOTER */
.site-footer {
  padding: 48px 80px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--text);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FEATURE SECTIONS — Rank Alerts & AIO Presence */
.feature-section {
  padding: 120px 80px;
  position: relative;
  background: var(--surface);
}
.feature-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.feature-inner { max-width: 1100px; margin: 0 auto; }
.feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.feature-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.feature-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
}
.fc-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-card > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.fc-demo { display: flex; flex-direction: column; gap: 8px; }

/* Drop alert rows */
.drop-alert-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--terminal-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.82rem;
  font-family: 'Courier New', monospace;
}
.kw-label { color: var(--text); flex: 1; }
.drop-arrow { color: var(--amber); }
.drop-badge {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(229,62,62,0.15);
  color: #e53e3e;
}

/* Rewrite comparison */
.rewrite-comparison {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rc-col { flex: 1; }
.rc-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.rc-original .rc-label { color: var(--text-muted); }
.rc-draft .rc-label { color: var(--green); }
.rc-title {
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 4px;
  font-weight: 600;
}
.rc-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.rc-arrow { font-size: 1.2rem; color: var(--green); flex-shrink: 0; }

/* Digest preview */
.digest-preview {
  background: var(--terminal-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
}
.digest-header {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  font-size: 0.8rem;
}
.digest-row { padding: 4px 0; }
.digest-drop { color: #e53e3e; }
.digest-aio { color: var(--amber); }
.digest-cta {
  display: inline-block;
  margin-top: 10px;
  color: var(--green);
  text-decoration: none;
  font-size: 0.8rem;
}

/* Feature CTA */
.feature-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.feature-cta p { font-size: 0.9rem; color: var(--text-muted); }
.cta-btn-secondary {
  display: inline-block;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.cta-btn-secondary:hover { background: var(--green); color: #060e06; }

/* AIO SECTION */
.aio-section {
  padding: 120px 80px;
  position: relative;
  background: var(--bg);
}
.aio-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.aio-inner { max-width: 1100px; margin: 0 auto; }
.aio-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.aio-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.aio-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}
.aio-badge {
  padding: 8px 18px;
  border: 1px solid rgba(255,171,0,0.4);
  color: var(--amber);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* AIO Dashboard */
.aio-dashboard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.aio-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}
.aio-stat {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.aio-stat:last-child { border-right: none; }
.aio-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--green);
  line-height: 1;
}
.aio-stat-num.aio-down { color: #e53e3e; }
.aio-stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.aio-stat-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Keyword table */
.aio-keyword-table {
  display: flex;
  flex-direction: column;
}
.aio-table-header,
.aio-table-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 80px 100px 1.2fr;
  gap: 12px;
  padding: 14px 28px;
  align-items: center;
  font-size: 0.82rem;
}
.aio-table-header {
  background: rgba(0,230,118,0.04);
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}
.aio-table-row { border-bottom: 1px solid var(--border); }
.aio-table-row:last-child { border-bottom: none; }
.aio-table-row span:first-child { color: var(--text); font-family: 'Courier New', monospace; font-size: 0.8rem; }

/* Status badges */
.aio-status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.aio-in-badge { background: rgba(0,230,118,0.15); color: var(--green); }
.aio-lost-badge { background: rgba(229,62,62,0.15); color: #e53e3e; }
.aio-never-badge { background: rgba(255,171,0,0.12); color: var(--amber); }

.aio-alert-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,171,0,0.06);
  border: 1px solid rgba(255,171,0,0.2);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--amber);
}

/* WAITLIST — hero inline form */
.hero-waitlist-form {
  margin-top: 32px;
  max-width: 480px;
}

/* WAITLIST — bottom section */
.waitlist-section {
  padding: 120px 80px;
  position: relative;
  background: var(--bg);
  text-align: center;
}
.waitlist-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.waitlist-inner {
  max-width: 640px;
  margin: 0 auto;
}
.waitlist-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.waitlist-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Shared input row (used in both hero and bottom forms) */
.waitlist-input-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.waitlist-input {
  flex: 1;
  padding: 14px 18px;
  background: var(--terminal-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,230,118,0.08); }
.waitlist-input::placeholder { color: var(--text-muted); opacity: 0.7; }
.waitlist-btn {
  padding: 14px 28px;
  background: var(--green);
  color: #060e06;
  border: none;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 160px;
  justify-content: center;
}
.waitlist-btn:hover:not(:disabled) { background: var(--green-dim); }
.waitlist-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.waitlist-error {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #ff6b6b;
  padding: 10px 14px;
  background: rgba(255,107,107,0.08);
  border: 1px solid rgba(255,107,107,0.2);
  border-radius: 6px;
  text-align: left;
}
.waitlist-success {
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.2px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-bg { width: 50%; }
  .hero-content { padding: 60px 32px; }
  .outcomes { padding: 80px 32px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; padding: 80px 32px; }
  .process-visual { display: none; }
  .manifesto { padding: 80px 32px; }
  .closing { padding: 80px 32px; }
  .closing-inner { grid-template-columns: 1fr; gap: 40px; }
  .path-graphic { flex-direction: row; }
  .path-line { width: 48px; height: 2px; }
  .site-footer { padding: 40px 32px; }
  .footer-inner { flex-direction: column; gap: 16px; }
  .waitlist-section { padding: 80px 32px; }
  .waitlist-input-row { flex-direction: column; }
  .waitlist-btn { min-width: unset; width: 100%; }
  .hero-waitlist-form { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 3rem; }
  .outcomes-header h2 { font-size: 2rem; }
  .process-header h2 { font-size: 2rem; }
  .closing-content h2 { font-size: 2rem; }
  .waitlist-title { font-size: 2rem; }
}