/* ==========================================================================
   KEELER 3 — Awwwards-level OLED Dark Premium Theme
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  --bg: #050505;
  --bg-alt: #0A0A0A;
  --bg-ocean: #0B1A28;
  --bg-dark: #050505;
  --bg-card: rgba(255,255,255,0.03);
  --text: #F0F0F0;
  --text-dim: #9AA3B0;
  --text-muted: #5A6677;
  --ocean: #0A5B8A;
  --ocean-light: #1B8EC4;
  --teal: #FF6B1A;
  --highlight: #FF6B1A;
  --accent: #D4651E;
  --font-display: 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --nav-h: 72px;
  --section-pad: clamp(100px, 14vh, 200px);
  --container: 1400px;
  --gutter: clamp(24px, 5vw, 80px);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --glass-bg: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --border-subtle: rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.1);
}

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

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

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

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}

.eyebrow--teal {
  color: var(--highlight);
  text-shadow: 0 0 12px rgba(255, 107, 26, 0.4);
}

.eyebrow--light {
  color: rgba(255,255,255,0.35);
}

.headline-xl {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.headline-lg {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text);
}

.headline-md {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.body-text {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 720px;
}

.body-dim {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.75;
  color: var(--text-muted);
}

.text--teal {
  color: var(--highlight);
  text-shadow: 0 0 15px rgba(255, 107, 26, 0.5);
}

/* --------------------------------------------------------------------------
   PILLS
   -------------------------------------------------------------------------- */
.pill {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 107, 26, 0.1);
  color: var(--teal);
}

.pill--outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-dim);
}

.pill--glow {
  box-shadow: 0 0 20px rgba(255, 107, 26, 0.15), 0 0 6px rgba(255, 107, 26, 0.1);
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.3s ease;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
}

.btn--primary {
  background: var(--teal);
  color: #fff;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 26, 0.3), 0 2px 8px rgba(255, 107, 26, 0.2);
}

.btn--white {
  background: #fff;
  color: #0A0A0A;
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15), 0 2px 8px rgba(255, 255, 255, 0.1);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   PRELOADER
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
}

.preloader__bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.preloader__progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--ocean-light));
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}

/* --------------------------------------------------------------------------
   NAV — ULTRA MODERN FLOATING PILL
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  transition: background 0.5s var(--ease-out),
              backdrop-filter 0.5s var(--ease-out),
              border 0.5s var(--ease-out),
              border-radius 0.5s var(--ease-out),
              margin 0.5s var(--ease-out),
              left 0.5s var(--ease-out),
              right 0.5s var(--ease-out),
              width 0.5s var(--ease-out);
}

.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  margin: 12px auto;
  left: var(--gutter);
  right: var(--gutter);
  width: auto;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.nav__logo-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  filter: none;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 22px !important;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff !important;
  color: var(--text);
}

.nav__center {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 18px !important;
  font-weight: 600;
  color: #ffffff !important;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: var(--text);
}

.nav__cta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
  background: var(--teal);
  color: #fff;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 107, 26, 0.3);
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
  transform-origin: center;
}

.nav__burger.is-open span:first-child {
  transform: rotate(45deg) translate(2.5px, 2.5px);
}

.nav__burger.is-open span:last-child {
  transform: rotate(-45deg) translate(2.5px, -2.5px);
}

/* --------------------------------------------------------------------------
   NAV OVERLAY (Mobile)
   -------------------------------------------------------------------------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

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

.nav-overlay__link {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--text);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.3s ease;
}

.nav-overlay__link:hover {
  color: var(--teal);
}

.nav-overlay.is-open .nav-overlay__link {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.is-open .nav-overlay__link:nth-child(1) { transition-delay: 0.05s; }
.nav-overlay.is-open .nav-overlay__link:nth-child(2) { transition-delay: 0.1s; }
.nav-overlay.is-open .nav-overlay__link:nth-child(3) { transition-delay: 0.15s; }
.nav-overlay.is-open .nav-overlay__link:nth-child(4) { transition-delay: 0.2s; }
.nav-overlay.is-open .nav-overlay__link:nth-child(5) { transition-delay: 0.25s; }
.nav-overlay.is-open .nav-overlay__link:nth-child(6) { transition-delay: 0.3s; }
.nav-overlay.is-open .nav-overlay__link:nth-child(7) { transition-delay: 0.35s; }

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transform-origin: top left;
  transition: transform 1.2s var(--ease-out);
}

.hero.is-loaded .hero__bg img,
.hero.is-loaded .hero__bg-video {
  transform: scale(1.1);
  transform-origin: top left;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(5, 5, 5, 0.35) 0%, transparent 18%),
    linear-gradient(to top, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0.1) 45%, transparent 65%);
}

.hero__content {
  position: absolute;
  top: clamp(120px, 18vh, 220px);
  bottom: clamp(60px, 8vh, 100px);
  left: clamp(20px, 3vw, 40px);
  right: clamp(20px, 3vw, 40px);
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 0;
}

.hero__brand {
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.8vw, 82px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.4);
}

.hero__bottom {
  opacity: 0;
  transform: translateY(20px);
  border: none;
  padding-left: 0;
  margin-left: auto;
  align-self: end;
  max-width: 500px;
}

.hero__desc {
  font-family: var(--font-body);
  font-size: 20px !important;
  line-height: 1.75;
  color: #ffffff !important;
  margin: 0 0 28px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8), 0 0 4px rgba(0,0,0,0.5);
}

.hero__cta {
  display: inline-flex;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__scroll-hint span {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.hero__scroll-circle {
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  position: relative;
}

.hero__scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--teal);
  border-radius: 4px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s var(--ease-in-out) infinite;
}

@keyframes scrollDot {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(16px);
    opacity: 0.3;
  }
}

/* --------------------------------------------------------------------------
   TIMELINE — FULL-WIDTH HORIZONTAL WITH IMAGES
   -------------------------------------------------------------------------- */
