/* ============================================
   UCognify — Human-Centered AI
   Style System
   ============================================ */

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

:root {
  /* Colors */
  --bg-deep: #060a14;
  --bg-primary: #0a0e1a;
  --bg-card: #0f1420;
  --bg-card-hover: #141926;
  --bg-surface: #1a1f2e;

  --text-primary: #e8eaf0;
  --text-secondary: #8892a8;
  --text-muted: #565f78;

  --accent-cyan: #00d4ff;
  --accent-purple: #7c3aed;
  --accent-pink: #f472b6;
  --accent-blue: #3b82f6;

  --gradient-main: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #f472b6 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(0,212,255,0.15) 0%, rgba(124,58,237,0.15) 100%);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-pad: clamp(4rem, 10vw, 8rem);
  --container-max: 1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--accent-cyan); text-decoration: none; transition: color 0.3s; }
a:hover { color: #5de8ff; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(6, 10, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.2rem;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--gradient-main);
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.logo-text { letter-spacing: -0.02em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  color: var(--accent-cyan) !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: rgba(0, 212, 255, 0.2) !important;
  border-color: var(--accent-cyan) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
  border-radius: 2px;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: aurora-drift 12s ease-in-out infinite alternate;
}
.aurora-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
  top: -10%; right: -5%;
  animation-delay: 0s;
}
.aurora-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
  bottom: -15%; left: -10%;
  animation-delay: -4s;
  animation-duration: 15s;
}
.aurora-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
  top: 30%; left: 40%;
  opacity: 0.2;
  animation-delay: -8s;
  animation-duration: 18s;
}
@keyframes aurora-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.15); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-indicator {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--accent-cyan);
  border-radius: 2px;
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(12px); }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.35);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--text-primary);
  background: rgba(255,255,255,0.03);
}
.btn-full { width: 100%; justify-content: center; }

/* --- SECTIONS --- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-header h2 em {
  font-style: normal;
  color: var(--accent-cyan);
}

/* --- ABOUT GRID --- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.about-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease-out);
}
.about-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 212, 255, 0.15);
  transform: translateY(-4px);
}
.about-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
.about-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.about-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}
.about-card em {
  font-style: normal;
  color: var(--accent-cyan);
}

/* --- HUMAN VELOCITY --- */
.section-velocity {
  background: var(--bg-primary);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.velocity-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.velocity-content .section-tag { margin-bottom: 0.75rem; }
.velocity-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.velocity-formula {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.formula-piece {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
}
.formula-op {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1.2rem;
}
.velocity-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.velocity-content strong { color: var(--text-primary); }
.velocity-points {
  list-style: none;
  margin-top: 1.5rem;
}
.velocity-points li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.velocity-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 600;
}
.velocity-points li strong { color: var(--text-primary); }

/* Velocity Visual */
.velocity-visual {
  display: flex;
  justify-content: center;
}
.velocity-meter {
  width: 100%;
  max-width: 340px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2.5rem 2rem;
}
.meter-ring {
  position: relative;
  width: 180px; height: 180px;
  margin: 0 auto 2rem;
}
.meter-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.meter-arc {
  stroke-dashoffset: 565;
  transition: stroke-dashoffset 2s var(--ease-out);
}
.meter-ring.animate .meter-arc {
  stroke-dashoffset: 113;
}
.meter-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.meter-value {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.meter-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}
.meter-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  min-width: 80px;
  font-weight: 500;
}
.stat-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.stat-fill {
  height: 100%;
  width: 0;
  background: var(--gradient-main);
  border-radius: 3px;
  transition: width 1.5s var(--ease-out);
}
.stat-fill.animate { width: var(--fill); }

/* --- APPROACH / PILLARS --- */
.pillars {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.pillar {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pillar:last-child { border-bottom: none; }
.pillar-number {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 80px;
  opacity: 0.6;
}
.pillar-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.pillar-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

/* --- PHILOSOPHY --- */
.section-philosophy {
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.philosophy-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  position: relative;
}
.philosophy-block::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: var(--gradient-main);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  opacity: 0.15;
}
.philosophy-block blockquote {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.philosophy-block p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.philosophy-block strong { color: var(--text-primary); }

/* --- CONTACT --- */
.section-contact {
  background: var(--bg-primary);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 0.75rem; }
.contact-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.contact-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  transition: all 0.3s;
}
.contact-link:hover {
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--accent-cyan);
}
.contact-icon { font-size: 1.2rem; }

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all 0.3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.03);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* --- FOOTER --- */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-inner {
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.footer-brand .logo-mark {
  width: 28px; height: 28px;
  font-size: 0.9rem;
  border-radius: 8px;
}
.footer-brand .logo-text {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
}
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .velocity-layout { grid-template-columns: 1fr; }
  .velocity-visual { margin-top: 2rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { text-align: center; }
  .contact-details { justify-content: center; display: flex; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 10, 20, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; }
  .nav-toggle { display: flex; z-index: 101; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .pillar { flex-direction: column; gap: 1rem; }
  .pillar-number { font-size: 2rem; min-width: auto; }

  .form-row { grid-template-columns: 1fr; }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
}

/* --- PAGE CONTENT (inner pages) --- */
.page-content {
  padding-top: 100px;
  min-height: 80vh;
}

/* --- AUTH PAGES --- */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 2rem;
}
.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3rem);
}
.auth-card h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.auth-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.auth-form .form-error {
  color: #f87171;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  min-height: 1.2em;
}
.auth-form .form-success {
  color: #34d399;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  min-height: 1.2em;
}
.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.optional {
  color: var(--text-muted);
  font-weight: 400;
}

