/* ===== Consolidated stylesheet — ported from src/index.css + src/components/*.css ===== */

/* ======================================================================
   SOURCE: src/index.css
====================================================================== */
/* ================================
   DESIGN TOKENS
================================ */
:root {
  /* Colors */
  --bg-deep: #050a1a;
  --bg-dark: #080d1f;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(200, 150, 44, 0.3);

  --gold-primary: #c8962c;
  --gold-light: #e8b84b;
  --gold-dim: rgba(200, 150, 44, 0.6);
  --gold-glow: rgba(200, 150, 44, 0.15);

  --text-primary: #f0e8d0;
  --text-secondary: #8a9bb8;
  --text-muted: #4a5568;
  --text-gold: #c8962c;

  --teal: #3db8c8;
  --teal-dim: rgba(61, 184, 200, 0.6);

  /* Fonts */
  --font-heading: 'Cinzel', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-devanagari: 'Noto Sans Devanagari', sans-serif;

  /* Spacing */
  --section-padding: 120px 24px;
  --section-padding-sm: 80px 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-med: 0.35s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (max-width: 768px) {
  :root {
    --section-padding: 72px 18px;
    --section-padding-sm: 48px 18px;
  }
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* overflow-x: clip (not hidden) — "hidden" on one axis forces the other
     axis to computed overflow:auto per spec, which turns html/body into
     their own scroll container and breaks position:sticky for every
     descendant (e.g. the timeline section's pin-and-scroll effect).
     clip still visually clips horizontal overflow without that side
     effect. */
  overflow-x: clip;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  position: relative;
}


/* Lenis smooth scroll */
html.lenis,
html.lenis body {
  height: auto;
}

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

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

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

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

#root {
  width: 100%;
  min-height: 100vh;
}

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

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

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

ul {
  list-style: none;
}

/* ================================
   TYPOGRAPHY
================================ */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
}

/* ================================
   UTILITY CLASSES
================================ */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  justify-content: center;
  margin-bottom: 24px;
}

.section-label::before,
.section-label::after {
  content: '';
  flex: 0 0 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.section-label::after {
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.text-gold {
  color: var(--gold-primary);
}

.text-secondary {
  color: var(--text-secondary);
}

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

.gold-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--gold-primary);
  color: #1a0f00;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

.gold-pill-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 150, 44, 0.35);
}

.dark-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
}

.dark-pill-btn:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-1px);
}

.divider-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 60px auto;
  width: 100%;
}

.divider-dot::before,
.divider-dot::after {
  content: '';
  flex: 1;
  max-width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle));
}

.divider-dot::after {
  background: linear-gradient(90deg, var(--border-subtle), transparent);
}

.divider-dot span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  flex-shrink: 0;
  margin: 0 12px;
}

/* ================================
   SCROLLBAR
================================ */
::-webkit-scrollbar {
  width: 5px;
}

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

::-webkit-scrollbar-thumb {
  background: rgba(200, 150, 44, 0.2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 150, 44, 0.4);
}

/* ================================
   ANIMATIONS
================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-48px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(48px);
  }

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.88);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slowRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-gold {

  0%,
  100% {
    box-shadow: 0 0 0 0 var(--gold-glow);
    opacity: 1;
  }

  50% {
    box-shadow: 0 0 32px 8px var(--gold-glow);
    opacity: 0.5;
  }
}

@keyframes bounceY {

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

  50% {
    transform: translateY(8px);
  }
}

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

  100% {
    background-position: 200% center;
  }
}

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

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

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

@keyframes float {

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

  50% {
    transform: translateY(-12px);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.6;
    filter: blur(20px);
  }

  50% {
    opacity: 1;
    filter: blur(28px);
  }
}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* Screen-reader only */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.34s;
}

.reveal-delay-5 {
  transition-delay: 0.44s;
}

.reveal-delay-6 {
  transition-delay: 0.56s;
}
/* ======================================================================
   SOURCE: src/components/Navbar.css
====================================================================== */
/* ================================
   NAVBAR
================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  transition: background var(--transition-med), backdrop-filter var(--transition-med), border-color var(--transition-med);
  border-bottom: 1px solid transparent;
  /* Visually imperceptible backdrop-filter, present from first paint (not
     just once .scrolled is added). Without this, some mobile browsers
     render the animated/masked hero content beneath this fixed navbar at
     a low-quality raster scale until something forces a GPU compositing
     recompute — which otherwise only happens once the real blur(16px)
     below kicks in past the scroll threshold. Confirmed via before/after
     screenshots: page renders blurry until scrolled without this line. */
  backdrop-filter: blur(0.1px);
  -webkit-backdrop-filter: blur(0.1px);
}

.navbar.scrolled {
  background: rgba(5, 10, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-subtle);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 2;
}

.navbar-logo-img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
}

