@font-face {
  font-family: "GV Time";
  src: url(../fonts/gvtime-regular.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url(../fonts/OpenSans-var.woff2) format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0a043a;
  --navy-2: #0e054c;
  --ink: #050220;
  --royal: #00076a;
  --pink: #f859f1;
  --cyan: #00c0f8;
  --yellow: #f8c000;
  --red: #e2412f;
  --purple: #7a74ab;
  --white: #fbfdfd;
  --display: "GV Time", "Cooper Black", Georgia, serif;
  --label: "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --gutter: clamp(16px, 4vw, 48px);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- shared ---------- */
.wrap {
  width: min(1200px, 100% - 2 * var(--gutter));
  margin-inline: auto;
}
.eyebrow {
  font-family: var(--label);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--cyan);
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.02;
}
.neon-pink {
  color: var(--pink);
  text-shadow:
    0 0 6px rgba(248, 89, 241, 0.9),
    0 0 28px rgba(248, 89, 241, 0.55);
}
.neon-cyan {
  color: var(--cyan);
  text-shadow:
    0 0 6px rgba(0, 192, 248, 0.9),
    0 0 28px rgba(0, 192, 248, 0.55);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 0.8em 1.5em 0.72em;
  border-radius: 999px;
  border: 3px solid var(--white);
  cursor: pointer;
  background: none;
  color: var(--white);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.btn:hover {
  transform: translateY(-3px) rotate(-1deg);
}
.btn-red,
.btn-primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--royal);
  box-shadow:
    0 6px 0 #9a7000,
    0 0 30px rgba(248, 192, 0, 0.45);
}
.btn-red:hover,
.btn-primary:hover {
  box-shadow:
    0 9px 0 #9a7000,
    0 0 44px rgba(248, 192, 0, 0.7);
}
.btn-pink {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow:
    0 0 18px rgba(248, 89, 241, 0.35),
    inset 0 0 14px rgba(248, 89, 241, 0.18);
}
.btn-pink:hover {
  background: rgba(248, 89, 241, 0.14);
}
.btn-ghost {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow:
    0 0 18px rgba(0, 192, 248, 0.35),
    inset 0 0 14px rgba(0, 192, 248, 0.2);
}
.btn-ghost:hover {
  background: rgba(0, 192, 248, 0.14);
}
.btn svg {
  width: 1.2em;
  height: 1.2em;
  flex: none;
}

/* ---------- nav ---------- */
.nav .btn {
  padding: 0.55em 1.05em 0.5em;
  font-size: 1rem;
  border-width: 2px;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 980px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 110px var(--gutter) 90px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 35%, var(--navy-2) 0%, var(--navy) 55%, var(--ink) 100%);
}
.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.stars i {
  position: absolute;
  width: var(--s);
  height: var(--s);
  background: var(--c);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--c);
  opacity: 0.8;
  animation: tw var(--d) ease-in-out infinite alternate;
}
@keyframes tw {
  from {
    opacity: 0.15;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1.2);
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  justify-items: center;
}
.hero-logo {
  width: min(320px, 58vw);
  filter: drop-shadow(0 0 40px rgba(248, 89, 241, 0.45));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  50% {
    transform: translateY(-14px) rotate(1.5deg);
  }
}
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 6.2rem);
  max-width: 14ch;
}
.hero p {
  max-width: 46ch;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: #dcd8f7;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}
.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  translate: -50% 0;
  font-family: var(--label);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--purple);
  z-index: 2;
}
.scroll-cue::after {
  content: "";
  display: block;
  width: 2px;
  height: 34px;
  margin: 8px auto 0;
  background: linear-gradient(var(--cyan), transparent);
  animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--red);
  border-block: 4px solid var(--yellow);
  overflow: hidden;
  transform: rotate(-1.2deg);
  margin: -14px -20px 0;
  position: relative;
  z-index: 3;
}
.marquee div {
  display: flex;
  width: max-content;
  animation: slide 26s linear infinite;
  padding: 0.55em 0;
}
.marquee span {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  color: var(--yellow);
  padding-inline: 1.1rem;
  white-space: nowrap;
}
.marquee span::after {
  content: "\2605";
  margin-left: 2.2rem;
  color: var(--white);
}
@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- video ---------- */
.section {
  padding: clamp(30px, 4vw, 56px) 0;
}
.section-head {
  text-align: center;
  margin-bottom: clamp(18px, 2.6vw, 32px);
  display: grid;
  gap: 12px;
  justify-items: center;
}
.section-head h2 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
}
.section-head p {
  max-width: 52ch;
  color: #cfcbef;
}
.video {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  border: 4px solid var(--pink);
  box-shadow:
    0 0 0 6px var(--navy),
    0 0 0 9px var(--cyan),
    0 0 60px rgba(248, 89, 241, 0.4);
}
.video button,
.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video button {
  cursor: pointer;
  background: #000 center/cover no-repeat;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
}
.video .play {
  width: clamp(70px, 11vw, 120px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 8px rgba(251, 253, 253, 0.25),
    0 0 50px rgba(222, 78, 63, 0.9);
  transition: transform 0.25s;
}
.video button:hover .play {
  transform: scale(1.12);
}
.video .play svg {
  width: 42%;
  margin-left: 8%;
}
.video .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 18px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-family: var(--label);
  font-weight: 800;
  font-size: 0.9rem;
  text-align: left;
}

