/* =========================================================================
   FAZIK — Elite Commercial Landing Page Stylesheet
   Design system: Obsidian Athletic Cybernetics
   Tokens align with app_theme.dart + high-end SaaS/fitness tech standards
   (Lenis smooth scroll + GSAP ScrollTrigger + mouse-follow spotlight)
   ========================================================================= */

:root {
  --bg: #07070a;
  --bg-alt: #0d0d14;
  --surface: #12121c;
  --surface-2: #181826;
  --surface-3: #222234;
  
  --primary: #c8ff00;            /* Volt Lime */
  --primary-dim: #a4d400;
  --primary-glow: rgba(200, 255, 0, 0.4);
  --primary-faint: rgba(200, 255, 0, 0.08);

  --secondary: #7b61ff;          /* Electric Violet */
  --secondary-glow: rgba(123, 97, 255, 0.4);
  --secondary-faint: rgba(123, 97, 255, 0.1);

  --cyan: #00f0ff;               /* Cyber HUD Cyan */
  --success: #00e5a0;            /* Precision Green */
  --warning: #ff3b5c;            /* Urgent Red */
  --caution: #ffb800;            /* Amber */

  --text: #ffffff;
  --text-secondary: #9696a8;
  --text-tertiary: #5d5d72;

  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-strong: rgba(255, 255, 255, 0.16);
  --hairline-glow: rgba(200, 255, 0, 0.3);

  --radius-chip: 8px;
  --radius-input: 12px;
  --radius-card: 18px;
  --radius-sheet: 26px;
  --radius-pill: 9999px;

  --font-display: "Bebas Neue", "Arial Narrow", -apple-system, sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "DM Mono", "SFMono-Regular", Consolas, monospace;

  --container: 1200px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Lenis smooth scroll recommended rules */
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 {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

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

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

ul {
  list-style: none;
}

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

input {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.02;
  text-transform: uppercase;
}

::selection {
  background: var(--primary);
  color: #07070a;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Ambient background lights */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

.glow-top {
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.glow-mid {
  top: 45%;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  opacity: 0.18;
}

.glow-bottom {
  bottom: -100px;
  right: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.15;
}

/* Subtle Cursor Glow on Desktop */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.05) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 999;
  transition: opacity 0.3s ease;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ---------- Spotlight Cards ----------
   Mouse coordinates (--mouse-x, --mouse-y) light up border & background */
.spotlight-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(var(--card-tilt-x, 0deg)) rotateY(var(--card-tilt-y, 0deg)) translateZ(0px);
  transition: border-color 0.3s ease, transform 0.25s var(--ease-out), box-shadow 0.3s ease;
  will-change: transform;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    380px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
    rgba(200, 255, 0, 0.35),
    transparent 60%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  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 0.3s ease;
  z-index: 1;
}

.spotlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.spotlight-card:hover::before,
.spotlight-card:hover::after {
  opacity: 1;
}

.spotlight-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: perspective(1200px) rotateX(var(--card-tilt-x, 0deg)) rotateY(var(--card-tilt-y, 0deg)) translateZ(12px);
  box-shadow: 0 24px 50px -15px rgba(0, 0, 0, 0.8), 0 0 30px -10px rgba(200, 255, 0, 0.15);
}

/* ---------- Buttons & Micro-Interactions ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  z-index: 1;
}

.btn-primary {
  background: var(--primary);
  color: #07070a;
  font-weight: 800;
  box-shadow: 0 0 0 1px rgba(200, 255, 0, 0.3), 0 8px 24px -6px rgba(200, 255, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #d4ff24;
  box-shadow: 0 0 0 1px rgba(200, 255, 0, 0.6), 0 12px 36px -4px rgba(200, 255, 0, 0.65);
}

.btn-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-glow:hover::after {
  transform: translateX(100%);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--hairline-strong);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-sm {
  height: 42px;
  padding: 0 18px;
  font-size: 13.5px;
}

.btn-block {
  width: 100%;
}

/* Magnetic Button helper */
.magnetic-btn {
  will-change: transform;
}

/* ---------- Header & Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding 0.35s var(--ease-out), background 0.35s var(--ease-out), border-color 0.35s var(--ease-out), backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  padding: 12px 0;
  background: rgba(7, 7, 10, 0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--hairline);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--text);
}

.brand-icon-wrap {
  position: relative;
  width: 34px;
  height: 34px;
}

.brand-icon-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.brand-glow {
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: var(--primary);
  filter: blur(8px);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.brand:hover .brand-glow {
  opacity: 0.8;
}

.brand-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  background: rgba(200, 255, 0, 0.12);
  border: 1px solid rgba(200, 255, 0, 0.3);
  color: var(--primary);
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s var(--ease-out);
  border-radius: 2px;
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  z-index: 200;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-panel {
  position: fixed;
  inset: 0;
  background: rgba(7, 7, 10, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease-out);
}

.mobile-panel.is-open {
  transform: translateY(0);
}

.mobile-panel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  width: 100%;
  max-width: 360px;
  padding: 24px;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.m-link {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.m-link span {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--primary);
}

.m-link:hover {
  color: var(--primary);
  transform: translateX(6px);
}

.mobile-cta {
  width: 100%;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 80px;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: -10% 0 0 0;
  height: 120%;
  z-index: -2;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.2) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 20% 20%, rgba(200, 255, 0, 0.09), transparent 65%),
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(123, 97, 255, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(7, 7, 10, 0.65) 0%, rgba(7, 7, 10, 0.88) 50%, var(--bg) 100%);
}

.cyber-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, #000 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, #000 60%, transparent 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(200, 255, 0, 0.07);
  border: 1px solid rgba(200, 255, 0, 0.28);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.live-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 8px;
}

.live-dot .ping {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.7;
  animation: ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.live-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

@keyframes ping {
  75%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.eyebrow .sep {
  opacity: 0.4;
}

.hero-title {
  font-size: clamp(48px, 6.2vw, 84px);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.title-line {
  display: block;
}

.accent-glow {
  color: var(--primary);
  text-shadow: 0 0 40px rgba(200, 255, 0, 0.45);
}

.hero-sub {
  font-size: 18.5px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 38px;
  line-height: 1.65;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-privacy-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 40px;
}

.hero-privacy-chip svg {
  color: var(--success);
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}

.stat-block .num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--text);
  line-height: 1;
}

.stat-block .unit {
  font-size: 20px;
  color: var(--primary);
  margin-left: 2px;
}

.stat-block .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* Hero Phone Mockup & Laser Scanner */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1800px;
}

