/* =============================================
   SKYSTUDIO — IMMERSIVE LANDING
   Palette: deep space black / electric cyan / violet
   Type: Barlow Condensed (display) + Barlow (body)
   ============================================= */

:root {
  --bg:       #07070f;
  --bg2:      #0d0d1a;
  --cyan:     #00e5ff;
  --cyan-dim: rgba(0, 229, 255, 0.15);
  --orange:   #FF6130;
  --orange-dim: rgba(255, 97, 48, 0.15);
  --violet:   #7c3aed;
  --violet-dim: rgba(124, 58, 237, 0.2);
  --white:    #f0f0ff;
  --dim:      #c8c8e0;
  --border:   rgba(255,255,255,0.10);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

/* === Reset === */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* === Fixed Canvas (sits behind everything) === */
.video-container {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 10;           /* Ensure it's above the background canvas */
  pointer-events: none;  /* Let parent clicks pass through... */
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background: var(--surface);
  border: 1px solid rgba(255, 97, 48, 0.3);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  pointer-events: auto;  /* ...but catch clicks here */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}
#bgCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: auto; /* Allow interactions */
  /* Punch up glow/bloom: brightness slightly above 1 + saturate for neon pop */
  filter: brightness(1.25) saturate(1.4);
}

/* === Nav === */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  transition: background 0.4s, box-shadow 0.4s;
}
#nav.solid {
  background: rgba(7, 7, 15, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.logo-mark { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(7,7,15,0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; color: var(--dim); }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 24px rgba(255,97,48,0.3);
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(255,97,48,0.5);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn-full { width: 100%; }

/* === Scene Sections (over fixed canvas) === */
.scene-section {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 2rem 80px;
  pointer-events: none; /* Let clicks pass through to canvas */
}
.scene-section * {
  pointer-events: auto; /* Re-enable for section content */
}

/* Side label */
.side-label {
  position: absolute;
  top: 50%;
  left: -3rem;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
}

/* ============ HERO BADGE ============ */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255, 97, 48, 0.07) 0%, rgba(124, 58, 237, 0.07) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(240, 240, 255, 0.85);
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ============ VIDEO SECTION ============ */
.video-section {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
  background: rgba(7,7,15,0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.video-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
}
.video-section-header .section-headline { font-size: clamp(2rem, 4vw, 3.5rem); }
.video-section-header .section-body { font-size: 1rem; }

/* ============ HERO ============ */
#hero {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-headline .line { display: block; }
.hero-headline .line-1 {
  color: var(--white);
  clip-path: inset(0 100% 0 0);
  animation: revealLine 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.hero-headline .line-2 {
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
  clip-path: inset(0 100% 0 0);
  animation: revealLine 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}
@keyframes revealLine {
  to { clip-path: inset(0 0% 0 0); }
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease 0.9s forwards;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: inline-block;
}
.stat-unit {
  font-size: 1rem;
  color: var(--orange);
  font-weight: 600;
  margin-left: 2px;
  display: inline-block;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(12px); opacity: 1; }
}

/* ============ PROBLEM ============ */
#problem { background: transparent; }
.section-content {
  max-width: 680px;
  background: rgba(7, 7, 15, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 2.5rem 2.5rem 2rem;
}
.section-content--left { margin-right: auto; }
.section-content--right { margin-left: auto; }

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-shadow: 0 0 8px rgba(0,0,0,1), 0 0 24px rgba(0,0,0,1), 0 0 48px rgba(0,0,0,0.9), 0 2px 4px rgba(0,0,0,1);
}
.section-headline em {
  font-style: normal;
  color: var(--orange);
}
.section-body {
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.75;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9), 0 0 24px rgba(0,0,0,0.7);
  font-weight: 400;
  margin-bottom: 2rem;
  max-width: 520px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

.problem-cards { display: flex; flex-direction: column; gap: 1px; margin-top: 2rem; }
.prob-card {
  padding: 1.5rem 1.75rem;
  background: rgba(7,7,15,0.7);
  border: 1px solid var(--border);
  border-left: 2px solid var(--orange);
  transition: background 0.3s, border-color 0.3s;
}
.prob-card:nth-child(2) { transition-delay: 0.1s; }
.prob-card:nth-child(3) { transition-delay: 0.2s; }
.prob-card:hover { background: rgba(0,229,255,0.04); border-color: var(--cyan); }
.prob-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.prob-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--white); }
.prob-card p { font-size: 0.92rem; color: rgba(220, 220, 240, 0.9); line-height: 1.65; }

/* ============ SOLUTION ============ */
#solution { background: transparent; }
.solution-pillars { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.pillar {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.pillar:nth-child(2) { transition-delay: 0.1s; }
.pillar:nth-child(3) { transition-delay: 0.2s; }
.pillar-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  min-width: 120px;
}
.pillar-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 400;
}

