/* =====================================================
   neoshare Landing Page — Official Brand Guidelines

   Brand Principles:
   - Nature: Natural structures showing "order in flow"
   - Urban: Geometry & repetition for precision & control
   - Structure in the background enables strategic thinking
   ===================================================== */

/* ===== Degular Font ===== */
@font-face {
  font-family: 'Degular';
  src: url('../fonts/NeoshareDegular-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Degular';
  src: url('../fonts/NeoshareDegularDisp-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== Official neoshare Brand Colors ===== */
:root {
  /* Primary Brand Colors */
  --graphite-grey: #242428;
  --soft-sand: #F7F2EB;
  --pure-white: #FFFFFF;
  --pure-black: #000000;

  /* Accent Colors */
  --signal-orange: #E66300;
  --soft-orange: #F9954A;

  /* Supporting Colors */
  --trust-blue: #265797;
  --calm-blue: #ADBED4;
  --evergreen: #2E5B5B;
  --soft-green: #8ABEBE;
}

/* Theme: Light Mode */
:root,
:root[data-theme="light"] {
  --bg-primary: var(--soft-sand);
  --bg-secondary: var(--pure-white);
  --bg-section-alt: rgba(36, 36, 40, 0.03);
  --bg-hero: var(--pure-white);
  --bg-hero-gradient: linear-gradient(135deg, var(--soft-sand) 0%, var(--pure-white) 100%);

  --text-primary: var(--graphite-grey);
  --text-secondary: rgba(36, 36, 40, 0.65);
  --text-inverse: var(--pure-white);

  --border-primary: rgba(36, 36, 40, 0.1);
  --border-secondary: rgba(36, 36, 40, 0.06);

  --accent-primary: var(--signal-orange);
  --accent-hover: var(--soft-orange);
  --accent-light: rgba(230, 99, 0, 0.1);

  --shadow-color: rgba(0, 0, 0, 0.1);

  /* Product-specific colors - Light theme */
  --atrium-bg: #e8f0f7;
  --atrium-accent: #265797;
  --atlas-bg: #d4e8e8;
  --atlas-accent: #2E5B5B;
  --atlas-accent-soft: #8ABEBE;
  --argus-bg: #fff4ed;
  --argus-accent: #E66300;
  --argus-accent-soft: #F9954A;

  /* Icon backgrounds for light theme */
  --icon-bg: var(--graphite-grey);
  --icon-bg-secondary: rgba(36, 36, 40, 0.08);
}

/* Theme: Dark Mode */
:root[data-theme="dark"] {
  --bg-primary: #0a0a0a;
  --bg-secondary: #151515;
  --bg-section-alt: rgba(255, 255, 255, 0.03);
  --bg-hero: var(--pure-black);
  --bg-hero-gradient: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);

  --text-primary: var(--pure-white);
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-inverse: var(--graphite-grey);

  --border-primary: rgba(255, 255, 255, 0.1);
  --border-secondary: rgba(255, 255, 255, 0.06);

  --accent-primary: var(--signal-orange);
  --accent-hover: var(--soft-orange);
  --accent-light: rgba(230, 99, 0, 0.15);

  --shadow-color: rgba(0, 0, 0, 0.3);

  /* Product-specific colors - Dark theme */
  --atrium-bg: #1a2d4d;
  --atrium-accent: #4a7bc7;
  --atlas-bg: #1a3838;
  --atlas-accent: #4a8a8a;
  --atlas-accent-soft: #8ABEBE;
  --argus-bg: #4d2a00;
  --argus-accent: #ff7b1a;
  --argus-accent-soft: #F9954A;

  /* Icon backgrounds for dark theme */
  --icon-bg: var(--pure-white);
  --icon-bg-secondary: rgba(255, 255, 255, 0.08);
}

/* Legacy variables for backward compatibility */
:root {
  --bg-dark: var(--pure-black);
  --bg-light: var(--soft-sand);
  --surface-dark: #0F0F0F;
  --surface-light: var(--pure-white);

  --text-dark: var(--pure-white);
  --text-light: var(--graphite-grey);
  --text-muted-dark: rgba(255, 255, 255, 0.65);
  --text-muted-light: rgba(36, 36, 40, 0.65);

  --border-dark: rgba(255, 255, 255, 0.1);
  --border-light: rgba(36, 36, 40, 0.1);

  /* Typography - Degular Font */
  --font-sans: 'Degular', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Fluid Typography Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8rem);
  --text-sm: clamp(0.875rem, 0.85rem + 0.15vw, 0.95rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
  --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.625rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2.125rem);
  --text-3xl: clamp(1.875rem, 1.5rem + 1.75vw, 3rem);
  --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.75rem);
  --text-5xl: clamp(3rem, 2rem + 4.5vw, 5.5rem);

  /* Spacing - Generous, Notion-inspired */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-6xl: 12rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 9999px;

  /* Shadows - Subtle Depth */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.16), 0 8px 16px rgba(0, 0, 0, 0.08);

  /* Timing Functions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --duration-fast: 150ms;
  --duration-base: 220ms;
  --duration-slow: 320ms;
}

/* Dark theme overrides for legacy variables */
:root[data-theme="dark"] {
  --surface-light: #151515;
  --text-light: var(--pure-white);
  --text-muted-light: rgba(255, 255, 255, 0.65);
  --border-light: rgba(255, 255, 255, 0.1);
}

/* ===== Base Styles ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
  filter: none !important;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

html {
  filter: none !important;
}

/* No padding - header overlays hero */
main {
  padding-top: 0;
  margin: 0;
  width: 100%;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

ul, ol {
  list-style: none;
}

/* ===== Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-lg);
  background: var(--accent-primary);
  color: var(--pure-white);
  padding: var(--space-md) var(--space-xl);
  font-weight: 600;
  font-size: var(--text-sm);
  z-index: 9999;
  border-radius: var(--radius-md);
  transition: top var(--duration-fast) var(--ease-out);
}

.skip-link:focus {
  top: var(--space-lg);
  outline: 2px solid white;
  outline-offset: 3px;
}

/* ===== Container ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-2xl);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }

  .header {
    top: 0;
    left: 0;
    right: 0;
  }

  .header-container {
    padding: 0 1rem;
  }
}

/* ===== Floating Pill Navigation ===== */
/* Custom element wrapper - fixed positioning */
neoshare-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99999 !important;
  display: block !important;
  pointer-events: none;
  isolation: isolate;
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header wrapper */
.header-wrapper {
  width: 100%;
  pointer-events: none;
  padding: 0;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-max-width {
  max-width: 100%;
  margin: 0 auto;
  pointer-events: none;
  padding: 0 24px;
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled state - narrower width with padding */
neoshare-header:has(.header-scrolled) {
  top: 24px !important;
}

neoshare-header:has(.header-scrolled) .header-max-width {
  max-width: 1200px;
  padding: 0 40px;
}

/* Base header - at top, completely transparent */
.header {
  position: relative;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  font-family: var(--font-sans);
  isolation: isolate;
}

/* Scrolled state - pill with frosted glass */
.header.header-scrolled {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.75) 100%
  ) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
              0 2px 8px rgba(0, 0, 0, 0.06) !important;
  transform: translate3d(0, 0, 0) !important;
}

/* Dark theme scrolled */
.header.header-scrolled.theme-dark {
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.75) 100%
  ) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
}

/* When dropdown is open or header is clicked - add frosted glass to transparent state */
.header.header-at-top.expanded,
.header.header-at-top:focus-within {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.75) 100%
  ) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

.header.header-at-top.expanded.theme-dark,
.header.header-at-top:focus-within.theme-dark {
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.75) 100%
  ) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Hidden state - slide up */
.header.header-hidden {
  transform: translateY(-120%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1),
              opacity 0.3s cubic-bezier(0.4, 0, 1, 1) !important;
}

/* Header inner padding */
.header-inner {
  padding: 16px 32px;
}

/* Header content - flexbox layout */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 40px;
}

/* Logo - Adaptive based on theme */
.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  height: 24px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

/* Light theme - use dark logo */
.header.theme-light .header-logo img {
  filter: brightness(0) invert(0);
}

/* Navigation items - Adaptive based on theme */
.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
}

.nav-item:hover {
  color: rgba(255, 255, 255, 1);
}

.nav-arrow {
  transition: all 0.3s ease;
}

/* Light theme - use dark text */
.header.theme-light .nav-item {
  color: rgba(0, 0, 0, 0.85);
}

.header.theme-light .nav-item:hover {
  color: rgba(0, 0, 0, 1);
}

.header.theme-light .nav-arrow {
  color: rgba(0, 0, 0, 0.85);
}

.nav-arrow {
  transition: transform 0.3s ease;
}

/* CTA Button */
.header-cta {
  flex-shrink: 0;
}

/* Button stays orange in both themes for brand consistency */
.header-cta .btn-primary {
  background: var(--signal-orange);
  color: white;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  padding: 8px;
}

/* Mobile Menu Overlay - Full Screen with Glass Effect */
.mobile-menu-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(26, 29, 35, 0.75) !important;
  backdrop-filter: blur(40px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
  z-index: 999999 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mobile-menu-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Mobile menu header with logo and close button */
.mobile-menu-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 12px 20px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  min-height: 44px !important;
}

.mobile-menu-logo img {
  height: 20px !important;
  width: auto !important;
  display: block !important;
}

.mobile-menu-close {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  background: transparent !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.9) !important;
  cursor: pointer !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.mobile-menu-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 3rem 2rem 2rem 2rem !important;
  width: 100% !important;
  max-width: 90% !important;
  flex: 1 !important;
}

.mobile-nav-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  background: transparent !important;
  border: none !important;
  padding: 1rem 1.5rem !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 300px !important;
  min-height: 48px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