.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 2000px;
  transform-style: preserve-3d;
}

/* ---------- 3D Gyroscopic Kinetic Orbit Rings ---------- */
.gyro-orbit-stage {
  position: absolute;
  width: 480px;
  height: 480px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  perspective: 1600px;
  transform-style: preserve-3d;
  pointer-events: none;
  z-index: 1;
}

.gyro-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform-style: preserve-3d;
  will-change: transform;
}

.gyro-ring.ring-1 {
  border: 1.5px dashed rgba(200, 255, 0, 0.45);
  box-shadow: 0 0 24px rgba(200, 255, 0, 0.2), inset 0 0 20px rgba(200, 255, 0, 0.08);
  animation: gyroSpin1 16s linear infinite;
}

.gyro-ring.ring-2 {
  inset: 40px;
  border: 1px solid rgba(123, 97, 255, 0.4);
  box-shadow: 0 0 20px rgba(123, 97, 255, 0.18);
  animation: gyroSpin2 22s linear infinite reverse;
}

.gyro-ring.ring-3 {
  inset: 80px;
  border: 1px dotted rgba(0, 240, 255, 0.45);
  animation: gyroSpin3 14s linear infinite;
}

.gyro-node {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 14px 3px var(--primary);
}

.gyro-node.opposite {
  top: auto;
  bottom: -5px;
}

.ring-2 .gyro-node {
  background: var(--secondary);
  box-shadow: 0 0 14px 3px var(--secondary);
}

.ring-3 .gyro-node {
  background: var(--cyan);
  box-shadow: 0 0 14px 3px var(--cyan);
}

