:root {
  --bg0: #070b09;
  --bg1: #101a14;
  --ink: #f4e8c8;
  --muted: #c4b28a;
  --gold: #c9a227;
  --gold-soft: #efd27a;
  --line: rgba(201, 162, 39, 0.32);
  --parchment: #1a2218;
  --parchment-edge: rgba(201, 162, 39, 0.22);
  --danger: #c45c5c;
  --ok: #6fbf8a;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "EB Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.12rem;
  background: var(--bg0);
  overflow-x: hidden;
}

a { color: var(--gold-soft); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  color: var(--gold-soft);
}

/* ---- atmosphere ---- */
.sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--bg0);
  background-image:
    linear-gradient(
      180deg,
      rgba(5, 8, 5, 0.62) 0%,
      rgba(5, 8, 5, 0.38) 38%,
      rgba(7, 11, 9, 0.55) 62%,
      rgba(7, 11, 9, 0.88) 100%
    ),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 162, 39, 0.14), transparent 58%),
    url("/static/castle-bg.png");
  background-position: center center, center top, center bottom;
  background-size: cover, cover, cover;
  background-repeat: no-repeat;
}

.stars,
.stars-2 {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 8% 12%, rgba(255,240,200,0.9), transparent),
    radial-gradient(1px 1px at 22% 28%, rgba(255,240,200,0.7), transparent),
    radial-gradient(1.5px 1.5px at 41% 8%, rgba(255,240,200,0.85), transparent),
    radial-gradient(1px 1px at 63% 18%, rgba(255,240,200,0.65), transparent),
    radial-gradient(1.5px 1.5px at 78% 6%, rgba(255,240,200,0.8), transparent),
    radial-gradient(1px 1px at 91% 22%, rgba(255,240,200,0.7), transparent),
    radial-gradient(1px 1px at 15% 45%, rgba(255,240,200,0.5), transparent),
    radial-gradient(1.5px 1.5px at 55% 35%, rgba(255,240,200,0.75), transparent),
    radial-gradient(1px 1px at 85% 48%, rgba(255,240,200,0.55), transparent);
  animation: twinkle 6s ease-in-out infinite alternate;
}
.stars-2 {
  opacity: 0.55;
  transform: scale(1.15);
  animation-duration: 9s;
  animation-direction: alternate-reverse;
}

.aurora {
  position: absolute;
  top: 0;
  left: -10%;
  right: -10%;
  height: 45vh;
  background:
    radial-gradient(ellipse 40% 70% at 30% 40%, rgba(60, 120, 80, 0.18), transparent 70%),
    radial-gradient(ellipse 35% 60% at 70% 30%, rgba(201, 162, 39, 0.1), transparent 70%);
  filter: blur(20px);
  animation: drift 14s ease-in-out infinite alternate;
}

.castle {
  display: none;
}

.mist {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22vh;
  background: linear-gradient(180deg, transparent, rgba(7, 11, 9, 0.5) 40%, var(--bg0));
}

.snitch {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff4c4, var(--gold));
  box-shadow: 0 0 16px rgba(239, 210, 122, 0.85), 0 0 40px rgba(201, 162, 39, 0.35);
  top: 18%;
  left: 12%;
  animation: snitch-fly 18s ease-in-out infinite;
}
.snitch::before,
.snitch::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 18px;
  height: 6px;
  background: rgba(244, 232, 200, 0.35);
  border-radius: 50%;
  filter: blur(0.5px);
}
.snitch::before { left: -18px; transform: rotate(-18deg); }
.snitch::after { right: -18px; transform: rotate(18deg); }

.wrap {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 4rem;
}

/* ---- top navigation ---- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(7, 11, 9, 0.82);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  backdrop-filter: blur(12px);
}

.topbar-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  text-decoration: none;
}

.topbar-logo:hover { text-decoration: none; opacity: 0.9; }

.topbar-nav {
  display: flex;
  gap: 1.1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-nav a {
  color: var(--muted);
  text-decoration: none;
}

.topbar-nav a:hover { color: var(--gold-soft); text-decoration: none; }

/* ---- hero (top, visible) ---- */
.hero,
.page-intro {
  padding: 2.5rem 0 2rem;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
  animation: rise 0.7s ease both;
}

.hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 9vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  animation: rise 0.85s ease 0.05s both;
}

.hero-title span {
  color: var(--gold-soft);
  text-shadow: 0 0 32px rgba(201, 162, 39, 0.35);
}

.hero-title-sm {
  font-size: clamp(2rem, 7vw, 3.2rem);
}