/* Products section with nested items */
.mobile-products-section {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 300px !important;
  gap: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.mobile-products-label {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 0.5rem 1.5rem !important;
  width: 100% !important;
  text-align: center !important;
}

.mobile-product-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.125rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  background: transparent !important;
  border: none !important;
  padding: 0.875rem 1.5rem !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  text-align: center !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.mobile-product-item:hover,
.mobile-product-item:active {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

/* Desktop-style CTA button with pointy top corners */
.mobile-nav-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  background: var(--signal-orange, #e66300) !important;
  padding: 0.875rem 2rem !important;
  border-radius: 0 0 8px 8px !important;
  text-decoration: none !important;
  text-align: center !important;
  min-width: 140px !important;
  margin-top: 1.5rem !important;
  transition: all 0.2s ease !important;
}

.mobile-nav-cta:hover,
.mobile-nav-cta:active {
  background: #ff7517 !important;
  transform: translateY(-2px) !important;
}

body.mobile-menu-open {
  overflow: hidden !important;
}

@media (max-width: 768px) {
  /* Hide desktop navigation on mobile */
  .header-nav {
    display: none !important;
  }

  .nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10000;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-left: 12px;
  }

  /* Hide desktop CTA on mobile, show burger instead */
  .header-cta {
    display: none;
  }

  /* Burger to X animation */
  .nav-toggle-icon {
    transition: transform 0.3s ease;
  }

  .nav-toggle-line {
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line-1 {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line-2 {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line-3 {
    transform: translateY(-6px) rotate(-45deg);
  }

  body.nav-open {
    overflow: hidden;
  }

  /* Mobile: Always use pill form */
  neoshare-header {
    top: 12px !important;
    left: 12px !important;
    right: 12px !important;
  }

  .header-max-width {
    padding: 0 12px !important;
  }

  .header {
    border-radius: 16px !important;
    position: relative;
    z-index: 10000;
  }

  .header-inner {
    padding: 12px 20px;
  }

  .header-content {
    gap: 12px;
  }

  .header-logo img {
    height: 20px;
  }

  /* Mobile scrolled state padding */
  .header-scrolled .header-max-width {
    padding: 0 12px !important;
  }

  /* Hide CTA button on mobile in menu */
  .header-nav.nav-open ~ .header-cta {
    display: none;
  }
}

/* DISABLED: Header should always be visible and sticky */
/* Hide header when scrolling down - must override all other styles */
/*
.header.header-hidden,
.header.header-hidden.theme-light,
.header.header-hidden.theme-dark {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), opacity 250ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}
*/

/* Show header when scrolling up - smooth and gentle */
/* DISABLED: Header should always be visible */
/*
.header:not(.header-hidden),
.header.theme-light:not(.header-hidden),
.header.theme-dark:not(.header-hidden) {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), opacity 400ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}
*/

/* Force header to always be visible */
.header {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* No color overrides needed - pure blur works for both themes */

/* Light sections: pure blur, no background color */
.header.on-light {
  background: transparent;
  border-bottom: 1px solid rgba(36, 36, 40, 0.1);
}

/* Header at top - no blur */
.header.header-at-top {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.05);
}

/* Header over hero video section */
.header.header-over-hero {
  backdrop-filter: blur(50px) saturate(180%);
  -webkit-backdrop-filter: blur(50px) saturate(180%);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Header expanded state - keep same glassmorphism effect */
/* Expanded state keeps same frosted glass, no solid background */
.header.expanded {
  /* Inherits frosted glass from base or scrolled state */
}

/* Remove dark theme solid background override */
:root[data-theme="dark"] .header.expanded {
  /* Let it inherit from base state */
}

/* Products expanded content */
.products-expanded-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.32, 0.72, 0, 1),
              opacity 0.5s ease 0.15s;
}

.products-expanded-content.active {
  max-height: 400px;
  opacity: 1;
}

.products-expanded-inner {
  padding: 24px 0 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 16px;
}

.products-expanded-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}

.product-expanded-card {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  padding: 16px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.product-expanded-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.product-expanded-icon {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-expanded-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-expanded-text {
  flex: 1;
  min-width: 0;
}

.product-expanded-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.product-expanded-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Dropdown arrow rotation */
.dropdown-arrow {
  transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .products-expanded-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Adaptive Navigation - Clean Color Switching ===== */
/* Navigation links - white on dark, dark on light */
.nav-list a,
.nav-dropdown-trigger {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
}

.nav-list a:hover,
.nav-dropdown-trigger:hover {
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.1);
}

/* Switch to dark text on light backgrounds */
.header.on-light .nav-list a,
.header.on-light .nav-dropdown-trigger {
  color: rgba(36, 36, 40, 0.85) !important;
}

.header.on-light .nav-list a:hover,
.header.on-light .nav-dropdown-trigger:hover {
  color: rgba(36, 36, 40, 1);
}

/* Dropdown arrow - adapts with text */
.dropdown-arrow {
  transition: transform var(--duration-fast) var(--ease);
  stroke: currentColor;
}

/* Fallback for browsers without backdrop-filter */
@supports not (backdrop-filter: blur(1px)) {
  .header {
    background: rgba(0, 0, 0, 0.85);
  }
  .header.is-scrolled {
    background: rgba(0, 0, 0, 0.95);
  }
}

/* Respect reduced transparency preference */
@media (prefers-reduced-transparency: reduce) {
  .header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.85);
  }
  .header.is-scrolled {
    background: rgba(0, 0, 0, 0.95);
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 1.5rem;
  transition: height var(--duration-slow) var(--ease);
}

/* Condense header height when scrolled */
.header.is-scrolled .header-container {
  height: 64px;
}

.wordmark {
  display: flex;
  align-items: center;
  position: relative;
  transition: opacity var(--duration-fast) var(--ease);
}

.wordmark:hover {
  opacity: 0.85;
}

.logo-image {
  height: 24px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.logo-white {
  opacity: 1;
}

.logo-black {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.header.on-light .logo-white {
  opacity: 0;
}

.header.on-light .logo-black {
  opacity: 1;
}

/* Theme-based logo and text color switching */
.header.theme-light {
  background: transparent;
  border-bottom: 1px solid rgba(36, 36, 40, 0.1);
}

.header.theme-light .logo-white {
  opacity: 0;
}

.header.theme-light .logo-black {
  opacity: 1;
}

.header.theme-light .nav-list a,
.header.theme-light .nav-dropdown-trigger {
  color: rgba(36, 36, 40, 0.85);
}

.header.theme-light .nav-list a:hover,
.header.theme-light .nav-dropdown-trigger:hover {
  color: rgba(36, 36, 40, 1);
  background: rgba(36, 36, 40, 0.05);
}

.header.theme-dark {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.theme-dark .logo-white {
  opacity: 1;
}

.header.theme-dark .logo-black {
  opacity: 0;
}

.header.theme-dark .nav-list a,
.header.theme-dark .nav-dropdown-trigger {
  color: rgba(255, 255, 255, 0.95);
}

.header.theme-dark .nav-list a:hover,
.header.theme-dark .nav-dropdown-trigger:hover {
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .logo-image {
    height: 19px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-list a,
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  font-size: 0.9375rem !important;
  font-weight: 500 !important;
  padding: 0.65rem 1rem !important;
  border-radius: 10px;
  height: auto;
  line-height: 1.5;
  letter-spacing: -0.01em;
  gap: 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  /* DO NOT set color here - it's inherited from line 325 */
}

.nav-list a:hover,
.nav-dropdown-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Critical: on-light text colors need to come AFTER the base nav styles */
.header.on-light .nav-list a,
.header.on-light .nav-dropdown-trigger {
  color: rgba(36, 36, 40, 0.85) !important;
}

.header.on-light .nav-list a:hover,
.header.on-light .nav-dropdown-trigger:hover {
  color: rgba(36, 36, 40, 1) !important;
  background: rgba(0, 0, 0, 0.05);
}

.nav-list a:focus-visible,
.nav-dropdown-trigger:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 3px;
}

/* Products Dropdown (Notion-style) */
.nav-item-with-dropdown {
  position: relative;
}

.dropdown-arrow {
  transition: transform var(--duration-fast) var(--ease);
}

.nav-dropdown-trigger[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown styles moved to products-dropdown.css */

/* Old mobile toggle styles removed - now using new SVG-based toggle in mobile breakpoint */

  .nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 340px;
    background: var(--surface-dark);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-3xl) var(--space-2xl);
    gap: var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--duration-base) var(--ease);
    box-shadow: var(--shadow-xl);
    border-left: 1px solid var(--border-dark);
  }

  .nav-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
  }

  .nav-list a {
    padding: var(--space-lg);
    font-size: var(--text-base);
  }
}

/* ===== Buttons - Shadcn Style ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  height: 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: -0.01em;
  border: none;
  position: relative;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
  opacity: 0.7;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn-primary {
  background: var(--accent-primary);
  color: var(--pure-white);
  box-shadow: 0 2px 8px rgba(230, 99, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
              background 180ms cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 180ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 0 0 0.5rem 0.5rem; /* Sharp top corners, rounded bottom */
}

.btn-primary:hover {
  background: var(--soft-orange);
  box-shadow: 0 4px 12px rgba(230, 99, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.btn-primary:active {
  background: var(--signal-orange);
  transform: scale(0.97);
  box-shadow: 0 1px 4px rgba(230, 99, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-secondary {
  background: transparent;
  color: inherit;
  border: 1.5px solid currentColor;
  opacity: 0.9;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
              opacity 180ms cubic-bezier(0.23, 1, 0.32, 1),
              background 180ms cubic-bezier(0.23, 1, 0.32, 1),
              border-color 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-secondary:hover {
  opacity: 1;
  background: var(--bg-section-alt);
  border-color: var(--text-primary);
  transform: translateY(-1px);
}

.btn-secondary:active {
  background: var(--bg-section-alt);
  transform: scale(0.97);
}

.btn-large {
  height: 2.5rem;
  padding: 0.5rem 2rem;
  font-size: 0.875rem;
}

/* Light section button variants */
.section-light .btn-primary {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.section-light .btn-secondary {
  background: var(--surface-light);
  color: var(--text-light);
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.section-light .btn-secondary:hover {
  background: var(--bg-section-alt);
  border-color: var(--border-primary);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: inherit;
}

.section-title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-3xl);
  max-width: 900px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section-title-center {
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: var(--space-4xl);
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.section-light .section-title-center {
  color: var(--text-light);
}

.section-dark .section-title-center {
  color: var(--text-primary);
}

.prose {
  max-width: 700px;
}

.prose p {
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.prose .highlight {
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.65;
}

.prose .highlight strong {
  color: var(--accent-primary);
  font-weight: 700;
}

.prose .insight {
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: var(--space-2xl);
  margin-bottom: 0;
  line-height: 1.5;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--accent-primary);
  font-weight: 600;
  font-size: var(--text-base);
  transition: gap var(--duration-fast) var(--ease);
}

.link-arrow:hover {
  gap: var(--space-lg);
}

.link-arrow::after {
  content: '→';
  font-size: 1.25em;
  transition: transform var(--duration-fast) var(--ease);
}

.link-arrow:hover::after {
  transform: translateX(2px);
}

/* ===== Sections ===== */
section {
  position: relative;
  padding: var(--space-6xl) 0;
}

@media (max-width: 768px) {
  section {
    padding: var(--space-5xl) 0;
  }
}

.section-dark {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.section-light {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.section-light .prose p {
  color: var(--text-muted-light);
}

.section-light .prose .highlight {
  color: var(--text-light);
}

.section-light .prose .insight {
  color: var(--text-light);
}

.section-light .link-arrow {
  color: var(--accent-primary);
}

/* Brand Principle: Natural structures showing "order in flow" */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* ===== OLD Hero Section - Replaced by hero-scroll.css ===== */
/* Commented out to prevent conflicts with new hero scroll animation */
/*
.hero-scene {
  min-height: 300vh;
  padding: 0;
  margin: 0;
  position: relative;
  background: var(--bg-secondary);
  width: 100%;
}

.hero-card {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  border-radius: 0;
  overflow: hidden;
  z-index: 1;
  background: var(--bg-secondary);
  margin: 0;
}
*/

.hero-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--bg-primary);
  z-index: 100;
  opacity: 0;
}

/* 3D Layered Hero Structure */
.hero-3d-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  overflow: hidden;
}

.hero-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Layer 1: Background video (z-index: 1) */
.hero-layer-back {
  z-index: 1;
  transform: translateZ(-50px) scale(1.05);
}

.hero-video-back {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.6;
  filter: brightness(0.7) blur(2px);
}

/* Layer 2: Hero Text (z-index: 10) */
.hero-layer-text {
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  transform: translateZ(0px);
  background: none;
}

.hero-layer-text .container {
  background: none;
  box-shadow: none;
}

.hero-layer-text .hero-content {
  background: none;
  box-shadow: none;
}

.hero-title-3d {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 10;
  background: none;
  box-shadow: none;
  text-shadow: none;

  /* Stagger animation */
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeIn 600ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 150ms;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle-3d {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  color: var(--text-primary);
  opacity: 0.92;
  margin-bottom: var(--space-3xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;

  /* Stagger animation */
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeIn 600ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 250ms;
}

.hero-ctas {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
  justify-content: center;

  /* Stagger animation */
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeIn 600ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 350ms;
  margin-right: auto;
  font-weight: 400;
  background: none;
  box-shadow: none;
  text-shadow: none;
}

/* Layer 3: Foreground video (z-index: 20) */
.hero-layer-front {
  z-index: 20;
  transform: translateZ(50px) scale(0.95);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.3;
}

.hero-video-front {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, transparent 30%, black 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, transparent 30%, black 70%);
}

/* ===== OLD STATIC HERO STYLES - DISABLED (Conflicts with hero-scroll.css) ===== */
/*
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-2xl);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-3xl);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--text-primary);
  opacity: 0.82;
  font-weight: 500;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.01em;

  opacity: 0;
  transform: translateY(8px);
  animation: heroFadeIn 600ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 450ms;
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-3d,
  .hero-subtitle-3d,
  .hero-ctas,
  .hero-proof {
    animation: heroFadeInReduced 400ms ease forwards;
  }
}

@keyframes heroFadeInReduced {
  to {
    opacity: 1;
    transform: none;
  }
}

.separator {
  opacity: 0.4;
  user-select: none;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl);
}

.product-loop {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 12px 32px rgba(230, 99, 0, 0.2));
  opacity: 0.92;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-4xl);
  }

  .hero-visual {
    order: -1;
    padding: var(--space-2xl);
  }
}

@media (max-width: 640px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}
*/

/* ===== Data Reset Loop Section ===== */
.data-reset {
  padding: 8rem 0;
  position: relative;
  z-index: 5;
  margin-top: 0;
  pointer-events: auto;
}

.data-reset::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: transparent;
  z-index: -1;
}

.data-reset::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(230, 99, 0, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

.data-reset-container {
  position: relative;
}

/* New Two-Column Layout */
.data-reset-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
  margin-bottom: var(--space-5xl);
}

.data-reset-text {
  padding-right: var(--space-3xl);
  padding-left: 0;
}

.data-reset-label {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted-dark);
  margin-bottom: var(--space-lg);
  display: block;
  text-align: left;
  margin-left: -0.08em;
}

.data-reset-title {
  font-size: var(--text-5xl);
  text-align: left;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  font-weight: 700;
  background: linear-gradient(
    to bottom,
    var(--text-primary) 0%,
    var(--text-secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Vertical Flow Layout */
.data-reset-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.flow-step {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.flow-visual {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  border-radius: var(--radius-xl);
  background: var(--icon-bg);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-base) ease;
}

.flow-step:hover .flow-visual {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(230, 99, 0, 0.15);
}

.flow-label {
  color: var(--text-primary);
  flex: 1;
}

.flow-label h3 {
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Lottie Flow Icons - All animations handled by Lottie */
.flow-visual lottie-player {
  display: block;
}

.product-dropdown-icon lottie-player {
  display: block;
}

.contact-detail-item lottie-player {
  display: block;
  flex-shrink: 0;
}


/* Step 1: Structure - Particles gathering into bars */
.data-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle at 30% 30%, #FF8533, var(--signal-orange));
  border-radius: 50%;
  opacity: 0;
  animation: gatherParticles 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  box-shadow:
    0 0 16px rgba(230, 99, 0, 0.8),
    0 0 4px rgba(255, 255, 255, 0.4);
  filter: blur(0.5px);
}

.particle-1 { top: 15%; left: 15%; animation-delay: 0s; }
.particle-2 { top: 20%; right: 15%; animation-delay: 0.3s; }
.particle-3 { bottom: 25%; left: 25%; animation-delay: 0.6s; }
.particle-4 { bottom: 15%; right: 25%; animation-delay: 0.9s; }
.particle-5 { top: 45%; left: 45%; animation-delay: 1.2s; }

@keyframes gatherParticles {
  0% {
    opacity: 0;
    transform: scale(0) translateY(20px);
  }
  20% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  80% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.5) translateY(-10px);
  }
}

.data-structure {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  z-index: 2;
}

.structure-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--signal-orange) 0%, var(--soft-orange) 100%);
  border-radius: 3px;
  animation: expandBar 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  box-shadow:
    0 2px 12px rgba(230, 99, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  transform-origin: left center;
}

.structure-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  border-radius: 3px;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -40%;
    opacity: 0;
  }
  50% {
    left: 50%;
    opacity: 1;
  }
  100% {
    left: 110%;
    opacity: 0;
  }
}

.bar-1 { width: 90px; animation-delay: 0s; }
.bar-2 { width: 70px; animation-delay: 0.4s; }
.bar-3 { width: 110px; animation-delay: 0.8s; }

@keyframes expandBar {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  30% {
    transform: scaleX(1);
    opacity: 1;
  }
  70% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}

/* Step 2: Send - Packets moving */
.send-animation {
  position: relative;
  width: 120px;
  height: 60px;
}

.data-packet {
  position: absolute;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #FF8533 0%, var(--signal-orange) 50%, var(--soft-orange) 100%);
  border-radius: 4px;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  animation: sendPacket 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  box-shadow:
    0 0 24px rgba(230, 99, 0, 0.8),
    0 4px 12px rgba(230, 99, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.data-packet::before {
  content: '';
  position: absolute;
  inset: 3px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 2px;
}

.data-packet::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: radial-gradient(circle, rgba(230, 99, 0, 0.4), transparent 70%);
  border-radius: 6px;
  animation: pulse 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.packet-1 { animation-delay: 0s; }
.packet-2 { animation-delay: 1.2s; }
.packet-3 { animation-delay: 2.4s; }

@keyframes sendPacket {
  0% {
    left: -40px;
    opacity: 0;
    transform: translateY(-50%) scale(0.6) rotate(0deg);
  }
  10% {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(0deg);
  }
  90% {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(360deg);
  }
  100% {
    left: 140px;
    opacity: 0;
    transform: translateY(-50%) scale(0.6) rotate(360deg);
  }
}

.send-waves {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.wave {
  width: 30px;
  height: 30px;
  border: 2px solid var(--signal-orange);
  border-radius: 50%;
  position: absolute;
  animation: expandWave 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  box-shadow: 0 0 8px rgba(230, 99, 0, 0.4);
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 0.8s; }
.wave-3 { animation-delay: 1.6s; }

@keyframes expandWave {
  0% {
    transform: scale(0.3);
    opacity: 1;
    border-width: 3px;
  }
  50% {
    opacity: 0.6;
    border-width: 2px;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
    border-width: 1px;
  }
}

/* Step 3: Restructure - Transform animation */
.restructure-animation {
  display: flex;
  align-items: center;
  gap: 12px;
}

.data-block {
  width: 50px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(230, 99, 0, 0.15), rgba(230, 99, 0, 0.05));
  border: 1.5px solid rgba(230, 99, 0, 0.4);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(230, 99, 0, 0.2);
  backdrop-filter: blur(5px);
}

.block-line {
  height: 4px;
  background: linear-gradient(90deg, var(--signal-orange), var(--soft-orange));
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(230, 99, 0, 0.4);
}

.block-old {
  animation: fadeOutBlock 3s ease-in-out infinite;
}

.block-new {
  animation: fadeInBlock 3s ease-in-out infinite;
}

@keyframes fadeOutBlock {
  0%, 40% { opacity: 1; }
  60%, 100% { opacity: 0.3; }
}

@keyframes fadeInBlock {
  0%, 40% { opacity: 0.3; }
  60%, 100% { opacity: 1; }
}

.transform-icon {
  font-size: 40px;
  font-weight: 300;
  color: var(--signal-orange);
  animation: rotate 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  text-shadow:
    0 0 24px rgba(230, 99, 0, 1),
    0 0 48px rgba(230, 99, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 4px 12px rgba(230, 99, 0, 0.6));
  line-height: 1;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.5;
  }
  15% {
    transform: rotate(0deg) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: rotate(180deg) scale(1.15);
    opacity: 1;
  }
  85% {
    transform: rotate(360deg) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 0.5;
  }
}

/* Step 4: Loop - Circular motion */
.loop-animation {
  width: 120px;
  height: 120px;
}

.loop-svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .data-reset-layout {
    grid-template-columns: 1fr;
    gap: var(--space-4xl);
  }

  .data-reset-text {
    padding-right: 0;
  }

  .data-reset-title {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .flow-step {
    flex-direction: column;
    text-align: center;
  }

  .flow-visual {
    width: 140px;
    height: 140px;
  }
}

.data-reset-card {
  background: linear-gradient(
    135deg,
    rgba(36, 36, 40, 0.6) 0%,
    rgba(15, 15, 15, 0.8) 100%
  );
  border: 1px solid rgba(230, 99, 0, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all var(--duration-base) var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.data-reset-card:hover {
  border-color: rgba(230, 99, 0, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(230, 99, 0, 0.2);
  background: linear-gradient(
    135deg,
    rgba(36, 36, 40, 0.8) 0%,
    rgba(15, 15, 15, 0.9) 100%
  );
}

.data-reset-image {
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.placeholder-image {
  width: 100%;
  height: auto;
}

.placeholder-image svg {
  width: 100%;
  height: auto;
  display: block;
}

.data-reset-label {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  letter-spacing: -0.01em;
}

.data-reset-footer {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.data-reset-insight {
  font-size: var(--text-xl);
  line-height: 1.6;
  color: var(--text-muted-dark);
  margin-bottom: var(--space-2xl);
}

.data-reset-insight strong {
  color: var(--accent-primary);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .data-reset-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .data-reset-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Products Section ===== */
.products {
  padding: 0;
  transition: background 300ms ease;
  font-family: var(--font-sans);
}

.products-header {
  padding: var(--space-5xl) var(--space-3xl) var(--space-3xl);
  text-align: center;
  transition: background 300ms ease;
}

.products-eyebrow {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-primary);
  margin-bottom: var(--space-lg);
}

.products-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  transition: color 300ms ease;
  font-family: var(--font-sans);
}

/* Scroll-based Products */
.products-scroll-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-5xl);
  padding: 0 var(--space-3xl) var(--space-5xl);
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
}

.products-images-sticky {
  position: sticky;
  top: 120px;
  height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 600ms ease;
  border-radius: 12px;
  border: 1px solid rgba(36, 36, 40, 0.08);
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.08),
    0 30px 60px rgba(0, 0, 0, 0.06),
    0 12px 24px rgba(0, 0, 0, 0.04);
}

.product-image.active {
  opacity: 1;
  position: relative;
}

.products-content-scroll {
  display: flex;
  flex-direction: column;
  gap: var(--space-6xl);
  padding: var(--space-3xl) 0;
}

.product-content-item {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-4xl) 0;
}

.product-content-item .product-name {
  font-size: var(--text-lg);
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  color: var(--accent-primary);
  margin-bottom: var(--space-lg);
}

.product-content-item .product-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xl);
  transition: color 300ms ease;
}

.product-content-item .product-description {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  transition: color 300ms ease;
}

.product-cta-group {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  flex-wrap: wrap;
}

.product-link {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 200ms ease;
}

.product-link:hover {
  color: var(--accent-hover);
}

/* Product Section Wrappers */
.product-section {
  background: var(--bg-secondary);
  padding: var(--space-5xl) 0;
}

/* Interactive Demo Container */
.product-demo-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-demo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 400ms cubic-bezier(0.23, 1, 0.32, 1),
              filter 200ms cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(20px) scale(0.98);
  filter: blur(0px);
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.product-demo.active {
  opacity: 1 !important;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  filter: blur(0px);
  z-index: 10;
}

/* Demo Frame Header (deprecated - keeping for atrium iframe fallback) */
.demo-frame-header {
  display: none;
}

/* Floating Reset Button */
.demo-reset-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: var(--icon-bg-secondary);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  cursor: pointer;
  transition: all 160ms cubic-bezier(0.23, 1, 0.32, 1);
  color: var(--text-primary);
}

@media (hover: hover) and (pointer: fine) {
  .demo-reset-btn:hover {
    background: var(--icon-bg-secondary);
    border-color: var(--border-primary);
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.demo-reset-btn:active {
  transform: scale(0.97);
  transition-duration: 100ms;
}

.demo-reset-btn svg {
  width: 18px;
  height: 18px;
}

/* Demo Frame Content */
.demo-frame-content {
  flex: 1;
  padding: var(--space-3xl);
  overflow-y: auto;
}

/* Full-width iframe demos (argus, atlas) */
.demo-frame-content iframe {
  padding: 0;
}

.argus-network .demo-frame-content,
.atlas-views .demo-frame-content {
  padding: 0;
  overflow: hidden;
}

/* Dark theme adjustments for demo frames */
:root[data-theme="dark"] .product-demo {
  background: var(--bg-secondary);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}


:root[data-theme="dark"] .timeline-content,
:root[data-theme="dark"] .stage-card {
  background: var(--bg-primary);
}

:root[data-theme="dark"] .timeline-stages::before {
  background: var(--border-primary);
}

:root[data-theme="dark"] .timeline-dot {
  background: var(--bg-secondary);
  border-color: var(--border-primary);
}

:root[data-theme="dark"] .market-tabs {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

:root[data-theme="dark"] .network-node circle {
  fill: var(--bg-secondary);
}

:root[data-theme="dark"] .network-connection {
  stroke: rgba(255, 255, 255, 0.2);
}

:root[data-theme="dark"] .network-label {
  fill: var(--text-secondary);
}

/* atrium Demo - Syndication Module Embed */
.atrium-timeline .demo-frame-content {
  background: #f8f8f8;
  overflow: hidden;
  padding: 0;
  position: relative;
  font-family: 'Degular', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}

.atrium-demo-iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.atrium-demo-iframe iframe {
  width: 100%;
  height: 100%;
}
  border: none;
  display: block;
}

/* page-wrapper from business-case.html */
.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

/* Header styles from business-case.html */
.atrium-demo-iframe .header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.atrium-demo-iframe .header h1 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #26283e;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.atrium-demo-iframe .subtitle {
  font-size: 1rem;
  color: #42526e;
  font-weight: 500;
}

/* Tabs from business-case.html */
.atrium-demo-iframe .tabs {
  display: flex;
  gap: 8px;
}

.atrium-demo-iframe .tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 32px;
  padding: 4px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 150ms ease;
  white-space: nowrap;
  border: 1px solid #e5e7ec;
  background: #f8f8f8;
  color: #26283e;
}

.atrium-demo-iframe .tab:not(.active):hover {
  background: #eceef0;
}

.atrium-demo-iframe .tab.active {
  background: #060fd0;
  color: white;
  border-color: #060fd0;
}

/* section-title from business-case.html */
.atrium-demo-iframe .section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #26283e;
  margin: 32px 0 16px 0;
  letter-spacing: -0.2px;
}