@keyframes gyroSpin1 {
  0% { transform: rotateX(65deg) rotateY(15deg) rotateZ(0deg); }
  100% { transform: rotateX(65deg) rotateY(15deg) rotateZ(360deg); }
}

@keyframes gyroSpin2 {
  0% { transform: rotateX(-35deg) rotateY(60deg) rotateZ(0deg); }
  100% { transform: rotateX(-35deg) rotateY(60deg) rotateZ(360deg); }
}

@keyframes gyroSpin3 {
  0% { transform: rotateX(45deg) rotateY(-45deg) rotateZ(0deg); }
  100% { transform: rotateX(45deg) rotateY(-45deg) rotateZ(360deg); }
}

.phone-ambient-halo {
  position: absolute;
  width: 440px;
  height: 620px;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.22) 0%, rgba(123, 97, 255, 0.12) 50%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(320px, 80vw);
  border-radius: 44px;
  padding: 10px;
  background: linear-gradient(145deg, #2c2c3e, #0e0e16);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 40px 100px -20px rgba(0, 0, 0, 0.9),
    0 0 60px -10px rgba(200, 255, 0, 0.2);
  transform-style: preserve-3d;
  will-change: transform;
}

.phone-inner {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateZ(20px);
  transform-style: preserve-3d;
}

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

.phone-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.03) 40%,
    transparent 60%
  );
  pointer-events: none;
}

/* Laser Scanner Beam Overlay */
.scanner-laser {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.laser-beam {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: #c8ff00;
  box-shadow: 
    0 0 15px 3px #c8ff00,
    0 0 30px 8px rgba(200, 255, 0, 0.6);
  animation: laserSweep 4s ease-in-out infinite;
  z-index: 5;
}

.laser-radar-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(200, 255, 0, 0.25), transparent);
  animation: laserRadarSweep 4s ease-in-out infinite;
  z-index: 4;
}

@keyframes laserSweep {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@keyframes laserRadarSweep {
  0% { top: -80px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: calc(100% - 80px); opacity: 0; }
}

/* Target Pins on Phone Screen */
.target-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  z-index: 6;
}

.pin-ring {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: rgba(200, 255, 0, 0.4);
  box-shadow: 0 0 12px var(--primary);
  animation: pulsePin 2s infinite ease-in-out;
}

.pin-ring.warn {
  border-color: var(--warning);
  background: rgba(255, 59, 92, 0.4);
  box-shadow: 0 0 12px var(--warning);
}

.pin-tag {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(7, 7, 10, 0.85);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.pin-tag.warn {
  border-color: var(--warning);
  color: var(--warning);
}

.p-chest { top: 38%; left: 16%; }
.p-delts { top: 32%; right: 14%; }
.p-lats { top: 48%; right: 12%; }

@keyframes pulsePin {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

/* Floating Hologram Badges */
.hologram-badge {
  position: absolute;
  z-index: 3;
  background: rgba(18, 18, 28, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--hairline-strong);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
  will-change: transform;
}

.hologram-badge .badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.score-icon {
  background: rgba(200, 255, 0, 0.14);
  color: var(--primary);
  border: 1px solid rgba(200, 255, 0, 0.3);
}

.streak-icon {
  background: rgba(123, 97, 255, 0.16);
  color: var(--secondary);
  border: 1px solid rgba(123, 97, 255, 0.3);
}

.fix-icon {
  background: rgba(0, 229, 160, 0.14);
  color: var(--success);
  border: 1px solid rgba(0, 229, 160, 0.3);
}

.badge-val {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-sub {
  font-size: 12px;
  color: var(--text-secondary);
}

.badge-lbl {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 3px;
}

.badge-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  background: rgba(123, 97, 255, 0.2);
  color: var(--secondary);
  padding: 2px 5px;
  border-radius: 4px;
}

.badge-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

.b-score {
  top: 10%;
  left: -18%;
}

.b-streak {
  bottom: 22%;
  right: -20%;
}

.b-fix {
  bottom: 4%;
  left: -12%;
}

/* ---------- Kinetic Marquee Ticker ---------- */
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  background: #0a0a10;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 18px 0;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

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

.marquee-content {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.marquee-item .m-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Trust Grid ---------- */
.trust-section {
  padding: 80px 0 40px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-card {
  padding: 26px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 255, 0, 0.08);
  border: 1px solid rgba(200, 255, 0, 0.22);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-card:nth-child(2) .trust-icon {
  background: rgba(123, 97, 255, 0.1);
  border-color: rgba(123, 97, 255, 0.25);
  color: var(--secondary);
}

.trust-card:nth-child(3) .trust-icon {
  background: rgba(0, 229, 160, 0.1);
  border-color: rgba(0, 229, 160, 0.25);
  color: var(--success);
}

.trust-card:nth-child(4) .trust-icon {
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.25);
  color: var(--cyan);
}

.trust-info h4 {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.trust-info p {
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.5;
}

/* ---------- Section Header Generic ---------- */
section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 14px;
  background: rgba(200, 255, 0, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-chip);
  border: 1px solid rgba(200, 255, 0, 0.2);
}

.section-head h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  margin-bottom: 18px;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.65;
}

/* ---------- Interactive AI Scan Lab Simulator ---------- */
.scan-lab-wrap {
  background: #0f0f18;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-sheet);
  padding: 36px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
}

.lab-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
  flex-wrap: wrap;
}

.controls-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-tertiary);
}

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