.timeline {
  background: var(--bg-ocean);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.timeline__header {
  text-align: center;
  margin-bottom: clamp(60px, 8vh, 100px);
  padding: 0 var(--gutter);
  opacity: 0;
  transform: translateY(30px);
}

.timeline__strip {
  position: relative;
  padding: 0 clamp(24px, 3vw, 48px);
}

/* Horizontal line spanning full width */
.timeline__line {
  position: absolute;
  top: 0;
  left: clamp(24px, 3vw, 48px);
  right: clamp(24px, 3vw, 48px);
  height: 2px;
  background: rgba(255, 107, 26, 0.1);
  z-index: 1;
}

.timeline__line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(255, 107, 26, 0.15), var(--teal));
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255, 107, 26, 0.2);
}

.timeline__line-arrow {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  opacity: 0.5;
  width: 18px;
  height: 18px;
}

.timeline__line-arrow svg {
  width: 100%;
  height: 100%;
}

/* Milestones — 5 items, edge to edge */
.timeline__milestones {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.5vw, 24px);
  padding-top: 0;
}

/* Each milestone */
.timeline__milestone {
  position: relative;
  padding-top: 24px;
  opacity: 0;
  transform: translateY(20px);
}

/* Dot on the horizontal line */
.timeline__milestone-dot {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-ocean);
  border: 2px solid var(--teal);
  z-index: 2;
}

.timeline__milestone-dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 26, 0.15);
}

.timeline__milestone-dot--active {
  background: var(--highlight);
  box-shadow: 0 0 20px rgba(255, 107, 26, 0.5), 0 0 6px rgba(255, 107, 26, 0.3);
}