/* lenders-table from business-case.html */
.atrium-demo-iframe .lenders-table {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  margin-bottom: 32px;
}

.atrium-demo-iframe .lenders-table table {
  width: 100%;
  border-collapse: collapse;
}

.atrium-demo-iframe .lenders-table thead tr {
  background: #fafafa;
}

.atrium-demo-iframe .lenders-table th {
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 600;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  border-bottom: 1px solid #e4e4e7;
}

.atrium-demo-iframe .lenders-table td {
  padding: 16px 24px;
  font-size: 14px;
  color: #26283e;
  border-bottom: 1px solid #f4f4f5;
  vertical-align: middle;
}

.atrium-demo-iframe .lenders-table tbody tr:last-child td {
  border-bottom: none;
}

.atrium-demo-iframe .lenders-table tbody tr {
  transition: background 150ms ease;
}

.atrium-demo-iframe .lenders-table tbody tr:hover {
  background: #fafafa;
}

.atrium-demo-iframe .lender-name {
  display: flex;
  align-items: center;
  gap: 12px;
}

.atrium-demo-iframe .lender-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #060fd0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.atrium-demo-iframe .lender-avatar.participant {
  background: #7d7e8b;
}

.atrium-demo-iframe .amount-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.atrium-demo-iframe .progress-bar-container {
  width: 120px;
  height: 8px;
  background: #f2f2f7;
  border-radius: 100px;
  overflow: hidden;
}

