/* ═══════════════════════════════════════════════════════════════
   AlphaBreakouts — Landing Page Styles
   Dark professional. Matches the app.
   Used on: index.html, login.html, signup.html
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  /* Colors */
  --canvas:      #070708;
  --surface-1:   #0d0d0f;
  --surface-2:   #131316;
  --surface-3:   #1a1a1e;
  --border:      rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.10);

  --text:        #f5f5f7;
  --text-mute:   #a1a1aa;
  --text-dim:    #71717a;

  --ember:       #ffa16c;
  --ember-glow:  rgba(255,161,108,0.15);
  --signal:      #479ffa;
  --growth:      #4ebe96;
  --danger:      #ff4757;
  --warning:     #ffc107;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-pill: 999px;

  /* Layout */
  --page-max: 1240px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Ambient glow background ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 15% -10%, rgba(255,161,108,0.08), transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 20%, rgba(71,159,250,0.06), transparent 60%),
    radial-gradient(ellipse 900px 700px at 50% 100%, rgba(78,190,150,0.04), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ═════════════════════════════════════════════════════════════
   LIVE TICKER (top bar)
   ═════════════════════════════════════════════════════════════ */
.ticker-bar {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  animation: ticker-scroll 45s linear infinite;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-mute);
}
.ticker-item strong {
  color: var(--text);
  font-weight: 600;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
}
.ticker-item .up   { color: var(--growth); }
.ticker-item .down { color: var(--danger); }
.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--growth);
  box-shadow: 0 0 8px currentColor;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ═════════════════════════════════════════════════════════════
   NAVIGATION
   ═════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,7,8,0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-logo img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-size: 14px;
  color: var(--text-mute);
  font-weight: 500;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--text); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ═════════════════════════════════════════════════════════════
   BUTTONS
   ═════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ember);
  color: #0a0a0a;
  box-shadow: 0 0 0 rgba(255,161,108,0);
}
.btn-primary:hover {
  background: #ffb388;
  box-shadow: 0 8px 24px -8px rgba(255,161,108,0.6);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.03);
}
.btn-lg {
  height: 48px;
  padding: 0 28px;
  font-size: 15px;
}
.btn-text {
  color: var(--text-mute);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}
.btn-text:hover { color: var(--text); }

