/* SK JALRAKSHAK — Global Design System */

/* Anti-flash: hide page during transitions (class set by inline script before first paint) */
html.page-transitioning {
  background-color: #111823 !important;
  visibility: hidden !important;
}
html.page-transitioning #footer,
html.page-transitioning .curtain-footer-active {
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Home page: disable all entrance/scroll reveal animations */
body[data-page="home"] .reveal-up {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
body[data-page="home"] .gs-reveal,
body[data-page="home"] .gs-split {
  opacity: 1 !important;
  transform: none !important;
}

[data-theme="dark"] {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: rgba(255, 255, 255, 0.025);
  --fg: #e8e8e8;
  --fg-head: #ffffff;
  --fg-body: #999999;
  --fg-muted: #555555;
  --border: rgba(255, 255, 255, 0.08);
  --nav-bg: rgba(10, 10, 10, 0.88);
  --nav-pill: rgba(255, 255, 255, 0.05);
  --nav-pill-border: rgba(255, 255, 255, 0.06);
  --nav-link: rgba(255, 255, 255, 0.4);
  --nav-link-hover: #ffffff;
  --nav-cursor-bg: #ffffff;
  --nav-cursor-text: #000000;
  --btn-bg: #ffffff;
  --btn-fg: #000000;
  --btn-border: rgba(255, 255, 255, 0.15);
  --scroll-bg: rgba(255, 255, 255, 0.08);
  --scroll-fill: #ffffff;
  --stat-bg: #151515;
  --card-hover-border: rgba(255, 255, 255, 0.15);
  --card-hover-shadow: rgba(255, 255, 255, 0.02);
  --marquee-fade: #111111;
  --toggle-bg: #1a1a1a;
  --toggle-fg: #e8e8e8;
  --toggle-ring: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] {
  --bg: #ffffff;
  --bg-alt: #f8f9fb;
  --bg-card: rgba(0, 0, 0, 0.025);
  --fg: #1a1a1a;
  --fg-head: #000000;
  --fg-body: #4b5563;
  --fg-muted: #6b7280;
  --border: rgba(0, 0, 0, 0.08);
  --nav-bg: rgba(255, 255, 255, 0.92);
  --nav-pill: rgba(0, 0, 0, 0.04);
  --nav-pill-border: rgba(0, 0, 0, 0.06);
  --nav-link: rgba(0, 0, 0, 0.4);
  --nav-link-hover: #000000;
  --nav-cursor-bg: #000000;
  --nav-cursor-text: #ffffff;
  --btn-bg: #000000;
  --btn-fg: #ffffff;
  --btn-border: rgba(0, 0, 0, 0.15);
  --scroll-bg: rgba(0, 0, 0, 0.06);
  --scroll-fill: #000000;
  --stat-bg: #f5f5f5;
  --card-hover-border: rgba(0, 0, 0, 0.12);
  --card-hover-shadow: rgba(0, 0, 0, 0.06);
  --marquee-fade: #ffffff;
  --toggle-bg: #ffffff;
  --toggle-fg: #1a1a1a;
  --toggle-ring: rgba(0, 0, 0, 0.1);
}

/* Fonts loaded via HTML <link> tags — do not duplicate with @import */
:root {
  --sky-blue: #ffffff;
  /* Neutralize blue */
  --accent: #d4af37;
  /* Premium Gold accent instead of blue */
  --green: #34d399;
  --sans: "Plus Jakarta Sans", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --display: var(--sans);
  --r: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.4s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
  transition: background var(--dur) ease, color var(--dur) ease;
}

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

img {
  display: block;
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid #0099ff;
  outline-offset: 3px;
}

::selection {
  background: #0099ff;
  color: #fff;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

#webgl {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#curtain {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  transform-origin: top;
  transform: scaleY(0);
}

#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  height: 2px;
  width: 0;
  background: var(--fg-head);
  transition: width 0.1s linear;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.wrap-sm {
  max-width: 780px;
}

main,
#footer {
  position: relative;
  z-index: 1;
}

.sec {
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
  background: var(--bg);
}

/* Collapse padding of adjacent sections with matching backgrounds */
.sec:not(.sec-alt)+.sec:not(.sec-alt),
.sec.sec-alt+.sec.sec-alt {
  padding-top: 0;
}

.sec-alt {
  background: var(--bg);
}

.sec-video {
  padding: 40px 0;
}

.sec-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.sec-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--fg-head);
  transition: color var(--dur) ease;
}

.sec-title-lg {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-body);
  max-width: 520px;
  letter-spacing: 0.01em;
}

/* ——— PRELOADER (Base — extended in section 3 below) ——— */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

/* ——— ENTERPRISE NAVBAR ——— */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: transparent;
  border-bottom: none;
  transition: transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.main-nav.nav-scrolled {
  box-shadow: none;
}

[data-theme="dark"] .main-nav.nav-scrolled {
  box-shadow: none;
}

.main-nav.nav-hidden {
  transform: translateY(-100%);
}

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

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 38px;
  width: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}

.nav-logo-text {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg-head);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

/* Desktop Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg-head);
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease;
  cursor: pointer;
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--fg-head);
  background: transparent;
}

.nav-chevron {
  transition: transform 0.25s ease;
  opacity: 0.5;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
  z-index: 100;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

[data-theme="dark"] .nav-dropdown-menu {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.1);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg-head);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-item:hover {
  background: transparent;
  color: var(--fg-head);
}

/* Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--nav-pill);
  border: 1px solid var(--border);
  color: var(--fg-head);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.nav-theme-toggle:hover {
  background: var(--bg-alt);
  transform: scale(1.05);
  border-color: var(--fg-muted);
}

/* CTA Button */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 24px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  background: #0099ff;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.nav-cta-btn:hover {
  background: #007acc;
  transform: translateY(-1px) scale(1.02);
}

/* Hamburger (mobile only) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-ham-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fg-head);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Drawer */
.nav-mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--bg);
  z-index: 2000;
  padding: 24px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}

.nav-mobile-drawer.is-open {
  right: 0;
}

.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.nav-drawer-title {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg-head);
}

.nav-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--nav-pill);
  border: 1px solid var(--border);
  color: var(--fg-head);
  cursor: pointer;
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-body);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.nav-drawer-link:hover,
.nav-drawer-link.active {
  background: var(--nav-pill);
  color: var(--fg-head);
}

.nav-drawer-group {
  display: flex;
  flex-direction: column;
}

.nav-drawer-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.nav-drawer-group.is-open .nav-drawer-sub {
  max-height: 400px;
}

.nav-drawer-group.is-open .nav-chevron {
  transform: rotate(180deg);
}

.nav-drawer-sublink {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px 10px 40px;
  font-size: 0.9rem;
  font-weight: 450;
  color: var(--fg-muted);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-drawer-sublink:hover {
  background: var(--nav-pill);
  color: var(--fg-head);
}

/* ——— RESPONSIVE: NAVBAR ——— */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }

  .nav-cta-btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-inner {
    height: 60px;
    padding: 0 16px;
  }
}


.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--nav-link);
  border: 1px solid var(--btn-border);
  border-radius: 100px;
  transition: all .3s;
}

.nav-cta:hover {
  color: var(--nav-link-hover);
  border-color: var(--fg-body);
}

.cta-arrow {
  transition: transform .3s;
}

.nav-cta:hover .cta-arrow {
  transform: translateX(3px);
}

.theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--toggle-bg);
  color: var(--toggle-fg);
  border: 1px solid var(--toggle-ring);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all .35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.theme-btn:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--fg-muted);
}

[data-theme="dark"] .theme-btn:hover {
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.06);
}

.theme-btn:active {
  transform: scale(0.92);
  transition-duration: 0.1s;
}

[data-theme="dark"] .theme-icon.sun {
  display: none;
}

[data-theme="dark"] .theme-icon.moon {
  display: block;
}

[data-theme="light"] .theme-icon.moon {
  display: none;
}

[data-theme="light"] .theme-icon.sun {
  display: block;
}

/* ——— PRELOADER (Intro Scene) ——— */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
  will-change: transform;
}

[data-theme="dark"] #preloader {
  background: #0a0a0a;
}

#preloader::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.01) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.01) 0%, transparent 50%);
  z-index: 0;
}

[data-theme="dark"] #preloader::before {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.01) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
}

#preloader::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.015) 0%, transparent 70%);
  animation: preloaderPulse 3s ease-in-out infinite;
}

[data-theme="dark"] #preloader::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.015) 0%, transparent 70%);
}

@keyframes preloaderPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

.pre-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  z-index: 1;
  position: relative;
}

.pre-logo-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: visible;
  padding: 10px;
}

.pre-name-chars {
  display: flex;
  gap: 0;
  perspective: 1200px;
}

.pre-char {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) scale(0.85) rotateX(25deg);
  will-change: transform, opacity;
}

[data-theme="dark"] .pre-char {
  color: #ffffff;
}

.pre-logo-mark {
  width: 72px;
  height: 72px;
  background: #0ea5e9;
  color: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  position: relative;
  opacity: 0;
  transform: scale(0.3) rotate(-45deg);
  will-change: transform, opacity;
}

.pre-logo-mark::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 23px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.6s ease;
}

[data-theme="dark"] .pre-logo-mark::after {
  border-color: rgba(255, 255, 255, 0.1);
}

.pre-tagline {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(16px);
}

[data-theme="dark"] .pre-tagline {
  color: rgba(255, 255, 255, 0.45);
}

.pre-progress-line {
  width: 100%;
  max-width: 320px;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  opacity: 0;
}

[data-theme="dark"] .pre-progress-line {
  background: rgba(255, 255, 255, 0.08);
}

.pre-progress-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--pre-fill, 0%);
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.6), #0ea5e9);
  border-radius: 2px;
  transition: width 0.1s linear;
}

.pre-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 360px;
  opacity: 0;
  transform: translateY(16px);
}

.pre-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .pre-sub {
  color: rgba(255, 255, 255, 0.3);
}

.pre-counter {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.35);
  font-variant-numeric: tabular-nums;
}

