/* ============================================================
   PLYRA — Minimalist Monochrome CAD Design System
   Inspired by Plasticity / High-Precision CAD Aesthetic
   ============================================================ */

:root {
  /* Deep Monochrome Canvas */
  --base: #060608;
  --surface: #0B0B0F;
  --surface-2: #121218;
  --surface-3: #1A1A22;
  --hover: #1E1E26;
  
  /* Hairline Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.04);
  --border-strong: rgba(255, 255, 255, 0.18);
  --separator: rgba(255, 255, 255, 0.06);

  /* Clean Typography (Strict White & Neutral Grays) */
  --text: #FFFFFF;
  --text-2: #94949C;
  --text-disabled: #5A5A62;
  --text-inverse: #060608;

  /* Technical Sémantics (CAD Lines Only) */
  --cad-blue: #3E54FF;
  --cad-pink: #EC4899;
  --cad-gold: #D4A83F;

  /* Radii */
  --r-compact: 6px;
  --r-standard: 10px;
  --r-large: 14px;
  --r-xl: 20px;

  /* Bento Uniform Gap */
  --bento-gap: 20px;

  /* Type (Geist Swiss Precision & Geist Mono CAD Typography) */
  --font: 'Geist', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Geist Mono', 'JetBrains Mono', 'Menlo', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: auto !important; 
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar { display: none; width: 0; height: 0; }
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  font-family: var(--font);
  background: var(--base);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.015em;
  position: relative;
}

::selection { background: #FFFFFF; color: #060608; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-wide { width: 100%; max-width: 1360px; margin: 0 auto; padding: 0 24px; }

.orbs { display: none; }

/* Hero Section */
.hero {
  padding: 145px 0 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: transparent;
}

/* Background Video Container */
.hero-video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: contrast(1.08) brightness(0.96);
}

.hero-video-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 28%, rgba(6, 6, 8, 0.05) 0%, rgba(6, 6, 8, 0.48) 55%, rgba(6, 6, 8, 0.92) 85%, #060608 100%),
              linear-gradient(180deg, transparent 55%, #060608 100%);
  pointer-events: none;
}

/* Hero Typography & CTA */
.hero-title {
  font-size: clamp(46px, 7.5vw, 84px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  color: var(--text, #FFFFFF);
  font-family: var(--font);
}

.hero-subtitle {
  font-size: clamp(16px, 1.9vw, 19.5px);
  color: var(--text-2, #A1A7B5);
  line-height: 1.55;
  max-width: 660px;
  margin: 0 auto 32px;
  font-family: var(--font);
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Large Liquid Metal Chrome CTA Button in Hero */
.btn-metal-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 28px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 999px;
  background: transparent !important;
  color: #FFFFFF !important;
  text-decoration: none;
  border: none !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease;
  cursor: pointer;
}

.btn-metal-hero::before {
  content: '';
  position: absolute;
  inset: -150%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(255, 255, 255, 0.08) 35deg,
    rgba(255, 255, 255, 0.95) 75deg,
    #FFFFFF 90deg,
    rgba(215, 220, 230, 0.95) 105deg,
    transparent 145deg,
    rgba(255, 255, 255, 0.08) 215deg,
    rgba(255, 255, 255, 0.95) 255deg,
    #FFFFFF 270deg,
    rgba(215, 220, 230, 0.95) 285deg,
    transparent 325deg
  );
  animation: liquidBorderRotate 4.5s linear infinite;
  z-index: -2;
}

.btn-metal-hero::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: 999px;
  background: rgba(10, 11, 15, 0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
  transition: background 0.22s ease;
}

.btn-metal-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 24px rgba(255, 255, 255, 0.2) !important;
}

.btn-metal-hero:hover::after {
  background: rgba(255, 255, 255, 0.12);
}

.btn-metal-hero span, .btn-metal-hero svg {
  position: relative;
  z-index: 1;
}

.hero-acp-note {
  text-align: center;
  margin-top: 14px;
  font-family: var(--font);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--text-disabled, #6C7280);
}

.hero-spotlight {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 680px;
  background: radial-gradient(ellipse 70% 50% at 50% 15%, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}


/* Dynamic Spotlight Border Reflection */
.spotlight {
  position: relative;
}

.spotlight::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(340px circle at var(--mx, -500px) var(--my, -500px), rgba(255, 255, 255, 0.35), transparent 65%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
  z-index: 2;
}

.spotlight:hover::before {
  opacity: 1;
}

/* Scroll progress */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: #FFFFFF; z-index: 200; transition: width 80ms linear; }

/* Floating Navbar Capsule (Frosted Glass Aesthetic - Expanded) */
.nav-wrap {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 100; width: calc(100% - 36px); max-width: 1020px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: rgba(10, 10, 14, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 8px 10px 8px 24px;
  box-shadow: 
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 1px 0 rgba(0, 0, 0, 0.3),
    0 16px 36px -6px rgba(0, 0, 0, 0.85);
}
.brand { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; color: #FFFFFF; letter-spacing: -0.02em; text-decoration: none; }
.brand-logo-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: inline-block;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.brand:hover .brand-logo-img, .ff-brand-logo:hover .brand-logo-img {
  transform: scale(1.1) rotate(-3deg);
}
.brand .by {
  font-size: 11px; font-weight: 500; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.6px;
  background: rgba(255, 255, 255, 0.06); padding: 3px 8px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-size: 13.5px; color: var(--text-2); font-weight: 500;
  padding: 7px 16px; border-radius: 999px; transition: all 140ms ease;
  position: relative;
}
.nav-links a:hover { color: #FFFFFF; background: rgba(255, 255, 255, 0.06); }
.nav-links a.active {
  color: #FFFFFF; 
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 14px rgba(255, 255, 255, 0.18);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-cta .btn-sm { height: 34px; padding: 0 16px; font-size: 12.5px; }

/* Mobile Menu Toggle Button */
.btn-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-2);
  cursor: pointer;
  transition: all 160ms var(--ease);
  flex-shrink: 0;
  padding: 0;
}
.btn-mobile-toggle:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--border-strong);
}

.mobile-icon-close { display: none; }
.mobile-icon-open { display: block; }
.nav-wrap.mobile-open .mobile-icon-close { display: block; }
.nav-wrap.mobile-open .mobile-icon-open { display: none; }

/* Mobile Drawer Popover */
.mobile-drawer {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: rgba(12, 12, 16, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.85);
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms var(--ease);
  z-index: 99;
}

.nav-wrap.mobile-open .mobile-drawer {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.mobile-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: background 140ms ease, color 140ms ease;
  text-decoration: none;
}
.mobile-drawer-link:hover, .mobile-drawer-link.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}
.mobile-drawer-divider {
  height: 1px;
  background: var(--separator);
  margin: 6px 0;
}

@media (max-width: 768px) {
  .nav-wrap {
    top: 12px;
    width: calc(100% - 24px);
  }
  .nav-inner {
    padding: 6px 8px 6px 14px;
    gap: 8px;
    justify-content: space-between;
  }
  .brand .by {
    display: none !important;
  }
  .nav-links {
    display: none !important;
  }
  .btn-mobile-toggle {
    display: inline-flex;
  }
  .nav-cta .btn-sm {
    padding: 0 12px;
    font-size: 12px;
    height: 34px;
  }
}
@media (max-width: 420px) {
  .nav-wrap {
    width: calc(100% - 16px);
  }
  .nav-inner {
    padding: 5px 6px 5px 12px;
  }
  .brand {
    font-size: 14px;
    gap: 7px;
  }
  .brand-logo-img {
    width: 20px;
    height: 20px;
  }
}

/* Buttons — 100% Consistent Rounded Capsule System */
.btn {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font);
  font-weight: 600; font-size: 14px; padding: 0 20px; height: 40px;
  border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform 140ms var(--ease), background 140ms ease, border-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
  white-space: nowrap; text-decoration: none;
}
.btn-primary, .btn-signature, .btn-gold {
  background: #FFFFFF; color: #060608; border-color: #FFFFFF;
}
.btn-primary:hover, .btn-signature:hover, .btn-gold:hover {
  background: #E6E6EB; transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.18);
}
.btn-secondary {
  background: var(--surface-2); color: #FFFFFF; border-color: var(--border);
}
.btn-secondary:hover {
  background: var(--surface-3); border-color: var(--border-strong); transform: translateY(-2px);
}
.btn-sm { height: 32px; padding: 0 14px; font-size: 12.5px; border-radius: 999px; }
.btn-lg {
  height: 48px; padding: 0 28px; font-size: 15px; font-weight: 600; border-radius: 999px; gap: 10px;
}
.btn-lg svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn [data-lucide] { width: 16px; height: 16px; }