.navbar-emblem-img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar-logo-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.navbar-logo-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.navbar-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.navbar-nav a:hover {
  color: var(--text-primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

/* Language toggle in navbar */
.navbar-lang-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.navbar-lang-btn {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  line-height: 1;
}

.navbar-lang-btn:hover {
  color: var(--text-primary);
}

.navbar-lang-btn.active {
  background: var(--gold-primary);
  color: #1a0f00;
  box-shadow: 0 2px 10px rgba(200, 150, 44, 0.35);
}

.navbar-mobile-lang {
  display: none;
  justify-content: center;
  padding-top: 8px;
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  background: var(--gold-primary);
  color: #1a0f00;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.navbar-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.navbar-mobile-cta {
  display: none;
}

/* Mobile hamburger */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.navbar-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.navbar-backdrop {
  display: none;
}

@media (max-width: 900px) {
  .navbar {
    padding: 0 20px;
    height: 60px;
  }

  .navbar-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    transform: none;
    background: rgba(5, 10, 26, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 24px 20px 32px;
    gap: 18px;
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    z-index: 100;
    animation: fadeIn 0.25s ease-out;
  }

  .navbar-nav.open {
    display: flex;
  }

  .navbar-nav li {
    width: 100%;
    text-align: center;
  }

  .navbar-nav a {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.14em;
    padding: 10px 0;
    display: block;
    color: var(--text-primary);
  }

  .navbar-mobile-lang {
    display: flex;
    justify-content: center;
    padding: 8px 0;
  }

  .navbar-mobile-cta {
    display: block;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar-cta-mobile {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 280px;
    padding: 12px 24px !important;
    background: var(--gold-primary) !important;
    color: #1a0f00 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    border-radius: 999px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(200, 150, 44, 0.25);
  }

  .navbar-hamburger {
    display: flex;
  }

  .navbar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    top: 60px;
    background: rgba(0, 0, 0, 0.65);
    z-index: 95;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
}

@media (max-width: 600px) {
  .navbar-actions .navbar-cta {
    display: none;
  }
}


/* ======================================================================
   SOURCE: src/components/HeroSection.css
====================================================================== */
/* ================================
   HERO SECTION
================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 0 24px;
  padding-top: 96px;
}

/* Starfield background */
.hero-starfield {
  position: absolute;
  inset: 0;
  background-color: #050a1a;
  background-image:
    radial-gradient(ellipse 90% 70% at 50% 15%, #0d264a 0%, transparent 65%),
    radial-gradient(ellipse 110% 90% at 50% 60%, #050a1a 45%, #050a1a 100%);
  z-index: 0;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, #000 0%, #000 65%, rgba(0, 0, 0, 0.3) 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 65%, rgba(0, 0, 0, 0.3) 85%, transparent 100%);
}

.hero-star-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Layer 1 - dense forward traveling stars */
.hero-starfield::before {
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255, 255, 255, 1) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 12%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(2.2px 2.2px at 28% 68%, rgba(255, 255, 255, 0.95) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 72% 28%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 18% 82%, rgba(255, 255, 255, 0.85) 0%, transparent 100%),
    radial-gradient(2.5px 2.5px at 92% 62%, rgba(255, 255, 255, 1) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 38% 38%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 62% 78%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
    radial-gradient(1.8px 1.8px at 48% 12%, rgba(255, 255, 255, 0.95) 0%, transparent 100%),
    radial-gradient(2px 2px at 8% 48%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 82% 42%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 22% 92%, rgba(255, 255, 255, 0.75) 0%, transparent 100%),
    radial-gradient(1.2px 1.2px at 78% 68%, rgba(255, 255, 255, 0.85) 0%, transparent 100%),
    radial-gradient(2.2px 2.2px at 42% 4%, rgba(255, 255, 255, 1) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 96% 22%, rgba(255, 255, 255, 0.85) 0%, transparent 100%),
    radial-gradient(1px 1px at 4% 32%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 52% 52%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 32% 62%, rgba(255, 255, 255, 0.85) 0%, transparent 100%),
    radial-gradient(2px 2px at 58% 32%, rgba(255, 255, 255, 1) 0%, transparent 100%),
    radial-gradient(1px 1px at 86% 86%, rgba(255, 255, 255, 0.75) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 46% 88%, rgba(255, 255, 255, 0.85) 0%, transparent 100%),
    radial-gradient(1.2px 1.2px at 14% 64%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
    radial-gradient(2px 2px at 68% 18%, rgba(255, 255, 255, 0.95) 0%, transparent 100%),
    radial-gradient(1px 1px at 84% 54%, rgba(255, 255, 255, 0.85) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 36% 22%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 45%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
    radial-gradient(1.8px 1.8px at 65% 58%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1.2px 1.2px at 88% 36%, rgba(255, 255, 255, 0.85) 0%, transparent 100%),
    radial-gradient(2px 2px at 26% 12%, rgba(255, 255, 255, 1) 0%, transparent 100%),
    radial-gradient(1.2px 1.2px at 74% 82%, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
  animation: spaceWarp 11s cubic-bezier(0.1, 0.5, 0.4, 1) infinite;
}

/* Layer 2 */
.hero-starfield::after {
  background-image:
    radial-gradient(1.8px 1.8px at 24% 14%, rgba(255, 255, 255, 1) 0%, transparent 100%),
    radial-gradient(1px 1px at 76% 24%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(2.2px 2.2px at 44% 74%, rgba(255, 255, 255, 0.95) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 84% 34%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 14% 74%, rgba(255, 255, 255, 0.85) 0%, transparent 100%),
    radial-gradient(2.5px 2.5px at 94% 54%, rgba(255, 255, 255, 1) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 34% 28%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 54% 84%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
    radial-gradient(1.8px 1.8px at 64% 8%, rgba(255, 255, 255, 1) 0%, transparent 100%),
    radial-gradient(2px 2px at 4% 58%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 68% 48%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 14% 88%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
    radial-gradient(1.2px 1.2px at 78% 78%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(2.2px 2.2px at 34% 4%, rgba(255, 255, 255, 1) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 88% 18%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 8% 28%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 58% 58%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 38% 68%, rgba(255, 255, 255, 0.85) 0%, transparent 100%),
    radial-gradient(2px 2px at 48% 38%, rgba(255, 255, 255, 1) 0%, transparent 100%),
    radial-gradient(1px 1px at 82% 92%, rgba(255, 255, 255, 0.75) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 28% 44%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1.2px 1.2px at 66% 86%, rgba(255, 255, 255, 0.85) 0%, transparent 100%),
    radial-gradient(2px 2px at 16% 36%, rgba(255, 255, 255, 0.95) 0%, transparent 100%),
    radial-gradient(1px 1px at 74% 64%, rgba(255, 255, 255, 0.85) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 56% 16%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 90%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
    radial-gradient(2px 2px at 82% 6%, rgba(255, 255, 255, 0.95) 0%, transparent 100%),
    radial-gradient(1.2px 1.2px at 6% 80%, rgba(255, 255, 255, 0.85) 0%, transparent 100%),
    radial-gradient(1.8px 1.8px at 90% 72%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1.2px 1.2px at 48% 66%, rgba(255, 255, 255, 0.85) 0%, transparent 100%);
  animation: spaceWarp 11s 5.5s cubic-bezier(0.1, 0.5, 0.4, 1) infinite;
}

@keyframes spaceWarp {
  0% {
    transform: scale(0.12);
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  75% {
    opacity: 0.95;
  }

  100% {
    transform: scale(3.4);
    opacity: 0;
  }
}

/* Glow behind wheel */
.hero-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 94vw);
  height: 500px;
  background: radial-gradient(ellipse 75% 45% at 50% 40%, rgba(61, 140, 220, 0.18) 0%, rgba(10, 32, 70, 0.08) 50%, transparent 75%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 45%, rgba(0, 0, 0, 0.5) 70%, transparent 92%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 45%, rgba(0, 0, 0, 0.5) 70%, transparent 92%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  margin-top: 8px;
  will-change: transform, opacity;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-title .gold-line {
  color: var(--gold-primary);
  display: block;
  /* Gold shimmer sweep */
  background: linear-gradient(90deg,
      var(--gold-primary) 0%,
      var(--gold-light) 30%,
      #ffe8a0 50%,
      var(--gold-light) 70%,
      var(--gold-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 18px;
  opacity: 0.9;
  background: rgba(200, 150, 44, 0.06);
  border: 1px solid rgba(200, 150, 44, 0.2);
  border-radius: 999px;
  padding: 6px 16px;
}

.hero-badge-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-primary);
}

.hero-description {
  font-size: clamp(13px, 1.25vw, 15px);
  line-height: 1.72;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  font-weight: 400;
}

.hero-description strong {
  color: #f1f5f9;
  font-weight: 600;
}

/* Wheel / Mandal container */
.hero-wheel-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 70%);
  width: clamp(1000px, 110vw, 1750px);
  aspect-ratio: 1 / 1;
  z-index: 2;
  pointer-events: none;
  animation: fadeIn 1.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
  mask-image: linear-gradient(to bottom,
      #000 0%,
      #000 32%,
      rgba(0, 0, 0, 0.8) 38%,
      rgba(0, 0, 0, 0.4) 46%,
      rgba(0, 0, 0, 0.1) 54%,
      transparent 60%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom,
      #000 0%,
      #000 32%,
      rgba(0, 0, 0, 0.8) 38%,
      rgba(0, 0, 0, 0.4) 46%,
      rgba(0, 0, 0, 0.1) 54%,
      transparent 60%,
      transparent 100%);
}

.hero-wheel-spinner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transform-origin: center center;
}

.hero-wheel-spinner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ================================
   REVOLVING SUN (SURYA ORBIT)
================================ */
.hero-sun-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  transform-origin: 50% 50%;
  animation: orbitSun 25s ease-in-out infinite;
  will-change: transform;
}

.hero-sun-orbit-track {
  position: absolute;
  top: 14%;
  left: 14%;
  right: 14%;
  bottom: 14%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 200, 55, 0.16);
  box-shadow: 0 0 16px rgba(255, 184, 48, 0.06), inset 0 0 16px rgba(255, 184, 48, 0.06);
}

.hero-sun {
  position: absolute;
  top: 14%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(32px, 3.2vw, 50px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  animation: sunSelfSpin 24s linear infinite;
}

.hero-sun-halo {
  position: absolute;
  width: 340%;
  height: 340%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 200, 55, 0.42) 0%,
    rgba(255, 140, 0, 0.22) 35%,
    rgba(255, 90, 0, 0.07) 60%,
    transparent 75%
  );
  filter: blur(14px);
  pointer-events: none;
  animation: haloBreath 4s ease-in-out infinite alternate;
}

.hero-sun-corona {
  position: absolute;
  width: 175%;
  height: 175%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 245, 190, 0.65) 0%,
    rgba(255, 180, 0, 0.42) 40%,
    rgba(245, 120, 0, 0.16) 70%,
    transparent 85%
  );
  filter: blur(5px);
  animation: coronaPulse 2.4s ease-in-out infinite alternate;
}

.hero-sun-rays {
  position: absolute;
  inset: -28%;
  pointer-events: none;
  animation: raysSpin 16s linear infinite;
}

.hero-sun-rays-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.85));
}

.hero-sun-core {
  position: relative;
  width: 44%;
  height: 44%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    #ffffff 0%,
    #fff8db 25%,
    #ffd54f 55%,
    #ff9800 80%,
    #e65100 100%
  );
  box-shadow:
    0 0 16px 4px rgba(255, 235, 59, 0.95),
    0 0 34px 12px rgba(255, 152, 0, 0.7),
    0 0 58px 20px rgba(230, 81, 0, 0.38),
    inset 0 0 8px #ffffff;
  z-index: 2;
}

.hero-sun-flare {
  position: absolute;
  width: 260%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 250, 220, 0.85) 50%,
    transparent 100%
  );
  filter: blur(0.5px);
  z-index: 3;
  pointer-events: none;
}