/* ---------- steps ---------- */
.steps {
  background: linear-gradient(var(--navy), var(--ink) 30%, var(--ink) 70%, var(--navy));
  position: relative;
}
.steps-pin {
  overflow: hidden;
}
.track {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  padding: 0 var(--gutter);
}
.step {
  flex: none;
  width: min(78vw, 420px);
  position: relative;
  background: var(--pink);
  border-radius: 20px;
  padding: 14px;
  box-shadow:
    0 0 0 3px var(--cyan),
    0 0 34px rgba(0, 192, 248, 0.35);
  transform: rotate(var(--r, 0deg));
}
.step:nth-child(odd) {
  --r: -1.4deg;
}
.step:nth-child(even) {
  --r: 1.4deg;
}
.step .n {
  position: absolute;
  top: -26px;
  left: -8px;
  width: 64px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 2.2rem;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.step img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 424/470;
  object-fit: cover;
  background: #fff;
}
.step h3 {
  font-size: 1.45rem;
  color: var(--navy);
  text-align: center;
  margin-top: 14px;
}
.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.hint {
  display: none;
  text-align: center;
  font-family: var(--label);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--purple);
  margin-top: 26px;
}
.progress {
  display: none;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  width: min(1200px, 100% - 2 * var(--gutter));
  margin: 26px auto 0;
  overflow: hidden;
}
.progress b {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  box-shadow: 0 0 12px var(--pink);
}
@media (max-width: 899px) {
  .track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-block: 34px 16px;
    -webkit-overflow-scrolling: touch;
  }
  .step {
    scroll-snap-align: center;
  }
  .hint {
    display: block;
  }
}
@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
  .progress {
    display: block;
  }
  .track {
    padding-block: 40px;
  }
}
@media (min-width: 900px) and (prefers-reduced-motion: reduce) {
  .track {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.still .steps-pin {
  overflow-x: auto;
}

/* ---------- full sheet ---------- */
.sheet {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 4px solid var(--yellow);
  box-shadow: 0 0 60px rgba(248, 192, 0, 0.2);
  cursor: zoom-in;
  background: none;
  padding: 0;
  display: block;
  width: 100%;
  color: inherit;
}
.sheet img {
  width: 100%;
}
.sheet .badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: var(--navy);
  color: var(--cyan);
  font-family: var(--label);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.6em 1em;
  border-radius: 999px;
  border: 2px solid var(--cyan);
}
.download {
  margin-top: 30px;
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.download small {
  color: var(--purple);
  font-family: var(--label);
  font-weight: 800;
}

dialog {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: none;
  max-height: none;
  width: 100vw;
  height: 100dvh;
  margin: 0;
}
dialog::backdrop {
  background: rgba(5, 2, 32, 0.96);
}
dialog .lb {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(8px, 2vw, 24px);
  overflow: auto;
}
dialog img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
dialog .close {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--red);
  border-color: var(--red);
  padding: 0.6em 1.1em;
}

/* ---------- reviews ---------- */
.reviews {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.review {
  background: var(--navy-2);
  border: 3px solid var(--cyan);
  border-radius: 20px;
  padding: 26px 24px 22px;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 192, 248, 0.22);
}
.review:nth-child(2) {
  border-color: var(--pink);
  box-shadow: 0 0 30px rgba(248, 89, 241, 0.25);
}
.review:nth-child(3) {
  border-color: var(--yellow);
  box-shadow: 0 0 30px rgba(248, 192, 0, 0.18);
}
.review::before {
  content: "\201C";
  position: absolute;
  top: -6px;
  left: 18px;
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1;
  color: var(--pink);
  text-shadow: 0 0 18px rgba(248, 89, 241, 0.7);
}
.review p {
  margin-top: 34px;
  color: #eceafd;
}
.review footer {
  padding: 0;
  margin-top: 16px;
  text-align: left;
  justify-items: start;
  gap: 0;
  font-size: 0.85rem;
  color: var(--cyan);
}
.review .who {
  font-family: var(--label);
  font-weight: 800;
}
.review .what {
  color: var(--purple);
  font-family: var(--label);
  font-weight: 800;
  font-size: 0.8rem;
}

/* ---------- social ---------- */
.social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.social a {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--label);
  font-weight: 800;
  text-decoration: none;
  color: var(--white);
  border: 3px solid var(--pink);
  border-radius: 999px;
  padding: 0.75em 1.3em;
  box-shadow: 0 0 18px rgba(248, 89, 241, 0.35);
  transition:
    transform 0.2s,
    background 0.2s;
}
.social a:hover {
  transform: translateY(-3px) rotate(-1deg);
  background: rgba(248, 89, 241, 0.16);
}
.social svg {
  width: 1.3em;
  height: 1.3em;
  flex: none;
}

