:root {
  --bg: #05070c;
  --bg-blue: #0a1628;
  --ink: #e8eef8;
  --muted: #8b9bb4;
  --line: rgba(140, 170, 220, 0.14);
  --accent: #3d7cff;
  --accent-soft: rgba(61, 124, 255, 0.18);
  --surface: rgba(12, 18, 32, 0.55);
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --font-flow: "Caveat", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 4px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 70% at 50% -20%, #122038 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 40%, rgba(20, 48, 96, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(14, 36, 72, 0.4) 0%, transparent 45%),
    linear-gradient(180deg, var(--bg-blue) 0%, var(--bg) 45%, #03050a 100%);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.orb-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.logo-watermark {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.logo-watermark.is-moving,
.logo-watermark.is-parked {
  overflow: visible;
}

.logo-watermark img {
  position: absolute;
  right: -4%;
  bottom: -6%;
  width: min(56vw, 540px);
  height: auto;
  opacity: 0.11;
  filter: saturate(0.85) hue-rotate(6deg) drop-shadow(0 0 28px rgba(61, 124, 255, 0.35));
  transform: rotate(-8deg);
  transform-origin: center center;
  user-select: none;
  will-change: transform, opacity, left, top;
}

/* When JS drives the flight, pin with left/top instead of right/bottom. */
.logo-watermark.is-moving img,
.logo-watermark.is-parked img {
  right: auto;
  bottom: auto;
}

.site {
  position: relative;
  z-index: 1;
}

.wrap {
  width: min(1080px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Nav */
.nav {
  padding: 0.85rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-inner--end {
  justify-content: flex-end;
}

.brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Home stage transition
   One scroll / nav click plays the sequence (js/home-transition.js):
   services recede + split to the sides, details rise up under the fixed title,
   logo exits off-screen then parks large on the deep-blue left. */
.home .site {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(5, 7, 12, 0.92) 0%, rgba(5, 7, 12, 0.72) 70%, transparent 100%);
  backdrop-filter: blur(8px);
}

.stage-track {
  position: relative;
  height: calc(100svh - 3.5rem);
}

.stage-track.is-expanded {
  height: auto;
  min-height: calc(100svh - 3.5rem);
}

.stage-sticky {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0.35rem 0 4.6rem;
}

.stage-sticky.is-expanded {
  height: auto;
  overflow: visible;
  padding-bottom: 5.75rem;
}

.stage-scene {
  --exit: 0;
  --enter: 0;
  --actions-h: 0px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: min(1080px, calc(100% - 2rem));
}

.stage-sticky.is-expanded .stage-scene {
  flex: 0 0 auto;
  min-height: 0;
}

.stage-hero {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  padding: 0.35rem 0 0.5rem;
  margin-bottom: calc(var(--exit) * -1 * var(--actions-h));
}

.stage-hero .hero-actions {
  animation: none;
  opacity: calc(1 - var(--exit) * 1.6);
  transform: translateY(calc(var(--exit) * 0.6rem)) scale(calc(1 - var(--exit) * 0.06));
  pointer-events: auto;
  transition: none;
}

.stage-scene.is-details .stage-hero .hero-actions,
.stage-scene.is-transitioning .stage-hero .hero-actions {
  pointer-events: none;
}

.stage-swap {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.stage-sticky.is-expanded .stage-swap {
  flex: 0 0 auto;
  overflow: visible;
  min-height: 0;
}

.stage-services,
.stage-details {
  position: absolute;
  inset: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 1.5rem;
  scrollbar-width: thin;
}

.stage-sticky.is-expanded .stage-services {
  display: none;
}

.stage-sticky.is-expanded .stage-details {
  position: relative;
  inset: auto;
  overflow: visible;
  opacity: 1;
  transform: none;
  padding-bottom: 1.75rem;
}

.stage-services {
  z-index: 2;
  opacity: calc(1 - var(--exit) * 1.1);
  pointer-events: auto;
  perspective: 1200px;
}

.stage-scene.is-transitioning .stage-services {
  overflow-y: hidden;
}

.stage-scene.is-details .stage-services,
.stage-scene.is-transitioning .stage-services {
  pointer-events: none;
}

.stage-details {
  z-index: 1;
  opacity: var(--enter);
  transform: translateY(calc((1 - var(--enter)) * 3.25rem));
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.stage-scene.is-details .stage-details {
  pointer-events: auto;
  z-index: 3;
}

.stage-services .plan {
  will-change: transform, opacity;
}

.stage-services .section-head {
  opacity: calc(1 - var(--exit) * 1.4);
  transform: translateY(calc(var(--exit) * -0.9rem)) scale(calc(1 - var(--exit) * 0.05));
  transform-origin: top left;
}

/* Cards fall back (shrink) while sliding out to the sides and fading. */
.stage-services .plan[data-exit="left"] {
  transform:
    translate3d(calc(var(--exit) * -125%), calc(var(--exit) * 14%), 0)
    scale(calc(1 - var(--exit) * 0.28))
    rotate(calc(var(--exit) * -7deg));
  opacity: calc(1 - var(--exit) * 1.15);
}

.stage-services .plan[data-exit="down"] {
  transform:
    translate3d(0, calc(var(--exit) * 22%), 0)
    scale(calc(1 - var(--exit) * 0.4));
  opacity: calc(1 - var(--exit) * 1.25);
}

.stage-services .plan[data-exit="right"] {
  transform:
    translate3d(calc(var(--exit) * 125%), calc(var(--exit) * 14%), 0)
    scale(calc(1 - var(--exit) * 0.28))
    rotate(calc(var(--exit) * 7deg));
  opacity: calc(1 - var(--exit) * 1.15);
}

.stage-services [data-exit="fade"] {
  opacity: calc(1 - var(--exit) * 1.4);
  transform: translateY(calc(var(--exit) * 1.5rem)) scale(calc(1 - var(--exit) * 0.08));
}

.stage-details .section-head,
.stage-details .notes,
.stage-details .support-panel,
.stage-details .social-panel {
  opacity: var(--enter);
}

.stage-details .section-head {
  transform: translateY(calc((1 - var(--enter)) * 1.1rem));
}

.stage-details .notes {
  transform: translateY(calc((1 - var(--enter)) * 1.8rem));
}

.stage-details .support-panel {
  transform: translateY(calc((1 - var(--enter)) * 2.5rem));
}

.stage-details .social-panel {
  transform: translateY(calc((1 - var(--enter)) * 3.2rem));
}

.stage-footer {
  margin-top: 0.35rem;
  padding: 1rem 0 0.35rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.55rem 1rem;
  font-size: 0.84rem;
  color: var(--muted);
  opacity: var(--enter);
  transform: translateY(calc((1 - var(--enter)) * 3.6rem));
}

.stage-footer strong {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
}

.stage-sticky.is-expanded .stage-footer {
  opacity: 1;
  transform: none;
  padding-bottom: 0.75rem;
}

/* Centered Discord row — Details/Services sit to the LEFT of Discord */
.nav--center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.65rem 0 0.45rem;
}

.nav-stack {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: max-content;
}

.nav-stack--top {
  min-height: 2.6rem;
}

.nav-stack--bottom {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  z-index: 6;
  gap: 0.65rem;
}

.nav-stack .btn,
.nav-stack .nav-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  align-self: center;
}

/* Keep Discord as the visual center; side links sit to its left */
.nav-page-link--details,
.nav-page-link--services {
  opacity: 0;
  pointer-events: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0.55rem;
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  cursor: pointer;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.3s var(--ease), color 0.25s var(--ease), transform 0.3s var(--ease);
  transform: translateX(6px);
}

.nav-page-link--details {
  order: 1;
}

.nav-discord-top,
.nav-discord-bottom {
  order: 2;
}

.nav-page-link--services {
  order: 1;
}

.nav-page-link--details:hover,
.nav-page-link--services:hover {
  color: var(--ink);
}

body.is-services-view .nav-page-link--details,
body.is-details-view .nav-page-link--services {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* Discord: exits off the top, then reappears centered at the bottom */
.home {
  --discord-out: 0;
  --discord-in: 0;
}

.nav-discord-top {
  will-change: transform, opacity;
  opacity: calc(1 - var(--discord-out));
  transform: translateY(calc(var(--discord-out) * -160%));
  pointer-events: auto;
}

body.is-discord-away .nav-discord-top {
  pointer-events: none;
}

.nav-discord-bottom {
  will-change: transform, opacity;
  opacity: var(--discord-in);
  transform: translateY(calc((1 - var(--discord-in)) * 1.5rem));
  pointer-events: none;
}

body.is-discord-here .nav-discord-bottom {
  pointer-events: auto;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
  pointer-events: auto;
  z-index: 5;
}

body.is-details-view .scroll-cue,
.stage-sticky.is-active .scroll-cue {
  opacity: 0;
  pointer-events: none;
}

body.is-services-view .scroll-cue {
  bottom: 0.85rem;
  /* Keep scroll cue from stacking on Discord — Discord is in the header on top page */
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 1.4rem;
  background: linear-gradient(180deg, rgba(140, 185, 255, 0.7), transparent);
  animation: cue-pulse 1.6s var(--ease) infinite;
}

.scroll-cue:hover {
  color: var(--ink);
}

@keyframes cue-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.social-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
}

.social-panel h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.social-panel p {
  color: var(--muted);
  font-size: 0.92rem;
}

.socials--large {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.6rem;
}

.socials--large a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(110, 170, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(40, 80, 160, 0.16);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.socials--large a:hover {
  border-color: rgba(140, 185, 255, 0.6);
  background: var(--accent-soft);
}

.social-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a:not(.btn) {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0.55rem;
  transition: color 0.25s var(--ease);
}

.nav-links a:not(.btn):hover {
  color: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(61, 124, 255, 0.35);
}

.btn-primary:hover {
  background: #5a91ff;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: rgba(140, 170, 220, 0.4);
  background: rgba(255, 255, 255, 0.03);
}

.btn-discord {
  background: linear-gradient(180deg, #4a88ff 0%, var(--accent) 100%);
  color: #fff;
  border-color: rgba(140, 185, 255, 0.35);
  box-shadow: 0 0 18px rgba(61, 124, 255, 0.32);
}

.btn-discord:hover {
  background: linear-gradient(180deg, #5e97ff 0%, #4a88ff 100%);
  box-shadow: 0 0 24px rgba(61, 124, 255, 0.45);
}

.btn-block {
  width: 100%;
}

.pay-methods {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn-pay {
  width: 100%;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-pay:hover {
  border-color: rgba(61, 124, 255, 0.5);
  background: var(--accent-soft);
}

.btn-pay .pay-label {
  font-weight: 600;
}

.btn-pay .pay-handle {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

/* Hero */
.hero {
  padding: 2.25rem 0 2.5rem;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-brand {
  font-family: var(--font-flow);
  font-size: clamp(3.6rem, 13vw, 6.8rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.88;
  margin-bottom: 0.95rem;
  color: #f0f6ff;
  transform: rotate(-2.5deg);
  transform-origin: left center;
  text-shadow:
    0 0 14px rgba(120, 185, 255, 0.65),
    0 0 36px rgba(61, 124, 255, 0.4),
    0 3px 0 rgba(0, 0, 0, 0.28);
  opacity: 0;
  animation: rise-tilt 0.95s var(--ease) 0.05s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 28ch;
  margin-bottom: 0.65rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.2s forwards;
}

.hero-copy {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 42ch;
  margin-bottom: 1.15rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.35s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.5s forwards;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise-tilt {
  from {
    opacity: 0;
    transform: rotate(-2.5deg) translateY(18px);
  }
  to {
    opacity: 1;
    transform: rotate(-2.5deg) translateY(0);
  }
}

/* Sections */
section:not(.panel) {
  padding: 2.25rem 0;
}

.section-head {
  max-width: 34rem;
  margin-bottom: 1.25rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.section-head p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Plans */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.plan {
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.05rem 1rem;
  background: var(--surface);
  border: 1px solid rgba(90, 140, 220, 0.28);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 22px rgba(61, 124, 255, 0.14);
  cursor: pointer;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  will-change: transform, opacity;
}

.plan:hover {
  border-color: rgba(130, 185, 255, 0.65);
  box-shadow:
    0 0 0 1px rgba(120, 180, 255, 0.25),
    0 0 28px rgba(70, 150, 255, 0.35);
}

.plan.is-selected,
.plan.featured.is-selected {
  background: rgba(12, 18, 32, 0.5);
  border-color: #8ec4ff;
  box-shadow:
    0 0 0 1px rgba(150, 210, 255, 0.55),
    0 0 16px rgba(110, 185, 255, 0.55),
    0 0 40px rgba(61, 124, 255, 0.45);
}

.plan.featured {
  border-color: rgba(110, 170, 255, 0.5);
  box-shadow: 0 0 26px rgba(61, 124, 255, 0.22);
}

.plan-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.plan.featured .plan-label,
.plan.is-selected .plan-label {
  color: #9ec4ff;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.plan-name {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
  margin-bottom: 0.95rem;
}

.plan li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--accent);
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(61, 124, 255, 0.55);
}

.warranty-banner {
  margin-top: 1rem;
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(110, 170, 255, 0.4);
  background: linear-gradient(120deg, rgba(40, 80, 160, 0.28), rgba(12, 18, 32, 0.45));
  border-radius: var(--radius);
  box-shadow: 0 0 20px rgba(61, 124, 255, 0.12);
  color: #cfe0ff;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
}

.warranty-banner strong {
  color: #f0f6ff;
  font-weight: 700;
}

/* Notes */
.notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.note {
  padding: 0.95rem 1rem;
  border-left: 2px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.note h3 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.note p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Support */
.support-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.support-panel h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.support-panel p {
  color: var(--muted);
  max-width: 46ch;
  font-size: 0.92rem;
}

.support-list {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.support-list li {
  margin-left: 1.1rem;
  margin-bottom: 0.2rem;
}

.verify-callout {
  margin-top: 0.75rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(110, 170, 255, 0.35);
  background: rgba(40, 80, 160, 0.2);
  border-radius: var(--radius);
  font-size: 0.86rem;
  color: #c5d8ff;
}

/* Purchase page */
.purchase {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.purchase-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0 2.5rem;
}

.purchase-card {
  width: min(480px, 100%);
  margin-inline: auto;
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid rgba(110, 170, 255, 0.45);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(100, 160, 255, 0.18),
    0 0 32px rgba(61, 124, 255, 0.28);
}

.purchase-card .eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7eabff;
  margin-bottom: 0.55rem;
}

.purchase-card h1 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.purchase-card .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.purchase-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.purchase-card li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.purchase-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(61, 124, 255, 0.55);
}

.purchase-note {
  margin-top: 0.85rem;
  font-size: 0.84rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}

.purchase-note a {
  color: #7eabff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.purchase-verify {
  margin-top: 0.85rem;
  padding: 0.75rem 0.8rem;
  background: rgba(40, 80, 160, 0.22);
  border: 1px solid rgba(110, 170, 255, 0.35);
  border-radius: var(--radius);
  font-size: 0.84rem;
  color: #c5d8ff;
  line-height: 1.45;
}

.back-link {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--ink);
}

/* Footer */
footer {
  padding: 1.75rem 0 2.5rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.9rem 1.25rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.footer-inner strong {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
}

.socials a {
  color: #9ec4ff;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

.socials a:hover {
  color: #e8eef8;
}

@media (max-width: 900px) {
  .plans,
  .notes {
    grid-template-columns: 1fr;
  }
}

/* Small screens: the sticky scene doesn't have room, so fall back to a plain
   stacked layout (title + services, then requirements / support / socials). */
@media (max-width: 900px) {
  .stage-track {
    height: auto;
  }

  .stage-sticky {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
    padding-bottom: 1.5rem;
  }

  .stage-scene {
    transform: none;
  }

  .stage-hero {
    margin-bottom: 0;
  }

  .nav-page-link--details,
  .nav-page-link--services {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-stack--bottom {
    position: static;
    transform: none;
    margin: 1.25rem auto 0;
    flex-direction: row;
  }

  .nav-discord-bottom {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-discord-top {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .stage-swap {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
  }

  .stage-services,
  .stage-details {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
    filter: none;
    pointer-events: auto;
    overflow: visible;
  }

  .stage-services .plan[data-exit],
  .stage-services [data-exit="fade"],
  .stage-services .section-head,
  .stage-details .section-head,
  .stage-details .notes,
  .stage-details .support-panel,
  .stage-details .social-panel,
  .stage-footer,
  .stage-hero,
  .stage-hero .hero-actions {
    opacity: 1;
    transform: none;
  }

  .stage-details {
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
  }

  .logo-watermark img {
    opacity: 0.11;
    transform: rotate(-8deg);
    left: auto;
    top: auto;
    right: -4%;
    bottom: -6%;
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(1080px, calc(100% - 1.1rem));
  }

  .nav-links a:not(.btn) {
    display: none;
  }

  .stage-hero {
    padding-bottom: 0.55rem;
  }

  .stage-hero .hero-brand {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .stage-details {
    gap: 0.85rem;
  }

  .logo-watermark img {
    width: min(78vw, 360px);
    right: -12%;
    bottom: -4%;
    opacity: 0.09;
  }

  section:not(.panel) {
    padding: 1.75rem 0;
  }
}
