:root {
  --bg: #040806;
  --bg-soft: #0a130f;
  --surface: #0f1915;
  --surface-strong: #13221b;
  --surface-border: #22342c;
  --text: #eaf6ef;
  --text-muted: #9bb2a5;
  --accent: #33e88a;
  --accent-strong: #5bfbb1;
  --accent-soft: rgba(51, 232, 138, 0.16);
  --danger-soft: #ff547433;
  --container: min(1140px, 92vw);
  --logo-size: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 84% -8%, rgba(91, 251, 177, 0.2), transparent 30%),
    radial-gradient(circle at 12% 12%, rgba(51, 232, 138, 0.12), transparent 32%),
    var(--bg);
  line-height: 1.62;
}

.background-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 22%, rgba(51, 232, 138, 0.15), transparent 56%);
  z-index: -2;
}

.background-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 55% 34%, rgba(0, 0, 0, 0.74), transparent 74%);
  z-index: -1;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 4.9rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(51, 232, 138, 0.11);
  backdrop-filter: blur(10px);
  background: rgba(4, 8, 6, 0.84);
}

.nav-wrap {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-logo {
  width: var(--logo-size);
  height: var(--logo-size);
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 0 11px rgba(51, 232, 138, 0.24));
}

.brand-name {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-nav a {
  transition: color 0.2s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.nav-link-btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
  border-radius: 999px;
}

.nav-link-btn {
  padding: 0.54rem 0.75rem;
  border: 1px solid rgba(151, 177, 164, 0.26);
  background: rgba(8, 14, 11, 0.7);
  color: #d8ece1;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.nav-link-btn:hover {
  border-color: rgba(91, 251, 177, 0.42);
  color: var(--text);
  box-shadow: 0 0 16px rgba(51, 232, 138, 0.14);
}

.nav-cta {
  padding: 0.56rem 0.88rem;
  border: 1px solid rgba(51, 232, 138, 0.28);
  background: rgba(20, 38, 29, 0.66);
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  border-color: rgba(91, 251, 177, 0.55);
  color: var(--accent-strong);
  box-shadow: 0 0 16px rgba(51, 232, 138, 0.18);
}

.hero {
  padding-top: 3.2rem;
}

.hero-grid {
  display: grid;
  gap: 2.2rem;
}

.hero-copy {
  position: relative;
  padding: 1.12rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(51, 232, 138, 0.14);
  background:
    linear-gradient(160deg, rgba(16, 27, 21, 0.7), rgba(8, 14, 11, 0.1)),
    linear-gradient(90deg, transparent 0%, rgba(255, 84, 116, 0.06) 100%);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.84rem;
  padding: 0.31rem 0.62rem;
  color: var(--accent);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(51, 232, 138, 0.3);
  border-radius: 999px;
  background: rgba(8, 14, 11, 0.72);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.15rem, 8.2vw, 4rem);
  letter-spacing: -0.03em;
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.68rem, 5.2vw, 2.65rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.21rem;
}

.hero-secondary {
  margin: 0.82rem 0 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.08rem, 3.8vw, 1.35rem);
  color: #ffd7e1;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-subtext {
  max-width: 58ch;
  margin: 1.2rem 0 0;
  color: var(--text-muted);
}

