:root {
  --ink: #081225;
  --ink-soft: #14213a;
  --paper: #f5f2ea;
  --paper-deep: #e9e4d8;
  --white: #fffefa;
  --blue: #4588ff;
  --mint: #5ed6ac;
  --yellow: #ffd45c;
  --coral: #ff765d;
  --line: rgba(8, 18, 37, 0.14);
  --radius: 1.25rem;
  --shell: min(1180px, calc(100% - 3rem));
  --shadow: 0 28px 70px rgba(8, 18, 37, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
dl,
dd {
  margin-top: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-block: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.wordmark {
  position: relative;
  display: inline-block;
  justify-self: center;
  color: var(--white);
  font-size: 3.35rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  line-height: 0.75;
  text-decoration: none;
}

.primary-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.primary-nav {
  justify-self: end;
}

.products-menu {
  position: relative;
  justify-self: start;
}

.products-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.products-trigger > span {
  color: rgba(255, 255, 255, 0.55);
  transition: transform 180ms ease;
}

.products-dropdown {
  position: absolute;
  z-index: 10;
  top: calc(100% + 1rem);
  left: 0;
  visibility: hidden;
  width: 15rem;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.8rem;
  background: #111d34;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-0.35rem);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}

.products-menu:hover .products-dropdown,
.products-menu:focus-within .products-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.products-menu:hover .products-trigger > span,
.products-menu:focus-within .products-trigger > span {
  transform: rotate(180deg);
}

.products-label {
  display: block;
  padding: 0.3rem 0.55rem 0.55rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.products-dropdown a {
  display: grid;
  padding: 0.7rem 0.75rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: background 160ms ease;
}

.products-dropdown a:hover,
.products-dropdown a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.products-dropdown a span {
  font-size: 0.84rem;
  font-weight: 800;
}

.products-dropdown a small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.64rem;
}

.primary-nav a,
.footer-nav a {
  position: relative;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  padding: 10rem 0 6rem;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
}

.hero-glow {
  position: absolute;
  top: 9%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 136, 255, 0.3), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 1.7rem;
  height: 2px;
  background: var(--yellow);
}

.eyebrow.dark {
  color: rgba(8, 18, 37, 0.56);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.58);
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 1.6rem;
  font-size: clamp(3.4rem, 6.2vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.072em;
  line-height: 0.9;
}

.hero h1 em {
  color: var(--yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-intro {
  max-width: 35rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.7rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.contact-link:focus-visible,
.products-trigger:focus-visible,
.primary-nav a:focus-visible,
.footer-nav a:focus-visible,
.wordmark:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
}

.button-primary span {
  font-size: 1rem;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 3.4rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  max-width: 40rem;
  justify-self: end;
}

.visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(94, 214, 172, 0.12);
}

.visual-card img {
  width: 100%;
  height: clamp(16rem, 25vw, 20rem);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.visual-caption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem 1.2rem 1.05rem;
}

.visual-caption div {
  display: grid;
}

.visual-caption small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-caption strong {
  margin-top: 0.15rem;
  font-size: 1.2rem;
}

.visual-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: right;
}

.orbit-badge {
  position: absolute;
  right: -1.6rem;
  bottom: 3.25rem;
  display: grid;
  width: 6.4rem;
  height: 6.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(8, 18, 37, 0.25);
  transform: rotate(-8deg);
}

.orbit-badge span {
  position: absolute;
  width: 80%;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-align: center;
}

.orbit-badge b {
  font-size: 1.5rem;
}

.marquee {
  overflow: hidden;
  padding: 1rem 0;
  background: var(--yellow);
  color: var(--ink);
}

.marquee-track {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding-inline: 1rem;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.marquee-track i {
  font-style: normal;
}

.section {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.section-heading {
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 5rem;
  align-items: end;
}

.section h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5.1vw, 5rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.product-summary > p {
  margin-bottom: 0.2rem;
  color: rgba(8, 18, 37, 0.64);
  font-size: 1.04rem;
}

.store-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-top: 1.5rem;
}

.store-status strong {
  margin-right: 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-status span {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 5px 16px rgba(8, 18, 37, 0.06);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  grid-template-rows: repeat(2, minmax(245px, auto));
  gap: 1rem;
}

.feature {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 245px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-large {
  grid-row: 1 / 3;
  min-height: 510px;
}

.feature-yellow {
  background: var(--yellow);
}

.feature-coral {
  background: var(--coral);
}

.feature-number {
  align-self: flex-end;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  font-weight: 800;
}

.feature h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.feature p {
  max-width: 33rem;
  margin-bottom: 0;
  color: rgba(8, 18, 37, 0.64);
  font-size: 0.9rem;
}

.mini-scoreboard {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1.5rem);
  align-self: stretch;
  padding: 2rem 2.2rem;
  border-radius: 1rem;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(8, 18, 37, 0.18);
  transform: rotate(-2deg);
}

.player {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
}

.player-red { background: var(--coral); }
.player-blue { background: var(--blue); }

.score {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  text-align: center;
}

.score-divider {
  color: rgba(255, 255, 255, 0.28);
  font-size: 2rem;
}

.tap-target {
  display: grid;
  width: 7rem;
  height: 7rem;
  align-self: center;
  place-items: center;
  border: 0.6rem solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 0.6rem rgba(8, 18, 37, 0.12);
  transform: rotate(7deg);
}

.tap-target span {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.round-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.round-timer span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.08em;
}

.round-timer i {
  width: 2.7rem;
  height: 2.7rem;
  border: 0.65rem solid var(--ink);
  border-radius: 50%;
  border-top-color: rgba(8, 18, 37, 0.15);
  transform: rotate(30deg);
}

.about {
  background: var(--paper-deep);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(4rem, 10vw, 9rem);
}

.about-copy .lead {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.about-copy > p:not(.lead) {
  color: rgba(8, 18, 37, 0.65);
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.principles span {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  font-weight: 800;
}

.contact {
  background: var(--paper);
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 1.75rem;
  background: var(--ink-soft);
  color: var(--white);
}

.contact-card h2 {
  margin-bottom: 1.2rem;
}

.contact-card > div:first-child > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
}

.contact-actions {
  display: grid;
  align-content: center;
}

.contact-link {
  position: relative;
  display: grid;
  padding: 1.3rem 3.5rem 1.3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
}

.contact-link:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-link span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-link strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
}

.contact-link i {
  position: absolute;
  right: 0.5rem;
  bottom: 1.5rem;
  font-size: 1.3rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.contact-link:hover i {
  transform: translate(3px, -3px);
}

.legal-page {
  background: var(--white);
}

.legal-header {
  background: var(--ink);
}

.legal-hero {
  padding: 11rem 0 5.5rem;
  background: var(--ink);
  color: var(--white);
}

.legal-hero h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(3.3rem, 8vw, 7rem);
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.legal-hero > .shell > p:not(.eyebrow):not(.legal-date) {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
}

.legal-date {
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-document {
  max-width: 860px;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.legal-document section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
}

.legal-document h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.legal-document h3 {
  margin: 2rem 0 0.5rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.legal-document p,
.legal-document li {
  color: rgba(8, 18, 37, 0.72);
}

.legal-document a {
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.legal-document ul {
  padding-left: 1.3rem;
}

.legal-document li + li {
  margin-top: 0.4rem;
}

.legal-summary {
  padding: 1.5rem 1.7rem;
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--paper);
}

.legal-summary > strong {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-summary p {
  margin: 0.5rem 0 0;
}

.right-to-object {
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--coral);
  background: rgba(255, 118, 93, 0.07);
}

.right-to-object {
  border-left-color: var(--blue);
  background: rgba(69, 136, 255, 0.07);
}

.legal-footer {
  margin-top: 0;
}

.site-footer {
  padding: 4rem 0 2rem;
  background: var(--ink);
  color: var(--white);
}

.footer-top,
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark-footer {
  justify-self: auto;
  font-size: 4rem;
}

.footer-nav {
  flex-wrap: wrap;
  justify-content: end;
}

.footer-legal {
  align-items: end;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-legal p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.69rem;
  line-height: 1.6;
}

.footer-legal p:first-child {
  max-width: 47rem;
}

.footer-legal strong {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .hero {
    padding-top: 9rem;
  }

  .hero-grid,
  .split-heading,
  .about-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 4rem;
  }

  .hero-copy {
    max-width: 46rem;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero-visual {
    width: 100%;
    max-width: 42rem;
    justify-self: start;
  }

  .split-heading,
  .about-grid,
  .contact-card {
    gap: 3rem;
  }

  .product-summary > p {
    max-width: 45rem;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 2rem, 1180px);
  }

  .header-inner {
    gap: 0.5rem;
    padding-block: 1rem;
  }

  .primary-nav a:first-child {
    display: none;
  }

  .primary-nav {
    gap: 1rem;
  }

  .products-trigger,
  .primary-nav a {
    font-size: 0.72rem;
  }

  .products-dropdown {
    top: calc(100% + 0.75rem);
    width: 12rem;
  }

  .wordmark {
    font-size: 2.8rem;
  }

  .hero {
    min-height: 0;
    padding: 8.5rem 0 5rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
  }

  .visual-card {
    border-radius: 1.2rem;
    transform: none;
  }

  .orbit-badge {
    display: none;
  }

  .visual-card img {
    height: 11.75rem;
    aspect-ratio: 16 / 8.5;
  }

  .visual-caption {
    padding: 0.75rem 0.9rem 0.85rem;
  }

  .marquee {
    padding-block: 0.7rem;
  }

  .marquee-track {
    gap: 0.35rem 0.7rem;
    padding-inline: 0.75rem;
    font-size: 0.6rem;
    letter-spacing: 0.07em;
  }

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

  .feature-large {
    grid-row: auto;
    min-height: 410px;
  }

  .mini-scoreboard {
    padding: 1.5rem 1rem;
  }

  .player {
    width: 2rem;
    height: 2rem;
  }

  .score {
    font-size: 2.8rem;
  }

  .footer-top,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav {
    justify-content: flex-start;
    gap: 1rem 1.5rem;
  }
}

@media (max-width: 430px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .visual-caption {
    gap: 1rem;
  }

  .orbit-badge {
    display: none;
  }

  .contact-card {
    width: calc(100% - 1rem);
    padding: 1.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
