:root {
  color-scheme: dark;
  --accent: #3048d0;
  --header-height: 5.5rem;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --page-surface: #080d14;
  --text-shadow-ui:
    0 1px 2px rgba(0, 0, 0, 0.96),
    0 0 12px rgba(0, 4, 14, 0.82);
  --text-shadow-content:
    0 2px 3px rgba(0, 0, 0, 0.98),
    0 0 16px rgba(0, 4, 14, 0.9),
    0 0 34px rgba(1, 7, 20, 0.7);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--page-surface);
  color: #fff;
  font: 400 1rem/1.6 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.sr-only,
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 1.25rem var(--page-pad);
}

.site-brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.site-menu {
  position: relative;
}

.menu-toggle,
.menu-button {
  display: none;
}

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

.site-links a {
  position: relative;
  padding: 0.35rem 0;
  color: rgba(255, 255, 255, 0.9);
}

.site-links a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -0.25rem;
  left: 50%;
  height: 1px;
  background: currentColor;
  transition: right 160ms ease, left 160ms ease;
}

.site-links a:hover::after,
.site-links a:focus-visible::after,
body.home-page:not(:has(.site-slide:target)) .nav-home::after,
body:has(#home:target) .nav-home::after,
body:has(#about:target) .nav-about::after,
body:has(#contact:target) .nav-contact::after {
  right: 20%;
  left: 20%;
}

.nav-contact__mobile-label {
  display: none;
}

.site-links .nav-contact--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid rgba(169, 205, 255, 0.78);
  border-radius: 0.35rem;
  background: rgba(57, 111, 190, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(222, 237, 255, 0.04),
    0 0.7rem 2rem rgba(0, 7, 20, 0.2),
    0 0 1.5rem rgba(112, 167, 246, 0.1);
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.site-links .nav-contact--cta::after {
  content: none;
}

.site-links .nav-contact--cta:hover {
  border-color: rgba(202, 225, 255, 0.96);
  background: rgba(75, 137, 221, 0.46);
  box-shadow:
    inset 0 0 0 1px rgba(232, 243, 255, 0.08),
    0 0.8rem 2.2rem rgba(0, 7, 20, 0.24),
    0 0 1.8rem rgba(121, 177, 255, 0.2);
  transform: translateY(-1px);
}

.site-slider {
  position: relative;
  z-index: 5;
  width: 100%;
  min-height: 100%;
  background: var(--page-surface);
}

.site-slide {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--header-height) + 2rem) var(--page-pad) 5.5rem;
  background: var(--page-surface);
}

#home {
  z-index: 0;
  overflow: hidden;
  background: #02050b;
  isolation: isolate;
}

#home::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: clamp(4rem, 8vw, 8rem);
  background: linear-gradient(180deg, transparent 0%, rgba(8, 13, 20, 0.72) 58%, var(--page-surface) 100%);
  pointer-events: none;
}

.site-slide:not(#home) {
  z-index: 1;
}

.site-slide:not(#home) > [data-scroll-fade] {
  opacity: 1;
  transform: none;
}

@supports (view-timeline: --section-content block) and (animation-timeline: --section-content) and (animation-range: cover 0% cover 100%) {
  @media (prefers-reduced-motion: no-preference) {
    .site-slide:not(#home) {
      view-timeline: --section-content block;
    }

    .site-slide:not(#home) > [data-scroll-fade] {
      animation: section-content-fade 1ms linear both;
      animation-timeline: --section-content;
      animation-range: cover 0% cover 100%;
    }

    .site-slide:not(#home) > [data-scroll-fade]:focus-within {
      animation: none;
      opacity: 1;
      transform: none;
    }
  }
}

@keyframes section-content-fade {
  0%,
  16% {
    opacity: 0;
    transform: translate3d(0, 1.25rem, 0);
  }

  40%,
  60% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  84%,
  100% {
    opacity: 0;
    transform: translate3d(0, -1.25rem, 0);
  }
}

.slide-content {
  width: min(100%, 70rem);
  margin: auto;
  text-align: center;
}

#home .slide-content {
  position: relative;
  z-index: 4;
}

.hero-content,
.narrow-content {
  max-width: 64rem;
}

.form-content {
  max-width: 52rem;
}

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

.site-brand,
.site-links a,
.site-footer {
  text-shadow: var(--text-shadow-ui);
}

.page {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background: #080d14;
}

