/* ═══════════════════════════════════════════════════════ */
/* COMPONENTS - Nav, Hero, Cards, Modals, Forms, Mockups  */
/* ═══════════════════════════════════════════════════════ */

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: rgba(3, 5, 8, 0.85);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-bottom: 1px solid var(--border);
}

.nav.scrolled {
  padding: 10px 0;
  background: rgba(3, 5, 8, 0.92);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--accent) 30%,
    #fff 50%,
    var(--accent) 70%,
    var(--primary) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoShimmer 4s ease-in-out infinite;
}

@keyframes logoShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.logo-ai {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #00f0ff, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.4));
}

.logo-tagline {
  font-size: 9px;
  color: var(--muted-foreground);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

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

.nav-link {
  font-size: 14px;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--foreground);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--muted-foreground);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 24px;
  border-top: 1px solid var(--border);
  background: rgba(3, 5, 8, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.mobile-menu.active { display: block; }

.mobile-link {
  display: block;
  padding: 12px 0;
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 16px;
}

.mobile-link:hover { color: var(--foreground); }

/* ── Container ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

/* Radial spotlight behind hero text */
.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(var(--glow-rgb), 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(var(--glow-rgb), 0.2);
  background: rgba(var(--glow-rgb), 0.04);
  margin-bottom: 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 100px;
  padding: 1px;
  background: conic-gradient(from var(--badge-angle, 0deg), transparent 60%, rgba(var(--glow-rgb), 0.4) 80%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: badgeRotate 4s linear infinite;
}

@property --badge-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes badgeRotate {
  to { --badge-angle: 360deg; }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  max-width: 640px;
  margin: 0 auto 64px;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn svg { width: 16px; height: 16px; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--background);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(77, 166, 219, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(77, 166, 219, 0.05);
  transform: translateY(-2px);
}

.btn-media:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.35);
}

/* ── Stats section ── */
.stats-section {
  padding: 100px 0;
  position: relative;
}

.stats-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

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

.stat {
  text-align: center;
  padding: 40px 24px 32px;
  border-radius: 20px;
  background: rgba(10, 14, 20, 0.6);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.stat:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--glow-rgb), 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(var(--glow-rgb), 0.08);
}

.stat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(var(--glow-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  transition: all 0.3s;
}

.stat:hover .stat-icon-wrap {
  background: rgba(var(--glow-rgb), 0.15);
  box-shadow: 0 0 20px rgba(var(--glow-rgb), 0.15);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--primary);
  letter-spacing: -0.02em;
  display: inline;
}

.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--primary);
  display: inline;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--muted-foreground);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
}

.stat-bar {
  margin-top: 20px;
  height: 3px;
  background: rgba(var(--glow-rgb), 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  animation: barGrow 2s ease-out forwards;
  transform-origin: left;
  width: 0;
}

.stat.visible .stat-bar-fill,
.stats-section.visible .stat-bar-fill {
  animation: barGrow 2s ease-out forwards;
}

@keyframes barGrow {
  0% { width: 0; }
  100% { width: inherit; }
}

/* Section title */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

/* Badge dot (live indicator) */
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  position: relative;
  margin-right: 4px;
}

.badge-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--primary);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.5;
}

/* ── CTA section ── */
.cta-section {
  text-align: center;
  padding: 128px 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(77, 166, 219, 0.05), transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 16px;
}

.cta-subtitle {
  color: var(--muted-foreground);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-location {
  margin-top: 32px;
  font-size: 13px;
  color: var(--muted-foreground);
}

/* ── Paths section ── */
.paths-section {
  padding: 80px 0;
  position: relative;
}

/* ── Footer ── */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-logo .logo-text {
  font-size: 16px;
}

.footer-logo .logo-tagline {
  font-size: 8px;
}

.footer-copy {
  font-size: 13px;
  color: var(--muted-foreground);
  margin-bottom: 4px;
}

.footer .footer-tagline {
  font-size: 11px;
  color: var(--muted-foreground);
  opacity: 0.6;
}

/* @spin animation for form loading spinner */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Mobile responsive ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
}

/* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--muted-foreground);
      animation: bounce 2s ease-in-out infinite;
    }

    .scroll-indicator span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(10px); }
    }

    /* Stats (legacy class alias) */
    .stats {
      padding: 80px 0;
      position: relative;
    }

    /* Section */
    .section {
      padding: 128px 0;
      position: relative;
    }

    .section-alt { background: rgba(10, 14, 20, 0.3); }

    .section-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .section-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted-foreground);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300;
      margin-bottom: 16px;
    }

    .section-title .highlight { color: var(--primary); }

    .section-desc {
      color: var(--muted-foreground);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.8;
    }

    /* Platform Cards */
    .platform-card {
      position: relative;
      border-radius: 24px;
      border: 1px solid var(--border);
      background: var(--card);
      padding: 40px;
      margin-bottom: 32px;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      --mouse-x: 50%;
      --mouse-y: 50%;
    }

    .platform-card:hover {
      border-color: rgba(77, 166, 219, 0.25);
      transform: translateY(-6px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(77, 166, 219, 0.08);
    }

    .platform-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
      opacity: 0.6;
    }

    /* Mouse-tracking spotlight on platform cards */
    .platform-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(
        800px circle at var(--mouse-x) var(--mouse-y),
        rgba(77, 166, 219, 0.04),
        transparent 40%
      );
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.4s;
    }

    .platform-card:hover::after {
      opacity: 1;
    }

    .platform-tag {
      display: inline-block;
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .platform-tag.cyan { background: rgba(77, 166, 219, 0.1); color: var(--primary); }
    .platform-tag.amber { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
    .platform-tag.emerald { background: rgba(91, 159, 212, 0.1); color: #5b9fd4; }
    .platform-tag.pink { background: rgba(236, 72, 153, 0.1); color: #ec4899; }
    .platform-tag.violet { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
    .platform-tag.rose { background: rgba(251, 113, 133, 0.1); color: #fb7185; }
    .platform-tag.orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }

    /* Service highlight cards for AuraicPulse Media services */
    .service-highlight {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 16px;
      margin-top: 24px;
      margin-bottom: 24px;
    }
    .service-highlight-item {
      background: rgba(15, 19, 24, 0.6);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px;
      transition: border-color 0.3s, transform 0.3s;
    }
    .service-highlight-item:hover {
      border-color: rgba(236, 72, 153, 0.3);
      transform: translateY(-2px);
    }
    .service-highlight-item h5 {
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .service-highlight-item h5 svg { width: 16px; height: 16px; flex-shrink: 0; }
    .service-highlight-item p { font-size: 12px; color: var(--muted-foreground); line-height: 1.6; }

    .service-stat-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      padding: 16px 0;
      margin-bottom: 16px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .service-stat-strip .ss-item {
      text-align: center;
    }
    .service-stat-strip .ss-value {
      font-size: 20px;
      font-weight: 700;
      font-family: 'JetBrains Mono', monospace;
    }
    .service-stat-strip .ss-label {
      font-size: 10px;
      color: var(--muted-foreground);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .platform-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.75rem;
      font-weight: 300;
      margin-bottom: 16px;
    }

    .platform-card > p {
      color: var(--muted-foreground);
      margin-bottom: 32px;
      max-width: 900px;
      line-height: 1.8;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1px;
      background: var(--border);
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 24px;
    }

    .feature {
      background: var(--background);
      padding: 20px 24px;
      transition: background 0.3s;
    }

    .feature:hover { background: var(--card); }

    .feature h4 { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
    .feature p { font-size: 13px; color: var(--muted-foreground); line-height: 1.6; }

    .tech-chips { display: flex; flex-wrap: wrap; gap: 8px; }
    .tech-chip {
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 11px;
      background: var(--secondary);
      color: var(--muted-foreground);
      border: 1px solid var(--border);
      transition: border-color 0.2s;
    }

    .tech-chip:hover { border-color: rgba(77, 166, 219, 0.2); }

    /* Hero buttons */
    .hero-buttons {
      display: flex;
      gap: 16px;
      margin-top: 32px;
      justify-content: center;
    }

    @media (max-width: 480px) {
      .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }
    }

    /* Platforms / Services sections */
    .platforms-section,
    .services-section { padding: 100px 0; }
    .platforms-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }

    @media (max-width: 768px) {
      .platforms-grid { grid-template-columns: 1fr; }
    }

    .platform-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: rgba(var(--glow-rgb, 77, 166, 219), 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      color: var(--primary);
    }

    /* Feature items (inside platform cards) */
    .platform-card .features-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      background: transparent;
      margin-bottom: 16px;
    }

    .feature-item {
      font-size: 12px;
      color: var(--muted-foreground);
      padding: 6px 12px;
      background: var(--secondary);
      border-radius: 8px;
      border: 1px solid var(--border);
      transition: border-color 0.2s;
    }

    .feature-item:hover {
      border-color: rgba(var(--glow-rgb, 77, 166, 219), 0.3);
    }

    /* Terminal section */
    .terminal-section { padding: 100px 0; }

    /* Capabilities section */
    .capabilities-section { padding: 100px 0; }

    /* Approach */
    .approach-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border-radius: 16px;
      overflow: hidden;
    }

    .approach-step {
      background: var(--card);
      padding: 40px;
      transition: background 0.3s;
    }

    .approach-step:hover { background: rgba(15, 19, 24, 1); }

    .approach-num {
      font-family: 'JetBrains Mono', monospace;
      font-size: 3rem;
      font-weight: 500;
      color: rgba(125, 133, 144, 0.15);
      margin-bottom: 16px;
      transition: all 0.4s;
      letter-spacing: -0.05em;
    }

    .approach-step:hover .approach-num {
      color: rgba(77, 166, 219, 0.4);
      text-shadow: 0 0 20px rgba(77, 166, 219, 0.2);
    }

    .approach-icon {
      width: 32px;
      height: 32px;
      color: var(--primary);
      margin-bottom: 16px;
    }

    .approach-step h3,
    .approach-step h4 { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
    .approach-step p { font-size: 14px; color: var(--muted-foreground); line-height: 1.7; }

    /* CTA */
    .cta {
      text-align: center;
      padding: 128px 0;
      position: relative;
    }

    .cta::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(77, 166, 219, 0.05), transparent 70%);
      pointer-events: none;
    }

    .cta h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 300;
      margin-bottom: 16px;
    }

    .cta h2 .highlight { color: var(--primary); }

    .cta > p {
      color: var(--muted-foreground);
      max-width: 500px;
      margin: 0 auto 48px;
      line-height: 1.8;
    }

    .contact-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      margin-top: 48px;
      padding-top: 48px;
      border-top: 1px solid var(--border);
    }

    .contact-links a {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--muted-foreground);
      text-decoration: none;
      transition: color 0.2s;
    }

    .contact-links a:hover { color: var(--primary); }
    .contact-links a svg { width: 18px; height: 18px; opacity: 0.6; }

    /* Footer */
    footer {
      padding: 32px 0;
      border-top: 1px solid var(--border);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-brand .logo-icon {
      width: 32px;
      height: 32px;
      font-size: 14px;
      border-radius: 8px;
    }

    .footer-brand span { font-size: 13px; color: var(--muted-foreground); }

    .footer-tagline {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 11px;
      color: var(--muted-foreground);
    }

    .footer-tagline .ai-badge {
      display: flex;
      align-items: center;
      gap: 4px;
      color: var(--primary);
    }

    /* Modal */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(4px);
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .modal-overlay.active { display: flex; }

    .modal {
      background: var(--card);
      border-radius: 24px;
      border: 1px solid var(--border);
      max-width: 700px;
      width: 100%;
      max-height: 90vh;
      overflow: hidden;
      position: relative;
    }

    .modal-header {
      padding: 24px 32px;
      border-bottom: 1px solid var(--border);
    }

    .modal-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 400;
    }

    .modal-header h2 .highlight { color: var(--primary); }

    .modal-header p {
      font-size: 14px;
      color: var(--muted-foreground);
      margin-top: 8px;
    }

    .modal-close {
      position: absolute;
      top: 24px;
      right: 24px;
      background: none;
      border: none;
      color: var(--muted-foreground);
      cursor: pointer;
      padding: 8px;
      transition: color 0.2s;
    }

    .modal-close:hover { color: var(--foreground); }

    .modal-body {
      padding: 32px;
      overflow-y: auto;
      max-height: calc(90vh - 120px);
    }

    /* Form */
    .form-section { margin-bottom: 32px; }
    .form-section h3 {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 16px;
    }

    .form-section h3 svg { width: 18px; height: 18px; }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .form-group { margin-bottom: 16px; }
    .form-group.full { grid-column: 1 / -1; }

    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 500;
      margin-bottom: 8px;
      color: var(--foreground);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 12px 16px;
      background: rgba(3, 5, 8, 0.5);
      border: 1px solid var(--border);
      border-radius: 8px;
      color: var(--foreground);
      font-family: inherit;
      font-size: 14px;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--primary);
    }

    .form-group textarea {
      min-height: 80px;
      resize: vertical;
    }

    .form-group select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237d8590' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
    }

    .checkbox-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .checkbox-item {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }

    .checkbox-item input {
      width: 18px;
      height: 18px;
      accent-color: var(--primary);
      cursor: pointer;
    }

    .checkbox-item span { font-size: 13px; }

    .form-footer {
      padding-top: 24px;
      border-top: 1px solid var(--border);
      margin-top: 24px;
    }

    .form-footer p {
      font-size: 13px;
      color: var(--muted-foreground);
      margin-bottom: 16px;
    }

    .form-footer p a {
      color: var(--primary);
      text-decoration: none;
    }

    .form-footer p a:hover { text-decoration: underline; }

    .btn-submit {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: var(--background);
      border: none;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.3s ease;
    }

    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(77, 166, 219, 0.3);
    }

    

    /* Responsive */
    /* ═══════════════════════════════════════════════════════ */
    /* HERO DASHBOARD MOCKUP - The "wow" factor               */
    /* ═══════════════════════════════════════════════════════ */
    .hero-visual {
      margin-top: 64px;
      perspective: 1200px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .dashboard-mockup {
      background: rgba(10, 14, 20, 0.95);
      border: 1px solid rgba(77, 166, 219, 0.15);
      border-radius: 16px;
      overflow: hidden;
      transform: rotateX(8deg) scale(0.95);
      transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.8s ease;
      box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(77, 166, 219, 0.06),
        0 0 0 1px rgba(77, 166, 219, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .dashboard-mockup:hover {
      transform: rotateX(2deg) scale(0.98);
      box-shadow:
        0 60px 120px rgba(0, 0, 0, 0.6),
        0 0 120px rgba(77, 166, 219, 0.1),
        0 0 0 1px rgba(77, 166, 219, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    /* Gradient top border accent */
    .dashboard-mockup::before {
      content: '';
      display: block;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--accent), #a855f7, var(--primary));
      background-size: 200% 100%;
      animation: gradientSlide 3s linear infinite;
    }

    @keyframes gradientSlide {
      0% { background-position: 0% 50%; }
      100% { background-position: 200% 50%; }
    }

    .mock-titlebar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      background: rgba(3, 5, 8, 0.9);
      border-bottom: 1px solid rgba(77, 166, 219, 0.08);
    }

    .mock-dots {
      display: flex;
      gap: 6px;
    }

    .mock-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .mock-dots span:nth-child(1) { background: #ff5f57; }
    .mock-dots span:nth-child(2) { background: #febc2e; }
    .mock-dots span:nth-child(3) { background: #28c840; }

    .mock-url {
      flex: 1;
      background: rgba(77, 166, 219, 0.04);
      border: 1px solid rgba(77, 166, 219, 0.08);
      border-radius: 6px;
      padding: 5px 12px;
      font-size: 11px;
      font-family: 'JetBrains Mono', monospace;
      color: var(--muted-foreground);
      margin-left: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .mock-url .lock-icon {
      color: #28c840;
      font-size: 9px;
    }

    .mock-titlebar-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .mock-notif {
      position: relative;
      width: 18px;
      height: 18px;
      color: var(--muted-foreground);
    }

    .mock-notif-badge {
      position: absolute;
      top: -3px;
      right: -3px;
      width: 10px;
      height: 10px;
      background: #ff5f57;
      border-radius: 50%;
      border: 1.5px solid rgba(3, 5, 8, 0.9);
      font-size: 0;
      animation: notifPulse 2s ease-in-out infinite;
    }

    @keyframes notifPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.2); }
    }

    .mock-avatar {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      font-weight: 700;
      color: var(--background);
    }

    .mock-body {
      display: grid;
      grid-template-columns: 180px 1fr;
      min-height: 380px;
    }

    .mock-sidebar {
      background: rgba(3, 5, 8, 0.7);
      border-right: 1px solid rgba(77, 166, 219, 0.06);
      padding: 12px 0;
      display: flex;
      flex-direction: column;
    }

    .mock-sidebar-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px 16px;
      margin-bottom: 4px;
      border-bottom: 1px solid rgba(77, 166, 219, 0.06);
    }

    .mock-sidebar-logo-icon {
      width: 24px;
      height: 24px;
      border-radius: 6px;
      overflow: hidden;
    }

    .mock-sidebar-logo-icon img {
      width: 100%;
      height: 100%;
      border-radius: 6px;
    }

    .mock-sidebar-logo span {
      font-size: 11px;
      font-weight: 600;
      color: var(--foreground);
    }

    .mock-nav-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 16px;
      font-size: 11px;
      color: var(--muted-foreground);
      transition: all 0.3s;
    }

    .mock-nav-item.active {
      color: var(--primary);
      background: rgba(77, 166, 219, 0.06);
      border-right: 2px solid var(--primary);
    }

    .mock-nav-icon {
      width: 14px;
      height: 14px;
      opacity: 0.6;
    }

    .mock-nav-item.active .mock-nav-icon { opacity: 1; }

    .mock-sidebar-footer {
      margin-top: auto;
      padding: 12px 16px;
      border-top: 1px solid rgba(77, 166, 219, 0.06);
    }

    .mock-sidebar-status {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 9px;
      color: #28c840;
    }

    .mock-sidebar-status .live-dot {
      width: 5px;
      height: 5px;
      background: #28c840;
      border-radius: 50%;
      animation: livePulse 1.5s ease-in-out infinite;
    }

    @keyframes livePulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    .mock-content {
      padding: 20px;
      background: rgba(6, 9, 14, 0.5);
    }

    .mock-header-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }

    .mock-title {
      font-size: 15px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .mock-badge {
      font-size: 9px;
      padding: 3px 8px;
      border-radius: 100px;
      background: rgba(40, 200, 64, 0.1);
      color: #28c840;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .mock-badge .live-dot {
      width: 4px;
      height: 4px;
      background: #28c840;
      border-radius: 50%;
      animation: livePulse 1.5s ease-in-out infinite;
    }

    .mock-header-tabs {
      display: flex;
      gap: 2px;
      background: rgba(77, 166, 219, 0.04);
      border-radius: 6px;
      padding: 2px;
    }

    .mock-tab {
      font-size: 10px;
      padding: 4px 10px;
      border-radius: 4px;
      color: var(--muted-foreground);
    }

    .mock-tab.active {
      background: rgba(77, 166, 219, 0.1);
      color: var(--primary);
      font-weight: 600;
    }

    .mock-stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 16px;
    }

    .mock-stat-card {
      background: rgba(77, 166, 219, 0.02);
      border: 1px solid rgba(77, 166, 219, 0.06);
      border-radius: 10px;
      padding: 14px;
      position: relative;
      overflow: hidden;
    }

    /* Sparkline inside stat cards */
    .mock-sparkline {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 30px;
      opacity: 0.15;
    }

    .mock-stat-label {
      font-size: 9px;
      color: var(--muted-foreground);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 4px;
    }

    .mock-stat-value {
      font-size: 24px;
      font-weight: 700;
      font-family: 'JetBrains Mono', monospace;
      letter-spacing: -0.02em;
    }

    .mock-stat-value.green { color: #28c840; }
    .mock-stat-value.cyan { color: var(--primary); }
    .mock-stat-value.blue { color: var(--accent); }

    .mock-stat-change {
      font-size: 9px;
      color: #28c840;
      margin-top: 2px;
      display: flex;
      align-items: center;
      gap: 3px;
    }

    .mock-stat-change.positive { color: #28c840; }

    .mock-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      border-bottom: 1px solid rgba(77, 166, 219, 0.08);
    }

    .mock-chart-title,
    .mock-activity-title {
      font-size: 10px;
      font-weight: 600;
      color: var(--muted-foreground);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 10px;
      padding: 0 12px;
    }

    .mock-chart-bars {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 80px;
      padding: 0 12px 12px;
    }

    .mock-chart-bars .mock-bar {
      flex: 1;
      border-radius: 3px 3px 0 0;
      background: linear-gradient(to top, var(--primary), var(--accent, var(--primary)));
      opacity: 0.8;
      animation: barGrow 2s ease-out forwards;
      transform-origin: bottom;
    }

    .mock-activity-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      font-size: 11px;
      color: var(--muted-foreground);
      border-bottom: 1px solid rgba(77, 166, 219, 0.04);
    }

    .mock-activity-item:last-child { border-bottom: none; }

    /* Animated chart bars */
    .mock-chart-wrapper {
      display: grid;
      grid-template-columns: 1fr 140px;
      gap: 10px;
      margin-bottom: 12px;
    }

    .mock-chart {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      height: 110px;
      padding: 12px;
      background: rgba(3, 5, 8, 0.5);
      border: 1px solid rgba(77, 166, 219, 0.05);
      border-radius: 10px;
      position: relative;
    }

    .mock-chart-label {
      position: absolute;
      top: 8px;
      left: 12px;
      font-size: 9px;
      color: var(--muted-foreground);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .mock-bar {
      flex: 1;
      border-radius: 3px 3px 0 0;
      background: linear-gradient(to top, var(--primary), var(--accent));
      opacity: 0.8;
      animation: barGrow 2s ease-out forwards;
      transform-origin: bottom;
      transition: opacity 0.2s;
    }

    .mock-bar:hover { opacity: 1; }

    @keyframes barGrow {
      from { transform: scaleY(0); }
      to { transform: scaleY(1); }
    }

    /* Progress ring panel */
    .mock-ring-panel {
      background: rgba(3, 5, 8, 0.5);
      border: 1px solid rgba(77, 166, 219, 0.05);
      border-radius: 10px;
      padding: 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .mock-ring-label {
      font-size: 9px;
      color: var(--muted-foreground);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .progress-ring {
      transform: rotate(-90deg);
    }

    .progress-ring-bg {
      fill: none;
      stroke: rgba(77, 166, 219, 0.08);
      stroke-width: 6;
    }

    .progress-ring-fill {
      fill: none;
      stroke: url(#ringGradient);
      stroke-width: 6;
      stroke-linecap: round;
      stroke-dasharray: 226;
      stroke-dashoffset: 226;
      animation: ringFill 2s ease-out 0.5s forwards;
    }

    @keyframes ringFill {
      to { stroke-dashoffset: 13.6; }
    }

    .mock-ring-value {
      font-family: 'JetBrains Mono', monospace;
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
    }

    /* Animated activity rows */
    .mock-activity {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .mock-activity-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 10px;
      border-radius: 8px;
      font-size: 11px;
      animation: slideInRow 0.5s ease-out forwards;
      opacity: 0;
      transform: translateX(-20px);
      background: rgba(77, 166, 219, 0.01);
      border: 1px solid transparent;
      transition: all 0.2s;
    }

    .mock-activity-row:hover {
      background: rgba(77, 166, 219, 0.03);
      border-color: rgba(77, 166, 219, 0.06);
    }

    .mock-activity-row:nth-child(1) { animation-delay: 1.5s; }
    .mock-activity-row:nth-child(2) { animation-delay: 2.0s; }
    .mock-activity-row:nth-child(3) { animation-delay: 2.5s; }
    .mock-activity-row:nth-child(4) { animation-delay: 3.0s; }

    @keyframes slideInRow {
      to { opacity: 1; transform: translateX(0); }
    }

    .mock-activity-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
      position: relative;
    }

    .mock-activity-dot::after {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 50%;
      background: inherit;
      opacity: 0.3;
    }

    .mock-activity-dot.green { background: #28c840; }
    .mock-activity-dot.blue { background: var(--accent); }
    .mock-activity-dot.purple { background: #a855f7; }
    .mock-activity-dot.amber { background: #f59e0b; }

    .mock-activity-text {
      flex: 1;
      color: var(--muted-foreground);
    }

    .mock-activity-text strong {
      color: var(--foreground);
    }

    .mock-activity-time {
      font-size: 9px;
      color: rgba(125, 133, 144, 0.5);
      font-family: 'JetBrains Mono', monospace;
    }

    /* ═══════════════════════════════════════════════════════ */
    /* AI TERMINAL DEMO                                       */
    /* ═══════════════════════════════════════════════════════ */
    .ai-demo {
      padding: 128px 0;
      position: relative;
    }

    .terminal-window {
      background: rgba(3, 5, 8, 0.95);
      border: 1px solid rgba(77, 166, 219, 0.15);
      border-radius: 16px;
      overflow: hidden;
      max-width: 800px;
      margin: 0 auto;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(77, 166, 219, 0.03);
    }

    .terminal-header {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 16px;
      background: rgba(10, 14, 20, 0.8);
      border-bottom: 1px solid rgba(77, 166, 219, 0.1);
    }

    .terminal-header .mock-dots { margin-right: 8px; }

    .terminal-title {
      font-size: 12px;
      font-family: 'JetBrains Mono', monospace;
      color: var(--muted-foreground);
    }

    .terminal-body {
      padding: 24px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 13px;
      line-height: 1.8;
      min-height: 280px;
    }

    .terminal-line {
      opacity: 0;
      animation: terminalType 0.3s ease forwards;
    }

    .terminal-prompt {
      color: var(--primary);
    }

    .terminal-command {
      color: var(--foreground);
    }

    .terminal-output {
      color: var(--muted-foreground);
      padding-left: 16px;
    }

    .terminal-highlight {
      color: var(--accent);
    }

    .terminal-success {
      color: #28c840;
    }

    .terminal-warning {
      color: #f59e0b;
    }

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

    /* ═══════════════════════════════════════════════════════ */
    /* PLATFORM UI PREVIEWS                                   */
    /* ═══════════════════════════════════════════════════════ */
    .platform-preview {
      margin-top: 24px;
      margin-bottom: 24px;
      background: rgba(3, 5, 8, 0.6);
      border: 1px solid rgba(77, 166, 219, 0.08);
      border-radius: 12px;
      overflow: hidden;
    }

    .preview-header {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      background: rgba(3, 5, 8, 0.5);
      border-bottom: 1px solid rgba(77, 166, 219, 0.06);
    }

    .preview-header .mock-dots span {
      width: 7px;
      height: 7px;
    }

    .preview-body {
      padding: 16px;
    }

    /* Occupancy grid preview for StayDublin */
    .occupancy-grid {
      display: grid;
      grid-template-columns: 60px repeat(7, 1fr);
      gap: 3px;
      font-size: 9px;
    }

    .grid-label {
      display: flex;
      align-items: center;
      color: var(--muted-foreground);
      font-weight: 500;
      padding: 4px;
    }

    .grid-cell {
      height: 28px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8px;
      font-weight: 600;
      transition: transform 0.2s;
    }

    .grid-cell:hover { transform: scale(1.1); }
    .grid-cell.occupied { background: rgba(77, 166, 219, 0.2); color: var(--primary); }
    .grid-cell.available { background: rgba(40, 200, 64, 0.15); color: #28c840; }
    .grid-cell.checkout { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
    .grid-cell.blocked { background: rgba(125, 133, 144, 0.1); color: var(--muted-foreground); }

    .grid-day-header {
      text-align: center;
      color: var(--muted-foreground);
      font-weight: 600;
      padding: 4px;
      font-size: 9px;
    }

    /* Pipeline preview for Job Management */
    .pipeline-preview {
      display: flex;
      gap: 12px;
      overflow-x: auto;
    }

    .pipeline-column {
      min-width: 140px;
      flex: 1;
    }

    .pipeline-column-header {
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--muted-foreground);
      padding-bottom: 8px;
      border-bottom: 2px solid;
      margin-bottom: 8px;
    }

    .pipeline-column-header.col-new { border-color: var(--accent); }
    .pipeline-column-header.col-progress { border-color: #f59e0b; }
    .pipeline-column-header.col-review { border-color: #a855f7; }
    .pipeline-column-header.col-done { border-color: #28c840; }

    .pipeline-card {
      background: rgba(10, 14, 20, 0.8);
      border: 1px solid rgba(77, 166, 219, 0.06);
      border-radius: 6px;
      padding: 10px;
      margin-bottom: 6px;
      font-size: 10px;
    }

    .pipeline-card-title {
      font-weight: 600;
      margin-bottom: 4px;
      color: var(--foreground);
    }

    .pipeline-card-meta {
      color: var(--muted-foreground);
      font-size: 9px;
    }

    /* Translation preview for Workforce */
    .translation-preview {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .translation-msg {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .translation-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
      border: 1px solid rgba(77, 166, 219, 0.1);
      background: rgba(77, 166, 219, 0.05);
    }

    .translation-bubble {
      flex: 1;
    }

    .translation-name {
      font-size: 11px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .translation-text {
      font-size: 12px;
      color: var(--muted-foreground);
      background: rgba(10, 14, 20, 0.6);
      padding: 10px 14px;
      border-radius: 0 12px 12px 12px;
      border: 1px solid rgba(77, 166, 219, 0.06);
    }

    .translation-auto {
      font-size: 9px;
      color: var(--primary);
      margin-top: 4px;
      font-style: italic;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ═══════════════════════════════════════════════════════ */
    /* TRUST / CAPABILITIES SECTION                           */
    /* ═══════════════════════════════════════════════════════ */
    .capabilities-ring {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
      margin-top: 48px;
    }

    .capability-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 20px;
      background: rgba(10, 14, 20, 0.6);
      border: 1px solid rgba(77, 166, 219, 0.08);
      border-radius: 100px;
      font-size: 13px;
      color: var(--muted-foreground);
      transition: all 0.3s;
    }

    .capability-item:hover {
      border-color: rgba(77, 166, 219, 0.25);
      color: var(--foreground);
      background: rgba(77, 166, 219, 0.03);
    }

    .capability-item svg {
      width: 16px;
      height: 16px;
      color: var(--primary);
      flex-shrink: 0;
    }

    @media (max-width: 1024px) {
      .approach-grid { grid-template-columns: 1fr; }
      .mock-body { grid-template-columns: 1fr; }
      .mock-sidebar { display: none; }
    }

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

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

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

      .footer-inner { flex-direction: column; text-align: center; }
      .contact-links { flex-direction: column; align-items: center; gap: 16px; }

      .data-stream { display: none; }
      #neuralCanvas { display: none; }
      .glow-blob-3 { display: none; }
      .mock-stats-row { grid-template-columns: 1fr; }
      .mock-chart-wrapper { grid-template-columns: 1fr; }
      .mock-ring-panel { display: none; }
      .mock-header-tabs { display: none; }
      .mock-titlebar-actions { display: none; }
      .pipeline-preview { flex-direction: column; }
      .occupancy-grid { grid-template-columns: 40px repeat(7, 1fr); font-size: 8px; }
      .hero-visual { margin-top: 40px; }
      .dashboard-mockup { transform: none; }
      .dashboard-mockup:hover { transform: none; }
      .capabilities-ring { gap: 8px; }
      .capability-item { font-size: 11px; padding: 8px 14px; }

      /* Compact mobile: collapse detail sections, show expand toggle */
      .features-grid,
      .service-highlight,
      .platform-preview,
      .tech-chips { display: none; }
      .platform-card.expanded .features-grid,
      .platform-card.expanded .service-highlight,
      .platform-card.expanded .platform-preview,
      .platform-card.expanded .tech-chips { display: grid; }
      .platform-card.expanded .service-highlight { display: flex; }
      .platform-card.expanded .platform-preview { display: block; }
      .platform-card.expanded .tech-chips { display: flex; }

      .mobile-expand-btn { display: inline-flex !important; }

      /* Hide stats and AI demo on mobile */
      .stats { display: none; }
      .ai-demo { display: none; }

      /* Compact approach section */
      .approach-card p { display: none; }
      .approach-card { padding: 20px; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 2.5rem; }
      .platform-card { padding: 24px; }
      .modal-body { padding: 24px; }
    }
    /* Mobile expand button for platform cards */
    .mobile-expand-btn {
      display: none;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      padding: 10px 20px;
      border-radius: 100px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.03);
      color: var(--primary);
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s;
    }
    .mobile-expand-btn:hover { background: rgba(255,255,255,0.06); }
    .mobile-expand-btn svg { width: 14px; height: 14px; transition: transform 0.3s; }
    .platform-card.expanded .mobile-expand-btn svg { transform: rotate(180deg); }
