:root {
  --font-geist-sans: Arial, Helvetica, sans-serif;
  --font-geist-mono: "Courier New", monospace;
  --font-display: "Arial Narrow", Arial, sans-serif;
  --black: #050608;
  --surface: #0c0f14;
  --surface-light: #121721;
  --border: #202735;
  --blue: #087cff;
  --blue-bright: #43a2ff;
  --white: #f5f8ff;
  --muted: #929bab;
}

[hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-geist-sans), Arial, sans-serif;
}

body.cart-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

::selection {
  background: var(--blue);
  color: white;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(5px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.75, 0.25, 1),
    transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.section-heading.scroll-reveal h2 {
  transition: letter-spacing 800ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.section-heading.scroll-reveal.is-visible h2 {
  letter-spacing: -0.045em;
}

.launch-notice {
  position: relative;
  z-index: 41;
  min-height: 42px;
  padding: 9px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-bottom: 1px solid rgba(67, 162, 255, 0.38);
  background:
    linear-gradient(90deg, rgba(8, 124, 255, 0.16), rgba(8, 124, 255, 0.04) 48%, rgba(8, 124, 255, 0.16)),
    #080b11;
  color: #cbd5e4;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-align: center;
}

.launch-notice-status {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.launch-notice a {
  color: var(--blue-bright);
  font-weight: 700;
  white-space: nowrap;
  transition: color 160ms ease;
}

.launch-notice a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 78px;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(5, 6, 8, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

@media (max-width: 640px) {
  .launch-notice {
    min-height: 50px;
    padding: 8px 18px;
    flex-wrap: wrap;
    gap: 3px 10px;
    line-height: 1.35;
  }

  .launch-notice > span:nth-child(2) {
    display: none;
  }
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: 600 24px/0.9 var(--font-display), Arial, sans-serif;
  letter-spacing: 0.04em;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

.brand strong {
  color: var(--blue-bright);
}

.brand small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font: 600 8px/1 var(--font-geist-mono), monospace;
  letter-spacing: 0.38em;
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #c3cad5;
  font-size: 13px;
}

nav a {
  transition: color 160ms ease;
}

nav a:hover {
  color: var(--blue-bright);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-button {
  position: relative;
  min-width: 78px;
  height: 44px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.cart-button:hover {
  background: var(--surface-light);
}

.cart-button b {
  position: absolute;
  top: 1px;
  right: 0;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--blue);
  color: white;
  font-size: 9px;
}

.cart-icon {
  font-size: 18px;
  line-height: 1;
}

.cart-label {
  font-size: 11px;
  font-weight: 700;
}

.discord-button,
.primary-button,
.light-button,
.checkout-button {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: background 160ms ease, transform 160ms ease;
}

.discord-button:hover,
.primary-button:hover {
  background: #2990ff;
  transform: translateY(-1px);
}

.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 22px;
  height: 1px;
  margin: 6px auto;
  display: block;
  background: white;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 110px 10vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: black;
}

.hero-slideshow,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slideshow {
  overflow: hidden;
}

.hero-slide {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(0.84) contrast(1.08);
  transform: scale(1.025);
  transition: opacity 1400ms ease, transform 7s ease;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 46%, rgba(5, 6, 8, 0.28), rgba(5, 6, 8, 0.68) 72%),
    linear-gradient(90deg, rgba(5, 6, 8, 0.76), rgba(5, 6, 8, 0.3), rgba(5, 6, 8, 0.76)),
    linear-gradient(0deg, rgba(5, 6, 8, 0.78), transparent 58%, rgba(5, 6, 8, 0.46));
}

.hero-copy-wrap {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-bright);
  font: 700 10px/1.2 var(--font-geist-mono), monospace;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: #79b9ff;
  font: italic 700 15px/1 var(--font-display), Arial, sans-serif;
  letter-spacing: 0.3em;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  font: 700 clamp(58px, 6.5vw, 98px) / 0.92 var(--font-display), Arial, sans-serif;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero h1 em,
.section h2 em {
  color: var(--blue-bright);
  font-style: normal;
}

.hero-copy {
  max-width: 760px;
  margin: 28px 0 0;
  color: #aab2bf;
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-button {
  min-height: 50px;
  padding-inline: 24px;
}

.secondary-link {
  padding: 10px 0;
  border-bottom: 1px solid #495364;
  color: #d7dce5;
  font-size: 12px;
  font-weight: 600;
}

.section {
  padding: 120px 8vw;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 22px;
  margin-bottom: 60px;
}

.section h2 {
  font-size: clamp(50px, 5.5vw, 82px);
}

.section-heading > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.stories-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 16%, rgba(8, 124, 255, 0.12), transparent 34%),
    #05070a;
  border-bottom: 1px solid var(--border);
}

.stories-heading {
  margin-bottom: 46px;
}

.stories-heading h2,
.stories-heading .eyebrow,
.stories-heading > p {
  transition: transform 260ms ease, color 260ms ease, text-shadow 260ms ease,
    letter-spacing 260ms ease;
}

.stories-heading:hover h2 {
  transform: translateY(-4px) scale(1.012);
}

.stories-heading:hover h2 em {
  text-shadow: 0 0 28px rgba(67, 162, 255, 0.38);
}

.stories-heading:hover .eyebrow {
  color: #8ac5ff;
  letter-spacing: 0.25em;
}

.stories-heading:hover > p {
  color: #b1bdce;
  transform: translateY(2px);
}

.story-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #080b10;
  border: 1px solid #2b3e59;
  border-radius: 12px;
  box-shadow:
    inset 0 0 0 1px rgba(67, 162, 255, 0.04),
    0 18px 44px rgba(0, 0, 0, 0.28);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.story-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.88) contrast(1.06);
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 500ms ease;
}

