* { box-sizing: border-box; }

:root {
  --black: #000000;
  --rich: #070707;
  --charcoal: #111111;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.12);
  --border-bright: rgba(255, 255, 255, 0.28);
  --text: #f5f3ef;
  --muted: rgba(245, 243, 239, 0.62);
  --silver: #c8c4bc;
  --gold: #d4af6a;
  --spotlight: rgba(255, 252, 245, 0.14);
  --btn-radius: 10px;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--black);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  background: radial-gradient(ellipse 85% 70% at 50% 45%, transparent 35%, rgba(0, 0, 0, 0.75) 100%);
}

.spotlight {
  position: fixed;
  pointer-events: none;
  z-index: 98;
}

.spotlight-top {
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 120vw);
  height: 75vh;
  background: radial-gradient(ellipse 42% 55% at 50% 0%, rgba(255, 253, 248, 0.2) 0%, rgba(255, 253, 248, 0.06) 28%, transparent 68%);
  filter: blur(2px);
  animation: beam-pulse 8s ease-in-out infinite;
}

.spotlight-floor {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(640px, 90vw);
  height: 120px;
  background: radial-gradient(ellipse 50% 100% at 50% 100%, rgba(255, 253, 248, 0.1) 0%, transparent 70%);
}

@keyframes beam-pulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

main { position: relative; z-index: 2; }

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2));
  border-bottom: 1px solid var(--border);
}

.brand {
  font-family: "Permanent Marker", cursive;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}

.brand-accent {
  letter-spacing: 0.08em;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border-bright);
  background: var(--surface);
  color: var(--text);
  border-radius: var(--btn-radius);
  padding: 0.45rem 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-links { display: flex; gap: 0.65rem; }

.nav-links a {
  font-family: "Permanent Marker", cursive;
  color: var(--silver);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--btn-radius);
  padding: 0.5rem 0.85rem;
  transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.nav-links a:hover {
  transform: translateY(-1px);
  color: var(--text);
  border-color: var(--border-bright);
  background: rgba(255, 255, 255, 0.08);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.08) brightness(0.72) saturate(0.92);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 55% at 50% 38%, rgba(255, 253, 248, 0.08) 0%, transparent 70%),
    linear-gradient(to top, #000 0%, transparent 18%),
    linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.hero-eyebrow {
  margin: 0 0 0.2rem;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  letter-spacing: 0.04em;
  color: var(--text);
  font-weight: 400;
}

.hero-subline {
  margin: 0 0 0.85rem;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(0.8rem, 2vw, 1rem);
  letter-spacing: 0.04em;
  color: var(--muted);
}

.hero-beam {
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, 70vw);
  height: 72%;
  background: conic-gradient(from 180deg at 50% 0%, transparent 38deg, rgba(255, 253, 248, 0.09) 70deg, transparent 102deg);
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-inner {
  position: absolute;
  left: 50%;
  top: 36%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: min(920px, calc(100% - 2.4rem));
  text-align: center;
  padding: 0;
}

.hero-eyebrow,
.hero-subline,
.hero-title,
.hero-actions {
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.9);
}

.hero-title {
  margin: 0 0 1.25rem;
  line-height: 0.95;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.15em 0.35em;
}

.title-the {
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: var(--muted);
  font-weight: 400;
}

.title-core {
  font-family: "Permanent Marker", cursive;
  font-size: clamp(3.2rem, 12vw, 6.5rem);
  color: var(--text);
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.25);
}

.title-club {
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.8rem, 6vw, 3rem);
  letter-spacing: 0.06em;
  color: var(--silver);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-bright);
  color: var(--text);
  padding: 0.86rem 1.5rem;
  border-radius: var(--btn-radius);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -145%;
  width: 120%;
  background: linear-gradient(115deg, transparent 10%, rgba(255, 255, 255, 0.22) 50%, transparent 90%);
  transform: skewX(-22deg);
  transition: left 0.5s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn:hover::before { left: 140%; }

.btn-icon {
  min-width: 52px;
  width: 52px;
  height: 52px;
  padding: 0;
}

.x-logo-svg {
  width: 18px;
  height: 18px;
  display: block;
}

.btn-buy { min-width: 148px; }

.buy-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 0.4rem;
}

.buy-icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

.ca-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-bright);
  color: var(--text);
  border-radius: var(--btn-radius);
  padding: 0.55rem 0.65rem 0.55rem 0.9rem;
  max-width: min(96vw, 520px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.ca-block:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

#ca-text {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--silver);
  font-family: ui-monospace, "SF Mono", monospace;
}

#copy-ca-btn {
  border: 1px solid var(--border-bright);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-radius: var(--btn-radius);
  padding: 0.35rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

#copy-ca-btn:hover { background: rgba(255, 255, 255, 0.14); }

/* Ticker */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--rich);
  position: relative;
  z-index: 2;
}

.ticker-track {
  display: flex;
  width: max-content;
  padding: 0.65rem 0;
  animation: ticker-scroll 22s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-right: 1.6rem;
}

.ticker-group span {
  font-family: "Permanent Marker", cursive;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--silver);
  white-space: nowrap;
}