.hero-actions {
  margin-top: 1.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border-radius: 0.8rem;
  padding: 0.83rem 1.16rem;
  border: 1px solid transparent;
  font-size: 0.94rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #04160b;
  background: linear-gradient(120deg, #25cf77, var(--accent-strong));
  box-shadow: 0 0 0 1px rgba(91, 251, 177, 0.35), 0 10px 30px rgba(37, 207, 119, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(91, 251, 177, 0.5), 0 15px 30px rgba(37, 207, 119, 0.3);
}

.btn-secondary {
  color: var(--text);
  border-color: #2f4439;
  background: rgba(18, 29, 23, 0.74);
}

.btn-secondary:hover {
  border-color: #3a574a;
  box-shadow: 0 0 22px rgba(51, 232, 138, 0.12);
}

.btn-ghost {
  color: #d8f5e6;
  border-color: rgba(91, 251, 177, 0.2);
  background: rgba(8, 14, 11, 0.2);
}

.btn-ghost:hover {
  border-color: rgba(91, 251, 177, 0.42);
  box-shadow: 0 0 18px rgba(51, 232, 138, 0.16);
}

.hero-tags {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.hero-tags li {
  padding: 0.34rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(51, 232, 138, 0.24);
  background: rgba(8, 14, 11, 0.63);
  color: #c3ebd3;
  font-size: 0.81rem;
  font-weight: 700;
}

.compat-note {
  margin: 0.95rem 0 0;
  color: #ccefd9;
  font-size: 0.88rem;
}

.live-stats-wrap {
  margin-top: 1rem;
}

.live-stats {
  margin-top: 0;
  display: grid;
  gap: 0.62rem;
}

.live-stats-fallback {
  margin: 0;
  color: #c6d9cf;
  font-size: 0.84rem;
  font-weight: 600;
}

.live-stats-fallback[hidden] {
  display: none;
}

.live-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.62rem 0.74rem;
  border-radius: 0.76rem;
  border: 1px solid rgba(91, 251, 177, 0.24);
  background: rgba(9, 16, 12, 0.73);
}

.live-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  color: #caedd8;
  font-size: 0.84rem;
  font-weight: 700;
}

.live-dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: var(--accent-strong);
  box-shadow: 0 0 0 0 rgba(91, 251, 177, 0.56);
  animation: pulseDot 1.8s ease-out infinite;
}

.live-value {
  margin: 0;
  color: var(--text);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.hero-logo-wrap {
  justify-self: center;
  width: min(490px, 92vw);
  position: relative;
  overflow: hidden;
  border-radius: 1.3rem;
  padding: clamp(1rem, 3.4vw, 1.6rem);
  background: linear-gradient(160deg, rgba(14, 24, 19, 0.94), rgba(8, 14, 11, 0.9));
  border: 1px solid rgba(51, 232, 138, 0.2);
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(91, 251, 177, 0.2), rgba(255, 84, 116, 0.08) 46%, transparent);
  z-index: -1;
}

.hero-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 45px rgba(51, 232, 138, 0.22));
}

.logo-caption {
  margin: 0.76rem 0 0;
  color: #d9f7e7;
  font-size: 0.86rem;
  text-align: center;
  font-weight: 700;
}

.laser-overlay {
  position: absolute;
  inset: 16% 14% 26% 14%;
  pointer-events: none;
  z-index: 2;
}

.laser-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 32% 36%, rgba(91, 251, 177, 0.42), transparent 22%),
    radial-gradient(circle at 68% 36%, rgba(91, 251, 177, 0.42), transparent 22%);
  animation: eyeGlow 2.8s ease-in-out infinite;
}

.laser-overlay::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  top: 34%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(134, 255, 196, 0.95), transparent);
  box-shadow: 0 0 18px rgba(91, 251, 177, 0.8);
  animation: laserSweep 2.9s linear infinite;
}

.section-kicker {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.section-lead {
  margin: 0.86rem 0 0;
  max-width: 62ch;
  color: var(--text-muted);
}

.quick-start {
  padding-top: 3.5rem;
}

.quick-start h2 {
  max-width: 18ch;
}

.quick-start-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.quick-start-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(91, 251, 177, 0.24);
  border-radius: 1rem;
  padding: 1.24rem;
  background:
    linear-gradient(160deg, rgba(14, 24, 19, 0.95), rgba(10, 17, 14, 0.9)),
    radial-gradient(circle at 96% 0%, rgba(255, 84, 116, 0.1), transparent 40%);
}

.quick-start-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-strong), rgba(255, 84, 116, 0.75));
  opacity: 0.8;
}

.quick-start-card h3 {
  margin-top: 0.52rem;
}

.quick-start-card p {
  margin: 0.68rem 0 0;
  color: var(--text-muted);
}

.card-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card {
  background: linear-gradient(165deg, rgba(17, 27, 22, 0.96), rgba(11, 18, 15, 0.95));
  border: 1px solid var(--surface-border);
  border-radius: 1rem;
  padding: 1.34rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(91, 251, 177, 0.3);
  box-shadow: 0 12px 30px rgba(4, 9, 7, 0.55);
}

.card-label {
  margin: 0;
  color: #ffd0dd;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  font-weight: 800;
}

