:root {
  --void: #050509;
  --ink: #0d0f16;
  --panel: rgba(13, 14, 21, 0.9);
  --panel-soft: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 151, 81, 0.35);
  --line-gold: rgba(255, 212, 112, 0.55);
  --text: #f7f1e8;
  --muted: #b9c0cf;
  --dim: #808a9d;
  --orange: #ff8a3d;
  --gold: #ffd66e;
  --cyan: #64ddff;
  --violet: #b574ff;
  --green: #74ffb4;
  --radius: 8px;
  --mono: "Orbitron", "Rajdhani", "Arial Narrow", system-ui, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--void);
  color: var(--text);
  font-family: var(--body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.38;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 86%);
}

.clone-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
.brand,
.eyebrow,
.primary-cta,
.secondary-cta,
.status-pill,
.step-number,
.price {
  font-family: var(--mono);
  letter-spacing: 0;
  text-transform: uppercase;
}

.presale-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(18px, 3vw, 44px);
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 138, 61, 0.28);
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  z-index: -3;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 9, 0.88) 0%, rgba(5, 5, 9, 0.58) 42%, rgba(5, 5, 9, 0.1) 74%),
    linear-gradient(0deg, rgba(5, 5, 9, 0.98) 0%, rgba(5, 5, 9, 0.12) 42%, rgba(5, 5, 9, 0.72) 100%);
}