[data-theme="dark"] .pre-counter {
  color: rgba(255, 255, 255, 0.35);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 32px 48px;
  position: relative;
}

.hero-container {
  max-width: 1340px;
  margin: 0 auto;
  width: 100%;
}

.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero-left {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 24px;
}

.hero-app-mockup {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  margin-top: -20px;
  margin-bottom: -20px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  transform: translateY(-60px);
}

.hero-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  border: none;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
  transform: translateY(-60px);
}

.hero-download-btn:hover {
  transform: translateY(-63px) scale(1.04);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.45);
  background: linear-gradient(135deg, #14b8ff, #0393da);
}

.hero-download-btn svg {
  transition: transform 0.3s ease;
}

.hero-download-btn:hover svg {
  transform: translateY(3px);
}

[data-theme="dark"] .hero-app-mockup {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

@media (max-width: 991px) {
  .hero-section {
    padding: 80px 20px 40px;
    min-height: auto;
  }

  .hero-app-mockup {
    transform: translateY(0);
    max-width: 300px;
  }

  .hero-split {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    justify-content: center;
    margin-top: 40px;
    width: 100%;
  }

  .hero-bottom {
    margin: 40px auto 0;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-metrics {
    justify-content: center;
  }
}

.hero-tag {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.hero-h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #0ea5e9;
  transition: color var(--dur) ease;
}

.hero-line-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 0.1em;
  padding-top: 0.1em;
  padding-right: 0.25em;
}

.hero-line {
  display: block;
  transform: translateY(100%);
  will-change: transform;
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 32px;
  gap: 32px;
  opacity: 0;
}

.hero-sub {
  max-width: 580px;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--fg-body);
  letter-spacing: 0.01em;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 580px;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg-head);
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.metric-divider {
  width: 1px;
  height: 40px;
  background-color: var(--border);
}

.hero-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 32px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Premium Hover Effect Fill */


[data-theme="dark"] 

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}



[data-theme="dark"] .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* Secondary Button (Ghost/Outline) */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 32px;
  background: transparent;
  color: var(--fg-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-secondary:hover {
  border-color: var(--fg-head);
  background: var(--nav-pill);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.btn-secondary svg {
  transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
  transform: translateX(4px);
}

/* â• â• â•  Colorful Gradient Button (Emerald UI Style) â• â• â•  */
.btn-rainbow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ffffff !important;
  background: #9ca3af;
  /* Tailwind neutral-400 */
  border-radius: 100px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.2s;
  text-decoration: none;
}

[data-theme="dark"] .btn-rainbow {
  background: #d4d4d8;
  /* Tailwind neutral-300 */
}

.btn-rainbow::before {
  content: "";
  position: absolute;
  inset: 0;
  /* World-class cinematic palette: Magenta, Neon Orange, Deep Violet, Electric Cyan */
  background: linear-gradient(to right, #ff0055, #ff5500, #7a00ff, #00e5ff, #ff0055, #ff5500);
  background-size: 300% 100%;
  opacity: 0.85;
  filter: blur(8px) saturate(1.5);
  transition: opacity 0.5s ease, filter 0.5s ease;
  animation: emerald-pan 8s linear infinite;
  z-index: -1;
}

[data-theme="dark"] .btn-rainbow::before {
  /* Richer variants for dark mode to maintain contrast and cinematic glow */
  background: linear-gradient(to right, #e6004c, #e64d00, #5c00e6, #00b3cc, #e6004c, #e64d00);
  background-size: 300% 100%;
}

@keyframes emerald-pan {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.btn-rainbow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 0, 85, 0.25);
}

.btn-rainbow:hover::before {
  opacity: 1;
  filter: blur(10px) saturate(2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 13px 28px;
  border: 1px solid var(--btn-border);
  color: var(--fg);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all .3s;
}

.btn-outline:hover {
  border-color: var(--fg-head);
  background: var(--bg-alt);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .btn-outline:hover {
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--fg-muted);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--fg-head);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% {
    left: -100%;
  }

  50% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 48px;
  margin-bottom: 40px;
}

.about-corp-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 48px;
  align-items: start;
}

/* â•â•â• VIDEO SPLIT (Photo left, text right) â•â•â• */
.video-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 24px;
  align-items: center;
}

.video-split-media {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .video-split-media {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.video-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* â•â•â• SHOWCASE SPLIT (Photo left, text right) â•â•â• */
.sec-showcase-split {
  overflow: hidden;
}

.showcase-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 24px;
  align-items: center;
}

.showcase-split-media {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .showcase-split-media {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.showcase-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-split-text {
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {


}

.about-left .sec-title {
  margin-bottom: 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.stat {
  background: var(--stat-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 36px 28px;
  text-align: center;
  transition: background var(--dur) ease, transform .4s var(--ease);
}

.stat:hover {
  transform: translateY(-4px);
}

.stat-val {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--fg-head);
  line-height: 1;
  transition: color var(--dur) ease;
}

.stat-desc {
  display: block;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 10px;
}

.systems-list {
  display: flex;
  flex-direction: column;
}

.sys-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 44px 0;
  border-top: 1px solid var(--border);
  transition: all .4s var(--ease);
  position: relative;
}

.sys-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
  z-index: -1;
  border-radius: 12px;
}

.sys-row:hover::before {
  opacity: 1;
}

.sys-row:last-child {
  border-bottom: 1px solid var(--border);
}

.sys-row:hover {
  padding-left: 12px;
}

.sys-num {
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.sys-name {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 12px;
  color: var(--fg-head);
  transition: color .3s;
}

.sys-row:hover .sys-name {
  color: var(--fg-head);
}

.sys-desc {
  color: var(--fg-body);
  font-size: .88rem;
  line-height: 1.7;
  max-width: 520px;
}

.sys-badge {
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
  align-self: center;
}

.sec-testimonials {
  overflow: hidden;
}

.testi-split-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.testi-left {
  position: sticky;
  top: 120px;
}

.testi-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testi-list .tcard {
  width: 100%;
}

.testi-media {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}

.testi-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marquee-wrap {
  margin-top: 56px;
  position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 150px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--marquee-fade), transparent);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--marquee-fade), transparent);
}

.marquee-row {
  padding: 8px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 10px;
  width: max-content;
}

.marquee-left .marquee-track {
  animation: mLeft 50s linear infinite;
}

.marquee-right .marquee-track {
  animation: mRight 55s linear infinite;
}

@keyframes mLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes mRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

.tcard {
  flex-shrink: 0;
  width: 100%;
  max-width: 360px;
  padding: 32px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all .4s var(--ease);
}

.tcard:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--card-hover-shadow);
}

.tcard blockquote {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--fg-body);
  font-style: italic;
  margin: 0;
}

.tcard cite {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  font-style: normal;
}

.tcard cite strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: .88rem;
  color: var(--fg-head);
}

.tcard cite span {
  font-size: .72rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

.corp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 32px;
}

.corp-card {
  background: var(--stat-bg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background var(--dur) ease;
}

.corp-key {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.corp-val {
  font-size: .92rem;
  font-weight: 600;
  color: var(--fg-head);
  transition: color var(--dur) ease;
}

.corp-active {
  color: var(--fg-head);
}

.directors-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 8px;
}

.dir-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: background var(--dur) ease, border-color var(--dur) ease;
}

.dir-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--fg-head);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: .9rem;
  flex-shrink: 0;
  transition: background var(--dur) ease, color var(--dur) ease;
}

.dir-card strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: .92rem;
  display: block;
  color: var(--fg-head);
}

.dir-meta {
  display: block;
  font-size: .75rem;
  color: var(--fg-muted);
  margin-top: 3px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.06),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.4);
}

.faq-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  z-index: 1;
}

[data-theme="light"] .faq-list {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.04),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .faq-list::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

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

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: transparent;
  border: none;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg-head);
  cursor: pointer;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-trigger:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 32px;
}

[data-theme="light"] .faq-trigger:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--fg-muted);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  overflow: hidden;
  height: 0;
  transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fg-body);
}

.cta-title {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--fg-head);
  transition: color var(--dur) ease;
}

.cta-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-body);
  max-width: 480px;
  margin-bottom: 56px;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 16px;
}

.cbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 32px 20px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: all .4s var(--ease);
}

.cbox:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--card-hover-shadow);
}

.cbox-icon {
  font-size: 1.3rem;
}

.cbox-label {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.cbox-data {
  font-size: .85rem;
  word-break: break-all;
  font-weight: 600;
  color: var(--fg-head);
}

/* (Legacy footer styles removed â€” superseded by Premium Black Footer below) */


/* â•â•â• MEDIA LAYOUT ADDITIONS â•â•â• */
.hero-media-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.floating-media {
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
  opacity: 0.85;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: opacity 0.4s var(--ease);
}

[data-theme="dark"] .floating-media {
  opacity: 0.6;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.fm-1 {
  width: 100%;
  max-width: 280px;
  height: 340px;
  top: 15%;
  right: 12%;
  transform: rotate(5deg);
}

.fm-2 {
  width: 100%;
  max-width: 220px;
  height: 280px;
  bottom: 25%;
  left: 8%;
  transform: rotate(-8deg);
}

.media-masonry {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  margin-top: 24px;
  border: 1px solid var(--border);
}

[data-theme="dark"] .media-masonry {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.media-card {
  width: 100%;
  aspect-ratio: 21 / 9;
  height: auto;
  max-height: 500px;
  min-height: 300px;
  position: relative;
}

.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

.media-text-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  color: var(--fg-head);
  max-width: 400px;
}

.media-text-overlay h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.media-text-overlay p {
  font-size: 0.9rem;
  color: var(--fg-body);
}

/* â•â•â• VIDEO SPLIT LAYOUT â•â•â• */
.video-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 48px;
  align-items: center;
}

.video-split-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

.video-split-media video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.video-split-text {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {

}

.split-media-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 80px;
  align-items: center;
  margin-top: 40px;
}

.impact-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.impact-media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

[data-theme="dark"] .impact-media {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.impact-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.impact-content .body-text {
  margin-bottom: 16px;
}

/* â•â•â• WHY US GRID â•â•â• */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 8px;
  margin-top: -8px;
}

.why-card {
  padding: 40px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all .4s var(--ease);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .why-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.why-card:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--card-hover-shadow);
}