.muscle-pill {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  background: var(--surface-2);
  border: 1px solid var(--hairline-strong);
  color: var(--text-secondary);
  transition: all 0.25s ease;
}

.muscle-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.muscle-pill.active {
  background: var(--primary);
  color: #07070a;
  border-color: var(--primary);
  font-weight: 700;
  box-shadow: 0 0 20px -4px rgba(200, 255, 0, 0.5);
}

.scan-replay-btn {
  border-color: var(--primary);
  color: var(--primary);
  gap: 8px;
}

.lab-workspace {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
  align-items: center;
}

/* Left Screen */
.lab-screen {
  background: #0a0a12;
  border: 1px solid var(--hairline-strong);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.lab-hud-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-secondary);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}

.hud-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
}

.hud-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

/* ---------- 3D Scan Lab Viewport & Mode Switcher ---------- */
.lab-mode-switch {
  display: flex;
  gap: 8px;
  margin: 14px 0 10px;
}

.lab-mode-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.5px;
  background: var(--surface-2);
  border: 1px solid var(--hairline-strong);
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.lab-mode-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lab-mode-btn.active {
  background: rgba(200, 255, 0, 0.12);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 700;
}

.lab-visual-box {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
  border-radius: 14px;
  overflow: hidden;
  background: #06060c;
  border: 1px solid var(--hairline-strong);
}

.webgl-canvas-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  user-select: none;
  background: radial-gradient(circle at 50% 50%, #10101e 0%, #06060b 90%);
}

.webgl-canvas-container:active {
  cursor: grabbing;
}

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

.canvas-3d-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 7, 10, 0.88);
  border: 1px solid rgba(200, 255, 0, 0.35);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.8px;
  color: var(--primary);
  pointer-events: none;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hint-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: ping 1.5s infinite;
}

.canvas-3d-hud-reticle {
  position: absolute;
  inset: 16px;
  pointer-events: none;
  z-index: 5;
}

.h-bracket {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: rgba(200, 255, 0, 0.55);
  border-style: solid;
}

.h-bracket.top-left { top: 0; left: 0; border-width: 2px 0 0 2px; }
.h-bracket.top-right { top: 0; right: 0; border-width: 2px 2px 0 0; }
.h-bracket.bottom-left { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.h-bracket.bottom-right { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.h-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(200, 255, 0, 0.2);
  border-radius: 50%;
  opacity: 0.7;
}

.h-crosshair::before,
.h-crosshair::after {
  content: "";
  position: absolute;
  background: rgba(200, 255, 0, 0.4);
}

.h-crosshair::before {
  top: 50%;
  left: -6px;
  right: -6px;
  height: 1px;
}

.h-crosshair::after {
  left: 50%;
  top: -6px;
  bottom: -6px;
  width: 1px;
}

.hologram-scanline-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(200, 255, 0, 0.02) 0px,
    rgba(200, 255, 0, 0.02) 1px,
    transparent 1px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 4;
}