/* Scroll-driven Reveal Animations & Global Parallax Elements */
.reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  filter: blur(8px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal.in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0px);
}

.bento-card, .stl-studio-card, .use-card, .pricing-card, .step, .ff-watermark-text {
  will-change: transform;
}

.stagger-1 { transition-delay: 60ms !important; }
.stagger-2 { transition-delay: 120ms !important; }
.stagger-3 { transition-delay: 180ms !important; }
.stagger-4 { transition-delay: 240ms !important; }
.stagger-5 { transition-delay: 300ms !important; }
.stagger-6 { transition-delay: 360ms !important; }

/* Section Header Typography */
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 600; color: var(--text-2);
  background: var(--surface); padding: 5px 14px; border-radius: 999px;
  border: 1px solid var(--border); text-transform: uppercase; letter-spacing: 0.6px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #41D6AD;
  position: relative; display: inline-block;
}
.eyebrow .dot::after {
  content: ''; position: absolute; inset: -2px; border-radius: 50%;
  background: #41D6AD; opacity: 0.75;
  animation: radar-ping 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes radar-ping {
  0% { transform: scale(1); opacity: 0.8; }
  75%, 100% { transform: scale(2.6); opacity: 0; }
}

.section-tag { font-size: 11.5px; font-weight: 600; color: var(--text-disabled); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 12px; }
.section-title { font-size: clamp(30px, 4.8vw, 50px); font-weight: 600; letter-spacing: -0.035em; color: var(--text); line-height: 1.12; }
.section-sub { font-size: 17px; color: var(--text-2); line-height: 1.55; max-width: 620px; margin-top: 14px; }
.center { text-align: center; }

/* Stats Bar */
.stats {
  display: flex; justify-content: center; gap: 64px; margin-top: 60px;
  padding: 24px 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
  max-width: 960px; margin-left: auto; margin-right: auto;
}
.stat { text-align: center; }
.stat .num { font-size: 44px; font-weight: 700; color: var(--text); letter-spacing: -0.03em; line-height: 1; font-family: var(--font); }
.stat .num.stat-word { font-size: clamp(24px, 3vw, 36px); letter-spacing: -0.04em; }
.stat .lbl { font-size: 14px; color: var(--text-2); margin-top: 8px; }

/* Top Preloader Line */
.top-loader {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, transparent, #FFFFFF, #FFFFFF);
  z-index: 999; pointer-events: none;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  transition: width 400ms ease, opacity 300ms ease;
}

/* Animated Border Beam */
.border-beam-wrap {
  position: relative;
}
.border-beam-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--beam-angle, 0deg), transparent 0%, transparent 75%, rgba(255, 255, 255, 0.7) 90%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}
@property --beam-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes border-beam {
  0% { --beam-angle: 0deg; }
  100% { --beam-angle: 360deg; }
}
.border-beam-active::before {
  animation: border-beam 7s linear infinite;
}

/* CAD App Video in Hero (Ultra-Wide Panoramic Frame & Black Gradient Dissolve) */
.app-mockup {
  position: relative;
  z-index: 2;
  background: #07070A;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 30px 100px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  width: 100%;
  max-width: 2180px;
  margin-left: auto;
  margin-right: auto;
  will-change: transform;
}

.app-video-container {
  position: relative;
  width: 100%;
  max-height: 980px;
  overflow: hidden;
  background: #07070A;
  z-index: 2;
}

.app-video-container video {
  width: 100%;
  height: 100%;
  max-height: 980px;
  display: block;
  object-fit: cover;
  object-position: center top;
  opacity: 1 !important;
}

/* Gradient noir cinématique au-dessus de la vidéo pour fondu progressif */
.app-video-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 38%;
  background: linear-gradient(to bottom, transparent 0%, rgba(6, 6, 8, 0.75) 65%, #060608 100%);
  pointer-events: none;
  z-index: 3;
}

