/* ============================================
   WEYRICH ENTERPRISES — FUTURISTIC REDESIGN
   Inspired by: SpaceX, Linear, Stripe, Tesla, 
   Lusion, Nothing, NVIDIA, Vercel, Genesis, Apple
   ============================================ */

@import url('./base.css');

/* === FONTS === */
/* Clash Display for hero/display — bold, creative, agency feel */
/* Satoshi for body — clean, modern, tech */

/* === DESIGN TOKENS === */
:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(2.5rem,   0.5rem  + 5.5vw,  6rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Dark Futuristic Palette */
  --color-bg:          #050508;
  --color-surface:     #0a0a10;
  --color-surface-2:   #111118;
  --color-surface-3:   #18182a;
  --color-border:      rgba(255, 255, 255, 0.08);
  --color-border-glow: rgba(0, 200, 255, 0.15);
  --color-text:        #e8e8ef;
  --color-text-muted:  #7a7a8e;
  --color-text-faint:  #4a4a5e;
  --color-accent:      #00c8ff;
  --color-accent-2:    #7b61ff;
  --color-accent-glow: rgba(0, 200, 255, 0.4);
  --color-gradient-1:  #00c8ff;
  --color-gradient-2:  #7b61ff;
  --color-gradient-3:  #ff3366;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-glow: 0 0 40px rgba(0, 200, 255, 0.1);
  --shadow-glow-strong: 0 0 80px rgba(0, 200, 255, 0.2);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Font families */
  --font-display: 'Clash Display', 'Inter', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
}

/* === GLOBAL STYLES === */
body {
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}
a:hover {
  color: #fff;
}

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

/* === GRID BACKGROUND === */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, black 0%, transparent 100%);
}

/* === HEADER / NAV === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 5, 8, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out);
}
.header--hidden { transform: translateY(-100%); }
.header--scrolled { background: rgba(5, 5, 8, 0.9); }

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.header__logo-icon {
  width: auto;
  height: 32px;
  object-fit: contain;
  position: relative;
  top: -2px;
}
.header__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1.1;
}
.header__logo-sub {
  font-size: 0.65em;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--color-text-muted);
}

.header__nav {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}
.header__nav a {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition-interactive);
  position: relative;
}
.header__nav a:hover { color: #fff; }
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s var(--ease-out);
}
.header__nav a:hover::after { width: 100%; }

.header__cta {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-accent);
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  transition: all var(--transition-interactive);
  border: 1px solid transparent;
}
.header__cta:hover {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* Mobile menu */
.header__menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
  z-index: 101;
}
.header__menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: all 0.3s var(--ease-out);
}
.header__menu-btn.active span:first-child { transform: translateY(3.75px) rotate(45deg); }
.header__menu-btn.active span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* Full-screen mobile nav — oversized type inspired by reference */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-bg);
  flex-direction: column;
  justify-content: space-between;
  padding: calc(80px + var(--space-8)) var(--space-6) var(--space-8) var(--space-8);
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-nav.active {
  display: flex;
}

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
  text-decoration: none;
  display: block;
  padding: var(--space-2) var(--space-4);
  transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  transform: translateY(20px);
  opacity: 0;
}
.mobile-nav.active .mobile-nav__link {
  opacity: 1;
  transform: translateY(0);
  transition: color 0.3s var(--ease-out),
              transform 0.5s var(--ease-out) calc(var(--i) * 60ms),
              opacity 0.5s var(--ease-out) calc(var(--i) * 60ms);
}
.mobile-nav__link:hover,
.mobile-nav__link:active {
  color: var(--color-accent);
}

.mobile-nav__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}
.mobile-nav__phone {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-accent);
  text-decoration: none;
}
.mobile-nav__tagline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-32) var(--space-8) var(--space-16);
  text-align: center;
  overflow: hidden;
}

/* Animated gradient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: orb-float 8s ease-in-out infinite alternate;
}
.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-gradient-1), transparent 70%);
  top: -15%;
  right: -10%;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-gradient-2), transparent 70%);
  bottom: -10%;
  left: -10%;
  animation-delay: -3s;
}
.hero__orb--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-gradient-3), transparent 70%);
  top: 40%;
  left: 50%;
  animation-delay: -5s;
}

@keyframes orb-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -40px) scale(1.15); }
}

/* Video background for hero */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(5,5,8,0.3) 0%, 
    rgba(5,5,8,0.1) 40%, 
    rgba(5,5,8,0.8) 85%, 
    rgba(5,5,8,1) 100%);
}