.page .site-header {
  background: linear-gradient(180deg, rgba(8, 13, 20, 0.98), rgba(8, 13, 20, 0.88));
}

.page-main {
  width: 100%;
  flex: 1;
  padding: calc(var(--header-height) + 2.5rem) var(--page-pad) 5rem;
  background: #080d14;
}

.page-body {
  width: min(100%, 52rem);
  margin: 0 auto;
}

.page-body h1 {
  margin-bottom: 0.65rem;
}

.page-body h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.page-body h3 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.08rem;
  line-height: 1.4;
}

.page-body p,
.page-body li,
.page-body dd,
.page-body address {
  color: rgba(255, 255, 255, 0.88);
}

.page-body p {
  max-width: none;
}

.page-body p,
.page-body ul,
.page-body dl,
.page-body address {
  margin-bottom: 1rem;
}

.page-body ul {
  padding-left: 1.4rem;
}

.page-body li + li {
  margin-top: 0.55rem;
}

.page-body a {
  color: #b5d4ff;
  text-decoration: underline;
  text-decoration-color: rgba(181, 212, 255, 0.58);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2rem;
}

.page-body a:hover,
.page-body a:focus-visible {
  color: #fff;
  text-decoration-color: currentColor;
}

.page-body a:focus-visible {
  border-radius: 0.15rem;
  outline: 2px solid rgba(181, 212, 255, 0.75);
  outline-offset: 0.2rem;
}

.page-body strong,
.page-body dt {
  color: #fff;
}

.page-body code {
  padding: 0.1em 0.35em;
  border: 1px solid rgba(181, 203, 233, 0.14);
  border-radius: 0.2rem;
  background: rgba(181, 203, 233, 0.08);
  color: #eef5ff;
  font-size: 0.92em;
}

.page-body address {
  font-style: normal;
}

.page-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(181, 203, 233, 0.14);
}

