/* Mock Loc — theme tokens from the Android app palette */

:root {
  --font: "Poppins", ui-sans-serif, sans-serif;

  --bg: #f4f7fc;
  --bg-alt: #e8eef8;
  --surface: #ffffff;
  --ink: #0b1425;
  --ink-muted: #4a5568;
  --line: #c1c6d7;
  --primary: #1565c0;
  --primary-soft: #adc6ff;
  --accent: #00796b;
  --accent-bright: #0e9a50;
  --gps: #4edea3;
  --live: #ffb95f;
  --navy: #0f172a;
  --navy-deep: #060e20;
  --chip: #171f33;
  --header-bg: rgba(244, 247, 252, 0.82);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --map-line: rgba(21, 101, 192, 0.35);
  --hero-glow: radial-gradient(ellipse at 70% 20%, rgba(75, 142, 255, 0.28), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 121, 107, 0.18), transparent 50%),
    linear-gradient(160deg, #eaf1ff 0%, #f4f7fc 45%, #dce8f8 100%);
  --map-bg: linear-gradient(145deg, #d9e6fb 0%, #c1d4f5 45%, #a8c4ef 100%);
  --focus: #4b8eff;
}

html[data-theme="dark"] {
  --bg: #0f172a;
  --bg-alt: #0b1326;
  --surface: #171f33;
  --ink: #dae2fd;
  --ink-muted: #c1c6d7;
  --line: #404a60;
  --primary: #4b8eff;
  --primary-soft: #b3c8ff;
  --accent: #80cbc4;
  --accent-bright: #4edea3;
  --gps: #4edea3;
  --live: #ffb95f;
  --navy: #0f172a;
  --navy-deep: #060e20;
  --chip: #222a3d;
  --header-bg: rgba(15, 23, 42, 0.78);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  --map-line: rgba(173, 198, 255, 0.35);
  --hero-glow: radial-gradient(ellipse at 75% 15%, rgba(75, 142, 255, 0.22), transparent 50%),
    radial-gradient(ellipse at 15% 85%, rgba(78, 222, 163, 0.12), transparent 45%),
    linear-gradient(165deg, #060e20 0%, #0f172a 42%, #171f33 100%);
  --map-bg: linear-gradient(150deg, #0b1425 0%, #171f33 50%, #222a3d 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.35s ease, color 0.35s ease;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.shell.narrow {
  width: min(720px, calc(100% - 2.5rem));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-elevated {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--gps) 0 28%, transparent 29%),
    radial-gradient(circle at 50% 50%, transparent 42%, var(--primary) 43% 58%, transparent 59%);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 22%, transparent);
  animation: pulse-ring 2.8s ease-in-out infinite;
}

.brand-name {
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.nav {
  display: none;
  gap: 1.35rem;
}

.nav a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.theme-toggle,
.nav-toggle {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  position: relative;
}

.theme-icon {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  position: absolute;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.theme-icon-sun {
  background: conic-gradient(from 0deg, var(--live), #fff6, var(--live));
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--live) 40%, transparent);
}

.theme-icon-moon {
  background: var(--primary-soft);
  box-shadow: inset -3px -2px 0 0 var(--navy);
}

html[data-theme="light"] .theme-icon-moon,
html[data-theme="dark"] .theme-icon-sun {
  opacity: 0;
  transform: scale(0.6) rotate(-20deg);
}

html[data-theme="light"] .theme-icon-sun,
html[data-theme="dark"] .theme-icon-moon {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  background: currentColor;
  margin: 0.18rem 0;
  transition: transform 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(2.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-2.5px) rotate(-45deg);
}

.mobile-nav {
  display: grid;
  gap: 0.35rem;
  padding: 0.5rem 1.25rem 1.25rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  color: var(--ink);
  text-decoration: none;
  padding: 0.7rem 0.35rem;
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.7rem 1.25rem;
  border-radius: 0.85rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  min-height: 2.5rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
  display: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

html[data-theme="dark"] .btn-primary {
  color: #00285c;
  background: #4b8eff;
}

.btn-primary:hover {
  color: #fff;
  filter: brightness(1.06);
}

html[data-theme="dark"] .btn-primary:hover {
  color: #00285c;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Hero — full-bleed signal rewrite */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(94vh, 900px);
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--hero-glow);
}

.hero-sky {
  position: absolute;
  inset: -10% -5% auto;
  height: 70%;
  background:
    radial-gradient(ellipse 55% 45% at 78% 35%, color-mix(in srgb, var(--primary) 34%, transparent), transparent 70%),
    radial-gradient(ellipse 40% 35% at 18% 55%, color-mix(in srgb, var(--gps) 18%, transparent), transparent 65%);
  animation: drift 16s ease-in-out infinite alternate;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--map-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--map-line) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.45;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 45%, #000 10%, transparent 72%);
}

.signal-field {
  position: absolute;
  right: max(-12%, calc(50% - 18rem));
  top: 48%;
  width: min(88vw, 520px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  opacity: 0.55;
}

.orbit {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--primary) 28%, transparent);
}