/* --- NAV AUTH / CART --- */
.nav-link-sm {
  color: var(--text-secondary) !important;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-link-sm:hover { color: var(--text-primary) !important; }
#auth-nav {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.nav-cart {
  position: relative;
  font-size: 1.1rem;
  color: var(--text-secondary) !important;
}
.nav-cart:hover { color: var(--text-primary) !important; }
.nav-cart.active { color: var(--accent-cyan) !important; }
.cart-badge {
  position: absolute;
  top: -8px; right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: var(--accent-pink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
}
.nav-user {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary) !important;
  font-weight: 500;
}
.user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: var(--gradient-main);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}

/* --- PRODUCTS PAGE --- */
.products-hero {
  padding-top: 2rem;
}
.products-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1rem auto 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
}
.product-card:hover {
  border-color: rgba(0, 212, 255, 0.15);
  transform: translateY(-4px);
}
.product-card.featured {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.12);
}
.product-card.enterprise {
  border-style: dashed;
}
.product-badge {
  position: absolute;
  top: -10px; right: 20px;
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.product-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.product-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.product-features {
  margin-bottom: 1.5rem;
}
.product-features .feature {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0.3rem 0;
}
.product-price {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.price-amount {
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- CART PAGE --- */
.cart-container {
  max-width: 800px;
  margin: 0 auto;
}
.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
}
.cart-empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}
.cart-empty h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.cart-empty p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 1.5rem;
  transition: border-color 0.3s;
}
.cart-item:hover {
  border-color: rgba(255,255,255,0.12);
}
.cart-item-icon {
  font-size: 2rem;
  min-width: 40px;
  text-align: center;
}
.cart-item-info {
  flex: 1;
}
.cart-item-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.cart-item-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.qty-btn {
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.qty-btn:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--accent-cyan);
}
.qty-value {
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}
.cart-item-price {
  font-weight: 600;
  font-size: 1.1rem;
  min-width: 80px;
  text-align: right;
}
.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
}
.cart-item-remove:hover {
  color: #f87171;
}
.cart-summary {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2rem;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}
.cart-total-amount {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cart-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* --- CART TOAST --- */
.cart-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s var(--ease-out);
}
.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast-icon { font-size: 1.2rem; }
.toast-msg { font-size: 0.9rem; font-weight: 500; }
.toast-action {
  font-size: 0.85rem;
  color: var(--accent-cyan) !important;
  font-weight: 600;
  white-space: nowrap;
}

/* --- CHECKOUT MESSAGE --- */
.checkout-message {
  display: flex;
  justify-content: center;
  padding: 3rem;
}
.checkout-message-card {
  text-align: center;
  max-width: 500px;
}
.checkout-msg-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.checkout-message-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.checkout-message-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.order-id {
  font-family: var(--font-mono);
  color: var(--accent-cyan);
  font-size: 0.9rem;
}

/* --- ACCOUNT PAGE --- */
.account-grid {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.account-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 3rem 2rem;
}
.account-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  background: var(--gradient-main);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.account-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.account-email {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.account-company {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.account-since {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.account-section {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2rem;
}
.account-section h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.account-loading {
  text-align: center;
  padding: 4rem;
  color: var(--text-muted);
}
.text-muted { color: var(--text-muted); }

/* Order history */
.order-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.order-item:last-child { border-bottom: none; }
.order-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.order-id {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
}
.order-status {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
  text-transform: capitalize;
}
.status-pending, .status-awaiting_payment {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}
.status-paid, .status-completed {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
}
.order-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-left: auto;
}
.order-items {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.order-total {
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

/* --- JOURNEY STEPS --- */
.journey-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 3rem auto 0;
  max-width: 600px;
}
.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}
.journey-num {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-main);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.journey-label {
  font-weight: 600;
  font-size: 1rem;
}
.journey-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.journey-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,212,255,0.3), rgba(124,58,237,0.3));
  margin-bottom: 2rem;
}

/* --- PRODUCTS GRID VARIANTS --- */
.products-grid.two-col {
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
}
.products-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .products-grid.two-col,
  .products-grid.three-col { grid-template-columns: 1fr; }
  .journey-connector { width: 2px; height: 30px; margin-bottom: 0; }
  .journey-steps { flex-direction: column; gap: 0; }
}