.topbar {
  position: absolute;
  top: clamp(14px, 2vw, 28px);
  left: clamp(18px, 3vw, 44px);
  right: clamp(18px, 3vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand,
.status-pill,
.primary-cta,
.secondary-cta {
  text-decoration: none;
}

button.primary-cta,
button.secondary-cta {
  appearance: none;
  border-width: 1px;
  cursor: pointer;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #fff5e8;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 214, 110, 0.6);
  border-radius: 50%;
  background: rgba(9, 10, 15, 0.68);
  color: var(--gold);
  font-weight: 800;
}

.status-pill,
.eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.status-pill {
  padding: 10px 13px;
  border: 1px solid rgba(255, 214, 110, 0.48);
  border-radius: 999px;
  background: rgba(9, 10, 15, 0.66);
}

.hero-copy {
  width: min(760px, 100%);
  padding: 11vh 0 7vh;
}

.hero-copy h1 {
  max-width: 780px;
  margin-top: 14px;
  font-size: clamp(42px, 8vw, 104px);
  line-height: 0.9;
  text-wrap: balance;
}

.lead {
  max-width: 650px;
  margin-top: 22px;
  color: #d6dce8;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.quick-quantity {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 620px;
  margin-top: 26px;
}

.quick-quantity span {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-quantity button {
  appearance: none;
  min-width: 52px;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(100, 221, 255, 0.34);
  border-radius: 8px;
  background: rgba(7, 10, 17, 0.72);
  color: #eaf8ff;
  cursor: pointer;
  font: 900 13px/1 var(--mono);
}

.quick-quantity button:hover,
.quick-quantity button.active {
  border-color: rgba(255, 214, 110, 0.72);
  background: linear-gradient(180deg, rgba(255, 214, 110, 0.2), rgba(255, 138, 61, 0.12));
  color: #fff9ef;
}

.quick-quantity button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.quick-quantity strong {
  min-width: 0;
  color: var(--gold);
  font-family: var(--mono);
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1.15;
}

.payment-method-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(460px, 100%);
  margin-top: 16px;
}

.payment-method-panel-hero {
  margin-top: 14px;
}

.payment-method-panel button {
  appearance: none;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(100, 221, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(4, 7, 13, 0.74);
  color: #eaf8ff;
  cursor: pointer;
  text-align: left;
}

.payment-method-panel button:hover,
.payment-method-panel button.active {
  border-color: rgba(255, 214, 110, 0.7);
  background:
    radial-gradient(circle at 84% 12%, rgba(100, 221, 255, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(255, 214, 110, 0.18), rgba(255, 138, 61, 0.1)),
    rgba(6, 8, 14, 0.88);
}

.payment-method-panel button.active {
  box-shadow:
    0 0 0 2px rgba(255, 214, 110, 0.22),
    0 14px 34px rgba(255, 138, 61, 0.16);
}

.payment-method-panel button.active small {
  color: #ffe49a;
}

.payment-method-panel span,
.payment-method-panel small {
  display: block;
}

.payment-method-panel span {
  color: #fff9ef;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-method-panel small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
}

.primary-cta {
  min-width: 190px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 214, 110, 0.72);
  background: linear-gradient(180deg, #ffd66e, #ff8a3d);
  color: #160b03;
  box-shadow: 0 14px 38px rgba(255, 138, 61, 0.24);
}

.primary-cta:disabled,
.secondary-cta:disabled {
  cursor: wait;
  opacity: 0.72;
}

.secondary-cta {
  min-width: 170px;
  padding: 14px 18px;
  border: 1px solid rgba(100, 221, 255, 0.4);
  background: rgba(7, 10, 17, 0.64);
  color: #eaf8ff;
}

.scarcity-panel {
  position: absolute;
  right: clamp(18px, 3vw, 44px);
  bottom: clamp(18px, 5vw, 56px);
  width: min(320px, calc(100vw - 36px));
  padding: 20px;
  border: 1px solid rgba(255, 214, 110, 0.48);
  border-radius: var(--radius);
  background: rgba(9, 10, 15, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.scarcity-panel span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.scarcity-panel strong {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 76px;
  line-height: 0.9;
}

.scarcity-panel p {
  margin-top: 12px;
  color: #d7deeb;
  line-height: 1.45;
}

.intro-band,
.founders-package,
.nft-bound-section,
.premium-band,
.concept-showcase,
.station-founder-section,
.sold-showcase,
.feature-grid,
.rules-band,
.service-section,
.reserve-section,
.funding-section,
.founder-note {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 72px);
  padding: 68px 0 42px;
}

.checkout-status {
  width: min(1180px, calc(100% - 36px));
  margin: 18px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(100, 221, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(7, 10, 17, 0.86);
  color: #eaf8ff;
  font-weight: 800;
  line-height: 1.45;
}

.checkout-status-success {
  border-color: rgba(116, 255, 180, 0.42);
  color: #dfffea;
}

.checkout-status-warning {
  border-color: rgba(255, 214, 110, 0.46);
  color: #ffe49a;
}

.checkout-status-error {
  border-color: rgba(255, 92, 92, 0.5);
  color: #ffb8b8;
}

body > .payment-modal[hidden] {
  display: none;
}

body > .payment-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

body > .payment-modal .payment-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 3, 8, 0.72), rgba(1, 3, 8, 0.9)),
    rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(12px);
}

body > .payment-modal .payment-modal-dialog {
  position: relative;
  display: block;
  width: min(960px, calc(100vw - 36px));
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 214, 110, 0.5);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 214, 110, 0.16), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(100, 221, 255, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(14, 15, 22, 0.98), rgba(5, 7, 12, 0.98));
  box-shadow:
    0 30px 110px rgba(0, 0, 0, 0.72),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

body > .payment-modal .payment-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  color: #eaf8ff;
  cursor: pointer;
  font: 900 18px/1 var(--mono);
}

body > .payment-modal .payment-modal-dialog h2 {
  max-width: 520px;
  margin-top: 8px;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 0.96;
  text-wrap: balance;
}

body > .payment-modal .payment-modal-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

body > .payment-modal .payment-modal-summary div {
  min-height: 94px;
  padding: 18px;
  border: 1px solid rgba(100, 221, 255, 0.26);
  border-radius: 8px;
  background: rgba(4, 7, 13, 0.7);
}

body > .payment-modal .payment-modal-summary span {
  display: block;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

body > .payment-modal .payment-modal-summary strong {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1;
}

body > .payment-modal .payment-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

body > .payment-modal .payment-choice-grid button {
  appearance: none;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 214, 110, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(3, 5, 10, 0.82);
  color: #eaf8ff;
  cursor: pointer;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

body > .payment-modal .payment-choice-grid button:hover,
body > .payment-modal .payment-choice-grid button:focus-visible {
  border-color: rgba(255, 214, 110, 0.78);
  box-shadow:
    0 0 0 2px rgba(255, 214, 110, 0.2),
    0 18px 42px rgba(255, 138, 61, 0.18);
  transform: translateY(-2px);
  outline: none;
}

body > .payment-modal .payment-choice-grid button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

body > .payment-modal .payment-choice-grid button:nth-child(2) {
  border-color: rgba(100, 221, 255, 0.38);
  background:
    radial-gradient(circle at 84% 16%, rgba(100, 221, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(100, 221, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(3, 5, 10, 0.82);
}

body > .payment-modal .payment-choice-icon {
  display: inline-grid;
  width: max-content;
  min-height: 34px;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(255, 214, 110, 0.34);
  border-radius: 8px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

body > .payment-modal .payment-choice-grid button:nth-child(2) .payment-choice-icon {
  border-color: rgba(100, 221, 255, 0.36);
  color: var(--cyan);
}

body > .payment-modal .payment-choice-grid strong {
  display: block;
  color: #fff9ef;
  font-family: var(--mono);
  font-size: 22px;
  line-height: 1.08;
  text-transform: uppercase;
}

body > .payment-modal .payment-choice-grid small,
body > .payment-modal .payment-modal-note {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}

body > .payment-modal .payment-modal-note {
  margin-top: 16px;
}

body.payment-modal-open {
  overflow: hidden;
}

.section-heading h2,
.package-hero-card h2,
.nft-bound-copy h2,
.premium-band h2,
.sold-heading h2,
.rules-band h2,
.service-copy h2,
.reserve-card h2,
.funding-copy h2,
.founder-letter h2 {
  margin-top: 8px;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1;
  text-wrap: balance;
}

.intro-copy,
.package-hero-card p,
.perk-card p,
.nft-bound-copy p,
.nft-bound-cards p,
.premium-band p,
.sold-intro,
.service-copy p,
.reserve-copy,
.funding-copy p,
.funding-point p,
.station-concept-card span,
.concept-note,
.submission-card li,
.rules-list span,
.service-list span,
.feature-grid p,
.founder-copy p,
.founder-signature span {
  color: var(--muted);
  line-height: 1.55;
}

.intro-copy {
  font-size: clamp(17px, 2vw, 22px);
}

.concept-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  padding: 18px 0 70px;
}

.concept-showcase-delivery {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  padding: 18px 0 34px;
}

.concept-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(100, 221, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(5, 5, 9, 0.78);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.concept-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, rgba(5, 5, 9, 0.5)),
    linear-gradient(90deg, rgba(255, 214, 110, 0.14), transparent 38%, rgba(100, 221, 255, 0.12));
}

.concept-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1.01);
}

.concept-copy {
  padding: clamp(22px, 3vw, 34px);
}

.concept-copy h2 {
  margin-top: 9px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1;
  text-wrap: balance;
}

.concept-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.icon-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.icon-strip span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 214, 110, 0.28);
  border-radius: 999px;
  background: rgba(8, 9, 14, 0.64);
  color: #edf7ff;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.custom-icon {
  width: 24px;
  height: 24px;
  display: block;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(255, 214, 110, 0.22));
}