/* ═════════════════════════════════════════════════════════════
   HERO
   ═════════════════════════════════════════════════════════════ */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-mute);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--growth);
  box-shadow: 0 0 8px currentColor;
  animation: pulse 2s infinite;
}
.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0 auto 24px;
  max-width: 900px;
  background: linear-gradient(180deg, #ffffff 0%, #a8a8b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .accent {
  background: linear-gradient(135deg, #ffa16c 0%, #ff8c42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subhead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-mute);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-trust {
  font-size: 12px;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ═════════════════════════════════════════════════════════════
   SCANNER ANIMATION SHOWCASE
   ═════════════════════════════════════════════════════════════ */
.scanner-showcase {
  margin: 60px auto 0;
  max-width: 1100px;
  padding: 0 32px;
  perspective: 2000px;
}
.showcase-frame {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02),
    0 40px 80px -20px rgba(0,0,0,0.6),
    0 0 100px -20px rgba(255,161,108,0.08);
  transform: rotateX(2deg);
  transform-origin: 50% 100%;
}
.showcase-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #3a3a3f;
}
.showcase-url {
  margin-left: 12px;
  font-size: 12px;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
}
.showcase-status {
  margin-left: auto;
  font-size: 11px;
  color: var(--growth);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.showcase-body {
  padding: 24px;
  min-height: 460px;
  background:
    radial-gradient(ellipse at top, rgba(255,161,108,0.03), transparent 70%),
    var(--surface-1);
}

.showcase-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.showcase-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.showcase-title span {
  color: var(--text-dim);
  font-weight: 500;
  font-size: 14px;
  margin-left: 8px;
}
.showcase-count {
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--ember-glow);
  color: var(--ember);
  font-size: 12px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.showcase-card {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 14px;
  opacity: 0;
  transform: scale(0.9) translateY(10px);
  transition: all 0.4s ease;
  position: relative;
}
.showcase-card.in {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.showcase-card.match {
  border-color: rgba(255,161,108,0.4);
  background: linear-gradient(135deg, rgba(255,161,108,0.08), rgba(255,161,108,0.02));
  box-shadow: 0 0 20px -5px rgba(255,161,108,0.3);
  animation: match-glow 2s ease-in-out infinite;
}
@keyframes match-glow {
  0%, 100% { box-shadow: 0 0 20px -5px rgba(255,161,108,0.3); }
  50%      { box-shadow: 0 0 30px -3px rgba(255,161,108,0.5); }
}
.showcase-card.filter-out {
  opacity: 0.15;
  filter: grayscale(1);
}
.sc-sym {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  font-family: 'JetBrains Mono', monospace;
}
.sc-name {
  font-size: 10px;
  color: var(--text-dim);
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sc-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.sc-chg {
  font-size: 11px;
  font-weight: 600;
  margin-left: 6px;
}
.sc-chg.up { color: var(--growth); }
.sc-chg.down { color: var(--danger); }
.sc-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 4px;
  background: var(--ember);
  color: #0a0a0a;
  opacity: 0;
  transition: opacity 0.3s;
}
.showcase-card.match .sc-badge { opacity: 1; }

.showcase-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
}
.showcase-caption strong {
  color: var(--ember);
  font-family: 'JetBrains Mono', monospace;
}

/* ═════════════════════════════════════════════════════════════
   STATS BAR
   ═════════════════════════════════════════════════════════════ */
.stats-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 100px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}
.stat {
  text-align: center;
}
.stat-value {
  font-size: 44px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
}
.stat-value .unit {
  font-size: 24px;
  color: var(--ember);
  font-weight: 600;
}
.stat-label {
  font-size: 13px;
  color: var(--text-mute);
  font-weight: 500;
}

/* ═════════════════════════════════════════════════════════════
   SECTIONS
   ═════════════════════════════════════════════════════════════ */
