:root {
  --bg: #050b19;
  --bg-deep: #030712;
  --panel: rgba(11, 27, 55, 0.82);
  --panel-solid: #0b1b37;
  --panel-light: #10264a;
  --line: rgba(142, 184, 255, 0.18);
  --line-gold: rgba(246, 200, 95, 0.4);
  --text: #f7f7f2;
  --muted: #aab9d3;
  --gold: #f6c85f;
  --gold-deep: #c58824;
  --cyan: #3bd9ff;
  --blue: #3d7dff;
  --purple: #ad5dff;
  --green: #58e493;
  --red: #ff627f;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% 12%, rgba(61, 125, 255, 0.1), transparent 26rem),
    radial-gradient(circle at 18% 50%, rgba(173, 93, 255, 0.07), transparent 31rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img {
  display: block;
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  opacity: 0.12;
}

.ambient-one {
  top: 38%;
  right: -14rem;
  background: var(--blue);
}

.ambient-two {
  bottom: 8%;
  left: -16rem;
  background: var(--purple);
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 76px;
  background: linear-gradient(180deg, rgba(3, 9, 23, 0.94), rgba(6, 16, 34, 0.82));
  border-bottom: 1px solid rgba(180, 210, 255, 0.12);
  backdrop-filter: blur(18px);
  transition: height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  height: 68px;
  background: rgba(3, 9, 23, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 44px;
  clip-path: polygon(50% 0, 94% 22%, 84% 73%, 50% 100%, 16% 73%, 6% 22%);
  background: linear-gradient(145deg, #fff2ad, var(--gold) 44%, #9b6117);
  filter: drop-shadow(0 0 13px rgba(246, 200, 95, 0.28));
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  clip-path: inherit;
  background: linear-gradient(145deg, #153766, #07152d);
}

.brand-mark span {
  position: relative;
  width: 13px;
  height: 25px;
  clip-path: polygon(50% 0, 100% 55%, 50% 100%, 0 55%);
  background: linear-gradient(150deg, #a8f3ff, var(--cyan) 45%, #176bd8);
  box-shadow: 0 0 16px var(--cyan);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: #fff0bd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  letter-spacing: 0.13em;
}

.brand-copy small {
  margin-top: 5px;
  color: #c5d5ed;
  font-size: 0.68rem;
  letter-spacing: 0.45em;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
}

.main-nav a {
  position: relative;
  color: #c7d2e6;
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -12px;
  left: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #fff0ae);
  box-shadow: 0 0 12px var(--gold);
  transition: inset 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: white;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 13px;
  overflow: hidden;
  color: #f3e5b2;
  background: rgba(246, 200, 95, 0.08);
  border: 1px solid rgba(246, 200, 95, 0.28);
  border-radius: 12px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cart-button:hover {
  transform: translateY(-2px);
  background: rgba(246, 200, 95, 0.14);
  border-color: rgba(246, 200, 95, 0.5);
}

.cart-button.bump {
  animation: cart-bump 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cart-button svg {
  width: 19px;
  height: 19px;
}

.cart-button span {
  font-size: 0.8rem;
  font-weight: 750;
}

.cart-button b {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  color: #081021;
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.72rem;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 810px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(116, 159, 226, 0.2);
  background: #071226;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/hero-party.png");
  background-position: center center;
  background-size: cover;
  animation: hero-breathe 14s ease-in-out infinite alternate;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 9, 22, 0.98) 0%, rgba(4, 12, 29, 0.9) 28%, rgba(5, 14, 32, 0.3) 58%, rgba(3, 8, 19, 0.34) 100%),
    linear-gradient(0deg, rgba(4, 10, 23, 0.98) 0%, transparent 35%, rgba(4, 10, 23, 0.35) 100%);
}

.hero-vignette::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(5, 11, 25, 0.95));
}

.hero-content {
  min-height: 810px;
  display: flex;
  align-items: center;
  padding-top: 76px;
}

.hero-copy {
  padding: 70px 0 84px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 17px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 29px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

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

.eyebrow.centered > span:last-child,
.section-heading.centered .eyebrow > span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 24px;
  color: #fff4ce;
  font-size: clamp(3.8rem, 6.4vw, 6.7rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.45);
}

h1 em {
  color: #d5f6ff;
  font-style: normal;
  text-shadow: 0 0 28px rgba(59, 217, 255, 0.26);
}

.hero-lead {
  max-width: 540px;
  margin-bottom: 34px;
  color: #c8d5e8;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
.cart-button:focus-visible,
.menu-toggle:focus-visible,
.accordion-item button:focus-visible,
.modal-close:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(59, 217, 255, 0.55);
  outline-offset: 3px;
}

.button svg {
  width: 19px;
  height: 19px;
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translateX(4px);
}

.button-gold {
  color: #161204;
  background: linear-gradient(180deg, #ffeaa0, var(--gold) 52%, #d79a31);
  border-color: #ffefa8;
  box-shadow: 0 10px 30px rgba(229, 170, 51, 0.24), inset 0 1px 0 white;
}

.button-gold::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -30%;
  width: 35%;
  height: 260%;
  background: rgba(255, 255, 255, 0.45);
  transform: rotate(24deg) translateX(-260%);
  transition: transform 650ms ease;
}

.button-gold:hover {
  box-shadow: 0 14px 38px rgba(229, 170, 51, 0.38), inset 0 1px 0 white;
}

.button-gold:hover::after {
  transform: rotate(24deg) translateX(630%);
}

.button-ghost {
  color: white;
  background: rgba(10, 25, 52, 0.6);
  border-color: rgba(153, 190, 244, 0.35);
  box-shadow: inset 0 0 24px rgba(59, 125, 255, 0.05);
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  background: rgba(23, 47, 85, 0.7);
  border-color: rgba(153, 190, 244, 0.58);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 23px;
  margin-top: 36px;
  color: #abbad1;
  font-size: 0.8rem;
  font-weight: 650;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust i {
  color: var(--cyan);
  font-style: normal;
  filter: drop-shadow(0 0 8px rgba(59, 217, 255, 0.7));
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 48px;
  border: 1px solid rgba(199, 218, 246, 0.38);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 4px;
  box-shadow: 0 0 10px var(--gold);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

.hero-particles span {
  position: absolute;
  width: var(--size);
  height: var(--size);
  left: var(--left);
  bottom: -20px;
  opacity: 0;
  background: var(--color);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--color);
  animation: particle-rise var(--duration) linear var(--delay) infinite;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 46px;
}

.section-heading.centered {
  display: block;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.steps-copy h2,
.faq-intro h2,
.cta-card h2 {
  margin-bottom: 0;
  color: #f9f1da;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.section-heading > p,
.section-heading.centered > p:last-child {
  max-width: 480px;
  margin-bottom: 2px;
  color: var(--muted);
}

.section-heading.centered > p:last-child {
  margin: 18px auto 0;
}

.resources-section {
  background:
    radial-gradient(circle at 50% 0, rgba(61, 125, 255, 0.12), transparent 32rem),
    linear-gradient(180deg, #060d1d, #071329 48%, #060d1c);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.resource-card {
  --card-accent: var(--cyan);
  position: relative;
  min-height: 390px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--card-accent) 9%, transparent), transparent 42%),
    linear-gradient(180deg, rgba(15, 38, 74, 0.86), rgba(7, 19, 40, 0.94));
  border: 1px solid color-mix(in srgb, var(--card-accent) 33%, transparent);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 42px rgba(0, 0, 0, 0.2);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.resource-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, color-mix(in srgb, var(--card-accent) 42%, transparent), transparent 28%, transparent 72%, color-mix(in srgb, var(--card-accent) 20%, transparent));
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.resource-card:hover,
.resource-card.selected {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--card-accent) 68%, white 5%);
  box-shadow: 0 26px 60px color-mix(in srgb, var(--card-accent) 15%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.resource-card:hover::before,
.resource-card.selected::before {
  opacity: 1;
}

.resource-card > * {
  position: relative;
  z-index: 1;
}

.resource-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.resource-tag {
  color: #b7c7df;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.resource-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  margin: 18px auto 15px;
  font-size: 4.8rem;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.3));
  transition: transform 260ms ease, filter 260ms ease;
}

.resource-icon::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--card-accent) 21%, transparent);
  filter: blur(17px);
}

.resource-card:hover .resource-icon {
  transform: translateY(-5px) scale(1.05) rotate(-2deg);
  filter: drop-shadow(0 13px 22px color-mix(in srgb, var(--card-accent) 30%, transparent));
}

.resource-card h3 {
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
}

.resource-quantity {
  margin-bottom: 18px;
  color: #9fb1cc;
  font-size: 0.86rem;
}

.resource-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.price {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.mini-buy {
  position: relative;
  min-height: 40px;
  padding: 9px 15px;
  overflow: hidden;
  color: #171204;
  background: linear-gradient(180deg, #ffec9d, var(--gold));
  border: 1px solid #fff0a9;
  border-radius: 9px;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mini-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(246, 200, 95, 0.22);
}

.resource-card.picked {
  animation: card-pick 540ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.bundles-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 10, 22, 0.8), rgba(8, 17, 37, 0.94)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 14px);
  border-block: 1px solid rgba(119, 163, 230, 0.12);
}

.bundle-glow {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 55rem;
  height: 30rem;
  border-radius: 50%;
  background: rgba(84, 77, 255, 0.12);
  filter: blur(100px);
  transform: translateX(-50%);
}

.bundle-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}

.bundle-card {
  --bundle-accent: var(--blue);
  position: relative;
  min-height: 490px;
  padding: 25px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, color-mix(in srgb, var(--bundle-accent) 16%, transparent), transparent 42%),
    linear-gradient(180deg, rgba(15, 34, 66, 0.92), rgba(7, 17, 35, 0.97));
  border: 1px solid color-mix(in srgb, var(--bundle-accent) 35%, transparent);
  border-radius: 24px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.bundle-card.featured {
  min-height: 540px;
  padding-top: 48px;
  border-color: rgba(246, 200, 95, 0.62);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.45), 0 0 45px rgba(246, 200, 95, 0.08), inset 0 1px 0 rgba(255, 244, 183, 0.18);
}