.icon-strip .custom-icon,
.feature-icon .custom-icon,
.rule-icon .custom-icon {
  flex: 0 0 auto;
}

.feature-grid article:nth-child(2) .custom-icon,
.service-list div:first-child .custom-icon {
  color: var(--cyan);
}

.feature-grid article:nth-child(3) .custom-icon,
.service-list div:nth-child(2) .custom-icon {
  color: var(--violet);
}

.feature-grid article:nth-child(4) .custom-icon,
.service-list div:nth-child(3) .custom-icon {
  color: var(--green);
}

.founders-package {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  padding: 18px 0 52px;
}

.package-hero-card,
.perk-card,
.premium-band,
.premium-benefits-grid article {
  border: 1px solid rgba(255, 138, 61, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.package-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: clamp(24px, 4vw, 42px);
  border-color: rgba(255, 214, 110, 0.5);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 214, 110, 0.18), transparent 32%),
    radial-gradient(circle at 80% 80%, rgba(100, 221, 255, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(42, 23, 8, 0.8), rgba(9, 10, 15, 0.92));
}

.package-hero-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 28px auto;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(255, 214, 110, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 214, 110, 0.34) 49%, rgba(255, 214, 110, 0.34) 51%, transparent 52%),
    linear-gradient(transparent 48%, rgba(255, 214, 110, 0.34) 49%, rgba(255, 214, 110, 0.34) 51%, transparent 52%);
  opacity: 0.35;
}

