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

:root {
  --bg: #0d0d1a;
  --bg2: #12121f;
  --bg3: #1a1a2e;
  --yellow: #FFD700;
  --yellow-dim: rgba(255, 215, 0, 0.15);
  --pink: #FF2D87;
  --pink-dim: rgba(255, 45, 135, 0.15);
  --red: #FF3B3B;
  --red-dim: rgba(255, 59, 59, 0.15);
  --green: #00C853;
  --green-dim: rgba(0, 200, 83, 0.15);
  --orange: #FF8C00;
  --text: #F0F0F0;
  --text-muted: #8888a8;
  --border: rgba(255, 215, 0, 0.2);
  --border-pink: rgba(255, 45, 135, 0.3);
  --radius: 4px;
  --radius-lg: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, .mono { font-family: 'Space Mono', monospace; }
.display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; }

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(13, 13, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--yellow);
  text-decoration: none;
}

.nav-logo span { color: var(--pink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--yellow); }

.nav-cta {
  background: var(--pink) !important;
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.nav-cta:hover { background: #e0206e !important; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(255, 45, 135, 0.06) 0%, transparent 60%);
}

/* Crime tape */
.hero::after {
  content: 'CAUTION · SCAM DETECTED · DO NOT CONSUME · CAUTION · SCAM DETECTED · DO NOT CONSUME · CAUTION · SCAM DETECTED · DO NOT CONSUME ·';
  position: absolute;
  top: 90px;
  left: -20px;
  right: -20px;
  background: var(--yellow);
  color: #0d0d1a;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 0;
  transform: rotate(-1.5deg);
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
}

.hero-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--yellow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-eyebrow::before {
  content: '▶';
  color: var(--pink);
  font-size: 0.6rem;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--pink);
  display: block;
}

.hero h1 span {
  color: var(--yellow);
}

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

/* ─── EMAIL CAPTURE ─── */
.email-capture {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.email-capture input {
  flex: 1;
  min-width: 200px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.email-capture input:focus { border-color: var(--yellow); }
.email-capture input::placeholder { color: var(--text-muted); }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-proof span { display: flex; align-items: center; gap: 0.3rem; }

/* ─── GAUGE ─── */
.gauge-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.gauge-container::before {
  content: 'EVIDENCE #SD-001';
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--yellow);
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.gauge-label-top {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}

.gauge-svg-wrap {
  position: relative;
  width: 260px;
  height: 150px;
}

.gauge-svg {
  width: 100%;
  height: auto;
}

.gauge-score-display {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.gauge-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--red);
  transition: color 0.5s, transform 0.3s;
}

.gauge-number.score-c { color: var(--orange); }
.gauge-number.score-b { color: var(--yellow); }
.gauge-number.score-a { color: var(--green); }

.gauge-grade {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.gauge-cta-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

.gauge-cta-text strong { color: var(--yellow); font-style: normal; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--pink);
  color: white;
}

.btn-primary:hover {
  background: #e0206e;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 45, 135, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--yellow);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--yellow-dim);
  border-color: var(--yellow);
}

.btn-yellow {
  background: var(--yellow);
  color: #0d0d1a;
  font-weight: 700;
}

.btn-yellow:hover {
  background: #e6c200;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── SECTION STYLES ─── */
section { position: relative; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad { padding: 6rem 0; }

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--yellow);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before { content: '//'; color: var(--pink); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ─── HOW IT WORKS ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.step:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--yellow-dim);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.step h3 {
  font-family: 'Space Mono', monospace;
  font-size: 0.95rem;
  color: var(--yellow);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

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

/* ─── FEATURES GRID ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { border-color: rgba(255, 215, 0, 0.4); transform: translateY(-2px); }

.feature-card.pro-feature::before { background: var(--pink); }

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.badge-free { background: var(--yellow-dim); color: var(--yellow); border: 1px solid rgba(255,215,0,0.3); }
.badge-pro { background: var(--pink-dim); color: var(--pink); border: 1px solid rgba(255,45,135,0.3); }

.feature-icon { font-size: 1.8rem; margin-bottom: 0.75rem; display: block; }

.feature-card h3 {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

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

/* ─── ONBOARDING FLOW ─── */
.onboarding {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.onboarding::before {
  content: 'WELCOME PROTOCOL';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--yellow);
  letter-spacing: 0.15em;
  opacity: 0.5;
}

.onboarding-steps {
  display: flex;
  gap: 0;
  margin-top: 2rem;
}

.onboarding-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 1.5rem 1rem;
}

.onboarding-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--yellow);
  font-size: 1.2rem;
}