/* CAD Drawing Lines & Faces inside SVGs */
.mesh-face { fill: #14141A; stroke: #2E2E38; stroke-width: 1.2; }
.flat-face { fill: #14141A; stroke: #2E2E38; stroke-width: 1.2; }
.mesh-edge { stroke: #2E2E38; stroke-width: 1; }
.fold-line { stroke: var(--cad-blue); stroke-width: 1.5; stroke-dasharray: 4 3; }
.cut-edge { stroke: var(--cad-pink); stroke-width: 1.8; }
.sheet-bg { fill: #0B0B0E; stroke: var(--border); stroke-width: 1; }
.stock-rect { fill: none; stroke: var(--border-strong); stroke-width: 1; }

/* 3D-first demonstration */
.advantage-section {
  min-height: 100svh;
  padding: 140px 0 110px;
  border-top: none;
  border-bottom: none;
  background: transparent;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.advantage-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: 72px;
  align-items: end;
  max-width: 1240px;
  margin: 0 auto 48px;
}
.advantage-heading .section-title { margin-top: 18px; font-size: clamp(42px, 5.4vw, 72px); }
.advantage-heading .section-sub { margin: 0 0 7px; max-width: 520px; }
.advantage-stage {
  max-width: 1320px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: rgba(12, 12, 16, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  box-shadow: 0 34px 100px rgba(0,0,0,.55), inset 0 1px rgba(255,255,255,.05);
}
.advantage-stage-bar {
  min-height: 54px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.advantage-stage-bar > span { display: inline-flex; align-items: center; gap: 8px; }
.advantage-stage-bar > span:last-child { justify-self: end; }
.advantage-stage-bar [data-lucide] { width: 14px; height: 14px; }
.advantage-stage-status { color: var(--text) !important; }
.advantage-stage-status .dot { width: 6px; height: 6px; border-radius: 50%; background: #41D6AD; box-shadow: 0 0 12px rgba(65,214,173,.8); }
.advantage-stage-body {
  min-height: 530px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1.12fr);
  align-items: stretch;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 28px 28px;
}
.advantage-model-space,
.advantage-flat-space { position: relative; display: flex; align-items: center; justify-content: center; min-width: 0; }
.advantage-model-space { perspective: 900px; }
.advantage-model { width: min(78%, 390px); filter: drop-shadow(0 26px 30px rgba(0,0,0,.45)); transform: rotateX(4deg) rotateY(-7deg); }
.advantage-flat { width: min(84%, 470px); filter: drop-shadow(0 20px 28px rgba(0,0,0,.4)); }
.reveal.visible .advantage-model { animation: advantage-model-in 1.1s var(--ease) both; }
.reveal.visible .advantage-flat { animation: advantage-flat-in 1.15s .12s var(--ease) both; }
@keyframes advantage-model-in { from { opacity:0; transform:translate3d(-35px,22px,0) rotateX(8deg) rotateY(-18deg) scale(.92); } to { opacity:1; transform:rotateX(4deg) rotateY(-7deg) scale(1); } }
@keyframes advantage-flat-in { from { opacity:0; transform:translate3d(38px,0,0) scale(.94); } to { opacity:1; transform:none; } }
.advantage-axis { position:absolute; font-size:9px; font-weight:700; color:var(--text-disabled); }
.axis-x { left:18%; bottom:23%; color:#EC4899; }.axis-y { left:28%; bottom:14%; color:#41D6AD; }.axis-z { left:19%; bottom:34%; color:#3E54FF; }
.advantage-measure { position:absolute; padding:5px 9px; border:1px solid var(--border); border-radius:999px; background:rgba(10,10,14,.78); backdrop-filter:blur(10px); font-size:10px; color:var(--text-2); }
.measure-width { bottom:18%; left:36%; }.measure-height { right:14%; top:25%; }
.advantage-caption { position:absolute; left:24px; bottom:22px; font-size:13px; font-weight:600; color:var(--text); }
.advantage-flat-space .advantage-caption { left:auto; right:24px; }
.advantage-output-tags { position:absolute; top:23px; right:24px; display:flex; gap:6px; }
.advantage-output-tags span { padding:4px 8px; border:1px solid var(--border); border-radius:999px; background:var(--surface-2); color:var(--text-2); font-size:9px; font-weight:700; letter-spacing:.08em; }
.advantage-process { position:relative; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; }
.process-line { position:absolute; width:1px; height:62%; background:linear-gradient(transparent,var(--border-strong),transparent); }
.process-pulse { width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--text); background:var(--surface-3); border:1px solid var(--border-strong); box-shadow:0 0 30px rgba(255,255,255,.08); z-index:1; }
.process-pulse [data-lucide] { width:18px; height:18px; }
.process-pulse::after { content:""; position:absolute; width:48px; height:48px; border:1px solid rgba(255,255,255,.14); border-radius:50%; animation:process-ring 2.4s ease-out infinite; }
@keyframes process-ring { 0%{transform:scale(.8);opacity:.7} 80%,100%{transform:scale(1.8);opacity:0} }
.advantage-process small { position:relative; z-index:1; font-size:9px; letter-spacing:.12em; color:var(--text-disabled); }

/* Ownership and product trust */
.trust-section {
  padding: 120px 0;
  border-top: none;
  border-bottom: none;
  background: transparent;
  position: relative;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}
.trust-item {
  min-height: 112px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-standard);
  background: rgba(12, 12, 16, 0.60);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.trust-item > [data-lucide] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--text);
}
.trust-item div { display: flex; flex-direction: column; gap: 6px; }
.trust-item strong { font-size: 14px; color: var(--text); font-weight: 600; }
.trust-item span { font-size: 12.5px; color: var(--text-2); line-height: 1.45; }

/* Design Library & 3D Studio (Full-Screen Cinematic Stage & Zoom-Out) */
.library {
  position: relative;
  padding: 0 0 140px;
  overflow: hidden;
}

.library-cinematic-stage {
  position: relative;
  width: 100%;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 40px;
  overflow: hidden;
}

.library-bg-image {
  position: absolute;
  top: -40px;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) scale(1.22);
  width: 100%;
  max-width: 1400px;
  background-image: url('../Images/header-background.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
  opacity: 0.48;
  z-index: 0;
  mask-image: radial-gradient(ellipse 90% 75% at 50% 50%, black 30%, transparent 88%);
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 50%, black 30%, transparent 88%);
}

.library-bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(6, 6, 8, 0.2) 0%, rgba(6, 6, 8, 0.85) 75%, #060608 95%);
  pointer-events: none;
  z-index: 1;
}

.library-header-container {
  position: relative;
  z-index: 2;
}

.library-studio-container {
  position: relative;
  z-index: 3;
  margin-top: -30px;
}

/* 3D Multi-Model Studio Component (Plasticity CAD Aesthetic - Expansive) */
.stl-studio-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  will-change: transform, opacity;
  transition: transform 120ms ease, opacity 120ms ease;
}

.studio-header {
  padding: 16px 22px;
  background: #0E0E12;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.studio-model-name {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.studio-model-cat {
  font-size: 11px;
  color: var(--text-2);
  display: block;
  margin-top: 2px;
  font-family: var(--font-mono);
}

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

.studio-tab {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  background: var(--surface-2);
  color: var(--text-2);
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: var(--font);
  transition: all 120ms ease;
}

.studio-tab:hover {
  color: #FFFFFF;
  background: var(--surface-3);
}

.studio-tab.active {
  background: #FFFFFF;
  color: #060608;
  border-color: #FFFFFF;
  font-weight: 600;
}

.studio-viewport {
  position: relative;
  width: 100%;
  height: 500px;
  background: #07070A;
  overflow: hidden;
  cursor: grab;
}

.studio-viewport:active {
  cursor: grabbing;
}

.studio-viewport canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.studio-loader {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 10, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: #FFFFFF;
  z-index: 10;
}

.studio-controls-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
}

.btn-studio-rotate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(14, 14, 18, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 120ms ease;
}

.btn-studio-rotate:hover, .btn-studio-rotate.active {
  color: #FFFFFF;
  border-color: var(--border-strong);
}

.rotate-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #41D6AD;
}

.studio-hint {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--text-disabled);
  background: rgba(14, 14, 18, 0.75);
  backdrop-filter: blur(8px);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-soft);
  pointer-events: none;
}

.studio-footer {
  padding: 12px 20px;
  background: #0E0E12;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.studio-finish-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.studio-finish-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.finish-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font);
  transition: all 120ms ease;
}

.finish-chip:hover {
  color: #FFFFFF;
  background: var(--surface-3);
}

.finish-chip.active {
  color: #FFFFFF;
  border-color: #FFFFFF;
  background: var(--surface-3);
  font-weight: 600;
}

.finish-color {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}
.lib-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-large);
  padding: 16px; display: flex; flex-direction: column; justify-content: space-between; min-height: 170px;
  transition: transform 140ms ease, border-color 140ms ease;
}
.lib-card:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.lib-cat { font-size: 10px; font-family: var(--font-mono); color: var(--text-disabled); text-transform: uppercase; }
.lib-art { flex: 1; display: flex; align-items: center; justify-content: center; padding: 12px 0; }
.lib-tag { font-size: 12px; font-weight: 600; color: var(--text); }

/* ============================================================
   IMMERSIVE CAD WORKFLOW WORKBENCH (FULL-FORMAT STUDIO)
   ============================================================ */
/* ============================================================
   IMMERSIVE WORKFLOW PANORAMIC CAD WORKSTATION (3840×1548)
   ============================================================ */
.workflow-immersive { position: relative; height: 500svh; padding: 0; background: transparent; }
.workflow-sticky { position: sticky; top: 0; height: 100svh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: transparent; }
.workflow-panoramic-container { width: 100%; max-width: 1360px; padding: 36px 24px 18px; display: flex; flex-direction: column; align-items: center; }

.workflow-heading-centered { text-align: center; max-width: 820px; margin: 0 auto 14px; }
.workflow-heading-centered .section-title { font-size: clamp(28px, 3.4vw, 44px); margin: 6px 0 4px; letter-spacing: -0.03em; }
.workflow-heading-centered .section-sub { margin: 0 auto; max-width: 620px; color: var(--text-2); font-size: 13px; line-height: 1.45; }