.bundle-card:hover {
  transform: translateY(-9px);
  border-color: color-mix(in srgb, var(--bundle-accent) 65%, white 5%);
}

.popular-ribbon {
  position: absolute;
  top: 0;
  right: 50%;
  padding: 7px 28px 8px;
  color: #171204;
  background: linear-gradient(180deg, #ffefaa, var(--gold));
  border-radius: 0 0 12px 12px;
  transform: translateX(50%);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bundle-art {
  height: 190px;
  margin: -5px -5px 8px;
  background-image: url("assets/resource-vault.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.34));
  transition: transform 300ms ease, filter 300ms ease;
}

.bundle-card:nth-child(1) .bundle-art {
  transform: scale(0.86);
  filter: saturate(0.82) hue-rotate(-8deg) drop-shadow(0 18px 26px rgba(0, 0, 0, 0.34));
}

.bundle-card:nth-child(3) .bundle-art {
  transform: scale(1.05);
  filter: saturate(1.25) hue-rotate(16deg) drop-shadow(0 18px 26px rgba(0, 0, 0, 0.34));
}

.bundle-card:hover .bundle-art {
  transform: translateY(-6px) scale(1.04);
  filter: drop-shadow(0 24px 30px color-mix(in srgb, var(--bundle-accent) 25%, rgba(0, 0, 0, 0.3)));
}

.bundle-card h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.bundle-items {
  min-height: 82px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  color: #afc0d8;
  font-size: 0.88rem;
}

.bundle-items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 3px 0;
}

.bundle-items b {
  color: #e2ebf8;
  font-weight: 700;
}

.bundle-purchase {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.bundle-purchase .mini-buy {
  min-width: 112px;
}

.steps-section {
  background:
    radial-gradient(circle at 20% 50%, rgba(33, 102, 255, 0.13), transparent 28rem),
    linear-gradient(180deg, #071124, #050c1b);
}

.steps-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.steps-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.steps-visual img {
  position: relative;
  z-index: 2;
  width: min(620px, 118%);
  max-width: none;
  filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.48));
  animation: vault-float 5s ease-in-out infinite;
}

.vault-halo {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(59, 217, 255, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 132, 255, 0.16), transparent 62%);
  box-shadow: 0 0 70px rgba(59, 125, 255, 0.1), inset 0 0 80px rgba(59, 217, 255, 0.06);
}

.vault-halo::before,
.vault-halo::after {
  content: "";
  position: absolute;
  inset: 36px;
  border: 1px dashed rgba(246, 200, 95, 0.17);
  border-radius: 50%;
  animation: halo-spin 26s linear infinite;
}

.vault-halo::after {
  inset: 74px;
  border-color: rgba(59, 217, 255, 0.16);
  animation-direction: reverse;
  animation-duration: 18s;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: #d6e6fb;
  background: rgba(8, 25, 52, 0.82);
  border: 1px solid rgba(125, 181, 255, 0.28);
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 700;
}

.floating-chip span {
  color: var(--gold);
}

.chip-one {
  right: 3%;
  bottom: 20%;
  animation: chip-float 4.5s ease-in-out infinite;
}

.chip-two {
  top: 18%;
  left: -1%;
  animation: chip-float 5.2s ease-in-out -1.5s infinite;
}

.steps-copy > h2 {
  margin-bottom: 38px;
}

.steps-list {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(19, 43, 79, 0.64), rgba(8, 21, 44, 0.55));
  border: 1px solid rgba(120, 167, 230, 0.15);
  border-radius: 16px;
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease;
}