.why-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--fg-head);
}

.why-title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg-head);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.why-desc {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--fg-body);
}

/* â•â•â• SHOWCASE MEDIA â•â•â• */
.showcase-media {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .showcase-media {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.showcase-media img {
  width: 100%;
  height: 440px;
  display: block;
  object-fit: cover;
  object-position: center 30%;
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width:900px) {










  .testi-left {
    position: static;
  }



  .sys-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sys-badge {
    width: fit-content;
  }





  .split-media-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fm-1,
  .fm-2 {
    display: none;
  }

  .media-card {
    height: 40vh;
  }

  .media-text-overlay {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }



  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* (Legacy footer responsive removed â€” handled by Premium Footer block) */
}

@media (max-width:640px) {
  .wrap {
    padding: 0 20px;
  }

  #navbar {
    padding: 14px 20px;
  }

  .nav-center {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero-section {
    padding: 0 20px 48px;
  }



  .dir-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .dir-icon {
    width: 96px;
    height: 96px;
  }



  .hero-metrics {
    gap: 0;
    justify-content: space-between;
  }

  .metric-item {
    flex: 1 1 0;
    min-width: 0;
    align-items: center;
    padding: 0 8px;
    text-align: center;
  }

  .metric-value {
    font-size: 1rem;
    line-height: 1.15;
  }

  .metric-label {
    font-size: 0.68rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
}

.pointer-events-auto {
  pointer-events: auto;
}

.pointer-events-none {
  pointer-events: none;
}

.invisible {
  visibility: hidden;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.static {
  position: static;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

.z-\[1\] {
  z-index: 1;
}

.mx-auto {
  margin-inline: auto;
}

.mt-\[3px\] {
  margin-top: 3px;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.inline-block {
  display: inline-block;
}

.h-\[100vh\] {
  height: 100vh;
}

.h-\[200vh\] {
  height: 200vh;
}

.min-h-screen {
  min-height: 100vh;
}

.w-fit {
  width: fit-content;
}

.w-full {
  width: 100%;
}

.max-w-\[480px\] {
  max-width: 480px;
}

.max-w-\[520px\] {
  max-width: 520px;
}

.max-w-\[780px\] {
  max-width: 780px;
}

.max-w-\[1240px\] {
  max-width: 1240px;
}

.min-w-\[1\.6em\] {
  min-width: 1.6em;
}

.flex-1 {
  flex: 1;
}

.flex-shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

.transform {
  transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
}

.cursor-pointer {
  cursor: pointer;
}

.resize {
  resize: both;
}

.list-none {
  list-style-type: none;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.gap-\[1px\] {
  gap: 1px;
}

.self-center {
  align-self: center;
}

.overflow-hidden {
  overflow: hidden;
}

.rounded-\[12px\] {
  border-radius: 12px;
}

.rounded-full {
  border-radius: calc(infinity * 1px);
}

.border {
  border-style: var(--tw-border-style);
  border-width: 1px;
}

.border-y {
  border-block-style: var(--tw-border-style);
  border-block-width: 1px;
}

.border-t {
  border-top-style: var(--tw-border-style);
  border-top-width: 1px;
}

.border-solid {
  --tw-border-style: solid;
  border-style: solid;
}

.border-\[var\(--border\)\] {
  border-color: var(--border);
}

.bg-\[\#0a0a0a\] {
  background-color: #0a0a0a;
}

.bg-\[var\(--bg\)\] {
  background-color: var(--bg);
}

.bg-\[var\(--bg-alt\)\] {
  background-color: var(--bg-alt);
}

.bg-\[var\(--bg-card\)\] {
  background-color: var(--bg-card);
}

.bg-\[var\(--border\)\] {
  background-color: var(--border);
}

.bg-\[var\(--fg-head\)\] {
  background-color: var(--fg-head);
}

.bg-\[var\(--stat-bg\)\] {
  background-color: var(--stat-bg);
}

.py-\[100px\] {
  padding-block: 100px;
}

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

.text-\[0\.6rem\] {
  font-size: 0.6rem;
}

.text-\[0\.7rem\] {
  font-size: 0.7rem;
}

.text-\[0\.8rem\] {
  font-size: 0.8rem;
}

.text-\[0\.9rem\] {
  font-size: 0.9rem;
}

.text-\[0\.72rem\] {
  font-size: 0.72rem;
}

.text-\[0\.75rem\] {
  font-size: 0.75rem;
}

.text-\[0\.78rem\] {
  font-size: 0.78rem;
}

.text-\[0\.85rem\] {
  font-size: 0.8rem;
}

.text-\[0\.88rem\] {
  font-size: 0.88rem;
}

.text-\[0\.92rem\] {
  font-size: 0.92rem;
}

.text-\[0\.95rem\] {
  font-size: 0.95rem;
}

.text-\[1\.3rem\] {
  font-size: 1.3rem;
}

.text-\[1\.6rem\] {
  font-size: 1.6rem;
}

.text-\[1rem\] {
  font-size: 1rem;
}

.text-\[clamp\(2\.8rem\,6vw\,5rem\)\] {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.text-\[clamp\(2rem\,4vw\,3\.2rem\)\] {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.text-\[clamp\(3rem\,8vw\,6\.5rem\)\] {
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.leading-\[0\.95\] {
  --tw-leading: 0.95;
  line-height: 0.95;
}

.leading-\[1\.7\] {
  --tw-leading: 1.7;
  line-height: 1.7;
}

.leading-\[1\.15\] {
  --tw-leading: 1.15;
  line-height: 1.15;
}

.leading-\[1\] {
  --tw-leading: 1;
  line-height: 1;
}

.leading-none {
  --tw-leading: 1;
  line-height: 1;
}

.tracking-\[-0\.01em\] {
  --tw-tracking: -0.01em;
  letter-spacing: -0.01em;
}

.tracking-\[-0\.04em\] {
  --tw-tracking: -0.04em;
  letter-spacing: -0.04em;
}

.tracking-\[-0\.025em\] {
  --tw-tracking: -0.025em;
  letter-spacing: -0.025em;
}

.tracking-\[-0\.035em\] {
  --tw-tracking: -0.035em;
  letter-spacing: -0.035em;
}

.tracking-\[0\.1em\] {
  --tw-tracking: 0.1em;
  letter-spacing: 0.1em;
}

.tracking-\[0\.02em\] {
  --tw-tracking: 0.02em;
  letter-spacing: 0.02em;
}

.tracking-\[0\.06em\] {
  --tw-tracking: 0.06em;
  letter-spacing: 0.06em;
}

.tracking-\[0\.15em\] {
  --tw-tracking: 0.15em;
  letter-spacing: 0.15em;
}

.break-all {
  word-break: break-all;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.text-\[\#FF6B02\] {
  color: var(--fg-head);
}

.text-\[var\(--bg\)\] {
  color: var(--bg);
}

.text-\[var\(--fg-body\)\] {
  color: var(--fg-body);
}

.text-\[var\(--fg-head\)\] {
  color: var(--fg-head);
}

.text-\[var\(--fg-muted\)\] {
  color: var(--fg-muted);
}

.text-\[var\(--green\)\] {
  color: var(--fg-head);
}

.uppercase {
  text-transform: uppercase;
}

.tabular-nums {
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: var(--tw-ordinal, ) var(--tw-slashed-zero, ) var(--tw-numeric-figure, ) var(--tw-numeric-spacing, ) var(--tw-numeric-fraction, );
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.opacity-50 {
  opacity: 50%;
}

.mix-blend-difference {
  mix-blend-mode: difference;
}

.filter {
  filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
}

.backdrop-filter {
  -webkit-backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
  backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
}

.transition {
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}

.transition-all {
  transition-property: all;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}

.transition-colors {
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}

.transition-transform {
  transition-property: transform, translate, scale, rotate;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}

.duration-300 {
  --tw-duration: 300ms;
  transition-duration: 300ms;
}

.duration-400 {
  --tw-duration: 400ms;
  transition-duration: 400ms;
}

.group-hover\:text-\[var\(--fg-head\)\] {
  &:is(:where(.group):hover *) {
    @media (hover: hover) {
      color: var(--fg-head);
    }
  }
}

.selection\:bg-\[\#FF6B02\] {
  & *::selection {
    background-color: var(--fg-head);
  }

  &::selection {
    background-color: var(--fg-head);
  }
}

.after\:text-\[1\.2rem\] {
  &::after {
    content: var(--tw-content);
    font-size: 1.2rem;
  }
}

.after\:text-\[var\(--fg-head\)\] {
  &::after {
    content: var(--tw-content);
    color: var(--fg-head);
  }
}

.after\:transition-all {
  &::after {
    content: var(--tw-content);
    transition-property: all;
    transition-timing-function: var(--tw-ease, ease);
    transition-duration: var(--tw-duration, 0s);
  }
}

.after\:duration-300 {
  &::after {
    content: var(--tw-content);
    --tw-duration: 300ms;
    transition-duration: 300ms;
  }
}

.after\:content-\[\'\+\'\] {
  &::after {
    --tw-content: '+';
    content: var(--tw-content);
  }
}

.group-open\:after\:rotate-45 {
  &:is(:where(.group):is([open], :popover-open, :open) *) {
    &::after {
      content: var(--tw-content);
      rotate: 45deg;
    }
  }
}

.open\:border-\[var\(--fg-muted\)\] {
  &:is([open], :popover-open, :open) {
    border-color: var(--fg-muted);
  }
}

.hover\:scale-105 {
  &:hover {
    @media (hover: hover) {
      --tw-scale-x: 105%;
      --tw-scale-y: 105%;
      --tw-scale-z: 105%;
      scale: var(--tw-scale-x) var(--tw-scale-y);
    }
  }
}

.hover\:border-\[var\(--fg-muted\)\] {
  &:hover {
    @media (hover: hover) {
      border-color: var(--fg-muted);
    }
  }
}

.hover\:border-transparent {
  &:hover {
    @media (hover: hover) {
      border-color: transparent;
    }
  }
}

.hover\:bg-\[\#383838\] {
  &:hover {
    @media (hover: hover) {
      background-color: var(--border);
    }
  }
}

.hover\:text-\[\#FF6B02\] {
  &:hover {
    @media (hover: hover) {
      color: var(--fg-head);
    }
  }
}

.hover\:text-\[var\(--fg-head\)\] {
  &:hover {
    @media (hover: hover) {
      color: var(--fg-head);
    }
  }
}

.dark\:invert {
  @media (prefers-color-scheme: dark) {
    --tw-invert: invert(0%);
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }
}

.dark\:hover\:bg-\[\#1a1a1a\] {
  @media (prefers-color-scheme: dark) {
    &:hover {
      @media (hover: hover) {
        background-color: var(--border);
      }
    }
  }
}

.dark\:hover\:bg-\[\#ccc\] {
  @media (prefers-color-scheme: dark) {
    &:hover {
      @media (hover: hover) {
        background-color: var(--fg-muted);
      }
    }
  }
}

@layer base {
  html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
  }

  body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background 0.4s ease, color 0.4s ease;
  }

  ::selection {
    background: var(--fg-head);
    color: var(--bg);
  }

  html.lenis,
  html.lenis body {
    height: auto;
  }

  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }

  .lenis.lenis-stopped {
    overflow: hidden;
  }

  ::-webkit-scrollbar {
    width: 4px;
  }

  ::-webkit-scrollbar-track {
    background: inherit;
  }

  ::-webkit-scrollbar-thumb {
    background: rgba(150, 150, 150, 0.3);
    border-radius: 4px;
  }
}

@layer components {
  #webgl {
    position: fixed;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .grain {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  #curtain {
    position: fixed;
    inset: 0;
    z-index: 9997;
    pointer-events: none;
    transform-origin: top;
    transform: scaleY(0);
  }

  #scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    height: 2px;
    width: 0;
    transition: width 0.1s linear;
  }

  #preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
  }

  .pre-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    color: #fff;
  }

  .hero-line-wrap {
    display: block;
    overflow: hidden;
  }

  .hero-line {
    display: block;
    transform: translateY(110%);
    will-change: transform;
  }

  .marquee-wrap {
    position: relative;
  }

  .marquee-wrap::before,
  .marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
  }

  .marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--tw-gradient-from), transparent);
  }

  .marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--tw-gradient-from), transparent);
  }

  .marquee-track {
    display: flex;
    gap: 10px;
    width: max-content;
  }

  .marquee-left .marquee-track {
    animation: mLeft 50s linear infinite;
  }

  .marquee-right .marquee-track {
    animation: mRight 55s linear infinite;
  }

  @keyframes mLeft {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes mRight {
    0% {
      transform: translateX(-50%);
    }

    100% {
      transform: translateX(0);
    }
  }

  .marquee-row:hover .marquee-track {
    animation-play-state: paused;
  }

  .faq summary::-webkit-details-marker {
    display: none;
  }
}