/* Control Tabs Track */
.workflow-tabs-nav { display: flex; justify-content: center; margin-bottom: 14px; width: 100%; }
.workflow-tabs-track { display: inline-flex; align-items: center; gap: 4px; padding: 4px 6px; background: rgba(14, 15, 20, 0.75); border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 999px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 10px 30px -5px rgba(0,0,0,0.5); max-width: 100%; }
.workflow-nav-tab { display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px; border-radius: 999px; border: 1px solid transparent; background: transparent; color: var(--text-disabled); font-family: var(--font-mono, monospace); font-size: 10.5px; font-weight: 600; letter-spacing: 0.04em; cursor: pointer; transition: all 200ms var(--ease); white-space: nowrap; }
.workflow-nav-tab:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.workflow-nav-tab.active { color: #FFFFFF; background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 0 14px rgba(255, 255, 255, 0.08); }
.tab-num { font-size: 9.5px; opacity: 0.6; }
.workflow-nav-tab.active .tab-num { opacity: 1; color: #F4D77B; }

/* Monumental Theater Chassis */
.workflow-theater-chassis { width: 100%; max-width: 1260px; margin: 0 auto; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 18px; background: #060608; box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.08); overflow: hidden; display: flex; flex-direction: column; }

/* Window Bar */
.theater-window-bar { min-height: 38px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.025); }
.theater-window-left, .theater-window-right { display: flex; align-items: center; gap: 12px; }
.theater-dots { display: flex; gap: 6px; }
.theater-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); }
.theater-app-title { font-family: var(--font-mono, monospace); font-size: 10px; font-weight: 600; color: var(--text-2); letter-spacing: 0.06em; }
.theater-file-badge { padding: 2px 7px; border-radius: 4px; background: rgba(212, 168, 63, 0.12); border: 1px solid rgba(212, 168, 63, 0.25); color: #F4D77B; font-family: var(--font-mono, monospace); font-size: 9.5px; font-weight: 600; }
.theater-status-pill { display: inline-flex; align-items: center; gap: 6px; padding: 3px 9px; border-radius: 999px; background: rgba(65, 214, 173, 0.08); border: 1px solid rgba(65, 214, 173, 0.25); color: #41D6AD; font-family: var(--font-mono, monospace); font-size: 9.5px; font-weight: 600; }
.theater-pulse { width: 5px; height: 5px; border-radius: 50%; background: #41D6AD; box-shadow: 0 0 6px #41D6AD; }
.theater-step-counter { font-family: var(--font-mono, monospace); font-size: 10px; font-weight: 700; color: #FFFFFF; letter-spacing: 0.05em; }

/* Viewport for Native 3840x1548 Videos */
.theater-screen-viewport { position: relative; width: 100%; aspect-ratio: 3840 / 1548; background: #000000; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.theater-video-slide { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; filter: blur(4px); transition: opacity 0.35s ease, filter 0.35s ease; pointer-events: none; }
.theater-video-slide.active { opacity: 1; filter: blur(0); pointer-events: auto; }
.theater-video-player { width: 100%; height: 100%; object-fit: contain; display: block; background: #000000; }

/* Bottom Footer Telemetry HUD */
.theater-footer-hud { border-top: 1px solid rgba(255, 255, 255, 0.08); background: rgba(10, 11, 15, 0.85); display: flex; flex-direction: column; }
.theater-progress-line-track { width: 100%; height: 2px; background: rgba(255, 255, 255, 0.06); }
.theater-progress-line-fill { display: block; width: 16.66%; height: 100%; background: linear-gradient(90deg, #F4D77B, #FFFFFF); box-shadow: 0 0 10px rgba(244, 215, 123, 0.5); transition: width 0.3s ease; }
.theater-footer-content { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; gap: 20px; }
.theater-hud-info { flex: 1; }
.theater-kicker { display: block; font-family: var(--font-mono, monospace); font-size: 9px; font-weight: 700; color: #F4D77B; letter-spacing: 0.12em; margin-bottom: 2px; }
.theater-title { font-size: clamp(15px, 1.5vw, 19px); font-weight: 600; color: #FFFFFF; letter-spacing: -0.02em; margin: 0 0 3px; }
.theater-desc { font-size: 12px; color: var(--text-2); line-height: 1.45; margin: 0; max-width: 780px; }
.theater-hud-specs { display: flex; gap: 16px; border-left: 1px solid rgba(255, 255, 255, 0.08); padding-left: 18px; }
.spec-cell { display: flex; flex-direction: column; gap: 2px; }
.spec-k { font-family: var(--font-mono, monospace); font-size: 8.5px; font-weight: 700; color: var(--text-disabled); letter-spacing: 0.1em; }
.spec-v { font-family: var(--font-mono, monospace); font-size: 10.5px; font-weight: 700; color: #FFFFFF; white-space: nowrap; }

/* ============================================================
   BENTO GRID (FEATURES SECTION) — Minimalist CAD Aesthetic
   ============================================================ */
.bento-section {
  padding: 130px 0;
  border-top: none;
  border-bottom: none;
  background: transparent;
  position: relative;
}

.bento-grid {
  display: flex;
  flex-direction: column;
  gap: var(--bento-gap);
  margin-top: 48px;
}

/* Layout Blocks */
.bento-top-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: var(--bento-gap);
}

.bento-trio-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bento-gap);
}

/* Bento Cards Base (Option A: CAD Chassis + Atmospheric Inset Glow) */
.bento-card {
  background: rgba(12, 12, 16, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 -24px 70px -20px rgba(255, 255, 255, 0.035) inset, 0 1px 2px rgba(0, 0, 0, 0.4);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.bento-card.reveal {
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 180ms var(--ease),
              box-shadow 180ms var(--ease);
}

.bento-card.reveal.in:hover,
.bento-card:hover {
  transform: translate3d(0, -3px, 0);
  border-color: var(--border-strong);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 -24px 70px -20px rgba(255, 255, 255, 0.07) inset;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.bento-card-compact {
  height: 100%;
}

.bento-card-tall {
  grid-column: 3;
  grid-row: 1 / span 2;
  height: 100%;
}

.bento-card-span2 {
  grid-column: 1 / span 2;
  grid-row: 2;
  height: 100%;
}

.bento-card-pano {
  width: 100%;
}

.bento-card-trio {
  min-height: 220px;
}

/* Media Area (Universal container for video, img or vector CAD placeholder) */
.bento-media {
  width: 100%;
  background: #07070A;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 150px;
}

.bento-media video,
.bento-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bento-media-tall {
  flex: 1;
  min-height: 300px;
}

.bento-media-pano {
  min-height: 170px;
}

.bento-media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

/* Content Area (Light text, titles & short subtitles only) */
.bento-content {
  padding: 20px 24px;
}

.bento-content-center {
  text-align: center;
  padding: 22px 30px;
}

.bento-title {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.bento-sub {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.45;
  margin: 0;
  font-weight: 400;
}

.bento-hero-title {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin: 0;
}

.bento-hero-title strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* Card-Specific Visuals */
.bento-unfold-visual svg {
  max-width: 190px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(212, 168, 63, 0.15));
}

.bento-gradient-surface {
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.05), transparent 70%),
              linear-gradient(180deg, #0D0D12 0%, #060608 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.bento-metric-chip {
  background: rgba(18, 18, 24, 0.85);
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.bento-metric-lbl {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--text-disabled);
  display: block;
  margin-bottom: 4px;
}

.bento-metric-val {
  font-size: 18px;
  font-weight: 700;
  color: #41D6AD;
  font-family: var(--font);
  letter-spacing: -0.02em;
}

.bento-metric-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  margin-top: 8px;
  overflow: hidden;
}

.bento-metric-fill {
  width: 78%;
  height: 100%;
  background: #41D6AD;
  border-radius: 999px;
}

/* Vertical DXF Flow Stack */
.bento-flow-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 24px 16px;
}

.flow-node {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 500;
  color: #FFFFFF;
  background: var(--surface-2);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 120ms ease, border-color 120ms ease;
}

.flow-node:hover {
  transform: scale(1.03);
  border-color: rgba(255, 255, 255, 0.25);
}

.flow-node [data-lucide] {
  width: 13px;
  height: 13px;
}

.node-trigger { border-color: rgba(65, 214, 173, 0.3); color: #41D6AD; }
.node-cut { border-color: rgba(236, 72, 153, 0.3); color: #EC4899; }
.node-fold { border-color: rgba(62, 84, 255, 0.3); color: #8CA3FF; }
.node-labels { color: var(--text-2); }
.node-cam { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.25); }

.flow-line {
  width: 1px;
  height: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.04));
}

/* CAD App Mockup Screen */
.bento-app-mockup-screen {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.bento-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #0B0B0F;
  border-bottom: 1px solid var(--border-soft);
  width: 100%;
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.mockup-title {
  font-size: 11px;
  color: var(--text-disabled);
  font-weight: 500;
}

.mockup-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: #41D6AD;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(65, 214, 173, 0.1);
  border: 1px solid rgba(65, 214, 173, 0.2);
}

.bento-mockup-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  width: 100%;
}

.bento-cad-mesh-svg {
  max-width: 360px;
  height: auto;
}

/* Transform Split Screen */
.bento-transform-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: 100%;
  padding: 16px;
}

.split-arrow-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Trio Cards Visuals */
.bento-trio-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

/* Multi-Nesting Panorama App Screen */
.bento-nesting-full-screen {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.bento-nesting-app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  background: #0B0B0F;
  border-bottom: 1px solid var(--border-soft);
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}

.nest-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.6px;
}

.nest-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #41D6AD;
}

.nest-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nest-pill {
  font-size: 10.5px;
  color: var(--text-2);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 999px;
}

.nest-pill-active {
  color: #41D6AD;
  border-color: rgba(65, 214, 173, 0.3);
  background: rgba(65, 214, 173, 0.08);
  font-weight: 600;
}

.btn-nest-pack {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #060608;
  border: none;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: transform 120ms ease, opacity 120ms ease;
}

.btn-nest-pack:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.btn-nest-pack [data-lucide] {
  width: 12px;
  height: 12px;
}

.bento-nesting-workspace {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  width: 100%;
}

.bento-nesting-svg {
  width: 100%;
  max-width: 680px;
  height: auto;
}

.nest-sheet-part {
  transition: transform 320ms var(--ease);
}

/* Responsive Breakpoints for Bento Grid */
@media (max-width: 992px) {
  .bento-top-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento-card-tall {
    grid-column: 1 / span 2;
    grid-row: auto;
  }
  .bento-card-span2 {
    grid-column: 1 / span 2;
    grid-row: auto;
  }
  .bento-trio-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .bento-top-layout {
    grid-template-columns: 1fr;
  }
  .bento-card-tall,
  .bento-card-span2 {
    grid-column: 1;
  }
}

/* Video Section */
.video-wrap {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-large);
  height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.play-btn {
  width: 56px; height: 56px; border-radius: 50%; background: #FFFFFF; color: #060608;
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: transform 140ms ease;
}
.play-btn:hover { transform: scale(1.08); }
.play-btn [data-lucide] { width: 20px; height: 20px; margin-left: 2px; }
.video-label { position: absolute; bottom: 20px; left: 24px; text-align: left; }
.video-label .t { font-size: 13px; font-weight: 600; color: #FFFFFF; }
.video-label .d { font-size: 11px; color: var(--text-2); }

/* Use Cases */
.use-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.use-card { 
  background: var(--surface); 
  border: 1px solid var(--border); 
  border-radius: var(--r-large); 
  padding: 24px; 
  transition: transform 180ms ease, border-color 180ms ease; 
}
.use-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.use-card .role { font-size: 11px; font-family: var(--font-mono); color: var(--text-disabled); text-transform: uppercase; margin-bottom: 10px; }
.use-card h4 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.use-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.5; }

/* Pricing Card (Framer Style with Border Beam) */
.pricing-card {
  background: rgba(12, 12, 16, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12); 
  border-radius: var(--r-xl);
  padding: 48px; text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.9);
  position: relative;
}
.pricing-card .badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--text); background: rgba(255, 255, 255, 0.05);
  padding: 5px 12px; border-radius: 999px; border: 1px solid var(--border); margin-bottom: 16px;
}
.pricing-card h3 { font-size: 26px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.tier-desc { font-size: 14px; color: var(--text-2); margin-bottom: 24px; }
.price { font-size: 48px; font-weight: 600; color: var(--text); letter-spacing: -0.03em; margin-bottom: 28px; font-family: var(--font-mono); }
.price .cur { font-size: 26px; }
.price .per { font-size: 15px; color: var(--text-2); font-weight: 400; font-family: var(--font); }
.pricing-features { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-2); }
.pricing-features li [data-lucide] { width: 16px; height: 16px; color: var(--text); }

/* Smooth Grid FAQ Accordion (Liquid Framer Physics) */
.faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(12, 12, 16, 0.60);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-standard); overflow: hidden;
  transition: border-color 160ms ease, background 160ms ease;
}
.faq-item.open { border-color: rgba(255, 255, 255, 0.22); background: rgba(20, 20, 26, 0.85); }
.faq-q {
  width: 100%; padding: 20px 24px; background: none; border: none;
  color: var(--text); font-size: 15.5px; font-weight: 600; text-align: left;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font);
}
.faq-q [data-lucide] { width: 16px; height: 16px; color: var(--text-2); transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), color 160ms ease; }
.faq-item.open .faq-q [data-lucide] { transform: rotate(45deg); color: var(--text); }
.faq-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-collapse {
  grid-template-rows: 1fr;
}
.faq-collapse-inner {
  overflow: hidden;
}
.faq-a {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.6;
}