.app-photo-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lab-scan-image {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: contrast(1.1) brightness(0.95);
}

.lab-laser-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 16px 4px var(--primary);
  top: 25%;
  transition: top 0.6s var(--ease-out);
  z-index: 10;
}

.lab-reticle {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.5s var(--ease-out);
  z-index: 11;
  pointer-events: none;
}

.reticle-box {
  width: 80px;
  height: 60px;
  border: 1.5px dashed var(--primary);
  background: rgba(200, 255, 0, 0.08);
  border-radius: 6px;
  position: relative;
}

.reticle-box::before,
.reticle-box::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: var(--primary);
  border-style: solid;
}

.reticle-box::before {
  top: -2px;
  left: -2px;
  border-width: 2px 0 0 2px;
}

.reticle-box::after {
  bottom: -2px;
  right: -2px;
  border-width: 0 2px 2px 0;
}

.reticle-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #07070a;
  background: var(--primary);
  padding: 3px 8px;
  border-radius: 4px;
}

.lab-hud-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
  text-align: center;
}

.hud-metric .m-lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-tertiary);
  margin-bottom: 2px;
}

.hud-metric .m-val {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
}

/* Right Lab Analysis */
.lab-analysis {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.radar-box {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 24px;
}

.radar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.radar-head h4 {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 17px;
  font-weight: 700;
}

.radar-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary);
  background: rgba(200, 255, 0, 0.1);
  padding: 3px 10px;
  border-radius: var(--radius-chip);
}

.svg-radar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.radar-svg {
  width: 100%;
  max-width: 280px;
  height: auto;
  overflow: visible;
}

.r-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.r-spoke {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.r-label {
  font-family: var(--font-mono);
  font-size: 9px;
  fill: var(--text-tertiary);
  letter-spacing: 0.5px;
}

.text-center { text-anchor: middle; }
.text-right { text-anchor: end; }

.radar-poly {
  fill: rgba(200, 255, 0, 0.25);
  stroke: var(--primary);
  stroke-width: 2;
  transition: all 0.6s var(--ease-out);
}

.radar-poly-secondary {
  fill: none;
  stroke: var(--secondary);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  opacity: 0.7;
}

/* AI Diagnostic Output */
.coach-diagnostic {
  background: var(--surface-2);
  border: 1px solid var(--hairline-strong);
  border-radius: 18px;
  padding: 24px;
  position: relative;
}

.diag-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.diag-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 1px;
}

.diag-status {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--warning);
  background: rgba(255, 59, 92, 0.12);
  border: 1px solid rgba(255, 59, 92, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
}

.diag-title {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.diag-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

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

.tag-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text);
  background: var(--surface-3);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--hairline);
}

/* ---------- How It Works 3-Step Flow ---------- */
.how-section {
  padding: 100px 0;
}

.steps-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  padding: 36px 30px;
  position: relative;
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.step-badge {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--primary);
  line-height: 1;
}

.step-phase {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-tertiary);
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--surface-2);
  border: 1px solid var(--hairline-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 22px;
}

.step-card:nth-child(2) .step-icon {
  color: var(--secondary);
}

.step-card:nth-child(3) .step-icon {
  color: var(--success);
}

.step-card h3 {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 21px;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.step-glow-line {
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover .step-glow-line {
  opacity: 1;
}

/* ---------- Interactive Split Generator Preview ---------- */
.split-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(14, 14, 22, 0.6), transparent);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-copy .section-tag { margin-bottom: 16px; }

.split-copy h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 18px;
}

.split-copy p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 30px;
}

.split-tab-triggers {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.split-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.25s ease;
}

.split-tab .tab-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-tertiary);
  transition: background 0.25s ease;
}

.split-tab.active {
  background: rgba(200, 255, 0, 0.12);
  border-color: var(--primary);
  color: var(--primary);
}