.atrium-demo-iframe .progress-bar-fill {
  height: 100%;
  background: #060fd0;
  border-radius: 100px;
  transition: width 300ms ease;
}

/* contact-card from business-case.html */
.atrium-demo-iframe .contact-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: start;
  margin-bottom: 32px;
}

.atrium-demo-iframe .contact-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #060fd0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}

.atrium-demo-iframe .contact-info {
  flex: 1;
}

.atrium-demo-iframe .contact-name {
  font-size: 18px;
  font-weight: 600;
  color: #26283e;
  margin-bottom: 4px;
}

.atrium-demo-iframe .contact-role {
  font-size: 14px;
  color: #42526e;
  margin-bottom: 12px;
}

.atrium-demo-iframe .contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.atrium-demo-iframe .contact-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #42526e;
}

.atrium-demo-iframe .contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* changes-list from business-case.html */
.atrium-demo-iframe .changes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.atrium-demo-iframe .change-item {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  padding: 16px;
  display: flex;
  gap: 12px;
  transition: all 200ms ease;
}

.atrium-demo-iframe .change-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.atrium-demo-iframe .change-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #7d7e8b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.atrium-demo-iframe .change-content {
  flex: 1;
}

.atrium-demo-iframe .change-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.atrium-demo-iframe .change-user {
  font-weight: 600;
  color: #26283e;
  font-size: 14px;
}

.atrium-demo-iframe .change-time {
  font-size: 12px;
  color: #71717a;
}

.atrium-demo-iframe .change-description {
  font-size: 14px;
  color: #42526e;
  line-height: 1.5;
}

.atrium-header {
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.atrium-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.3px;
}

.atrium-subtitle {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.atrium-tabs {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.atrium-tab {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 150ms ease-out;
  border-radius: 6px;
}

.atrium-tab:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.04);
}

.atrium-tab.active {
  color: #060fd0;
  background: #e8ebff;
}

.atrium-section {
  display: none;
}

.atrium-section.active {
  display: block;
  animation: fadeIn 250ms ease-out;
}

.atrium-section-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.atrium-lenders {
  background: white;
  border-radius: 10px;
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.atrium-lender {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.atrium-lender:last-child {
  border-bottom: none;
}

.atrium-lender-info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.atrium-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #060fd0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.atrium-avatar-secondary {
  background: #7d7e8b;
}

.atrium-avatar-large {
  width: 56px;
  height: 56px;
  font-size: var(--text-base);
}

.atrium-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-xs);
  min-width: 150px;
}

.atrium-progress {
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.atrium-progress-fill {
  height: 100%;
  background: #060fd0;
  border-radius: 2px;
  transition: width 300ms ease-out;
}

.atrium-contact {
  display: flex;
  gap: var(--space-lg);
  background: white;
  border-radius: 10px;
  padding: var(--space-xl);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  margin-bottom: var(--space-2xl);
}

.atrium-contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.atrium-contact-name {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
}

.atrium-contact-role {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.atrium-contact-info {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.atrium-changes {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.atrium-change {
  display: flex;
  gap: var(--space-md);
  background: white;
  border-radius: 10px;
  padding: var(--space-lg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.atrium-change-content {
  flex: 1;
}

.atrium-change-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-xs);
}

.atrium-change-user {
  font-weight: 600;
  color: var(--text-primary);
  font-size: var(--text-sm);
}

.atrium-change-time {
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

.atrium-change-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* atlas Market Views Demo */
.atlas-views .demo-frame-content {
  display: flex;
  flex-direction: column;
}

.market-tabs {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  border-bottom: 2px solid #e0e0e0;
}

.market-tab {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-base);
  font-weight: 600;
  color: #666;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 200ms ease-out;
  margin-bottom: -2px;
}

.market-tab:hover {
  color: var(--accent-primary);
}

.market-tab.active {
  color: var(--accent-primary);
  border-bottom-color: var(--accent-primary);
}

.market-view {
  display: none;
  min-height: 350px;
}

.market-view.active {
  display: block;
  animation: fadeIn 250ms ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.view-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: var(--space-lg);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.market-card {
  background: #f8f9fa;
  padding: var(--space-lg);
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 200ms ease-out;
}

.market-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.card-label {
  font-size: var(--text-sm);
  color: #666;
  margin-bottom: var(--space-xs);
}

.card-value {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--accent-primary);
}

/* argus Demo - Real Product UI */
.argus-network .demo-frame-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  background: #f8f8f8;
}

.argus-header {
  padding-bottom: var(--space-lg);
}

.argus-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.3px;
}

.argus-subtitle {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.argus-tabs {
  display: flex;
  gap: var(--space-md);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.argus-tab {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 150ms ease-out;
  border-radius: 6px;
}

.argus-tab:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.04);
}

.argus-tab.active {
  color: #060fd0;
  background: #e8ebff;
}

.argus-section {
  display: none;
}

.argus-section.active {
  display: block;
  animation: fadeIn 250ms ease-out;
}

.argus-section-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.argus-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.argus-info-card {
  background: white;
  border-radius: 10px;
  padding: var(--space-xl);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.argus-card-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.argus-info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.argus-info-row:last-child {
  border-bottom: none;
}

.argus-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.argus-value {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
  text-align: right;
}

.argus-documents {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.argus-doc-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: white;
  border-radius: 8px;
  padding: var(--space-md) var(--space-lg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 150ms ease-out;
}

.argus-doc-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.argus-doc-icon {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.argus-doc-name {
  flex: 1;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
}

.argus-doc-meta {
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

.argus-cases {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.argus-case {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-radius: 10px;
  padding: var(--space-lg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 150ms ease-out;
}

.argus-case:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.argus-case-info {
  flex: 1;
}

.argus-case-name {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.argus-case-meta {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.argus-status {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.argus-status.active {
  background: #fff3cd;
  color: #856404;
}

.argus-status.completed {
  background: #d4edda;
  color: #155724;
}

.argus-empty-state {
  text-align: center;
  padding: var(--space-3xl);
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.network-svg {
  width: 100%;
  height: 450px;
}

.network-node {
  cursor: pointer;
  transition: all 200ms ease-out;
}

.network-node circle {
  fill: white;
  stroke: var(--accent-primary);
  stroke-width: 3;
  transition: all 200ms ease-out;
}

.network-node:hover circle,
.network-node.expanded circle {
  fill: var(--accent-primary);
  stroke-width: 4;
}

.network-node text {
  fill: var(--accent-primary);
  font-size: 14px;
  font-weight: 600;
  pointer-events: none;
  transition: fill 200ms ease-out;
}

.network-node:hover text,
.network-node.expanded text {
  fill: white;
}

.network-connection {
  stroke: var(--accent-hover);
  stroke-width: 2;
  fill: none;
  opacity: 0.5;
}

.network-label {
  fill: var(--accent-primary);
  font-size: 12px;
  font-weight: 500;
}

.network-tooltip {
  position: absolute;
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: var(--space-md);
  border-radius: 8px;
  font-size: var(--text-sm);
  pointer-events: none;
  opacity: 0;
  border: 1px solid var(--border-primary);
  box-shadow: var(--shadow-lg);
  transition: opacity 150ms ease-out;
  z-index: 10;
}

.network-tooltip.visible {
  opacity: 1;
}
  transition: color 200ms ease;
}

.product-link:hover {
  color: var(--accent-hover);
}

/* Tab-based Products */
.products-tabs-container {
  padding: 0 0 var(--space-5xl);
}

.product-tabs-nav {
  display: inline-flex;
  justify-content: center;
  gap: 0;
  margin: 0 auto var(--space-5xl);
  background: rgba(36, 36, 40, 0.06);
  border-radius: var(--radius-full);
  padding: 3px;
  position: relative;
  width: fit-content;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.product-tab {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: -0.01em;
  color: var(--text-muted-light);
  padding: var(--space-sm) var(--space-xl);
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease);
  position: relative;
  z-index: 1;
  min-width: 90px;
}

.product-tab:hover {
  color: var(--text-light);
}

.product-tab.active {
  color: var(--pure-white);
  background: var(--accent-primary);
  box-shadow: 0 2px 8px rgba(230, 99, 0, 0.3);
}

.product-tabs-content {
  position: relative;
  min-height: 600px;
}

.product-tab-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.product-tab-panel.active {
  display: block;
}

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

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: start;
}

.product-image-large {
  position: sticky;
  top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-4xl);
  height: calc(100vh - 140px);
}

.product-image-large img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 800px;
  border-radius: 8px;
  border: 1px solid rgba(36, 36, 40, 0.08);
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.08),
    0 30px 60px rgba(0, 0, 0, 0.06),
    0 12px 24px rgba(0, 0, 0, 0.04);
  background: #FFFFFF;
}

.product-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-3xl);
}

.product-info {
  margin-bottom: var(--space-4xl);
}

.product-name {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  color: var(--text-muted-light);
  margin-bottom: var(--space-lg);
}

.product-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2xl);
}

.product-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-muted-light);
  margin-bottom: 0;
}

.product-cta-group {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.product-link {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--accent-primary);
  text-decoration: none;
  transition: all var(--duration-base) var(--ease);
}

.product-link:hover {
  color: var(--signal-orange);
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .product-image-large {
    position: relative;
    top: 0;
    height: auto;
    padding: var(--space-2xl);
  }

  .product-image-large img {
    max-height: 500px;
  }

  .product-content {
    padding: var(--space-xl);
    text-align: center;
  }

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

@media (max-width: 640px) {
  .product-tabs-nav {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .product-tab {
    width: 100%;
  }

  .product-image-large {
    padding: var(--space-lg);
  }

  .product-image-large img {
    max-height: 400px;
  }

  .product-content {
    padding: 0;
  }

  .product-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .product-cta-group .btn {
    width: 100%;
  }
}

/* ===== Industries Section ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5xl);
  margin-top: var(--space-5xl);
  perspective: 1000px;
}

.industry-card {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  opacity: 0;
  transform: translateY(20px);
}

.industry-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--index, 0) * 80ms);
}

/* Industry Icon Animations - Glass Morphism */
.industry-icon-animated {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.1),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}

.industry-icon-animated::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(230, 99, 0, 0.1), rgba(230, 99, 0, 0.05));
  border-radius: var(--radius-xl);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.industry-icon-animated:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(230, 99, 0, 0.3);
  box-shadow:
    0 12px 48px 0 rgba(230, 99, 0, 0.15),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
}

.industry-icon-animated:hover::before {
  opacity: 1;
}

.industry-icon-animated lottie-player,
.industry-icon-animated lord-icon {
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(230, 99, 0, 0.2));
  transition: all 0.4s ease;
}

.industry-icon-animated:hover lottie-player,
.industry-icon-animated:hover lord-icon {
  filter: drop-shadow(0 4px 16px rgba(230, 99, 0, 0.4));
  transform: scale(1.05);
}