/* Final CTA & Footer */
.final-cta { padding: 160px 0; text-align: center; border-top: 1px solid var(--border-soft); }
.final-cta h2 { font-size: clamp(32px, 5vw, 52px); font-weight: 600; letter-spacing: -0.035em; margin-bottom: 14px; color: var(--text); }
.final-cta p { font-size: 17.5px; color: var(--text-2); margin-bottom: 30px; }

/* ============================================================
   EXPANSIVE FULL-BLEED FOOTER (IntegratedBio Aesthetic)
   ============================================================ */
.framer-footer-wrap {
  padding: 130px 0 36px;
  width: 100%;
  background: transparent;
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-top: none;
}

/* Top Black Gradient Transition into the Footer Shader */
.footer-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  background: linear-gradient(180deg, var(--base, #060608) 0%, rgba(6, 6, 8, 0.75) 45%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Three.js Animated Holographic Shader for Footer (100% Full-Bleed) */
.footer-shader-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  min-height: 800px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
  mix-blend-mode: screen;
}

.footer-shader-container canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Dark Attenuation Mask / Dim Veil for Enhanced Text Legibility */
.footer-shader-dim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 60%, rgba(6, 6, 8, 0.40) 0%, rgba(6, 6, 8, 0.72) 65%, rgba(6, 6, 8, 0.92) 100%);
  pointer-events: none;
  z-index: 2;
}

.footer-full-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}

/* Top Row: Navigation Links */
.ff-top-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 50px;
}

.ff-nav-group {
  display: flex;
  align-items: flex-start;
  gap: clamp(40px, 6vw, 100px);
}

.ff-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.ff-nav-col a {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-2, #A1A7B5);
  font-weight: 450;
  letter-spacing: -0.015em;
  transition: color 0.18s ease, transform 0.18s ease;
  display: inline-block;
}

.ff-nav-col a:hover {
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* Giant Monumental Wordmark (Sharplink Dissolve & Gradient Style) */
.ff-giant-wordmark {
  width: 100%;
  overflow: hidden;
  margin-top: auto;
  padding: 40px 0 0;
  user-select: none;
  position: relative;
  mask-image: linear-gradient(to bottom, black 0%, black 55%, rgba(0, 0, 0, 0.4) 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 55%, rgba(0, 0, 0, 0.4) 82%, transparent 100%);
}

.ff-giant-text {
  font-family: var(--font);
  font-size: clamp(90px, 20vw, 290px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.06em;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.80) 40%, rgba(255, 255, 255, 0.25) 80%, rgba(255, 255, 255, 0.05) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  padding: 0;
  display: block;
  white-space: nowrap;
  pointer-events: none;
  text-shadow: none;
  filter: none;
}

/* Minimalist Bottom Legal Bar (No separator border, clean Geist) */
.ff-bottom-legal {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 24px;
  border-top: none;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-disabled, #6C7280);
}

@media (max-width: 768px) {
  .framer-footer-wrap {
    padding: 90px 0 28px;
  }
  .ff-top-row {
    justify-content: flex-start;
    margin-bottom: 32px;
  }
  .ff-nav-group {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 48px;
  }
  .ff-giant-text {
    font-size: clamp(64px, 19vw, 180px);
    letter-spacing: -0.05em;
  }
}

@media (max-width: 480px) {
  .framer-footer-wrap {
    padding: 70px 0 20px;
  }
  .ff-nav-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }
  .ff-nav-col a {
    font-size: 14px;
  }
  .ff-giant-text {
    font-size: clamp(52px, 18.5vw, 130px);
    letter-spacing: -0.04em;
  }
  .ff-bottom-legal {
    font-size: 11px;
    padding-top: 18px;
  }
}