@keyframes orbitSun {
  from {
    transform: rotate(-45deg);
  }
  to {
    transform: rotate(45deg);
  }
}

@keyframes sunSelfSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes raysSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes coronaPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.75;
  }
  100% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@keyframes haloBreath {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.18);
    opacity: 1;
  }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  pointer-events: none;
  will-change: opacity;
}

.scroll-arrow {
  width: 14px;
  height: 14px;
  border-right: 1.5px solid rgba(200, 150, 44, 0.5);
  border-bottom: 1.5px solid rgba(200, 150, 44, 0.5);
  transform: rotate(45deg);
  animation: bounceY 1.6s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 0 18px;
    padding-top: 84px;
    padding-bottom: 240px;
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .hero-content {
    margin-top: 0;
    max-width: 100%;
    position: relative;
    z-index: 3;
  }

  .hero-badge {
    font-size: 9px;
    padding: 5px 12px;
    gap: 6px;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(26px, 7.5vw, 38px);
    margin-bottom: 12px;
    line-height: 1.15;
  }

  .hero-description {
    font-size: 13px;
    line-height: 1.6;
    max-width: 380px;
    padding: 0 4px;
    margin: 0 auto;
  }

  .hero-wheel-container {
    bottom: auto;
    top: 370px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(540px, 140vw, 800px);
    mask-image: linear-gradient(to bottom,
        #000 0%,
        #000 28%,
        rgba(0, 0, 0, 0.75) 42%,
        rgba(0, 0, 0, 0.25) 58%,
        transparent 72%,
        transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom,
        #000 0%,
        #000 28%,
        rgba(0, 0, 0, 0.75) 42%,
        rgba(0, 0, 0, 0.25) 58%,
        transparent 72%,
        transparent 100%);
  }

  .hero-scroll-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding-top: 76px;
    padding-bottom: 210px;
  }

  .hero-badge {
    font-size: 8px;
    padding: 4px 10px;
    gap: 5px;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: clamp(24px, 7.2vw, 32px);
    margin-bottom: 10px;
  }

  .hero-description {
    font-size: 12.5px;
    line-height: 1.58;
    max-width: 330px;
  }

  .hero-wheel-container {
    top: 340px;
    width: clamp(480px, 150vw, 660px);
  }
}
/* ======================================================================
   SOURCE: src/components/IdeaSection.css
====================================================================== */
/* ================================
   IDEA SECTION
================================ */
.idea-section {
  position: relative;
  z-index: 2;
  padding: var(--section-padding);
  text-align: center;
  overflow: hidden;
}

