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

:root {
  --ink: #080f1c;
  --navy-deep: #0b1528;
  --navy: #13233f;
  --navy-mid: #1c3358;
  --navy-glow: #2d5088;
  --gray-blue: #6b7f9a;
  --gray-blue-light: #8fa3bc;
  --moon: #b8c9e4;
  --silver: #d2dae8;
  --silver-bright: #eef2fa;
  --star-glow: rgba(210, 222, 240, 0.85);
  --parchment: #f0ebe2;
  --parchment-light: #f8f4ed;
  --parchment-shadow: #ddd4c6;
  --text: #121820;
  --text-muted: #2f3848;
  --text-soft: #4b5568;
  --text-on-dark: #eef2f8;
  --text-on-dark-muted: #d4ddea;
  --accent: #1e3a66;
  --favicon-silver-shine: #f2f2f0;
  --favicon-silver-highlight: #e4e4e2;
  --favicon-silver-mid: #c4c4c2;
  --favicon-silver-tone: #979694;
  --favicon-silver-shadow: #8a8a88;
  --favicon-silver-deep: #686866;
  --font-title: Georgia, "Times New Roman", Times, serif;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Lora", Georgia, serif;
  --container: 780px;
  --header-nav-max: 940px;
  --page-bg-image: url("images/fantasy-bg-home.png?v=2");
  --page-bg-size: cover;
  --page-bg-position: center top;
  --page-bg-gray-wash: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  --page-bg-center-opacity: 0.82;
  --page-bg-bottom-opacity: 0.72;
  --page-bg-edge-opacity: 0.14;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-on-dark-muted);
  background:
    var(--page-bg-gray-wash),
    radial-gradient(
      ellipse 36% 72% at 50% 54%,
      rgba(8, 15, 28, var(--page-bg-center-opacity)) 0%,
      transparent 72%
    ),
    linear-gradient(0deg, rgba(11, 21, 40, var(--page-bg-bottom-opacity)) 0%, transparent 38%),
    linear-gradient(
      90deg,
      rgba(143, 163, 188, var(--page-bg-edge-opacity)) 0%,
      transparent 20%,
      transparent 80%,
      rgba(143, 163, 188, var(--page-bg-edge-opacity)) 100%
    ),
    var(--page-bg-image) var(--page-bg-position) / var(--page-bg-size) no-repeat scroll,
    linear-gradient(180deg, var(--ink) 0%, var(--navy-deep) 35%, var(--navy) 100%);
  background-color: var(--navy-deep);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:focus-visible {
  outline: 2px solid var(--navy-glow);
  outline-offset: 3px;
}

a {
  color: inherit;
}

/* Starfield */

.page-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star,
.sparkle {
  position: absolute;
  transform-origin: center center;
  will-change: opacity, transform;
}

.star {
  background: linear-gradient(180deg, var(--silver-bright) 0%, var(--moon) 55%, rgba(184, 201, 228, 0.4) 100%);
  filter: drop-shadow(0 0 8px rgba(238, 242, 250, 0.5));
}

.star--4 {
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
}

.star--8 {
  clip-path: polygon(
    50% 0%, 58% 30%, 78% 18%, 68% 42%, 100% 50%,
    68% 58%, 78% 82%, 58% 70%, 50% 100%, 42% 70%,
    22% 82%, 32% 58%, 0% 50%, 32% 42%, 22% 18%, 42% 30%
  );
}

.sparkle {
  border-radius: 50%;
  background: radial-gradient(circle, var(--silver-bright) 0%, transparent 72%);
  box-shadow: 0 0 8px 1px rgba(238, 242, 250, 0.35);
}

.sparkle--flare {
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, var(--silver-bright), transparent);
  box-shadow: 0 0 10px rgba(238, 242, 250, 0.3);
}

.twinkle {
  animation: twinkle 4s ease-in-out infinite;
}

.float {
  animation: starFloat 9s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { filter: brightness(0.7); }
  45% { filter: brightness(1.4); }
}

@keyframes starFloat {
  0%, 100% {
    transform: rotate(var(--star-rotate)) scale(var(--star-scale)) translateY(0);
  }
  50% {
    transform: rotate(var(--star-rotate)) scale(var(--star-scale)) translateY(-4px);
  }
}

/* Header */