.split-tab.active .tab-dot {
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

.split-specs {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

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

.spec-value {
  font-weight: 600;
  color: #fff;
}

.spec-value.highlight {
  color: var(--primary);
}

/* Day Card */
.split-cards-box {
  perspective: 1400px;
}

.split-day-card {
  padding: 30px 26px;
}

.day-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 20px;
}

.day-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

.day-card-header h4 {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 20px;
  font-weight: 700;
}

.day-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  background: rgba(200, 255, 0, 0.15);
  color: var(--primary);
  border: 1px solid rgba(200, 255, 0, 0.35);
  padding: 4px 8px;
  border-radius: 4px;
}

.exercise-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exercise-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: var(--surface-2);
  border-radius: 10px;
  border: 1px solid var(--hairline);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.exercise-item:hover {
  border-color: rgba(200, 255, 0, 0.3);
  transform: translateX(4px);
}

.ex-info strong {
  display: block;
  font-size: 14.5px;
  color: #fff;
}

.ex-info span {
  font-size: 12px;
  color: var(--text-secondary);
}

.ex-sets {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(200, 255, 0, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

/* ---------- Bento Grid Features ---------- */
.bento-section {
  padding: 100px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.bento-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 32px;
}

.bento-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--hairline-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.bento-card:nth-child(2) .bento-icon { color: var(--secondary); }
.bento-card:nth-child(3) .bento-icon { color: var(--cyan); }
.bento-card:nth-child(4) .bento-icon { color: var(--caution); }
.bento-card:nth-child(5) .bento-icon { color: var(--success); }

.bento-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.bento-card h3 {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 20px;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.bento-card p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
}

.bento-pill-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.bento-pill-group span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  background: var(--surface-2);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--hairline);
}

.bento-preview-scan {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--hairline-strong);
}

.bento-preview-scan img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
}

/* ---------- Showcase Rows (Alternating Perspectives) ---------- */
.showcase-section {
  padding: 100px 0;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--hairline);
}

.showcase-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.showcase-row.reverse .showcase-copy { order: 2; }
.showcase-row.reverse .showcase-image { order: 1; }

.showcase-image {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1600px;
}

.showcase-phone {
  position: relative;
  width: min(300px, 100%);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(200, 255, 0, 0.1);
  border: 1px solid var(--hairline-strong);
  will-change: transform;
}

.showcase-phone img {
  width: 100%;
  display: block;
}

.showcase-num {
  font-family: var(--font-display);
  font-size: 54px;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  margin-bottom: 10px;
}

.showcase-copy h3 {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 30px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.showcase-copy p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 14px;
}

.check-list svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

/* ---------- Interactive Pricing Switcher & Cards ---------- */
.pricing-section {
  padding: 110px 0;
}

.pricing-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--hairline-strong);
  margin-top: 30px;
}

.toggle-lbl {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.toggle-lbl.active {
  color: #fff;
}

.savings-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  background: var(--primary);
  color: #07070a;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  margin-left: 4px;
}

.pricing-toggle {
  width: 48px;
  height: 26px;
  border-radius: 13px;
  background: var(--surface-3);
  border: 1px solid var(--hairline-strong);
  position: relative;
  transition: background 0.3s ease;
}

.pricing-toggle[aria-pressed="true"] {
  background: var(--primary);
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.25s var(--ease-out), background 0.25s ease;
}

.pricing-toggle[aria-pressed="true"] .toggle-slider {
  transform: translateX(22px);
  background: #07070a;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 56px;
}

.price-card {
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(200, 255, 0, 0.08), var(--surface) 40%);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.8), 0 0 40px -10px rgba(200, 255, 0, 0.25);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--primary);
  color: #07070a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-chip);
}

.price-card h3 {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 22px;
  margin-bottom: 6px;
}

.price-card .trial-tag {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
}

.price-amount .currency {
  font-size: 28px;
  margin-right: 2px;
}

.price-amount .period {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  margin-left: 6px;
}

.price-sub {
  font-size: 13.5px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 26px;
}