/* Darkens the top of the section so the "THE IDEA & THE PATENT" label
   reads clearly over the hero sun-wheel graphic bleeding through from
   above, independent of that graphic's own fade-out mask. */
.idea-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 380px;
  /* Ramps up from transparent at the very top over a short 38px band
     (so it blends smoothly with the still-sharp hero wheel graphic
     bleeding in from above, instead of a hard-edged wall of black at
     the section boundary) — short enough that it's fully resolved to
     max opacity well before the label's position on mobile (~48px).
     Holds max opacity to 55% — well past the label's position on
     desktop too, where the section's larger top padding pushes it
     further down than on mobile — then fades out before the h2. */
  background: linear-gradient(to bottom,
    rgba(5, 10, 26, 0) 0%,
    var(--bg-deep) 10%,
    var(--bg-deep) 55%,
    rgba(5, 10, 26, 0.4) 75%,
    transparent 100%
  );
  pointer-events: none;
  z-index: -1;
}

.idea-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 600;
  color: var(--text-primary);
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.1;
}

.idea-section h2 em {
  color: var(--gold-primary);
  font-style: normal;
}

.idea-description {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 80px;
  line-height: 1.78;
}

.idea-description strong {
  color: var(--text-primary);
}

.idea-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
}

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

.idea-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(64px, 8vw, 88px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  transition: filter 0.3s ease;
}

