:root {
  --bg: #f7f9fc;
  --panel: #ffffff;
  --ink: #0f172a;
  --muted: #5c6b87;
  --muted-2: #8193b0;
  --border: #e5e9f2;
  --accent: #16a34a;
  --accent-2: #0ea5e9;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --audio-react: 0;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --font-display: "Sora", "Manrope", system-ui, -apple-system, sans-serif;
}

:root.theme-dark {
  --bg: #0f172a;
  --panel: #111827;
  --ink: #f8fafc;
  --muted: #cbd5e1;
  --muted-2: #94a3b8;
  --border: #1f2a3d;
  --accent: #22c55e;
  --accent-2: #38bdf8;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1200px circle at 12% 18%, rgba(59, 130, 246, 0.22), transparent 38%),
    radial-gradient(1000px circle at 82% 14%, rgba(45, 212, 191, 0.18), transparent 40%),
    radial-gradient(1200px circle at 74% 78%, rgba(124, 58, 237, 0.12), transparent 42%),
    linear-gradient(180deg, #f9fbff 0%, #eef2ff 48%, #f8fafc 100%),
    repeating-linear-gradient(0deg, rgba(15, 23, 42, 0.03) 0, rgba(15, 23, 42, 0.03) 1px, transparent 1px, transparent 52px),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.03) 0, rgba(15, 23, 42, 0.03) 1px, transparent 1px, transparent 52px);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.bg-particles {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: normal;
  opacity: 0.85;
}

:root.theme-dark .bg-particles {
  opacity: 0.9;
  mix-blend-mode: normal;
}

:root.theme-dark body {
  background:
    radial-gradient(1100px circle at 14% 16%, rgba(59, 130, 246, 0.25), transparent 40%),
    radial-gradient(1100px circle at 86% 18%, rgba(34, 197, 94, 0.22), transparent 42%),
    radial-gradient(1300px circle at 68% 74%, rgba(168, 85, 247, 0.18), transparent 44%),
    linear-gradient(180deg, #0b1220 0%, #0f172a 46%, #0b1220 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 52px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 52px);
}

main,
.footer {
  position: relative;
  z-index: 1;
}

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

section {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}

:root.theme-dark .site-header {
  background: rgba(17, 24, 39, 0.9);
  border-color: #1f2a3d;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--ink);
}

:root.theme-dark .nav a {
  color: var(--muted);
}

:root.theme-dark .nav a:hover {
  color: #e2e8f0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-only {
  padding: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 700;
  cursor: pointer;
  background: none;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

.button.primary {
  background: linear-gradient(120deg, var(--accent), #119243);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 12px 22px rgba(22, 163, 74, 0.22);
}

.button.ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--border);
}

:root.theme-dark .button.ghost {
  background: #0f172a;
  color: #e2e8f0;
  border-color: #1f2a3d;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.hero .button.ghost {
  background: rgba(255, 255, 255, 0.9);
}

:root.theme-dark .hero .button.ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
}

.button.full {
  width: 100%;
}

.button.large {
  padding: 13px 20px;
}

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

.button:active {
  transform: translateY(0);
}

.button.primary:hover {
  box-shadow: 0 16px 28px rgba(22, 163, 74, 0.3);
}

.button.primary:active {
  box-shadow: 0 10px 18px rgba(22, 163, 74, 0.24);
}

.button.ghost:hover {
  border-color: var(--accent-2);
  box-shadow: 0 10px 18px rgba(14, 165, 233, 0.12);
  background: #f8fafc;
}

.button.ghost:active {
  box-shadow: 0 6px 12px rgba(14, 165, 233, 0.08);
}

/* Premium ripple/shine */
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.button.primary::after {
  background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.24), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 40%);
}

.button.ghost::after {
  display: none;
}

.button:hover::after {
  opacity: 1;
}

.button:active::after {
  opacity: 0.55;
}

.button.primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 26px rgba(22, 163, 74, 0.26);
}

.button.primary:active {
  transform: translateY(0) scale(0.995);
}

/* Mode buttons */
.mode-button {
  position: relative;
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
  box-shadow: none;
  padding-inline: 18px;
}

:root.theme-dark .mode-button {
  color: #e2e8f0;
  border-color: #1f2a3d;
  background: transparent;
}

.mode-button::before {
  display: none;
}

.mode-button.active {
  border-color: var(--accent-2);
  color: var(--accent-2);
  background: transparent;
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.08);
}