.package-hero-card h2,
.premium-band h2 {
  margin-top: 8px;
  font-size: clamp(30px, 4.4vw, 60px);
  line-height: 0.96;
  text-wrap: balance;
}

.package-hero-card p {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: 17px;
}

.package-price-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.package-price {
  color: var(--gold);
  font-family: var(--mono);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 900;
  line-height: 0.88;
}

.package-limit {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(100, 221, 255, 0.32);
  border-radius: 999px;
  background: rgba(7, 10, 17, 0.64);
  color: #dff7ff;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

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

.perk-card {
  min-height: 178px;
  padding: 20px;
}

.perk-card-main,
.perk-card-title,
.perk-card-premium {
  grid-column: span 2;
}

.perk-card-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
  border-color: rgba(100, 221, 255, 0.34);
  background:
    linear-gradient(120deg, rgba(100, 221, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(8, 9, 14, 0.82);
}

.perk-card-main small,
.perk-card-main h3,
.perk-card-main p {
  grid-column: 2;
}

.perk-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 214, 110, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 214, 110, 0.22), transparent 58%),
    rgba(6, 8, 14, 0.74);
}

.perk-card-main .perk-icon {
  grid-row: 1 / 4;
  margin-bottom: 0;
  width: 72px;
  height: 72px;
}

.perk-card-main .custom-icon {
  width: 36px;
  height: 36px;
  color: var(--cyan);
}

.perk-card small {
  display: block;
  color: var(--dim);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.perk-card h3 {
  margin-top: 6px;
  font-size: 22px;
  line-height: 1.05;
}

.perk-card p {
  margin-top: 11px;
}

.perk-card-legendary {
  border-color: rgba(255, 214, 110, 0.46);
  background:
    radial-gradient(circle at 75% 8%, rgba(255, 214, 110, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 214, 110, 0.08), rgba(255, 255, 255, 0.025));
}

.perk-card-epic {
  border-color: rgba(181, 116, 255, 0.4);
  background:
    radial-gradient(circle at 75% 8%, rgba(181, 116, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(181, 116, 255, 0.09), rgba(255, 255, 255, 0.025));
}

.perk-card-title {
  border-color: rgba(116, 255, 180, 0.36);
  background:
    radial-gradient(circle at 82% 18%, rgba(116, 255, 180, 0.13), transparent 36%),
    linear-gradient(120deg, rgba(116, 255, 180, 0.1), rgba(100, 221, 255, 0.06)),
    rgba(8, 9, 14, 0.82);
}

.perk-card-premium {
  border-color: rgba(181, 116, 255, 0.36);
  background:
    linear-gradient(120deg, rgba(181, 116, 255, 0.12), rgba(116, 255, 180, 0.06)),
    rgba(8, 9, 14, 0.82);
}

.perk-card-epic .custom-icon {
  color: var(--violet);
}

.perk-card-title .custom-icon {
  color: var(--green);
}

.perk-card-legendary .custom-icon,
.perk-card:nth-child(5) .custom-icon {
  color: var(--gold);
}

.perk-card-premium .custom-icon {
  color: var(--violet);
}

.nft-bound-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: 0 0 52px;
}

.nft-bound-copy,
.nft-bound-cards article {
  border: 1px solid rgba(100, 221, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(100, 221, 255, 0.08), rgba(255, 214, 110, 0.045)),
    rgba(8, 9, 14, 0.86);
}

.nft-bound-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
}

.nft-bound-copy::after {
  content: "300 ENJ";
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 28px);
  color: rgba(255, 214, 110, 0.13);
  font-family: var(--mono);
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
}

.nft-bound-copy p {
  position: relative;
  z-index: 1;
  margin-top: 16px;
}

.nft-bound-copy strong {
  color: var(--gold);
}

.nft-bound-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.nft-bound-cards article {
  min-height: 168px;
  padding: 18px;
}

.nft-bound-cards article:nth-child(2) {
  border-color: rgba(255, 214, 110, 0.44);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 214, 110, 0.16), transparent 38%),
    linear-gradient(135deg, rgba(255, 214, 110, 0.09), rgba(255, 255, 255, 0.025));
}