.industry-title {
  font-size: var(--text-xl);
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.industry-description {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-muted-light);
  margin-bottom: var(--space-2xl);
}

.industry-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.link-arrow {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted-light);
  text-decoration: none;
  transition: all var(--duration-base) var(--ease);
  display: inline-block;
}

.link-arrow:hover {
  color: var(--accent-primary);
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
}

/* ===== Platform Section ===== */
.platform-container {
  max-width: 1400px;
}

.platform-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
}

.platform-text {
  padding-right: var(--space-3xl);
}

.platform-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

/* Integrated Layer Stack */
.integrated-stack {
  position: relative;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

/* Each layer as a horizontal band */
.integrated-layer {
  position: relative;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(230, 99, 0, 0.1);
  background: rgba(255, 255, 255, 0.5);
}

.integrated-layer:last-child {
  border-bottom: none;
}

/* Hover effect - no layout shift */
.integrated-layer:hover {
  background: rgba(230, 99, 0, 0.04);
}

/* Left side - icon and label */
.layer-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.layer-icon-integrated {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.layer-icon-integrated::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(230, 99, 0, 0.1), rgba(230, 99, 0, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.integrated-layer:hover .layer-icon-integrated {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(230, 99, 0, 0.3);
}

.integrated-layer:hover .layer-icon-integrated::before {
  opacity: 1;
}

.layer-icon-integrated lord-icon {
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(230, 99, 0, 0.2));
  transition: all 0.4s ease;
}

.integrated-layer:hover .layer-icon-integrated lord-icon {
  filter: drop-shadow(0 4px 16px rgba(230, 99, 0, 0.4));
  transform: scale(1.05);
}

.layer-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Right side - description */
.layer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.layer-role {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.layer-detail-small {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.integrated-layer:hover .layer-detail-small {
  opacity: 1;
  max-height: 100px;
  margin-top: 0.5rem;
}

.layer-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  position: relative;
  padding: 2rem 0;
}

/* Vertical connector line between layers */
.layer-stack::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 140px;
  bottom: 140px;
  width: 3px;
  background: linear-gradient(180deg,
    rgba(230, 99, 0, 0.1) 0%,
    rgba(230, 99, 0, 0.4) 50%,
    rgba(230, 99, 0, 0.8) 100%
  );
  z-index: 0;
}

/* Animated data flow up the connector */
.layer-stack::after {
  content: '';
  position: absolute;
  left: 59px;
  bottom: 140px;
  width: 5px;
  height: 8px;
  background: var(--signal-orange);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(230, 99, 0, 0.8);
  animation: dataFlowUp 3s linear infinite;
  z-index: 1;
}

@keyframes dataFlowUp {
  0% {
    bottom: 140px;
    opacity: 0;
    transform: scale(0.5);
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    bottom: calc(100% - 140px);
    opacity: 0;
    transform: scale(0.5);
  }
}

.layer {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-lg);
  background: var(--bg-primary);
  border: 2px solid rgba(230, 99, 0, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all var(--duration-base) var(--ease);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  z-index: 2;
}

.layer.in-view {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--index, 0) * 100ms);
}

.layer:hover {
  transform: translateX(8px) translateY(0);
  border-color: rgba(230, 99, 0, 0.3);
  box-shadow: 0 8px 32px rgba(230, 99, 0, 0.15);
}

.layer:hover .layer-icon {
  transform: scale(1.05);
}

.layer-highlight {
  background: linear-gradient(135deg,
    rgba(230, 99, 0, 0.03) 0%,
    rgba(230, 99, 0, 0.08) 100%
  );
  border-color: rgba(230, 99, 0, 0.3);
}

.layer-icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  border-radius: var(--radius-xl);
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease);
}

/* Collaboration Animation - Connected Nodes Network */
.collab-animation {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collab-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, #FF8533, var(--signal-orange));
  border-radius: 50%;
  border: 2px solid rgba(230, 99, 0, 0.3);
  box-shadow:
    0 0 16px rgba(230, 99, 0, 0.8),
    0 0 4px rgba(255, 255, 255, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
  animation: collabPulse 3s ease-in-out infinite;
}

.collab-dot-1 {
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.collab-dot-2 {
  bottom: 25%;
  left: 30%;
  animation-delay: 1s;
}

.collab-dot-3 {
  bottom: 25%;
  right: 30%;
  animation-delay: 2s;
}

@keyframes collabPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 16px rgba(230, 99, 0, 0.8),
      0 0 4px rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: scale(1.3);
    box-shadow:
      0 0 24px rgba(230, 99, 0, 1),
      0 0 8px rgba(255, 255, 255, 0.6);
  }
}

.collab-line {
  position: absolute;
  background: var(--signal-orange);
  opacity: 0.4;
  animation: lineFlow 3s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(230, 99, 0, 0.6);
}

.collab-line::after {
  content: '';
  position: absolute;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: lineShimmer 2s ease-in-out infinite;
}

.collab-line-1 {
  top: 25%;
  left: 50%;
  width: 2px;
  height: 45%;
  transform: translateX(-50%) rotate(25deg);
  transform-origin: top center;
  animation-delay: 0.5s;
}

.collab-line-2 {
  top: 25%;
  left: 50%;
  width: 2px;
  height: 45%;
  transform: translateX(-50%) rotate(-25deg);
  transform-origin: top center;
  animation-delay: 1.5s;
}

.collab-line-3 {
  bottom: 27%;
  left: 30%;
  width: 40%;
  height: 2px;
  animation-delay: 2.5s;
}

@keyframes lineFlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

@keyframes lineShimmer {
  0% { left: -30%; }
  100% { left: 100%; }
}

/* Process Animation - Rotating Gear with Arrows */
.process-animation {
  position: relative;
  width: 100%;
  height: 100%;
}

.process-gear {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 3px solid var(--signal-orange);
  border-radius: 4px;
  animation: rotateGear 4s linear infinite;
  box-shadow: 0 0 12px rgba(230, 99, 0, 0.4);
}

.process-gear::before,
.process-gear::after {
  content: '';
  position: absolute;
  background: var(--signal-orange);
}

.process-gear::before {
  width: 3px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.process-gear::after {
  height: 3px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes rotateGear {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.process-arrow {
  position: absolute;
  width: 16px;
  height: 2px;
  background: var(--signal-orange);
  opacity: 0;
  animation: flowArrow 2.5s ease-in-out infinite;
}

.process-arrow::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -2px;
  width: 0;
  height: 0;
  border-left: 5px solid var(--signal-orange);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

.process-arrow-1 {
  top: 25%;
  right: 15%;
  transform: rotate(-30deg);
  animation-delay: 0s;
}

.process-arrow-2 {
  bottom: 25%;
  left: 15%;
  transform: rotate(150deg);
  animation-delay: 1.25s;
}

@keyframes flowArrow {
  0%, 100% { opacity: 0; transform: translateX(-10px); }
  50% { opacity: 1; transform: translateX(0); }
}

/* Data Animation - Database with Pulse */
.data-animation {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.data-container {
  width: 32px;
  height: 36px;
  border: 2px solid var(--signal-orange);
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  background: rgba(230, 99, 0, 0.1);
  box-shadow: 0 0 16px rgba(230, 99, 0, 0.3);
}

.data-row {
  width: 100%;
  height: 3px;
  background: var(--signal-orange);
  border-radius: 2px;
  animation: dataFill 3s ease-in-out infinite;
  opacity: 0.3;
  box-shadow: 0 0 4px rgba(230, 99, 0, 0.6);
}

.data-row-1 { animation-delay: 0s; }
.data-row-2 { animation-delay: 0.3s; }
.data-row-3 { animation-delay: 0.6s; }
.data-row-4 { animation-delay: 0.9s; }

@keyframes dataFill {
  0%, 100% { opacity: 0.3; transform: scaleX(0.7); }
  50% { opacity: 1; transform: scaleX(1); }
}

.data-pulse {
  position: absolute;
  inset: -4px;
  border: 2px solid var(--signal-orange);
  border-radius: 6px;
  animation: dataPulse 3s ease-in-out infinite;
  opacity: 0;
}

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

.layer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.layer-label {
  display: block;
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--text-primary);
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.layer-description {
  display: block;
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: var(--space-xs);
}

.layer-detail {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
  opacity: 0.7;
  transition: opacity var(--duration-base) var(--ease);
}

.layer:hover .layer-detail {
  opacity: 1;
}

@media (max-width: 1024px) {
  .platform-layout {
    grid-template-columns: 1fr;
    gap: var(--space-4xl);
  }

  .platform-text {
    padding-right: 0;
  }

  .layer-stack::before {
    left: 40px;
    top: 120px;
    bottom: 120px;
  }

  .layer-stack::after {
    left: 39px;
    bottom: 120px;
  }

  @keyframes dataFlowUp {
    0% {
      bottom: 120px;
      opacity: 0;
      transform: scale(0.5);
    }
    10% {
      opacity: 1;
      transform: scale(1);
    }
    90% {
      opacity: 1;
      transform: scale(1);
    }
    100% {
      bottom: calc(100% - 120px);
      opacity: 0;
      transform: scale(0.5);
    }
  }

  .layer {
    gap: var(--space-lg);
    padding: var(--space-lg);
  }

  .layer-icon {
    width: 100px;
    height: 100px;
  }

  .layer-detail {
    font-size: 0.875rem;
  }

  .integrated-layer {
    padding: 2rem 1.5rem;
    gap: 1.25rem;
  }

  .layer-icon-integrated {
    width: 70px;
    height: 70px;
  }

  .layer-name {
    font-size: 1.25rem;
  }
}

@media (max-width: 640px) {
  .layer-stack::before {
    left: 30px;
    top: 100px;
    bottom: 100px;
    width: 2px;
  }

  .layer-stack::after {
    left: 29px;
    bottom: 100px;
    width: 4px;
    height: 6px;
  }

  @keyframes dataFlowUp {
    0% {
      bottom: 100px;
      opacity: 0;
      transform: scale(0.5);
    }
    10% {
      opacity: 1;
      transform: scale(1);
    }
    90% {
      opacity: 1;
      transform: scale(1);
    }
    100% {
      bottom: calc(100% - 100px);
      opacity: 0;
      transform: scale(0.5);
    }
  }

  .layer {
    gap: var(--space-md);
    padding: var(--space-md);
  }

  .layer:hover {
    transform: translateY(0);
  }

  .layer-icon {
    width: 80px;
    height: 80px;
  }

  .layer-label {
    font-size: var(--text-xl);
  }

  .layer-description {
    font-size: var(--text-sm);
  }

  .layer-detail {
    font-size: 0.8125rem;
  }

  .integrated-layer {
    padding: 1.5rem 1rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .layer-identity {
    flex-direction: column;
    min-width: auto;
  }

  .layer-icon-integrated {
    width: 60px;
    height: 60px;
  }

  .layer-name {
    font-size: 1.125rem;
  }

  .layer-role {
    font-size: 0.9375rem;
  }
}

/* ===== Security Section ===== */
.security-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.badge {
  display: inline-flex;
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 160ms cubic-bezier(0.23, 1, 0.32, 1),
              border-color 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.section-light .badge {
  background: var(--surface-light);
  border: 1px solid var(--border-light);
  color: var(--text-light);
}

.section-dark .badge {
  background: var(--icon-bg-secondary);
  border: 1px solid var(--border-primary);
  color: var(--text-primary);
}

@media (hover: hover) and (pointer: fine) {
  .badge:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--accent-primary);
  }
}

.security-description {
  font-size: var(--text-xl);
  line-height: 1.75;
  max-width: 750px;
  margin: 0 auto;
}

.section-light .security-description {
  color: var(--text-secondary);
}

.section-dark .security-description {
  color: var(--text-secondary);
}

/* ===== Final CTA Section ===== */
.final-cta {
  text-align: center;
  padding: var(--space-6xl) 0;
}

.final-cta-title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-xl);
  line-height: 1.08;
}

.final-cta-subtitle {
  font-size: var(--text-xl);
  color: var(--text-muted-dark);
  margin-bottom: var(--space-4xl);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .final-cta-actions {
    flex-direction: column;
    max-width: 420px;
    margin: 0 auto;
  }

  .final-cta-actions .btn {
    width: 100%;
  }
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border-primary);
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
  transition: background 300ms ease, border-color 300ms ease;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border-primary);
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-heading {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-link-button {
  background: none;
  border: none;
  padding: 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 200ms ease;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.footer-link-button:hover {
  color: var(--text-primary);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  transition: all 200ms ease;
}

.footer-social a:hover {
  color: var(--text-primary);
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  white-space: pre-wrap;
  font-family: inherit;
  max-width: 600px;
}

.footer-controls {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: var(--space-xs);
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-full);
  padding: 4px;
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 6px 12px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 160ms cubic-bezier(0.23, 1, 0.32, 1);
  white-space: nowrap;
}

.language-option:hover {
  color: var(--text-primary);
  background: var(--border-secondary);
}

.language-option.active {
  color: var(--pure-white);
  background: var(--accent-primary);
}

.language-option:active {
  transform: scale(0.97);
}

/* Theme Switcher */
.theme-switcher {
  display: flex;
  gap: var(--space-xs);
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-full);
  padding: 4px;
}

.theme-option {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 160ms cubic-bezier(0.23, 1, 0.32, 1);
  white-space: nowrap;
}

.theme-option:hover {
  color: var(--text-primary);
  background: var(--border-secondary);
}

.theme-option.active {
  color: var(--pure-white);
  background: var(--accent-primary);
}

.theme-option:active {
  transform: scale(0.97);
}

.theme-option svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-controls {
    flex-direction: column;
    width: 100%;
  }

  .language-switcher,
  .theme-switcher {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

::selection {
  background: var(--accent-primary);
  color: var(--pure-white);
}

/* ===== Print Styles ===== */
@media print {
  .header,
  .nav-toggle,
  .footer,
  .hero-visual,
  .product-ui-preview,
  .grid-bg {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  section {
    page-break-inside: avoid;
  }
}

/* ===== Product Page Styles ===== */

/* Product Hero */
.product-hero {
  padding: calc(var(--space-6xl) + 80px) 0 var(--space-6xl);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.product-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
}

.product-hero-eyebrow {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  color: var(--accent-primary);
  margin-bottom: var(--space-lg);
}

.product-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2xl);
}

.product-hero-description {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  line-height: 1.6;
  color: var(--text-muted-light);
  margin-bottom: var(--space-4xl);
}

.product-hero-cta {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.product-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid rgba(36, 36, 40, 0.08);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.06),
    0 20px 40px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.03);
}