.orbit-a {
  inset: 8%;
  animation: spin 48s linear infinite;
}

.orbit-b {
  inset: 22%;
  border-color: color-mix(in srgb, var(--gps) 35%, transparent);
  animation: spin 36s linear infinite reverse;
}

.orbit-c {
  inset: 36%;
  border-style: dashed;
  border-color: color-mix(in srgb, var(--primary-soft) 40%, transparent);
  animation: spin 28s linear infinite;
}

.radar-sweep {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    color-mix(in srgb, var(--primary) 0%, transparent) 250deg,
    color-mix(in srgb, var(--primary) 42%, transparent) 320deg,
    transparent 360deg
  );
  animation: spin 5.5s linear infinite;
  mask-image: radial-gradient(circle, transparent 36%, #000 37%);
  opacity: 0.85;
}

.sat {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--primary-soft);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 18%, transparent);
}

.sat-1 {
  top: 10%;
  left: 48%;
  animation: sat-pulse 3s ease-in-out infinite;
}

.sat-2 {
  right: 14%;
  top: 42%;
  background: var(--gps);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gps) 22%, transparent);
  animation: sat-pulse 3s ease-in-out 0.6s infinite;
}

.sat-3 {
  left: 18%;
  bottom: 22%;
  background: var(--live);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--live) 22%, transparent);
  animation: sat-pulse 3s ease-in-out 1.2s infinite;
}

.fix {
  position: absolute;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
}

.fix::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.35;
}

.fix-real {
  left: 28%;
  top: 58%;
  background: color-mix(in srgb, var(--ink-muted) 55%, transparent);
  color: var(--ink-muted);
  opacity: 0.55;
}

.fix-mock {
  left: 61%;
  top: 34%;
  background: var(--gps);
  color: var(--gps);
  box-shadow: 0 0 24px color-mix(in srgb, var(--gps) 55%, transparent);
  animation: pulse-ring 2.4s ease-in-out infinite;
}

.beam {
  position: absolute;
  left: 31%;
  top: 39%;
  width: 34%;
  height: 2px;
  transform-origin: left center;
  transform: rotate(-38deg);
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--ink-muted) 20%, transparent),
    var(--gps)
  );
  animation: beam-pulse 2.8s ease-in-out infinite;
}

.ambient-lat,
.ambient-lng,
.ambient-mode {
  position: absolute;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
}

.ambient-lat {
  right: 4%;
  top: 12%;
  font-size: clamp(2.2rem, 7vw, 5rem);
  color: color-mix(in srgb, var(--primary) 14%, transparent);
  animation: ambient-drift 10s ease-in-out infinite alternate;
}

.ambient-lng {
  left: 3%;
  bottom: 12%;
  font-size: clamp(1.8rem, 5.5vw, 4rem);
  color: color-mix(in srgb, var(--gps) 14%, transparent);
  animation: ambient-drift 12s ease-in-out infinite alternate-reverse;
}

.ambient-mode {
  right: 8%;
  bottom: 14%;
  font-size: clamp(0.7rem, 1.4vw, 0.85rem);
  letter-spacing: 0.22em;
  font-weight: 600;
  color: color-mix(in srgb, var(--live) 55%, var(--ink-muted));
  opacity: 0.7;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 4.5rem 0 3.5rem;
}

.hero-content {
  position: relative;
  max-width: 40rem;
  animation: rise 0.95s ease both;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 8% -8% -8% -12%;
  z-index: -1;
  background: linear-gradient(
    105deg,
    color-mix(in srgb, var(--bg) 88%, transparent) 0%,
    color-mix(in srgb, var(--bg) 50%, transparent) 60%,
    transparent 100%
  );
  filter: blur(2px);
  pointer-events: none;
}