.nft-bound-cards article:nth-child(3) {
  border-color: rgba(181, 116, 255, 0.36);
}

.nft-bound-cards span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 214, 110, 0.32);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.3);
}

.nft-bound-cards article:nth-child(1) .custom-icon {
  color: var(--cyan);
}

.nft-bound-cards article:nth-child(3) .custom-icon {
  color: var(--violet);
}

.nft-bound-cards article:nth-child(4) .custom-icon {
  color: var(--green);
}

.nft-bound-cards strong {
  display: block;
  color: #fff9ef;
  font-family: var(--mono);
  font-size: 20px;
  text-transform: uppercase;
}

.nft-bound-cards p {
  margin-top: 9px;
}

.premium-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 52px;
  padding: clamp(24px, 4vw, 42px);
  border-color: rgba(116, 255, 180, 0.28);
  background:
    radial-gradient(circle at 82% 18%, rgba(116, 255, 180, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.02));
}

.premium-band p {
  margin-top: 18px;
  font-size: 17px;
}

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

.premium-benefits-grid article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 94px;
  padding: 16px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
}

.premium-benefits-grid span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(116, 255, 180, 0.28);
  border-radius: var(--radius);
  background: rgba(6, 8, 14, 0.72);
}

.premium-benefits-grid .custom-icon {
  color: var(--green);
}

.premium-benefits-grid strong {
  color: #fff9ef;
  line-height: 1.25;
}

.station-founder-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 4vw, 38px);
  align-items: stretch;
  padding: 18px 0 58px;
}

.station-founder-copy,
.station-founder-art {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 214, 110, 0.42);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 214, 110, 0.16), transparent 34%),
    radial-gradient(circle at 82% 88%, rgba(100, 221, 255, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(35, 20, 7, 0.84), rgba(7, 10, 17, 0.94));
}

.station-founder-copy {
  padding: clamp(24px, 4vw, 46px);
}

.station-founder-copy::after {
  content: "10";
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(14px, 3vw, 30px);
  color: rgba(255, 214, 110, 0.12);
  font-family: var(--mono);
  font-size: clamp(110px, 16vw, 210px);
  font-weight: 900;
  line-height: 0.75;
  pointer-events: none;
}

.station-founder-copy h2 {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-size: clamp(32px, 5vw, 68px);
  line-height: 0.92;
  text-wrap: balance;
}

.station-founder-copy p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: #dce4ef;
  font-size: 17px;
  line-height: 1.58;
}

.station-founder-perks {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.station-founder-perks span {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  color: #fff9ef;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.station-founder-price {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: baseline;
  margin-top: 26px;
}

.station-founder-price strong {
  color: var(--gold);
  font-family: var(--mono);
  font-size: clamp(36px, 6vw, 76px);
  line-height: 0.9;
}

.station-founder-price span {
  color: #dff7ff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.station-founder-cta {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  margin-top: 22px;
}

.station-founder-art {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border-color: rgba(100, 221, 255, 0.3);
  background: rgba(5, 7, 12, 0.86);
}

.station-founder-art figure {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #07090f;
}

.station-founder-art img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.01);
}

.station-founder-art figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 42px 12px 12px;
  background: linear-gradient(180deg, transparent, rgba(4, 5, 9, 0.9) 58%, rgba(4, 5, 9, 0.98));
  color: #fff9ef;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.sold-showcase {
  padding: 18px 0 72px;
}

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

.availability-counter {
  min-width: 230px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 214, 110, 0.42);
  border-radius: var(--radius);
  background: rgba(9, 10, 15, 0.7);
  text-align: right;
}

.availability-counter span {
  display: block;
  color: var(--dim);
  font-size: 11px;
  text-transform: uppercase;
}

.availability-counter strong {
  display: block;
  margin-top: 5px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 25px;
  line-height: 1;
}

.sold-intro {
  width: min(800px, 100%);
  margin-bottom: 22px;
  font-size: 17px;
}

.clone-carousel-wrap {
  position: relative;
  padding: 0 48px;
}

.clone-carousel {
  display: grid;
  grid-auto-columns: minmax(230px, 270px);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 214, 110, 0.6) rgba(255, 255, 255, 0.08);
  padding: 4px 0 18px;
}

