/* ═══════════════════════════════════════════════════════════════
   DIJITAL OFISIM — Full Site Styles (Investor-Grade)
   ═══════════════════════════════════════════════════════════════ */

/* Fonts loaded via <link> in index.html for better performance */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg-primary: #06060b;
  --bg-secondary: #0d0d15;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --text-primary: #f0f0f5;
  --text-secondary: #8a8a9a;
  --text-muted: #55556a;
  --accent-aeterna: #FF6B6B;
  --accent-aeterna-glow: rgba(255, 107, 107, 0.4);
  --accent-kargux: #3B82F6;
  --accent-kargux-glow: rgba(59, 130, 246, 0.4);
  --accent-ghostnode: #34D399;
  --accent-ghostnode-glow: rgba(52, 211, 153, 0.4);
  --accent-umai: #A78BFA;
  --accent-umai-glow: rgba(167, 139, 250, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.15);
  --max-width: 1200px;
  --section-padding: 100px;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ── Splash Screen ─────────────────────────────────────────── */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.splash-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0;
  animation: splashFadeIn 0.8s var(--ease-out) 0.3s forwards;
}

.splash-bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
  overflow: hidden;
  opacity: 0;
  animation: splashFadeIn 0.5s var(--ease-out) 0.6s forwards;
}

.splash-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-aeterna), var(--accent-kargux), var(--accent-ghostnode), var(--accent-umai));
  border-radius: 1px;
  animation: splashLoad 1.8s var(--ease-out) 0.8s forwards;
}

@keyframes splashFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes splashLoad {
  to {
    width: 100%;
  }
}

/* ── Particle Canvas ───────────────────────────────────────── */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Navigation ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 6, 11, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(6, 6, 11, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-aeterna), var(--accent-umai));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--text-primary);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all 0.3s var(--ease-out);
}

/* ── Mobile Menu ───────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6, 6, 11, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--text-primary);
}

/* ── Common ────────────────────────────────────────────────── */
section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  max-width: 800px;
  margin: 0 auto;
}

/* ── Section Headers ───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--text-muted);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
}

.section-description {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 14px auto 0;
  line-height: 1.7;
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 2.8s forwards;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-ghostnode);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) 3s forwards;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--accent-aeterna) 0%, var(--accent-kargux) 40%, var(--accent-ghostnode) 70%, var(--accent-umai) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 3.2s forwards;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 3.4s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.btn-secondary:hover {
  color: var(--text-primary);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 3.6s forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Social Proof Bar ──────────────────────────────────────── */
.social-proof {
  padding: 32px 0;
}

.proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 20px 32px;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-icon {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  color: var(--text-secondary);
}

.proof-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.proof-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.08);
}

/* ── Problem & Solution ────────────────────────────────────── */
.problem-solution {
  padding: var(--section-padding) 0;
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ps-card {
  padding: 36px;
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.ps-card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.ps-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.ps-dot-red {
  background: var(--accent-aeterna);
}

.ps-dot-green {
  background: var(--accent-ghostnode);
}

.ps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ps-list li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.ps-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.ps-solution .ps-list li strong {
  color: var(--text-primary);
}

/* ── Projects Section ──────────────────────────────────────── */
.projects {
  padding: var(--section-padding) 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Project Card ──────────────────────────────────────────── */
.project-card {
  position: relative;
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 36px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--card-accent, white), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
  background: var(--bg-card-hover);
}

.project-card:hover::before {
  opacity: 0.6;
}

.project-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--card-glow, transparent) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.project-card:hover::after {
  opacity: 0.08;
}

.project-card[data-project="aeterna"] {
  --card-accent: var(--accent-aeterna);
  --card-glow: var(--accent-aeterna-glow);
}

.project-card[data-project="kargux"] {
  --card-accent: var(--accent-kargux);
  --card-glow: var(--accent-kargux-glow);
}

.project-card[data-project="ghostnode"] {
  --card-accent: var(--accent-ghostnode);
  --card-glow: var(--accent-ghostnode-glow);
}

.project-card[data-project="umai"] {
  --card-accent: var(--accent-umai);
  --card-glow: var(--accent-umai-glow);
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.card-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--card-accent) 0%, transparent 60%);
  opacity: 0.15;
}

.card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.card-status .status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--card-accent);
  animation: pulse 2s ease-in-out infinite;
}

.card-status.live .status-dot {
  background: var(--accent-ghostnode);
}