.onboarding-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow-dim);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.onboarding-step h4 {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.onboarding-step p { font-size: 0.8rem; color: var(--text-muted); }

/* ─── SCORE SECTION ─── */
.score-grades {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.score-grade {
  flex: 1;
  min-width: 150px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s;
}

.score-grade:hover { transform: translateY(-4px); }
.score-grade-d { border-top: 3px solid var(--red); }
.score-grade-c { border-top: 3px solid var(--orange); }
.score-grade-b { border-top: 3px solid var(--yellow); }
.score-grade-a { border-top: 3px solid var(--green); }

.grade-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.score-grade-d .grade-letter { color: var(--red); }
.score-grade-c .grade-letter { color: var(--orange); }
.score-grade-b .grade-letter { color: var(--yellow); }
.score-grade-a .grade-letter { color: var(--green); }

.grade-name {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

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

/* ─── KP STORY ─── */
.kp-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.kp-story-img {
  position: relative;
}

.kp-story-img img {
  width: 100%;
  border-radius: 8px;
  filter: grayscale(20%);
}

.kp-story-img::before {
  content: '';
  position: absolute;
  inset: -8px -8px 8px 8px;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  z-index: -1;
}

.kp-story-img::after {
  content: 'DETECTIVE KP';
  position: absolute;
  bottom: -1rem;
  left: 1rem;
  background: var(--yellow);
  color: #0d0d1a;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.75rem;
  font-weight: 700;
}

.kp-quote {
  border-left: 3px solid var(--pink);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s;
}

.pricing-card.featured {
  border-color: var(--pink);
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(255, 45, 135, 0.05) 100%);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--pink);
  color: white;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  text-transform: uppercase;
}

.pricing-tier {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--yellow);
  margin-bottom: 0.25rem;
}

.pricing-price sub {
  font-size: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-muted);
}

.pricing-price sup {
  font-size: 1.8rem;
  font-family: 'Bebas Neue', sans-serif;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.pricing-features { list-style: none; margin-bottom: 2rem; }

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pricing-features li:last-child { border-bottom: none; }

.check { color: var(--green); font-size: 0.8rem; flex-shrink: 0; margin-top: 0.15rem; }
.cross { color: var(--text-muted); font-size: 0.8rem; flex-shrink: 0; margin-top: 0.15rem; opacity: 0.4; }

/* ─── SHARE CARD ─── */
.share-card-demo {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--yellow);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  display: block;
}

.footer-logo span { color: var(--pink); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--yellow); }

.footer-small {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── DIVIDER ─── */
.tape-divider {
  width: 100%;
  height: 32px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  overflow: hidden;
  transform: rotate(-0.5deg);
  margin: 1rem 0;
}

.tape-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #0d0d1a;
  white-space: nowrap;
  animation: tape-scroll 20s linear infinite;
}

@keyframes tape-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── ALERT / NOTIFICATION ─── */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin: 1rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.alert-success { background: var(--green-dim); border: 1px solid rgba(0,200,83,0.3); color: var(--green); }
.alert-error { background: var(--red-dim); border: 1px solid rgba(255,59,59,0.3); color: var(--red); }
.alert-info { background: var(--yellow-dim); border: 1px solid rgba(255,215,0,0.3); color: var(--yellow); }

/* ─── AUTH PAGES ─── */
.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: 
    radial-gradient(ellipse 50% 60% at 50% -10%, rgba(255, 215, 0, 0.08) 0%, transparent 70%),
    var(--bg);
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
}