.sold-clone-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  scroll-snap-align: start;
  padding: 18px;
  border: 1px solid rgba(255, 138, 61, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 24%, rgba(100, 221, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(21, 16, 24, 0.72), rgba(5, 5, 9, 0.96));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 18px 46px rgba(0, 0, 0, 0.28);
}

.sold-clone-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.08) contrast(1.04);
}

.sold-clone-card::before {
  z-index: 1;
}

.sold-clone-placeholder {
  position: absolute;
  inset: 18px 18px 112px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 214, 110, 0.28);
  border-radius: 999px 999px 20px 20px;
  color: rgba(255, 214, 110, 0.82);
  font-family: var(--mono);
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 214, 110, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(100, 221, 255, 0.08), rgba(181, 116, 255, 0.06));
}

.sold-clone-card::before,
.sold-clone-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.sold-clone-card::before {
  inset: 16px 16px 112px;
  border: 1px solid rgba(100, 221, 255, 0.2);
  border-radius: 999px 999px 20px 20px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 214, 110, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(100, 221, 255, 0.16), rgba(181, 116, 255, 0.08));
  mix-blend-mode: screen;
}

.sold-clone-card::after {
  z-index: 1;
  left: 20%;
  right: 20%;
  bottom: 96px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(100, 221, 255, 0.9), transparent);
  box-shadow: 0 0 24px rgba(100, 221, 255, 0.55);
}

.sold-clone-card:nth-child(3n + 1) {
  border-color: rgba(100, 221, 255, 0.34);
}

.sold-clone-card:nth-child(3n + 2) {
  border-color: rgba(181, 116, 255, 0.34);
}

.sold-clone-card:nth-child(3n + 3) {
  border-color: rgba(116, 255, 180, 0.28);
}

.sold-clone-card:not(.is-image-pending)::before {
  border-color: rgba(255, 214, 110, 0.34);
}

.sold-clone-card span,
.sold-clone-card strong,
.sold-clone-card em {
  position: relative;
  z-index: 1;
}

.sold-clone-card span {
  width: max-content;
  margin-bottom: auto;
  padding: 7px 9px;
  border: 1px solid rgba(255, 214, 110, 0.45);
  border-radius: 999px;
  background: rgba(5, 5, 9, 0.64);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
}

.sold-clone-card strong {
  font-family: var(--mono);
  font-size: 23px;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}

.sold-clone-card em {
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  text-transform: uppercase;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 214, 110, 0.4);
  border-radius: var(--radius);
  background: rgba(8, 9, 14, 0.82);
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

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

.feature-grid article,
.rules-band,
.service-section,
.reserve-card,
.submission-card {
  border: 1px solid rgba(255, 138, 61, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.feature-grid article {
  min-height: 238px;
  padding: 22px;
}

.feature-icon,
.rule-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 214, 110, 0.26);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 214, 110, 0.18), transparent 58%),
    rgba(6, 8, 14, 0.72);
}

.feature-icon {
  margin-bottom: 18px;
}

.step-number {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--cyan);
  font-size: 13px;
}

.feature-grid h3,
.submission-card h3 {
  font-size: 20px;
  line-height: 1.05;
}

.feature-grid p {
  margin-top: 14px;
}

.rules-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: 26px;
  padding: clamp(24px, 4vw, 42px);
  border-color: rgba(100, 221, 255, 0.28);
}

.rules-list {
  display: grid;
  gap: 12px;
}

.rules-list div,
.service-list div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
}

.rules-list strong,
.service-list strong {
  display: block;
  margin-bottom: 7px;
  color: #fff9ef;
}

.rules-list .rule-icon,
.service-list .rule-icon {
  margin-bottom: 14px;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 26px;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 42px);
  border-color: rgba(181, 116, 255, 0.3);
}

.service-copy p {
  margin-top: 18px;
}

.service-list {
  display: grid;
  gap: 12px;
}

.reserve-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: 18px 0 38px;
}

.reserve-card,
.submission-card {
  padding: clamp(24px, 4vw, 42px);
}

.reserve-card {
  border-color: var(--line-gold);
  background:
    linear-gradient(135deg, rgba(255, 214, 110, 0.12), rgba(100, 221, 255, 0.05)),
    rgba(10, 11, 17, 0.9);
}

