/* ========================================
   KAIBURR CONSULTING — STYLES v2
   Dark premium theme — refined design
   ======================================== */

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

:root {
  --color-bg:        #060608;
  --color-bg-alt:    #0b0b12;
  --color-surface:   #12121e;
  --color-surface-2: #1a1a2a;
  --color-border:    rgba(255, 255, 255, 0.06);
  --color-border-hover: rgba(255, 255, 255, 0.12);
  --color-text:      #d0d0dc;
  --color-text-muted:#6e6e88;
  --color-white:     #ffffff;
  --color-accent:    #00d4aa;
  --color-accent-soft: rgba(0, 212, 170, 0.1);
  --color-accent2:   #4a9eff;
  --color-warn:      #f0b429;

  --font-body:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', sans-serif;

  --header-height: 72px;
  --container-max: 1180px;
  --radius: 16px;
  --radius-sm: 10px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  border: none;
  white-space: nowrap;
  position: relative;
}
.btn-arrow {
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.btn--primary {
  background: var(--color-accent);
  color: #060608;
  font-weight: 600;
}
.btn--primary:hover {
  background: #00eabb;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 212, 170, 0.3), 0 2px 8px rgba(0, 212, 170, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 212, 170, 0.1);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 6, 8, 0.4);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease-smooth), border-color 0.5s var(--ease-smooth);
}
.site-header.scrolled {
  background: rgba(6, 6, 8, 0.88);
  border-bottom-color: var(--color-border);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { width: auto; }
.logo-img--abstract { height: 36px; }
.logo-img--wordmark { height: 36px; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: color 0.3s var(--ease-smooth);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.4s var(--ease-out), left 0.4s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--color-white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; left: 0; }

.header-cta {
  padding: 9px 22px;
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.35s var(--ease-out);
  position: absolute;
  left: 5px;
}
.hamburger { top: 15px; }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after  { content: ''; top: 7px; }

.mobile-menu-toggle.active .hamburger { background: transparent; }
.mobile-menu-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.mobile-menu-toggle.active .hamburger::after  { top: 0; transform: rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6, 6, 8, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-smooth);
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-nav-links a {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: var(--font-heading);
  color: var(--color-text);
  transition: color 0.3s;
}
.mobile-nav-links a:hover { color: var(--color-accent); }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(0, 60, 80, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(20, 30, 60, 0.5) 0%, transparent 70%),
    var(--color-bg);
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(6, 6, 8, 0.3) 0%,
    rgba(6, 6, 8, 0.15) 30%,
    rgba(6, 6, 8, 0.4) 70%,
    rgba(6, 6, 8, 1) 100%
  );
}

/* Ambient glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}
.hero-glow--1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 212, 170, 0.07);
  top: 10%;
  left: -10%;
  animation: glowFloat 12s ease-in-out infinite;
}
.hero-glow--2 {
  width: 400px;
  height: 400px;
  background: rgba(74, 158, 255, 0.06);
  bottom: 10%;
  right: -5%;
  animation: glowFloat 15s ease-in-out infinite reverse;
}
@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(30px, -20px); }
  66%      { transform: translate(-20px, 15px); }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 40px;
  background: rgba(0, 212, 170, 0.05);
  opacity: 0;
  animation: heroTagIn 0.8s var(--ease-out) 0.2s forwards;
}
@keyframes heroTagIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--color-white);
  letter-spacing: -0.02em;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out) 0.4s forwards;
}
.hero-line { display: block; }
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #00d4aa 0%, #4a9eff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out) 0.6s forwards;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out) 0.8s forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out) 1.2s forwards;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
}
.scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 3px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; top: 6px; }
  50%      { opacity: 0.3; top: 18px; }
}
.scroll-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.2);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 128px 0;
  position: relative;
}
.section--dark { background: var(--color-bg); }
.section--accent { background: var(--color-bg-alt); }

/* Section ambient glow */
.section-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 212, 170, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.section-glow--contact {
  background: radial-gradient(ellipse, rgba(74, 158, 255, 0.04) 0%, transparent 70%);
}

/* Section dividers */
.section-divider {
  display: flex;
  justify-content: center;
  padding: 0;
}
.divider-line {
  width: 100%;
  max-width: var(--container-max);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 212, 170, 0.15) 20%,
    rgba(74, 158, 255, 0.15) 50%,
    rgba(0, 212, 170, 0.15) 80%,
    transparent 100%
  );
  margin: 0 28px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  margin-bottom: 20px;
  padding: 5px 14px;
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 40px;
  background: var(--color-accent-soft);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ========================================
   CARDS
   ======================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth);
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 170, 0.05);
}
.card:hover::before { opacity: 1; }