.hero-sub {
  max-width: 32rem;
  margin: 0 auto 1.75rem;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--muted);
  animation: rise 0.95s ease 0.1s both;
}

.hero-sub em {
  color: var(--gold-soft);
  font-style: italic;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
  animation: rise 1s ease 0.14s both;
}

.btn-glow {
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(201, 162, 39, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-glow:hover {
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 36px rgba(201, 162, 39, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* buy page */
.chosen-tariff {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin: 0 auto 1.25rem;
  max-width: 28rem;
  padding: 0.85rem 1.1rem;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.4);
  text-align: center;
}

.chosen-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.chosen-tariff strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}

.chosen-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-soft);
}

.buy-form { max-width: 28rem; margin: 0 auto; }

.back-link {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.95rem;
}

/* spell steps */
.spell-panel {
  padding: 2rem 1rem 2.25rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.spell-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.spell-step {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: rgba(10, 16, 13, 0.65);
  border: 1px solid rgba(201, 162, 39, 0.2);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.spell-step:hover {
  border-color: rgba(239, 210, 122, 0.45);
  transform: translateY(-2px);
}

.spell-icon {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.spell-step h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--gold-soft);
}

.spell-step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.4;
}

.hero {
  min-height: auto;
  display: block;
  justify-content: unset;
  padding-bottom: 0;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 8vw, 4.4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0 0 0.85rem;
  color: var(--gold-soft);
  text-shadow: 0 0 40px rgba(201, 162, 39, 0.25);
  animation: rise 0.85s ease both;
}
.brand-sm {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.4rem;
}

.headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  letter-spacing: 0.03em;
  line-height: 1.25;
  margin: 0 0 0.9rem;
  max-width: 18ch;
  animation: rise 0.95s ease 0.06s both;
}

.tagline {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.45;
  margin: 0 0 1.75rem;
  animation: rise 1s ease 0.1s both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 2.5rem;
  animation: rise 1.05s ease 0.14s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, #e0c15a, var(--gold) 55%, #a8841a);
  color: #1a1408;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 1.35rem;
  border-radius: 1px;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.22), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-ghost {
  background: rgba(10, 16, 13, 0.45);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.btn-block { width: 100%; }

.section { margin: 2.5rem 0 0; animation: rise 1s ease 0.18s both; }
.section-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.85rem;
  color: var(--gold-soft);
  letter-spacing: 0.03em;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.25rem;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ornament span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.ornament em { font-style: normal; white-space: nowrap; }

.hero-centered {
  align-items: center;
  text-align: center;
}

.hero-centered .headline {
  max-width: none;
}

.hero-centered .tagline {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-centered {
  justify-content: center;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 0.5rem;
  text-align: center;
}

.section-lead {
  margin: 0 auto 1.75rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.45;
  max-width: 28rem;
  text-align: center;
}

/* ---- tariff rows (ticket list) ---- */
.tariff-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.tariff-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 1rem 1.15rem;
  color: inherit;
  background: rgba(10, 16, 13, 0.72);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-left-width: 4px;
  backdrop-filter: blur(10px);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.tariff-row:hover {
  background: rgba(18, 28, 22, 0.88);
  border-color: rgba(239, 210, 122, 0.45);
  transform: translateX(4px);
  box-shadow: -4px 0 24px rgba(201, 162, 39, 0.12);
  text-decoration: none;
}

.tariff-1m { border-left-color: #7a9e82; }
.tariff-3m { border-left-color: var(--gold); }
.tariff-6m { border-left-color: #c9a227; box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.08); }
.tariff-12m { border-left-color: #8b7355; }

.tariff-num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gold-soft);
  opacity: 0.85;
  line-height: 1;
  text-align: center;
}

.tariff-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.tariff-info strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.tariff-info span {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.35;
}

.tariff-sum {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-soft);
  white-space: nowrap;
  padding: 0.35rem 0.85rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 162, 39, 0.3);
}

/* ---- how (legacy) ---- */
.how-block {
  margin-top: 3rem;
  padding: 1.5rem 1.25rem;
  background: rgba(8, 12, 10, 0.5);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.how-item {
  text-align: center;
  padding: 0.5rem 0.25rem;
}

.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1408;
  background: linear-gradient(180deg, #e8cc6a, var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.how-item p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.45;
}

.how-item b {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

/* ornament hidden on new layout */
.ornament { display: none; }

.parchment {
  position: relative;
  background:
    linear-gradient(180deg, rgba(244, 232, 200, 0.04), transparent 30%),
    linear-gradient(135deg, rgba(26, 34, 24, 0.92), rgba(14, 20, 16, 0.95));
  border: 1px solid var(--parchment-edge);
  padding: 1.4rem 1.35rem 1.5rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}
.parchment::before,
.parchment::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold);
  opacity: 0.55;
}
.parchment::before { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.parchment::after { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

.panel { margin-top: 1rem; animation: rise 0.7s ease both; }

.steps {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.55;
}
.steps li { margin: 0.55rem 0; }
.steps strong { color: var(--ink); font-weight: 600; }

label {
  display: block;
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 1rem;
}
.optional { opacity: 0.7; font-size: 0.92em; }
input, select {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 1px;
  background: rgba(0,0,0,0.28);
  color: var(--ink);
  font: inherit;
}
input:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}
.hint { color: var(--muted); font-size: 1rem; margin: -0.35rem 0 1rem; line-height: 1.45; }
.error {
  color: #ffd0d0;
  background: rgba(196, 92, 92, 0.16);
  border: 1px solid rgba(196, 92, 92, 0.4);
  padding: 0.8rem 0.95rem;
  margin-bottom: 1rem;
}
.ok {
  color: #d8ffe6;
  background: rgba(111, 191, 138, 0.1);
  border: 1px solid rgba(111, 191, 138, 0.32);
  padding: 0.8rem 0.95rem;
  margin-bottom: 1rem;
}
.code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  display: inline-block;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  font-size: 1.05rem;
}
.conf {
  margin: 1.5rem 0;
}
.conf img {
  width: min(240px, 70vw);
  height: auto;
  background: #fff;
  padding: 0.55rem;
  margin: 0.75rem 0;
  border: 1px solid var(--line);
}

.howto {
  margin-top: 3rem;
  padding-top: 0.5rem;
}

.howto-hero {
  margin: 0 0 1.5rem;
}

.howto-hero img,
.howto-method img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(201, 162, 39, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.howto-hero figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.app-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0.95rem;
  background: rgba(10, 16, 13, 0.72);
  border: 1px solid rgba(201, 162, 39, 0.28);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.app-card:hover {
  text-decoration: none;
  border-color: rgba(239, 210, 122, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.16);
}

.app-os {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.app-card strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
}

.app-card span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.howto-note {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
  margin: 0 0 1.75rem;
}

.howto-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.howto-method {
  background: rgba(10, 16, 13, 0.7);
  border: 1px solid rgba(201, 162, 39, 0.22);
  padding: 0 0 1rem;
}

.howto-method h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-soft);
  margin: 0.9rem 1rem 0.15rem;
}