.story-card:hover .story-video {
  filter: saturate(1.05) contrast(1.06);
}

.story-card:hover {
  border-color: rgba(67, 162, 255, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(67, 162, 255, 0.08),
    0 20px 54px rgba(8, 124, 255, 0.13);
  transform: translateY(-2px);
}

.story-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.story-card {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.membership-card {
  position: relative;
  min-height: 540px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(8, 124, 255, 0.09), transparent 48%),
    var(--surface);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease,
    background 260ms ease;
  will-change: transform;
}

.membership-card:hover,
.membership-card:focus-within {
  z-index: 2;
  transform: translateY(-10px);
  border-color: rgba(67, 162, 255, 0.82);
  background:
    linear-gradient(145deg, rgba(8, 124, 255, 0.18), transparent 52%),
    #101722;
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(8, 124, 255, 0.14);
}

.membership-card.is-selected {
  border-color: var(--blue);
  background:
    linear-gradient(145deg, rgba(8, 124, 255, 0.22), transparent 54%),
    var(--surface-light);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(8, 124, 255, 0.18);
}

.membership-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 9px;
  border-radius: 4px;
  background: var(--blue);
  color: white;
  font: 700 8px/1 var(--font-geist-mono), monospace;
  letter-spacing: 0.1em;
}

.membership-card h3,
.store-card h3 {
  margin: 0;
  font: 700 30px/1.1 var(--font-display), Arial, sans-serif;
  text-transform: uppercase;
}

.membership-card h3 {
  font-size: 42px;
  transition: color 220ms ease, transform 220ms ease;
}

.membership-card:hover h3,
.membership-card:focus-within h3 {
  color: #ffffff;
  transform: translateX(3px);
}