.site-header {
  position: relative;
  z-index: 100;
  color: #fff;
  padding: 1.6rem 1.25rem 2rem;
  margin-bottom: -1rem;
  overflow: visible;
  background:
    radial-gradient(ellipse 85% 95% at 50% 8%, var(--navy-mid) 0%, var(--navy-deep) 42%, transparent 72%),
    radial-gradient(ellipse 75% 110% at 0% 100%, var(--gray-blue-light) 0%, var(--gray-blue) 18%, var(--navy) 42%, var(--navy-deep) 68%, transparent 88%),
    radial-gradient(ellipse 75% 110% at 100% 100%, var(--gray-blue-light) 0%, var(--gray-blue) 18%, var(--navy) 42%, var(--navy-deep) 68%, transparent 88%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 70%, transparent 100%);
  box-shadow: none;
}

.header-wind {
  position: absolute;
  left: 0;
  top: 0;
  bottom: -1.5rem;
  width: min(42%, 320px);
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.header-wind__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.header-wind__gust {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-wind__gust--1 {
  stroke: rgba(184, 201, 228, 0.22);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 6px rgba(238, 242, 250, 0.35));
}

.header-wind__gust--2 {
  stroke: rgba(210, 218, 232, 0.16);
  stroke-width: 1.8;
}

.header-wind__gust--3 {
  stroke: rgba(143, 163, 188, 0.14);
  stroke-width: 1.2;
}

.header-wind-spark {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--silver-bright) 0%, transparent 72%);
  box-shadow: 0 0 8px 1px rgba(238, 242, 250, 0.45);
  animation: twinkle 3.5s ease-in-out infinite;
}

.header-wind-spark--1 {
  top: 18%;
  left: 28%;
  width: 4px;
  height: 4px;
}

.header-wind-spark--2 {
  top: 34%;
  left: 18%;
  width: 3px;
  height: 3px;
  animation-delay: 0.8s;
}

.header-wind-spark--3 {
  top: 52%;
  left: 36%;
  width: 5px;
  height: 5px;
  animation-delay: 1.4s;
}

.header-wind-spark--4 {
  top: 68%;
  left: 14%;
  width: 3px;
  height: 3px;
  animation-delay: 2.1s;
}

.header-wind-spark--5 {
  top: 44%;
  left: 8%;
  width: 6px;
  height: 6px;
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  border-radius: 0;
  background: linear-gradient(180deg, var(--silver-bright), var(--moon));
  animation-delay: 0.3s;
}

.header-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.header-star {
  position: absolute;
  background: linear-gradient(180deg, var(--silver-bright) 0%, var(--moon) 55%, rgba(184, 201, 228, 0.45) 100%);
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  filter: drop-shadow(0 0 8px rgba(238, 242, 250, 0.45));
  opacity: 0.82;
}

.header-star--tl {
  top: 0.65rem;
  left: 1.1rem;
  width: 7px;
  height: 20px;
}

.header-star--tr {
  top: 0.85rem;
  right: 1.25rem;
  width: 11px;
  height: 32px;
  opacity: 0.9;
}

.header-star--bl {
  bottom: 0.55rem;
  left: 0.75rem;
  width: 14px;
  height: 40px;
  opacity: 0.65;
}

.header-star--br {
  bottom: 0.45rem;
  right: 0.85rem;
  width: 9px;
  height: 26px;
}

.header-star--ml {
  top: 42%;
  left: 0.35rem;
  width: 5px;
  height: 14px;
  opacity: 0.55;
}