.price {
  margin-top: 20px;
  color: var(--gold);
  font-size: clamp(64px, 9vw, 116px);
  line-height: 0.85;
}

.reserve-copy {
  margin-top: 20px;
  max-width: 640px;
}

.quantity-panel {
  display: grid;
  gap: 10px;
  max-width: 460px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(255, 214, 110, 0.3);
  border-radius: var(--radius);
  background: rgba(5, 7, 12, 0.42);
}

.quantity-panel label {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-quantity-compact {
  margin-top: 0;
}

.quick-quantity-compact button {
  min-width: 48px;
  min-height: 38px;
}

.quantity-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.quantity-row input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(100, 221, 255, 0.34);
  border-radius: 8px;
  background: rgba(3, 5, 10, 0.78);
  color: #fff9ef;
  font: 900 22px/1 var(--mono);
}

.quantity-row strong {
  min-width: 0;
  color: var(--gold);
  font-family: var(--mono);
  font-size: clamp(16px, 2.4vw, 22px);
  line-height: 1.15;
}

.quantity-panel p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.crypto-note {
  max-width: 460px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.reserve-button {
  margin-top: 24px;
}

.submission-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  border-color: rgba(116, 255, 180, 0.28);
}

.submission-card-header {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(116, 255, 180, 0.24);
  border-radius: 8px;
  background: rgba(5, 7, 12, 0.72);
}

.submission-card-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 52%, rgba(6, 8, 14, 0.8)),
    linear-gradient(90deg, rgba(116, 255, 180, 0.12), transparent 42%, rgba(100, 221, 255, 0.08));
}

.submission-card-header img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.06) contrast(1.04);
}

.submission-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.submission-card li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding-left: 0;
  border-left: 2px solid rgba(116, 255, 180, 0.56);
  padding-block: 4px;
  padding-inline-start: 14px;
}

.submission-card li .custom-icon {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.funding-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(18px, 4vw, 38px);
  margin-top: 18px;
  margin-bottom: 18px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(100, 221, 255, 0.26);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 20%, rgba(100, 221, 255, 0.11), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(255, 214, 110, 0.11), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 9, 14, 0.92);
  overflow: hidden;
}

.funding-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 138, 61, 0.52), rgba(181, 116, 255, 0.3), transparent 34%) top left / 42% 1px no-repeat,
    linear-gradient(180deg, rgba(100, 221, 255, 0.36), transparent 24%) top left / 1px 100% no-repeat;
  opacity: 0.9;
}

.funding-copy,
.funding-panel,
.station-concept-gallery {
  position: relative;
  z-index: 1;
}

.funding-copy p {
  margin-top: 16px;
  font-size: 16px;
}

.concept-note {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #d8e1ed;
}

.funding-panel {
  display: grid;
  align-content: center;
  gap: 12px;
}

.funding-point {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(100, 221, 255, 0.06), rgba(255, 214, 110, 0.035)),
    rgba(0, 0, 0, 0.25);
}

.funding-point > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 214, 110, 0.42);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.32);
  color: var(--gold);
}

.funding-point .custom-icon {
  width: 30px;
  height: 30px;
}

.funding-point strong {
  display: block;
  color: #fff9ef;
  font-family: var(--mono);
  font-size: 18px;
  text-transform: uppercase;
}

.funding-point p {
  margin-top: 6px;
}

.station-concept-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.station-concept-card {
  position: relative;
  min-height: 360px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 214, 110, 0.28);
  border-radius: var(--radius);
  background: #07090f;
}

.station-concept-card-large {
  grid-column: auto;
}

.station-concept-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.04);
  transform: scale(1.01);
}

.station-concept-card figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: grid;
  gap: 5px;
  padding: 54px 18px 18px;
  background: linear-gradient(180deg, transparent, rgba(4, 5, 9, 0.88) 54%, rgba(4, 5, 9, 0.97));
}

.station-concept-card strong {
  color: #fff9ef;
  font-family: var(--mono);
  font-size: 18px;
  text-transform: uppercase;
}

.station-concept-card span {
  color: #dce4ef;
}

.founder-note {
  padding: 38px 0 86px;
}

.founder-letter {
  border: 1px solid rgba(255, 214, 110, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022));
}