.timeline__milestone-dot--active::before {
  border-color: rgba(255, 107, 26, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

/* Image */
.timeline__milestone-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  margin-bottom: 16px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.timeline__milestone:hover .timeline__milestone-img {
  border-color: rgba(255, 107, 26, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.timeline__milestone-img--glow {
  border-color: var(--highlight);
  box-shadow:
    0 0 20px rgba(255, 107, 26, 0.2),
    0 8px 40px rgba(255, 107, 26, 0.1),
    inset 0 0 30px rgba(255, 107, 26, 0.03);
  position: relative;
}

.timeline__milestone-img--tall {
  aspect-ratio: 3 / 4;
}

.timeline__milestone-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 8px;
  display: block;
  opacity: 0.8;
}

.timeline__milestone-img--glow::after {
  content: 'PATENTED';
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  background: var(--highlight);
  padding: 3px 10px;
  border-radius: 2px;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.timeline__milestone-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

/* Date */
.timeline__milestone-date {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 700;
  color: #5BC0EB;
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 12px rgba(91, 192, 235, 0.5), 0 0 30px rgba(91, 192, 235, 0.2);
}

.timeline__milestone--active .timeline__milestone-date {
  color: var(--highlight);
  opacity: 0.9;
  text-shadow: 0 0 20px rgba(255, 107, 26, 0.3);
}

.timeline__milestone--active .timeline__milestone-title {
  color: #fff;
}

/* Title & text */
.timeline__milestone-title {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.timeline__milestone-text {
  font-size: clamp(12px, 0.8vw, 13px);
  line-height: 1.6;
  color: var(--text-dim);
}

.timeline__milestone .pill {
  margin-top: 10px;
}

.timeline__hero-fin {
  padding: 0 var(--gutter);
  margin-top: -8vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 20%;
}

.timeline__hero-fin-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--highlight);
  text-align: center;
  margin-bottom: clamp(20px, 3vh, 40px);
  text-shadow:
    0 0 15px rgba(255, 107, 26, 0.6),
    0 0 40px rgba(255, 107, 26, 0.3),
    0 0 80px rgba(255, 107, 26, 0.15);
}

.text--glow-orange {
  color: var(--highlight);
  text-shadow:
    0 0 20px rgba(255, 107, 26, 0.8),
    0 0 50px rgba(255, 107, 26, 0.4),
    0 0 100px rgba(255, 107, 26, 0.2);
}

.timeline__hero-fin-img {
  display: block;
  max-width: clamp(500px, 55vw, 850px);
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: clamp(16px, 2vw, 28px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(255, 107, 26, 0.06);
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

@keyframes neonPulse {
  0% {
    opacity: 0.45;
    text-shadow:
      0 0 10px rgba(255, 107, 26, 0.8),
      0 0 20px rgba(255, 107, 26, 0.6),
      0 0 40px rgba(255, 107, 26, 0.4),
      0 0 80px rgba(255, 107, 26, 0.25),
      0 0 120px rgba(255, 107, 26, 0.15);
  }
  100% {
    opacity: 0.65;
    text-shadow:
      0 0 10px rgba(255, 107, 26, 1),
      0 0 25px rgba(255, 107, 26, 0.8),
      0 0 50px rgba(255, 107, 26, 0.6),
      0 0 100px rgba(255, 107, 26, 0.4),
      0 0 150px rgba(255, 107, 26, 0.25),
      0 0 250px rgba(255, 107, 26, 0.12);
  }
}

/* --------------------------------------------------------------------------
   SCIENCE — FULL-WIDTH IMMERSIVE
   -------------------------------------------------------------------------- */
.science {
  position: relative;
  background: var(--bg-ocean);
  padding: 0 0 var(--section-pad);
  overflow: hidden;
}

/* Section intro — centered title */
.science__intro {
  text-align: center;
  padding: var(--section-pad) clamp(32px, 5vw, 80px) clamp(40px, 5vw, 64px);
  opacity: 0;
  transform: translateY(30px);
}

.science__cinema-pill {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 16px;
  background: rgba(255, 107, 26, 0.12);
  border: 1px solid rgba(255, 107, 26, 0.25);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--highlight);
}

.text--gradient-orange {
  background: linear-gradient(90deg, var(--highlight), #ffb596);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Showcase: big image left + stacked cards right */
.science__showcase {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(16px, 2vw, 24px);
  padding: 0 clamp(32px, 5vw, 80px);
  align-items: start;
}

.science__showcase-img {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.science__showcase-img img {
  width: 100%;
  height: auto;
  display: block;
}

.science__showcase-img-overlay {
  display: none;
}

.science__showcase-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Naval simulation — compact split layout */
.science__sim {
  display: grid;
  grid-template-columns: 1.8fr 0.8fr;
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(60px, 8vh, 100px) clamp(32px, 5vw, 80px);
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
}

.science__sim-video-wrap {
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  border-radius: var(--radius);
}

.science__sim-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.science__sim-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.science__sim-eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

.science__sim-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}

.science__sim-text {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 480px;
}

.science__sim-stats {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  margin-top: 8px;
}

.science__sim-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.science__sim-stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  color: var(--highlight);
  line-height: 1;
  text-shadow:
    0 0 10px rgba(255, 107, 26, 0.6),
    0 0 30px rgba(255, 107, 26, 0.3);
}

.science__sim-stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* Corner bracket decorators (21st.dev inspired) */
.corner {
  position: absolute;
  width: 12px;
  height: 12px;
  z-index: 3;
}

.corner--tl {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--highlight);
  border-left: 2px solid var(--highlight);
}

.corner--tr {
  top: -1px;
  right: -1px;
  border-top: 2px solid var(--highlight);
  border-right: 2px solid var(--highlight);
}

.corner--bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid var(--highlight);
  border-left: 2px solid var(--highlight);
}

.corner--br {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--highlight);
  border-right: 2px solid var(--highlight);
}

/* Duo card base (used inside showcase) */

.science__duo-card {
  position: relative;
  padding: clamp(20px, 2vw, 32px);
  background: rgba(27, 32, 37, 0.6);
  border: 1px solid rgba(90, 65, 55, 0.1);
  border-radius: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(20px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.science__duo-card:hover {
  border-color: rgba(255, 107, 26, 0.2);
  box-shadow: 0 0 40px rgba(255, 107, 26, 0.06), 0 20px 60px rgba(0,0,0,0.3);
}

.science__duo-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  color: var(--highlight);
  opacity: 0.55;
  line-height: 1;
  text-shadow:
    0 0 10px rgba(255, 107, 26, 0.9),
    0 0 20px rgba(255, 107, 26, 0.7),
    0 0 40px rgba(255, 107, 26, 0.5),
    0 0 80px rgba(255, 107, 26, 0.35),
    0 0 120px rgba(255, 107, 26, 0.2),
    0 0 200px rgba(255, 107, 26, 0.1);
  margin-bottom: 8px;
  animation: neonPulse 3s ease-in-out infinite alternate;
}

/* Stitch-style data tag in top-right */
.science__duo-datatag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
}

/* Icon row: icon box + title inline */
.science__duo-icon-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.science__duo-icon-box {
  padding: 10px;
  background: rgba(255, 107, 26, 0.08);
  border: 1px solid rgba(255, 107, 26, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.science__duo-title {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.science__duo-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 10px;
  background: var(--highlight);
  color: #1a0800;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.science__duo-subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--text-dim);
  font-weight: 300;
  margin-bottom: 12px;
}

.text--white {
  color: #fff;
  font-weight: 500;
}

.science__duo-text {
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 500px;
  margin-bottom: 12px;
}

/* Stitch-style gradient metric line at card bottom */
.science__duo-metric {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
}

.science__duo-metric-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(114, 216, 200, 0.4), transparent);
}

.science__duo-metric-label {
  font-family: var(--font-display);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
  white-space: nowrap;
}

/* Video badges (reused in sim section) */

.science__video-badges {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
}

.science__video-badge {
  padding: 4px 10px;
  background: rgba(10, 15, 20, 0.8);
  font-family: var(--font-display);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.08);
}

.science__video-badge--live {
  color: var(--teal);
  border-color: rgba(255, 107, 26, 0.2);
}

/* Stitch-style quote block — centered with glow */
.science__quote-block {
  position: relative;
  padding: clamp(60px, 8vh, 120px) clamp(32px, 5vw, 80px);
  overflow: hidden;
}

.science__quote-glow {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 256px;
  height: 256px;
  background: rgba(255, 107, 26, 0.04);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.science__quote-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.science__quote-mark {
  margin: 0 auto 24px;
  display: block;
  opacity: 0.3;
}

.science__quote-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #fff;
  font-style: italic;
}

.science__quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.science__quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.5);
}