/* Product Features */
.product-features {
  padding: var(--space-6xl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4xl);
  margin-top: var(--space-5xl);
}

.feature-card {
  background: transparent;
  padding: 0;
}

.feature-title {
  font-size: var(--text-xl);
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.feature-description {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-muted-light);
}

/* Product Use Cases */
.product-use-cases {
  padding: var(--space-6xl) 0;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4xl);
  margin-top: var(--space-5xl);
}

.use-case-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  transition: all var(--duration-base) var(--ease);
}

.use-case-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.use-case-title {
  font-size: var(--text-2xl);
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.use-case-description {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Product CTA */
.product-cta {
  padding: var(--space-6xl) 0;
  text-align: center;
}

.product-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.product-cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xl);
}

.product-cta-subtitle {
  font-size: var(--text-xl);
  color: var(--text-muted-light);
  margin-bottom: var(--space-4xl);
  line-height: 1.6;
}

.product-cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-hero-cta {
    justify-content: center;
  }

  .features-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
}

/* ===== Atlas Page Specific Styles ===== */

/* Hero subtitle */
.product-hero-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.01em;
}

/* Problem Section */
.atlas-problem {
  padding: var(--space-6xl) 0;
}

.atlas-problem-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.atlas-problem-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4xl);
}

.atlas-problem-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.atlas-problem-content p {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--text-muted-light);
}

.atlas-problem-highlight {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-light);
  padding: var(--space-2xl);
  background: rgba(36, 36, 40, 0.03);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent-primary);
}

.atlas-problem-quote {
  position: relative;
  margin-top: var(--space-4xl);
  padding: var(--space-4xl);
  background: linear-gradient(135deg, rgba(230, 99, 0, 0.04) 0%, rgba(230, 99, 0, 0.08) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(230, 99, 0, 0.15);
  box-shadow: 0 8px 32px rgba(230, 99, 0, 0.08);
}

.quote-mark {
  position: absolute;
  top: var(--space-2xl);
  left: var(--space-2xl);
  color: var(--accent-primary);
  opacity: 0.3;
}

.atlas-problem-quote p {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.4;
  letter-spacing: -0.01em;
  padding-left: calc(48px + var(--space-lg));
  margin: 0;
  font-style: italic;
}

/* Solution Section */
.atlas-solution {
  padding: var(--space-6xl) 0;
}

.section-light.atlas-solution {
  background: rgba(36, 36, 40, 0.02);
}

.section-dark.atlas-solution {
  background: var(--bg-secondary);
}

.atlas-solution-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.atlas-solution-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.section-light .atlas-solution-title {
  color: var(--text-light);
}

.section-dark .atlas-solution-title {
  color: var(--text-primary);
}

.atlas-solution-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: var(--space-4xl);
}

.atlas-solution-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  text-align: left;
}

.section-light .atlas-solution-content p {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--text-secondary);
}

.section-dark .atlas-solution-content p {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Features List */
.atlas-features {
  padding: var(--space-6xl) 0;
}

.atlas-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5xl);
  margin-top: var(--space-5xl);
}

.atlas-feature-item {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  padding: var(--space-4xl) 0;
  border-bottom: 1px solid rgba(36, 36, 40, 0.08);
}

.atlas-feature-item:last-child {
  border-bottom: none;
}

.atlas-feature-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.atlas-feature-description {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-muted-light);
}

.atlas-feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.atlas-ui-placeholder {
  width: 100%;
  height: 200px;
  background: rgba(36, 36, 40, 0.03);
  border: 1px solid rgba(36, 36, 40, 0.08);
  border-radius: var(--radius-lg);
}

/* Audience Grid */
.atlas-audience {
  padding: var(--space-6xl) 0;
}

.section-light.atlas-audience {
  background: rgba(36, 36, 40, 0.02);
}

.section-dark.atlas-audience {
  background: var(--bg-secondary);
}

.atlas-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4xl);
  margin-top: var(--space-5xl);
}

.atlas-audience-card {
  background: transparent;
  padding: 0;
}

.audience-icon-animated {
  width: 100px;
  height: 100px;
  margin-bottom: var(--space-xl);
  border-radius: var(--radius-xl);
  background: rgba(36, 36, 40, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-base) ease;
}

.section-light .audience-icon-animated {
  background: rgba(36, 36, 40, 0.8);
}

.section-dark .audience-icon-animated {
  background: var(--icon-bg-secondary);
}

.atlas-audience-card:hover .audience-icon-animated {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(230, 99, 0, 0.15);
}

.bank-animation,
.broker-animation,
.appraiser-animation,
.investor-animation {
  width: 56px;
  height: 56px;
}

/* Bank animation - columns appear sequentially */
.column {
  stroke-dasharray: 16;
  stroke-dashoffset: 16;
  animation: drawColumn 2s ease-in-out infinite;
}

.column-1 {
  animation-delay: 0s;
}

.column-2 {
  animation-delay: 0.3s;
}

.column-3 {
  animation-delay: 0.6s;
}

@keyframes drawColumn {
  0%, 100% {
    stroke-dashoffset: 16;
  }
  40%, 90% {
    stroke-dashoffset: 0;
  }
}

/* Broker animation - star pulse */
.star-pulse {
  animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* Appraiser animation - gauge needle rotation */
.gauge-needle {
  transform-origin: 28px 28px;
  animation: gaugeRotate 3s ease-in-out infinite;
}

@keyframes gaugeRotate {
  0%, 100% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(45deg);
  }
}

/* Investor animation - chart dots appear and line draws */
.chart-line {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: drawChart 3s ease-in-out infinite;
}

.dot-1,
.dot-2,
.dot-3,
.dot-4 {
  opacity: 0;
  animation: dotAppear 3s ease-in-out infinite;
}

.dot-1 {
  animation-delay: 0.3s;
}

.dot-2 {
  animation-delay: 0.6s;
}

.dot-3 {
  animation-delay: 0.9s;
}

.dot-4 {
  animation-delay: 1.2s;
}

@keyframes drawChart {
  0%, 30% {
    stroke-dashoffset: 80;
  }
  80%, 100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dotAppear {
  0%, 20% {
    opacity: 0;
    transform: scale(0);
  }
  30%, 100% {
    opacity: 1;
    transform: scale(1);
  }
}

.atlas-audience-title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}

.section-light .atlas-audience-title {
  color: var(--text-light);
}

.section-dark .atlas-audience-title {
  color: var(--text-primary);
}

.atlas-audience-description {
  font-size: var(--text-base);
  line-height: 1.7;
}

.section-light .atlas-audience-description {
  color: var(--text-secondary);
}

.section-dark .atlas-audience-description {
  color: var(--text-secondary);
}

/* Integration Section */
.atlas-integration {
  padding: var(--space-6xl) 0;
}

.section-dark.atlas-integration {
  background: var(--bg-secondary);
}

.atlas-integration-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.atlas-integration-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4xl);
}

.section-light .atlas-integration-title {
  color: var(--text-light);
}

.section-dark .atlas-integration-title {
  color: var(--text-primary);
}

.atlas-integration-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  text-align: left;
}

.section-light .atlas-integration-content p {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--text-secondary);
}

.section-dark .atlas-integration-content p {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Security Section */
.atlas-security {
  padding: var(--space-6xl) 0;
}

.section-light.atlas-security {
  background: rgba(36, 36, 40, 0.02);
}

.section-dark.atlas-security {
  background: var(--bg-secondary);
}

.atlas-security-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .atlas-feature-item {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .atlas-audience-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .atlas-solution-content,
  .atlas-integration-content {
    text-align: center;
  }
}

/* ===== Atlas Hero with Video Background ===== */
.atlas-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atlas-hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.atlas-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.2);
  object-fit: cover;
  filter: contrast(1.1) saturate(1.2) brightness(0.95);
}

.atlas-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 2;
}

.atlas-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
  padding: var(--space-3xl);
  max-width: 1200px;
  margin: 0 auto;
}

.atlas-hero-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-2xl);
  text-transform: lowercase;
  line-height: 0.9;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.atlas-hero-subtitle {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.atlas-hero-tagline {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  margin-bottom: var(--space-xl);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.atlas-hero-description {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin: 0 auto var(--space-4xl);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.atlas-hero-cta {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.atlas-hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-3xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: bounce 2s infinite;
}

.atlas-hero-scroll-indicator svg {
  width: 24px;
  height: 24px;
  opacity: 0.8;
}

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

/* Responsive */
@media (max-width: 768px) {
  .atlas-hero {
    min-height: 500px;
  }

  .atlas-hero-scroll-indicator {
    display: none;
  }
}

/* ===== Atlas Hero with Video Cutout Mask ===== */
.atlas-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atlas-hero-black {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.atlas-hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 2;
  mask: url(#atlas-logo-mask);
  -webkit-mask: url(#atlas-logo-mask);
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}

.atlas-logo-glitch {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  animation: logoGlitch 6s infinite;
}

.atlas-logo-glitch svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1160px;
  height: auto;
  opacity: 0;
}

@keyframes logoGlitch {
  0%, 88%, 100% {
    opacity: 0;
  }
  89% {
    opacity: 1;
    filter: drop-shadow(-3px 0 2px rgba(255, 0, 0, 0.8)) drop-shadow(3px 0 2px rgba(0, 255, 255, 0.8));
    transform: translate(-50%, -50%) translate(-2px, 0);
  }
  90% {
    opacity: 1;
    filter: drop-shadow(3px 0 2px rgba(255, 0, 0, 0.8)) drop-shadow(-3px 0 2px rgba(0, 255, 255, 0.8));
    transform: translate(-50%, -50%) translate(2px, 0);
  }
  91% {
    opacity: 1;
    filter: drop-shadow(-2px 0 2px rgba(255, 0, 0, 0.8)) drop-shadow(2px 0 2px rgba(0, 255, 255, 0.8));
    transform: translate(-50%, -50%) translate(0, -2px);
  }
  92% {
    opacity: 1;
    filter: drop-shadow(2px 0 2px rgba(255, 0, 0, 0.8)) drop-shadow(-2px 0 2px rgba(0, 255, 255, 0.8));
    transform: translate(-50%, -50%) translate(0, 2px);
  }
  93% {
    opacity: 0;
  }
}

.atlas-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.2);
  object-fit: cover;
  filter: contrast(1.1) saturate(1.2) brightness(0.95);
}

.atlas-hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-3xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  font-weight: 500;
  animation: bounce 2s infinite;
}

.atlas-hero-scroll-indicator svg {
  width: 24px;
  height: 24px;
  opacity: 0.6;
}

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

.atlas-hero-ctas {
  position: absolute;
  bottom: var(--space-3xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
  .atlas-hero {
    min-height: 500px;
  }

  .atlas-hero-scroll-indicator {
    display: none;
  }

  .atlas-hero-ctas {
    flex-direction: column;
    bottom: var(--space-4xl);
    gap: var(--space-md);
  }

  .atlas-hero-ctas .btn {
    width: 100%;
    min-width: 200px;
  }
}


/* ===== Lucide Icon Animations - Enhanced & Cool ===== */
.flow-visual i svg,
.industry-icon-animated i svg,
.layer-icon i svg,
.product-dropdown-icon i svg,
.contact-detail-item i svg {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(230, 99, 0, 0.2));
}

/* SVG Path Drawing Effect */
.flow-visual i svg path,
.industry-icon-animated i svg path,
.layer-icon i svg path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawStroke 2s ease-in-out forwards;
}