/* Free highlight */
.product-card.highlight-free {
  border-color: rgba(52, 211, 153, 0.3);
  box-shadow: 0 4px 30px rgba(52, 211, 153, 0.08);
}
.free-badge {
  background: linear-gradient(135deg, #34d399, #059669) !important;
}

/* --- SCORE PREVIEW --- */
.score-preview {
  display: flex;
  align-items: center;
  justify-content: center;
}
.score-preview-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  width: 100%;
  max-width: 280px;
}
.score-preview-header {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.score-preview-ring {
  position: relative;
  width: 120px; height: 120px;
  margin: 0 auto 1rem;
}
.score-preview-ring svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.score-arc {
  transition: stroke-dasharray 2s var(--ease-out);
}
.score-preview-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.score-preview-band {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--accent-cyan);
}
.score-preview-dims {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.dim-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}
.dim-row span:first-child {
  min-width: 75px;
  text-align: left;
  color: var(--text-secondary);
}
.dim-row span:last-child {
  min-width: 28px;
  text-align: right;
  font-weight: 600;
  color: var(--text-primary);
}
.dim-bar {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.dim-fill {
  height: 100%;
  background: var(--gradient-main);
  border-radius: 3px;
}
.score-preview-label {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* --- DEVELOP SECTION --- */
.section-develop {
  background: var(--bg-primary);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* --- BADGE SHOWCASE --- */
.section-badge {
  overflow: visible;
}
.badge-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .badge-showcase { grid-template-columns: 1fr; }
}

/* Badge Preview Card */
.badge-preview-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.badge-card-preview {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 300px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 212, 255, 0.08);
}
.badge-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.badge-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.badge-u {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--gradient-main);
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}
.badge-verified-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}
.badge-score-display {
  margin-bottom: 0.75rem;
}
.badge-score-num {
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.badge-score-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}
.badge-dims-mini {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.badge-holder-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.badge-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.badge-id {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  opacity: 0.7;
}
.badge-preview-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Badge Details */
.badge-details h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.badge-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.badge-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.badge-feat-icon {
  font-size: 1.4rem;
  min-width: 32px;
  text-align: center;
  padding-top: 0.1rem;
}
.badge-feat strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.badge-feat p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Badge Pricing */
.badge-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.badge-price-option {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
}
.badge-price-option:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
}
.badge-price-option.best {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
}
.badge-save-tag {
  position: absolute;
  top: -10px; right: 12px;
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}
.badge-price-top {
  margin-bottom: 0.25rem;
}
.badge-price-amount {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.badge-price-period {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.badge-price-note {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

/* --- ENTERPRISE BANNER --- */
.enterprise-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2.5rem;
  gap: 2rem;
}
.enterprise-content {
  flex: 1;
}
.enterprise-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.enterprise-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .enterprise-banner { flex-direction: column; text-align: center; }
}

/* --- VERIFICATION PAGE --- */
.verify-container {
  max-width: 600px;
  margin: 0 auto;
}
.verify-form {
  max-width: 500px;
  margin: 0 auto;
}
.verify-input-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.verify-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.verify-input:focus {
  border-color: var(--accent-cyan);
}
.verify-input::placeholder {
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
}
.verify-hint {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
}

/* Verify Result Cards */
.verify-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 2rem;
}
.verify-card.verified {
  border: 1px solid rgba(52, 211, 153, 0.3);
  box-shadow: 0 8px 40px rgba(52, 211, 153, 0.08);
}
.verify-card.inactive {
  border: 1px solid rgba(251, 191, 36, 0.3);
}
.verify-card.not-found {
  border: 1px solid rgba(248, 113, 113, 0.3);
}
.verify-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.verify-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
}
.verify-pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border-radius: 50%;
  font-size: 1.2rem;
}
.verify-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(248, 113, 113, 0.15);
  color: #f87171;
  border-radius: 50%;
  font-size: 1.2rem;
}
.verify-status-text {
  font-size: 1.2rem;
  font-weight: 600;
}
.verify-badge-display {
  margin-bottom: 1.5rem;
}
.verify-score-ring {
  position: relative;
  width: 120px; height: 120px;
  margin: 0 auto 0.75rem;
}
.verify-score-ring svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.verify-score-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--score-color, var(--accent-cyan));
}
.verify-band {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent-cyan);
}
.verify-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.verify-company {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.verify-dims {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.verify-dim {
  text-align: center;
}
.verify-dim-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.verify-dim-score {
  font-size: 1.5rem;
  font-weight: 700;
}
.verify-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.status-active {
  color: #34d399;
  font-weight: 600;
}
.verify-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.verify-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.verify-meta-text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- FAQ --- */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-item summary {
  padding: 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-primary);
  transition: color 0.3s;
}
.faq-item summary:hover { color: var(--accent-cyan); }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  padding: 0 0 1.25rem;
}

/* --- Selection --- */
::selection {
  background: rgba(0, 212, 255, 0.25);
  color: #fff;
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }
