:root {
  --bg-deep: #040806;
  --bg-surface: #0a100c;
  --bg-muted: #0f1610;
  --bg-elevated: #141c14;
  --text-primary: #f0f7eb;
  --text-secondary: #9aab94;
  --text-muted: #6b7a66;
  --neon-green: #39ff14;
  --neon-lime: #b6ff00;
  --neon-teal: #00ff88;
  --neon-mint: #7fff7f;
  --accent: var(--neon-green);
  --accent-on: #040806;
  --accent-muted: #2ecc12;
  --border: rgba(57, 255, 20, 0.12);
  --border-strong: rgba(57, 255, 20, 0.32);
  --glow-green: 0 0 40px rgba(57, 255, 20, 0.22);
  --glow-lime: 0 0 40px rgba(182, 255, 0, 0.18);
  --glow-teal: 0 0 40px rgba(0, 255, 136, 0.18);
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max-width: 1180px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.45, 0.64, 1);
  --duration-instant: 120ms;
  --duration-fast: 200ms;
  --duration-normal: 320ms;
  --duration-beat: 420ms;
  --duration-slow: 520ms;
  --stagger-step: 45ms;
  --motion: var(--duration-fast) var(--ease-in-out);
  --motion-beat: var(--duration-beat) var(--ease-out);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-deep);
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

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

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

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(57, 255, 20, 0.1), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(0, 255, 136, 0.07), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(182, 255, 0, 0.05), transparent 45%),
    var(--bg-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  background: rgba(5, 5, 8, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.logo-lockup img {
  filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.4));
}

.site-nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.site-nav a {
  transition: color var(--motion);
}

.site-nav a:hover {
  color: var(--neon-green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    transform var(--motion),
    box-shadow var(--motion),
    background var(--motion),
    border-color var(--motion);
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--accent-on);
  background: linear-gradient(135deg, var(--neon-green), var(--neon-teal));
  border-radius: var(--radius-pill);
  box-shadow: var(--glow-green);
}

.button-primary:hover {
  box-shadow: 0 0 50px rgba(57, 255, 20, 0.45);
}

.button-ghost {
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
}

.button-ghost:hover {
  border-color: var(--neon-green);
  box-shadow: inset 0 0 20px rgba(57, 255, 20, 0.06);
}

.button-sm {
  min-height: 2.5rem;
  padding: 0 1.125rem;
  font-size: 0.875rem;
}

.button-lg {
  min-height: 3.5rem;
  padding: 0 2rem;
  font-size: 1rem;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem 3.5rem;
  align-items: center;
  padding: 4rem 0 5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--neon-green);
}