.idea-stat:hover .idea-stat-number {
  filter: drop-shadow(0 0 24px currentColor);
}

.idea-stat--vedic .idea-stat-number {
  color: var(--gold-primary);
  text-shadow: 0 0 40px rgba(200, 150, 44, 0.4);
}

.idea-stat--western .idea-stat-number {
  color: var(--teal);
  text-shadow: 0 0 40px rgba(61, 184, 200, 0.4);
}

.idea-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.idea-stat-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 180px;
  margin: 0 auto;
}

/* Center mockup */
.idea-mockup {
  width: 260px;
  flex-shrink: 0;
  position: relative;
}

.idea-mockup-glow {
  position: absolute;
  inset: -20px;
  border-radius: 32px;
  background: radial-gradient(ellipse 80% 80% at 50% 50%,
    rgba(61, 184, 200, 0.18) 0%,
    rgba(200, 150, 44, 0.08) 50%,
    transparent 75%
  );
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}

.idea-mockup img {
  width: 100%;
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 60px rgba(61, 184, 200, 0.2),
    0 24px 48px rgba(0,0,0,0.6);
  animation: float 5s ease-in-out infinite;
}

@media (max-width: 768px) {
  .idea-section {
    padding: 48px 18px;
  }

  .idea-section h2 {
    font-size: clamp(28px, 7vw, 46px);
    margin-bottom: 16px;
  }

  .idea-description {
    font-size: 14px;
    margin-bottom: 48px;
    padding: 0 8px;
  }

  .idea-comparison {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .idea-mockup {
    width: min(190px, 52vw);
    margin: 0 auto;
    order: 0;
  }

  .idea-stat--vedic {
    order: -1;
  }

  .idea-stat--western {
    order: 1;
  }

  .idea-stat-number {
    font-size: clamp(52px, 14vw, 68px);
  }

  .idea-stat-desc {
    max-width: 240px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .idea-description {
    margin-bottom: 36px;
  }

  .idea-comparison {
    gap: 28px;
  }
}


/* ======================================================================
   SOURCE: src/components/JourneySection.css
====================================================================== */
/* ================================
   JOURNEY SECTION
================================ */
.journey-section {
  padding: var(--section-padding);
  overflow: hidden;
}

.journey-section .section-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.journey-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 70px);
  color: var(--text-primary);
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.1;
}

.journey-section h2 em {
  color: var(--gold-primary);
  font-style: normal;
}

.journey-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.journey-intro {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 64px;
  line-height: 1.78;
}

/* Decorative border strip with scrolling marquee */
.journey-border-strip {
  width: 100%;
  height: 48px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(200, 150, 44, 0.1) 20%,
    rgba(200, 150, 44, 0.06) 50%,
    rgba(200, 150, 44, 0.1) 80%,
    transparent 100%
  );
  border-top: 1px solid rgba(200, 150, 44, 0.2);
  border-bottom: 1px solid rgba(200, 150, 44, 0.2);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.journey-border-strip::before {
  content: '✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦ ॐ ✦';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--gold-dim);
  letter-spacing: 0.4em;
  white-space: nowrap;
  animation: marqueeScroll 18s linear infinite;
}

@keyframes marqueeScroll {
  0%   { transform: translateY(-50%) translateX(0); }
  100% { transform: translateY(-50%) translateX(-50%); }
}

/* Installation Cards */
.journey-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.installation-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  aspect-ratio: 3 / 4.4;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #060c1d;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.installation-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(200, 150, 44, 0.12);
}

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