.section {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--ember-glow);
  color: var(--ember);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title .accent {
  background: linear-gradient(135deg, #ffa16c, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 17px;
  color: var(--text-mute);
  line-height: 1.5;
}

/* ═════════════════════════════════════════════════════════════
   FEATURE GRID
   ═════════════════════════════════════════════════════════════ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.feature {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,161,108,0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.feature:hover::before { opacity: 1; }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--ember-glow);
  color: var(--ember);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  position: relative;
}
.feature-body {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.6;
  position: relative;
}
.feature-metric {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--ember);
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  position: relative;
}

/* ═════════════════════════════════════════════════════════════
   TESTIMONIALS — Instagram DM style
   ═════════════════════════════════════════════════════════════ */
.testimonials-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.dm-thread {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dm-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.dm-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffa16c, #ff5c8a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.dm-avatar.blue    { background: linear-gradient(135deg, #479ffa, #7d5cff); }
.dm-avatar.green   { background: linear-gradient(135deg, #4ebe96, #58c1c9); }
.dm-avatar.purple  { background: linear-gradient(135deg, #a855f7, #ec4899); }
.dm-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.dm-handle {
  font-size: 12px;
  color: var(--text-dim);
}
.dm-verified {
  color: var(--signal);
  margin-left: 4px;
}
.dm-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 90%;
  color: var(--text);
}
.dm-bubble.them {
  background: var(--surface-3);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.dm-bubble.me {
  background: linear-gradient(135deg, #ffa16c, #ff8c42);
  color: #0a0a0a;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-weight: 500;
}
.dm-time {
  font-size: 10px;
  color: var(--text-dim);
  align-self: flex-start;
  margin-left: 4px;
}
.dm-time.me { align-self: flex-end; margin-right: 4px; }

/* ═════════════════════════════════════════════════════════════
   ABOUT / KEDAR
   ═════════════════════════════════════════════════════════════ */
.about {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  align-items: start;
}
.about-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffa16c, #ff5c8a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
}
.about-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}
.about-sub {
  font-size: 14px;
  color: var(--text-mute);
  margin-bottom: 20px;
}
.about-body {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═════════════════════════════════════════════════════════════
   FINAL CTA
   ═════════════════════════════════════════════════════════════ */
.final-cta {
  text-align: center;
  padding: 100px 0;
  background:
    radial-gradient(ellipse 800px 400px at center, rgba(255,161,108,0.08), transparent 70%);
}
.final-cta h2 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.final-cta p {
  font-size: 18px;
  color: var(--text-mute);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ═════════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  color: var(--text-mute);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-brand img { width: 30px; height: 30px; border-radius: 8px; }
.footer-tag {
  font-size: 14px;
  color: var(--text-mute);
  max-width: 320px;
  line-height: 1.6;
}
.footer-heading {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-size: 14px;
  color: var(--text-mute);
  padding: 5px 0;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--text); }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}

/* ═════════════════════════════════════════════════════════════
   AUTH PAGES (login / signup)
   ═════════════════════════════════════════════════════════════ */
.auth-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-left {
  padding: 40px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--canvas);
}
.auth-right {
  padding: 40px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(ellipse 600px 500px at 30% 30%, rgba(255,161,108,0.15), transparent 60%),
    radial-gradient(ellipse 500px 400px at 70% 70%, rgba(71,159,250,0.10), transparent 60%),
    var(--surface-1);
  border-left: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.auth-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.auth-brand img { width: 32px; height: 32px; border-radius: 8px; }
.auth-form-wrap {
  max-width: 400px;
  width: 100%;
  margin: auto 0;
}
.auth-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #fff, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.auth-title .accent {
  background: linear-gradient(135deg, #ffa16c, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.auth-sub {
  font-size: 15px;
  color: var(--text-mute);
  margin-bottom: 32px;
}
.auth-field { margin-bottom: 16px; }
.auth-label {
  display: block;
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 6px;
  font-weight: 500;
}
.auth-input {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  background: var(--surface-2);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.15s;
  outline: none;
}
.auth-input:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(255,161,108,0.15);
}
.auth-input::placeholder { color: var(--text-dim); }
.auth-btn {
  width: 100%;
  height: 46px;
  margin-top: 6px;
}
.auth-error {
  display: none;
  padding: 10px 14px;
  background: rgba(255,71,87,0.08);
  border: 1px solid rgba(255,71,87,0.2);
  border-radius: var(--r-md);
  color: var(--danger);
  font-size: 13px;
  margin-bottom: 12px;
}
.auth-alt {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-mute);
  text-align: center;
}
.auth-alt a { color: var(--ember); font-weight: 500; }
.auth-alt a:hover { text-decoration: underline; }

.auth-skip {
  margin-top: 24px;
  text-align: center;
}
.auth-skip a {
  font-size: 13px;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.auth-skip a:hover { color: var(--text-mute); }

.auth-footer-note {
  font-size: 12px;
  color: var(--text-dim);
}

/* Right side content */
.auth-right-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.auth-right-sub {
  font-size: 15px;
  color: var(--text-mute);
  line-height: 1.6;
  max-width: 380px;
}

.auth-stat-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-top: 32px;
  max-width: 320px;
}
.auth-stat-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  font-weight: 700;
}
.auth-stat-value {
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'JetBrains Mono', monospace;
}
.auth-stat-delta {
  font-size: 12px;
  color: var(--growth);
  font-weight: 600;
}

/* ═════════════════════════════════════════════════════════════
   REVEAL ON SCROLL
   ═════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ═════════════════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .testimonials-wrap { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; text-align: center; padding: 32px; }
  .about-avatar { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-right { display: none; }
  .auth-left { padding: 32px 24px; }
  .showcase-frame { transform: none; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding: 40px 0 40px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-value { font-size: 32px; }
  .stat-value .unit { font-size: 18px; }
  .section { padding: 60px 0; }
  .final-cta { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .scanner-showcase { padding: 0 16px; }
  .showcase-body { padding: 16px; min-height: 380px; }
  .about { padding: 24px; }
  .about-avatar { width: 72px; height: 72px; font-size: 26px; }
}