.science__quote-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--highlight);
}

.science__quote-role {
  font-family: var(--font-display);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-top: 2px;
}

/* Performance matrix — Stitch-inspired */
.science__perf-matrix {
  margin-top: 24px;
  padding: 20px;
  background: rgba(23, 28, 33, 0.8);
  border: 1px solid rgba(255,255,255,0.06);
}

.science__perf-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.science__perf-verified {
  color: var(--teal);
}

.science__perf-bar-wrap {
  margin-bottom: 10px;
}

.science__perf-bar {
  height: 4px;
  width: 100%;
  background: rgba(48, 53, 59, 1);
  margin-bottom: 4px;
}

.science__perf-bar-fill {
  height: 100%;
  transition: width 1.5s ease-out;
}

.science__perf-bar-fill--orange {
  background: var(--highlight);
  box-shadow: 0 0 12px rgba(255, 107, 26, 0.3);
}

.science__perf-bar-fill--teal {
  background: var(--teal);
  box-shadow: 0 0 12px rgba(114, 216, 200, 0.2);
}

.science__perf-bar-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* Testimonial — full width grid */
.science__testimonial {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin: clamp(80px, 12vh, 140px) 0 0;
  padding: 0 clamp(32px, 5vw, 80px);
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
}

.science__testimonial-video {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.science__testimonial-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.science__testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.science__testimonial-content .headline-md {
  color: var(--text);
}

.science__testimonial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   PHYSICS
   -------------------------------------------------------------------------- */
.physics {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.physics__header {
  text-align: center;
  margin-bottom: clamp(60px, 8vh, 120px);
  padding: 0 var(--gutter);
  opacity: 0;
  transform: translateY(30px);
}

.physics__stages {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 12vh, 140px);
  padding: 0 var(--gutter);
}

.physics__stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
}

.physics__stage--reverse {
  direction: rtl;
}

.physics__stage--reverse > * {
  direction: ltr;
}

.physics__stage-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.physics__stage-visual img,
.physics__stage-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.physics__stage-visual:hover img {
  transform: scale(1.03);
}

.physics__stage-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.physics__stage-num {
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 120px);
  font-weight: 700;
  color: var(--highlight);
  opacity: 0.55;
  line-height: 1;
  text-shadow:
    0 0 10px rgba(255, 107, 26, 0.9),
    0 0 20px rgba(255, 107, 26, 0.7),
    0 0 40px rgba(255, 107, 26, 0.5),
    0 0 80px rgba(255, 107, 26, 0.35),
    0 0 120px rgba(255, 107, 26, 0.2),
    0 0 200px rgba(255, 107, 26, 0.1);
  animation: neonPulse 3s ease-in-out infinite alternate;
}