@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}

@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}

@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}

@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}

@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-leading {
  syntax: "*";
  inherits: false;
}

@property --tw-tracking {
  syntax: "*";
  inherits: false;
}

@property --tw-ordinal {
  syntax: "*";
  inherits: false;
}

@property --tw-slashed-zero {
  syntax: "*";
  inherits: false;
}

@property --tw-numeric-figure {
  syntax: "*";
  inherits: false;
}

@property --tw-numeric-spacing {
  syntax: "*";
  inherits: false;
}

@property --tw-numeric-fraction {
  syntax: "*";
  inherits: false;
}

@property --tw-blur {
  syntax: "*";
  inherits: false;
}

@property --tw-brightness {
  syntax: "*";
  inherits: false;
}

@property --tw-contrast {
  syntax: "*";
  inherits: false;
}

@property --tw-grayscale {
  syntax: "*";
  inherits: false;
}

@property --tw-hue-rotate {
  syntax: "*";
  inherits: false;
}

@property --tw-invert {
  syntax: "*";
  inherits: false;
}

@property --tw-opacity {
  syntax: "*";
  inherits: false;
}

@property --tw-saturate {
  syntax: "*";
  inherits: false;
}

@property --tw-sepia {
  syntax: "*";
  inherits: false;
}

@property --tw-drop-shadow {
  syntax: "*";
  inherits: false;
}

@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false;
}

@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false;
}

@property --tw-backdrop-blur {
  syntax: "*";
  inherits: false;
}

@property --tw-backdrop-brightness {
  syntax: "*";
  inherits: false;
}

@property --tw-backdrop-contrast {
  syntax: "*";
  inherits: false;
}

@property --tw-backdrop-grayscale {
  syntax: "*";
  inherits: false;
}

@property --tw-backdrop-hue-rotate {
  syntax: "*";
  inherits: false;
}

@property --tw-backdrop-invert {
  syntax: "*";
  inherits: false;
}

@property --tw-backdrop-opacity {
  syntax: "*";
  inherits: false;
}

@property --tw-backdrop-saturate {
  syntax: "*";
  inherits: false;
}

@property --tw-backdrop-sepia {
  syntax: "*";
  inherits: false;
}

@property --tw-duration {
  syntax: "*";
  inherits: false;
}

@property --tw-content {
  syntax: "*";
  initial-value: "";
  inherits: false;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* DEEP DIVE & CLIP REVEAL */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.deep-dive-sec {
  overflow: hidden;
  padding: 0;
  background: var(--bg-alt);
  background-image: linear-gradient(to right, var(--border) 1px, transparent 1px), linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
}

.deep-dive-wrap {
  display: flex;
  width: 600vw;
  height: 100vh;
}

.deep-dive-panel {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 10vw;
}

.dd-text-panel {
  text-align: left;
  align-items: flex-start;
}

.dd-media {
  width: 80%;
  height: 70vh;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dd-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-clip-reveal {
  overflow: hidden;
  transform: translateZ(0);
  /* Force hardware acceleration */
}

.gs-clip-reveal img,
.gs-clip-reveal video {
  transform-origin: center;
}

/* â•â•â• SHOWCASE SPLIT LAYOUT â•â•â• */
.showcase-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 48px;
  align-items: center;
}

.showcase-split-media {
  border-radius: var(--r);
  overflow: hidden;
}

.showcase-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--r);
}

.showcase-split-text {
  padding: 24px 0;
}

@media (max-width: 768px) {

}

/* â•â•â• ANIMATED THEME TOGGLER (Premium Glassmorphic) â•â•â• */
.att-btn {
  background: var(--toggle-bg);
  border: 1px solid var(--toggle-ring);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-head);
  border-radius: 50%;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  width: 40px;
  height: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.att-btn:hover {
  transform: scale(1.12);
  border-color: var(--fg-muted);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.att-btn:active {
  transform: scale(0.85);
  transition-duration: 0.1s;
}

/* â•â•â• FLOWART STORY SCROLL â•â•â• */
.flow-art-root {
  width: 100%;
  background-color: #ffffff !important;
  /* Force white background for the 'table' illusion */
  overflow-x: hidden;
}

.flow-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  color: #fff;
}

/* â”€â”€ Gradient backgrounds (fourmula.ai-inspired premium look) â”€â”€ */
.flow-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  box-shadow: 0 -30px 100px rgba(0, 0, 0, 0.15);
  /* Massive, ultra-soft shadow for 3D separation */
  border-radius: 0 0 24px 24px;
  /* Soften bottom corners when scaled */
}

.flow-grad-1 {
  background: #ff5e00;
}

.flow-grad-2 {
  background: linear-gradient(180deg, #1C7F9B 0%, #ff5e00 100%);
}

/* Neon Teal */
.flow-grad-3 {
  background: linear-gradient(180deg, #6C2BD9 0%, #ff5e00 100%);
}

/* Neon Purple */
.flow-grad-4 {
  background: linear-gradient(180deg, #D91C00 0%, #ff5e00 100%);
}

/* Neon Red */

/* â”€â”€ Flow Inner Container â”€â”€ */
.flow-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 60px 4vw 32px;
  will-change: transform;
  transform-origin: bottom left;
}

.flow-inner * {
  color: #ffffff !important;
  /* Enforce white text to match Fourmula.ai */
}

.flow-inner .flow-cta-pill {
  color: #000000 !important;
  /* Keep button text dark for contrast */
}

/* â”€â”€ Top Row: Heading + Step Number â”€â”€ */
.flow-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 32px;
}

.flow-heading {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff !important;
}

.flow-step-num {
  font-family: var(--display);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 400;
  line-height: 0.8;
  opacity: 1;
  color: #fff;
  letter-spacing: -0.04em;
}

/* â”€â”€ Feature Grid (two-column bordered box) â”€â”€ */
.flow-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  margin-bottom: 16px;
}

.flow-feature-cell {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.flow-feature-cell:nth-child(2) {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.flow-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 1px;
  flex-shrink: 0;
}

.flow-feature-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* â”€â”€ Bottom Row: Description + CTA â”€â”€ */
.flow-bottom-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.flow-desc {
  text-align: left;
  align-self: flex-start;
}

.flow-desc-bold {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.flow-desc-light {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  opacity: 0.55;
}

.flow-cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: #fff;
  color: #000;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
}

.flow-cta-pill:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* â•â•â• TESTIMONIALS COLUMNS (Auto-Scroll Marquee) â•â•â• */
.testi-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.testi-header .sec-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.testi-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg-body);
  margin-bottom: 20px;
}

.testi-subtitle {
  font-size: 1.1rem;
  color: var(--fg-body);
  opacity: 0.8;
  margin: 16px auto 0;
  max-width: 600px;
  text-align: center;
}