.membership-price {
  margin: 22px 0 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.membership-price strong {
  font: 700 38px/1 var(--font-display), Arial, sans-serif;
}

.membership-price span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.membership-summary {
  min-height: 68px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.membership-card ul {
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.membership-card li {
  position: relative;
  padding: 13px 0 13px 23px;
  border-top: 1px solid var(--border);
  color: #d5dce7;
  font-size: 12px;
  line-height: 1.45;
}

.membership-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-bright);
  font-weight: 800;
}

.membership-button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: transparent;
  color: var(--blue-bright);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.membership-button:hover {
  background: rgba(8, 124, 255, 0.2);
  box-shadow: 0 0 22px rgba(8, 124, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

.membership-card.is-selected .membership-button {
  background: var(--blue);
  color: white;
}

.membership-card.is-selected .membership-button:hover {
  background: #2990ff;
}

.membership-note {
  margin: 22px 0 0;
  color: #687386;
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

.store-card-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.marketplace {
  background: #080a0e;
  border-block: 1px solid var(--border);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.store-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--surface);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.store-card-image {
  position: relative;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(8, 124, 255, 0.16), transparent 65%),
    #0a0d12;
  border-bottom: 1px solid var(--border);
}

.store-card-image > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-card-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 400ms ease;
}

.store-card:hover .store-card-video {
  filter: saturate(1.08) contrast(1.04);
}

.product-placeholder {
  color: #a6cfff;
  font: 700 clamp(28px, 4vw, 48px) / 1 var(--font-display), Arial, sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.store-card-content {
  padding: 28px;
}

.store-card-footer {
  margin-top: 28px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
}

.store-card-footer strong {
  color: #c7ced9;
  font-size: 12px;
}

.store-card-footer button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: transparent;
  color: var(--blue-bright);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.store-card-footer button:hover {
  background: rgba(8, 124, 255, 0.1);
}

.store-card-footer button:disabled {
  border-color: #394253;
  background: transparent;
  color: #6f7989;
  cursor: not-allowed;
}

.contraband-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 40%, rgba(178, 82, 24, 0.13), transparent 32%),
    #05070a;
  border-bottom: 1px solid var(--border);
}

.contraband-feature {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  overflow: hidden;
  border: 1px solid #2b343d;
  background: #080b0e;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.contraband-media {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #030506;
}

.contraband-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 56%, #080b0e 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.contraband-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.08);
  transition: transform 1.1s cubic-bezier(0.2, 0.75, 0.25, 1), filter 500ms ease;
}

.contraband-feature:hover .contraband-media img {
  transform: scale(1.025);
  filter: saturate(0.98) contrast(1.06);
}

.contraband-stamp {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  padding: 9px 11px;
  border: 1px solid rgba(244, 167, 75, 0.42);
  background: rgba(5, 7, 9, 0.76);
  color: #f0ac61;
  font: 700 8px/1 var(--font-geist-mono), monospace;
  letter-spacing: 0.16em;
  backdrop-filter: blur(10px);
}