.installation-card:hover img {
  transform: scale(1.07);
}

.installation-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 10, 26, 0.98) 0%,
    rgba(5, 10, 26, 0.85) 42%,
    rgba(5, 10, 26, 0.35) 72%,
    rgba(5, 10, 26, 0.12) 100%
  );
  z-index: 1;
  transition: background 0.4s ease;
}

.installation-card-top {
  position: relative;
  z-index: 4;
  padding: 20px 20px 0;
  display: flex;
  justify-content: flex-start;
}

.installation-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: rgba(5, 10, 26, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 150, 44, 0.25);
}

/* Gradient spotlight (skiper90 pattern) */
.installation-card-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Gold border reveal */
.installation-card-border {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(200, 150, 44, 0.45);
  z-index: 3;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.installation-card-content {
  position: relative;
  z-index: 4;
  padding: 24px;
  text-align: left;
  background: linear-gradient(to top, rgba(5, 10, 26, 0.6) 0%, transparent 100%);
  backdrop-filter: blur(2px);
}

.installation-card-location {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.installation-card-location::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
}

.installation-card-name {
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0 0 10px;
}

.installation-card-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.68;
  margin: 0;
}

.installation-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold-light);
  position: relative;
  z-index: 5;
  transition: gap 0.2s ease, color 0.2s ease;
}

.installation-card:hover .installation-card-readmore {
  gap: 9px;
  color: var(--gold-primary);
}

@media (max-width: 900px) {
  .journey-cards {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
  }

  .journey-intro {
    font-size: 14px;
    margin-bottom: 44px;
    padding: 0 8px;
  }

  .installation-card {
    min-height: 440px;
  }
}

@media (max-width: 480px) {
  .journey-section h2 {
    font-size: clamp(28px, 7vw, 46px);
  }

  .journey-border-strip {
    height: 36px;
    margin-bottom: 28px;
  }

  .installation-card {
    min-height: 390px;
    border-radius: 16px;
  }

  .installation-card-top {
    padding: 14px 14px 0;
  }

  .installation-card-badge {
    font-size: 9px;
    padding: 5px 10px;
  }

  .installation-card-content {
    padding: 16px;
  }

  .installation-card-name {
    font-size: 19px;
    margin-bottom: 6px;
  }

  .installation-card-desc {
    font-size: 12.5px;
    line-height: 1.58;
  }
}



/* ======================================================================
   SOURCE: src/components/ProductsSection.css
====================================================================== */
/* ================================
   COMMISSION SECTION
================================ */
.commission-section {
  padding: 80px 24px;
  text-align: center;
}

.commission-section .section-inner {
  max-width: 720px;
  margin: 0 auto;
}

.commission-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.commission-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.78;
  max-width: 540px;
  margin: 0 auto 36px;
}

/* ================================
   PRODUCTS SECTION
================================ */
.products-section {
  padding: var(--section-padding);
  text-align: center;
}

.products-section .section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.products-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 70px);
  color: var(--text-primary);
  max-width: 560px;
  margin: 0 auto 16px;
  line-height: 1.1;
}

.products-section h2 em {
  color: var(--gold-primary);
  font-style: normal;
  display: block;
}

.products-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.product-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: default;
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 10, 26, 0.96) 0%,
    rgba(5, 10, 26, 0.35) 45%,
    rgba(5, 10, 26, 0.05) 100%
  );
  z-index: 1;
}

/* Gradient spotlight (skiper90) */
.product-card-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Gold border reveal */
.product-card-border {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(200, 150, 44, 0.5);
  z-index: 3;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  text-align: left;
  z-index: 4;
}

.product-card-location {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.product-card-name {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--text-primary);
}

.product-card-name-suffix {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-secondary);
}

/* Badge with pulse dot */
.product-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(5, 10, 26, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 150, 44, 0.3);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
  z-index: 4;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* Coming soon pills */