/* Showcase / Filters Grid */
.filters { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.chip { background: var(--surface); border: 1px solid var(--border); color: var(--text-2); padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 500; cursor: pointer; transition: all 120ms ease; }
.chip:hover, .chip.active { background: #FFFFFF; color: #060608; border-color: #FFFFFF; }
.show-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.s-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-large); padding: 20px; display: flex; flex-direction: column; justify-content: space-between; min-height: 220px; }
.s-art { flex: 1; display: flex; align-items: center; justify-content: center; }
.s-info .name { font-size: 13px; font-weight: 600; color: #FFFFFF; margin-bottom: 4px; }
.s-info .meta { display: flex; gap: 10px; font-size: 11px; color: var(--text-disabled); }
.s-info .meta span { display: flex; align-items: center; gap: 4px; }
.s-info .meta [data-lucide] { width: 11px; height: 11px; }

/* Changelog Timeline */
.timeline { max-width: 680px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 20px; }
.tl-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-large); padding: 24px; }
.tl-version { font-size: 15px; font-weight: 600; color: #FFFFFF; font-family: var(--font-mono); display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.tl-tag { font-size: 10px; font-weight: 600; padding: 2px 6px; border-radius: 4px; background: var(--surface-2); border: 1px solid var(--border); color: var(--text-2); text-transform: uppercase; }
.tl-title { font-size: 15px; font-weight: 600; color: #FFFFFF; margin-bottom: 2px; }
.tl-date { font-size: 11px; color: var(--text-disabled); margin-bottom: 12px; }
.tl-body { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.tl-body ul { margin-left: 18px; margin-top: 8px; }

/* Responsive adjustments */
@media (max-width: 860px) {
  .lib-grid, .use-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .masonry { grid-template-columns: 1fr; }
  .m-card.tall { grid-column: span 1; }
  .show-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .advantage-section { padding: 112px 0 90px; }
  .advantage-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 34px; }
  .advantage-heading .section-sub { margin: 0; }
  .advantage-stage-body { min-height: 480px; grid-template-columns: 1fr 64px 1fr; }

  .workflow-panoramic-container { padding: 32px 16px 16px; }
  .workflow-tabs-track { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; }
  .workflow-nav-tab { padding: 5px 10px; font-size: 10px; }
  .theater-footer-content { padding: 10px 16px; gap: 14px; }
}
@media (max-width: 580px) {
  .lib-grid, .use-grid, .show-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; margin-top: 30px; }
  .trust-section { padding: 88px 0; }
  .pricing-card { padding: 32px 20px; }
  .app-body { grid-template-columns: 1fr; }
  .stats { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .advantage-section { min-height:auto; padding:96px 0 76px; }
  .advantage-heading .section-title { font-size:clamp(38px,12vw,54px); }
  .advantage-stage { border-radius:18px; }
  .advantage-stage-bar { grid-template-columns:1fr auto; padding:0 14px; }
  .advantage-stage-bar > span:last-child { display:none; }
  .advantage-stage-body { min-height:700px; grid-template-columns:1fr; grid-template-rows:1fr 64px 1fr; }
  .advantage-process { flex-direction:row; }
  .process-line { width:65%; height:1px; background:linear-gradient(90deg,transparent,var(--border-strong),transparent); }
  .process-pulse { transform:rotate(90deg); width:42px; height:42px; }
  .process-pulse::after { width:42px; height:42px; }
  .advantage-caption { left:16px; bottom:12px; font-size:12px; }
  .advantage-flat-space .advantage-caption { right:16px; }
  .advantage-output-tags { top:12px; right:12px; }

  .workflow-panoramic-container { padding: 24px 12px 14px; }
  .workflow-heading-centered .section-title { font-size: clamp(24px, 7vw, 32px); }
  .workflow-heading-centered .section-sub { font-size: 11.5px; }
  .workflow-tabs-track { gap: 2px; padding: 3px 4px; }
  .workflow-nav-tab { padding: 4px 8px; font-size: 9px; }
  .theater-window-bar { min-height: 32px; padding: 0 10px; }
  .theater-app-title { font-size: 8.5px; }
  .theater-file-badge { display: none; }
  .theater-status-pill { padding: 2px 6px; font-size: 8.5px; }
  .theater-step-counter { font-size: 9px; }
  .theater-footer-content { flex-direction: column; align-items: flex-start; padding: 10px 14px; gap: 8px; }
  .theater-hud-specs { display: none; }
  .theater-title { font-size: 14px; }
  .theater-desc { font-size: 11px; }
}

/* Back to Top Floating Button (Glass CAD Style) */
.btn-back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 14, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.btn-back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.btn-back-to-top:hover {
  background: #FFFFFF;
  color: #060608;
  border-color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.25);
}
.btn-back-to-top [data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

/* ==========================================================================
   3D Cinematic Splash Screen (Pokémon TCG Pocket Style)
   ========================================================================== */
.plyra-splash {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: #060608;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.85s;
}

.plyra-splash.splash-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.splash-ambient-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 40%, rgba(6, 6, 8, 0.92) 75%, #060608 100%);
  z-index: 2;
  pointer-events: none;
}

.splash-center {
  position: relative;
  z-index: 10;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: splashLogoEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.splash-logo-img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 28px rgba(255, 255, 255, 0.3));
  animation: splashLogoFloat 3s ease-in-out infinite;
}

.splash-brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
}

.splash-title {
  font-size: 34px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
}

.splash-sub {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-2);
  margin-top: 2px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 10px;
  border-radius: 999px;
}

.splash-skip-btn {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--text-2);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 180ms ease;
  font-family: inherit;
}

.splash-skip-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

@keyframes splashLogoEntrance {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
  }
}

@keyframes splashLogoFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .advantage-model,
  .advantage-flat,
  .process-pulse::after,
  .scene-cut-path { animation: none !important; }
  .workflow-step,
  .workflow-scene,
  .workflow-progress span { transition-duration: 1ms !important; }
}

/* ============================================================
   MACHINED GLASS NAVIGATION — Landing page signature
   ============================================================ */