.contraband-copy {
  position: relative;
  z-index: 2;
  padding: clamp(42px, 5vw, 72px) clamp(26px, 3.5vw, 50px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.contraband-copy h2 {
  margin: 0;
  font-size: clamp(50px, 4.2vw, 70px);
  line-height: 0.92;
}

.contraband-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.contraband-meta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  color: #8e9aa8;
  font: 700 8px/1.3 var(--font-geist-mono), monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contraband-meta span + span::before {
  content: "/";
  margin-right: 18px;
  color: #40505f;
}

.contraband-button {
  min-width: 230px;
  min-height: 54px;
  margin-top: 34px;
  padding-inline: 24px;
  border: 1px solid #e5954e;
  border-radius: 4px;
  background: rgba(136, 59, 19, 0.11);
  color: #fff4e8;
  cursor: pointer;
  font: 800 11px/1 var(--font-display), Arial, sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contraband-button:hover,
.contraband-button:focus-visible {
  border-color: #ffc27e;
  background: rgba(190, 89, 31, 0.2);
  outline: 0;
  transform: translateY(-2px);
}

.scripts-section {
  background: #05070a;
}

.script-product {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
  background:
    linear-gradient(125deg, rgba(8, 124, 255, 0.11), transparent 48%),
    var(--surface);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.script-product-media {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #020304;
  border-bottom: 1px solid var(--border);
}

.script-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.script-product:hover .script-product-media img {
  transform: none;
}

.script-product-media > span {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 9px 11px;
  background: rgba(5, 7, 10, 0.82);
  border: 1px solid rgba(255, 190, 28, 0.45);
  color: #ffc32c;
  font: 700 8px/1 var(--font-geist-mono), monospace;
  letter-spacing: 0.12em;
  backdrop-filter: blur(10px);
}

.script-product-content {
  padding: 46px;
  display: flex;
  flex-direction: column;
}

.script-product h3 {
  margin: 0;
  font: 700 clamp(42px, 4vw, 62px) / 0.95 var(--font-display), Arial, sans-serif;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.script-product-content > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.script-features {
  margin: 28px 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 22px;
  list-style: none;
}

.script-features li {
  position: relative;
  padding: 12px 0 12px 20px;
  border-top: 1px solid var(--border);
  color: #d5dce7;
  font-size: 11px;
  line-height: 1.45;
}

.script-features li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #ffc32c;
  box-shadow: 0 0 10px rgba(255, 195, 44, 0.45);
}

.script-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}

.script-meta > div {
  min-height: 78px;
  padding: 16px;
}

.script-meta > div:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.script-meta > div:nth-child(-n + 2) {
  border-bottom: 1px solid var(--border);
}

.script-meta span,
.script-product-footer span {
  display: block;
  color: #748095;
  font: 700 8px/1.2 var(--font-geist-mono), monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.script-meta strong {
  margin-top: 8px;
  display: block;
  color: #eef3fb;
  font-size: 11px;
  line-height: 1.35;
}

.script-product-footer {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.script-product-footer strong {
  margin-top: 7px;
  display: block;
  color: white;
  font-size: 14px;
}

.script-button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid #ffc32c;
  border-radius: 8px;
  background: #ffc32c;
  color: #151005;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.script-button:hover {
  background: #ffd35d;
  transform: translateY(-1px);
}

.contact-section {
  min-height: 320px;
  padding: 72px 8vw;
  display: grid;
  grid-template-columns: 1fr 0.7fr auto;
  align-items: center;
  gap: 6vw;
  background: var(--blue);
}

.contact-section .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section h2 {
  font-size: clamp(46px, 5vw, 74px);
}

.contact-section > p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.7;
}

.light-button {
  background: white;
  color: #061a35;
  white-space: nowrap;
}

footer {
  min-height: 220px;
  padding: 52px 8vw 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 40px;
  color: var(--muted);
}

.footer-brand {
  color: white;
}

footer > p {
  margin: 0;
  text-align: center;
  font-size: 12px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-contact a {
  color: #dce9fb;
  font-weight: 700;
  transition: color 160ms ease;
}

.footer-contact a:hover {
  color: var(--blue-bright);
}

footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-size: 11px;
}

footer > small {
  grid-column: 1 / -1;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  color: #5c6573;
  font: 500 8px/1 var(--font-geist-mono), monospace;
  letter-spacing: 0.12em;
}

.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 80;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 90;
  width: min(430px, 100%);
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 124, 255, 0.16), transparent 34%),
    #08111f;
  color: var(--white);
  border-left: 1px solid #233552;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
  animation: cart-in 180ms ease-out;
}

@keyframes cart-in {
  from {
    transform: translateX(100%);
  }
}

.drawer-header {
  min-height: 100px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #20304a;
}

.drawer-header h2 {
  margin: 0;
  font-size: 24px;
}

.drawer-header p {
  margin: 6px 0 0;
  color: #8694a9;
  font-size: 12px;
}

.drawer-header > button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #142238;
  color: #dce7f7;
  cursor: pointer;
  font-size: 22px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px;
}