.step:hover {
  transform: translateX(7px);
  background: linear-gradient(135deg, rgba(24, 53, 94, 0.72), rgba(8, 21, 44, 0.64));
  border-color: rgba(120, 167, 230, 0.3);
}

.step > b {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--gold);
  background: rgba(246, 200, 95, 0.08);
  border: 1px solid rgba(246, 200, 95, 0.3);
  border-radius: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.step h3 {
  margin-bottom: 2px;
  font-size: 1.03rem;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-section {
  background: #050b18;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(440px, 1.25fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro h2 {
  margin-bottom: 22px;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 20px 0;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 750;
}

.accordion-item i {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  margin-left: 20px;
  border: 1px solid rgba(141, 179, 232, 0.25);
  border-radius: 50%;
}

.accordion-item i::before,
.accordion-item i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion-item i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel {
  overflow: hidden;
}

.accordion-panel p {
  max-width: 650px;
  margin: -3px 55px 24px 0;
  color: var(--muted);
}

.accordion-panel.opening {
  animation: accordion-open 250ms ease both;
}

.cta-section {
  padding: 20px 0 100px;
  background: #050b18;
}

.cta-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  min-height: 220px;
  padding: 48px clamp(28px, 5vw, 66px);
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(15, 39, 78, 0.95), rgba(28, 31, 76, 0.8)),
    #0d2347;
  border: 1px solid rgba(122, 172, 240, 0.22);
  border-radius: 28px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.cta-card::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(246, 200, 95, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(246, 200, 95, 0.025), 0 0 0 90px rgba(59, 217, 255, 0.018);
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.cta-orb {
  position: absolute;
  top: -8rem;
  left: -3rem;
  width: 24rem;
  height: 24rem;
  background: rgba(59, 217, 255, 0.1);
  border-radius: 50%;
  filter: blur(65px);
}

.site-footer {
  background: #030712;
  border-top: 1px solid rgba(125, 164, 221, 0.13);
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
  min-height: 122px;
}

.footer-top nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-top nav a,
.footer-support {
  color: #9fb0c8;
  font-size: 0.82rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.footer-top nav a:hover,
.footer-support:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  padding: 24px 0 31px;
  border-top: 1px solid rgba(125, 164, 221, 0.09);
  color: #74859e;
  font-size: 0.74rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  max-width: 620px;
  text-align: right;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 4, 12, 0.76);
  backdrop-filter: blur(14px);
  animation: fade-in 220ms ease both;
}