/* ---------- banner + footer ---------- */
.banner {
  position: relative;
}
.banner img {
  width: 100%;
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 72%, var(--navy));
}
.banner-mobile {
  display: none;
}
@media (max-width: 640px) {
  .banner-desktop {
    display: none;
  }
  .banner-mobile {
    display: block;
  }
}
footer {
  padding: 50px 0 60px;
  text-align: center;
  color: var(--purple);
  font-family: var(--label);
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  gap: 14px;
  justify-items: center;
}
footer strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 2rem;
  color: var(--pink);
  text-shadow: 0 0 18px rgba(248, 89, 241, 0.7);
}

/* ---------- reveal (JS adds .js) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(34px);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- blog ---------- */
.page-blog main {
  padding-top: 96px;
}
.wrap-narrow {
  width: min(760px, 100% - 2 * var(--gutter));
  margin-inline: auto;
}
.wrap-wide {
  width: min(1100px, 100% - 2 * var(--gutter));
  margin-inline: auto;
}
.crumbs {
  font-family: var(--label);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--purple);
  margin-bottom: 18px;
}
.crumbs a {
  color: var(--cyan);
  text-decoration: none;
}
.page-blog h1 {
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  margin-bottom: 14px;
}
.post-meta {
  font-family: var(--label);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--purple);
  margin-bottom: 26px;
}
.post-hero {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 3px solid var(--pink);
  box-shadow: 0 0 40px rgba(248, 89, 241, 0.3);
  margin-bottom: 34px;
}
.prose {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #e6e3fa;
}
.prose > * + * {
  margin-top: 1.15em;
}
.prose h2,
.prose h3 {
  color: var(--white);
  margin-top: 1.9em;
  line-height: 1.12;
}
.prose h2 {
  font-size: clamp(1.7rem, 4.2vw, 2.4rem);
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(0, 192, 248, 0.4);
}
.prose h3 {
  font-size: clamp(1.4rem, 3.4vw, 1.9rem);
  color: var(--pink);
  text-shadow: 0 0 16px rgba(248, 89, 241, 0.35);
}
.prose h4 {
  font-family: var(--label);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--yellow);
  margin-top: 1.6em;
}
.prose p.lead {
  font-size: 1.18rem;
  color: var(--white);
}
.prose strong {
  color: var(--white);
}
.prose a {
  color: var(--cyan);
  text-underline-offset: 3px;
}
.prose a:hover {
  color: var(--pink);
}
.prose ul,
.prose ol {
  padding-left: 1.3em;
}
.prose li {
  margin-top: 0.5em;
}
.prose li::marker {
  color: var(--pink);
}
.prose hr {
  border: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  margin: 2em 0;
}
.prose img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 3px solid var(--cyan);
  box-shadow: 0 0 30px rgba(0, 192, 248, 0.25);
}
.embed {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--pink);
  background: #000;
}
.embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.table-wrap {
  overflow-x: auto;
  border: 3px solid var(--purple);
  border-radius: 14px;
}
.prose table {
  border-collapse: collapse;
  width: 100%;
  min-width: 440px;
}
.prose th,
.prose td {
  padding: 0.7em 1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
  vertical-align: top;
}
.prose tr:last-child td {
  border-bottom: 0;
}
.cta-box {
  margin: 60px 0 10px;
  padding: 30px clamp(20px, 4vw, 40px);
  text-align: center;
  border-radius: 24px;
  border: 3px solid var(--yellow);
  background: linear-gradient(160deg, var(--navy-2), var(--ink));
  box-shadow: 0 0 50px rgba(248, 192, 0, 0.16);
  display: grid;
  gap: 12px;
  justify-items: center;
}
.cta-box h2 {
  font-size: clamp(1.8rem, 4.6vw, 2.6rem);
  color: var(--yellow);
}
.cta-box p {
  max-width: 44ch;
  color: #cfcbef;
}
.lead-in {
  font-size: 1.15rem;
  color: #cfcbef;
  max-width: 56ch;
  margin-bottom: 34px;
}
.more {
  margin-top: 70px;
}
.more h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  margin-bottom: 24px;
}
.post-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}
.post-card {
  display: grid;
  align-content: start;
  gap: 8px;
  text-decoration: none;
  color: var(--white);
  background: var(--navy-2);
  border: 3px solid var(--cyan);
  border-radius: 20px;
  padding: 12px 12px 20px;
  box-shadow: 0 0 26px rgba(0, 192, 248, 0.2);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.post-card:nth-child(3n + 2) {
  border-color: var(--pink);
  box-shadow: 0 0 26px rgba(248, 89, 241, 0.22);
}
.post-card:nth-child(3n) {
  border-color: var(--yellow);
  box-shadow: 0 0 26px rgba(248, 192, 0, 0.16);
}
.post-card:hover {
  transform: translateY(-4px) rotate(-0.6deg);
}
.post-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 6px;
}
.pc-date {
  font-family: var(--label);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--purple);
  padding-inline: 6px;
}
.pc-title {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.12;
  padding-inline: 6px;
}
.page-blog .post {
  padding-bottom: 20px;
}