.empty-cart {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.empty-cart .cart-icon {
  margin-bottom: 20px;
  color: #6faeff;
  font-size: 42px;
}

.empty-cart h3 {
  margin: 0;
  font-size: 19px;
}

.empty-cart p {
  margin: 8px 0 22px;
  color: #8694a9;
  font-size: 13px;
}

.empty-cart > button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  cursor: pointer;
  font-weight: 700;
}

.cart-line {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #20304a;
}

.cart-line strong,
.cart-line small {
  display: block;
}

.cart-line strong {
  font-size: 14px;
}

.cart-line small {
  margin-top: 5px;
  color: #8290a5;
  font-size: 11px;
}

.cart-line > div button {
  margin-top: 12px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #66758c;
  background: transparent;
  color: #9eb0c9;
  cursor: pointer;
  font-size: 11px;
}

.cart-line > span {
  align-self: start;
  padding-top: 3px;
  font-size: 11px;
  font-weight: 600;
  color: #dce9fb;
}

.cart-summary {
  padding: 22px 24px 26px;
  border-top: 1px solid #20304a;
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-summary > div span {
  font-size: 14px;
}

.cart-summary > div strong {
  font-size: 14px;
}

.cart-summary p {
  margin: 12px 0 18px;
  color: #8694a9;
  font-size: 11px;
  line-height: 1.5;
}

.checkout-button {
  width: 100%;
  background: var(--blue);
  cursor: pointer;
}

.checkout-button:hover:not(:disabled) {
  background: #2990ff;
  transform: translateY(-1px);
}

.checkout-button:disabled {
  background: #b5bac2;
  cursor: not-allowed;
  transform: none;
}

.checkout-status:empty {
  display: none;
}

.cart-summary .checkout-status {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #29476c;
  background: #101f34;
  color: #9bcaff;
}

.cart-summary .checkout-status[data-type="error"] {
  border-color: #68333b;
  background: #2c171d;
  color: #ff9ca7;
}

.cart-summary .checkout-status[data-type="success"] {
  border-color: #2f6549;
  background: #14291f;
  color: #83e0ab;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 26px 5vw;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #07090c;
    border-bottom: 1px solid var(--border);
  }

  nav.nav-open {
    display: flex;
  }

  .menu-button {
    display: block;
  }

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

  .membership-card {
    min-height: auto;
  }

  .script-product {
    grid-template-columns: 1fr;
  }

  .script-product-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid var(--border);
  }

  .contact-section {
    grid-template-columns: 1fr 1fr;
  }

  .contact-section .light-button {
    grid-column: 1 / -1;
    width: fit-content;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 70px;
    padding-inline: 18px;
  }

  nav {
    top: 70px;
    max-height: calc(100dvh - 70px);
    padding: 14px 18px 22px;
    overflow-y: auto;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
  }

  nav a {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(146, 155, 171, 0.12);
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .discord-button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 86px 18px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 14vw, 64px);
    overflow-wrap: anywhere;
  }

  .hero-copy-wrap {
    width: 100%;
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-actions {
    width: min(100%, 360px);
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

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

  .hero-actions .secondary-link {
    align-self: center;
  }

  .section {
    padding: 76px 18px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 40px;
  }

  .section h2 {
    font-size: clamp(40px, 13vw, 52px);
    overflow-wrap: anywhere;
  }

  .section-heading > p {
    font-size: 13px;
  }

  .membership-card {
    padding: 26px 24px;
  }

  .membership-card h3 {
    font-size: 36px;
  }

  .membership-price strong {
    font-size: 34px;
  }

  .story-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-card {
    min-height: 0;
  }

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

  .contraband-feature {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .contraband-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .contraband-media::after {
    background: linear-gradient(180deg, transparent 56%, #080b0e 100%);
  }

  .contraband-copy {
    padding: 34px 24px 38px;
  }

  .contraband-copy h2 {
    font-size: clamp(40px, 10.8vw, 48px);
    letter-spacing: -0.035em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .contraband-meta {
    gap: 8px 12px;
  }

  .contraband-meta span + span::before {
    margin-right: 12px;
  }

  .contraband-button {
    width: 100%;
  }

  .script-product-content {
    padding: 30px 22px 26px;
  }

  .script-product h3 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .script-product-content > p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.75;
  }

  .script-features {
    margin-block: 26px;
  }

  .script-features li {
    padding-block: 14px;
    font-size: 12px;
    line-height: 1.55;
  }

  .script-meta > div {
    min-height: 72px;
    padding: 16px 14px;
  }

  .script-meta strong {
    font-size: 12px;
    line-height: 1.45;
  }

  .script-features,
  .script-meta {
    grid-template-columns: 1fr;
  }

  .script-meta > div,
  .script-meta > div:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .script-meta > div:last-child {
    border-bottom: 0;
  }

  .script-product-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .script-button {
    width: 100%;
  }

  .contact-section {
    padding: 60px 18px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-section h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .contact-section .light-button {
    width: 100%;
  }

  .contact-section .light-button {
    grid-column: auto;
  }

  footer {
    padding: 48px 22px 26px;
    grid-template-columns: 1fr;
  }

  footer > p {
    text-align: left;
  }

  .footer-contact {
    align-items: flex-start;
  }

  footer > div {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .cart-drawer {
    width: 100%;
    height: 100dvh;
    border-left: 0;
  }

  .drawer-header {
    min-height: 86px;
    padding: 20px 18px;
  }

  .cart-items {
    padding-inline: 18px;
  }

  .cart-summary {
    padding: 20px 18px calc(20px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 440px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    gap: 8px;
    font-size: 18px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand small {
    letter-spacing: 0.22em;
  }

  .header-actions {
    gap: 4px;
  }

  .cart-button {
    min-width: 46px;
    width: 46px;
    padding: 0;
  }

  .cart-label {
    display: none;
  }

  .cart-button b {
    right: -1px;
  }

  .membership-card {
    padding: 24px 20px;
  }

  .script-product {
    overflow: visible;
    clip-path: none;
    border-radius: 10px;
  }

  .script-product-media {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 9px 9px 0 0;
  }

  .script-product-media img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .script-product-media > span {
    top: 10px;
    right: 10px;
    padding: 7px 8px;
    font-size: 7px;
  }

  .script-product-content {
    padding-inline: 20px;
  }

  .membership-badge {
    top: 14px;
    right: 14px;
  }

  .store-card-content {
    padding: 22px 20px;
  }

  .store-card-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .store-card-footer button {
    width: 100%;
  }

  footer {
    padding-inline: 18px;
  }
}

@media (hover: none) {
  .membership-card:hover,
  .membership-card:focus-within,
  .stories-heading:hover h2,
  .stories-heading:hover > p {
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
  }

  .scroll-reveal,
  .scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.script-product-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.script-details-link {
  padding: 10px 0;
  border-bottom: 1px solid #667386;
  color: #dce6f5;
  font-size: 11px;
  font-weight: 700;
  transition: color 160ms ease, border-color 160ms ease;
}

.script-details-link:hover {
  border-color: var(--blue-bright);
  color: var(--blue-bright);
}

.subpage-body {
  min-height: 100vh;
}

.subpage-main {
  overflow: hidden;
}

.page-hero {
  position: relative;
  min-height: 570px;
  padding: 150px 8vw 100px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.97), rgba(5, 6, 8, 0.62) 58%, rgba(5, 6, 8, 0.83)),
    var(--page-hero-image, none) center / cover no-repeat,
    radial-gradient(circle at 75% 25%, rgba(8, 124, 255, 0.3), transparent 40%),
    #05070a;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 900px;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font: 700 clamp(54px, 7vw, 104px) / 0.9 var(--font-display), Arial, sans-serif;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.page-hero h1 em {
  color: var(--blue-bright);
  font-style: normal;
}

.mobile-break {
  display: none;
}

.page-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: #c1cad8;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
}

.page-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.content-section {
  padding: 100px 8vw;
  border-bottom: 1px solid var(--border);
}

.content-section.is-alt {
  background:
    radial-gradient(circle at 15% 10%, rgba(8, 124, 255, 0.1), transparent 30%),
    #07090d;
}

.content-header {
  max-width: 820px;
  margin-bottom: 50px;
}

.content-header h2,
.content-copy h2 {
  margin: 0;
  font: 700 clamp(42px, 5vw, 72px) / 0.94 var(--font-display), Arial, sans-serif;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.content-header h2 em,
.content-copy h2 em {
  color: var(--blue-bright);
  font-style: normal;
}

.content-header > p,
.content-copy > p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.feature-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card,
.faq-card,
.product-panel {
  padding: 30px;
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(8, 124, 255, 0.08), transparent 48%),
    var(--surface);
}

.feature-card h3,
.faq-card h3,
.product-panel h2 {
  margin: 0;
  color: #f1f5fb;
  font: 700 25px/1.05 var(--font-display), Arial, sans-serif;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.feature-card p,
.faq-card p,
.product-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.join-guide-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  align-items: start;
  gap: clamp(64px, 10vw, 160px);
}

.join-guide-layout .content-header {
  margin-bottom: 0;
}

.join-checklist {
  border-top: 1px solid #2a3342;
}

.join-checklist-item {
  padding: 28px 4px;
  border-bottom: 1px solid #2a3342;
}

.join-checklist-item h3 {
  margin: 0;
  color: #f1f5fb;
  font: 700 clamp(22px, 2.2vw, 30px) / 1 var(--font-display), Arial, sans-serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.join-checklist-item p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.content-split,
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.content-media,
.product-media {
  overflow: hidden;
  border: 1px solid #2b3e59;
  border-radius: 12px;
  background: #080b10;
}

.content-media img,
.content-media video,
.product-media img {
  width: 100%;
  height: auto;
}

.content-video {
  display: block;
  aspect-ratio: 400 / 227;
  object-fit: cover;
  background: #080b10;
}

.check-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 15px 0 15px 28px;
  border-top: 1px solid var(--border);
  color: #d7deea;
  font-size: 13px;
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-bright);
  font-weight: 800;
}

.page-cta {
  padding: 80px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--blue);
}

.page-cta h2 {
  max-width: 780px;
  margin: 0;
  font: 700 clamp(40px, 5vw, 72px) / 0.94 var(--font-display), Arial, sans-serif;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.product-price {
  margin-top: 26px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.product-price strong {
  color: white;
  font-size: 36px;
}

.product-price span {
  color: var(--muted);
  font-size: 12px;
}

.product-facts {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}

.product-facts div {
  padding: 18px;
}

.product-facts div:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.product-facts div:nth-child(-n + 2) {
  border-bottom: 1px solid var(--border);
}

.product-facts span,
.product-facts strong {
  display: block;
}

.product-facts span {
  color: #748095;
  font: 700 8px/1.2 var(--font-geist-mono), monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-facts strong {
  margin-top: 7px;
  color: #eef3fb;
  font-size: 12px;
}

@media (max-width: 1000px) {
  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .join-guide-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .content-split,
  .product-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .script-product-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .script-details-link {
    text-align: center;
  }

  .page-hero {
    min-height: 560px;
    padding: 125px 22px 70px;
  }

  .page-hero h1 {
    font-size: clamp(36px, 9.5vw, 48px);
  }

  .mobile-break {
    display: inline;
  }

  .content-section {
    padding: 72px 22px;
  }

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

  .page-cta {
    padding: 64px 22px;
    align-items: stretch;
    flex-direction: column;
  }

  .page-cta .light-button {
    width: 100%;
  }
}