.price-features {
  flex: 1;
  margin-bottom: 30px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 0;
  border-top: 1px solid var(--hairline);
}

.price-features li:first-child {
  border-top: none;
}

.price-features svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note {
  text-align: center;
  color: var(--text-tertiary);
  font-size: 13.5px;
  margin-top: 40px;
}

/* ---------- FAQ Accordion ---------- */
.faq-section {
  padding: 100px 0;
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--hairline-strong);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.is-open {
  border-color: rgba(200, 255, 0, 0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  background: transparent;
}

.faq-question .plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease;
}

.faq-question .plus::before,
.faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--text-secondary);
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-question .plus::before { width: 10px; height: 1.5px; }
.faq-question .plus::after { width: 1.5px; height: 10px; }

.faq-item.is-open .plus {
  border-color: var(--primary);
  transform: rotate(45deg);
}

.faq-item.is-open .plus::before,
.faq-item.is-open .plus::after {
  background: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.faq-answer-inner a {
  color: var(--primary);
  text-decoration: underline;
}

/* ---------- Final Waitlist CTA Band ---------- */
.cta-section {
  padding: 100px 0;
}

.cta-band {
  position: relative;
  border-radius: var(--radius-sheet);
  overflow: hidden;
  padding: 88px 48px;
  text-align: center;
  isolation: isolate;
  border: 1px solid var(--hairline-strong);
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 80% at 50% 10%, rgba(200, 255, 0, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(7, 7, 10, 0.94) 0%, rgba(7, 7, 10, 0.82) 50%, rgba(7, 7, 10, 0.96) 100%);
}

.cta-content {
  max-width: 580px;
  margin-inline: auto;
}

.cta-band h2 {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 18px;
}

.cta-band p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.waitlist-form {
  max-width: 480px;
  margin-inline: auto;
}

.input-glow-wrap {
  display: flex;
  gap: 10px;
  background: rgba(18, 18, 28, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-pill);
  padding: 6px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.input-glow-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 24px -4px rgba(200, 255, 0, 0.35);
}

.input-glow-wrap input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0 18px;
  color: #fff;
  font-size: 15px;
}

.input-glow-wrap input[type="email"]::placeholder {
  color: var(--text-tertiary);
}

.input-glow-wrap input[type="email"]:focus {
  outline: none;
}

.form-status {
  margin-top: 10px;
  font-size: 13.5px;
  min-height: 20px;
}

.form-status.success { color: var(--success); }
.form-status.error { color: var(--warning); }

.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--hairline-strong);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-input);
  padding: 10px 20px;
  font-size: 12px;
  color: var(--text-secondary);
}

.store-badge strong {
  display: block;
  font-size: 14px;
  color: #fff;
}

/* ---------- Footer ---------- */
footer {
  padding: 80px 0 36px;
  border-top: 1px solid var(--hairline);
  background: #060609;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--success);
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid rgba(0, 229, 160, 0.2);
  padding: 4px 10px;
  border-radius: var(--radius-chip);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 6px var(--success);
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 22px;
}

.footer-col li {
  margin-bottom: 13px;
}

.footer-col a {
  font-size: 14.5px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--hairline);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-tertiary);
}

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

.footer-legal-links a {
  font-size: 13px;
  color: var(--text-tertiary);
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--text-secondary);
}

/* ---------- Responsive Breakpoints ---------- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    order: -1;
    margin-bottom: 20px;
  }
  .hologram-badge { display: none; }
  .lab-workspace {
    grid-template-columns: 1fr;
  }
  .split-layout {
    grid-template-columns: 1fr;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-wide {
    grid-column: span 2;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }
  .price-card.featured {
    transform: none;
  }
  .showcase-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .showcase-row.reverse .showcase-copy { order: 1; }
  .showcase-row.reverse .showcase-image { order: 2; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 80px 0; }
  .hero { padding-top: 110px; }
  .steps-flow { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .input-glow-wrap { flex-direction: column; background: transparent; border: none; padding: 0; }
  .input-glow-wrap input[type="email"] {
    background: var(--surface-2);
    border: 1px solid var(--hairline-strong);
    border-radius: var(--radius-pill);
    height: 52px;
    padding: 0 20px;
  }
  .input-glow-wrap .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .cursor-glow, .scanner-laser, .laser-radar-line { display: none !important; }
}

/* ---------- Waitlist Modal Dialog ---------- */
.waitlist-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(7, 7, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.waitlist-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.waitlist-modal-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #11111c;
  border: 1px solid rgba(200, 255, 0, 0.35);
  border-radius: var(--radius-sheet);
  padding: 38px 32px 30px;
  box-shadow: 0 30px 90px -15px rgba(0, 0, 0, 0.9), 0 0 50px -10px rgba(200, 255, 0, 0.25);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s var(--ease-out);
  overflow: visible;
}