.auth-card::before {
  content: 'SECURE ACCESS';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--yellow);
  letter-spacing: 0.15em;
  opacity: 0.5;
}

.auth-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--yellow);
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.auth-logo span { color: var(--pink); }

.auth-title {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.auth-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ─── FORMS ─── */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--yellow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus { border-color: var(--yellow); }
.form-input::placeholder { color: var(--text-muted); opacity: 0.6; }
.form-input.error { border-color: var(--red); }

.form-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.form-divider::before, .form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-link {
  color: var(--yellow);
  text-decoration: none;
  font-size: 0.85rem;
}

.form-link:hover { text-decoration: underline; }

/* ─── APP SHELL ─── */
.app-layout {
  display: flex;
  min-height: 100vh;
  padding-top: 64px;
}

.sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  padding: 1.5rem 0;
  position: fixed;
  top: 64px;
  bottom: 0;
  left: 0;
  overflow-y: auto;
}

.sidebar-section {
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

.sidebar-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  margin-bottom: 0.1rem;
}

.sidebar-link:hover { background: var(--yellow-dim); color: var(--yellow); }
.sidebar-link.active { background: var(--yellow-dim); color: var(--yellow); border-left: 2px solid var(--yellow); }
.sidebar-link .icon { font-size: 1rem; width: 20px; flex-shrink: 0; }
.sidebar-link .pro-tag {
  margin-left: auto;
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.05em;
  background: var(--pink-dim);
  color: var(--pink);
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
}

.app-main {
  flex: 1;
  margin-left: 240px;
  padding: 2rem;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.app-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--text);
  letter-spacing: 0.05em;
}

.score-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.score-pill strong { color: var(--yellow); font-size: 1rem; }

/* ─── SCAN/BUST UI ─── */
.scan-input-area {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.scan-textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 1rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  resize: none;
  outline: none;
  transition: border-color 0.2s;
  min-height: 120px;
}

.scan-textarea:focus { border-color: var(--yellow); }
.scan-textarea::placeholder { color: var(--text-muted); opacity: 0.6; }

.result-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  animation: fade-in 0.4s ease;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}

.verdict-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  text-transform: uppercase;
}

.verdict-scam { background: var(--red-dim); color: var(--red); border: 1px solid rgba(255,59,59,0.4); }
.verdict-mixed { background: rgba(255,140,0,0.15); color: var(--orange); border: 1px solid rgba(255,140,0,0.4); }
.verdict-legit { background: var(--green-dim); color: var(--green); border: 1px solid rgba(0,200,83,0.4); }

.science-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.result-body { padding: 1.5rem; }

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.share-btn:hover { border-color: var(--pink); color: var(--pink); }

/* ─── DASHBOARD ─── */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--yellow);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── PRO GATE ─── */
.pro-gate {
  background: var(--bg2);
  border: 1px solid var(--border-pink);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pro-gate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 100%, rgba(255,45,135,0.06) 0%, transparent 70%);
}

.pro-gate h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--text);
  margin: 1rem 0 0.5rem;
}

.pro-gate p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }

/* ─── LOADING ─── */
.loading-dots {
  display: inline-flex;
  gap: 0.3rem;
  align-items: center;
}

.loading-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: bounce 1.2s ease-in-out infinite;
}

.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero::after { top: 70px; font-size: 0.85rem; }
  .features-grid { grid-template-columns: 1fr; }
  .kp-story { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
  .sidebar { width: 60px; }
  .sidebar-link span:not(.icon) { display: none; }
  .sidebar-label { display: none; }
  .app-main { margin-left: 60px; }
  .onboarding-steps { flex-direction: column; }
  .onboarding-step:not(:last-child)::after { content: '↓'; right: auto; top: auto; bottom: -0.5rem; left: 50%; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .dashboard-grid { grid-template-columns: 1fr; }
  .score-grades { flex-direction: column; }
  .gauge-svg-wrap { width: 200px; height: 115px; }
  .gauge-number { font-size: 2.8rem; }
  .hero { padding-top: 6rem; }
}