.howto-best {
  margin: 0 1rem 0.7rem;
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.howto-method ol {
  margin: 0;
  padding: 0 1.4rem 0 2.1rem;
  color: var(--muted);
  line-height: 1.5;
}

.howto-method li { margin: 0.35rem 0; }
.howto-method b { color: var(--ink); }

.howto-trouble h3 {
  font-family: var(--font-display);
  color: var(--gold-soft);
  margin: 0 0 0.7rem;
}

.howto-trouble ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.5;
}

.howto-trouble li { margin: 0.35rem 0; }

.footer {
  margin-top: 3.5rem;
  color: var(--muted);
  font-size: 0.98rem;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
}
.footer-mark {
  color: var(--gold);
  margin-right: 0.25rem;
  opacity: 0.8;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes twinkle {
  from { opacity: 0.55; }
  to { opacity: 1; }
}
@keyframes drift {
  from { transform: translateX(-2%) scale(1); }
  to { transform: translateX(2%) scale(1.04); }
}
@keyframes snitch-fly {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(55vw, 8vh); }
  50%  { transform: translate(30vw, -4vh); }
  75%  { transform: translate(70vw, 12vh); }
  100% { transform: translate(0, 0); }
}

@media (max-width: 640px) {
  .topbar-nav { gap: 0.65rem; font-size: 0.68rem; }
  .hero-title { font-size: clamp(2.2rem, 11vw, 3rem); }
  .tariff-row {
    grid-template-columns: 2.5rem 1fr;
    grid-template-rows: auto auto;
  }
  .tariff-sum {
    grid-column: 2;
    justify-self: start;
    margin-top: -0.25rem;
  }
  .how-grid,
  .spell-steps,
  .app-grid,
  .howto-methods {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .sky {
    background-position: center center, center top, 58% bottom;
    background-size: cover, cover, cover;
  }
  .snitch { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .stars, .stars-2, .aurora, .snitch, .brand, .headline, .tagline, .cta-row, .section, .panel {
    animation: none !important;
  }
}