.founder-letter {
  padding: clamp(24px, 4vw, 46px);
  border-color: rgba(100, 221, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(100, 221, 255, 0.08), rgba(255, 138, 61, 0.06)),
    rgba(8, 9, 14, 0.9);
}

.founder-letter-header {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
}

.founder-portrait-wrap {
  overflow: hidden;
  width: 112px;
  border: 1px solid rgba(255, 214, 110, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022));
  padding: 8px;
}

.founder-portrait {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(1.04) contrast(1.03);
}

.founder-copy {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.founder-copy p {
  font-size: 16px;
}

.founder-signature {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-signature strong,
.founder-signature span {
  display: block;
}

.founder-signature strong {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 20px;
  text-transform: uppercase;
}

.founder-signature span {
  margin-top: 4px;
}

@media (max-width: 980px) {
  .hero {
    min-height: 94vh;
  }

  .hero-copy {
    padding-bottom: 230px;
  }

  .intro-band,
  .founders-package,
  .nft-bound-section,
  .premium-band,
  .concept-showcase,
  .station-founder-section,
  .rules-band,
  .service-section,
  .reserve-section,
  .funding-section,
  .founder-note {
    grid-template-columns: 1fr;
  }

  .station-concept-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .station-founder-art {
    min-height: 520px;
  }

  .sold-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .availability-counter {
    width: min(320px, 100%);
    text-align: left;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-perk-grid {
    grid-template-columns: 1fr;
  }

  .nft-bound-cards {
    grid-template-columns: 1fr;
  }

  .perk-card-main,
  .perk-card-title,
  .perk-card-premium {
    grid-column: auto;
  }

  .perk-card-main {
    grid-template-columns: 1fr;
  }

  .perk-card-main small,
  .perk-card-main h3,
  .perk-card-main p {
    grid-column: auto;
  }

  .perk-card-main .perk-icon {
    grid-row: auto;
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }

  .perk-card-main .custom-icon {
    width: 24px;
    height: 24px;
  }

  .premium-benefits-grid {
    grid-template-columns: 1fr;
  }

  .concept-showcase-delivery .concept-media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 96vh;
    padding: 18px;
  }

  .topbar {
    left: 18px;
    right: 18px;
  }

  .brand {
    font-size: 12px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .status-pill {
    padding: 9px 11px;
    font-size: 10px;
  }

  .hero-copy {
    padding-bottom: 238px;
  }

  .lead {
    font-size: 16px;
  }

  .quick-quantity {
    gap: 8px;
  }

  .quick-quantity span,
  .quick-quantity strong {
    flex-basis: 100%;
  }

  .quick-quantity button {
    flex: 1 1 56px;
    min-width: 0;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  body > .payment-modal {
    padding: 14px;
  }

  body > .payment-modal .payment-modal-dialog {
    max-height: calc(100vh - 28px);
    padding: 22px;
  }

  body > .payment-modal .payment-modal-summary,
  body > .payment-modal .payment-choice-grid {
    grid-template-columns: 1fr;
  }

  body > .payment-modal .payment-choice-grid button {
    min-height: 150px;
  }

  .scarcity-panel {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .scarcity-panel strong {
    font-size: 62px;
  }

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

  .submission-card-header,
  .submission-card-header img {
    min-height: 220px;
  }

  .clone-carousel-wrap {
    padding: 0;
  }

  .clone-carousel {
    grid-auto-columns: minmax(230px, 82vw);
  }

  .founder-letter-header {
    grid-template-columns: 1fr;
  }

  .founder-portrait-wrap {
    width: 112px;
  }

  .station-concept-gallery {
    grid-template-columns: 1fr;
  }

  .station-founder-art {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .station-founder-art figure,
  .station-founder-art img {
    min-height: 240px;
  }

  .funding-point {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .funding-point > span {
    width: 46px;
    height: 46px;
  }

  .station-concept-card,
  .station-concept-card img {
    min-height: 260px;
  }

  .carousel-control {
    display: none;
  }

  .feature-grid article {
    min-height: 0;
  }

  .step-number {
    margin-bottom: 18px;
  }
}

body > .payment-modal [hidden] { display: none !important; }
body > .payment-modal [data-founder-payment-choice="crown"] { border-color: #dfb854; }