.physics__stage-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  transform-origin: left;
}

/* --------------------------------------------------------------------------
   SECTION-QUOTE
   -------------------------------------------------------------------------- */
.section-quote {
  display: flex;
  gap: 20px;
  max-width: 800px;
  margin: clamp(60px, 8vh, 100px) auto 0;
  padding: clamp(32px, 4vw, 48px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  opacity: 0;
  transform: translateY(30px);
}

.section-quote__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  overflow: hidden;
  flex-shrink: 0;
}

.section-quote__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.2vw, 20px);
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.section-quote blockquote cite {
  font-family: var(--font-display);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   CINEMA — SPLIT LAYOUT
   -------------------------------------------------------------------------- */
.cinema {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.cinema__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(48px, 6vh, 80px);
  padding: 0 var(--gutter);
  opacity: 0;
  transform: translateY(30px);
}

.cinema__split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 64px);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  align-items: start;
}

.cinema__video-col {
  position: relative;
}

.cinema__video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.cinema__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.cinema__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), background 0.3s ease, border-color 0.3s ease;
}

.cinema__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
}

.cinema__play svg {
  width: 16px;
  height: 18px;
  fill: #fff;
  margin-left: 3px;
}

.cinema__info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
}

.cinema__quote {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 8px;
}

.cinema__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  overflow: hidden;
  flex-shrink: 0;
}

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

.cinema__quote blockquote p {
  font-size: clamp(15px, 1.1vw, 17px);
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 8px;
}

.cinema__quote blockquote cite {
  font-family: var(--font-display);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.cinema__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* --------------------------------------------------------------------------
   PRODUCT — IMMERSIVE EDGE-TO-EDGE
   -------------------------------------------------------------------------- */
.product {
  background: var(--bg-ocean);
  padding: 0 0 var(--section-pad);
}

/* Cinematic full-bleed hero */
.product__cinematic {
  position: relative;
  width: 100%;
  height: clamp(420px, 55vh, 700px);
  overflow: hidden;
}

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

.product__cinematic-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg-ocean) 0%, rgba(11, 26, 40, 0.4) 40%, transparent 70%),
    linear-gradient(to right, rgba(11, 26, 40, 0.7) 0%, transparent 50%);
  pointer-events: none;
}

.product__cinematic-content {
  position: absolute;
  bottom: clamp(40px, 6vh, 80px);
  left: clamp(32px, 5vw, 80px);
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
}

.product__cinematic-content .headline-xl {
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* Bento grid — asymmetric card layout */
.product__bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
  padding: clamp(24px, 3vw, 48px);
  max-width: 1600px;
  margin: 0 auto;
}

.product__card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s var(--ease-out);
}

.product__card:hover {
  border-color: rgba(255, 107, 26, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(255, 107, 26, 0.04), 0 20px 60px rgba(0, 0, 0, 0.25);
}

.product__card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.product__card--highlight {
  border-color: rgba(255, 107, 26, 0.15);
}

.product__card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product__card--wide .product__card-img {
  aspect-ratio: auto;
  min-height: 280px;
}

.product__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.product__card:hover .product__card-img img {
  transform: scale(1.04);
}

.product__card-body {
  padding: clamp(20px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.product__card-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  color: var(--highlight);
  opacity: 0.55;
  line-height: 1;
  text-shadow:
    0 0 10px rgba(255, 107, 26, 0.9),
    0 0 20px rgba(255, 107, 26, 0.7),
    0 0 40px rgba(255, 107, 26, 0.5),
    0 0 80px rgba(255, 107, 26, 0.35),
    0 0 120px rgba(255, 107, 26, 0.2),
    0 0 200px rgba(255, 107, 26, 0.1);
  animation: neonPulse 3s ease-in-out infinite alternate;
}

.product__card-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.product__card-text {
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 480px;
}

.product__card-body .pill {
  align-self: flex-start;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   SHOWCASE — SPLIT LAYOUT
   -------------------------------------------------------------------------- */
.showcase {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.showcase__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vh, 80px);
  padding: 0 var(--gutter);
  opacity: 0;
  transform: translateY(30px);
}

.showcase__split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  align-items: center;
}

.showcase__info {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}

.showcase__info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.5vw, 20px);
}

.showcase__info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: clamp(20px, 2.5vw, 32px);
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
}

.showcase__info-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.showcase__info-card--main {
  grid-column: 1 / -1;
}

.showcase__info-card--main .body-text {
  max-width: 100%;
}