/* Bloom hero — full-bleed flower video */
.hero--bloom {
  padding-top: 0;
  padding-bottom: 0;
  background: #000;
}
.hero__video-wrap--full video {
  opacity: 1;
}
.hero__video-overlay--bloom {
  background: linear-gradient(180deg, 
    rgba(0,0,0,0.35) 0%, 
    rgba(0,0,0,0.0) 30%, 
    rgba(0,0,0,0.0) 55%, 
    rgba(0,0,0,0.5) 80%, 
    rgba(5,5,8,1) 100%);
}
.hero__title--bloom {
  font-size: var(--text-hero);
  text-shadow: 0 2px 60px rgba(0,0,0,0.8), 0 0 120px rgba(0,0,0,0.5);
}
.hero--bloom .hero__subtitle {
  text-shadow: 0 1px 30px rgba(0,0,0,0.9), 0 0 80px rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.85);
}
.hero--bloom .hero__content {
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,0,0,0.45) 0%, transparent 70%);
  padding: var(--space-12);
  border-radius: var(--radius-xl);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-border-glow);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-8);
  background: rgba(0, 200, 255, 0.05);
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--color-accent-glow); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px transparent; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__title .accent {
  background: linear-gradient(135deg, var(--color-gradient-1), var(--color-gradient-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}
.btn--primary {
  background: var(--color-accent);
  color: var(--color-bg);
  border: 1px solid var(--color-accent);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.2);
}
.btn--primary:hover {
  background: #fff;
  color: var(--color-bg);
  border-color: #fff;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

.btn__arrow {
  transition: transform 0.3s var(--ease-out);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-faint);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-accent), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* === SECTION SHARED === */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(var(--space-16), 10vw, var(--space-32)) var(--space-8);
}
.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}
.section__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  display: block;
}
.section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-4);
  color: #fff;
}
.section__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* === MANIFESTO / PHILOSOPHY SECTION === */
.manifesto {
  padding: clamp(var(--space-16), 12vw, var(--space-32)) var(--space-8);
  text-align: center;
  position: relative;
}
.manifesto__inner {
  max-width: 900px;
  margin: 0 auto;
}
.manifesto__text {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text-muted);
}
.manifesto__text .highlight {
  color: #fff;
}

/* === PILLARS / VALUES === */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: var(--content-wide);
  margin: 0 auto;
}
.pillar {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.pillar:hover::before { opacity: 1; }
.pillar:hover {
  border-color: var(--color-border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.pillar__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-6);
  color: var(--color-accent);
}
.pillar__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: #fff;
}
.pillar__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* === PRODUCTS SECTION === */
.products {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-bottom: clamp(var(--space-16), 8vw, var(--space-32));
  position: relative;
}
.product-card:nth-child(even) { direction: rtl; }
.product-card:nth-child(even) > * { direction: ltr; }

.product-card__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.product-card__visual video,
.product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, transparent 60%, rgba(0, 200, 255, 0.05) 100%);
  pointer-events: none;
}
.product-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  cursor: pointer;
}
.product-card__visual:hover .product-card__play { opacity: 1; }
.product-card__play svg {
  width: 64px;
  height: 64px;
  color: #fff;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
}

.product-card__info {
  padding: var(--space-4);
}
.product-card__badge {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  display: inline-block;
}
.product-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-4);
  line-height: 1.2;
}
.product-card__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}
.product-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-8);
}
.product-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-2) 0;
}
.product-card__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* Product card logo variant */
.product-card__visual--logo {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  border: none;
}
.product-card__visual--logo img {
  width: 80%;
  height: auto;
  object-fit: contain;
}

/* Rosary Experience logo card */
.product-card__visual--rosary {
  background: #0a0a12;
}

/* Flipped product card — info left, logo right */
.product-card--flipped {
  direction: ltr !important;
}
/* Normal product card — always logo left, info right */
.product-card--normal {
  direction: ltr !important;
}

/* Decrease logo card */
.product-card__visual--decrease {
  background: #0a0a0a;
}

