:root {
  /* Brand Pink Palette (Derived from Watch & Lanyard) */
  --brand: hsl(338, 82%, 48%); /* Hot Magenta / Lanyard Pink */
  --brand-dark: hsl(338, 85%, 32%); /* Deep Raspberry for text/contrast */
  --brand-soft: hsl(340, 80%, 94%); /* Very Light Pastel Pink */

  /* Accents */
  --accent: hsl(345, 90%, 60%); /* Vibrant Button Red/Pink */
  --accent-soft: hsl(345, 95%, 95%); /* Soft Accent Background */

  /* Surfaces & Backgrounds */
  --bg: hsl(330, 60%, 98%); /* Off-White Rose Tint */
  --surface: hsl(0, 0%, 100%); /* Pure White */
  --surface-soft: hsl(340, 45%, 95%); /* Soft Pinkish Gray Container */

  /* Header & Hero Surfaces */
  --header-bg: linear-gradient(180deg, #fff5fb 0%, var(--bg) 100%);
  --header-radial: rgba(235, 172, 110, 0.18);
  --card-bg: rgba(255, 255, 255, 0.96);
  --trust-bg: rgba(255, 255, 255, 0.74);

  /* Functional Status Colors */
  --green: hsl(148, 55%, 42%);
  --green-soft: hsl(148, 50%, 93%);
  --amber: hsl(327, 95%, 52%); /* Bright Orange/Amber (Watch Ear Accents) */
  --coral: hsl(350, 85%, 56%); /* SOS Alert Red */
  --coral-soft: hsl(350, 85%, 94%);
  --blue: hsl(215, 90%, 52%);
  --blue-soft: hsl(215, 90%, 94%);

  /* Typography & Structure */
  --text: hsl(
    330,
    35%,
    15%
  ); /* Deep Charcoal-Plum for high contrast readability */
  --muted: hsl(330, 15%, 45%); /* Muted Mauve Slate */
  --border: hsl(340, 40%, 88%); /* Delicate Pink Border */
  --shadow: 0 18px 45px rgba(219, 39, 119, 0.12); /* Soft Pink Tinted Shadow */

  /* Border Radii */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

body.dark-theme {
  --bg: hsl(330, 20%, 8%);
  --surface: hsl(330, 18%, 13%);
  --surface-soft: hsl(330, 16%, 18%);
  --text: hsl(0, 0%, 95%);
  --muted: hsl(330, 10%, 70%);
  --brand-dark: hsl(338, 85%, 85%);
  --brand-soft: hsl(338, 30%, 22%);
  --border: hsl(330, 15%, 24%);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --accent-soft: rgba(229, 70, 142, 0.2);
  --coral-soft: rgba(239, 68, 68, 0.2);
  --green-soft: rgba(34, 197, 94, 0.2);
  --blue-soft: rgba(59, 130, 246, 0.2);

  --header-bg: linear-gradient(180deg, hsl(330, 25%, 12%) 0%, var(--bg) 100%);
  --header-radial: rgba(229, 70, 142, 0.15);
  --card-bg: rgba(26, 20, 24, 0.95);
  --trust-bg: rgba(36, 26, 32, 0.85);
}

.theme-toggle-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}
.theme-toggle-btn:hover {
  transform: scale(1.08);
  border-color: var(--brand);
}

/* Modal Backdrop & Card Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  width: min(540px, calc(100% - 2rem));
  box-shadow: var(--shadow);
  transform: translateY(12px);
  transition: transform 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.modal-header h2 {
  font-size: 1.3rem;
  color: var(--brand-dark);
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--muted);
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
}

.modal-close:hover {
  background: var(--surface-soft);
  color: var(--brand);
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  background:
    radial-gradient(circle at 80% 20%, var(--header-radial), transparent 35%),
    var(--header-bg);
}
.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--brand-dark);
}
.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}
.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--brand-dark);
  font-size: 1.15rem;
  cursor: pointer;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}
.nav-links a:hover {
  color: var(--brand);
}
.nav-button {
  background: var(--brand);
  color: white !important;
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
  padding-block: 3rem 5rem;
}
.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  text-transform: uppercase;
}
.hero h1 {
  margin-top: 0.9rem;
  max-width: 700px;
  font-size: clamp(2.6rem, 6vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--brand-dark);
}
.hero p {
  margin-top: 1.4rem;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.86rem 1.15rem;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 10px 25px rgba(80, 49, 30, 0.18);
}
.button-secondary {
  background: var(--surface);
  color: var(--brand);
  border: 1px solid var(--border);
}
.button-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px dashed var(--border);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.45rem;
}
.trust-row span {
  background: var(--trust-bg);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.83rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.hero-glow {
  position: absolute;
  width: 300px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-soft);
  filter: blur(6px);
}
.hero-img {
  position: relative;
  width: min(480px, 100%);
  max-height: 500px;
  object-fit: contain;
  z-index: 1;
  border-radius: 30px;
}
.status-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  min-width: 220px;
  text-align: left;
}
.status-card strong,
.status-card small {
  display: block;
}
.status-card strong {
  font-size: 0.9rem;
  color: var(--brand-dark);
}
.status-card small {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 0.15rem;
}
.status-card-top {
  top: 10%;
  left: 0;
}
.status-card-bottom {
  right: 0;
  bottom: 1rem;
}
.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.safe {
  background: var(--green);
  box-shadow: 0 0 0 6px var(--green-soft);
}
.mini-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-weight: 900;
}
.alert {
  background: var(--coral-soft);
  color: var(--coral);
}

.section {
  padding-block: 5rem;
}
.telemetry-panel {
  margin-block: 0 2rem;
}
.section-soft {
  background: var(--surface-soft);
}
.section-heading {
  max-width: 680px;
  margin-bottom: 2rem;
}
.section-heading h2,
.how-grid h2,
.cta-card h2 {
  margin-top: 0.7rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--brand-dark);
  letter-spacing: -0.03em;
}
.section-heading p,
.section-copy {
  margin-top: 0.8rem;
  color: var(--muted);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--brand);
  font-size: 1.25rem;
}
.feature-card h3 {
  margin-top: 1rem;
  color: var(--brand-dark);
}
.feature-card p {
  margin-top: 0.55rem;
  color: var(--muted);
}
.feature-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.hardware-demo {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1.15fr) minmax(230px, 0.85fr);
  gap: 1.25rem;
  align-items: center;
}
.watch-stage { min-height: 390px; display: grid; justify-items: center; align-content: center; position: relative; }
.watch-strap { width: 130px; height: 100px; background: linear-gradient(135deg, var(--brand-dark), var(--brand)); border: 6px solid var(--brand-dark); }
.watch-strap-top { border-radius: 50px 50px 14px 14px; margin-bottom: -13px; }
.watch-strap-bottom { border-radius: 14px 14px 50px 50px; margin-top: -13px; }
.watch-body { width: 215px; height: 225px; padding: 13px; position: relative; z-index: 1; border-radius: 46px; background: linear-gradient(145deg, #3c2732, #140b11); box-shadow: 0 22px 40px rgba(76, 20, 48, 0.28); }
.watch-screen { height: 100%; border-radius: 34px; display: grid; align-content: center; justify-items: center; gap: 0.4rem; text-align: center; color: #fff; background: radial-gradient(circle at 50% 28%, #632947, #1c1218 68%); }
.watch-screen-label, .hardware-info-label { color: #f3afce; font-size: 0.65rem; font-weight: 900; letter-spacing: 0.12em; }
.watch-screen strong { font-size: 1.2rem; }
.watch-screen small { color: rgba(255,255,255,0.72); font-size: 0.72rem; }
.watch-state-icon { font-size: 2.4rem; line-height: 1; }
.watch-crown { position: absolute; right: -9px; top: 85px; width: 12px; height: 43px; border-radius: 0 9px 9px 0; background: var(--brand-dark); }
.hardware-controls { display: grid; gap: 0.65rem; }
.hardware-control { width: 100%; display: grid; grid-template-columns: 36px 1fr; column-gap: 0.65rem; text-align: left; padding: 0.75rem; cursor: pointer; border: 1px solid var(--border); border-radius: 14px; color: var(--text); background: var(--surface); transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease; }
.hardware-control:hover, .hardware-control.active { border-color: var(--brand); transform: translateX(3px); box-shadow: 0 10px 22px rgba(219, 39, 119, 0.12); }
.hardware-control > span { grid-row: span 2; font-size: 1.45rem; }
.hardware-control strong { color: var(--brand-dark); font-size: 0.9rem; }
.hardware-control small { color: var(--muted); font-size: 0.76rem; line-height: 1.35; }
.hardware-info { min-height: 235px; display: flex; flex-direction: column; justify-content: center; padding: 1.35rem; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--brand-soft), var(--surface)); }
.hardware-info-label { color: var(--brand); }
.hardware-info h3 { margin-top: 0.55rem; color: var(--brand-dark); font-size: 1.25rem; }
.hardware-info p { margin-top: 0.55rem; color: var(--muted); font-size: 0.9rem; }
.hardware-flow { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; margin-top: 1rem; color: var(--brand-dark); font-size: 0.76rem; font-weight: 800; }
.hardware-flow span { padding: 0.35rem 0.5rem; border: 1px solid var(--border); border-radius: 999px; background: var(--surface); }
.hardware-note { max-width: 890px; margin: 1rem auto 0; color: var(--muted); font-size: 0.78rem; text-align: center; }
/* //////////////////// */
/* Inherits theme colors & border radii directly from your system CSS */
.skeleton {
  background-color: var(--bg-soft, #e2e8f0);
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 200% 100%;
  border-radius: var(--radius-sm, 8px);
  animation: shimmer 1.5s infinite linear;
}

/* Dynamic Dark Mode Adaptability */
@media (prefers-color-scheme: dark) {
  .skeleton {
    background-color: var(--bg-soft, #1e293b);
    background-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.08) 50%,
      rgba(255, 255, 255, 0) 100%
    );
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Card layout matching system card container */
.system-skeleton-card {
  background: var(--bg-surface, #ffffff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: var(--radius-md, 14px);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm, 0 2px 4px rgba(0, 0, 0, 0.04));
}

.skeleton-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm, 8px);
}

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

.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full, 9999px);
  flex-shrink: 0;
}

.skeleton-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.skeleton-line {
  height: 14px;
}

.skeleton-line.short {
  width: 45%;
}
.skeleton-line.long {
  width: 85%;
}
/* Full-bleed background image with a dark overlay gradient for high text contrast */
.hero-section {
  background-image:
    linear-gradient(
      135deg,
      rgba(92, 57, 73, 0.85) 0%,
      rgba(229, 70, 142, 0.623) 100%
    ),
    url("https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=1920&q=80");

  background-size: cover; /* Fills the section without distorting aspect ratio */
  background-position: center; /* Keeps core focus centered */
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax effect (image stays still while scrolling) */

  color: var(--text-inverse);
  padding: 6rem 0;
}
/* Define Page-Load Fade & Slide Up Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulsing Ambient Glow Effect for Primary Action Buttons */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 70, 139, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(79, 70, 229, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
  }
}

/* Apply animations to elements */
.hero-title {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0; /* Starts hidden until animation delay kicks in */
}

/* Enhanced Animated Primary Button */
.button-primary {
  animation: pulseGlow 2.5s infinite;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.button-primary:hover {
  transform: translateY(-3px) scale(1.02);
}
/* ////////////////////// */

.how-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.steps {
  display: grid;
  gap: 1rem;
}
.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 18px;
}
.step > span {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: white;
  font-weight: 900;
}
.step h3 {
  color: var(--brand-dark);
}
.step p {
  margin-top: 0.3rem;
  color: var(--muted);
}