.page-header .page-subtitle {
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.page-header .page-summary {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.page-toc {
  margin-bottom: 3rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(181, 203, 233, 0.14);
  border-radius: 0.35rem;
  background: rgba(181, 203, 233, 0.045);
}

.page-toc .page-toc__title {
  margin-bottom: 0.85rem;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-toc ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-toc li + li {
  margin-top: 0;
}

.page-section {
  padding-top: 0.25rem;
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.page-section + .page-section {
  margin-top: 2.75rem;
}

.data-list {
  display: grid;
  gap: 1rem;
}

.data-list > div {
  padding: 0.2rem 0 0.2rem 1.1rem;
  border-left: 2px solid rgba(181, 212, 255, 0.34);
}

.data-list dt {
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.data-list dd {
  margin: 0;
}

.content-panel {
  padding: 1.5rem;
  border: 1px solid rgba(181, 203, 233, 0.14);
  border-radius: 0.35rem;
  background: rgba(181, 203, 233, 0.045);
}

.content-panel p:last-child,
.content-panel address:last-child {
  margin-bottom: 0;
}

@media (max-width: 40rem) {
  .page-main {
    padding-top: calc(var(--header-height) + 1.75rem);
  }

  .page-toc ul {
    grid-template-columns: 1fr;
  }

  .content-panel {
    padding: 1.2rem;
  }
}

.slide-content > h1,
.slide-content > h2,
.slide-content > p {
  text-shadow: var(--text-shadow-content);
}

h1,
h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.hero-content h1 {
  color: #fff;
  font-weight: 500;
  text-shadow: var(--text-shadow-content);
}

.hero-content p {
  margin: 0 auto 2.5rem;
  max-width: 70rem;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 500;
  text-shadow: var(--text-shadow-content);
}

.narrow-content p {
  margin-right: auto;
  margin-left: auto;
  max-width: 56rem;
}

.narrow-content p + p {
  margin-top: 1.4rem;
}

.button {
  display: inline-block;
  padding: 0.78rem 1.35rem;
  border: 0;
  border-radius: 0.28rem;
  background: var(--accent);
  box-shadow: 0 0.45rem 1.5rem rgba(19, 38, 135, 0.18);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: #3d55da;
  transform: translateY(-1px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  justify-content: center;
}

.hero-button,
.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5rem;
  padding: 0.88rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  line-height: 1.2;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.hero-button--primary,
.contact-submit {
  border-color: rgba(169, 205, 255, 0.78);
  background: rgba(57, 111, 190, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(222, 237, 255, 0.04),
    0 0.7rem 2rem rgba(0, 7, 20, 0.2),
    0 0 1.5rem rgba(112, 167, 246, 0.1);
}

.hero-button--primary:hover,
.contact-submit:hover {
  border-color: rgba(202, 225, 255, 0.96);
  background: rgba(75, 137, 221, 0.46);
  box-shadow:
    inset 0 0 0 1px rgba(232, 243, 255, 0.08),
    0 0.8rem 2.2rem rgba(0, 7, 20, 0.24),
    0 0 1.8rem rgba(121, 177, 255, 0.2);
}

.hero-button--secondary {
  border-color: rgba(183, 201, 225, 0.26);
  background: rgba(3, 8, 16, 0.52);
  box-shadow:
    inset 0 0 0 1px rgba(224, 235, 248, 0.025),
    0 0.7rem 2rem rgba(0, 4, 12, 0.2);
}

.hero-button--secondary:hover {
  border-color: rgba(199, 218, 243, 0.52);
  background: rgba(26, 38, 55, 0.68);
  box-shadow:
    inset 0 0 0 1px rgba(231, 240, 251, 0.05),
    0 0.8rem 2.2rem rgba(0, 4, 12, 0.26),
    0 0 1.4rem rgba(113, 150, 201, 0.08);
}

.button:focus-visible,
.site-brand:focus-visible,
.site-links a:focus-visible,
.menu-toggle:focus-visible + .menu-button {
  outline: 2px solid #aebdff;
  outline-offset: 4px;
}

.divider {
  position: relative;
  width: 4.5rem;
  height: 1rem;
  margin: 0 auto 1.75rem;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(210, 224, 244, 0.44);
}

.divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid rgba(210, 224, 244, 0.62);
  background: #09121f;
  transform: translate(-50%, -50%) rotate(45deg);
}

.form-content > p {
  margin-bottom: 1.75rem;
}

.contact-form {
  width: 100%;
  margin: 0 auto;
}

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

.form-field {
  min-width: 0;
  text-align: left;
}

.form-wide {
  grid-column: 1 / -1;
}

.contact-form input:not([type="hidden"]),
.contact-form textarea {
  display: block;
  width: 100%;
  border: 1px solid rgba(205, 220, 244, 0.3);
  border-radius: 0.2rem;
  outline: 0;
  background: rgba(2, 8, 16, 0.6);
  color: #fff;
}

.contact-form input:not([type="hidden"]) {
  height: 3.1rem;
  padding: 0 0.95rem;
}

.contact-form textarea {
  min-height: 8.5rem;
  padding: 0.8rem 0.95rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(229, 236, 247, 0.62);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(174, 191, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(84, 111, 218, 0.2);
}

.contact-form [aria-invalid="true"] {
  border-color: rgba(255, 151, 151, 0.9);
  box-shadow: 0 0 0 3px rgba(218, 84, 84, 0.16);
}

.form-guidance,
.form-field-error {
  display: block;
  margin-top: 0.42rem;
  font-size: 0.78rem;
  line-height: 1.4;
}

.form-guidance {
  color: rgba(225, 234, 247, 0.7);
}

.form-field-error {
  color: #ffb8b8;
  font-weight: 600;
}

.form-field-error:empty {
  display: none;
}

.contact-turnstile {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 4.1rem;
  align-items: center;
  justify-content: center;
}

.contact-turnstile > div,
.contact-turnstile iframe {
  max-width: 100%;
}

.contact-turnstile__loading {
  color: rgba(225, 234, 247, 0.76);
  font-size: 0.86rem;
}

.form-status {
  min-height: 1.5rem;
  margin: -0.15rem 0 0;
  color: rgba(225, 234, 247, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.form-status[data-state="success"] {
  color: #a9e8c0;
}

.form-status[data-state="error"] {
  color: #ffb8b8;
}

.form-grid > noscript {
  grid-column: 1 / -1;
}

.form-action {
  text-align: center;
}

.contact-submit:disabled,
.contact-submit:disabled:hover {
  border-color: rgba(183, 201, 225, 0.22);
  background: rgba(35, 54, 80, 0.32);
  box-shadow: none;
  color: rgba(235, 241, 250, 0.58);
  cursor: not-allowed;
  transform: none;
}

.contact-form[data-state="pending"] .contact-submit:disabled {
  cursor: wait;
}

.site-footer {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: 1.35rem var(--page-pad) 1.75rem;
  border-top: 1px solid rgba(181, 203, 233, 0.08);
  background: var(--page-surface);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

/* Interactive northern sky */
.starfield {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 112%, rgba(42, 58, 78, 0.48) 0%, rgba(12, 21, 34, 0.12) 47%, transparent 72%),
    radial-gradient(circle at 74% 13%, rgba(41, 64, 96, 0.22), transparent 34%),
    linear-gradient(180deg, #02050b 0%, #07101b 58%, #080d14 100%);
  cursor: default;
  isolation: isolate;
  pointer-events: none;
}

.starfield::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at center, transparent 48%, rgba(0, 3, 8, 0.2) 100%);
}

.starfield__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.starfield__horizon {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  height: max(16rem, 25.6vw);
  filter: saturate(0.82) contrast(1.04);
  opacity: 0.98;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.16) 18%, #000 42%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.16) 18%, #000 42%);
}

.starfield__horizon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.starfield__horizon::before,
.starfield__horizon::after {
  content: none;
}

.starfield__label {
  position: absolute;
  z-index: 3;
  max-width: min(15rem, calc(100vw - 2rem));
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(166, 198, 255, 0.28);
  border-radius: 999px;
  background: rgba(3, 8, 16, 0.82);
  box-shadow: 0 0 24px rgba(108, 153, 225, 0.14);
  color: rgba(235, 243, 255, 0.94);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  opacity: 0;
  text-transform: uppercase;
  transform: translate(-50%, calc(-100% - 0.8rem));
  transition: opacity 180ms ease;
  white-space: nowrap;
}

.starfield__label.is-visible {
  opacity: 1;
}

.starfield__label.is-below {
  transform: translate(-50%, 0.8rem);
}

.starfield-explorer {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 30;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.starfield-explorer:focus {
  width: auto;
  height: auto;
  padding: 0.65rem 0.9rem;
  clip: auto;
  border: 1px solid rgba(169, 200, 255, 0.56);
  border-radius: 999px;
  outline: 2px solid rgba(169, 200, 255, 0.5);
  outline-offset: 3px;
  background: rgba(3, 8, 16, 0.94);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 52rem) {
  :root {
    --header-height: 4.75rem;
  }

  .site-header {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .menu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 2rem;
    height: 2rem;
    margin: 0;
    opacity: 0;
    cursor: pointer;
  }

  .menu-button {
    position: relative;
    display: block;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
  }

  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    position: absolute;
    right: 0;
    width: 1.8rem;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 160ms ease, top 160ms ease, background-color 160ms ease;
  }

  .menu-icon {
    top: 0.95rem;
  }

  .menu-icon::before {
    top: -0.52rem;
  }

  .menu-icon::after {
    top: 0.52rem;
  }

  .menu-toggle:checked + .menu-button .menu-icon {
    background: transparent;
  }

  .menu-toggle:checked + .menu-button .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle:checked + .menu-button .menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .menu-toggle:not(:checked) ~ .site-links {
    display: none;
  }

  .menu-toggle:checked ~ .site-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    display: grid;
    gap: 0.4rem;
    min-width: 11rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(189, 209, 239, 0.18);
    border-radius: 0.25rem;
    background: rgba(3, 8, 16, 0.94);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.28);
  }

  .nav-contact__desktop-label {
    display: none;
  }

  .nav-contact__mobile-label {
    display: inline;
  }

  .site-links .nav-contact--cta {
    display: flex;
    justify-content: flex-start;
    min-height: 2.75rem;
    padding: 0.35rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
    white-space: normal;
    transition: none;
  }

  .site-links .nav-contact--cta::after {
    content: "";
  }

  .site-links .nav-contact--cta:hover {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .site-slide {
    padding-top: calc(var(--header-height) + 1.25rem);
  }

  .site-footer {
    flex-wrap: wrap;
    text-align: center;
  }

  .starfield__horizon {
    height: clamp(13rem, 30vh, 17rem);
  }
}

@media (max-width: 38rem) {
  h1,
  h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .site-slide {
    padding-right: 1.1rem;
    padding-left: 1.1rem;
  }

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

  .form-wide {
    grid-column: auto;
  }
}

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

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

  .site-slide:not(#home) > [data-scroll-fade] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