.showcase__info-card--quote {
  grid-column: 1 / -1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.showcase__info-card--quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(14px, 1vw, 16px);
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 8px;
}

.showcase__info-card--quote blockquote cite {
  font-family: var(--font-display);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.showcase__info-card--wide {
  grid-column: 1 / -1;
}

.showcase__info-stat {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  display: block;
  margin-bottom: 4px;
}

.showcase__info-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-bottom: 8px;
}

.showcase__info-value {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.showcase__info-desc {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
  line-height: 1.5;
}

.showcase__viewer {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-alt);
  min-height: 400px;
}

.showcase__viewer canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.showcase__viewer-controls {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
}

.showcase__viewer-btn {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  color: var(--text-dim);
  transition: color 0.3s ease, background 0.3s ease;
}

.showcase__mobile {
  display: none;
}

.showcase__model-viewer {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
  --poster-color: transparent;
}

.showcase__viewer-btn:hover,
.showcase__viewer-btn.is-active {
  color: #fff;
  background: var(--teal);
}

/* --------------------------------------------------------------------------
   TEAM — CINEMATIC FULL-BLEED
   -------------------------------------------------------------------------- */
.team {
  background: var(--bg);
  padding: var(--section-pad) 0 0;
}

.team__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(48px, 6vh, 80px);
  padding: 0 var(--gutter);
  opacity: 0;
  transform: translateY(30px);
}

.team__header-desc {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 600px;
  margin: 20px auto 0;
}

.team__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.team__member {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.team__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s var(--ease-out), filter 0.6s ease;
  filter: grayscale(30%);
}

.team__member:hover .team__photo {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.team__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.95) 0%,
    rgba(5, 5, 5, 0.6) 30%,
    rgba(5, 5, 5, 0.05) 55%,
    transparent 70%
  );
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.team__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(20px, 3vw, 40px);
  z-index: 2;
}

.team__name {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.team__role {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--highlight);
  text-shadow:
    0 0 10px rgba(255, 107, 26, 0.6),
    0 0 30px rgba(255, 107, 26, 0.3);
  margin-bottom: 10px;
}

.team__bio {
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
}

/* --------------------------------------------------------------------------
   KEELER FAMILY — COMING SOON MERCH
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   FAMILY SECTION — Stitch-Generated Premium Redesign
   -------------------------------------------------------------------------- */
.family {
  background: var(--bg);
  padding: clamp(120px, 16vh, 220px) 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}

.family__ambient {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

/* Header — Stitch editorial split layout */
.family__header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 64px);
  max-width: var(--container);
  margin: 0 auto clamp(56px, 8vh, 100px);
  padding: 0 var(--gutter);
  opacity: 0;
  transform: translateY(30px);
}

.family__header-top {
  flex: 1;
}

.family__header-tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.family__header-tag-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--teal);
}

.family__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
}

.family__header-aside {
  max-width: 280px;
  flex-shrink: 0;
}

.family__header-desc {
  font-size: clamp(13px, 0.9vw, 15px);
  line-height: 1.7;
  color: var(--text-dim);
  font-weight: 300;
}

/* Product cards grid — Stitch glass card pattern */
.family__showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 24px);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.family__card {
  position: relative;
  aspect-ratio: 3 / 4;
  background: rgba(28, 27, 27, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.5vw, 32px);
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: translateY(40px);
  overflow: hidden;
}

.family__card:hover {
  border-color: rgba(255, 107, 26, 0.3);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

/* HUD brackets (Stitch pattern) */
.family__card-bracket {
  position: absolute;
  width: 12px;
  height: 12px;
  z-index: 2;
}
.family__card-bracket--tl { top: 0; left: 0; border-top: 1px solid var(--teal); border-left: 1px solid var(--teal); }
.family__card-bracket--br { bottom: 0; right: 0; border-bottom: 1px solid var(--teal); border-right: 1px solid var(--teal); }

/* Card top — number + badge */
.family__card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: clamp(16px, 2vw, 32px);
  position: relative;
  z-index: 2;
}

.family__card-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  transition: color 0.5s ease;
}

.family__card:hover .family__card-num {
  color: rgba(255, 107, 26, 0.2);
}

.family__card-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 26, 0.15);
  border: 1px solid rgba(255, 107, 26, 0.35);
  padding: 6px 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 16px rgba(255, 107, 26, 0.15), inset 0 0 12px rgba(255, 107, 26, 0.05);
}

.family__card-dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 6px var(--teal);
  animation: familyPulse 2s ease-in-out infinite;
}

@keyframes familyPulse {
  0%, 100% { opacity: 0.5; box-shadow: 0 0 4px var(--teal); }
  50% { opacity: 1; box-shadow: 0 0 12px 3px rgba(255, 107, 26, 0.5); }
}