.card-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0, 212, 170, 0.3);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.card-icon {
  width: 44px;
  height: 44px;
  color: var(--color-accent);
  margin-bottom: 24px;
  padding: 8px;
  background: var(--color-accent-soft);
  border-radius: var(--radius-sm);
}
.card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
}
.card-text {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.card-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-accent);
  transition: gap 0.3s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link:hover { gap: 8px; }

/* ========================================
   SPLIT SECTIONS
   ======================================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-section--reverse .split-content { order: 2; }
.split-section--reverse .split-visual  { order: 1; }

.split-content .section-tag { text-align: left; }
.split-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}
.split-content p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.feature-list { margin-bottom: 32px; }
.feature-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: var(--color-text);
  font-size: 0.92rem;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(0, 212, 170, 0.4);
}

/* Visual cards (chart/outlook) */
.visual-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  overflow: hidden;
}
.visual-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}
.visual-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.visual-dot--green { background: var(--color-accent); }
.visual-dot--blue  { background: var(--color-accent2); }
.visual-card-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.visual-chart { width: 100%; }
.visual-card-footer {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.visual-legend {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.visual-legend-dot {
  display: block;
  width: 8px;
  height: 3px;
  border-radius: 2px;
}

/* Outlook card */
.outlook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.outlook-badge {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
}
.outlook-badge-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.outlook-badge--bullish .outlook-badge-value { color: var(--color-accent); }
.outlook-badge--neutral .outlook-badge-value { color: var(--color-accent2); }
.outlook-badge-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.outlook-drivers {
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.outlook-drivers-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.outlook-driver {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text);
  margin-bottom: 10px;
}
.outlook-driver-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========================================
   STATS
   ======================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 40px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: transform 0.5s var(--ease-out), border-color 0.5s, box-shadow 0.5s;
  position: relative;
  overflow: hidden;
}
.stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  opacity: 0;
  transition: opacity 0.4s, width 0.4s var(--ease-out);
}
.stat:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-hover);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.stat:hover::after { opacity: 1; width: 60px; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4aa, #4a9eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4aa, #4a9eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  display: block;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ========================================
   MERCH
   ======================================== */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.merch-item { text-align: center; }
.merch-image-wrap {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease-out), border-color 0.5s;
}
.merch-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.merch-item:hover .merch-image-wrap {
  transform: scale(1.03);
  border-color: var(--color-border-hover);
}
.merch-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 4px;
}
.merch-price {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.3s var(--ease-smooth), box-shadow 0.3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.15);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  text-align: center;
  color: var(--color-accent);
  margin-top: 20px;
  font-weight: 500;
  font-size: 0.95rem;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 64px 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}
.footer-logo {
  height: 32px;
  margin-bottom: 14px;
  opacity: 0.8;
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 64px;
  justify-content: flex-end;
}
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--color-accent); }

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  margin-top: 40px;
  border-top: 1px solid var(--color-border);
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.footer-domain {
  color: var(--color-accent);
  font-weight: 500;
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal-text,
.reveal-card {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-text.visible,
.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card { transition-delay: 0.1s; }
.cards-grid .reveal-card:nth-child(2) { transition-delay: 0.2s; }
.cards-grid .reveal-card:nth-child(3) { transition-delay: 0.3s; }

.stats-grid .reveal-card:nth-child(2) { transition-delay: 0.12s; }
.stats-grid .reveal-card:nth-child(3) { transition-delay: 0.24s; }
.stats-grid .reveal-card:nth-child(4) { transition-delay: 0.36s; }

.merch-grid .reveal-card:nth-child(2) { transition-delay: 0.15s; }
.merch-grid .reveal-card:nth-child(3) { transition-delay: 0.3s; }
.merch-grid .reveal-card:nth-child(4) { transition-delay: 0.45s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; gap: 48px; }
  .split-section--reverse .split-content { order: 1; }
  .split-section--reverse .split-visual  { order: 2; }
}

@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .mobile-menu-toggle { display: block; }

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

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

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { justify-content: flex-start; gap: 48px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .hero-glow { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; }
  .outlook-grid { grid-template-columns: 1fr; }
}