.hero h1 {
  margin: 0 0 1.25rem;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.gradient-text {
  background: linear-gradient(90deg, var(--neon-green), var(--neon-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede,
.section-lede {
  margin: 0 0 2rem;
  max-width: 34rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 1.0625rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.social-proof {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.stat-icon {
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  margin-bottom: 0.25rem;
  color: var(--neon-green);
  filter: drop-shadow(0 0 6px rgba(57, 255, 20, 0.35));
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--neon-green);
}

.stat span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.avatar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar-row p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent-on);
  background: linear-gradient(
    135deg,
    hsl(var(--hue, 180) 100% 55%),
    hsl(calc(var(--hue, 180) + 40) 100% 45%)
  );
  box-shadow: 0 0 12px hsla(var(--hue, 180), 100%, 55%, 0.35);
}

.avatar-row .avatar:not(:first-child) {
  margin-left: -0.5rem;
}

.hero-media {
  perspective: 1200px;
  width: 100%;
  min-width: 0;
  overflow: visible;
  padding: 0.75rem 0.5rem 0 0.25rem;
}

.hyperframes-theater {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  box-shadow: var(--glow-green), 0 24px 64px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.hyperframes-theater.hero-theater {
  overflow: visible;
}

.hero-theater {
  transform: rotateY(-3deg) rotateX(1.5deg);
  transform-style: preserve-3d;
  overflow: visible;
}

.hero-theater .hyperframes-stage {
  cursor: default;
  aspect-ratio: 3 / 2;
  min-height: 0;
  background: #040806;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  isolation: isolate;
}

.hero-theater .hyperframe-overlay {
  display: none !important;
}

.hero-theater .hyperframe-video,
.hero-theater .hyperframe-poster,
.hero-theater .hyperframe-poster.is-visible,
.hero-theater .hyperframe-poster.is-fading,
.hero-theater .hyperframe-poster.is-entering,
.hero-theater .hyperframe-poster.is-visible.is-entering,
.hero-theater .hyperframe-poster.is-revealing-out {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center;
  transform: none !important;
  will-change: opacity;
}

.hero-theater .hyperframe-video {
  z-index: 0;
}

.hero-theater .hero-carousel-nav {
  display: none !important;
}

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

.hero-carousel-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.35rem;
  pointer-events: none;
  z-index: 3;
}

.hero-carousel-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: rgba(15, 26, 10, 0.85);
  color: var(--neon-green);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition:
    opacity var(--motion),
    background var(--motion),
    box-shadow var(--motion),
    transform var(--motion);
}

.hero-theater:hover .hero-carousel-btn,
.hero-theater:focus-within .hero-carousel-btn {
  opacity: 1;
}

.hero-carousel-btn:hover {
  background: rgba(57, 255, 20, 0.12);
  box-shadow: var(--glow-green);
  transform: scale(1.08);
}

.hero-carousel-btn.is-pressed {
  transform: scale(0.92);
  transition-duration: var(--duration-instant);
}

.hero-hyperframe-dots {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  padding: 0.75rem 1.25rem 0.875rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(8, 14, 10, 0.96) 0%,
    var(--bg-surface) 100%
  );
}

.hero-hyperframe-dots::before {
  content: "";
  position: absolute;
  left: 1.75rem;
  right: 1.75rem;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(57, 255, 20, 0.12) 6%,
    rgba(57, 255, 20, 0.24) 50%,
    rgba(57, 255, 20, 0.12) 94%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-hyperframe-dots .hyperframe-dot {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  padding: 0.875rem;
  border: 1px solid rgba(57, 255, 20, 0.14);
  background: rgba(57, 255, 20, 0.16);
  background-clip: content-box;
  box-shadow: inset 0 0 0 1px rgba(57, 255, 20, 0.06);
  transform: scale(1);
}

.hero-hyperframe-dots .hyperframe-dot:hover {
  background: rgba(57, 255, 20, 0.28);
  border-color: rgba(57, 255, 20, 0.28);
  transform: scale(1.08);
}

.hero-hyperframe-dots .hyperframe-dot.is-active {
  width: 0.5625rem;
  height: 0.5625rem;
  padding: 0.8125rem;
  background: var(--neon-green);
  border-color: rgba(57, 255, 20, 0.55);
  box-shadow:
    0 0 14px rgba(57, 255, 20, 0.45),
    0 0 0 3px rgba(57, 255, 20, 0.14);
  transform: scale(1);
  animation: hero-dot-glow-pulse 2s var(--ease-in-out) infinite;
}

.hero-hyperframe-dots .hyperframe-dot.is-active:hover {
  transform: scale(1.06);
}

.hero-hyperframe-dots .hyperframe-dot.is-activating {
  animation: hero-dot-activate var(--duration-beat) var(--ease-spring);
}

@keyframes hero-dot-activate {
  0% {
    transform: scale(1);
  }
  55% {
    transform: scale(1.18);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes hero-dot-glow-pulse {
  0%,
  100% {
    box-shadow:
      0 0 12px rgba(57, 255, 20, 0.38),
      0 0 0 3px rgba(57, 255, 20, 0.12);
  }
  50% {
    box-shadow:
      0 0 20px rgba(57, 255, 20, 0.58),
      0 0 0 4px rgba(57, 255, 20, 0.2);
  }
}

.hyperframes-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-deep);
  overflow: hidden;
  border-radius: inherit;
  transition: box-shadow var(--duration-slow) var(--ease-out);
}

.hyperframes-stage.is-playing {
  animation: stage-glow-pulse 2.4s var(--ease-in-out) infinite;
}

.hyperframes-stage.is-beat-changing .hyperframe-poster {
  transition-duration: var(--duration-beat);
}

@keyframes stage-glow-pulse {
  0%,
  100% {
    box-shadow: inset 0 0 0 1px rgba(57, 255, 20, 0.08);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(57, 255, 20, 0.28),
      inset 0 0 24px rgba(57, 255, 20, 0.06);
  }
}

.hyperframe-video,
.hyperframe-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  filter: blur(0);
  transition:
    opacity var(--motion-beat),
    transform var(--motion-beat),
    filter var(--motion-beat);
  will-change: opacity, transform, filter;
}

.hyperframe-poster.is-visible,
.hyperframe-video.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.hero-theater .hyperframe-poster.is-fading {
  opacity: 0;
  filter: blur(3px);
}

.hero-theater .hyperframe-poster.is-entering {
  opacity: 0;
  filter: blur(4px);
}

.hero-theater .hyperframe-poster.is-visible.is-entering {
  opacity: 1;
  filter: blur(0);
}

.hyperframe-poster.is-fading {
  opacity: 0;
  transform: scale(1.035) translateX(calc(var(--beat-direction, 0) * -8px));
  filter: blur(3px);
}

.hyperframe-poster.is-entering {
  opacity: 0;
  transform: scale(0.985) translateX(calc(var(--beat-direction, 0) * 10px));
  filter: blur(4px);
}

.hyperframe-poster.is-visible.is-entering {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.hyperframe-poster.is-revealing-out {
  opacity: 0;
  transform: scale(1.04);
  filter: blur(6px);
}

.hyperframe-video.is-revealing-in {
  opacity: 0;
  transform: scale(0.97);
  filter: blur(4px);
}

.hyperframe-video.is-visible.is-revealing-in {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.hyperframe-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  padding: 2rem 1.25rem 0.875rem;
  border-radius: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.68) 52%,
    rgba(0, 0, 0, 0.22) 82%,
    transparent 100%
  );
  color: #fff;
  border: none;
  box-shadow: none;
  pointer-events: none;
  transform: translateY(0);
  opacity: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  transition:
    opacity var(--duration-normal) var(--ease-out),
    transform var(--duration-normal) var(--ease-out),
    filter var(--duration-normal) var(--ease-out);
}

