/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #f7730e;
  --orange-light: #ff8c33;
  --orange-dark: #d45e00;
  --orange-glow: rgba(247,115,14,.18);
  --blue: #0c3354;
  --blue-light: #144a7a;
  --blue-dark: #071e35;
  --blue-deep: #040d18;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.18);
  --shadow-glow: 0 0 80px var(--orange-glow);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--blue);
}

h1 { font-size: clamp(2.75rem, 5.5vw, 4.25rem); letter-spacing: -.04em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { color: var(--gray-600); line-height: 1.75; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title { margin-bottom: 16px; }

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 600px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .section-label::before { display: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(247,115,14,.3);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(247,115,14,.4);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.25);
}
.btn-outline-light:hover {
  border-color: var(--orange);
  background: rgba(247,115,14,.1);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--gray-200);
}
.btn-outline-dark:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(4,13,24,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}

.nav-logo img { height: 32px; width: auto; }
.nav-logo-text span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-links .nav-cta {
  padding: 10px 24px !important;
  font-size: .875rem !important;
  border-radius: 8px;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== HERO — Centered Vertical Layout ===== */
.hero {
  position: relative;
  background: var(--blue-deep);
  overflow: hidden;
  padding: 160px 0 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(12,51,84,.8) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 30%, var(--orange-glow) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(12,51,84,.4) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-inner h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-inner h1 .highlight {
  display: inline;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-inner > p {
  color: rgba(255,255,255,.6);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero .btn-group { justify-content: center; margin-bottom: 56px; }

.hero-app-frame {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  box-shadow: 0 -8px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
}

.hero-app-frame img {
  width: 100%;
  display: block;
}

.hero-app-frame .img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(180deg, #111827, #0a1628);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
  font-size: .9rem;
  border: 2px dashed rgba(255,255,255,.1);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
}

/* ===== STATS RIBBON ===== */
.stats-ribbon {
  background: var(--blue);
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
}

/* ===== BRIDGE SECTION (Hero-level prominence) ===== */
.bridge {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.bridge-header {
  text-align: center;
  margin-bottom: 72px;
}

.bridge-header .section-label::before { display: none; }

.bridge-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  max-width: 700px;
  margin: 0 auto 20px;
}

.bridge-header p {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
}

.bridge-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  max-width: 960px;
  margin: 0 auto 64px;
}

.bridge-app {
  background: var(--gray-50);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}
.bridge-app:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.bridge-app-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bridge-app-icon.console-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.bridge-app-icon.studio-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.bridge-app-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.bridge-app h3 { margin-bottom: 8px; }
.bridge-app p { font-size: .9rem; }

.bridge-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  position: relative;
}

.bridge-line {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 3px;
  position: relative;
}

.bridge-line::before,
.bridge-line::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.bridge-line::before { left: -5px; background: var(--blue); }
.bridge-line::after { right: -5px; background: var(--orange); }

.bridge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: bridgePulse 2s ease-in-out infinite;
}

@keyframes bridgePulse {
  0%, 100% { opacity: .3; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

.bridge-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray-400);
  white-space: nowrap;
}

.bridge-events {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.bridge-event {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.bridge-event:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.bridge-event-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange-glow);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bridge-event-icon svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.bridge-event h4 {
  font-size: .95rem;
  margin-bottom: 6px;
}

.bridge-event p {
  font-size: .8rem;
  line-height: 1.6;
}

/* ===== PROBLEM ===== */
.problem {
  padding: 100px 0;
  background: var(--gray-50);
}

.problem-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.problem-inner h2 { margin-bottom: 20px; }
.problem-inner > p { margin-bottom: 48px; font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto; margin-bottom: 48px; }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.pain-card:hover { border-color: var(--orange); }

.pain-card svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-card span {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.5;
}

/* ===== FEATURES — Large Image + List ===== */
.features {
  padding: 100px 0;
  background: var(--white);
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block.reversed { direction: rtl; }
.feature-block.reversed > * { direction: ltr; }

.feature-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-visual img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.feature-visual .img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: .85rem;
  border: 2px dashed var(--gray-200);
}

.feature-text h2 { margin-bottom: 16px; }

.feature-text > p {
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-700);
}

.feature-checklist svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ===== CONTENT LIBRARY — Horizontal Scroll Cards ===== */
.content-library {
  padding: 100px 0;
  background: linear-gradient(170deg, var(--blue-deep) 0%, var(--blue) 100%);
  overflow: hidden;
}

.content-library h2,
.content-library p,
.content-library .section-label { color: var(--white); }
.content-library .section-subtitle { color: rgba(255,255,255,.55); }
.content-library .section-label::before { background: var(--orange); }

.content-header {
  margin-bottom: 56px;
}

.content-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.content-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.content-card:hover {
  background: rgba(255,255,255,.09);
  border-color: var(--orange);
  transform: translateY(-4px);
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  opacity: 0;
  transition: var(--transition);
}
.content-card:hover::before { opacity: 1; }

.content-card-count {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.content-card-suffix {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.content-card h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.content-card p {
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  line-height: 1.65;
}

.content-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.content-tag {
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.08);
}

/* ===== AI SECTION ===== */
.ai-section {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ai-visual {
  position: relative;
}

.ai-visual .img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: .85rem;
  border: 2px dashed var(--gray-200);
  box-shadow: var(--shadow-md);
}

.ai-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(247,115,14,.4);
}

.ai-text h2 { margin-bottom: 16px; }
.ai-text > p { font-size: 1.05rem; margin-bottom: 32px; }

.ai-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ai-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ai-step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  color: var(--orange);
  flex-shrink: 0;
}