.products-coming-soon {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.coming-soon-pill {
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.coming-soon-pill:hover {
  border-color: rgba(200, 150, 44, 0.2);
  color: var(--text-secondary);
}

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

@media (max-width: 768px) {
  .commission-section {
    padding: 50px 18px;
  }

  .commission-description {
    font-size: 14px;
    margin-bottom: 28px;
    padding: 0 4px;
  }

  .products-section h2 {
    font-size: clamp(28px, 7vw, 46px);
  }

  .products-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .products-toggle {
    margin-bottom: 32px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    gap: 16px;
  }

  .product-card {
    aspect-ratio: 3 / 3.8;
    min-height: 360px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .products-toggle button {
    padding: 6px 14px;
    font-size: 11px;
  }

  .product-card-name {
    font-size: 17px;
  }

  .coming-soon-pill {
    padding: 5px 14px;
    font-size: 11px;
  }
}


/* ======================================================================
   SOURCE: src/components/TimelineSection.css
====================================================================== */
/* ================================
   TIMELINE SECTION
================================ */
.timeline-section {
  padding: var(--section-padding);
  /* No overflow:hidden here — it would break position:sticky on the
     .timeline-scroll-container descendant used for the pin-and-scroll
     effect. The track's horizontal overflow is contained by that
     container's own overflow:hidden instead. */
}

.timeline-section .section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Pin-and-scroll: this wrapper is given extra height by JS (viewport
   height + however far the track needs to travel horizontally), so
   while the user scrolls down through that height, .timeline-scroll-container
   stays pinned in view and .timeline-track is translated left in lockstep
   with vertical scroll progress. See initTimelineAutoScroll() in main.js. */
.timeline-pin-wrapper {
  position: relative;
}

.timeline-scroll-container {
  position: sticky;
  top: 80px;
  width: 100%;
  overflow: hidden;
  padding-bottom: 12px;
}

.timeline-track {
  display: flex;
  gap: 0;
  width: max-content;
  padding: 0 48px;
  position: relative;
  will-change: transform;
}

/* Connecting line wrapper for animation */
.timeline-line-wrapper {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.timeline-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(200, 150, 44, 0.4) 5%,
    rgba(200, 150, 44, 0.4) 95%,
    transparent 100%
  );
}

.timeline-item {
  width: 320px;
  flex-shrink: 0;
  padding: 0 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Dot on timeline */
.timeline-dot-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 0 0 rgba(200, 150, 44, 0.4);
  transition: box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  box-shadow: 0 0 16px 4px rgba(200, 150, 44, 0.3);
}

/* Timeline card */
.timeline-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 26px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(8px);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.timeline-item:hover .timeline-card {
  background: rgba(255, 255, 255, 0.055);
}

.timeline-date {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 14px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 12px;
}

.timeline-location {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.timeline-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-top: auto;
}

.timeline-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold-light);
  transition: gap 0.2s ease, color 0.2s ease;
}

.timeline-card:hover .timeline-readmore {
  gap: 9px;
  color: var(--gold-primary);
}

@media (max-width: 768px) {
  .timeline-track {
    padding: 0 16px;
  }

  .timeline-item {
    width: 270px;
    padding: 0 8px;
  }

  .timeline-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .timeline-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .timeline-desc {
    font-size: 12.5px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .timeline-item {
    width: 245px;
  }

  .timeline-card {
    padding: 16px 14px;
  }
}


/* ======================================================================
   SOURCE: src/components/AppSection.css
====================================================================== */
/* ================================
   APP SECTION
================================ */
.app-section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.app-section .section-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.app-content {
  padding-right: 12px;
}

.app-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 70px);
  color: var(--text-primary);
  line-height: 1.12;
  margin-bottom: 20px;
}

.app-section h2 em {
  color: var(--gold-primary);
  font-style: normal;
  display: block;
}

.app-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

/* Feature grid 2x2 */
.app-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.app-feature-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.app-feature-card:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(200, 150, 44, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.app-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(200, 150, 44, 0.1);
  border: 1px solid rgba(200, 150, 44, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.app-feature-text h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px;
}

.app-feature-text p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Download buttons */
.app-download-wrap {
  margin-top: 8px;
}

.app-download-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.app-download-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: linear-gradient(180deg, rgba(200, 150, 44, 0.18), rgba(200, 150, 44, 0.08));
  color: var(--gold-light);
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid rgba(200, 150, 44, 0.5);
  text-decoration: none;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(200, 150, 44, 0.12);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.app-store-btn:hover {
  background: linear-gradient(180deg, rgba(200, 150, 44, 0.3), rgba(200, 150, 44, 0.16));
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 28px rgba(200, 150, 44, 0.3);
}

.app-store-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Phone mockups — Overlapping & Enlarged */
.app-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  min-height: 560px;
}

.app-phones-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(61, 184, 200, 0.14) 0%, rgba(200, 150, 44, 0.08) 45%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.app-phone-wrapper {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.2s ease;
}

.app-phone-left {
  z-index: 1;
  margin-right: -70px;
  transform: rotate(-3deg);
}

.app-phone-right {
  z-index: 2;
  margin-top: 60px;
  transform: rotate(3deg);
}

.app-phone-wrapper:hover {
  z-index: 4;
}

.app-phone-img {
  width: clamp(250px, 25vw, 310px);
  height: auto;
  border-radius: 36px;
  display: block;
  filter:
    drop-shadow(0 32px 64px rgba(0, 0, 0, 0.85))
    drop-shadow(0 0 40px rgba(61, 184, 200, 0.18));
  transition: filter 0.4s ease, transform 0.4s ease;
}