.machined-nav {
  top: 16px;
  width: calc(100% - 32px);
  max-width: 1240px;
}
.machined-nav .nav-inner {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.machined-module {
  position: relative;
  isolation: isolate;
  min-height: 52px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 999px;
  clip-path: none;
  background:linear-gradient(180deg,rgba(247,248,250,.94) 0%,rgba(174,178,186,.92) 46%,rgba(236,238,241,.94) 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.95),inset 0 -1px 0 rgba(38,40,46,.34);
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.28));
  backdrop-filter: blur(24px) saturate(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.08);
}
.machined-module::before {
  content:"";
  position:absolute;
  z-index:0;
  inset:-260% -42%;
  border-radius:50%;
  background:
    radial-gradient(ellipse at 34% 48%,rgba(255,255,255,.98) 0 7%,rgba(255,255,255,0) 22%),
    conic-gradient(from 215deg,#646872 0deg,#F9FAFC 38deg,#858A94 78deg,#D4A83F 112deg,#FFF4CF 136deg,#767B85 177deg,#FFFFFF 218deg,#9A9EA7 264deg,#E5E7EB 310deg,#646872 360deg);
  opacity:.72;
  filter:saturate(.72) contrast(1.08);
  transform:translate3d(-17%,1%,0) rotate(-8deg) scale(1.08);
  animation:plyra-liquid-metal 11s cubic-bezier(.45,.05,.25,1) infinite alternate;
  pointer-events:none;
}
.machined-module::after {
  content:"";
  position:absolute;
  inset:1px;
  z-index:1;
  border-radius:inherit;
  background:linear-gradient(180deg,rgba(255,255,255,.58),transparent 38%),linear-gradient(100deg,transparent 18%,rgba(255,255,255,.62) 43%,transparent 62%);
  background-size:100% 100%,240% 100%;
  background-position:0 0,130% 0;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.17);
  mix-blend-mode:soft-light;
  animation:plyra-liquid-glint 8.5s ease-in-out infinite;
  pointer-events:none;
}
.machined-module > * { position:relative; z-index:2; }
.nav-brand-module { gap:12px; padding:7px 16px; white-space:nowrap; }
.machined-nav .brand { font-size:14px; }
.machined-nav .brand,
.machined-nav .nav-links a { color:#17191E; }
.machined-nav .brand .by { border-radius:5px; padding:2px 6px; color:#33363D; background:rgba(255,255,255,.24); border-color:rgba(23,25,30,.12); }
.nav-links-module { justify-content:center; padding:7px 10px; }
.machined-nav .nav-links { width:100%; justify-content:center; gap:2px; }
.machined-nav .nav-links a {
  min-height:36px;
  display:flex;
  align-items:center;
  padding:0 14px;
  border-radius:999px;
  color:#17191E;
  font-size:12px;
  letter-spacing:-.01em;
  background:transparent;
  box-shadow:none;
  text-shadow:none;
}
.machined-nav .nav-links a:hover { color:#050608; background:rgba(255,255,255,.26); }
.machined-nav .nav-links a.active { color:#050608; background:rgba(17,19,24,.14); box-shadow:inset 0 1px 4px rgba(0,0,0,.2); text-shadow:none; }
.machined-nav .nav-links a.active::after {
  content:"";
  position:absolute;
  left:17px;
  right:17px;
  bottom:4px;
  height:1px;
  background:linear-gradient(90deg,transparent,#D4A83F,transparent);
  box-shadow:0 0 7px rgba(212,168,63,.65);
}
.nav-actions-module { gap:7px; padding:7px; }
.machined-nav .btn-mobile-toggle {
  width:36px;
  height:36px;
  border-radius:50%;
  color:#20232A;
  background:linear-gradient(145deg,rgba(255,255,255,.5),rgba(88,92,101,.22));
  border:1px solid rgba(35,38,44,.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.58),0 3px 8px rgba(0,0,0,.18);
}
.machined-nav .nav-cta .btn-sm {
  height:36px;
  padding:0 15px;
  border-radius:999px;
  clip-path:none;
}
.machined-nav .nav-cta .liquid-metal-cta {
  position:relative;
  isolation:isolate;
  overflow:hidden;
  color:#08090B;
  border-color:rgba(255,255,255,.68);
  background:linear-gradient(180deg,#F7F8FA 0%,#AEB2BA 46%,#ECEEF1 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -1px 0 rgba(38,40,46,.34),
    0 5px 14px rgba(0,0,0,.3);
  text-shadow:0 1px 0 rgba(255,255,255,.42);
  transform:translateZ(0);
}
.machined-nav .nav-cta .liquid-metal-cta::before {
  content:"";
  position:absolute;
  z-index:0;
  inset:-120% -75%;
  border-radius:50%;
  background:
    radial-gradient(ellipse at 34% 48%,rgba(255,255,255,.98) 0 7%,rgba(255,255,255,0) 22%),
    conic-gradient(from 215deg,
      #646872 0deg,
      #F9FAFC 38deg,
      #858A94 78deg,
      #D4A83F 112deg,
      #FFF4CF 136deg,
      #767B85 177deg,
      #FFFFFF 218deg,
      #9A9EA7 264deg,
      #E5E7EB 310deg,
      #646872 360deg);
  opacity:.82;
  filter:saturate(.72) contrast(1.08);
  transform:translate3d(-17%,1%,0) rotate(-8deg) scale(1.08);
  animation:plyra-liquid-metal 8.5s cubic-bezier(.45,.05,.25,1) infinite alternate;
  pointer-events:none;
}
.machined-nav .nav-cta .liquid-metal-cta::after {
  content:"";
  position:absolute;
  z-index:1;
  inset:1px;
  border-radius:inherit;
  background:
    linear-gradient(180deg,rgba(255,255,255,.62),transparent 38%),
    linear-gradient(100deg,transparent 18%,rgba(255,255,255,.72) 43%,transparent 62%);
  background-size:100% 100%,240% 100%;
  background-position:0 0,130% 0;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.18);
  mix-blend-mode:soft-light;
  animation:plyra-liquid-glint 6.8s ease-in-out infinite;
  pointer-events:none;
}
.machined-nav .nav-cta .liquid-metal-cta span {
  position:relative;
  z-index:2;
}
.machined-nav .nav-cta .liquid-metal-cta:hover {
  color:#050608;
  border-color:rgba(255,255,255,.9);
  background:linear-gradient(180deg,#FFFFFF 0%,#BEC2CA 48%,#F5F6F8 100%);
  box-shadow:
    inset 0 1px 0 #FFFFFF,
    inset 0 -1px 0 rgba(38,40,46,.28),
    0 9px 22px rgba(0,0,0,.34),
    0 0 18px rgba(226,228,234,.13);
  transform:translateY(-1px) scale(1.015);
}
.machined-nav .nav-cta .liquid-metal-cta:active {
  transform:translateY(0) scale(.985);
  box-shadow:inset 0 2px 5px rgba(23,25,30,.28),0 3px 9px rgba(0,0,0,.25);
}
@keyframes plyra-liquid-metal {
  0% { transform:translate3d(-17%,1%,0) rotate(-8deg) scale(1.08); }
  48% { transform:translate3d(8%,-4%,0) rotate(14deg) scale(1.18); }
  100% { transform:translate3d(20%,3%,0) rotate(28deg) scale(1.1); }
}
@keyframes plyra-liquid-glint {
  0%,24% { background-position:0 0,130% 0; opacity:.34; }
  46% { opacity:.78; }
  70%,100% { background-position:0 0,-135% 0; opacity:.38; }
}
.machined-nav .mobile-drawer {
  top:calc(100% + 9px);
  border-radius:22px;
  clip-path:none;
  background:
    repeating-linear-gradient(90deg,rgba(255,255,255,.012) 0 1px,rgba(0,0,0,.015) 1px 3px),
    rgba(16,17,21,.78);
  border-color:rgba(255,255,255,.13);
  backdrop-filter:blur(26px) saturate(1.08);
  -webkit-backdrop-filter:blur(26px) saturate(1.08);
}

/* Real-world workshop proof */
.real-world-section {
  min-height:100svh;
  padding:140px 0;
  display:flex;
  align-items:center;
  border-top:none;
  border-bottom:none;
  background:transparent;
  overflow:hidden;
  position:relative;
}
.real-world-heading {
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.72fr);
  gap:72px;
  align-items:end;
  margin-bottom:48px;
}
.real-world-heading .section-title { margin-top:18px; font-size:clamp(42px,5.2vw,70px); }
.real-world-heading .section-sub { margin:0 0 7px; max-width:520px; }
.workshop-grid { display:grid; grid-template-columns:1.55fr 1fr; grid-template-rows:repeat(2,minmax(230px,1fr)); gap:14px; min-height:650px; }
.workshop-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: #090A0D;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px rgba(255, 255, 255, .04), 0 16px 40px -10px rgba(0, 0, 0, 0.6);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.workshop-media:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px rgba(255, 255, 255, .1), 0 24px 60px -8px rgba(0, 0, 0, 0.75);
}
.workshop-media-main { grid-row: 1 / 3; }

.workshop-media-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #07070A;
}

.workshop-media-asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.85) contrast(1.06);
}

.workshop-media:hover .workshop-media-asset {
  transform: scale(1.04);
  filter: brightness(0.96) contrast(1.1);
}

/* Gradient scrim overlay on top of media for maximum text contrast */
.workshop-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 6, 8, 0.1) 0%, rgba(6, 6, 8, 0.25) 45%, rgba(6, 6, 8, 0.82) 80%, rgba(6, 6, 8, 0.95) 100%);
  transition: opacity 0.4s ease;
}