@keyframes drawStroke {
  to {
    stroke-dashoffset: 0;
  }
}

/* Flow icons - Morphing pulse with glow */
.flow-visual i svg {
  animation: morphPulse 3s ease-in-out infinite;
}

@keyframes morphPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 2px 8px rgba(230, 99, 0, 0.2));
  }
  25% {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 4px 16px rgba(230, 99, 0, 0.4));
  }
  50% {
    transform: scale(1.15) rotate(0deg);
    filter: drop-shadow(0 6px 24px rgba(230, 99, 0, 0.6));
  }
  75% {
    transform: scale(1.1) rotate(-2deg);
    filter: drop-shadow(0 4px 16px rgba(230, 99, 0, 0.4));
  }
}

/* Industry icons - 3D float with perspective */
.industry-icon-animated i svg {
  animation: float3D 5s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes float3D {
  0%, 100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1);
    filter: drop-shadow(0 4px 12px rgba(230, 99, 0, 0.3));
  }
  33% {
    transform: translateY(-15px) rotateX(10deg) rotateY(-10deg) scale(1.08);
    filter: drop-shadow(0 8px 20px rgba(230, 99, 0, 0.5));
  }
  66% {
    transform: translateY(-8px) rotateX(-10deg) rotateY(10deg) scale(1.08);
    filter: drop-shadow(0 8px 20px rgba(230, 99, 0, 0.5));
  }
}

/* Layer icons - Breathing with color shift */
.layer-icon i svg {
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 2px 8px rgba(230, 99, 0, 0.3)) hue-rotate(0deg);
  }
  50% {
    transform: scale(1.12) rotate(5deg);
    filter: drop-shadow(0 6px 20px rgba(230, 99, 0, 0.6)) hue-rotate(10deg);
  }
}

/* Product dropdown hover - Bounce with rotation */
.product-dropdown-card:hover .product-dropdown-icon i svg {
  animation: hoverBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes hoverBounce {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.25) rotate(10deg);
    filter: drop-shadow(0 8px 24px rgba(230, 99, 0, 0.7));
  }
  100% {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 6px 18px rgba(230, 99, 0, 0.5));
  }
}

/* Contact icons hover - Elastic bounce */
.contact-detail-item:hover i svg {
  animation: elasticBounce 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes elasticBounce {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  30% {
    transform: scale(1.35) rotate(12deg);
  }
  60% {
    transform: scale(0.95) rotate(-8deg);
  }
  80% {
    transform: scale(1.15) rotate(4deg);
  }
}

/* Database icon - Stacking layers effect */
i[data-lucide="database"] svg {
  animation: stackLayers 4s ease-in-out infinite !important;
}

@keyframes stackLayers {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  25% {
    transform: scale(1.05) translateY(-5px);
  }
  50% {
    transform: scale(1.1) translateY(-10px);
  }
  75% {
    transform: scale(1.05) translateY(-5px);
  }
}

/* Send icon - Flying with trail */
i[data-lucide="send"] svg {
  animation: flyWithTrail 3s ease-in-out infinite !important;
}

@keyframes flyWithTrail {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    filter: drop-shadow(0 2px 8px rgba(230, 99, 0, 0.2));
  }
  50% {
    transform: translate(15px, -15px) rotate(-15deg);
    filter: drop-shadow(-8px 8px 20px rgba(230, 99, 0, 0.6));
  }
}

/* Repeat icon - Smooth continuous spin */
i[data-lucide="repeat"] svg {
  animation: smoothSpin 3s linear infinite !important;
}

@keyframes smoothSpin {
  from {
    transform: rotate(0deg);
    filter: drop-shadow(0 2px 8px rgba(230, 99, 0, 0.3));
  }
  50% {
    filter: drop-shadow(0 4px 16px rgba(230, 99, 0, 0.5));
  }
  to {
    transform: rotate(360deg);
    filter: drop-shadow(0 2px 8px rgba(230, 99, 0, 0.3));
  }
}

/* Shuffle icon - Flip and shuffle */
i[data-lucide="shuffle"] svg {
  animation: flipShuffle 4s ease-in-out infinite !important;
}

@keyframes flipShuffle {
  0%, 100% {
    transform: rotateY(0deg) scale(1);
  }
  25% {
    transform: rotateY(90deg) scale(1.1);
  }
  50% {
    transform: rotateY(180deg) scale(1.15);
  }
  75% {
    transform: rotateY(270deg) scale(1.1);
  }
}

/* Workflow icon - Complex motion path */
i[data-lucide="workflow"] svg {
  animation: complexFlow 6s ease-in-out infinite !important;
}

@keyframes complexFlow {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    filter: drop-shadow(0 2px 8px rgba(230, 99, 0, 0.3));
  }
  25% {
    transform: translate(5px, -5px) rotate(10deg) scale(1.08);
    filter: drop-shadow(0 6px 16px rgba(230, 99, 0, 0.5));
  }
  50% {
    transform: translate(0, -8px) rotate(0deg) scale(1.12);
    filter: drop-shadow(0 8px 20px rgba(230, 99, 0, 0.6));
  }
  75% {
    transform: translate(-5px, -5px) rotate(-10deg) scale(1.08);
    filter: drop-shadow(0 6px 16px rgba(230, 99, 0, 0.5));
  }
}

/* Landmark icon - Rising monument */
i[data-lucide="landmark"] svg {
  animation: monumentRise 5s ease-in-out infinite !important;
}

@keyframes monumentRise {
  0%, 100% {
    transform: translateY(0) scaleY(1);
  }
  50% {
    transform: translateY(-12px) scaleY(1.08);
    filter: drop-shadow(0 12px 24px rgba(230, 99, 0, 0.5));
  }
}

/* Building icon - Growing structure */
i[data-lucide="building-2"] svg {
  animation: buildGrow 5s ease-in-out infinite !important;
}

@keyframes buildGrow {
  0%, 100% {
    transform: scaleY(1) translateY(0);
  }
  50% {
    transform: scaleY(1.1) translateY(-10px);
    filter: drop-shadow(0 10px 22px rgba(230, 99, 0, 0.5));
  }
}

/* Shield icon - Protective pulse */
i[data-lucide="shield-check"] svg {
  animation: shieldPulse 4s ease-in-out infinite !important;
}

@keyframes shieldPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 2px 8px rgba(230, 99, 0, 0.3));
  }
  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(230, 99, 0, 0.7));
  }
}

/* Users icon - Group sway */
i[data-lucide="users"] svg {
  animation: groupSway 5s ease-in-out infinite !important;
}

@keyframes groupSway {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  33% {
    transform: rotate(4deg) scale(1.05);
  }
  66% {
    transform: rotate(-4deg) scale(1.05);
  }
}

/* Layers icon - Stacking effect */
i[data-lucide="layers"] svg {
  animation: layerStack 4s ease-in-out infinite !important;
}

@keyframes layerStack {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 2px 8px rgba(230, 99, 0, 0.3));
  }
  50% {
    transform: translateY(-6px) scale(1.1);
    filter: drop-shadow(0 8px 20px rgba(230, 99, 0, 0.6));
  }
}

/* ===== Testimonials Section ===== */
.testimonials {
  padding: 10rem 0 8rem;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1400px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-subtitle-center {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  font-weight: 400;
}

.testimonials-scroll-wrapper {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding: 2rem 0;
  margin: 0 -2rem;
}

.testimonials-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.testimonials-scroll-wrapper:active {
  cursor: grabbing;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  padding: 0 2rem;
}

.testimonial-card {
  flex: 0 0 400px;
  min-height: 450px;
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 200ms cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 200ms cubic-bezier(0.23, 1, 0.32, 1),
              background 200ms cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  }
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--signal-orange), var(--soft-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--signal-orange);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-logo {
  display: flex;
  align-items: center;
  height: 40px;
}

.logo-placeholder {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  opacity: 0.7;
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 400;
  flex: 1;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.25rem;
  font-size: 3rem;
  color: var(--signal-orange);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.author-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.author-title {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.author-company {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.testimonial-metric {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(230, 99, 0, 0.05), rgba(249, 149, 74, 0.05));
  border-radius: 8px;
  border: 1px solid rgba(230, 99, 0, 0.1);
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--signal-orange);
  line-height: 1;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: lowercase;
}

/* Testimonials Controls */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.scroll-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {
  .scroll-btn:hover {
    background: var(--signal-orange);
    border-color: var(--signal-orange);
    transform: scale(1.05);
  }

  .scroll-btn:hover i {
    color: var(--pure-white) !important;
  }
}

.scroll-btn:active {
  transform: scale(0.97);
  transition-duration: 100ms;
}

/* Animated Scroll Indicator */
.scroll-indicator-wrapper {
  position: relative;
  margin: 0 auto;
  margin-top: 4rem;
  width: fit-content;
  z-index: 20;
  opacity: 0;
  animation: heroFadeIn 600ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 600ms;
}

.scroll-indicator-animated {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.scroll-indicator-animated:hover {
  transform: translateY(4px);
}

.scroll-indicator-animated:active {
  transform: translateY(6px) scale(0.97);
}

/* Mouse Icon */
.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--text-primary);
  border-radius: 13px;
  position: relative;
  opacity: 0.7;
  transition: opacity 180ms ease;
}

.scroll-indicator-animated:hover .scroll-mouse {
  opacity: 1;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--text-primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 20% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(16px);
    opacity: 0;
  }
}

/* Scroll Text */
.scroll-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.65;
  transition: opacity 180ms ease;
}

.scroll-indicator-animated:hover .scroll-text {
  opacity: 0.9;
}

/* Animated Arrows */
.scroll-arrows {
  position: relative;
  height: 24px;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  color: var(--text-primary);
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  40% {
    transform: translateY(6px);
    opacity: 0.8;
  }
  60% {
    transform: translateY(3px);
    opacity: 0.6;
  }
}

/* Hide on scroll */
.scroll-indicator-wrapper.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

/* Responsive */
@media (max-width: 768px) {
  .scroll-indicator-wrapper {
    margin-top: 3rem;
  }

  .scroll-mouse {
    width: 22px;
    height: 34px;
  }

  .scroll-text {
    font-size: 0.6875rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .scroll-wheel,
  .scroll-arrow {
    animation: none;
  }

  .scroll-indicator-animated:hover {
    transform: none;
  }
}

.scroll-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--signal-orange), var(--soft-orange));
  border-radius: 2px;
  width: 0%;
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Dark mode adjustments */
:root[data-theme="dark"] .testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

:root[data-theme="dark"] .testimonial-card:hover {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Testimonials slow scroll animation */
@keyframes testimonials-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials {
    padding: 6rem 0 4rem;
  }

  .testimonial-card {
    flex: 0 0 320px;
    min-height: 420px;
    padding: 2rem;
  }

  .testimonials-controls {
    gap: 1rem;
  }

  .scroll-indicator {
    flex: 0 0 120px;
  }
}


/* ===== THE PROBLEM: Side-by-side Layout ===== */
.data-reset {
  padding: 10rem 0;
  position: relative;
}

.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.problem-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.problem-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.problem-title {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.02em;
  opacity: 1;
}

.problem-subtitle {
  font-size: 1.375rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  letter-spacing: -0.01em;
  opacity: 0.9;
}

