﻿/* ─── Design tokens ─── */
:root {
  --primary: #f59e0b;
  --secondary: #ffd700;
  --bg-dark: #09090b;
  --border: rgba(255, 215, 0, 0.2);
  --text: #f9fafb;
  --text-muted: #9ca3af;
  --glow: rgba(255, 215, 0, 0.15);
  --glow-strong: rgba(255, 215, 0, 0.35);
  --card-bg: rgba(24, 24, 27, 0.65);
  --card-border: rgba(255, 215, 0, 0.12);
  --card-border-hover: rgba(255, 215, 0, 0.45);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 215, 0, 0.22);
  background: rgba(255, 215, 0, 0.06);
  color: var(--secondary);
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out);
}
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 215, 0, 0.45);
  box-shadow: 0 14px 40px -18px rgba(255, 215, 0, 0.28);
  background: rgba(255, 215, 0, 0.09);
}
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, rgba(245,158,11,0.95), rgba(255,215,0,0.95));
  color: rgba(9, 9, 11, 0.92);
  border-color: rgba(255, 215, 0, 0.55);
  box-shadow:
    0 18px 50px -22px rgba(255, 215, 0, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary:hover {
  box-shadow:
    0 22px 60px -22px rgba(255, 215, 0, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

/* ─── Canvas ─── */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ─── Ambient orbs ─── */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.18), transparent 70%);
  top: -10%; left: -8%;
  animation: orbFloat1 18s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,0.12), transparent 70%);
  top: 40%; right: -12%;
  animation: orbFloat2 22s ease-in-out infinite;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.10), transparent 70%);
  bottom: 5%; left: 20%;
  animation: orbFloat3 20s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(60px,40px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-50px,30px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-50px)} }

/* ─── Z-index layers ─── */
.nav, .hero, .section, .footer { position: relative; z-index: 1; }

/* ─── Scroll reveal ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
[data-reveal][data-delay="5"] { transition-delay: 0.5s; }

/* ═══════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 16px 5% 0;
  z-index: 100;
  transition: all 0.4s var(--ease-out);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 0;
  transition: padding 0.4s var(--ease-out);
}
.nav.scrolled {
  padding-top: 0;
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}
.nav.scrolled .nav-inner { padding: 14px 0; }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  justify-self: start;
  color: var(--text);
  text-decoration: none;
}
.nav-brand img { width: 36px; height: 36px; }
.nav-brand:hover { color: var(--text); }

.mobile-br { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 40px;
}
.nav-spacer {
  justify-self: end;
  width: 120px;
  height: 1px;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.25s, text-shadow 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--secondary); text-shadow: 0 0 20px rgba(255,215,0,0.3); }
.nav-links a:hover::after { width: 100%; }

/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 5% 80px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 999px;
  padding: 8px 20px 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255,215,0,0.6);
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(40px, 7vw, 82px);
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 28px;
  max-width: 920px;
  letter-spacing: -0.02em;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 40%, #fff 60%, var(--secondary) 80%, var(--primary) 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: 300% center; } }

.hero p {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Stats bar */
.stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 64px;
  padding: 28px 44px;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(255,215,0,0.05),
    0 8px 40px -12px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition: border-color 0.4s, box-shadow 0.4s;
}
.stats:hover {
  border-color: var(--card-border-hover);
  box-shadow:
    0 0 0 1px rgba(255,215,0,0.1),
    0 8px 60px -12px rgba(255,215,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.stat { text-align: center; flex: 1; padding: 8px 24px; }
.stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,215,0,0.25), transparent);
  flex-shrink: 0;
}
.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary);
  text-shadow: 0 0 30px rgba(255,215,0,0.2);
  line-height: 1.2;
}
.stat-label {
  font-size: 13px;
  margin-top: 6px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* Scroll cue */
.hero-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float-cue 2.5s ease-in-out infinite;
}
.hero-scroll-cue svg { opacity: 0.5; }
@keyframes float-cue {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ═══════════════════════════════════
   SECTIONS SHARED
   ═══════════════════════════════════ */
.section {
  padding: 120px 5%;
  max-width: 1320px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 72px; }
.section-tag {
  display: inline-block;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(255,215,0,0.06);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 999px;
}
.section-title {
  font-size: clamp(30px, 4.2vw, 48px);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.section-desc {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════
   VIDEO SECTION
   ═══════════════════════════════════ */
.video-placeholder {
  max-width: 980px;
  margin: 0 auto;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-lg);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,215,0,0.04) 0%, transparent 70%);
}
.video-placeholder:hover { border-color: rgba(255,215,0,0.4); }

