/* ========= VARIABLES ========= */
:root {
  /* Premium Dark Theme Colors */
  --bg-dark: #050505;
  --bg-panel: rgba(20, 20, 25, 0.6);
  --bg-panel-hover: rgba(30, 30, 38, 0.8);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;

  /* Accents (Electric Blue & Soft Purple) */
  --accent-primary: #3b82f6;
  --accent-glow: rgba(59, 130, 246, 0.5);
  --accent-secondary: #8b5cf6;

  /* Borders & Glass */
  --border-glass: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(16px);

  /* Layout */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;

  /* Typography */
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Animations */
  --trans-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========= RESET & BASE ========= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.dark-theme {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.logo-text,
.hero-badge {
  font-family: var(--font-heading);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-sm {
  max-width: 800px;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ========= BACKGROUND GLOW ORBS ========= */
.glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: float 20s infinite alternate ease-in-out;
}

.orb-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
}

.orb-2 {
  bottom: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
  animation-delay: -5s;
}

.orb-3 {
  top: 40%;
  left: 40%;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, #0ea5e9 0%, transparent 70%);
  opacity: 0.2;
  animation-delay: -10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(5%, 10%) scale(1.1);
  }
}

/* ========= UTILITIES & COMPONENTS ========= */
.text-gradient {
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-panel,
.glass-card,
.bento-item,
.story-card {
  background: var(--bg-panel);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-weight: 500;
  border-radius: 100px;
  transition: var(--trans-smooth);
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--accent-primary);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
  background: #2563eb;
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-glass);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ========= HEADER ========= */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0;
  transition: var(--trans-smooth);
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.site-logo-img {
  width: 55px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.4));
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-accent {
  color: var(--accent-primary);
}

.logo-corp {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-main);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
}

/* ========= HERO ========= */
.min-h-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  /* Account for header */
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--accent-primary);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.cta-row {
  display: flex;
  gap: 1rem;
}

/* Dashboard Mockup abstract art */
.main-dashboard {
  width: 100%;
  aspect-ratio: 4/3;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.main-dashboard:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-glass);
}

.panel-dots {
  display: flex;
  gap: 6px;
}

.panel-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.panel-dots span:nth-child(1) {
  background: #ef4444;
}

.panel-dots span:nth-child(2) {
  background: #eab308;
}

.panel-dots span:nth-child(3) {
  background: #22c55e;
}

.panel-title {
  font-size: 0.8rem;
  color: #22c55e;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.metric-card {
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.metric-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.text-accent {
  color: var(--accent-primary);
}

.metric-chart {
  margin-top: 1rem;
  height: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.chart-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.chart-bar {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 80%;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.4), transparent);
  border-top: 2px solid var(--accent-primary);
  border-radius: 4px 4px 0 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
}

.scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, #fff, transparent);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* ========= SECTIONS ========= */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-badge {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-heading {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-body {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* === Problem Section (Sticky Scroll) === */
.layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}

.sticky-col {
  position: sticky;
  top: 30vh;
  height: max-content;
}

.col-visuals {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-card {
  padding: 2.5rem;
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateX(10px);
}

.card-icon {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  margin-bottom: 1rem;
}

.story-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.story-card p {
  color: var(--text-muted);
}

/* === GLOBAL UI POLISH UTILITIES === */
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-plate {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Solutions Bento Grid === */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(320px, auto);
  gap: 1.5rem;
}

.bento-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 23, 36, 0.6);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, border-color 0.4s ease;
  border-radius: var(--radius-lg);
}

.bento-item:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

/* JS Hover Glow Effect Container */
.bento-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(59, 130, 246, 0.08), transparent 40%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.bento-item:hover::before {
  opacity: 1;
}

.bento-visual {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

.bento-visual.full-bleed {
  padding: 0;
}

.bento-visual .bento-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.bento-visual .bento-img.img-blend {
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(circle closest-side, black 70%, transparent 100%);
  mask-image: radial-gradient(circle closest-side, black 70%, transparent 100%);
  filter: drop-shadow(0 5px 15px rgba(59,130,246,0.1));
}

.bento-visual.full-bleed .bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  max-height: none;
}

.bento-item:hover .bento-img {
  transform: translateY(-8px) scale(1.05);
  filter: drop-shadow(0 20px 30px rgba(59,130,246,0.3));
}

.bento-item:hover .bento-visual.full-bleed .bento-img {
  transform: scale(1.08);
}

.bento-large .bento-visual .bento-img {
  max-height: 100%;
  width: auto;
}
.bento-large:hover .bento-visual .bento-img {
  transform: scale(1.05) translateY(-5px) rotate(-1deg);
}

.bento-content {
  position: relative;
  z-index: 2;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 36, 0.9) 20%, rgba(15, 23, 36, 1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-shrink: 0;
}

.bento-wide .bento-content {
  padding: 3rem;
  background: none;
  height: auto;
}

.bento-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.bento-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.bento-large {
  grid-column: span 2;
}

.bento-wide {
  grid-column: span 4;
}

.grid-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  color: var(--accent-primary);
  font-weight: 600;
}

.grid-link .arrow {
  margin-left: 0.5rem;
  transition: transform 0.2s;
}

.grid-link:hover .arrow {
  transform: translateX(5px);
}

.pattern-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.3;
  z-index: 0;
}

.row-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* === Stats === */
.border-y {
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(0, 0, 0, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff, #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-num span {
  font-size: 2rem;
}

.stat-desc {
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

/* === CTA === */
.cta-card {
  padding: 5rem 3rem;
  background: linear-gradient(135deg, rgba(30, 30, 38, 0.8), rgba(59, 130, 246, 0.1));
}

/* === FOOTER === */
.site-footer {
  padding: 5rem 0 2rem;
  background: #020202;
  border-top: 1px solid var(--border-glass);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-desc {
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 300px;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-brand-cloud-section {
  padding-bottom: 3rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border-glass);
}

.brand-cloud-large-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(250, 252, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.footer-brand-cloud-large {
  max-width: 100%;
  max-height: 350px;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.9;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.footer-brand-cloud-large:hover {
  opacity: 1;
  transform: scale(1.02) translateY(-2px);
}

/* ========= ANIMATIONS & REVEALS ========= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* === Solutions Carousel === */
.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 23, 36, 0.6);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 3rem 4rem 5rem 4rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.carousel-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}

.carousel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.carousel-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.carousel-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 36, 0.8);
  color: white;
  border: 1px solid var(--border-glass);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.carousel-btn:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.prev-btn { left: 1rem; }
.next-btn { right: 1rem; }

.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dots .dot.active {
  background: var(--accent-primary);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-large,
  .bento-wide {
    grid-column: span 2;
  }

  .row-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .carousel-slide {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .carousel-content h3 {
    font-size: 2rem;
  }

  .carousel-content a.btn {
    align-self: center !important;
  }
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 2.5rem;
  }

  .cta-row {
    justify-content: center;
  }

  .main-nav {
    display: none;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-glass);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .nav-toggle {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .layout-grid {
    grid-template-columns: 1fr;
  }

  .sticky-col {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }

  .bento-grid {
    display: flex;
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .carousel-container {
    padding: 2rem 1rem 4rem 1rem;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  .prev-btn { left: 0.5rem; }
  .next-btn { right: 0.5rem; }
  .carousel-img {
    max-height: 50vh;
  }
  .carousel-content h3 {
    font-size: 1.8rem;
  }
}