.problem-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  opacity: 1;
}

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

.problem-stats-inline {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(230, 99, 0, 0.15);
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
}

.stat-inline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.stat-number {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--signal-orange);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-primary);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.problem-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Minimalistic Circular Loop - Redesigned */
.restructure-loop {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto auto auto auto;
  gap: 0;
  align-items: center;
  justify-items: center;
  width: 480px;
  height: 480px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeSlideUp 1s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
}

/* Clean subtle background hint */
.restructure-loop::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  border: 1px solid rgba(230, 99, 0, 0.03);
  border-radius: 50%;
  z-index: 0;
}

.loop-step {
  opacity: 0;
  animation: stepFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  position: relative;
  z-index: 5;
}

.loop-step[data-step="1"] {
  grid-column: 1;
  grid-row: 1;
  animation-delay: 0.6s;
}

.loop-step[data-step="2"] {
  grid-column: 3;
  grid-row: 1;
  animation-delay: 0.8s;
}

.loop-step[data-step="3"] {
  grid-column: 3;
  grid-row: 5;
  animation-delay: 1s;
}

.loop-step[data-step="4"] {
  grid-column: 1;
  grid-row: 5;
  animation-delay: 1.2s;
}

@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.step-box {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(230, 99, 0, 0.15);
  border-radius: 8px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  min-width: 120px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  backdrop-filter: blur(8px);
}

/* Sequential highlight animation - shows data passing through */
.step-box {
  animation: stepHighlight 4s ease-in-out infinite;
}

.loop-step[data-step="1"] .step-box {
  animation-delay: 0s;
}

.loop-step[data-step="2"] .step-box {
  animation-delay: 1s;
}

.loop-step[data-step="3"] .step-box {
  animation-delay: 2s;
}

.loop-step[data-step="4"] .step-box {
  animation-delay: 3s;
}

@keyframes stepHighlight {
  0%, 100% {
    border-color: rgba(230, 99, 0, 0.15);
    background: rgba(10, 10, 10, 0.6);
    box-shadow: 0 0 0 0 rgba(230, 99, 0, 0);
  }
  15%, 20% {
    border-color: rgba(230, 99, 0, 0.6);
    background: rgba(230, 99, 0, 0.08);
    box-shadow: 0 0 0 8px rgba(230, 99, 0, 0.1), 0 4px 16px rgba(230, 99, 0, 0.15);
  }
  25% {
    border-color: rgba(230, 99, 0, 0.15);
    background: rgba(10, 10, 10, 0.6);
    box-shadow: 0 0 0 0 rgba(230, 99, 0, 0);
  }
}

.step-box:hover {
  border-color: rgba(230, 99, 0, 0.4);
  background: rgba(230, 99, 0, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(230, 99, 0, 0.08);
}

.step-box.warning {
  /* Uses the same stepHighlight animation as others */
}

.step-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  border: none;
}

.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* Arrows - Synchronized with step highlights */
.loop-arrow {
  grid-column: 2;
  grid-row: 1;
  opacity: 0;
  animation: arrowFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.7s;
  position: relative;
  z-index: 3;
}

.loop-arrow[data-arrow="1"] {
  animation: arrowFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.7s, arrowPassthrough 4s ease-in-out 1s infinite;
}

.loop-arrow-down {
  grid-column: 3;
  grid-row: 3;
  opacity: 0;
  animation: arrowFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.9s;
  position: relative;
  z-index: 3;
}

.loop-arrow-down[data-arrow="2"] {
  animation: arrowFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.9s, arrowPassthrough 4s ease-in-out 2s infinite;
}

.loop-arrow-left {
  grid-column: 2;
  grid-row: 5;
  opacity: 0;
  animation: arrowFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 1.1s;
  position: relative;
  z-index: 3;
}

.loop-arrow-left[data-arrow="3"] {
  animation: arrowFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 1.1s, arrowPassthrough 4s ease-in-out 3s infinite;
}

.loop-arrow-up {
  grid-column: 1;
  grid-row: 3;
  opacity: 0;
  animation: arrowFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 1.3s;
  position: relative;
  z-index: 3;
}

.loop-arrow-up[data-arrow="4"] {
  animation: arrowFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 1.3s, arrowPassthrough 4s ease-in-out 4s infinite;
}

@keyframes arrowFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes arrowPassthrough {
  0%, 100% {
    opacity: 0.3;
  }
  20%, 30% {
    opacity: 1;
  }
  35% {
    opacity: 0.3;
  }
}

/* Center symbol - removed */
.infinity-symbol {
  display: none;
}

/* ===== THE SOLUTION: Light Emphasized Wrapper ===== */
.unified-model {
  padding: 8rem 0 12rem;
  position: relative;
}

.unified-model-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-2xl);
}

/* Beautiful light contained wrapper with grid */
.unified-model-container::before {
  content: '';
  position: absolute;
  inset: -4rem -2rem;
  background:
    linear-gradient(rgba(36, 36, 40, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 36, 40, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 1) 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
  background-position: -1px -1px, -1px -1px, 0 0;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: -1;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.8) inset,
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.04);
}

.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.solution-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.solution-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.solution-title {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.02em;
  opacity: 1;
}

.solution-subtitle {
  font-size: 1.375rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  letter-spacing: -0.01em;
  opacity: 0.9;
}

.solution-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  opacity: 1;
}

.solution-stats-inline {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(36, 36, 40, 0.1);
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
}

.solution-stats-inline .stat-inline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.solution-stats-inline .stat-number {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--signal-orange);
  line-height: 1;
  letter-spacing: -0.03em;
}

.solution-stats-inline .stat-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-primary);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.solution-cta-subtle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0;
  background: none;
  color: rgba(36, 36, 40, 0.5);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 160ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {
  .solution-cta-subtle:hover {
    color: var(--signal-orange);
    transform: translateX(4px);
  }

  .solution-cta-subtle:hover i {
    transform: translateX(4px);
  }
}

.solution-cta-subtle i {
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.solution-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Clearer Hub - Clean and flat */
.unified-hub-canvas {
  position: relative;
  width: 500px;
  height: 500px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
  opacity: 1;
}

/* Connection lines - Simple and clean */
.unified-hub-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(36, 36, 40, 0.1) calc(50% - 0.5px), rgba(36, 36, 40, 0.1) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    linear-gradient(0deg, transparent calc(50% - 0.5px), rgba(36, 36, 40, 0.1) calc(50% - 0.5px), rgba(36, 36, 40, 0.1) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* Central Core - Perfectly Centered */
.data-core {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.core-orb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-orb-inner {
  background: rgba(230, 99, 0, 0.04);
  border: 2px solid var(--signal-orange);
  border-radius: 10px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 160px;
  height: 160px;
  position: relative;
  z-index: 10;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(230, 99, 0, 0.12);
  transition: none !important;
  transform: none !important;
  animation: none !important;
}

.core-orb-inner i {
  color: var(--signal-orange) !important;
}

.core-pulse-ring {
  display: none;
}

.core-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  text-align: center;
}

.core-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--graphite-grey);
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-align: center;
}

.core-subtitle {
  font-size: 0.6875rem;
  color: var(--signal-orange);
  line-height: 1.3;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
}

/* Energy Beams - Hidden for Grid Layout */
.beam-canvas {
  display: none;
}

/* Output Nodes - All Static */
.output-node {
  opacity: 1;
  position: relative;
}

.output-node[data-node="1"] {
  grid-column: 2;
  grid-row: 1;
}

.output-node[data-node="2"] {
  grid-column: 3;
  grid-row: 1;
}

.output-node[data-node="3"] {
  grid-column: 3;
  grid-row: 2;
}

.output-node[data-node="4"] {
  grid-column: 3;
  grid-row: 3;
}

.output-node[data-node="5"] {
  grid-column: 2;
  grid-row: 3;
}

.output-node[data-node="6"] {
  grid-column: 1;
  grid-row: 3;
}

.output-node[data-node="7"] {
  grid-column: 1;
  grid-row: 2;
}

.output-node[data-node="8"] {
  grid-column: 1;
  grid-row: 1;
}

/* Core is static - no animation */
.data-core {
  opacity: 1;
}

.node-glow {
  display: none;
}

.node-content {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(36, 36, 40, 0.12);
  border-radius: 8px;
  padding: 1rem 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 100px;
  min-height: 90px;
  position: relative;
  backdrop-filter: blur(8px);
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.node-content i {
  color: var(--signal-orange) !important;
}

.node-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(36, 36, 40, 0.7);
  white-space: nowrap;
  text-align: center;
  letter-spacing: 0.02em;
}

/* Flowing particles - Hidden for Grid Layout */
.energy-particles {
  display: none;
}

/* Responsive - Minimalistic */
@media (max-width: 1024px) {
  .data-reset {
    padding: 6rem 0;
  }

  .unified-model {
    padding: 6rem 0 8rem;
  }

  .unified-model-container::before {
    inset: -2rem -1rem;
    border-radius: 24px;
  }

  .problem-layout,
  .solution-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .solution-layout {
    padding: 2rem 0;
  }

  .restructure-loop {
    width: 380px;
    height: 380px;
  }

  .unified-hub-canvas {
    width: 380px;
    height: 380px;
    gap: 1.25rem;
  }

  .step-box,
  .node-content {
    min-width: 100px;
    padding: 1rem 0.875rem;
  }

  .core-orb-inner {
    min-width: 110px;
    min-height: 110px;
    padding: 1.5rem 1rem;
  }

  .problem-title,
  .solution-title {
    font-size: 2.75rem;
  }

  .problem-subtitle,
  .solution-subtitle {
    font-size: 1.25rem;
  }

  .stat-number,
  .solution-stats-inline .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .data-reset {
    padding: 4rem 0;
  }

  .unified-model {
    padding: 4rem 0 6rem;
  }

  .unified-model-container::before {
    inset: -1.5rem -0.75rem;
    border-radius: 20px;
  }

  .problem-layout,
  .solution-layout {
    gap: 3rem;
  }

  .solution-layout {
    padding: 1.5rem 0;
  }

  .restructure-loop,
  .unified-hub-canvas {
    width: 320px;
    height: 320px;
    gap: 1rem;
  }

  .restructure-loop::before {
    width: 300px;
    height: 300px;
  }

  .step-box,
  .node-content {
    min-width: 80px;
    padding: 0.875rem 0.75rem;
  }

  .step-label,
  .node-name {
    font-size: 0.6875rem;
  }

  .core-orb-inner {
    min-width: 95px;
    min-height: 95px;
    padding: 1.25rem 0.875rem;
  }

  .problem-title,
  .solution-title {
    font-size: 2rem;
  }

  .problem-subtitle,
  .solution-subtitle {
    font-size: 1.125rem;
  }

  .problem-stats-inline,
  .solution-stats-inline {
    flex-direction: column;
    padding-top: 1.5rem;
    padding-left: 0;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .stat-inline {
    flex: none;
  }

  .stat-number,
  .solution-stats-inline .stat-number {
    font-size: 2rem;
  }

  .infinity-symbol {
    font-size: 4rem;
  }

  /* Smaller arrows for mobile */
  .loop-arrow svg,
  .loop-arrow-left svg {
    width: 50px;
  }

  .loop-arrow-down svg,
  .loop-arrow-up svg {
    height: 40px;
  }

  /* Products section - mobile layout */
  .products-scroll-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
    padding: 0 var(--space-lg) var(--space-3xl);
  }

  .products-images-sticky {
    display: none; /* Hidden on mobile, demos moved inline by JS */
  }

  .products-content-scroll {
    display: flex;
    flex-direction: column;
    gap: var(--space-5xl);
    padding: 0;
  }

  .product-content-item {
    min-height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
  }

  /* Mobile inline demo wrapper */
  .product-demo-mobile-wrapper {
    width: 100%;
    height: 60vh;
    min-height: 420px;
    max-height: 550px;
    margin-bottom: var(--space-2xl);
    order: -1; /* Demo appears first */
    overflow: hidden;
    border-radius: 12px;
  }

  .product-demo-mobile-wrapper .product-demo {
    position: relative !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    height: 100%;
    width: 100%;
  }

  .product-demo-mobile-wrapper .demo-frame-content {
    height: 100%;
    width: 100%;
    transform-origin: top left;
  }

  /* Scale down iframe content to fit mobile viewport while showing more */
  .product-demo-mobile-wrapper iframe {
    width: 120%;
    height: 120%;
    transform: scale(0.833);
    transform-origin: top left;
  }
}