.brand-lockup {
  margin: 0 0 0.85rem;
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--ink);
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink-muted);
}

.hero-lead {
  margin: 1.1rem 0 0;
  max-width: 34rem;
  font-size: 1.05rem;
  color: var(--ink-muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-phone {
  display: flex;
  justify-content: center;
  animation: rise 1s ease 0.12s both;
}

.phone {
  position: relative;
  width: min(100%, 280px);
  padding: 0.72rem;
  border-radius: 2.35rem;
  background: linear-gradient(160deg, #1a2238 0%, #0a1020 55%, #121a2e 100%);
  box-shadow:
    var(--shadow),
    inset 0 0 0 1px color-mix(in srgb, #adc6ff 18%, transparent),
    0 0 0 1px #060e20;
}

.phone-speaker {
  position: absolute;
  top: 1.05rem;
  left: 50%;
  width: 4.2rem;
  height: 0.38rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #060e20;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  background: #0f172a;
  aspect-ratio: 9 / 19.5;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.phone-home {
  width: 3.4rem;
  height: 0.28rem;
  margin: 0.55rem auto 0.15rem;
  border-radius: 999px;
  background: color-mix(in srgb, #dae2fd 28%, transparent);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-head p {
  margin: 0.75rem 0 0;
  color: var(--ink-muted);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem 2rem;
}

.feature-list li {
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.feature-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.feature-list p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step-num {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--primary);
  padding-top: 0.2rem;
}

.steps h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.steps p {
  margin: 0;
  color: var(--ink-muted);
}

.shot-row {
  display: grid;
  gap: 1.25rem;
}

.shot {
  margin: 0;
}

.shot-frame {
  aspect-ratio: 9 / 16;
  max-height: 420px;
  border-radius: 1.25rem;
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--primary) 18%, var(--surface)), var(--surface)),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 12px,
      color-mix(in srgb, var(--line) 45%, transparent) 12px,
      color-mix(in srgb, var(--line) 45%, transparent) 13px
    );
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.shot-frame::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 0 35%;
  text-align: center;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.shot figcaption {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.download-block {
  text-align: left;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.2rem;
  border-radius: 0.9rem;
  background: var(--navy-deep);
  color: #dae2fd;
  text-decoration: none;
  border: 1px solid #232a3d;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.store-badge:hover {
  color: #fff;
  transform: translateY(-2px);
  border-color: var(--primary);
}

.store-badge small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.store-badge strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.download-note {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 0 0.85rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  padding: 0.55rem 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0.15rem 0 0.35rem;
  color: var(--ink-muted);
}

.disclaimer {
  color: var(--ink-muted);
}

.disclaimer p + p {
  margin-top: 1rem;
}

/* Footer */
.site-footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-tag {
  margin: 0.75rem 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-footer a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.85rem;
}

/* Legal pages */
.legal-page {
  padding: 5.5rem 0 4rem;
}

.legal-page h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
}

.legal-meta {
  margin: 0 0 2rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.legal-page h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.15rem;
}

.legal-page p,
.legal-page li {
  color: var(--ink-muted);
}

.legal-page ul {
  padding-left: 1.15rem;
}

.legal-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
}

.legal-back:hover {
  color: var(--primary);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse-ring {
  0%,
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--gps) 45%, transparent);
  }
  50% {
    box-shadow: 0 0 0 12px transparent;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sat-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

@keyframes beam-pulse {
  0%,
  100% {
    opacity: 0.45;
    filter: brightness(0.9);
  }
  50% {
    opacity: 1;
    filter: brightness(1.25);
  }
}

@keyframes ambient-drift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-12px);
  }
}

@keyframes drift {
  from {
    transform: translateX(-2%);
  }
  to {
    transform: translateX(2%);
  }
}

@media (min-width: 720px) {
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .shot-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }

  .btn-sm {
    display: inline-flex;
  }
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    align-items: center;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
    gap: 2rem;
    padding: 5.5rem 0 4.5rem;
  }

  .hero-phone {
    justify-content: flex-end;
  }

  .phone {
    width: min(100%, 300px);
  }

  .signal-field {
    right: max(0%, calc(50% - 22rem));
    width: min(42vw, 500px);
    opacity: 0.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