.modal-card {
  position: relative;
  width: min(620px, 100%);
  max-height: min(92vh, 810px);
  overflow: auto;
  background:
    radial-gradient(circle at 95% 5%, rgba(77, 121, 255, 0.16), transparent 18rem),
    linear-gradient(165deg, #10264a, #08172f 48%, #071226);
  border: 1px solid rgba(145, 184, 239, 0.28);
  border-radius: 24px;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: modal-enter 360ms cubic-bezier(0.2, 0.85, 0.2, 1) both;
}

.modal.closing .modal-backdrop {
  animation: fade-out 180ms ease both;
}

.modal.closing .modal-card {
  animation: modal-leave 180ms ease both;
}

.modal-stage {
  padding: 38px;
}

.modal-stage h2 {
  margin-bottom: 24px;
  color: #fff1c8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 2.8rem);
  line-height: 1.05;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  color: #ccdaed;
  background: rgba(4, 13, 29, 0.52);
  border: 1px solid rgba(146, 184, 237, 0.22);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.selected-product {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 14px;
  background: rgba(5, 15, 34, 0.58);
  border: 1px solid rgba(139, 178, 232, 0.18);
  border-radius: 15px;
}

.selected-product .selected-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: rgba(59, 217, 255, 0.08);
  border-radius: 13px;
  font-size: 2rem;
}

.selected-product h3 {
  margin: 0 0 1px;
  font-size: 1rem;
}

.selected-product p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.selected-product strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 14px;
}

.form-row {
  margin-bottom: 15px;
}

.form-row label {
  display: block;
  margin-bottom: 6px;
  color: #d7e1ef;
  font-size: 0.78rem;
  font-weight: 750;
}

.form-row label span {
  color: var(--gold);
}

.form-row input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: white;
  background: rgba(3, 11, 26, 0.72);
  border: 1px solid rgba(134, 175, 232, 0.22);
  border-radius: 11px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-row input::placeholder {
  color: #6f819c;
}

.form-row input:focus {
  border-color: rgba(59, 217, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(59, 217, 255, 0.07);
}

.form-row input.invalid {
  border-color: rgba(255, 98, 127, 0.7);
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  color: #ff8da3;
  font-size: 0.71rem;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #b5c3d6;
  cursor: pointer;
  font-size: 0.78rem;
}

.consent-row input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  accent-color: var(--gold);
}

.terms-error {
  margin: 1px 0 8px 27px;
}

.checkout-submit {
  justify-content: space-between;
  width: 100%;
  margin-top: 6px;
}

.checkout-submit span {
  padding-left: 18px;
  border-left: 1px solid rgba(37, 27, 2, 0.2);
}

.form-note {
  margin: 12px 0 0;
  color: #8091a9;
  text-align: center;
  font-size: 0.69rem;
}

code {
  padding: 1px 4px;
  color: #d8e9ff;
  background: rgba(3, 10, 24, 0.58);
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.success-stage {
  padding-top: 52px;
  text-align: center;
}

.success-stage > p:not(.eyebrow) {
  color: var(--muted);
}

.success-seal {
  position: relative;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 25px;
  color: #0b182c;
  background: linear-gradient(145deg, #eafff2, var(--green));
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(88, 228, 147, 0.07), 0 0 44px rgba(88, 228, 147, 0.24);
  animation: seal-pop 450ms cubic-bezier(0.17, 0.89, 0.32, 1.5) both;
  font-size: 2.2rem;
  font-weight: 900;
}

.order-code {
  margin: 22px 0;
  padding: 15px;
  color: #bcd0e8;
  background: rgba(3, 11, 26, 0.58);
  border: 1px solid rgba(139, 178, 232, 0.16);
  border-radius: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.76rem;
  word-break: break-word;
}

.toast-region {
  position: fixed;
  z-index: 120;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100% - 40px));
  pointer-events: none;
}