.testi-columns-wrap {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-height: 740px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.testi-col {
  flex: 0 0 auto;
  max-width: 320px;
  width: 100%;
}

.testi-col-md {
  display: none;
}

.testi-col-lg {
  display: none;
}

@media (min-width: 768px) {
  .testi-col-md {
    display: block;
  }
}

@media (min-width: 1024px) {
  .testi-col-lg {
    display: block;
  }
}

.testi-col-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
}

/* Scroll up â€” 15s */
@keyframes testi-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* Scroll down â€” 19s */
@keyframes testi-down {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

/* Scroll up slow â€” 17s */
@keyframes testi-up-slow {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.testi-scroll-up {
  animation: testi-up 15s linear infinite;
}

.testi-scroll-down {
  animation: testi-down 19s linear infinite;
}

.testi-scroll-up-slow {
  animation: testi-up-slow 17s linear infinite;
}

/* Pause on hover */
.testi-columns-wrap:hover .testi-col-track {
  animation-play-state: paused;
}

/* Card v2 Premium Glassmorphic */
.tcard-v2 {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tcard-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0.3;
}

[data-theme="dark"] .tcard-v2 {
  background: rgba(25, 25, 25, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .tcard-v2::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  opacity: 1;
}

.tcard-v2:hover {
  border-color: var(--fg-head);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .tcard-v2:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.tcard-v2 blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg-body);
  margin: 0;
  font-style: normal;
  position: relative;
  z-index: 2;
}

.tcard-v2-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.tcard-v2-meta .why-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-head);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tcard-v2-meta strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg-head);
  line-height: 1.3;
  margin-bottom: 2px;
}

.tcard-v2-meta span {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* âœ¨ ULTRA-PREMIUM FOOTER âœ¨ */
#footer {
  --foot-bg: #111823;
  --foot-fg: #ffffff;
  --foot-muted: rgba(255, 255, 255, 0.6);
  --foot-dim: rgba(255, 255, 255, 0.45);
  --foot-border: rgba(255, 255, 255, 0.1);
  --foot-accent: #b46e0cc2;
  --mii-filter: brightness(0) invert(1);

  position: relative;
  padding: 50px 0 40px;
  background: var(--foot-bg) !important;
  color: var(--foot-fg) !important;
  border-top: none;
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
}

.foot-grid {
  display: grid;
  grid-template-columns: 2.5fr 1.2fr 1fr 1.5fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .foot-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


.foot-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--foot-fg) !important;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.foot-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-links a {
  color: var(--foot-muted) !important;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 200px;
  perspective: 800px;
  transform-style: preserve-3d;
}

.foot-links a:hover {
  color: var(--foot-accent) !important;
  animation: rollLink 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.foot-brand-col {
  display: flex;
  flex-direction: column;
}

.foot-mii-img {
  filter: var(--mii-filter) !important;
  height: 100px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}

@keyframes rollLink {
  0% {
    transform: translateY(0) rotateX(0deg);
    opacity: 1;
  }

  40% {
    transform: translateY(-12px) rotateX(-45deg);
    opacity: 0;
  }

  45% {
    transform: translateY(12px) rotateX(45deg);
    opacity: 0;
  }

  100% {
    transform: translateY(0) rotateX(0deg);
    opacity: 1;
  }
}

.foot-view-site {
  display: inline-block;
  color: var(--foot-fg) !important;
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px solid var(--foot-border);
  padding-bottom: 8px;
  width: 100%;
  margin-top: 10px;
  transition: border-color 0.3s;
}

.foot-view-site:hover {
  border-color: var(--foot-fg);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 56px;
  font-size: 0.85rem;
  color: var(--foot-muted);
}

.foot-logo-area {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--foot-fg);
}

.foot-linkedin-link {
  color: var(--foot-fg) !important;
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.foot-copy {
  font-size: 0.8rem;
  color: var(--foot-muted);
}

.foot-legal {
  display: flex;
  gap: 24px;
}

.foot-legal a {
  color: var(--foot-muted) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.foot-legal a:hover {
  color: var(--foot-fg) !important;
}

@media (max-width: 900px) {


  .foot-bottom {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .foot-legal {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 600px) {

}

@property --tw-scale-x {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-scale-y {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-scale-z {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {

    *,
    ::before,
    ::after,
    ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-tracking: initial;
      --tw-ordinal: initial;
      --tw-slashed-zero: initial;
      --tw-numeric-figure: initial;
      --tw-numeric-spacing: initial;
      --tw-numeric-fraction: initial;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
      --tw-duration: initial;
      --tw-content: "";
      --tw-scale-x: 1;
      --tw-scale-y: 1;
      --tw-scale-z: 1;
    }
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   AWWWARDS SOTD REDESIGN OVERRIDES (Cinematic Level)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* 1. TYPOGRAPHY: Editorial Contrast & Fluid Scales */
:root {
  --display: var(--sans);
  --sans: "Plus Jakarta Sans", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

.sec-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
  letter-spacing: -0.04em !important;
  line-height: 1.05 !important;
}

.sec-title-lg {
  font-size: clamp(3.5rem, 8vw, 6.5rem) !important;
  letter-spacing: -0.05em !important;
  line-height: 0.95 !important;
}

/* 2. HOVER EFFECTS & HAPTICS (Micro-interactions) */
/* Magnetic Button Utility applied via JS */
.magnetic-btn {
  display: inline-flex;
  will-change: transform;
}

.btn-primary,
.btn-outline,
.nav-link,
.nav-cta,
.flow-cta-pill {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s, color 0.3s, border-color 0.3s !important;
}

.btn-primary:active,
.btn-outline:active,
.nav-link:active,
.nav-cta:active,
.flow-cta-pill:active {
  transform: scale(0.92) !important;
}

/* Light-Trace Glow */
.why-card,
.sys-row {
  position: relative;
  overflow: hidden;
}

.why-card::after,
.sys-row::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 10;
}

[data-theme="light"] .why-card::after,
[data-theme="light"] .sys-row::after {
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 0, 0, 0.04), transparent 40%);
}

.why-card:hover::after,
.sys-row:hover::after {
  opacity: 1;
}

/* 3. CINEMATIC LOADER (Film-Grade Entrance v2) */
#preloader {
  background: #ffffff;
  overflow: hidden;
}

#preloader::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.01) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.01) 0%, transparent 50%);
  z-index: 0;
}

#preloader::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.015) 0%, transparent 70%);
  z-index: 0;
  animation: preloaderPulse 3s ease-in-out infinite;
}

@keyframes preloaderPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

/* Horizontal reveal lines â€” cinematic framing */
.pre-reveal-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  left: 0;
  width: 100%;
  opacity: 0;
  will-change: opacity;
}

.pre-reveal-line:nth-child(1) {
  top: 30%;
}

.pre-reveal-line:nth-child(2) {
  top: 70%;
}

/* Particle field â€” disabled per user request */
.pre-particle-field {
  display: none;
}

.pre-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 5s ease-in-out infinite;
  filter: blur(0.5px);
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) scale(0);
    opacity: 0;
  }

  15% {
    opacity: 0.5;
    transform: translateY(-8px) scale(1);
  }

  50% {
    opacity: 0.25;
    transform: translateY(-40px) scale(0.8);
  }

  100% {
    transform: translateY(-100px) scale(0);
    opacity: 0;
  }
}

/* Glow ring â€” hidden per user preference */
.pre-glow-ring {
  display: none;
}

.pre-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  z-index: 1;
  position: relative;
}

.pre-logo-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: visible;
  padding: 10px;
}

.pre-name-chars {
  display: flex;
  gap: 0;
  perspective: 1200px;
}

.pre-char {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
  display: inline-block;
  opacity: 0;
  transform: translateY(120%) scale(0.7) rotateX(40deg);
  will-change: transform, opacity;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.pre-logo-mark {
  width: 72px;
  height: 72px;
  background: #0ea5e9;
  color: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: scale(0.3) rotate(-10deg);
  will-change: transform, opacity;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}

.pre-logo-mark::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 23px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Tagline reveal */
.pre-tagline {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(16px);
  will-change: transform, opacity;
}

.pre-progress-line {
  width: 100%;
  max-width: 320px;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  opacity: 0;
}

.pre-progress-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--pre-fill, 0%);
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.6), #0ea5e9);
  border-radius: 2px;
  transition: width 0.08s linear;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.pre-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 360px;
  opacity: 0;
  transform: translateY(16px);
}

.pre-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
  margin-top: 0;
  opacity: 1;
}

.pre-counter {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.35);
  font-variant-numeric: tabular-nums;
}

/* â•â•â• INNOVATION PORTFOLIO â•â•â• */
.innovation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

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

.innovation-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.innovation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  border-color: var(--card-hover-border);
}

[data-theme="dark"] .innovation-card:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.innovation-card-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
  flex-shrink: 0;
  background: var(--bg-alt);
}

.innovation-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.innovation-card:hover .innovation-card-img img {
  transform: scale(1.08);
}

.innovation-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: #0099ff;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.innovation-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.innovation-card-title {
  font-family: var(--display) !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.2 !important;
  color: var(--fg-head);
  margin-bottom: 6px;
}

.innovation-card-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0099ff;
  margin-bottom: 16px;
}

.innovation-card-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg-body);
  margin-bottom: 16px;
  flex-grow: 1;
}

.innovation-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.innovation-card-tags span {
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-head);
  background: var(--nav-pill);
  border: 1px solid var(--border);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.innovation-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0099ff;
  background: rgba(0, 153, 255, 0.08);
  border-radius: 100px;
  transition: gap 0.3s ease, background 0.3s ease, transform 0.3s ease;
  margin-top: auto;
}

.innovation-card:hover .innovation-card-cta {
  gap: 14px;
  background: rgba(0, 153, 255, 0.14);
  transform: translateX(4px);
}

