/* ═══════════════════════════════════════════════════════════════════════════
   VexAI Landing Page Styles
   Separated from shared docs styles for performance and maintainability.
   ═══════════════════════════════════════════════════════════════════════════ */


/* ──────────────────────────────────────────────────────────────────────────
   Hero Section
   ────────────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  text-align: center;
  padding: calc(var(--navbar-height) + 2rem) var(--container-padding) 4rem;
  overflow: hidden;
  background: var(--color-bg);
}

/* Dot grid background — disabled, vortex canvas is the main effect */
.hero-bg {
  display: none;
}

/* Vortex canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* Floating gradient orbs — boosted to complement vortex */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.hero-orb--1 {
  width: 700px;
  height: 700px;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35) 0%, transparent 70%);
  animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb--2 {
  width: 600px;
  height: 600px;
  top: 5%;
  right: -15%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb--3 {
  width: 500px;
  height: 500px;
  bottom: -10%;
  left: 25%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(50px, 40px) scale(1.15); }
  66%      { transform: translate(-30px, -25px) scale(0.9); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-40px, 50px) scale(1.1); }
  66%      { transform: translate(30px, -40px) scale(0.85); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -50px) scale(1.2); }
}

/* Light beam — removed */
.hero-beam {
  display: none;
}
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  perspective: 1000px; /* Erzeugt die Tiefenwahrnehmung */
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 999px;
  padding: 0.5rem 1.4rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeInDown 0.8s var(--ease-out) both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(34, 197, 94, 0.6); }
  50%      { opacity: 0.5; box-shadow: 0 0 4px rgba(34, 197, 94, 0.3); }
}

/* Title */
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #818cf8 30%, #60a5fa 60%, #34d399 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;

    /* 3D-Effekt Ergänzung */
    font-weight: 500; /* Etwas dicker hilft dem 3D-Effekt */
    text-shadow:
      0.5px 0.5px 0px rgba(255,255,255,0.2), /* Lichtkante oben */
      1px 1px 0px rgba(0,0,0,0.15),       /* Erste Ebene Tiefe */
      2px 2px 3px rgba(0,0,0,0.1);        /* Weicher Schattenwurf */
}

.hero-br {
  display: none;
}

/* Hero CTA buttons */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  color: var(--color-white);
  background: linear-gradient(135deg, #7c3aed, #6366f1, #3b82f6);
  background-size: 200% 200%;
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.35), 0 0 0 0 rgba(124, 58, 237, 0);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.5), 0 0 0 2px rgba(124, 58, 237, 0.2);
  color: var(--color-white);
}

.btn-hero-primary:hover::before {
  opacity: 1;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-hero-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 58, 237, 0.5);
  color: var(--color-white);
  background: rgba(124, 58, 237, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Tech badges */
.hero-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.tech-badge {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-text-dim);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease-out);
  animation: fadeInUp 0.8s var(--ease-out) 0.45s both;
}

.tech-badge:hover {
  color: var(--color-text-muted);
  border-color: var(--color-border-light);
  background: rgba(124, 58, 237, 0.05);
}


/* ──────────────────────────────────────────────────────────────────────────
   Stats Section
   ────────────────────────────────────────────────────────────────────────── */

.stats-section {
  position: relative;
  padding: 4rem 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card .stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  position: relative;
}

.stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
}


/* ──────────────────────────────────────────────────────────────────────────
   Section Headers (shared)
   ────────────────────────────────────────────────────────────────────────── */

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-purple);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 0;
  line-height: 1.7;
}


/* ──────────────────────────────────────────────────────────────────────────
   Features (Bento Grid)
   ────────────────────────────────────────────────────────────────────────── */

.features-section {
  padding: 6rem 0;
  background: var(--color-bg);
  position: relative;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.bento-card {
  position: relative;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.bento-card-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: var(--gradient);
  opacity: 0;
  transition: all 0.4s var(--ease-out);
  filter: blur(0px);
}

.bento-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(124, 58, 237, 0.1);
}

.bento-card:hover .bento-card-glow {
  opacity: 1;
  width: 100%;
  filter: blur(8px);
}

.bento-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(124, 58, 237, 0.1);
  color: #a78bfa;
  margin-bottom: 1.25rem;
  transition: all 0.3s var(--ease-out);
}