.workshop-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  min-height: 105px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: end;
  padding: 24px;
  pointer-events: none;
}
.workshop-count {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: rgba(255, 255, 255, .9);
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  font-weight: 600;
  background: rgba(6, 6, 8, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.workshop-label {
  display: block;
  color: rgba(255, 255, 255, .6);
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  margin-bottom: 4px;
}
.workshop-overlay h3 {
  color: #FFFFFF;
  font-size: clamp(17px, 1.8vw, 25px);
  font-weight: 500;
  letter-spacing: -.03em;
}
.workshop-media-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(8, 9, 12, .75);
  color: rgba(255, 255, 255, .82);
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.workshop-media-note [data-lucide] { width: 12px; height: 12px; }
.workshop-proof-line { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 26px; color: var(--text-disabled); font-family: var(--font-mono, monospace); font-size: 10px; font-weight: 600; letter-spacing: .12em; }
.workshop-proof-line [data-lucide] { width: 13px; height: 13px; color: var(--text-disabled); }

@media (max-width: 1040px) {
  .machined-nav { max-width:960px; }
  .machined-nav .nav-inner { grid-template-columns:auto auto auto; gap:12px; }
  .machined-nav .nav-links a { padding:0 10px; }
}
@media (max-width: 900px) {
  .machined-nav { top:10px; width:calc(100% - 20px); }
  .machined-nav .nav-inner { grid-template-columns:minmax(0,1fr) auto; gap:9px; }
  .machined-nav .nav-brand-module { min-width:0; min-height:46px; padding:6px 13px; }
  .machined-nav .nav-links-module { display:none; }
  .machined-nav .nav-actions-module { min-height:46px; padding:5px; }
  .machined-nav .brand .by { display:none; }
  .machined-nav .btn-mobile-toggle { display:inline-flex; }
  .machined-nav .nav-cta .btn-sm { height:34px; padding:0 12px; }

  .real-world-section { min-height:auto; padding:110px 0; }
  .real-world-heading { grid-template-columns:1fr; gap:20px; margin-bottom:34px; }
  .real-world-heading .section-sub { margin:0; }
  .workshop-grid { min-height:780px; grid-template-columns:1fr 1fr; grid-template-rows:1.45fr 1fr; }
  .workshop-media-main { grid-column:1 / 3; grid-row:1; }
}
@media (max-width: 520px) {
  .machined-nav { width:calc(100% - 14px); }
  .machined-nav .brand-logo-img { width:20px; height:20px; }
  .machined-nav .nav-cta .btn-sm { display:none; }
  .machined-nav .mobile-drawer { width:100%; }

  .real-world-section { padding:96px 0 84px; }
  .real-world-heading .section-title { font-size:clamp(38px,12vw,52px); }
  .workshop-grid { display:flex; flex-direction:column; min-height:0; }
  .workshop-media { min-height:300px; }
  .workshop-media-main { min-height:420px; }
  .workshop-overlay { grid-template-columns:auto 1fr; padding:17px; }
  .workshop-media-note { display:none; }
  .workshop-proof-line { gap:10px; justify-content:flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .machined-module::before,
  .machined-module::after,
  .cnc-spark,
  .machined-nav .nav-cta .liquid-metal-cta::before,
  .machined-nav .nav-cta .liquid-metal-cta::after { animation:none !important; }
}

/* ==========================================================================
   FULL-WIDTH ATMOSPHERIC GRADIENT BLUR NAVBAR
   ========================================================================== */
.navbar-full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 68px;
  background: transparent;
  border: none;
  box-shadow: none;
  pointer-events: none;
}

/* Progressive Masked Gradient Blur (Seamless Atmospheric Dissolve) */
.navbar-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background: linear-gradient(180deg, rgba(6, 6, 8, 0.42) 0%, rgba(6, 6, 8, 0.20) 45%, rgba(6, 6, 8, 0.04) 78%, transparent 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  mask-image: linear-gradient(to bottom, black 0%, black 25%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 25%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.navbar-full.nav-light-mode::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.25) 45%, transparent 100%);
}

.navbar-full.nav-light-mode .nav-brand-title {
  color: #080C14;
}

.navbar-full.nav-light-mode .nav-item {
  color: #384252;
}

.navbar-full.nav-light-mode .nav-item:hover {
  color: #080C14;
}

.nav-container {
  width: 100%;
  max-width: 1360px;
  height: 100%;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  pointer-events: auto;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-brand:hover .nav-logo-img {
  transform: scale(1.1) rotate(-3deg);
}

.nav-brand-title {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.nav-brand-by {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 2px;
}

/* Center Menu */
.nav-center {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  letter-spacing: -0.01em;
  position: relative;
  padding: 8px 0;
  transition: color 0.18s ease, text-shadow 0.18s ease;
}

.nav-item:hover {
  color: #FFFFFF;
}

/* Glowing Illuminated Active Text */
.nav-item.active {
  color: #FFFFFF;
  font-weight: 600;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.85),
               0 0 28px rgba(255, 255, 255, 0.40);
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 999px;
  box-shadow: 0 0 8px #FFFFFF;
  animation: navGlowDot 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes navGlowDot {
  0% { width: 0; opacity: 0; }
  100% { width: 14px; opacity: 1; }
}

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

/* Liquid Metal Animated Border Button (Transparent Center) */
.nav-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 18px;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 999px;
  background: transparent !important;
  color: #FFFFFF !important;
  text-decoration: none;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Moving Liquid Metal Shader in Border */
.nav-cta-btn::before {
  content: '';
  position: absolute;
  inset: -150%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(255, 255, 255, 0.08) 35deg,
    rgba(255, 255, 255, 0.95) 75deg,
    #FFFFFF 90deg,
    rgba(215, 220, 230, 0.95) 105deg,
    transparent 145deg,
    rgba(255, 255, 255, 0.08) 215deg,
    rgba(255, 255, 255, 0.95) 255deg,
    #FFFFFF 270deg,
    rgba(215, 220, 230, 0.95) 285deg,
    transparent 325deg
  );
  animation: liquidBorderRotate 4.5s linear infinite;
  z-index: -2;
}

@keyframes liquidBorderRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Inner Cutout with Transparent Frosted Glass Backdrop */
.nav-cta-btn::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: 999px;
  background: rgba(8, 9, 13, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
  transition: background 0.22s ease;
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
}

.nav-cta-btn:hover::after {
  background: rgba(255, 255, 255, 0.10);
}

.nav-cta-btn span {
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.nav-mobile-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-2);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Mobile Frosted Glass Dropdown */
.nav-mobile-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(8, 9, 14, 0.65);
  backdrop-filter: blur(36px) saturate(190%);
  -webkit-backdrop-filter: blur(36px) saturate(190%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 5px;
  box-shadow: 
    0 28px 60px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-12px) scale(0.98);
  opacity: 0;
  filter: blur(6px);
  pointer-events: none;
  visibility: hidden;
  transition: 
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.32s;
}

.navbar-full.mobile-open .nav-mobile-dropdown {
  transform: translateY(0) scale(1);
  opacity: 1;
  filter: blur(0px);
  pointer-events: auto;
  visibility: visible;
}

.navbar-full.mobile-open .mobile-icon-close {
  display: block;
}

.navbar-full.mobile-open .mobile-icon-open {
  display: none;
}

.nav-mobile-link {
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text-2, #A1A7B5);
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  transform: translateY(8px);
  opacity: 0;
  transition: 
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.16s ease,
    color 0.16s ease,
    border-color 0.16s ease;
}

.navbar-full.mobile-open .nav-mobile-link {
  transform: translateY(0);
  opacity: 1;
}

/* Staggered entrance for links */
.navbar-full.mobile-open .nav-mobile-link:nth-child(1) { transition-delay: 40ms; }
.navbar-full.mobile-open .nav-mobile-link:nth-child(2) { transition-delay: 75ms; }
.navbar-full.mobile-open .nav-mobile-link:nth-child(3) { transition-delay: 110ms; }
.navbar-full.mobile-open .nav-mobile-link:nth-child(4) { transition-delay: 145ms; }
.navbar-full.mobile-open .nav-mobile-link:nth-child(5) { transition-delay: 180ms; }
.navbar-full.mobile-open .nav-mobile-dropdown > a.btn { 
  transform: translateY(0);
  opacity: 1;
  transition-delay: 215ms;
}

.nav-mobile-link:hover, .nav-mobile-link.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-mobile-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 4px;
}

/* Media Queries */
@media (max-width: 860px) {
  .nav-center {
    display: none;
  }
  .nav-mobile-toggle {
    display: flex;
  }
  .nav-mobile-dropdown {
    display: flex;
  }
  .nav-container {
    padding: 0 20px;
  }
}