/* 4. ENTRANCE REVEALS (Split Text & Cascade) */
.split-line {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.split-char {
  display: inline-block;
  will-change: transform, opacity;
}

.gs-clip-reveal img {
  will-change: transform;
}

/* 5. PAGE TRANSITIONS (Motion Blur Wipe) */
.page-transition-overlay {
  position: fixed;
  inset: -10vh 0;
  height: 120vh;
  background: var(--fg-head);
  z-index: 99999;
  transform: translateY(-100%);
  pointer-events: none;
  will-change: transform;
}

/* Theme Ripple (radial expansion toggle â€” cinematic v2) */
.theme-ripple {
  will-change: width, height, opacity;
  backface-visibility: hidden;
  mix-blend-mode: normal;
}

/* Premium Toggle â€” clean, no orbit ring */
.att-btn {
  position: relative;
  overflow: visible;
  transition: transform 0.3s var(--ease);
}

.att-btn:hover {
  transform: scale(1.1);
}

.att-btn:active {
  transform: scale(0.92) !important;
}


/* â•â•â• RESPONSIVE: Mobile hero â•â•â• */
@media (max-width: 768px) {

  /* Hero: clear the navbar at the top */
  .hero-section {
    padding-top: 70px !important;
  }

  .hero-tag {
    margin-top: 10px;
  }

  /* Hero download button below mockup â€” mobile optimized */
  .hero-app-mockup {
    transform: translateY(0) !important;
    max-width: 280px !important;
  }

  .hero-download-btn {
    transform: translateY(0) !important;
    padding: 12px 24px;
    font-size: 0.75rem;
  }

  .hero-download-btn:hover {
    transform: translateY(-2px) scale(1.02) !important;
  }
}

/* 7. CONTENT PRESENTATION (Stat Counter) */
.stat-val {
  font-variant-numeric: tabular-nums;
}

/* â”€â”€â”€ 10. EDITORIAL CONTRAST (Typography Overrides) â”€â”€â”€ */
h1,
h2,
h3,
.sys-name,
.flow-heading {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-transform: uppercase;
}

/* â”€â”€â”€ 10.5 INFINITE MARQUEE (Refactored to Vertical) â”€â”€â”€ */

/* â”€â”€â”€ 11. INTELLIGENCE GRID (FlowArt Story Scroll) â”€â”€â”€ */
.flow-art-root {
  background-color: #ffffff !important;
  position: relative;
  overflow: visible;
}

.flow-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff !important;
}

.flow-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Precise Gradient Implementations per Request */
.flow-grad-1 {
  background: #FF5500;
}

.flow-grad-2 {
  background: linear-gradient(180deg, #82BDD0 0%, #B28A50 55%, #FF5500 100%);
}

.flow-grad-3 {
  background: linear-gradient(180deg, #6D67C8 0%, #A85870 55%, #FF5500 100%);
}

.flow-grad-4 {
  background: linear-gradient(180deg, #8B1200 0%, #FF5500 100%);
}

.flow-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flow-inner * {
  color: #ffffff !important;
}

.flow-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.flow-heading {
  font-size: clamp(3rem, 6vw, 5.5rem);
  max-width: 600px;
  margin: 0;
}

.flow-step-num {
  font-family: var(--display);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.8;
  opacity: 0.3;
}

.flow-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
  margin: 40px 0;
  max-width: 55%;
}

.flow-feature-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flow-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
}

.flow-feature-label {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.flow-bottom-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 24px;
  max-width: 55%;
}

.flow-desc {
  max-width: 400px;
}

.flow-desc-bold {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.flow-desc-light {
  font-size: 1.1rem;
  opacity: 0.8;
}

.flow-cta-pill {
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.flow-cta-pill:hover {
  background: #ffffff;
  color: #000000 !important;
}

.flow-showcase-strip {
  position: absolute;
  bottom: 60px;
  right: 60px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.flow-showcase-card {
  width: 160px;
  height: 110px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.flow-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.flow-showcase-card:hover img {
  opacity: 1;
}

/* â•â•â• FLOW SECTIONS â€” MOBILE RESPONSIVE â•â•â• */
@media (max-width: 768px) {
  .flow-section {
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
  }

  .flow-inner {
    padding: 60px 20px 40px !important;
    height: auto !important;
    min-height: auto !important;
  }

  .flow-top-row {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px !important;
  }

  .flow-heading {
    font-size: clamp(2.2rem, 10vw, 3rem) !important;
    max-width: 100% !important;
  }

  .flow-step-num {
    font-size: clamp(3rem, 12vw, 5rem) !important;
    align-self: flex-end;
    margin-top: -2rem;
  }

  .flow-feature-grid {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    gap: 0 !important;
    margin: 20px 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
  }

  .flow-feature-cell {
    padding: 14px 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .flow-feature-cell:last-child {
    border-bottom: none;
  }

  .flow-feature-cell:nth-child(2) {
    border-left: none !important;
  }

  .flow-feature-label {
    font-size: 0.85rem !important;
  }

  .flow-bottom-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    max-width: 100% !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
  }

  .flow-desc {
    max-width: 100% !important;
  }

  .flow-desc-bold {
    font-size: 1.1rem !important;
  }

  .flow-desc-light {
    font-size: 0.95rem !important;
  }

  .flow-cta-pill {
    padding: 12px 24px !important;
    font-size: 0.8rem !important;
    align-self: flex-start !important;
  }

  .flow-showcase-strip {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    display: flex !important;
    gap: 12px !important;
    margin-top: 20px !important;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .flow-showcase-card {
    width: 140px !important;
    height: 100px !important;
    flex-shrink: 0 !important;
  }
}

/* â•â•â• ANIMATED TESTIMONIALS (Apple Glassmorphism Style) â•â•â• */
.animated-testi-sec {
  padding: 80px 0;
  overflow: hidden;
}

.animated-testi-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 991px) {
  .animated-testi-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* Left Content */
.animated-testi-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

[data-theme="light"] .animated-testi-badge {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

.animated-testi-title {
  margin-bottom: 16px;
}

.animated-testi-sub {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.animated-testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 48px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] .testi-dot {
  background: rgba(0, 0, 0, 0.15);
}

.testi-dot:hover {
  background: rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .testi-dot:hover {
  background: rgba(0, 0, 0, 0.3);
}

.testi-dot.active {
  background: #ffffff;
  width: 64px;
}

[data-theme="light"] .testi-dot.active {
  background: #000000;
}

/* Right Cards Container */
.animated-testi-right {
  position: relative;
  height: 380px;
  perspective: 1000px;
}

.animated-testi-cards {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Card */
.animated-testi-card {
  position: absolute;
  inset: 0;
  padding: 48px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.animated-testi-card.active {
  opacity: 1;
  pointer-events: auto;
}

[data-theme="light"] .animated-testi-card {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(0, 0, 0, 0.05);
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testi-star {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.2);
}

.testi-star.filled {
  color: #f59e0b;
  fill: #f59e0b;
}

[data-theme="light"] .testi-star {
  color: rgba(0, 0, 0, 0.1);
}

.testi-quote {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--fg-head);
  margin-bottom: 32px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.testi-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.testi-author-info {
  display: flex;
  flex-direction: column;
}

.testi-author-info strong {
  font-size: 1.05rem;
  color: var(--fg-head);
}

.testi-author-info span {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Glows behind the cards */
.animated-testi-glow {
  position: absolute;
  width: 100%;
  max-width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.15;
}

.glow-orange {
  background: #ff5500;
  top: -20px;
  right: -20px;
}

.glow-blue {
  background: #00e5ff;
  bottom: -20px;
  left: 20px;
}

[data-theme="light"] .animated-testi-glow {
  opacity: 0.25;
}

/* Logos Section */
.animated-testi-logos {
  margin-top: 48px;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.animated-testi-logos-title {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--fg-head);
  margin-bottom: 40px;
}

.animated-testi-logos-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}

.animated-testi-logos-row span {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg-head);
  transition: transform 0.3s ease;
}

.animated-testi-logos-row span:hover {
  transform: scale(1.05);
}

/* â•â•â• VERTICAL INFINITE MARQUEE â•â•â• */
.marquee-section {
  height: 250px;
  overflow: hidden;
  background: var(--bg);
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  width: 100%;
  box-sizing: border-box;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.marquee-inner {
  display: block;
  height: fit-content;
  width: 100%;
  box-sizing: border-box;
  animation: marqueeVerticalScroll 45s linear infinite;
  will-change: transform;
}

.marquee-section:hover .marquee-inner {
  animation-play-state: paused;
}

.marquee-content {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 16px;
  border: none;
  background: transparent;
  max-width: 1400px;
  width: 95vw;
  margin: 0 auto 12px auto;
  box-sizing: border-box;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: opacity 0.3s var(--ease);
}

.marquee-item:hover {
  opacity: 0.8;
}

.marquee-text {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--fg-body);
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-weight: 500;
  width: 100%;
}

@keyframes marqueeVerticalScroll {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

/* Marquee Mobile Optimizations */
@media (max-width: 768px) {
  .marquee-section {
    height: 300px;
    /* Give it a bit more vertical breathing room on mobile */
  }

  .marquee-item {
    width: 90vw;
    padding: 6px 12px;
    margin: 0 auto 10px auto;
  }

  .marquee-text {
    font-size: 0.75rem;
    line-height: 1.6;
  }
}

/* â•â•â• PERFORMANCE OPTIMIZATIONS â•â•â• */

/* content-visibility removed â€” breaks GSAP ScrollTrigger position calculations */

/* GPU compositing hints for frequently animated elements */
.main-nav {
  will-change: transform;
}

.page-transition-overlay {
  will-change: transform;
}

/* Respect reduced motion â€” disable all heavy animations */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .grain {
    display: none !important;
  }

  #webgl {
    display: none !important;
  }
}


/* Liquid Glass Effect Classes */
.liquid-glass-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 0;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.08), inset 3px 3px 0.5px -3px rgba(0, 0, 0, 0.9), inset -3px -3px 0.5px -3px rgba(0, 0, 0, 0.85), inset 1px 1px 1px -0.5px rgba(0, 0, 0, 0.6), inset -1px -1px 1px -0.5px rgba(0, 0, 0, 0.6), inset 0 0 6px 6px rgba(0, 0, 0, 0.12), inset 0 0 2px 2px rgba(0, 0, 0, 0.06), 0 0 12px rgba(255, 255, 255, 0.15);
  transition: all .4s var(--ease);
}

[data-theme="dark"] .liquid-glass-shadow {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.08), inset 3px 3px 0.5px -3.5px rgba(255, 255, 255, 0.09), inset -3px -3px 0.5px -3.5px rgba(255, 255, 255, 0.85), inset 1px 1px 1px -0.5px rgba(255, 255, 255, 0.6), inset -1px -1px 1px -0.5px rgba(255, 255, 255, 0.6), inset 0 0 6px 6px rgba(255, 255, 255, 0.12), inset 0 0 2px 2px rgba(255, 255, 255, 0.06), 0 0 12px rgba(0, 0, 0, 0.15);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   15. CINEMATIC PAGE TRANSITION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cinematic-wipe {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg);
  z-index: 999999;
  transform-origin: bottom;
  pointer-events: none;
}

.liquid-glass-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: -1;
  overflow: hidden;
  backdrop-filter: url(#container-glass);
  -webkit-backdrop-filter: url(#container-glass);
}



@media (max-width: 900px) {
  .innovation-card-body {
    padding: 24px;
  }
}

/* ==========================================
   GISI-Style Scroll Reveal & Curtain Footer
   ========================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.has-curtain-footer {
  position: relative;
  min-height: 100vh;
}

.curtain-main {
  position: relative;
  z-index: 2;
  background-color: var(--bg) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.curtain-footer-active {
  position: fixed !important;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1 !important;
}

/* ==========================================
   Make in India Logo & Compact Footer Overrides
   ========================================== */
.foot-brand-col {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 24px !important;
}

.foot-brand-details {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  font-size: 0.82rem !important;
  line-height: 1.45 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  text-align: left !important;
}

.foot-brand-details strong {
  color: #ffffff !important;
  font-weight: 600 !important;
}

.foot-brand-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

#footer .foot-brand-col .foot-mii-img {
  height: 180px !important;
  width: auto !important;
  margin-bottom: 0 !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
}

body #footer {
  padding: 24px 0 16px !important;
}

@media (max-width: 900px) {
  .foot-brand-col {
    grid-column: 1/-1 !important;
  }
}

@media (max-width: 600px) {
  body #footer {
    padding: 20px 0 12px !important;
  }
  .foot-brand-col {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  #footer .foot-brand-col .foot-mii-img {
    height: 130px !important;
    margin-bottom: 8px !important;
  }
}

/* Restored Global Footer Styles */
#footer {
        --foot-bg: #000000;
        --foot-fg: #ffffff;
        --foot-muted: rgba(255, 255, 255, 0.45);
        --foot-dim: rgba(255, 255, 255, 0.3);
        --foot-border: rgba(255, 255, 255, 0.08);
        --foot-accent: #ff5500;
        --mii-filter: invert(1);
        position: relative;
        padding: 16px 0 8px;
        background: var(--foot-bg) !important;
        color: var(--foot-fg) !important;
        border-top: none;
        overflow: hidden;
        transition:
          background 0.5s,
          color 0.5s;
      }
      [data-theme="dark"] #footer {
        --foot-bg: #ffffff;
        --foot-fg: #000000;
        --foot-muted: rgba(0, 0, 0, 0.45);
        --foot-dim: rgba(0, 0, 0, 0.3);
        --foot-border: rgba(0, 0, 0, 0.08);
        --foot-accent: #ff5500;
        --mii-filter: none;
      }
      .foot-mii-img {
        filter: var(--mii-filter) !important;
        transition: filter 0.5s;
      }
      .foot-col-title {
        font-family: var(--display);
        font-size: 0.68rem;
        font-weight: 700;
        color: var(--foot-muted) !important;
        margin-bottom: 8px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        transition: color 0.5s;
      }
      .foot-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
      }
      .foot-links li a {
        font-size: 0.78rem;
        color: var(--foot-muted) !important;
        text-decoration: none;
        transition:
          color 0.3s,
          transform 0.3s;
        display: inline-block;
      }
      .foot-links li a:hover {
        color: var(--foot-fg) !important;
        transform: translateX(4px);
      }
      .foot-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 10px;
        border-top: 1px solid var(--foot-border) !important;
        gap: 12px;
        flex-wrap: wrap;
        transition: border-color 0.5s;
      }
      .foot-copy {
        font-size: 0.75rem;
        color: var(--foot-dim) !important;
        letter-spacing: 0.02em;
        transition: color 0.5s;
      }
      .foot-legal {
        display: flex;
        gap: 24px;
      }
      .foot-legal a {
        font-size: 0.75rem;
        color: var(--foot-dim) !important;
        text-decoration: none;
        transition: color 0.3s;
        letter-spacing: 0.02em;
      }
      .foot-legal a:hover {
        color: var(--foot-fg) !important;
      }
      .foot-back-top {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 4px 14px;
        border: 1px solid var(--foot-border);
        border-radius: 100px;
        font-size: 0.72rem !important;
        color: var(--foot-muted) !important;
        text-decoration: none !important;
        transition: 0.3s;
        letter-spacing: 0.06em;
        text-transform: uppercase;
      }
      .foot-back-top:hover {
        border-color: var(--foot-muted);
        color: var(--foot-fg) !important;
        transform: translateY(-2px);
      }
      @media (max-width: 900px) {
        .foot-brand-col {
          grid-column: 1/-1;
        }
      }
      @media (max-width: 600px) {
        .foot-bottom {
          flex-direction: column;
          align-items: flex-start;
        }
        #footer {
          padding: 16px 0 10px;
        }
        .foot-col-title {
          margin-bottom: 6px;
        }
      }