/* ---------- faq + quick answer ---------- */
.answer {
  max-width: 60ch;
  margin: -10px auto 34px;
  text-align: center;
  color: #e6e3fa;
  font-size: 1.05rem;
}
.answer strong {
  color: var(--yellow);
}
.faq {
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--navy-2);
  border: 3px solid var(--purple);
  border-radius: 16px;
  padding: 0 22px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.faq-item[open] {
  border-color: var(--cyan);
  box-shadow: 0 0 26px rgba(0, 192, 248, 0.22);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-family: var(--label);
  font-weight: 800;
  color: var(--pink);
  font-size: 1.6rem;
  line-height: 1;
  flex: none;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding-bottom: 22px;
  color: #dcd8f7;
}

/* =====================================================================
   SITE CHROME (shared by every page): nav, footer, page headers
   ===================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px var(--gutter);
  background: linear-gradient(rgba(10, 4, 58, 0.96), rgba(10, 4, 58, 0.72) 70%, transparent);
  backdrop-filter: blur(6px);
}
.brand {
  font-family: var(--display);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--cyan);
  text-decoration: none;
  text-shadow: 0 0 14px rgba(0, 192, 248, 0.7);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
}
.nav-links a:not(.btn) {
  font-family: var(--label);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--white);
  padding: 0.4em 0;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.nav-links a:not(.btn):hover {
  color: var(--pink);
}
.nav-links a[aria-current="page"] {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--cyan);
  color: var(--cyan);
  border-radius: 12px;
  width: 46px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    position: fixed;
    inset: 60px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--gutter) 24px;
    background: rgba(10, 4, 58, 0.985);
    border-bottom: 3px solid var(--pink);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-130%);
    transition: transform 0.3s;
    visibility: hidden;
  }
  .nav-links.open {
    transform: none;
    visibility: visible;
  }
  .nav-links a:not(.btn) {
    font-size: 1.05rem;
    padding: 0.95em 0.2em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links .btn {
    margin-top: 14px;
  }
}
main {
  display: block;
}
.page-head {
  position: relative;
  padding: clamp(92px, 11vw, 130px) 0 clamp(18px, 3vw, 34px);
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, var(--navy-2), var(--navy) 62%, var(--ink));
}
.page-head .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.page-head h1 {
  font-size: clamp(2.4rem, 7.4vw, 5rem);
  max-width: 16ch;
}
.page-head p.sub {
  max-width: 58ch;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #dcd8f7;
}
.page-head .crumbs {
  margin: 0;
}
.section-alt {
  background: linear-gradient(var(--navy), var(--ink) 25%, var(--ink) 75%, var(--navy));
}

.site-foot {
  padding: 0;
  display: block;
  text-align: left;
  font-weight: 400;
  color: #cfcbef;
  background: var(--ink);
  border-top: 4px solid var(--pink);
  margin-top: 0;
}
.foot-grid {
  width: min(1200px, 100% - 2 * var(--gutter));
  margin-inline: auto;
  padding: 56px 0 30px;
  display: grid;
  gap: 34px;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
}
.site-foot strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 2rem;
  color: var(--pink);
  text-shadow: 0 0 18px rgba(248, 89, 241, 0.7);
  display: block;
  margin-bottom: 10px;
}
.site-foot h2 {
  font-family: var(--label);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.site-foot ul {
  list-style: none;
  display: grid;
  gap: 8px;
}
.site-foot a {
  color: #e6e3fa;
  text-decoration: none;
}
.site-foot a:hover {
  color: var(--yellow);
  text-decoration: underline;
}
.site-foot p {
  max-width: 34ch;
  font-size: 0.95rem;
}
.foot-base {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px var(--gutter);
  text-align: center;
  font-size: 0.85rem;
  color: var(--purple);
}
@media (max-width: 820px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .foot-grid > div:first-child {
    grid-column: 1/-1;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