/* ============ TECHNOLOGY ============ */
#technology { background: transparent; }
.spec-stack { margin: 2rem 0 1rem; display: flex; flex-direction: column; gap: 1rem; }
.spec-row {
  display: grid;
  grid-template-columns: 110px 1fr 100px;
  align-items: center;
  gap: 1rem;
}
.spec-row:nth-child(2) { transition-delay: 0.08s; }
.spec-row:nth-child(3) { transition-delay: 0.16s; }
.spec-row:nth-child(4) { transition-delay: 0.24s; }
.spec-key { font-size: 0.8rem; color: rgba(220, 220, 240, 0.85); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }
.spec-bar-wrap { height: 3px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.spec-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), #a78bfa);
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.spec-bar { width: var(--w) !important; }
.spec-val { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--cyan); text-align: right; }
.spec-note { font-size: 0.8rem; color: var(--dim); letter-spacing: 0.04em; margin-top: 1.5rem; }

/* ============ PLATFORM ============ */
#platform { background: transparent; }
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 2rem 0;
  border: 1px solid var(--border);
}
.platform-stat {
  padding: 1.25rem;
  text-align: center;
  background: rgba(7,7,15,0.6);
  backdrop-filter: blur(8px);
}
.platform-val {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
}
.platform-key { font-size: 0.72rem; color: rgba(220, 220, 240, 0.8); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.platform-components { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.comp {
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1rem;
  background: rgba(7,7,15,0.5);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.comp-k { font-size: 0.7rem; color: rgba(210, 210, 235, 0.85); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.comp-v { font-size: 0.9rem; font-weight: 500; color: var(--white); }

/* ============ DEMO ============ */
.demo-section {
  position: relative;
  z-index: 1;
  padding: 8rem 2rem;
  min-height: 100vh;
  background: transparent;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  pointer-events: none;
}
.demo-overlay-container {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column;
  justify-content: space-between;
  height: 80vh;
  pointer-events: none;
}
.demo-header, .demo-tags, .demo-interactive-ui { pointer-events: auto; }
.container { max-width: 1100px; margin: 0 auto; pointer-events: none; }
.container * { pointer-events: auto; }
.demo-header { margin-bottom: 3rem; }
.demo-header .section-headline { margin-bottom: 1rem; }
.demo-header .section-body { max-width: 500px; }

.demo-interactive-ui {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(7,7,15,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 97, 48, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 97, 48, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 97, 48, 0); }
}

.camera-controls {
  display: flex;
  gap: 10px;
}

.cam-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--dim);
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cam-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.cam-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 15px rgba(255, 97, 48, 0.3);
}

.demo-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag {
  padding: 0.4rem 0.9rem;
  background: rgba(255,97,48,0.06);
  border: 1px solid rgba(255,97,48,0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--orange);
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ============ USE CASES ============ */
.usecase-section {
  position: relative;
  z-index: 1;
  padding: 8rem 2rem;
  background: var(--bg2);
}
.usecase-section .section-headline { margin-bottom: 3rem; }
.usecase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.usecase-card {
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.usecase-card:hover { border-color: rgba(0,229,255,0.2); background: rgba(0,229,255,0.03); }
.usecase-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.usecase-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--white); }
.usecase-card p { font-size: 0.92rem; color: rgba(220, 220, 240, 0.85); line-height: 1.65; }

/* ============ CONTACT ============ */
.contact-section {
  position: relative;
  z-index: 1;
  padding: 8rem 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: transparent;
}
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-left .section-body { max-width: 400px; color: var(--white); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--dim); }
.contact-form select { cursor: pointer; color: var(--dim); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235a5a7a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.contact-form select option { background: var(--bg); color: var(--white); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.1);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  padding: 1rem;
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: 8px;
  color: var(--cyan);
  font-weight: 500;
  text-align: center;
  font-size: 0.9rem;
}
.form-success.show { display: block; }

/* ============ FOOTER ============ */
footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2rem;
  background: rgba(7,7,15,0.95);
  border-top: 1px solid var(--border);
}
.footer-row {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: var(--dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.75rem;
  color: var(--dim);
  opacity: 0.5;
}

/* ============ DRONE HUD LABELS ============ */
.drone-hud {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10;
  font-family: 'Courier New', 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  line-height: 1.5;
  color: var(--orange);
  background: rgba(7, 7, 15, 0.78);
  border: 1px solid rgba(255, 97, 48, 0.3);
  padding: 5px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform-origin: top left;
  white-space: nowrap;
  min-width: 90px;
}
.drone-hud .hud-id {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.drone-hud .hud-status {
  color: var(--dim);
}
.drone-hud .hud-status.active {
  color: var(--cyan);
}

/* ============ REVEAL BASE ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .side-label { display: none; }
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .video-section-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .scene-section { padding: 80px 1.5rem 60px; }
  .section-content { max-width: 100%; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .usecase-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: 1rem; }
  .stat-divider { display: none; }
  .footer-row { flex-direction: column; gap: 1.5rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