.bento-card:hover .bento-icon {
  background: rgba(124, 58, 237, 0.18);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

/* Icon color variants */
.bento-icon--shield { background: rgba(34, 197, 94, 0.1); color: #4ade80; }
.bento-card:hover .bento-icon--shield { background: rgba(34, 197, 94, 0.18); box-shadow: 0 0 20px rgba(34, 197, 94, 0.15); }

.bento-icon--voice { background: rgba(59, 130, 246, 0.1); color: #60a5fa; }
.bento-card:hover .bento-icon--voice { background: rgba(59, 130, 246, 0.18); box-shadow: 0 0 20px rgba(59, 130, 246, 0.15); }

.bento-icon--workflow { background: rgba(249, 115, 22, 0.1); color: #fb923c; }
.bento-card:hover .bento-icon--workflow { background: rgba(249, 115, 22, 0.18); box-shadow: 0 0 20px rgba(249, 115, 22, 0.15); }

.bento-icon--agent { background: rgba(236, 72, 153, 0.1); color: #f472b6; }
.bento-card:hover .bento-icon--agent { background: rgba(236, 72, 153, 0.18); box-shadow: 0 0 20px rgba(236, 72, 153, 0.15); }

.bento-icon--event { background: rgba(234, 179, 8, 0.1); color: #facc15; }
.bento-card:hover .bento-icon--event { background: rgba(234, 179, 8, 0.18); box-shadow: 0 0 20px rgba(234, 179, 8, 0.15); }

.bento-icon--integration { background: rgba(20, 184, 166, 0.1); color: #2dd4bf; }
.bento-card:hover .bento-icon--integration { background: rgba(20, 184, 166, 0.18); box-shadow: 0 0 20px rgba(20, 184, 166, 0.15); }

.bento-icon--db { background: rgba(99, 102, 241, 0.1); color: #818cf8; }
.bento-card:hover .bento-icon--db { background: rgba(99, 102, 241, 0.18); box-shadow: 0 0 20px rgba(99, 102, 241, 0.15); }

.bento-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.bento-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0;
}


/* ──────────────────────────────────────────────────────────────────────────
   Skills Section
   ────────────────────────────────────────────────────────────────────────── */

.skills-section {
  padding: 6rem 0;
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.skill-card {
  padding: 1.1rem 1.4rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease-out);
}

.skill-card:hover {
  border-color: rgba(124, 58, 237, 0.25);
  background: rgba(124, 58, 237, 0.04);
  transform: translateX(4px);
}

.skill-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.skill-name {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-purple);
}

.skill-count {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-dim);
  background: rgba(124, 58, 237, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}

.skill-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}


/* ──────────────────────────────────────────────────────────────────────────
   Quick Start (Terminal Window)
   ────────────────────────────────────────────────────────────────────────── */

.quickstart-section {
  padding: 6rem 0;
  background: var(--color-bg);
}

.terminal-window {
  max-width: 720px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-card);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.03);
  position: relative;
}

.terminal-window::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--gradient);
  opacity: 0.5;
}

.terminal-header {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--color-elevated);
  border-bottom: 1px solid var(--color-border);
  gap: 1rem;
}

.terminal-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot--red { background: #ff5f57; }
.terminal-dot--yellow { background: #ffbd2e; }
.terminal-dot--green { background: #28c840; }

.terminal-tabs {
  display: flex;
  gap: 0;
}

.terminal-tab {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-dim);
  background: none;
  border: none;
  padding: 0.4rem 1rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease-out);
}

.terminal-tab:hover {
  color: var(--color-text-muted);
}

.terminal-tab.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
}

.terminal-spacer {
  flex: 1;
}

.terminal-body {
  padding: 0;
}

.terminal-body pre {
  margin: 0;
  border: none;
  border-left: none;
  border-radius: 0;
  background: var(--color-card);
  padding: 1.5rem;
}

.terminal-body pre[class*="language-"] {
  margin: 0;
  border: none;
  border-left: none;
  border-radius: 0;
  background: var(--color-card);
}


/* ──────────────────────────────────────────────────────────────────────────
   CTA Section
   ────────────────────────────────────────────────────────────────────────── */

.cta-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  background: var(--color-bg);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 30% 60%, rgba(59, 130, 246, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 70% 40%, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.cta-section p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}


/* ──────────────────────────────────────────────────────────────────────────
   Footer
   ────────────────────────────────────────────────────────────────────────── */

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-border);
}

.footer-brand .logo {
  font-size: 1.3rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-brand .footer-tagline {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  margin: 0 0 0.25rem;
}

.footer-col a {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1.5rem;
}

.footer-bottom p {
  color: var(--color-text-dim);
  font-size: 0.8rem;
  margin: 0;
}


/* ──────────────────────────────────────────────────────────────────────────
   Animations
   ────────────────────────────────────────────────────────────────────────── */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.revealed > *:nth-child(1)  { transition-delay: 0ms; }
.stagger-children.revealed > *:nth-child(2)  { transition-delay: 50ms; }
.stagger-children.revealed > *:nth-child(3)  { transition-delay: 100ms; }
.stagger-children.revealed > *:nth-child(4)  { transition-delay: 150ms; }
.stagger-children.revealed > *:nth-child(5)  { transition-delay: 200ms; }
.stagger-children.revealed > *:nth-child(6)  { transition-delay: 250ms; }
.stagger-children.revealed > *:nth-child(7)  { transition-delay: 300ms; }
.stagger-children.revealed > *:nth-child(8)  { transition-delay: 350ms; }
.stagger-children.revealed > *:nth-child(9)  { transition-delay: 400ms; }
.stagger-children.revealed > *:nth-child(10) { transition-delay: 450ms; }
.stagger-children.revealed > *:nth-child(11) { transition-delay: 500ms; }
.stagger-children.revealed > *:nth-child(12) { transition-delay: 550ms; }


/* ──────────────────────────────────────────────────────────────────────────
   Responsive
   ────────────────────────────────────────────────────────────────────────── */

/* 480px+ */
@media (min-width: 480px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px+ */
@media (min-width: 768px) {
  .hero-br {
    display: inline;
  }

  .stats-section .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card--wide {
    grid-column: span 2;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* 1024px+ */
@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento-card--wide {
    grid-column: span 1;
  }

  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 1280px+ */
@media (min-width: 1280px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .bento-card--wide {
    grid-column: span 2;
  }

  .skills-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .hero-beam,
  .hero-badge-dot,
  .hero-gradient-text {
    animation: none;
  }

  .hero-title,
  .hero-subtitle,
  .hero-badge,
  .hero-cta,
  .hero-tech {
    animation: none;
    opacity: 1;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .stagger-children > * {
    opacity: 1;
    transform: none;
  }
}


/* ──────────────────────────────────────────────────────────────────────────
   Print Styles
   ────────────────────────────────────────────────────────────────────────── */

@media print {
  .hero-bg,
  .hero-particles,
  .hero-orb,
  .hero-beam,
  .cta-section,
  .hero-cta {
    display: none !important;
  }
}