.card h3 {
  margin-top: 0.56rem;
}

.card p {
  margin: 0.7rem 0 0;
  color: var(--text-muted);
}

.how-it-works {
  padding-top: 3.1rem;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 1.72rem 0 0;
  display: grid;
  gap: 1rem;
}

.step {
  background: linear-gradient(170deg, rgba(15, 25, 20, 0.85), rgba(11, 18, 15, 0.82));
  border: 1px solid var(--surface-border);
  border-radius: 1rem;
  padding: 1.24rem;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 1.94rem;
  height: 1.94rem;
  border-radius: 999px;
  background: rgba(51, 232, 138, 0.18);
  border: 1px solid rgba(91, 251, 177, 0.45);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.78rem;
}

.step p {
  margin: 0.66rem 0 0;
  color: var(--text-muted);
}

.matter-grid {
  display: grid;
  gap: 1rem;
}

.matter-copy {
  border: 1px solid rgba(91, 251, 177, 0.2);
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(15, 24, 19, 0.88), rgba(9, 14, 12, 0.85));
  padding: 1.35rem;
}

.matter-copy p {
  margin: 0.84rem 0 0;
  color: var(--text-muted);
}

.matter-points {
  margin: 1rem 0 0;
  padding-left: 1.14rem;
  color: #d7f4e4;
}

.matter-points li + li {
  margin-top: 0.45rem;
}

.quote-card {
  border: 1px solid rgba(255, 84, 116, 0.28);
  border-radius: 1rem;
  background: linear-gradient(155deg, rgba(18, 25, 22, 0.95), rgba(16, 13, 15, 0.88));
  padding: 1.35rem;
}

.quote-line {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.14rem;
  line-height: 1.35;
  color: #ffe0e8;
}

.quote-support {
  margin: 0.85rem 0 0;
  color: var(--text-muted);
}

.mission {
  padding-top: 3.1rem;
}

.mission-card {
  border-radius: 1.18rem;
  padding: clamp(1.75rem, 4.5vw, 2.8rem);
  border: 1px solid rgba(255, 84, 116, 0.24);
  background:
    linear-gradient(140deg, rgba(18, 30, 24, 0.96), rgba(12, 17, 14, 0.92)),
    radial-gradient(circle at 96% 12%, rgba(255, 84, 116, 0.12), transparent 40%);
}

.mission-card p {
  margin: 0.84rem 0 0;
  max-width: 68ch;
  color: var(--text-muted);
}

.faq {
  padding-top: 3.1rem;
}

.faq-list {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--surface-border);
  border-radius: 0.9rem;
  background: linear-gradient(160deg, rgba(14, 22, 18, 0.9), rgba(11, 16, 14, 0.88));
  padding: 0.95rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0.74rem 0 0;
  color: var(--text-muted);
}

.cta-card {
  text-align: center;
  border: 1px solid rgba(91, 251, 177, 0.3);
  border-radius: 1.3rem;
  padding: clamp(1.9rem, 5.6vw, 3.15rem);
  background:
    linear-gradient(145deg, rgba(19, 31, 25, 0.96), rgba(8, 12, 10, 0.93)),
    radial-gradient(circle at 95% 0, rgba(255, 84, 116, 0.11), transparent 38%);
  box-shadow: 0 0 45px rgba(51, 232, 138, 0.08);
}

.cta-card p {
  margin: 0.9rem auto 1.3rem;
  max-width: 52ch;
  color: var(--text-muted);
}

.cta-actions {
  margin: 0 auto;
  max-width: 760px;
  display: grid;
  gap: 0.65rem;
}

.btn-large {
  width: 100%;
  padding: 0.95rem 1.4rem;
}

.cta-note {
  margin: 0.85rem 0 0;
  color: #c2edd6;
  font-size: 0.91rem;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid rgba(51, 232, 138, 0.1);
  padding: 1.15rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.78rem;
}

.footer-brand p {
  margin: 0;
}

.footer-tagline {
  color: #d7f6e6;
  font-weight: 700;
  margin-top: 0.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}

.footer-links a {
  transition: color 0.2s ease;
}

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

.legal-main {
  padding: 2.8rem 0 3.6rem;
}

.legal-layout {
  max-width: 860px;
}