.app-phone-wrapper:hover .app-phone-img {
  filter:
    drop-shadow(0 40px 80px rgba(0, 0, 0, 0.95))
    drop-shadow(0 0 55px rgba(200, 150, 44, 0.3));
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .app-section .section-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .app-content {
    padding-right: 0;
  }

  .app-phones {
    min-height: 440px;
  }

  .app-phone-img {
    width: clamp(200px, 42vw, 260px);
  }

  .app-phone-left {
    margin-right: -45px;
  }
}

@media (max-width: 640px) {
  .app-section h2 {
    font-size: clamp(28px, 7vw, 46px);
  }

  .app-description {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .app-features {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }

  .app-phones {
    min-height: 360px;
    padding: 10px 0;
  }

  .app-phones-glow {
    width: 340px;
    height: 340px;
  }

  .app-phone-img {
    width: 175px;
    border-radius: 24px;
  }

  .app-phone-left {
    margin-right: -28px;
  }

  .app-phone-right {
    margin-top: 32px;
  }

  .app-download-btns {
    flex-direction: row;
  }

  .app-store-btn {
    flex: 1;
    justify-content: center;
    min-width: 130px;
    padding: 11px 16px;
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .app-phone-img {
    width: 150px;
  }

  .app-phone-left {
    margin-right: -20px;
  }

  .app-download-btns {
    flex-direction: column;
  }
}



/* ======================================================================
   SOURCE: src/components/Footer.css
====================================================================== */
/* ================================
   NEWSLETTER SECTION
================================ */
.newsletter-section {
  padding: 0 24px 0;
  background: transparent;
}

.newsletter-section .section-inner {
  max-width: 920px;
  margin: 0 auto;
}

.newsletter-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(200, 150, 44, 0.22);
  border-radius: 20px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 0 60px rgba(200, 150, 44, 0.06), 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.newsletter-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200, 150, 44, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
  text-align: left;
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 240px;
}

.newsletter-text strong {
  color: var(--text-primary);
}

.newsletter-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  padding: 18px 44px;
  background: var(--gold-primary);
  color: #1a0f00;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.newsletter-order-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 150, 44, 0.35);
}

@media (max-width: 768px) {
  .newsletter-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 18px;
  }

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

  .newsletter-order-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ================================
   FOOTER
================================ */
.footer {
  padding: 80px 24px 40px;
  background: linear-gradient(180deg, #050a1a 0%, #030710 100%);
  border-top: 1px solid var(--border-subtle);
  margin-top: 64px;
}


.footer .section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  text-decoration: none;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.footer-brand-sub {
  font-size: 10px;
  color: var(--gold-primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 240px;
}

/* Link columns */
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--text-primary);
}

.footer-col ul li.coming-soon a {
  color: var(--text-muted);
  cursor: default;
  pointer-events: none;
}

/* Social connect column */
.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer-social-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.footer-social-link:hover .footer-social-icon {
  opacity: 1;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.footer-copyright {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-locations {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-locations span {
  color: var(--border-subtle);
  margin: 0 6px;
}

@media (max-width: 768px) {
  .newsletter-card {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
    gap: 16px;
    border-radius: 16px;
  }

  .newsletter-text {
    text-align: center;
    font-size: 15px;
  }

  .newsletter-order-btn {
    width: 100%;
    justify-content: center;
  }

  .footer {
    padding: 48px 18px 28px;
    margin-top: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 24px;
  }
}


/* ======================================================================
   STATIC-SITE ADDENDUM
   (vanilla-JS/CSS equivalents for behavior that was framer-motion/JSX-driven
   in the React source — hover-revealed spotlight overlays, on-load hero
   entrance animation, and small structural fixes for the hand-written DOM)
====================================================================== */

/* Gradient spotlight + gold border overlays: hidden by default, shown on
   hover (the React version toggled this via inline style + mouse state;
   here the position is still driven by JS mousemove, but visibility is
   pure CSS :hover for simplicity). */
.installation-card-gradient,
.product-card-gradient {
  opacity: 0;
}

.installation-card-border,
.product-card-border {
  opacity: 0;
}

.installation-card:hover .installation-card-gradient,
.installation-card:hover .installation-card-border {
  opacity: 1;
}

.product-card:hover .product-card-gradient,
.product-card:hover .product-card-border {
  opacity: 1;
}

/* Hero content on-load entrance (framer-motion initial/animate ported to
   plain CSS keyframes — fadeInUp is already defined above in the index.css
   section of this file). */
#hero-badge {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

#hero-title {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

#hero-description {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

#hero-content {
  will-change: transform, opacity;
}

/* Timeline connecting line: JS sets transform:scaleX(0) inline on load,
   then to scaleX(1) once in view — this just establishes the transform-box
   so the scale animates from the left edge. */
#timeline-line {
  transform-origin: 0% 50%;
}

/* Product/installation card mouse-tracking gradient overlay needs no extra
   rule beyond what's already ported (position/inset/z-index/pointer-events
   are inherited from the JourneySection.css / ProductsSection.css blocks
   above); this addendum only supplies the default-hidden + :hover toggle. */