.ticker-group i {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* Sections */
.section {
  width: min(1100px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 4rem 0;
  position: relative;
  z-index: 2;
  scroll-margin-top: 5.5rem;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section.about {
  padding: 5rem 0 6rem;
}

.section.cards-section {
  padding: 5rem 0 6rem;
}

.section.how-to-buy {
  padding: 5rem 0 6rem;
}

h2 {
  margin: 0 0 0.75rem;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--text);
}

.section-lead {
  margin: 0 0 2rem;
  max-width: 560px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 400;
}

.card {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-radius: var(--btn-radius);
  backdrop-filter: blur(8px);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.stat-card {
  padding: 1.4rem 1rem;
  text-align: center;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-bright);
}

.stat-value {
  display: block;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.standard-card {
  padding: 1.25rem 1.1rem 1.35rem;
  text-align: left;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.standard-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-bright);
}

.standard-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 400;
  color: var(--text);
}

.standard-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}

.manifesto {
  padding: 2.5rem 2rem;
  text-align: center;
}

.manifesto-line {
  margin: 0;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  line-height: 1.4;
  color: var(--silver);
}

.manifesto-accent {
  color: var(--text);
  margin: 0.35rem 0;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}

/* Credit cards */
.credit-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  perspective: 1200px;
}

.credit-card {
  position: relative;
  aspect-ratio: 1.586 / 1;
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.credit-card:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-3deg);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.7);
}

.card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 30%, rgba(255, 255, 255, 0.12) 48%, transparent 65%);
  pointer-events: none;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.card-brand {
  font-family: "Permanent Marker", cursive;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  max-width: 55%;
}

.card-chip {
  width: 36px;
  height: 28px;
  border-radius: 5px;
  background: linear-gradient(135deg, #e8d5a8 0%, #c9a84a 40%, #f5e6b8 60%, #a8862e 100%);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.card-chip::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.08) 3px,
    rgba(0, 0, 0, 0.08) 5px
  );
}

.card-number {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.card-holder,
.card-tier {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.card-obsidian {
  background: linear-gradient(145deg, #1a1a1a 0%, #050505 50%, #121212 100%);
  color: #e8e4dc;
}

.card-gold {
  background: linear-gradient(145deg, #8b6914 0%, #d4af37 35%, #f5e6a8 55%, #9a7b1a 100%);
  color: #1a1408;
}

.card-gold .card-chip {
  background: linear-gradient(135deg, #f5e6b8, #c9a84a);
}

.card-platinum {
  background: linear-gradient(145deg, #6b7280 0%, #d1d5db 40%, #f3f4f6 60%, #9ca3af 100%);
  color: #1f2937;
}

.card-black {
  background: linear-gradient(160deg, #0a0a0a 0%, #1c1c1c 40%, #000 100%);
  color: #f5f3ef;
  border-color: rgba(212, 175, 106, 0.35);
}

.card-black .card-brand {
  color: var(--gold);
}

.card-silver {
  background: linear-gradient(145deg, #4b5563 0%, #9ca3af 35%, #e5e7eb 55%, #6b7280 100%);
  color: #111827;
}

.card-elite {
  background:
    linear-gradient(145deg, #0d0d0d 0%, #1a1028 40%, #0a0a0a 100%);
  color: #f5f3ef;
  border-color: rgba(180, 140, 255, 0.3);
}

.card-elite::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(180, 140, 255, 0.15), rgba(212, 175, 106, 0.12), transparent);
  pointer-events: none;
}

.card-elite .card-tier {
  color: #d4af6a;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.step-card {
  position: relative;
  overflow: hidden;
  padding: 1rem 0.95rem 1.15rem;
  text-align: left;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -145%;
  width: 120%;
  height: 100%;
  background: linear-gradient(115deg, transparent 15%, rgba(255, 255, 255, 0.08) 50%, transparent 85%);
  transform: skewX(-20deg);
  transition: left 0.45s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-bright);
}

.step-card:hover::before { left: 140%; }

.step-card h3 {
  margin: 0.55rem 0 0.4rem;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
}

.step-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--muted);
}

.step-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.chart-card {
  padding: 0.85rem;
}

#dexscreener-widget iframe {
  width: 100%;
  min-height: 500px;
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  background: #0a0a0a;
}

.widget-placeholder {
  min-height: 280px;
  border: 1px dashed var(--border-bright);
  border-radius: var(--btn-radius);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.widget-placeholder a {
  color: var(--silver);
}

.widget-placeholder code {
  font-size: 0.82em;
  color: var(--text);
}

/* Footer */
.footer {
  text-align: center;
  padding: 2.5rem 1rem 3rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.footer-copy {
  margin: 0;
  font-family: "Permanent Marker", cursive;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.footer-logos {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--btn-radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.footer-btn svg {
  width: 16px;
  height: 16px;
}

.footer-btn:hover {
  transform: translateY(-2px);
  border-color: var(--border-bright);
}

.pump-logo img {
  height: 22px;
  width: auto;
  display: block;
}

@media (max-width: 980px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-grid { grid-template-columns: 1fr; }
  .standard-grid { grid-template-columns: 1fr; }
  .credit-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .hero-inner { top: 38%; }
  .hero-video { object-position: center center; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 1rem;
    display: none;
    flex-direction: column;
    width: min(260px, calc(100% - 2rem));
    padding: 0.65rem;
    border-radius: var(--btn-radius);
    background: rgba(0, 0, 0, 0.92);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
  }
  .nav-links.is-open { display: flex; }
  .hero-inner { padding-bottom: 2rem; padding-top: 2.5rem; }
  .section { width: min(1100px, calc(100% - 1.4rem)); padding: 3rem 0; }
  .steps { grid-template-columns: 1fr; }
  .credit-showcase { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
}