.toast {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  color: #eff6ff;
  background: rgba(10, 27, 55, 0.95);
  border: 1px solid rgba(130, 179, 245, 0.28);
  border-radius: 13px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
  animation: toast-in 320ms cubic-bezier(0.2, 0.85, 0.2, 1) both;
  font-size: 0.82rem;
}

.toast.removing {
  animation: toast-out 240ms ease both;
}

.toast i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #061328;
  background: var(--gold);
  border-radius: 50%;
  font-style: normal;
  font-weight: 900;
}

.ripple-dot {
  position: absolute;
  pointer-events: none;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 600ms ease-out forwards;
}

.fly-particle {
  position: fixed;
  z-index: 110;
  width: 13px;
  height: 13px;
  pointer-events: none;
  background: var(--gold);
  border: 2px solid #fff3b8;
  border-radius: 50%;
  box-shadow: 0 0 15px var(--gold);
  transition: transform 620ms cubic-bezier(0.28, 0.86, 0.46, 1), opacity 620ms ease;
}

.burst-particle {
  position: fixed;
  z-index: 110;
  width: 7px;
  height: 7px;
  pointer-events: none;
  background: var(--particle-color, var(--gold));
  border-radius: 50%;
  box-shadow: 0 0 8px var(--particle-color, var(--gold));
  animation: burst 680ms ease-out forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-breathe {
  from { transform: scale(1.015); }
  to { transform: scale(1.055); }
}

@keyframes particle-rise {
  0% { opacity: 0; transform: translate3d(0, 0, 0) scale(0.4); }
  15% { opacity: 0.75; }
  85% { opacity: 0.35; }
  100% { opacity: 0; transform: translate3d(var(--drift), -780px, 0) scale(1); }
}

@keyframes scroll-cue {
  0%, 100% { opacity: 0.35; transform: translateY(-6px); }
  50% { opacity: 1; transform: translateY(7px); }
}

@keyframes ripple {
  to { opacity: 0; transform: translate(-50%, -50%) scale(18); }
}

@keyframes card-pick {
  0%, 100% { transform: translateY(-8px) scale(1); }
  45% { transform: translateY(-11px) scale(1.025); }
}

@keyframes cart-bump {
  0%, 100% { transform: scale(1); }
  35% { transform: scale(1.13) rotate(-3deg); }
  65% { transform: scale(0.96) rotate(2deg); }
}

@keyframes vault-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes halo-spin {
  to { transform: rotate(360deg); }
}

@keyframes accordion-open {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-out {
  to { opacity: 0; }
}

@keyframes modal-enter {
  from { opacity: 0; transform: translateY(28px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

@keyframes modal-leave {
  to { opacity: 0; transform: translateY(18px) scale(0.97); }
}

@keyframes seal-pop {
  from { opacity: 0; transform: scale(0.2) rotate(-18deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes toast-in {
  from { opacity: 0; transform: translateX(26px); }
  to { opacity: 1; transform: none; }
}

@keyframes toast-out {
  to { opacity: 0; transform: translateX(26px); }
}

@keyframes burst {
  from { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  to { opacity: 0; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0.2); }
}

@media (max-width: 1050px) {
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-card {
    min-height: 360px;
  }

  .hero-copy {
    width: 58%;
  }

  .steps-layout {
    gap: 45px;
  }

  .steps-visual {
    min-height: 440px;
  }

  .footer-top {
    grid-template-columns: auto 1fr;
  }

  .footer-support {
    grid-column: 1 / -1;
    padding-bottom: 24px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(calc(100% - 32px), 700px);
  }

  .site-header,
  .site-header.scrolled {
    height: 66px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    place-content: center;
    gap: 5px;
    order: 3;
    width: 42px;
    height: 42px;
    overflow: hidden;
    background: rgba(20, 46, 83, 0.45);
    border: 1px solid rgba(141, 182, 236, 0.2);
    border-radius: 11px;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #dbe8f8;
    border-radius: 2px;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 66px;
    right: 16px;
    left: 16px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    background: rgba(6, 18, 39, 0.97);
    border: 1px solid rgba(141, 182, 236, 0.2);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .main-nav a {
    padding: 12px 13px;
    border-radius: 9px;
  }

  .main-nav a:hover {
    background: rgba(67, 113, 182, 0.13);
  }

  .main-nav a::after {
    display: none;
  }

  .cart-button {
    justify-self: end;
    margin-left: auto;
  }

  .cart-button span {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 820px;
  }

  .hero-art {
    background-position: 61% center;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(3, 9, 22, 0.96), rgba(4, 12, 29, 0.68) 55%, rgba(3, 8, 19, 0.2)),
      linear-gradient(0deg, rgba(4, 10, 23, 0.98), transparent 50%, rgba(4, 10, 23, 0.32));
  }

  .hero-copy {
    width: min(590px, 82%);
  }

  .bundle-grid {
    grid-template-columns: 1fr;
    max-width: 590px;
    margin: auto;
  }

  .bundle-card,
  .bundle-card.featured {
    min-height: auto;
    padding-top: 25px;
  }

  .bundle-card.featured {
    padding-top: 48px;
  }

  .steps-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .steps-visual {
    min-height: 450px;
  }

  .steps-visual img {
    width: min(620px, 100%);
  }

  .faq-intro {
    position: static;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
    --radius: 18px;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .brand-copy small {
    font-size: 0.58rem;
  }

  .brand-mark {
    width: 32px;
    height: 38px;
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .hero-art {
    background-position: 66% top;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(3, 9, 22, 0.87), rgba(3, 9, 22, 0.27)),
      linear-gradient(0deg, rgba(4, 10, 23, 1) 3%, rgba(4, 10, 23, 0.75) 48%, rgba(4, 10, 23, 0.18));
  }

  .hero-content {
    align-items: flex-end;
  }

  .hero-copy {
    width: 100%;
    padding: 150px 0 76px;
  }

  h1 {
    font-size: clamp(3.15rem, 17vw, 4.8rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p:last-child {
    margin-top: 18px;
  }

  .section-heading h2,
  .steps-copy h2,
  .faq-intro h2 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: 345px;
  }

  .bundle-art {
    height: 170px;
  }

  .steps-visual {
    min-height: 350px;
  }

  .vault-halo {
    width: 290px;
    height: 290px;
  }

  .floating-chip {
    font-size: 0.68rem;
  }

  .chip-one {
    right: 0;
  }

  .chip-two {
    left: 0;
  }

  .step {
    grid-template-columns: 48px 1fr;
    padding: 15px;
  }

  .step > b {
    width: 44px;
    height: 44px;
  }

  .faq-layout {
    gap: 42px;
  }

  .cta-card {
    min-height: 260px;
    padding: 35px 24px;
  }

  .cta-card .button {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 40px 0 25px;
  }

  .footer-top nav {
    justify-content: flex-start;
  }

  .footer-support {
    grid-column: auto;
    padding-bottom: 0;
  }

  .footer-bottom {
    display: grid;
    gap: 14px;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }

  .modal {
    align-items: end;
    padding: 0;
  }

  .modal-card {
    width: 100%;
    max-height: 94vh;
    border-radius: 22px 22px 0 0;
  }

  .modal-stage {
    padding: 30px 20px 26px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .selected-product {
    grid-template-columns: 49px 1fr auto;
  }

  .selected-product .selected-icon {
    width: 49px;
    height: 49px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