.card-status.wip .status-dot {
  background: var(--accent-umai);
  animation: pulse 1.5s ease-in-out infinite;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.card-subtitle {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--card-accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card-description {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Card "How it works" */
.card-how {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-how-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card-how-steps {
  display: flex;
  gap: 12px;
}

.how-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  flex: 1;
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--card-accent);
  flex-shrink: 0;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.card-tag {
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding-top: 20px;
}

/* Card Visit Button */
.card-visit-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 10px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.18);
  color: var(--accent-ghostnode);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  width: 100%;
  justify-content: center;
}

.card-visit-btn:hover {
  background: rgba(52, 211, 153, 0.16);
  border-color: rgba(52, 211, 153, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(52, 211, 153, 0.12);
}

/* Card Notify Button */
.card-notify-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 10px;
  background: rgba(167, 139, 250, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.18);
  color: var(--accent-umai);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  width: 100%;
  justify-content: center;
}

.card-notify-btn:hover {
  background: rgba(167, 139, 250, 0.16);
  border-color: rgba(167, 139, 250, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(167, 139, 250, 0.12);
}

/* Coming Soon Status */
.card-status.coming-soon .status-dot {
  background: var(--accent-umai);
  animation: pulse 2.5s ease-in-out infinite;
}

.card-status.coming-soon {
  background: rgba(167, 139, 250, 0.08);
  color: var(--accent-umai);
}

/* ── Founder Section ───────────────────────────────────────── */
.founder {
  padding: var(--section-padding) 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.founder-card {
  display: flex;
  gap: 32px;
  padding: 40px;
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.founder-avatar {
  position: relative;
  flex-shrink: 0;
}

.founder-avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-kargux), var(--accent-umai));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
}

.founder-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  animation: pulse 3s ease-in-out infinite;
}

.founder-info {
  flex: 1;
}

.founder-name {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 2px;
}

.founder-role {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-kargux);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.founder-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.founder-statement {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 8px 8px 0;
  margin-bottom: 20px;
}

.founder-links {
  display: flex;
  gap: 12px;
}

.founder-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-out);
}

.founder-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.founder-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-card {
  padding: 20px;
  border-radius: 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s var(--ease-out);
}

.highlight-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.highlight-icon {
  font-size: 1.3rem;
}