.hyperframe-overlay.is-exiting {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(4px);
}

.hyperframe-overlay.is-entering {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(6px);
}

.hyperframe-overlay.is-entering.is-settled {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hyperframe-overlay.is-entering .hyperframe-step {
  animation: subtitle-stagger-in var(--duration-beat) var(--ease-out) both;
}

.hyperframe-overlay.is-entering .hyperframe-title {
  animation: subtitle-stagger-in var(--duration-beat) var(--ease-out) both;
  animation-delay: var(--stagger-step);
}

.hyperframe-overlay.is-entering .hyperframe-caption {
  animation: subtitle-stagger-in var(--duration-beat) var(--ease-out) both;
  animation-delay: calc(var(--stagger-step) * 2);
}

@keyframes subtitle-stagger-in {
  from {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hyperframe-step {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
  display: block;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.hyperframe-step.is-ticking {
  animation: step-tick var(--duration-beat) var(--ease-spring);
}

@keyframes step-tick {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.75;
  }
  35% {
    transform: translateY(-5px) scale(0.92);
    opacity: 0.35;
    filter: blur(2px);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.75;
    filter: blur(0);
  }
}

.hyperframe-title {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.hyperframe-caption {
  margin: 0.2rem 0 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.4;
  opacity: 0.88;
  max-width: none;
}

.demo-theater .hyperframes-stage {
  cursor: default;
}

.demo-video {
  opacity: 1;
  transform: scale(1);
  filter: none;
}

.hyperframe-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1.25rem 1.25rem;
}

.hyperframe-dots.hero-hyperframe-dots {
  justify-content: space-evenly;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0.75rem 1.25rem 0.875rem;
}

.hyperframe-dot {
  width: 0.625rem;
  height: 0.625rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--bg-elevated);
  cursor: pointer;
  transform: scale(1);
  transition:
    background var(--motion),
    box-shadow var(--motion),
    transform var(--duration-normal) var(--ease-spring);
}

.hyperframe-dot.is-active {
  background: var(--neon-green);
  box-shadow:
    var(--glow-green),
    0 0 0 3px rgba(57, 255, 20, 0.12);
  transform: scale(1.35);
  animation: dot-glow-pulse 1.8s var(--ease-in-out) infinite;
}

.hyperframe-dot.is-activating {
  animation: dot-activate var(--duration-beat) var(--ease-spring);
}

@keyframes dot-activate {
  0% {
    transform: scale(1);
  }
  55% {
    transform: scale(1.55);
  }
  100% {
    transform: scale(1.35);
  }
}

@keyframes dot-glow-pulse {
  0%,
  100% {
    box-shadow:
      0 0 12px rgba(57, 255, 20, 0.35),
      0 0 0 3px rgba(57, 255, 20, 0.1);
  }
  50% {
    box-shadow:
      0 0 22px rgba(57, 255, 20, 0.55),
      0 0 0 4px rgba(57, 255, 20, 0.18);
  }
}

.hyperframe-dot:hover {
  background: var(--neon-teal);
  transform: scale(1.2);
}

.hyperframe-dot.is-active:hover {
  transform: scale(1.4);
}

.panel {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.panel-muted {
  background: linear-gradient(180deg, rgba(15, 22, 16, 0.5), transparent);
  margin-inline: -1.25rem;
  padding-inline: 1.25rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.section-head h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition:
    transform var(--motion),
    border-color var(--motion),
    box-shadow var(--motion);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--glow-green);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-on);
  background: linear-gradient(135deg, var(--neon-green), var(--accent-muted));
  box-shadow: var(--glow-green);
}

.feature-icon.accent-lime {
  background: linear-gradient(135deg, var(--neon-lime), #8fcc00);
  box-shadow: var(--glow-lime);
}

.feature-icon.accent-teal {
  background: linear-gradient(135deg, var(--neon-teal), #00cc6a);
  box-shadow: var(--glow-teal);
}

.feature-card h3 {
  margin: 0 0 0.625rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.testimonial {
  margin: 0;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border);
}

.testimonial p {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.testimonial p::before {
  content: "\201C";
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--neon-green);
  opacity: 0.5;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
}

.testimonial footer span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  transition: color var(--motion);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--neon-green);
  transition: transform var(--motion);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--neon-green);
}