.waitlist-modal-backdrop.is-open .waitlist-modal-card {
  transform: scale(1) translateY(0);
}

/* Modal Close Button (X) */
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.25s ease, box-shadow 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 59, 92, 0.2);
  border-color: rgba(255, 59, 92, 0.6);
  color: #ff3b5c;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 16px rgba(255, 59, 92, 0.35);
}

.modal-close-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.modal-dismiss-btn {
  background: transparent;
  border: 1px solid var(--hairline-strong);
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  width: 100%;
  text-align: center;
  margin-top: 4px;
}

.modal-dismiss-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--primary);
  background: rgba(200, 255, 0, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-chip);
  margin-bottom: 14px;
}

.waitlist-modal-card h3 {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

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

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-pill);
  padding: 0 18px;
  height: 52px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.modal-input-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 20px -4px rgba(200, 255, 0, 0.35);
}

.modal-input-icon {
  color: var(--text-tertiary);
  margin-right: 10px;
  flex-shrink: 0;
}

.modal-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14.5px;
}

.modal-input-wrap input::placeholder {
  color: var(--text-tertiary);
}

.modal-input-wrap input:focus {
  outline: none;
}

.modal-status {
  font-size: 13px;
  min-height: 18px;
  margin-top: 4px;
}

.modal-status.success { color: var(--success); }
.modal-status.error { color: var(--warning); }

.modal-footer-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}

.modal-footer-note svg {
  color: var(--success);
  flex-shrink: 0;
}

/* Mobile Close Button in Drawer */
.mobile-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--hairline-strong);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-close-btn:hover {
  background: rgba(255, 59, 92, 0.15);
  color: #ff3b5c;
  transform: rotate(90deg);
}

/* ---------- Legal pages (privacy / terms) ---------- */
.legal-page {
  padding-top: 160px;
  padding-bottom: 100px;
}

.legal-header {
  max-width: 760px;
  margin: 0 auto 56px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 40px;
}

.legal-header .section-tag { margin-bottom: 18px; }

.legal-header h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 14px;
}

.legal-header .updated {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
}

.legal-body {
  max-width: 760px;
  margin-inline: auto;
}

.legal-body h2 {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 23px;
  margin-top: 48px;
  margin-bottom: 16px;
  scroll-margin-top: 100px;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body h3 {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 17px;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-body p {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

.legal-body ul,
.legal-body ol {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 22px;
}

.legal-body ul { list-style: disc; }
.legal-body ol { list-style: decimal; }
.legal-body li { margin-bottom: 8px; }

.legal-body strong { color: var(--text); }

.legal-toc {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  margin-bottom: 48px;
}

.legal-toc h2 {
  font-size: 13px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-tertiary);
  margin: 0 0 16px;
}

.legal-toc ol {
  columns: 2;
  padding-left: 18px;
  font-size: 14px;
}

.legal-toc a { color: var(--text-secondary); }
.legal-toc a:hover { color: var(--primary); }

.legal-callout {
  background: rgba(200, 255, 0, 0.06);
  border: 1px solid rgba(200, 255, 0, 0.25);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-callout strong { color: var(--primary); }

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 14px;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--hairline);
  color: var(--text-secondary);
  vertical-align: top;
}

.data-table th {
  color: var(--text);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.back-link:hover { color: var(--primary); }