.highlight-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.highlight-text strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.highlight-text span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ── Metrics Section ───────────────────────────────────────── */
.metrics {
  padding: var(--section-padding) 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.metric-card {
  padding: 32px;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: all 0.4s var(--ease-out);
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
}

.metric-number {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.metric-detail {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Roadmap / Timeline ────────────────────────────────────── */
.roadmap {
  padding: var(--section-padding) 0;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-ghostnode), var(--accent-kargux), var(--accent-umai), rgba(255, 255, 255, 0.06));
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  z-index: 1;
  transition: all 0.3s;
}

.timeline-item.completed .timeline-dot {
  border-color: var(--accent-ghostnode);
  color: var(--accent-ghostnode);
  background: rgba(52, 211, 153, 0.1);
}

.timeline-item.active .timeline-dot {
  border-color: var(--accent-kargux);
  color: var(--accent-kargux);
  background: rgba(59, 130, 246, 0.15);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.timeline-item.upcoming .timeline-dot {
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.timeline-content {
  flex: 1;
  padding: 4px 0;
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.timeline-item.upcoming .timeline-content h4 {
  color: var(--text-muted);
}

.timeline-item.upcoming .timeline-content p {
  color: rgba(85, 85, 106, 0.7);
}

/* ── Capabilities ──────────────────────────────────────────── */
.capabilities {
  padding: var(--section-padding) 0;
}

.capabilities-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.capability-item {
  padding: 28px;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease-out);
}

.capability-item:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.capability-icon {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.capability-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.capability-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Contact Section ───────────────────────────────────────── */
.contact {
  padding: var(--section-padding) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-cta {
  padding: 48px 40px;
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  flex: 1;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.contact-btn svg {
  flex-shrink: 0;
}

/* Newsletter Box */
.newsletter-box {
  padding: 48px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(167, 139, 250, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.newsletter-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.newsletter-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 320px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 360px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-input:focus {
  border-color: var(--accent-kargux);
}

.newsletter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--accent-kargux);
  border: none;
  color: white;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #2563EB;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.newsletter-btn.success {
  background: var(--accent-ghostnode);
}

.newsletter-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--text-secondary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-made {
  font-size: 0.75rem;
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.6;
    transform: scaleY(1.2);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .ps-grid {
    grid-template-columns: 1fr;
  }

  .founder-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capabilities-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 72px;
  }

  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-mobile-btn {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-title {
    letter-spacing: -1px;
  }

  .proof-bar {
    gap: 16px;
    padding: 16px;
  }

  .proof-divider {
    display: none;
  }

  .founder-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px;
  }

  .founder-statement {
    border-left: none;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 0;
    padding-top: 16px;
  }

  .founder-links {
    justify-content: center;
  }

  .card-how-steps {
    flex-direction: column;
    gap: 8px;
  }

  .capabilities-list {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .timeline-line {
    left: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .contact-cta {
    padding: 32px 24px;
  }

  .newsletter-box {
    padding: 32px 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   NEW COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

/* ── Skip to Content ──────────────────────────────────────── */
.skip-to-content {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: var(--accent-kargux);
  color: white;
  border-radius: 0 0 10px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 10001;
  transition: top 0.3s var(--ease-out);
  text-decoration: none;
}

.skip-to-content:focus {
  top: 0;
}

/* ── Nav Actions & Toggle Buttons ─────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  color: var(--text-secondary);
  font-family: var(--font-sans);
}

.nav-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.toggle-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.toggle-icon {
  font-size: 0.95rem;
  line-height: 1;
}

/* ── FAQ Section ──────────────────────────────────────────── */
.faq {
  padding: var(--section-padding) 0;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out);
}

.faq-item:hover {
  border-color: var(--glass-border-hover);
}

.faq-item.active {
  border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
  gap: 16px;
}

.faq-question:hover {
  color: var(--accent-kargux);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.4s var(--ease-out), color 0.3s;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-kargux);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── Blog Section ─────────────────────────────────────────── */
.blog-section {
  padding: var(--section-padding) 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  padding: 28px;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.blog-card-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(59, 130, 246, 0.08);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--accent-kargux);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  width: fit-content;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.blog-card-meta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(167, 139, 250, 0.08);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-umai);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── Partners Section ─────────────────────────────────────── */
.partners-section {
  padding: var(--section-padding) 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.partner-placeholder {
  padding: 32px;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: all 0.3s var(--ease-out);
}

.partner-placeholder:hover {
  border-color: rgba(255, 255, 255, 0.15);
  border-style: solid;
}

.partner-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.partner-placeholder span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.partner-placeholder p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Back to Top ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.4s var(--ease-out);
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  transform: translateY(-3px);
}

/* ── Cookie Consent Banner ────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 16px 24px;
  background: rgba(13, 13, 21, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  flex: 1;
  margin: 0;
}

.cookie-content a {
  color: var(--accent-kargux);
  font-weight: 500;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-accept-btn {
  padding: 10px 24px;
  border-radius: 10px;
  background: var(--accent-kargux);
  border: none;
  color: white;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.cookie-accept-btn:hover {
  background: #2563EB;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   LIGHT MODE THEME
   ═══════════════════════════════════════════════════════════════ */
body.light-mode {
  --bg-primary: #f5f5f7;
  --bg-secondary: #eeeef0;
  --bg-card: rgba(0, 0, 0, 0.03);
  --bg-card-hover: rgba(0, 0, 0, 0.06);
  --text-primary: #1a1a2e;
  --text-secondary: #5a5a72;
  --text-muted: #9a9ab0;
  --glass-bg: rgba(0, 0, 0, 0.03);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-border-hover: rgba(0, 0, 0, 0.15);
}

body.light-mode ::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

body.light-mode ::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
}

body.light-mode .navbar {
  background: rgba(245, 245, 247, 0.85);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .navbar.scrolled {
  background: rgba(245, 245, 247, 0.95);
}

body.light-mode .mobile-menu {
  background: rgba(245, 245, 247, 0.97);
}

body.light-mode .splash-screen {
  background: var(--bg-primary);
}

body.light-mode .nav-mobile-btn span {
  background: var(--text-primary);
}

body.light-mode .nav-toggle-btn {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .nav-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

body.light-mode .hero-title .gradient-text {
  -webkit-text-fill-color: transparent;
}

body.light-mode .section-divider {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

body.light-mode .timeline-dot {
  background: var(--bg-primary);
  border-color: rgba(0, 0, 0, 0.12);
}

body.light-mode .timeline-line {
  background: linear-gradient(to bottom, var(--accent-ghostnode), var(--accent-kargux), var(--accent-umai), rgba(0, 0, 0, 0.08));
}

body.light-mode .back-to-top {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .back-to-top:hover {
  background: rgba(0, 0, 0, 0.1);
}

body.light-mode .cookie-banner {
  background: rgba(245, 245, 247, 0.95);
  border-top-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .footer {
  border-top-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .footer-bottom {
  border-top-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .partner-placeholder {
  border-color: rgba(0, 0, 0, 0.1);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — New Components
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .toggle-label {
    font-size: 0.62rem;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.88rem;
  }

  .faq-answer p {
    padding: 0 18px 16px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PHASE 2 — ADVANCED COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

/* ── Achievements Ticker ──────────────────────────────────── */
.achievements-ticker {
  overflow: hidden;
  padding: 14px 0;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.05), rgba(255, 107, 107, 0.05), rgba(52, 211, 153, 0.05), rgba(167, 139, 250, 0.05));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 35s linear infinite;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
  white-space: nowrap;
}

.ticker-item {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.ticker-dot {
  color: var(--text-muted);
  opacity: 0.4;
  font-size: 0.9rem;
}

.gh-stat {
  color: var(--accent-kargux);
  font-weight: 700;
  font-family: var(--font-mono);
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.achievements-ticker:hover .ticker-track {
  animation-play-state: paused;
}

/* ── WhatsApp Floating Button ─────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 100px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 997;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.7);
}

.whatsapp-fab.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ── AI Chatbot Widget ────────────────────────────────────── */
.chatbot-widget {
  position: fixed;
  bottom: 32px;
  right: 100px;
  z-index: 999;
}

.chatbot-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3B82F6, #A78BFA);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  transition: all 0.3s var(--ease-out);
  position: relative;
  color: white;
}

.chatbot-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(59, 130, 246, 0.5);
}

.chatbot-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out);
}

.chatbot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FF6B6B;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badgePop 0.4s var(--ease-out);
}

.chatbot-badge.hidden {
  display: none;
}

@keyframes badgePop {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

/* Chat Window */
.chatbot-window {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 380px;
  height: 520px;
  border-radius: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s var(--ease-out);
  pointer-events: none;
}

.chatbot-window.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Header */
.chatbot-header {
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(167, 139, 250, 0.08));
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3B82F6, #A78BFA);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  position: relative;
}

.chatbot-status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #34D399;
  border: 2px solid var(--bg-secondary);
}

.chatbot-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.chatbot-status {
  font-size: 0.68rem;
  color: #34D399;
  font-weight: 500;
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s;
}

.chatbot-close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* Messages */
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar {
  width: 4px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.82rem;
  line-height: 1.6;
  animation: msgSlideIn 0.3s var(--ease-out);
}

@keyframes msgSlideIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-msg.bot {
  align-self: flex-start;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.15);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  align-self: flex-end;
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  color: white;
  border-bottom-right-radius: 4px;
}

.chat-msg a {
  color: inherit;
  text-decoration: underline;
  opacity: 0.9;
}

.chat-msg a:hover {
  opacity: 1;
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 14px;
  align-self: flex-start;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) {
  animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {

  0%,
  80%,
  100% {
    transform: scale(0.7);
    opacity: 0.4;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Quick Actions */
.chatbot-quick-actions {
  padding: 8px 16px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.chatbot-quick-btn {
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  color: var(--accent-kargux);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
}

.chatbot-quick-btn:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

/* Input Area */
.chatbot-input-area {
  padding: 12px 14px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(0, 0, 0, 0.15);
}

.chatbot-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
}

.chatbot-input:focus {
  border-color: var(--accent-kargux);
}

.chatbot-input::placeholder {
  color: var(--text-muted);
}

.chatbot-send {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease-out);
  flex-shrink: 0;
}

.chatbot-send:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* ── Page Transition ──────────────────────────────────────── */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  pointer-events: none;
}

.page-transition-inner {
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-out);
}

.page-transition.active .page-transition-inner {
  transform: scaleY(1);
  transform-origin: top;
}

/* ── Light Mode — Phase 2 overrides ──────────────────────── */
body.light-mode .chatbot-window {
  background: #f5f5f7;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body.light-mode .chatbot-header {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .chatbot-status-dot {
  border-color: #f5f5f7;
}

body.light-mode .chat-msg.bot {
  background: rgba(59, 130, 246, 0.07);
  border-color: rgba(59, 130, 246, 0.1);
}

body.light-mode .chatbot-input-area {
  background: rgba(0, 0, 0, 0.03);
  border-top-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .chatbot-input {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .achievements-ticker {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.03), rgba(255, 107, 107, 0.03), rgba(52, 211, 153, 0.03), rgba(167, 139, 250, 0.03));
  border-color: rgba(0, 0, 0, 0.05);
}

/* ── Responsive — Phase 2 ────────────────────────────────── */
@media (max-width: 768px) {
  .chatbot-widget {
    right: 20px;
    bottom: 20px;
  }

  .chatbot-window {
    width: calc(100vw - 40px);
    height: 420px;
    right: -12px;
    bottom: 64px;
  }

  .whatsapp-fab {
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .chatbot-toggle {
    width: 50px;
    height: 50px;
  }

  .achievements-ticker {
    padding: 10px 0;
  }

  .ticker-item {
    font-size: 0.72rem;
  }
}