/* GLOBAL PAGE TRANSITION CURTAIN CSS
   ------------------------------------------- */
.skjal-transition-wrap {
    transform: translateZ(10000px);
    will-change: transform;
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 2147483647;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.skjal-transition-panel {
    background: #111111;
    position: absolute;
    inset: 0;
    will-change: transform;
}
.skjal-curve-top, .skjal-curve-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    fill: #111111;
    display: block;
    will-change: transform;
    pointer-events: none;
}
.skjal-curve-top {
    top: -99px;
    transform-origin: bottom center;
}
.skjal-curve-bottom {
    bottom: -99px;
    transform-origin: top center;
}
.skjal-transition-text-wrap {
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.skjal-transition-text {
    font-family: var(--font-mag-mono, 'Space Grotesk', monospace);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 4px;
    display: flex;
    gap: 20px;
}
.skjal-transition-word {
    display: flex;
    overflow: hidden;
}
.skjal-transition-char {
    display: inline-block;
    will-change: transform;
}


/* MAG GRID FOR FOOTER */
:root {
  --mag-bg: #111111;
  --mag-text: #ffffff;
  --mag-accent: #ff4c1a;
  --mag-border: rgba(255,255,255,0.15);
  --font-mag-body: 'Inter', sans-serif;
  --font-mag-mono: 'Space Grotesk', monospace;
  --font-mag-heading: 'Playfair Display', serif;
}
.mag-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.mag-col {
    padding: clamp(24px, 4vw, 40px) clamp(16px, 3vw, 32px);
    border-right: 1px solid var(--mag-border);
}

.mag-col:last-child {
    border-right: none;
}

@media (max-width: 991px) {
  #footer .mag-grid {
    grid-template-columns: 1fr 1fr;
  }
  #footer .mag-col {
    grid-column: span 1 !important;
    border-right: none !important;
    border-bottom: 1px solid var(--mag-border) !important;
  }
}

@media (max-width: 600px) {
  #footer .mag-grid {
    grid-template-columns: 1fr;
  }
  #footer .mag-col {
    grid-column: span 1 !important;
  }
}

/* ——— UX/UI OVERHAUL ADDITIONS ——— */

/* Hero CTA Glow Pulse */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3); }
  50% { box-shadow: 0 8px 36px rgba(16, 185, 129, 0.55); }
}

.hero-cta-primary {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700 !important;
  padding: 16px 40px !important;
  font-size: 15px !important;
  text-transform: uppercase !important;
  border-radius: 8px !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3) !important;
  animation: ctaPulse 3s ease-in-out infinite !important;
  transition: all 0.3s ease !important;
  min-height: 52px !important;
}

.hero-cta-primary::before {
  display: none !important;
}

.hero-cta-primary:hover {
  background: linear-gradient(135deg, #059669, #047857) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 36px rgba(16, 185, 129, 0.5) !important;
  animation: none !important;
}

.hero-cta-secondary {
  background: transparent !important;
  color: var(--fg-head) !important;
  border: 1.5px solid var(--border) !important;
  font-weight: 600 !important;
  padding: 14px 32px !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  border-radius: 8px !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  min-height: 52px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.hero-cta-secondary::before {
  display: none !important;
}

.hero-cta-secondary:hover {
  border-color: var(--fg-head) !important;
  background: var(--nav-pill) !important;
  transform: translateY(-2px) !important;
}

.hero-cta-secondary svg {
  transition: transform 0.3s ease;
}

.hero-cta-secondary:hover svg {
  transform: translateX(4px);
}

/* Trust Indicators Row */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.hero-trust-item svg {
  flex-shrink: 0;
  color: #10b981;
}

/* Alternating Section Backgrounds */
.sec:nth-child(even) {
  background: var(--bg-alt);
}

/* Section Divider */
.sec + .sec::before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Innovation Card Image Gradient Overlay */
.innovation-card-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.05), transparent);
  pointer-events: none;
  z-index: 1;
}

/* Contact Section — Prominent CTA */
.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  margin-bottom: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.contact-cta-btn:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.4);
}

.contact-cta-btn svg {
  transition: transform 0.3s ease;
}

.contact-cta-btn:hover svg {
  transform: translateX(4px);
}

/* ——— MOBILE RESPONSIVE FIXES ——— */
@media (max-width: 768px) {
  .sec {
    padding: clamp(40px, 6vw, 64px) 0;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px !important;
  }
  
  .hero-actions .hero-cta-primary,
  .hero-actions .hero-cta-secondary {
    width: 100% !important;
    justify-content: center !important;
  }
  
  .hero-trust-row {
    gap: 12px;
  }
  
  .hero-trust-item {
    font-size: 0.72rem;
  }
  
  .contact-cta-btn {
    width: 100%;
    justify-content: center;
  }
  
  .innovation-card-body {
    padding: 24px;
  }
}