.header-star--mr {
  top: 38%;
  right: 0.45rem;
  width: 6px;
  height: 18px;
  opacity: 0.6;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 50% 0%, rgba(184, 201, 228, 0.12), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.site-header::after {
  content: none;
}

.header-inner {
  position: relative;
  z-index: 1;
  max-width: var(--header-nav-max);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
}

.title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-title {
  position: relative;
  display: inline-block;
  font-family: var(--font-title);
  font-size: clamp(2.25rem, 5.5vw, 3.1rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-title__back,
.site-title__front {
  display: block;
}

.site-title__back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(104, 104, 102, 0.42);
  transform: translate(2px, 3px);
  z-index: 0;
  filter: drop-shadow(0 2px 4px rgba(40, 40, 38, 0.45));
}

.site-title__front {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(
      108deg,
      transparent 24%,
      rgba(255, 255, 255, 0.72) 44%,
      rgba(255, 255, 255, 0.22) 52%,
      transparent 74%
    ),
    linear-gradient(
      180deg,
      var(--favicon-silver-shine) 0%,
      var(--favicon-silver-highlight) 14%,
      var(--favicon-silver-mid) 36%,
      #efefed 50%,
      var(--favicon-silver-tone) 68%,
      var(--favicon-silver-highlight) 84%,
      var(--favicon-silver-shadow) 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.28))
    drop-shadow(0 2px 5px rgba(30, 30, 28, 0.42));
}

.site-title:hover .site-title__front {
  background:
    linear-gradient(
      108deg,
      transparent 22%,
      rgba(255, 255, 255, 0.85) 42%,
      rgba(255, 255, 255, 0.3) 52%,
      transparent 76%
    ),
    linear-gradient(
      180deg,
      #fff 0%,
      var(--favicon-silver-shine) 16%,
      var(--favicon-silver-highlight) 40%,
      #f8f8f6 54%,
      var(--favicon-silver-mid) 72%,
      var(--favicon-silver-highlight) 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-title:hover .site-title__back {
  -webkit-text-stroke-color: rgba(120, 120, 118, 0.5);
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.35rem 1.75rem;
  margin-top: 0.35rem;
}

.site-nav a {
  display: inline-block;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.2rem 0.1rem;
  border: 1px solid transparent;
  border-radius: 0;
  background: none;
  box-shadow: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.site-nav a::before {
  content: none;
}

.site-nav a:hover {
  color: var(--silver-bright);
  text-decoration-color: rgba(255, 255, 255, 0.85);
  transform: none;
  box-shadow: none;
  background: none;
  border-color: transparent;
}

.site-nav a.active {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.92);
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 8px 22px rgba(8, 15, 28, 0.35);
}

.site-nav a.active:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 1);
  background: linear-gradient(135deg, var(--navy-glow), #4a7cc4);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 10px 26px rgba(12, 28, 58, 0.45);
}

.nav-toggle {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Main */

main {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: clamp(2rem, 5vw, 3.25rem) 1.25rem clamp(2.75rem, 7vw, 4.5rem);
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
}

/* Ornamental cards */

.section-card {
  position: relative;
  color: #000;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  padding: clamp(2rem, 5vw, 2.85rem);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.section-card::before,
.section-card::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 48px;
  background: linear-gradient(180deg, var(--silver-bright), var(--moon));
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  opacity: 0.55;
  filter: drop-shadow(0 0 6px rgba(210, 218, 232, 0.4));
}

.section-card::before {
  top: -10px;
  left: 1.5rem;
}

.section-card::after {
  bottom: -10px;
  right: 1.5rem;
  transform: rotate(180deg);
}

.section-card + .section-card,
.star-divider + .section-card {
  margin-top: 2.75rem;
}

.section-card--featured,
.section-card--newsletter {
  background: #fff;
  border-color: #d9d9d9;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 0.9rem;
}

.kicker::before,
.kicker::after {
  content: "";
  width: 5px;
  height: 16px;
  background: linear-gradient(180deg, var(--moon), var(--accent));
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  opacity: 0.7;
}

.section-card h1,
.section-card h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #000;
  max-width: 22ch;
}

.section-card h1 {
  font-size: clamp(2.1rem, 4.5vw, 2.65rem);
  margin-bottom: 1.1rem;
}

.section-card h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.1rem);
  margin-bottom: 1rem;
  max-width: none;
}

.section-card p {
  color: #000;
  margin-bottom: 1.1rem;
  max-width: 42rem;
  text-wrap: pretty;
}

.section-card p:last-child {
  margin-bottom: 0;
}

.section-card a:not(.btn) {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead {
  font-size: 1.2rem;
  color: #000;
  line-height: 1.75;
  max-width: 40rem;
}

.star-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.75rem 0 0;
}

.star-divider::before,
.star-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 218, 232, 0.35), transparent);
}

.star-divider span {
  width: 8px;
  height: 26px;
  background: linear-gradient(180deg, var(--silver-bright), var(--moon));
  clip-path: polygon(
    50% 0%, 58% 30%, 78% 18%, 68% 42%, 100% 50%,
    68% 58%, 78% 82%, 58% 70%, 50% 100%, 42% 70%,
    22% 82%, 32% 58%, 0% 50%, 32% 42%, 22% 18%, 42% 30%
  );
  filter: drop-shadow(0 0 8px rgba(184, 201, 228, 0.45));
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.72rem 1.5rem;
  margin-top: 0.65rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease;
}