.video-play-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--secondary);
  transition: all 0.3s var(--ease-out);
  position: relative;
}
.video-play-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,215,0,0.1);
  animation: pulse-ring 2.5s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.video-placeholder h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--secondary);
  position: relative;
}
.video-placeholder p {
  max-width: 520px;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
}

/* Responsive YouTube embed */
.video-embed {
  max-width: 980px;
  margin: 0 auto;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  box-shadow:
    0 0 0 1px rgba(255,215,0,0.05),
    0 10px 50px -18px rgba(0,0,0,0.6);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-bullets {
  max-width: 980px;
  margin: 18px auto 0;
  padding: 26px 28px;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.video-bullets h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--secondary);
  letter-spacing: 0.2px;
}
.video-bullets-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 14px;
}
.video-bullets ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.video-bullets li {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.video-bullets li::before {
  content: '✓';
  position: static;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--secondary);
  opacity: 0.95;
  transform: translateY(1px);
}

/* ═══════════════════════════════════
   BENTO GRID — FEATURES
   ═══════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bento-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.bento-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  box-shadow: 0 20px 60px -20px rgba(255,215,0,0.1), 0 0 40px -20px rgba(255,215,0,0.08);
}
.bento-card:hover::before { opacity: 1; }

.bento-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255,215,0,0.04), transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}
.bento-card:hover .bento-card-glow { opacity: 1; }

.bento-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  font-size: 24px;
  background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(255,215,0,0.04));
  border: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.bento-card:hover .bento-icon {
  border-color: rgba(255,215,0,0.5);
  box-shadow: 0 0 20px rgba(255,215,0,0.1);
}

.bento-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
.bento-card p {
  color: var(--text-muted);
  line-height: 1.72;
  font-size: 15px;
  text-align: center;
}

/* ═══════════════════════════════════
   STEPS — HOW IT WORKS
   ═══════════════════════════════════ */
.steps-timeline { position: relative; }
.timeline-track { display: none; }

.steps {
  display: grid;
  gap: 20px;
}
.steps.six-steps {
  grid-template-columns: repeat(3, 1fr);
}

.step {
  text-align: left;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.step:hover {
  transform: translateY(-3px);
  border-color: var(--card-border-hover);
  box-shadow: 0 16px 48px -16px rgba(255,215,0,0.08);
}
.step:hover::after { transform: scaleX(1); }

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
  border: 1px solid rgba(255, 215, 0, 0.35);
  color: var(--secondary);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
  transition: all 0.3s var(--ease-out);
}
.step:hover .step-num {
  background: linear-gradient(135deg, rgba(255,215,0,0.25), rgba(255,215,0,0.1));
  box-shadow: 0 0 24px rgba(255,215,0,0.15);
  border-color: rgba(255,215,0,0.6);
}

.step-content {}

.step h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}
.step p {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 14px;
}

/* ═══════════════════════════════════
   SPLIT SECTION (FROM FILE)
   ═══════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}
.split-copy {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.split-copy h3 {
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.split-copy p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 15px;
}
.split-copy p + p { margin-top: 12px; }
.split-copy .muted { color: rgba(156, 163, 175, 0.85); }
.split-media {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  opacity: 0.98;
}

/* ═══════════════════════════════════
   OUTPUTS
   ═══════════════════════════════════ */
.outputs-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.output-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  overflow: hidden;
  position: relative;
}
.output-card:hover {
  transform: translateY(-3px);
  border-color: var(--card-border-hover);
  box-shadow: 0 18px 54px -22px rgba(255,215,0,0.12);
}
.output-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,215,0,0.12);
  margin-bottom: 14px;
  display: block;
}
.output-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}
.output-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Manage (reuse bento) */
.manage-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.manage-grid .bento-card {
  padding: 28px;
}
.manage-grid .bento-icon { margin: 0 0 18px; }
.manage-grid .bento-card h3,
.manage-grid .bento-card p { text-align: left; }

/* ═══════════════════════════════════
   FAQ
   ═══════════════════════════════════ */
.faq {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.faq-item[open] {
  border-color: var(--card-border-hover);
  box-shadow: 0 18px 54px -24px rgba(255,215,0,0.10);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--secondary);
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.16);
  transition: transform 0.25s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

/* ═══════════════════════════════════
   OG COMPONENTS
   ═══════════════════════════════════ */
.components-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.component-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.component-card:hover {
  transform: translateY(-3px);
  border-color: var(--card-border-hover);
  box-shadow: 0 18px 54px -24px rgba(255,215,0,0.10);
}
.component-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(255,215,0,0.04));
  border: 1px solid rgba(255,215,0,0.18);
  margin-bottom: 12px;
}
.component-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.component-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ═══════════════════════════════════
   CONTACT
   ═══════════════════════════════════ */