.access-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.access-path-card {
  display: grid;
  gap: 0.65rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}
.access-path-card:hover,
.access-path-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 18px 40px rgba(219, 39, 119, 0.16);
}
.path-step {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--brand);
}
.access-path-card h3 {
  color: var(--brand-dark);
  font-size: 1.15rem;
}
.access-path-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.access-path-card strong {
  color: var(--brand);
  font-size: 0.88rem;
}
.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.stat-icon.green {
  background: var(--green-soft);
}
.stat-icon.blue {
  background: var(--blue-soft);
}
.stat-icon.coral {
  background: var(--coral-soft);
}

.cta-card {
  background: var(--brand);
  color: white;
  border-radius: 28px;
  padding: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow);
}
.cta-card .eyebrow {
  color: #f5c6e1;
}
.cta-card h2 {
  color: white;
}
.cta-card p {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.78);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.button-light {
  background: white;
  color: var(--brand);
}
.button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.site-footer {
  padding-block: 2rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.5rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-row strong {
  color: var(--brand);
  letter-spacing: 0.08em;
}
.footer-row p {
  margin-top: 0.2rem;
}
.footer-links {
  display: flex;
  gap: 1rem;
}
.footer-links a {
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero p {
    margin-inline: auto;
  }
  .hero-actions,
  .trust-row {
    justify-content: center;
  }
  .hero-visual {
    min-height: 440px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .access-path-grid {
    grid-template-columns: 1fr;
  }
  .footer-row {
    grid-template-columns: 1fr;
  }
  .hardware-demo {
    grid-template-columns: 1fr 1.1fr;
  }
  .hardware-info {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .navbar {
    position: relative;
    min-height: 70px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-block: 0.9rem;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem;
    margin-top: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
  }
  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: var(--surface-soft);
  }
  .nav-button {
    padding: 0.65rem 0.75rem;
    text-align: center;
  }
  .nav-links .theme-toggle-btn {
    align-self: flex-end;
    margin-top: 0.35rem;
  }
  .hero {
    min-height: auto;
    padding-top: 2rem;
  }
  .status-card {
    min-width: 190px;
  }
  .status-card-top {
    left: 0;
    top: 5%;
  }
  .status-card-bottom {
    right: 0;
    bottom: 6%;
  }
  .section {
    padding-block: 3.5rem;
  }
  .telemetry-panel {
    width: min(100% - 1rem, 1120px);
  }
  .hardware-demo {
    grid-template-columns: 1fr;
  }
  .hardware-info {
    grid-column: auto;
  }
  .watch-stage {
    min-height: 330px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