.family__card-badge-text {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  text-shadow: 0 0 8px rgba(255, 107, 26, 0.3);
}

/* Card visual — product image (Stitch AI-generated) */
.family__card-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.family__card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.06) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.7s ease;
}

.family__card:hover .family__card-glow {
  opacity: 1;
}

.family__card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  transition: transform 0.7s var(--ease-out);
  transform: scale(0.95);
}

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

/* Card bottom — name + meta */
.family__card-bottom {
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.family__card-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.family__card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.family__card-spec {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.family__card-arrow {
  color: var(--teal);
  opacity: 0.6;
  transition: opacity 0.4s ease, transform 0.4s var(--ease-out);
}

.family__card:hover .family__card-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

/* Hover progress bar at bottom (Stitch pattern) */
.family__card-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--teal);
  width: 0;
  transition: width 0.7s var(--ease-out);
}

.family__card:hover .family__card-progress {
  width: 100%;
}

/* Footer — Stitch editorial status */
.family__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: clamp(48px, 6vh, 80px) auto 0;
  padding: clamp(24px, 3vw, 40px) var(--gutter) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.family__footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.family__footer-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

.family__footer-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.family__footer-status-text {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.family__footer-ping {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: footerPing 1.5s ease-in-out infinite;
}

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

/* Newsletter form */
.family__newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.family__newsletter-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

.family__newsletter-form {
  display: flex;
  gap: 0;
  height: 48px;
}

.family__newsletter-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  padding: 0 20px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.family__newsletter-input-wrap:focus-within {
  border-color: var(--teal);
  background: rgba(255, 107, 26, 0.04);
}

.family__newsletter-icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.family__newsletter-input {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  width: 220px;
  height: 100%;
}

.family__newsletter-input::placeholder {
  color: var(--text-muted);
}

.family__newsletter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.family__newsletter-btn:hover {
  background: rgba(255, 107, 26, 0.8);
  box-shadow: 0 0 20px rgba(255, 107, 26, 0.3);
}

.family__newsletter-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Video inside product card */
.product__card-img--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Glow button */
.btn--glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn--glow:hover {
  border-color: var(--teal);
  box-shadow: 0 0 24px rgba(255, 107, 26, 0.15), inset 0 0 24px rgba(255, 107, 26, 0.05);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.btn--outline:hover {
  border-color: var(--teal);
  background: rgba(255, 107, 26, 0.08);
}

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta__video-wrap {
  position: absolute;
  inset: 0;
}

.cta__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.5) 0%, rgba(5, 5, 5, 0.8) 100%);
}

/* Split: glass form left + CTA right */
.cta__split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  width: 100%;
  max-width: var(--container);
  padding: clamp(60px, 8vh, 120px) var(--gutter);
  margin: 0 auto;
}

.cta__content {
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.cta__quote {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 600px;
  margin: 24px 0 32px;
  text-align: left;
}

.cta__quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  object-fit: cover;
}

.cta__quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(14px, 1vw, 16px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 8px;
}

.cta__quote blockquote cite {
  font-family: var(--font-display);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
}

.cta__compatibility {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 32px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.cta__btn {
  margin-top: 8px;
}

.cta__email {
  font-size: 14px;
  color: var(--teal);
  margin-top: 24px;
  transition: color 0.3s ease;
}

.cta__email:hover {
  color: var(--ocean-light);
}

/* --------------------------------------------------------------------------
   GLASS CONTACT FORM (inside CTA)
   -------------------------------------------------------------------------- */
.contact__glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: clamp(28px, 3vw, 40px);
}

.contact__glass-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.contact__glass-sub {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__field {
  display: flex;
  flex-direction: column;
}

.contact__input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.contact__input::placeholder {
  color: var(--text-muted);
}

.contact__input:focus {
  border-color: var(--highlight);
  box-shadow: 0 0 0 1px rgba(255, 107, 26, 0.15), 0 0 20px rgba(255, 107, 26, 0.06);
  background: rgba(255,255,255,0.07);
}

.contact__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%239AA3B0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact__select option {
  background: #0a0f14;
  color: var(--text);
}

.contact__textarea {
  resize: vertical;
  min-height: 90px;
}

.contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--highlight);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: stretch;
  margin-top: 4px;
}

.contact__submit:hover {
  background: #ff8a4c;
  box-shadow: 0 0 30px rgba(255, 107, 26, 0.3);
  transform: translateY(-1px);
}

.contact__submit:active {
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
  padding: clamp(40px, 5vh, 60px) var(--gutter);
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: var(--text-dim);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer__social a:hover {
  color: var(--teal);
}

.footer__social svg {
  width: 20px;
  height: 20px;
}

.footer__bottom {
  max-width: var(--container);
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--text);
}