/* Purgatory Project logo card */
.product-card__visual--purgatory {
  background: #0a0a0a;
}

/* EyeBuy logo card */
.product-card__visual--eyebuy {
  background: #050510;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 200, 255, 0.15);
  padding: var(--space-12) var(--space-10);
  aspect-ratio: auto;
  transition: all 0.4s var(--ease-out);
}
.product-card__visual--eyebuy:hover {
  border-color: rgba(0, 120, 255, 0.3);
  box-shadow: 0 0 40px rgba(0, 120, 255, 0.1);
}
.eyebuy-logo-img {
  width: 60%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
}

/* === STATS BAR === */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-12) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.stat {
  text-align: center;
}
.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat__label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* === VIDEO SHOWCASE === */
.showcase {
  position: relative;
  padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-8);
}
.showcase__video-container {
  max-width: var(--content-wide);
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--color-border);
  cursor: pointer;
}
.showcase__video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase__video-container::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
  opacity: 0.3;
}
.showcase__play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  background: rgba(5, 5, 8, 0.4);
  transition: background 0.4s var(--ease-out);
}
.showcase__play-btn:hover { background: rgba(5, 5, 8, 0.2); }
.showcase__play-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s var(--ease-out);
}
.showcase__play-btn:hover .showcase__play-icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.1);
}
.showcase__play-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
  margin-left: 3px;
}
.showcase__play-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* === TICKER / SCROLLING TEXT === */
.ticker {
  overflow: hidden;
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.ticker__track {
  display: flex;
  gap: var(--space-12);
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker__item {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text-faint);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.ticker__item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.5;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === CTA SECTION === */
.cta-section {
  text-align: center;
  padding: clamp(var(--space-16), 12vw, var(--space-32)) var(--space-8);
  position: relative;
}
.cta-section__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-section__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  color: #fff;
}
.cta-section__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

/* Glow ring behind CTA */
.cta-section__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-16) var(--space-8) var(--space-8);
}
.footer__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.footer__brand-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 300px;
}
.footer__col-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.footer__links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__links li a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-interactive);
}
.footer__links li a:hover { color: #fff; }

.footer__bottom {
  max-width: var(--content-wide);
  margin: var(--space-12) auto 0;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.footer__phone {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.footer__phone a {
  color: var(--color-accent);
}

/* === SCROLL REVEAL ANIMATIONS === */
.reveal {
  opacity: 1;
}
@supports (animation-timeline: scroll()) {
  .reveal {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
}
@keyframes reveal-fade { to { opacity: 1; } }

.reveal-up {
  opacity: 1;
}
@supports (animation-timeline: scroll()) {
  .reveal-up {
    clip-path: inset(100% 0 0 0);
    animation: reveal-clip linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
}
@keyframes reveal-clip { to { clip-path: inset(0 0 0 0); } }

/* === CAREERS === */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: var(--content-wide);
  margin: 0 auto;
}
.career-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
}
.career-card:hover {
  border-color: var(--color-border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.career-card__type {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.career-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-3);
}
.career-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  flex: 1;
}
.career-card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap 0.3s var(--ease-out);
}
.career-card__link:hover { gap: var(--space-3); color: #fff; }

/* === CONTACT FORM === */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.contact-form__field {
  margin-bottom: var(--space-4);
}
.contact-form__field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: var(--text-base);
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.1);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--color-text-faint);
}
.contact-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a7a8e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-4);
}
.contact-form__status {
  text-align: center;
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  min-height: 24px;
}
.contact-form__status.success { color: #4ecdc4; }
.contact-form__status.error { color: #ff6b6b; }
.contact-form__alt {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  text-align: center;
}
.contact-form__alt p {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  margin-bottom: var(--space-2);
  max-width: none;
}
.contact-form__phone {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .pillars {
    grid-template-columns: 1fr 1fr;
  }
  .product-card {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .product-card:nth-child(even) { direction: ltr; }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 900px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__menu-btn { display: flex; }
  .careers-grid { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }

  .pillars {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .stats {
    grid-template-columns: 1fr;
  }
}

/* === CUSTOM CURSOR GLOW (desktop only) === */
@media (hover: hover) {
  .cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
  }
  .cursor-glow.active { opacity: 1; }
}