.btn::after {
  content: "✦";
  font-size: 0.65rem;
  opacity: 0.75;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-glow) 100%);
  box-shadow: 0 8px 22px rgba(19, 35, 63, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(19, 35, 63, 0.38);
}

.btn-secondary {
  color: #000;
  background: #fff;
  border: 1px solid #b8b0a4;
  box-shadow: none;
}

.btn-secondary:hover {
  border-color: #8f8678;
  box-shadow: 0 6px 16px rgba(19, 35, 63, 0.1);
}

.btn-secondary::after {
  content: none;
}

/* Signup */

.signup-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.signup-form label {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.4rem;
}

.signup-form input {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 1rem;
  border: 1px solid #b8b0a4;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  color: #000;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.signup-form input:focus {
  outline: none;
  border-color: var(--navy-glow);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(45, 80, 136, 0.14);
}

.signup-form input::placeholder {
  color: #6b7280;
  font-style: normal;
}

.signup-form .btn {
  margin-top: 0.4rem;
  width: fit-content;
}

.signup-note {
  margin-top: 1.1rem;
  font-size: 1rem;
  color: #000;
  max-width: 42rem;
}

.signup-note a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.signup-note a:hover {
  color: #000;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-wrap {
  margin-top: 0.25rem;
}

.form-message {
  font-size: 0.98rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.form-message--error {
  color: #9b1c1c;
}

.form-message--success {
  color: #1f5a3a;
}

.signup-privacy {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: #000;
  max-width: 42rem;
}

.signup-form button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.about-body p + p {
  margin-top: 1rem;
}

/* Footer */

.site-footer {
  position: relative;
  z-index: 1;
  padding: 2rem 1.25rem;
  text-align: center;
  background: transparent;
  border-top: 1px solid rgba(210, 218, 232, 0.2);
}

.site-footer p {
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
}

.site-footer::before {
  content: "✦";
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.55rem;
  color: var(--moon);
  letter-spacing: 0.5em;
}

/* Responsive */

@media (max-width: 640px) {
  body {
    background:
      var(--page-bg-gray-wash),
      radial-gradient(
        ellipse 42% 68% at 50% 56%,
        rgba(8, 15, 28, var(--page-bg-center-opacity)) 0%,
        transparent 74%
      ),
      linear-gradient(0deg, rgba(11, 21, 40, var(--page-bg-bottom-opacity)) 0%, transparent 34%),
      linear-gradient(
        90deg,
        rgba(143, 163, 188, var(--page-bg-edge-opacity)) 0%,
        transparent 16%,
        transparent 84%,
        rgba(143, 163, 188, var(--page-bg-edge-opacity)) 100%
      ),
      var(--page-bg-image) var(--page-bg-position) / cover no-repeat scroll,
      linear-gradient(180deg, var(--ink) 0%, var(--navy-deep) 35%, var(--navy) 100%);
    background-color: var(--navy-deep);
  }

  .site-header {
    padding-top: 1.1rem;
    padding-bottom: 1.75rem;
    margin-bottom: -0.75rem;
  }

  .header-inner {
    align-items: stretch;
    padding-right: 3rem;
  }

  .header-wind {
    width: 38%;
    opacity: 0.75;
  }

  .header-wind-spark--4,
  .header-wind-spark--5 {
    display: none;
  }

  .site-title {
    font-size: clamp(1.55rem, 7vw, 2rem);
    letter-spacing: 0.015em;
  }

  .site-title__back {
    -webkit-text-stroke-width: 1.5px;
    transform: translate(2px, 3px);
  }

  .header-star--tl,
  .header-star--tr {
    opacity: 0.55;
  }

  .header-star--ml,
  .header-star--mr {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    display: block;
    background: rgba(11, 21, 40, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    margin-top: 0.5rem;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }

  .site-nav a {
    text-align: center;
  }

  .site-nav a.active {
    width: fit-content;
  }

  .signup-form .btn {
    width: 100%;
  }

  .section-card::before,
  .section-card::after {
    width: 12px;
    height: 32px;
  }
}

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

  .twinkle,
  .float,
  .header-wind-spark {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