/* --------------------------------------------------------------------------
   RESPONSIVE — 1024px
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(20px, 3vw, 40px);
  }

  .hero__title {
    font-size: clamp(36px, 6vw, 72px);
  }

  .team__strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .family__showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline__hero-fin {
    padding-right: 10%;
  }

  .timeline__milestones {
    grid-template-columns: repeat(4, minmax(200px, 1fr));
  }
}

/* --------------------------------------------------------------------------
   RESPONSIVE — 768px
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --section-pad: clamp(60px, 10vh, 120px);
    --nav-h: 64px;
  }

  .nav__center {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .nav.is-scrolled {
    left: 16px;
    right: 16px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    top: auto;
    bottom: clamp(40px, 6vh, 80px);
    padding: 0 20px;
    gap: 20px;
  }

  .hero__title {
    font-size: clamp(28px, 7vw, 48px);
  }

  .hero__bottom {
    border: none;
    padding-left: 0;
    margin-left: 0;
    max-width: 100%;
    align-self: auto;
  }

  .hero__desc {
    font-size: 15px !important;
  }

  .timeline__hero-fin {
    padding-right: 0;
    margin-top: -4vh;
  }

  .timeline__hero-fin-title {
    font-size: clamp(22px, 5vw, 32px);
  }

  .timeline__hero-fin-img {
    max-width: 100%;
  }

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

  .timeline__milestone-img {
    aspect-ratio: 4/3;
  }

  .timeline__milestone-img--tall {
    aspect-ratio: 4/3;
  }

  .section-quote {
    flex-direction: column;
    gap: 16px;
  }

  .showcase__model-viewer {
    height: 300px;
  }

  .product__cinematic {
    min-height: 40vh;
  }

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

  .family__header-aside {
    max-width: 100%;
  }

  .family__showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .family__card {
    aspect-ratio: auto;
    min-height: 400px;
  }

  .family__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .family__newsletter {
    align-items: flex-start;
    width: 100%;
  }

  .family__newsletter-form {
    width: 100%;
    flex-direction: column;
    height: auto;
    gap: 8px;
  }

  .family__newsletter-input-wrap {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
    height: 48px;
    width: 100%;
  }

  .family__newsletter-input {
    width: 100%;
  }

  .family__newsletter-btn {
    border-radius: var(--radius-pill);
    height: 48px;
    justify-content: center;
  }

  .science__showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .science__showcase-img {
    aspect-ratio: 16 / 9;
  }

  .science__showcase-cards {
    padding-left: 0;
    padding-top: 16px;
  }

  .science__sim {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta__split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta__content {
    text-align: center;
  }

  .cta__quote {
    margin: 24px auto 32px;
  }

  .science__testimonial {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .physics__stage--reverse {
    direction: ltr;
  }

  .cinema__split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .product__card--wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .timeline__milestones {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .showcase__viewer {
    display: none;
  }

  .showcase__mobile {
    display: block;
  }

  .showcase__model-viewer {
    height: 350px;
  }

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

  .team__strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__member {
    aspect-ratio: 2 / 3;
  }

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

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

@media (max-width: 480px) {
  .hero__content {
    bottom: clamp(30px, 5vh, 60px);
    padding: 0 16px;
    gap: 16px;
  }

  .hero__title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .hero__desc {
    font-size: 14px !important;
  }

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

  .family__title {
    font-size: clamp(32px, 10vw, 52px);
  }

  .family__card {
    aspect-ratio: auto;
    min-height: 320px;
  }

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

  .timeline__hero-fin-title {
    font-size: clamp(18px, 5vw, 26px);
  }

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

  .team__member {
    aspect-ratio: 3/4;
  }

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

  .showcase__model-viewer {
    height: 250px;
  }

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

  .product__card-title {
    font-size: clamp(18px, 4vw, 24px);
  }

  .nav__logo-text {
    font-size: 16px !important;
  }

  .section-quote {
    padding: 20px;
  }

  .cta__headline {
    font-size: clamp(28px, 7vw, 40px);
  }

  .contact__glass {
    padding: 24px 16px;
  }

  .footer__social {
    gap: 16px;
  }
}

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

  .hero__bg img {
    transform: none !important;
  }

  .timeline__header,
  .timeline__card,
  .science__header,
  .science__hero-media,
  .science__principles,
  .science__testimonial,
  .physics__header,
  .physics__stage,
  .section-quote,
  .cinema__header,
  .cinema__video-wrap,
  .cinema__info-col,
  .product__header,
  .product__card,
  .showcase__header,
  .team__header,
  .team__member,
  .cta__content,
  .hero__brand,
  .hero__title,
  .hero__bottom {
    opacity: 1 !important;
    transform: none !important;
  }
}

*:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

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