/* Sticky Mobile CTA */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 12px 16px;
    background: var(--bg);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    justify-content: center;
  }
  
  .mobile-sticky-cta a {
    flex: 1;
    max-width: 400px;
    text-align: center;
    padding: 14px 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .mobile-sticky-cta a:hover {
    background: linear-gradient(135deg, #059669, #047857);
  }
  
  /* Add padding to body to offset sticky CTA */
  body {
    padding-bottom: 64px;
  }
}

/* ——— ACCESSIBILITY: FOCUS-VISIBLE ——— */
.innovation-card:focus-visible,
.cbox:focus-visible,
.faq-trigger:focus-visible,
.btn-secondary:focus-visible,
.btn-primary:focus-visible,
.hero-cta-primary:focus-visible,
.hero-cta-secondary:focus-visible,
.contact-cta-btn:focus-visible,
.nav-drawer-link:focus-visible,
.nav-drawer-sublink:focus-visible {
  outline: 2px solid #0099ff;
  outline-offset: 3px;
}

/* Ensure innovation card has proper keyboard indication */
.innovation-card:focus-visible {
  border-color: #0099ff;
  box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.2);
}


/* ==========================================================================
   Product Pages Shared Styles
   ========================================================================== */

/* Product Theme Variables fallback */
:root {
  --theme-accent: #0099ff;
  --theme-accent-hover: #007acc;
}

.product-hero {
  padding: 130px 0 80px;
  background: var(--bg);
  overflow: hidden;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 64px;
  align-items: start;
}

.product-hero-image {
  position: relative;
  width: 100%;
}

.product-hero-img-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1/1;
  max-width: 95%;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  margin-top: 12px;
}

.product-hero-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-content {
  color: var(--fg);
  max-width: 600px;
}

.product-hero-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--theme-accent);
  border-radius: 100px;
  margin-bottom: 24px;
}

.product-hero-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--fg-head);
}

.product-hero-sub {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--fg);
  opacity: 0.85;
  margin-bottom: 32px;
}

.product-section {
  padding: 55px 0;
}

.product-section + .product-section:not([style*="background"]) {
  padding-top: 0;
}

.product-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
  margin-top: 40px;
}

.product-feature-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .product-feature-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.product-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--theme-accent) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--theme-accent);
}

.product-feature-card h3 {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg-head);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.product-feature-card p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--fg-body);
}

.problem-solution {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 32px;
  margin-top: 40px;
}

.ps-card {
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.ps-card.problem {
  background: color-mix(in srgb, #dc2626 3%, transparent);
  border-color: color-mix(in srgb, #dc2626 12%, transparent);
}

.ps-card.solution {
  background: color-mix(in srgb, var(--theme-accent) 3%, transparent);
  border-color: color-mix(in srgb, var(--theme-accent) 12%, transparent);
}

[data-theme="dark"] .ps-card.problem {
  background: color-mix(in srgb, #dc2626 8%, transparent);
  border-color: color-mix(in srgb, #dc2626 25%, transparent);
}

[data-theme="dark"] .ps-card.solution {
  background: color-mix(in srgb, var(--theme-accent) 8%, transparent);
  border-color: color-mix(in srgb, var(--theme-accent) 25%, transparent);
}

.ps-card h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--fg-head);
  letter-spacing: -0.01em;
}

.ps-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ps-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--fg-body);
}

.ps-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.ps-card.problem .ps-dot {
  background: #dc2626;
}

.ps-card.solution .ps-dot {
  background: var(--theme-accent);
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 20px;
  margin-top: 40px;
}

.target-item {
  text-align: center;
  padding: 32px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.target-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--theme-accent) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--theme-accent);
}

.target-item h4 {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg-head);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 24px;
  margin-top: 40px;
}

.status-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.status-label {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  margin-bottom: 16px;
}

.status-now .status-label {
  background: color-mix(in srgb, #166534 20%, transparent);
  color: #166534;
}

.status-next .status-label {
  background: color-mix(in srgb, #92400e 20%, transparent);
  color: #92400e;
}

[data-theme="dark"] .status-now .status-label {
  color: #4ade80;
}

[data-theme="dark"] .status-next .status-label {
  color: #fbbf24;
}

.status-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.status-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--fg-body);
}

.check {
  color: #22c55e;
  font-weight: 700;
}

.arrow {
  color: var(--theme-accent);
  font-weight: 700;
}

.product-cta-section {
  padding: 55px 0;
  background: var(--bg-alt);
  text-align: center;
}

.product-cta-section p {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fg-body);
}

.showcase-container {
  margin-top: -80px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--border);
  position: relative;
  z-index: 10;
  background: var(--bg);
  transition: transform 0.5s ease;
}

.showcase-container:hover {
  transform: scale(1.01);
}

.showcase-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Product Stats */
.product-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 24px;
  margin-top: 48px;
}
.product-stat {
  text-align: center;
  padding: 32px 16px;
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.product-stat-value {
  font-family: var(--display);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--theme-accent);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.product-stat-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 16px;
  margin-top: 40px;
}
.industry-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg-head);
}
.industry-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme-accent);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .product-hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }
  .product-hero-img-inner {
    max-width: 100%;
    margin: 0 auto 16px;
  }
  .product-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-hero-badge {
    margin-bottom: 18px;
    font-size: 0.68rem;
  }
  .product-hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }
  .product-section, .product-cta-section {
    padding: 35px 0;
  }
  .target-grid, .product-features-grid, .status-grid, .product-stats, .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  }
  .problem-solution {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   Awwwards Style Product UI
   ========================================================================== */

.aww-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 20px 80px;
  overflow: hidden;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--theme-accent) 8%, transparent) 0%, var(--bg) 70%);
}

.aww-hero-inner {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  z-index: 2;
}

.aww-text-huge {
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fg-head);
  margin-bottom: 24px;
}

.aww-text-gradient {
  background: linear-gradient(135deg, var(--fg-head) 20%, var(--theme-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.aww-hero-sub {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: var(--fg-body);
  margin-bottom: 40px;
  max-width: 500px;
}

.aww-hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.aww-hero-visual:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) translateY(-10px);
}

.aww-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.1);
}

.aww-hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
  pointer-events: none;
}

/* Bento Box Grid */
.aww-bento-section {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
}

.aww-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.aww-card {
  position: relative;
  background: color-mix(in srgb, var(--bg-alt) 40%, transparent);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid color-mix(in srgb, var(--border) 50%, transparent);
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}

.aww-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--border) 80%, transparent);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

[data-theme="dark"] .aww-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.aww-span-2 { grid-column: span 2; }
.aww-span-3 { grid-column: span 3; }
.aww-span-4 { grid-column: span 4; }
.aww-row-2 { grid-row: span 2; }

.aww-card-title {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fg-head);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  z-index: 2;
}

.aww-card-text {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-body);
  z-index: 2;
}

.aww-card-stat {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--theme-accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.aww-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--theme-accent) 10%, transparent);
  color: var(--theme-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  z-index: 2;
}

/* Sticky Split Section */
.sticky-split {
  display: flex;
  gap: 80px;
  padding: 120px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.sticky-split-left {
  flex: 0 0 40%;
  position: sticky;
  top: 120px;
  height: max-content;
}

.sticky-split-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sticky-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
}

.sticky-card.highlight {
  background: color-mix(in srgb, var(--theme-accent) 4%, transparent);
  border-color: color-mix(in srgb, var(--theme-accent) 15%, transparent);
}

/* Call to Action Full Width */
.aww-cta {
  margin: 80px 24px 120px;
  border-radius: 32px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--theme-accent) 10%, transparent), var(--bg-alt));
  border: 1px solid var(--border);
  padding: 100px 40px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.aww-cta h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--fg-head);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.aww-cta p {
  font-family: var(--sans);
  font-size: 1.15rem;
  color: var(--fg-body);
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .aww-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .aww-hero-sub {
    margin: 0 auto 40px;
  }
  .aww-hero-visual {
    aspect-ratio: 16/10;
    transform: none;
  }
  .aww-hero-visual:hover {
    transform: translateY(-5px);
  }
  .aww-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .aww-span-3, .aww-span-4 {
    grid-column: span 2;
  }
  .sticky-split {
    flex-direction: column;
    gap: 40px;
  }
  .sticky-split-left {
    position: relative;
    top: 0;
  }
}

@media (max-width: 640px) {
  .aww-bento {
    grid-template-columns: 1fr;
  }
  .aww-span-2 {
    grid-column: span 1;
  }
  .aww-card {
    padding: 32px 24px;
  }
}


/* --- DEEP TECH SEO COMPONENTS --- */

/* Specs Grid */
.aww-specs {
  padding: 120px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.aww-specs-header {
  margin-bottom: 64px;
}

.aww-specs-header h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg-head);
}

.aww-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.aww-spec-item {
  background: var(--bg-alt);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s ease;
}

.aww-spec-item:hover {
  background: color-mix(in srgb, var(--theme-accent) 5%, var(--bg-alt));
}

.aww-spec-label {
  font-family: var(--sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-body);
  font-weight: 600;
}

.aww-spec-value {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 1.25rem;
  color: var(--fg-head);
  font-weight: 700;
}

/* Industry Applications */
.aww-applications {
  background: #000;
  color: #fff;
  padding: 120px 24px;
  border-radius: 40px;
  margin: 40px 24px 120px;
}

[data-theme="dark"] .aww-applications {
  background: #0a0a0a;
  border: 1px solid var(--border);
}

.aww-app-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.aww-app-header {
  text-align: center;
  margin-bottom: 80px;
}

.aww-app-header h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.aww-app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.aww-app-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  transition: transform 0.4s, background 0.4s;
}

.aww-app-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
}

.aww-app-title {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.aww-app-desc {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