.faq-item p {
  margin: 0 0 1.25rem;
  padding-right: 2rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.final-cta {
  margin-top: 2rem;
}

.final-cta-inner {
  padding: 4rem 2.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(57, 255, 20, 0.1), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(0, 255, 136, 0.08), transparent 50%),
    var(--bg-surface);
  box-shadow: var(--glow-green);
}

.final-cta-inner h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.final-cta-inner p {
  max-width: 32rem;
  margin: 0 auto 2rem;
  color: var(--text-secondary);
}

.final-cta .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.25rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  margin: 1rem 0 0;
  max-width: 20rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-grid h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

.footer-grid a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--motion);
}

.footer-grid a:hover {
  color: var(--neon-green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 240ms;
}

.reveal-delay-4 {
  transition-delay: 320ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-carousel-btn {
    opacity: 1;
  }

  .hyperframes-stage.is-playing {
    animation: none;
    box-shadow: inset 0 0 0 1px rgba(57, 255, 20, 0.12);
  }

  .hyperframe-video,
  .hyperframe-poster,
  .hyperframe-overlay,
  .hyperframe-step,
  .hyperframe-dot {
    transition: none;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }

  .hyperframe-dot.is-active {
    transform: scale(1.15);
  }

  .hero-hyperframe-dots .hyperframe-dot,
  .hero-hyperframe-dots .hyperframe-dot.is-active {
    animation: none !important;
    transform: none !important;
  }

  .hero-hyperframe-dots .hyperframe-dot.is-active {
    box-shadow:
      0 0 10px rgba(57, 255, 20, 0.35),
      0 0 0 3px rgba(57, 255, 20, 0.12);
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button:hover,
  .feature-card:hover,
  .hero-carousel-btn:hover,
  .hyperframe-dot:hover {
    transform: none;
  }
}

@media (min-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 2.5rem 4rem;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 2.5rem;
  }

  .hero h1 {
    max-width: none;
  }

  .dashboard-mock {
    transform: none;
  }

  .hero-theater {
    transform: none;
  }

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

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

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

@media (max-width: 640px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .hero-hyperframe-dots {
    padding: 0.625rem 0.875rem 0.75rem;
  }

  .hero-hyperframe-dots::before {
    left: 1.25rem;
    right: 1.25rem;
  }

  .hero-hyperframe-dots .hyperframe-dot {
    padding: 1rem;
  }

  .hero-hyperframe-dots .hyperframe-dot.is-active {
    padding: 0.9375rem;
  }

  .hero-carousel-btn {
    width: 2rem;
    height: 2rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

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

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

  .footer-bottom {
    flex-direction: column;
  }

  .final-cta-inner {
    padding: 2.5rem 1.5rem;
  }
}
