@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --page-bg: #0D0D0F;
  --surface: #151518;
  --surface-raised: #1C1C20;
  --surface-soft: #232329;
  --text: #F5F5F5;
  --text-secondary: #C4C4C9;
  --text-muted: #929299;
  --border: #303037;
  --border-strong: #45454E;
  --gold: #F2CD58;
  --gold-soft: #FFF0AD;
  --green: #51D782;
  --red: #F27979;
  --blue: #8390FF;
  --button-text: #111113;
  --header-bg: rgba(13, 13, 15, 0.9);
  --shadow: rgba(0, 0, 0, 0.36);
  --page-width: 1180px;
}

:root[data-theme="light"] {
  color-scheme: light;
  --page-bg: #F6F6F4;
  --surface: #FFFFFF;
  --surface-raised: #F0F0ED;
  --surface-soft: #E7E7E3;
  --text: #181819;
  --text-secondary: #525256;
  --text-muted: #77777C;
  --border: #D9D9D4;
  --border-strong: #BDBDB6;
  --gold: #B88700;
  --gold-soft: #5F4900;
  --green: #16733A;
  --red: #B94141;
  --blue: #505CC7;
  --button-text: #FFFFFF;
  --header-bg: rgba(246, 246, 244, 0.9);
  --shadow: rgba(23, 23, 24, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  background: var(--page-bg);
}

body {
  min-width: 280px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: var(--border-strong) var(--page-bg);
  scrollbar-width: thin;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.625rem 0.875rem;
  border-radius: 0.375rem;
  background: var(--gold);
  color: #111113;
  font-weight: 700;
  transform: translateY(-160%);
}

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

.page-width {
  width: min(calc(100% - 3rem), var(--page-width));
  margin-inline: auto;
}

.section {
  padding-block: 7rem;
}

.section-heading {
  max-width: 47rem;
  margin-bottom: 3.5rem;
}

.section-kicker {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h2 {
  max-width: 46rem;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.08;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 4.5rem;
  border-bottom: 1px solid transparent;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 0.625rem 1.875rem var(--shadow);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  width: min(calc(100% - 3rem), var(--page-width));
  height: 100%;
  margin-inline: auto;
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  width: fit-content;
  font-weight: 650;
}

.brand-link img,
.footer-brand img {
  border-radius: 0.375rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

.site-nav a,
.footer-links a {
  transition: color 0.16s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.theme-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.theme-toggle-track {
  position: relative;
  display: block;
  width: 2.625rem;
  height: 1.5rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface-soft);
  transition:
    border-color 0.18s ease,
    background 0.18s ease;
}

.theme-toggle-thumb {
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--text);
  transition: transform 0.18s ease;
}

.theme-toggle input:checked + .theme-toggle-track .theme-toggle-thumb {
  transform: translateX(1.125rem);
}

.theme-toggle input:focus-visible + .theme-toggle-track,
.button:focus-visible,
.product-tab:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.125rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 650;
  line-height: 1;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease;
}

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

.button-compact {
  min-height: 2.375rem;
  padding: 0.625rem 0.875rem;
  background: var(--text);
  color: var(--page-bg);
  font-size: 0.8125rem;
}

.button-primary {
  background: var(--gold);
  color: #111113;
}

:root[data-theme="light"] .button-primary {
  color: #111113;
}

.button-primary:hover {
  background: #FFE486;
}

.button-coming-soon {
  border-color: var(--border-strong);
  background: var(--surface-raised);
  color: var(--text-secondary);
  cursor: default;
}

.button-coming-soon:hover {
  transform: none;
}

.hero .button-coming-soon {
  border-color: #45454D;
  background: #18181B;
  color: #B9B9C0;
}

.hero {
  position: relative;
  height: calc(100svh - 7.5rem);
  min-height: 39rem;
  max-height: 51rem;
  overflow: hidden;
  border-bottom: 1px solid #27272C;
  background: #0D0D0F;
  color: #F5F5F5;
  isolation: isolate;
}

.hero-product-background {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(calc(100% - 3rem), var(--page-width));
  background-image: url("assets/screenshots/queue-dashboard.png");
  background-repeat: no-repeat;
  background-position: right 48%;
  background-size: 22.5rem auto;
  transform: translateX(-50%);
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-copy {
  width: min(52%, 38rem);
  padding-bottom: 1.5rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  color: #B6B6BC;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0.25rem rgba(242, 205, 88, 0.12);
}

.hero h1 {
  font-size: 5rem;
  font-weight: 650;
  line-height: 0.95;
}

.hero-lede {
  max-width: 35rem;
  margin-top: 1.75rem;
  color: #C6C6CB;
  font-size: 1.1875rem;
  line-height: 1.62;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  margin-top: 1.5rem;
  color: #94949C;
  font-size: 0.8125rem;
  font-variant-numeric: tabular-nums;
}

.hero-meta li {
  position: relative;
}

.hero-meta li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.8125rem;
  width: 0.1875rem;
  height: 0.1875rem;
  border-radius: 50%;
  background: #5D5D65;
}

.hero-next {
  position: absolute;
  bottom: 1rem;
  left: max(calc((100% - var(--page-width)) / 2), 1.5rem);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: #A8A8AE;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.16s ease;
}

.hero-next:hover,
.hero-next:focus-visible {
  color: #FFFFFF;
}

.hero-next strong {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

.signal-strip {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.signal-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 4.5rem;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 550;
  text-align: center;
}

.signal-strip-inner span + span {
  border-left: 1px solid var(--border);
}

.feature-index {
  display: block;
  margin-bottom: 2rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.product-section {
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(23rem, 1.12fr);
  gap: 6rem;
  align-items: center;
}

.product-copy > p:not(.section-kicker) {
  max-width: 36rem;
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

.product-tabs {
  display: inline-flex;
  gap: 0.25rem;
  margin-top: 2.25rem;
  padding: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface-raised);
}

.product-tab {
  min-height: 2.25rem;
  padding: 0.5rem 0.875rem;
  border: 0;
  border-radius: 0.3125rem;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
}

.product-tab.active {
  background: var(--surface-soft);
  color: var(--text);
}

.product-detail {
  max-width: 34rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.product-detail strong {
  font-weight: 600;
}

.product-detail p {
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.product-stage {
  min-width: 0;
  min-height: 45rem;
  overflow: hidden;
  border: 1px solid #303038;
  border-radius: 0.5rem;
  background: #0F0F11;
  box-shadow: 0 2rem 4rem var(--shadow);
}

.product-stage-topbar {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1rem;
  border-bottom: 1px solid #303038;
  color: #B8B8BE;
  font-size: 0.75rem;
  font-weight: 550;
}

.stage-live-status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.stage-live-status i {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background: var(--green);
}

.product-shot-wrap {
  position: relative;
  display: grid;
  min-height: 42rem;
  place-items: start center;
  overflow: hidden;
  padding-top: 1.5rem;
}

.product-shot-panel {
  grid-area: 1 / 1;
  display: grid;
  width: 100%;
  place-items: start center;
  opacity: 0;
  transform: translateY(0.75rem);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.product-shot-panel.active {
  opacity: 1;
  transform: translateY(0);
}

.product-shot {
  width: 22.5rem;
  max-width: calc(100% - 2rem);
}

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

.feature-card {
  min-width: 0;
  min-height: 22rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface);
}

.feature-card h3 {
  max-width: 15rem;
}

.feature-card > p {
  margin-top: 0.875rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.feature-signal,
.feature-status,
.feature-widths {
  margin-top: 3rem;
}

.feature-signal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.75rem;
}

.feature-signal::after {
  content: "";
  width: 100%;
  height: 0.3125rem;
  border-radius: 999px;
  background-image: linear-gradient(90deg, var(--gold), var(--red), var(--blue), var(--gold));
  background-position: 0% 50%;
  background-size: 240% 100%;
  animation: accent-drift 14s ease-in-out infinite;
}

.feature-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 0.625rem;
  border-radius: 0.3125rem;
  background: rgba(81, 215, 130, 0.12);
  color: var(--green);
  font-size: 0.8125rem;
  font-weight: 650;
}

.feature-status i {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background: currentColor;
  animation: status-pulse 2.5s ease-in-out infinite;
}

.feature-widths {
  display: grid;
  grid-template-columns: 2fr 3fr 4.2fr;
  align-items: end;
  gap: 0.375rem;
  min-height: 4.5rem;
}

.feature-widths span {
  display: flex;
  min-width: 0;
  align-items: flex-end;
  padding: 0.5rem;
  border: 1px solid var(--border-strong);
  border-radius: 0.25rem;
  background: var(--surface-soft);
  color: var(--text-muted);
  font-size: 0.6875rem;
  font-variant-numeric: tabular-nums;
}

.feature-widths span:nth-child(1) {
  height: 3rem;
}

.feature-widths span:nth-child(2) {
  height: 3.75rem;
}

.feature-widths span:nth-child(3) {
  height: 4.5rem;
}

.product-privacy {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
  gap: 5rem;
  align-items: start;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.product-privacy-copy h3 {
  font-size: 1.5rem;
}

.product-privacy-copy p:last-child {
  max-width: 36rem;
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.privacy-facts {
  border-top: 1px solid var(--border);
}

.privacy-facts > div {
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
}

.privacy-facts dt {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.privacy-facts dd {
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: right;
}

.faq-section {
  padding-top: 5rem;
}

.faq-list {
  border-top: 1px solid var(--border);
}

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

.faq-list summary {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0.25rem;
  color: var(--text-muted);
  font-size: 1.25rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 48rem;
  padding: 0 3rem 1.5rem 0;
  color: var(--text-muted);
}

.release-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.release-accent {
  height: 0.25rem;
  background-image: linear-gradient(90deg, var(--gold), var(--red), var(--blue), var(--gold));
  background-position: 0% 50%;
  background-size: 240% 100%;
  animation: accent-drift 14s ease-in-out infinite;
}

.release-inner {
  display: flex;
  min-height: 18rem;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.release-inner h2 {
  max-width: 42rem;
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.release-inner .button {
  flex-shrink: 0;
}

.site-footer {
  padding-block: 3rem;
  background: var(--page-bg);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1.5rem 2.5rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.footer-brand {
  color: var(--text);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-copyright {
  font-variant-numeric: tabular-nums;
}

body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

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

@keyframes accent-drift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes status-pulse {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .hero-product-background {
    width: calc(100% - 3rem);
    background-position: right 48%;
    background-size: 20rem auto;
  }

  .product-layout {
    gap: 3rem;
  }

  .product-privacy {
    gap: 3rem;
  }
}

@media (max-width: 880px) {
  .site-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-copy {
    width: 58%;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-lede {
    font-size: 1.0625rem;
  }

  .hero-product-background {
    background-position: right 48%;
    background-size: 18rem auto;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-layout {
    gap: 3.5rem;
  }

  .product-stage {
    width: min(100%, 38rem);
    margin-inline: auto;
  }

  .product-privacy {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .feature-card {
    min-height: 0;
  }

  .feature-card h3 {
    max-width: none;
  }

  .feature-signal,
  .feature-status,
  .feature-widths {
    margin-top: 2rem;
  }

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

  .footer-inner > p:first-of-type {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 640px) {
  .page-width,
  .header-inner {
    width: min(calc(100% - 2rem), var(--page-width));
  }

  .section {
    padding-block: 5rem;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .site-header {
    height: 4rem;
  }

  .brand-link span {
    display: none;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .button-compact {
    padding-inline: 0.75rem;
  }

  .hero {
    height: calc(100svh - 6rem);
    min-height: 42rem;
    max-height: 48rem;
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 3.5rem;
  }

  .hero-copy {
    width: 100%;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-lede {
    max-width: 31rem;
    margin-top: 1.25rem;
    padding-right: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 1.5rem;
  }

  .hero-actions .button {
    min-height: 2.75rem;
  }

  .hero-meta {
    margin-top: 1rem;
  }

  .hero-product-background {
    left: 0;
    width: 100%;
    background-position: calc(100% - 0.75rem) 30.5rem;
    background-size: 14rem auto;
    transform: none;
  }

  .hero-next {
    bottom: 1rem;
    left: 1rem;
  }

  .signal-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 0.75rem;
  }

  .signal-strip-inner span {
    padding-block: 0.5rem;
  }

  .signal-strip-inner span:nth-child(3) {
    border-left: 0;
  }

  .product-stage {
    min-height: 39rem;
  }

  .product-shot-wrap {
    min-height: 36rem;
  }

  .product-shot {
    width: 19rem;
  }

  .release-inner {
    min-height: 21rem;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
  }

  .release-inner .button {
    width: 100%;
  }

  .release-actions {
    width: 100%;
    justify-content: stretch;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-inner > p:first-of-type {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 390px) {
  .button-compact {
    font-size: 0.75rem;
  }

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

  .hero-actions .button {
    padding-inline: 0.625rem;
    font-size: 0.8125rem;
  }

  .hero-meta {
    gap: 0.375rem 1rem;
  }

  .hero-meta li + li::before {
    left: -0.5625rem;
  }

  .product-tabs {
    width: 100%;
  }

  .product-tab {
    flex: 1;
  }

  .product-stage {
    min-height: 36rem;
  }

  .product-shot-wrap {
    min-height: 33rem;
  }

  .product-shot {
    width: 17rem;
  }

  .privacy-facts > div {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.125rem;
  }

  .privacy-facts dd {
    text-align: left;
  }
}

@media (max-height: 700px) and (min-width: 641px) {
  .hero {
    min-height: 35rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-lede {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 1.25rem;
  }

  .hero-meta {
    margin-top: 1rem;
  }
}

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

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