.ai-step-text strong {
  display: block;
  font-size: .95rem;
  color: var(--blue);
  margin-bottom: 2px;
}

.ai-step-text p {
  font-size: .85rem;
  margin: 0;
}

/* ===== KEYBOARD SHORTCUTS ===== */
.shortcuts {
  padding: 100px 0;
  background: var(--white);
}

.shortcuts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.shortcuts-text h2 { margin-bottom: 16px; }
.shortcuts-text > p { font-size: 1.05rem; margin-bottom: 0; }

.shortcuts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.shortcut-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.shortcut-item:hover {
  border-color: var(--orange);
  background: var(--white);
}

.key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 36px;
  padding: 0 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-bottom: 3px solid var(--gray-300);
  border-radius: 6px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: .75rem;
  font-weight: 600;
  color: var(--blue);
  flex-shrink: 0;
}

.shortcut-item span:last-child {
  font-size: .85rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* ===== PROJECTION LAYERS ===== */
.layers {
  padding: 100px 0;
  background: var(--gray-50);
}

.layers-header {
  text-align: center;
  margin-bottom: 56px;
}

.layers-visual {
  max-width: 900px;
  margin: 0 auto;
}

.layers-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.layer-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.layer-row:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.layer-depth {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .05em;
  width: 80px;
  flex-shrink: 0;
}

.layer-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.layer-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.layer-icon.bg { background: #3b82f6; }
.layer-icon.text { background: #10b981; }
.layer-icon.l3 { background: var(--orange); }
.layer-icon.motion { background: #8b5cf6; }
.layer-icon.timer { background: #d4a843; }
.layer-icon.overlay { background: #ec4899; }

.layer-info { flex: 1; }
.layer-info strong {
  display: block;
  font-size: .95rem;
  color: var(--blue);
  margin-bottom: 2px;
}
.layer-info span {
  font-size: .8rem;
  color: var(--gray-500);
}

.layer-toggle {
  width: 44px;
  height: 24px;
  background: var(--gray-200);
  border-radius: 12px;
  position: relative;
  flex-shrink: 0;
}
.layer-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.layer-toggle.on {
  background: var(--orange);
}
.layer-toggle.on::after {
  left: 23px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: var(--gray-200);
}

.step-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-dot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.step-dot.step-1 { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.step-dot.step-2 { background: linear-gradient(135deg, var(--blue-light), #2563eb); }
.step-dot.step-3 { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }

.step-dot svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.step-item .img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--gray-50);
  border-radius: var(--radius);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: .8rem;
  border: 2px dashed var(--gray-200);
}

.step-item h3 { margin-bottom: 10px; }
.step-item p { font-size: .9rem; max-width: 300px; margin: 0 auto; }

/* ===== COMPARISON — Side by Side Cards ===== */
.comparison {
  padding: 100px 0;
  background: var(--gray-50);
}

.comparison-header {
  text-align: center;
  margin-bottom: 56px;
}
.comparison-header .section-label::before { display: none; }

.comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.comparison-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-card-header {
  padding: 24px 32px;
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-card.generic .comparison-card-header {
  background: var(--gray-200);
  color: var(--gray-600);
}

.comparison-card.console .comparison-card-header {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  color: var(--white);
}

.comparison-card-body {
  padding: 8px 0;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.comparison-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  font-size: .9rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-50);
}
.comparison-row:last-child { border-bottom: none; }

.comparison-row svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.comparison-row .check-icon { color: #10b981; }
.comparison-row .cross-icon { color: var(--gray-300); }

.comparison-card.console .comparison-row {
  color: var(--blue);
  font-weight: 500;
}

/* ===== ROLES ===== */
.roles {
  padding: 100px 0;
  background: var(--white);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.role-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.role-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.role-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.role-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.role-icon.admin { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.role-icon.director { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.role-icon.operator { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }
.role-icon.viewer { background: linear-gradient(135deg, #059669, #10b981); }

.role-card h4 { margin-bottom: 8px; font-size: 1rem; }
.role-card p { font-size: .8rem; line-height: 1.6; }

/* ===== PLATFORMS ===== */
.platforms {
  padding: 100px 0;
  background: var(--gray-50);
}

.platform-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.platform-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: var(--transition);
}
.platform-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
}

.platform-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.platform-logo .img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gray-100);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--gray-400);
}

.platform-card h3 { margin-bottom: 10px; }
.platform-card p { font-size: .9rem; max-width: 300px; margin: 0 auto; }

/* ===== CTA ===== */
.cta {
  padding: 120px 0;
  background: linear-gradient(170deg, var(--blue-deep), var(--blue));
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, var(--orange-glow) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.cta p {
  color: rgba(255,255,255,.6);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.cta .btn-group { justify-content: center; }

/* ===== FOOTER ===== */
.footer {
  background: var(--blue-deep);
  padding: 72px 0 28px;
  border-top: 1px solid rgba(255,255,255,.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .nav-logo-text { font-size: 1.1rem; }

.footer-brand p {
  color: rgba(255,255,255,.4);
  font-size: .85rem;
  margin-top: 14px;
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
  padding: 5px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255,255,255,.25);
  font-size: .75rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--orange); }
.footer-socials svg { width: 16px; height: 16px; color: rgba(255,255,255,.5); }
.footer-socials a:hover svg { color: var(--white); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bridge-diagram { grid-template-columns: 1fr; gap: 16px; }
  .bridge-connector { flex-direction: row; padding: 8px 0; }
  .bridge-line { width: 60px; }
  .bridge-events { grid-template-columns: 1fr 1fr; }
  .feature-block,
  .ai-grid,
  .shortcuts-inner { grid-template-columns: 1fr; gap: 48px; }
  .feature-block.reversed { direction: ltr; }
  .content-scroll { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .stats-grid .stat-item:nth-child(4),
  .stats-grid .stat-item:nth-child(5) { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .comparison-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(4,13,24,.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 14px;
  }
  .nav-links.active a { color: rgba(255,255,255,.7); }

  .hero { padding: 130px 0 0; }
  .hero-inner h1 { font-size: 2.25rem; }

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

  .pain-grid,
  .platform-cards,
  .shortcuts-grid { grid-template-columns: 1fr; }

  .content-scroll { grid-template-columns: 1fr; }

  .steps-timeline { grid-template-columns: 1fr; gap: 40px; }
  .steps-timeline::before { display: none; }

  .roles-grid { grid-template-columns: 1fr 1fr; }

  .bridge-events { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
  .roles-grid { grid-template-columns: 1fr; }
  .hero-app-frame { border-radius: 10px 10px 0 0; }
}