.legal-card {
  border: 1px solid rgba(51, 232, 138, 0.16);
  border-radius: 1.2rem;
  padding: clamp(1.1rem, 3.3vw, 2rem);
  background:
    linear-gradient(155deg, rgba(15, 24, 19, 0.92), rgba(8, 13, 10, 0.92)),
    radial-gradient(circle at 90% -10%, rgba(51, 232, 138, 0.12), transparent 36%);
}

.legal-title {
  margin-top: 0.25rem;
  margin-bottom: 0.35rem;
}

.legal-meta {
  margin: 0 0 1.25rem;
  color: #cde5d8;
  font-size: 0.88rem;
  font-weight: 700;
}

.legal-card h2 {
  margin-top: 1.45rem;
  margin-bottom: 0.52rem;
  font-size: 1.15rem;
}

.legal-card p {
  margin: 0.58rem 0;
  color: var(--text-muted);
}

.legal-card ul,
.legal-card ol {
  margin: 0.58rem 0 0.6rem;
  padding-left: 1.15rem;
  color: var(--text-muted);
}

.legal-card li + li {
  margin-top: 0.38rem;
}

.report-form {
  margin-top: 1.35rem;
  position: relative;
  display: grid;
  gap: 0.84rem;
}

.form-row {
  display: grid;
  gap: 0.84rem;
}

.report-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: #cee7db;
  font-weight: 700;
}

.report-form input,
.report-form select,
.report-form textarea {
  width: 100%;
  padding: 0.66rem 0.74rem;
  border: 1px solid rgba(96, 131, 116, 0.55);
  border-radius: 0.72rem;
  background: rgba(9, 15, 12, 0.78);
  color: var(--text);
  font: inherit;
}

.report-form textarea {
  resize: vertical;
  min-height: 120px;
}

.report-form input:focus,
.report-form select:focus,
.report-form textarea:focus {
  outline: 2px solid rgba(91, 251, 177, 0.25);
  border-color: rgba(91, 251, 177, 0.45);
}

.report-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.report-form button[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.report-help {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.report-status {
  margin: 0.1rem 0 0;
  font-size: 0.86rem;
  color: #cdebd9;
  font-weight: 600;
}

.report-status.error {
  color: #ff9ab0;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(91, 251, 177, 0.56);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(91, 251, 177, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(91, 251, 177, 0);
  }
}

@keyframes eyeGlow {
  0%,
  100% {
    opacity: 0.35;
  }

  45% {
    opacity: 0.65;
  }
}

@keyframes laserSweep {
  0% {
    transform: translateY(-22px);
    opacity: 0;
  }

  12% {
    opacity: 0.95;
  }

  72% {
    opacity: 0.9;
  }

  100% {
    transform: translateY(86px);
    opacity: 0;
  }
}

@media (max-width: 460px) {
  .brand-name {
    display: none;
  }

  .nav-wrap {
    gap: 0.45rem;
  }

  .nav-link-btn,
  .nav-cta {
    padding: 0.5rem 0.66rem;
    font-size: 0.74rem;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (min-width: 768px) {
  :root {
    --logo-size: 44px;
  }

  .section {
    padding: 5.7rem 0;
  }

  .nav-wrap {
    height: 86px;
    gap: 1rem;
  }

  .site-nav {
    display: flex;
  }

  .nav-actions {
    gap: 0.58rem;
  }

  .nav-link-btn,
  .nav-cta {
    padding: 0.58rem 0.94rem;
    font-size: 0.84rem;
  }

  .hero {
    padding-top: 4.35rem;
  }

  .hero-copy {
    padding: 1.34rem;
  }

  .hero-grid {
    grid-template-columns: 1.07fr 0.93fr;
    align-items: center;
    gap: 1.7rem;
  }

  .hero-actions .btn {
    min-width: 130px;
  }

  .live-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-start-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

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

  .matter-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }

  .cta-actions {
    grid-template-columns: repeat(2, minmax(0, auto));
    justify-content: center;
  }

  .btn-large {
    width: auto;
  }

  .footer-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .btn,
  .card,
  .reveal,
  .laser-overlay::before,
  .laser-overlay::after,
  .live-dot {
    transition: none;
    animation: none;
  }

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