.contact-layout {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.contact-hero-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
  height: 100%;
  min-height: 220px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
.contact-hero-card:hover {
  border-color: var(--card-border-hover);
  box-shadow: 0 16px 48px -16px rgba(255,215,0,0.08);
}

.contact-hero-card h3 {
  font-size: 22px;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.01em;
}
.contact-hero-card p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 15px;
  margin: 0;
}

.contact-cards { display: grid; gap: 14px; }

.contact-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  transform: translateX(6px);
  border-color: var(--card-border-hover);
  box-shadow: -4px 0 24px rgba(255,215,0,0.06);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 12px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
  transition: all 0.3s;
}
.contact-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--secondary);
  fill: none;
  display: block;
}
.contact-card:hover .contact-card-icon {
  background: rgba(255,215,0,0.14);
  border-color: rgba(255,215,0,0.4);
  box-shadow: 0 0 16px rgba(255,215,0,0.1);
}

.contact-card-info { display: grid; gap: 4px; }
.contact-card-label {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.contact-card-value {
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
  text-decoration: none;
}
.contact-card-value:hover { text-decoration: underline; }

.footer-link {
  display: block;
  color: var(--text-muted);
  padding: 5px 0;
  font-size: 14px;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-link:hover { color: var(--text); text-decoration: underline; }

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.footer {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 72px 5% 40px;
  position: relative;
  z-index: 1;
}
.footer-grid.compact {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 16px;
}
.footer-logo img { width: 36px; height: 36px; }

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  font-size: 15px;
}
.footer-col h5 {
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}
.footer-col span {
  display: block;
  color: var(--text-muted);
  padding: 5px 0;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col span:hover { color: var(--text); }

.footer-bottom {
  max-width: 1320px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,215,0,0.08);
  color: var(--text-muted);
  font-size: 13px;
}

/* ═══════════════════════════════════
   LIGHT THEME
   ═══════════════════════════════════ */
[data-theme="light"] .bento-card,
[data-theme="light"] .contact-hero-card,
[data-theme="light"] .contact-card,
[data-theme="light"] .stats,
[data-theme="light"] .video-placeholder,
[data-theme="light"] .step {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
}
[data-theme="light"] .ambient-orb { opacity: 0.15; }

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-row-2 { grid-template-columns: 1fr; }
  .steps.six-steps { grid-template-columns: repeat(2, 1fr); }
  .stats { flex-wrap: wrap; justify-content: center; padding: 24px 20px; gap: 8px; }
  .stat-divider { display: none; }
  .stat { min-width: 140px; padding: 12px 20px; }
  .contact-layout { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .outputs-grid { grid-template-columns: 1fr; }
  .manage-grid { grid-template-columns: 1fr; }
  .components-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 14px 0;
  }
  /* Keep nav links on a single row; shrink + allow horizontal scroll if needed */
  .nav-links {
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { font-size: 12px; letter-spacing: 0.15px; line-height: 1.1; text-align: center; }
  .mobile-br { display: block; height: 0; width: 100%; }
  .nav-brand { display: none; }
  .nav-spacer { display: none; }

  .hero { padding: 120px 5% 60px; min-height: auto; }
  .hero h1 { font-size: clamp(32px, 9vw, 42px); }
  .hero p, .section-desc { font-size: 16px; }
  .hero-badge { font-size: 11px; }

  .stats {
    flex-direction: column;
    gap: 0;
    padding: 20px;
    width: 100%;
  }
  .stat { min-width: unset; padding: 16px 8px; }
  .stat-divider { display: block; width: 60%; height: 1px; margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
  }
  .stat-value { font-size: 30px; }

  .section { padding: 80px 5%; }
  .section-header { margin-bottom: 48px; }

  .bento-grid, .steps.six-steps { grid-template-columns: 1fr; }
  .bento-card { padding: 28px; }
  .components-grid { grid-template-columns: 1fr; }

  .footer-grid.compact { grid-template-columns: 1fr; }
  .video-placeholder { min-height: 280px; padding: 32px 24px; }
  .video-bullets { padding: 22px 20px; }

  .hero-scroll-cue { margin-top: 40px; }
  .ambient-orb { opacity: 0.2; }
  .orb-1 { width: 300px; height: 300px; }
  .orb-2 { width: 250px; height: 250px; }
  .orb-3 { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .stats { margin-top: 40px; }
  .bento-card { padding: 24px; }
  .contact-hero-card-inner { padding: 28px; }
  .contact-hero-card h3 { font-size: 22px; }
}