:root.theme-dark .mode-button.active {
  color: #38bdf8;
  border-color: #38bdf8;
  background: transparent;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.hero {
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.78rem;
}

.hero-copy h1 {
  margin: 10px 0 12px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.04;
}

.lede {
  color: var(--muted);
  line-height: 1.6;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 18px 0 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 16px 0 0;
  width: 100%;
}

.hero-card .hero-stats {
  margin-top: 16px;
  max-width: none;
  padding: 12px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

:root.theme-dark .hero-card .hero-stats {
  background: #0f172a;
  border: 1px solid #1f2a3d;
}

.stat {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 12px 14px 10px 18px;
  box-shadow: none;
}

.hero-card .stat {
  border: none;
  box-shadow: none;
  background: transparent;
  background-image: none;
}

:root.theme-dark .hero-card .stat {
  border: none;
  box-shadow: none;
  background: transparent;
  background-image: none;
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
  background: transparent;
  border: none;
  padding: 0;
}

.stat-label {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.01em;
}

:root.theme-dark .stat-value {
  color: #34d399;
  background: transparent;
  border: none;
}

.stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.6;
}

:root.theme-dark .stat::before {
  background: #34d399;
  opacity: 0.5;
}


.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 700;
  background: #fff;
}

.pill.soft {
  background: #f8fafc;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  gap: 14px;
}

.hero-card.audio-reactive {
  transition: transform 140ms ease, box-shadow 160ms ease;
  transform: translateY(calc(-2px * var(--audio-react)));
  box-shadow: var(--shadow), 0 0 calc(10px + 28px * var(--audio-react)) rgba(14, 165, 233, 0.24);
}

.mini {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-size: 0.72rem;
  margin: 0 0 6px;
}

.price-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.label {
  font-weight: 700;
}

.value {
  font-weight: 800;
  font-size: 1.2rem;
}

.hint {
  color: var(--muted-2);
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.list li {
  padding-left: 14px;
  position: relative;
}

.list li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.section-head {
  max-width: 640px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 6px 0 10px;
  font-size: clamp(28px, 4vw, 40px);
}

.vouch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.vouch {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 200px;
  height: 100%;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.vouch.card {
  padding: 16px 18px;
}

.vouch-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  object-fit: cover;
  background: #f1f5f9;
}

.vouch-header .name {
  font-weight: 800;
}

.vouch-time {
  color: var(--muted-2);
  font-size: 0.95rem;
}

.vouch-body {
  font-size: 1rem;
  line-height: 1.45;
  flex: 1;
}


.vouch-body.collapsible {
  position: relative;
  transition: max-height 0.2s ease;
}

.vouch-body.collapsible.collapsed {
  max-height: 96px;
  overflow: hidden;
}

.vouch-body.collapsible.collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 75%);
}

:root.theme-dark .vouch-body.collapsible.collapsed::after {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0) 0%, rgba(17, 24, 39, 0.9) 75%);
}

.vouch-toggle {
  margin-top: 8px;
  padding: 0;
  border: none;
  background: none;
  color: var(--accent-2);
  font-weight: 800;
  cursor: pointer;
  align-self: flex-start;
}

.vouch-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-weight: 700;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent-2);
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.vouch-attachments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.vouch-attachments img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #f8fafc;
}

.calc {
  display: grid;
  gap: 16px;
}

.calc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mode-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mode-button.active {
  border-color: var(--accent);
  color: var(--accent);
}

.swap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f8fafc;
  cursor: pointer;
  font-weight: 700;
}

.swap-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
}

.calc-body {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field-label {
  font-weight: 700;
  color: var(--muted);
}

input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: var(--font-body);
}

input:focus {
  outline: 2px solid rgba(14, 165, 233, 0.3);
  border-color: rgba(14, 165, 233, 0.5);
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.result {
  font-size: 1.35rem;
  font-weight: 800;
}

.rate {
  font-weight: 800;
}

.footer {
  padding: 40px 0 32px;
  background: var(--panel);
  border-top: 1px solid var(--border);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: start;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.footer a {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}

.footer .discord-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #5561f8, #7283ff);
  color: #fff !important;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  margin-top: 0;
  box-shadow: 0 12px 30px rgba(88, 101, 242, 0.25);
  transition: transform 0.18s ease, box-shadow 0.25s ease;
}

:root.theme-dark .footer .discord-icon {
  background: linear-gradient(135deg, #3b4ccf, #5464f0);
  box-shadow: 0 12px 30px rgba(88, 101, 242, 0.25);
}

.footer .discord-icon span {
  color: inherit;
}

.footer .discord-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  color: #fff;
}

.footer .discord-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(88, 101, 242, 0.3);
}

.footer .discord-icon:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(88, 101, 242, 0.24);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 22px;
  padding-top: 14px;
}

.footer-bottom p {
  margin: 0;
  font-weight: 600;
  color: var(--muted);
}

.footer-cta .button {
  justify-content: center;
}

/* Order modal */
.order-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.order-modal.open {
  display: flex;
}

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(6px);
}

.order-modal__card {
  position: relative;
  z-index: 1;
  width: min(420px, 92vw);
  padding: 20px;
  border-radius: 18px;
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  border: 1px solid var(--border);
  display: grid;
  gap: 12px;
}

.order-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.order-modal__close {
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 0;
}

.order-modal__actions {
  display: grid;
  gap: 10px;
}

.muted {
  color: var(--muted);
  line-height: 1.5;
}

.footer-cta {
  display: grid;
  gap: 10px;
  align-content: start;
}

.audio-control {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: none;
  filter: drop-shadow(0 0 calc(3px + 12px * var(--audio-react)) rgba(14, 165, 233, 0.25));
}

.audio-volume {
  width: 110px;
  height: 18px;
  cursor: pointer;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
}

.audio-volume::-webkit-slider-runnable-track {
  height: 6px;
  background: linear-gradient(90deg, #1f2937, #2f3b52);
  border-radius: 999px;
  border: none;
}

.audio-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #0b1626;
  margin-top: -4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.28);
}

.audio-volume::-moz-range-track {
  height: 6px;
  background: linear-gradient(90deg, #1f2937, #2f3b52);
  border-radius: 999px;
  border: none;
}

.audio-volume::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #0b1626;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.28);
}

.audio-fab {
  position: static;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--ink);
  font-weight: 700;
  font-family: var(--font-body);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
}

:root.theme-dark .audio-fab {
  background: #0f172a;
  border-color: #1f2a3d;
  color: var(--ink);
}

.audio-fab:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
}

.audio-fab.paused {
  opacity: 0.88;
}

.brand-text {
  position: relative;
  z-index: 1;
}

.santa-hat {
  position: absolute;
  width: 26px;
  height: 18px;
  display: inline-block;
  transform: rotate(-23deg);
  top: -10px;
  left: -12px;
  pointer-events: none;
}

.santa-hat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
  clip-path: polygon(6% 100%, 62% 8%, 96% 100%);
  border-radius: 8px 8px 10px 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.santa-hat::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: -1px;
  height: 8px;
  background: #f8fafc;
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
}

.santa-hat .pom {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f8fafc;
  right: -4px;
  top: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.snow-layer,
.snow-layer::before,
.snow-layer::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  content: "";
  background-repeat: repeat;
}

.snow-layer {
  background-image:
    radial-gradient(2px 2px at 20px 20px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1.6px 1.6px at 160px 80px, rgba(255, 255, 255, 0.7), transparent);
  background-size: 320px 520px, 380px 640px;
  animation: snow-fall 18s linear infinite;
  opacity: 0.38;
}

.snow-layer::before {
  background-image:
    radial-gradient(1.8px 1.8px at 60px 30px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1.4px 1.4px at 200px 120px, rgba(255, 255, 255, 0.65), transparent);
  background-size: 360px 600px, 400px 680px;
  animation: snow-fall-slow 26s linear infinite;
  opacity: 0.28;
}

.snow-layer::after {
  background-image:
    radial-gradient(1.5px 1.5px at 100px 40px, rgba(255, 255, 255, 0.72), transparent),
    radial-gradient(1.2px 1.2px at 260px 10px, rgba(255, 255, 255, 0.62), transparent);
  background-size: 420px 720px, 380px 640px;
  animation: snow-fall-fast 14s linear infinite;
  opacity: 0.22;
}

@keyframes snow-fall {
  from {
    background-position: 0 -120px, 0 -220px;
  }
  to {
    background-position: 0 320px, 0 420px;
  }
}

@keyframes snow-fall-slow {
  from {
    background-position: 0 -220px, 0 -320px;
  }
  to {
    background-position: 0 280px, 0 380px;
  }
}

@keyframes snow-fall-fast {
  from {
    background-position: 0 -160px, 0 -260px;
  }
  to {
    background-position: 0 360px, 0 460px;
  }
}

@media (max-width: 720px) {
  section {
    padding: 72px 0;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 48px;
  }

  .header-inner {
    padding-inline: 4px;
  }
}
