/* =============================================
   PUNKHAM MAYHEM — LANDING PAGE STYLESHEET
   File: assets/css/landing.css
   Version: 1.0
   ============================================= */

/* ── GOOGLE FONTS ─────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── RESET ────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: auto; /* Lenis overrides this */
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea { font: inherit; }

/* ── DESIGN TOKENS ───────────────────────── */
:root {
  /* Core palette */
  --void:         #050507;
  --base:         #0D0D0D;
  --surface:      #111113;
  --surface-2:    #171719;
  --surface-3:    #1E1E22;
  --border:       #1C1C20;
  --border-2:     #2A2A30;

  /* Brand accent */
  --red:          #C8001A;
  --red-dim:      #8B0012;
  --red-deep:     #3D0007;
  --red-glow:     rgba(200, 0, 26, 0.22);
  --red-glow-sm:  rgba(200, 0, 26, 0.10);

  /* Secondary accent */
  --gold:         #9B7830;
  --gold-dim:     rgba(155, 120, 48, 0.15);

  /* Typography */
  --text:         #E8E8E0;
  --text-2:       #888888;
  --text-3:       #4A4A52;
  --text-inv:     #0D0D0D;

  /* Semantic */
  --success:      #2A8F4B;
  --success-dim:  rgba(42, 143, 75, 0.12);
  --error:        #C8001A;
  --error-dim:    rgba(200, 0, 26, 0.12);

  /* Fonts */
  --f-display:  'Bebas Neue', 'Impact', sans-serif;
  --f-body:     'DM Sans', system-ui, -apple-system, sans-serif;
  --f-mono:     'JetBrains Mono', 'Courier New', monospace;

  /* Scale */
  --container:  1200px;
  --container-sm: 840px;
  --gutter:     clamp(1.25rem, 4vw, 2.5rem);
  --section-gap: clamp(5rem, 10vw, 8rem);

  /* Timing */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-crime: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-fast:     140ms;
  --t-norm:     260ms;
  --t-slow:     480ms;
  --t-dramatic: 900ms;

  /* Z-index stack */
  --z-grain:    9999;
  --z-loader:   1000;
  --z-nav:      100;
  --z-modal:    200;
}

/* ── BASE ─────────────────────────────────── */
body {
  font-family: var(--f-body);
  background-color: var(--base);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Grain overlay — applied to body pseudo */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--sm {
  max-width: var(--container-sm);
}

/* ── REVEAL ANIMATION STATES (GSAP targets) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
}

/* ── LOADER ───────────────────────────────── */
#loader {
    position: fixed;
    inset: 0;
    z-index: var(--z-loader);
    background: #1a1616;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
}

.loader__scan {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 20px 4px var(--red-glow);
  transform: translateY(0);
}

.loader__wordmark {
  font-family: var(--f-display);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.08em;
  color: var(--text);
  opacity: 0;
  line-height: 1;
}

.loader__wordmark span {
  display: block;
  color: var(--red);
}

.loader__wordmark em {
  display: block;
  font-style: normal;
  color: var(--text-2);
  font-size: 0.4em;
  letter-spacing: 0.3em;
}

/* ── NAVIGATION ──────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--t-slow) var(--ease-out),
              border-color var(--t-slow) var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: rgba(13, 13, 13, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav__logo {
  font-family: var(--f-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1;
}

.nav__logo span {
  color: var(--red);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: var(--red);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--t-fast), box-shadow var(--t-fast);
}

.nav__cta:hover {
  background: #e0001e;
  box-shadow: 0 0 24px var(--red-glow);
}

/* ── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--void);
  padding-block: 0px;
}
.hero {
  background-image: url('../images/hero-desktop.webp');
  background-size: cover;
  background-position: center bottom;
}
@media (max-width: 767px) {
  .hero {
    background-image: url('../images/hero-mobile.webp');
  }
}


/* City silhouette - CSS generated */
.hero__scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__scene svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
}

/* Vignette overlay */
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 80% 70% at 50% 30%, transparent 0%, rgba(5, 5, 7, 0.85) 100%);
  pointer-events: none;
}

/* Red vertical accent line */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: var(--gutter);
  width: 1px;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  z-index: 3;
  opacity: 0.6;
}

.hero__content {
  position: relative;
  z-index: 4;
  padding: 0 var(--gutter);
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
  opacity: 0;
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero__eyebrow-text {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-2);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--red-glow); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px transparent; }
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(4.5rem, 14vw, 13rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.hero__title .line {
  display: block;
  overflow: hidden;
  opacity: 0;
}

.hero__title .line--red {
  color: var(--red);
}

.hero__sub {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 300;
  color: var(--text-2);
  max-width: 36rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0;
}

.hero__sub strong {
  color: var(--text);
  font-weight: 500;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
}

/* Ticker at hero bottom */
.hero__ticker {
  position: relative;
  z-index: 4;
  background: rgba(5, 5, 7, 0.8);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(4px);
  overflow: hidden;
  height: 2.5rem;
  display: flex;
  align-items: center;
}

.hero__ticker-label {
  flex-shrink: 0;
  padding: 0 1rem;
  background: var(--red);
  font-family: var(--f-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.hero__ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
}

.hero__ticker-inner {
  display: flex;
  align-items: center;
  height: 100%;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.hero__ticker-item {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--text-2);
  padding: 0 2.5rem;
  letter-spacing: 0.02em;
}

.hero__ticker-item--critical {
  color: var(--gold);
}

.hero__ticker-separator {
  color: var(--text-3);
  padding: 0 0.25rem;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--t-fast) var(--ease-crime);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(255,255,255,0.06);
  transition: opacity var(--t-fast);
}

.btn:hover::after { opacity: 1; }

.btn--primary {
  background: var(--red);
  color: var(--text);
}

.btn--primary:hover {
  background: #e0001e;
  box-shadow: 0 0 32px var(--red-glow), 0 4px 16px rgba(0,0,0,0.5);
}

.btn--primary:active {
  transform: scale(0.98);
}

.btn--ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-2);
}

.btn--ghost:hover {
  border-color: var(--text-3);
  color: var(--text);
}

.btn--lg {
  padding: 1.125rem 2.25rem;
  font-size: 0.9rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn__arrow {
  transition: transform var(--t-fast) var(--ease-out);
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* ── SECTION SHARED ───────────────────────── */
section {
  padding-block: var(--section-gap);
}

.section-label {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--red);
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--text);
}

.section-body {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 40rem;
}

/* ── STATS SECTION ────────────────────────── */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--border);
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats__item {
  padding: 2.5rem var(--gutter);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background var(--t-norm);
}

.stats__item:hover {
  background: var(--surface-2);
}

.stats__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--red);
  transition: height var(--t-slow) var(--ease-out);
}

.stats__item:hover::before {
  height: 100%;
}

.stats__number {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.stats__number--red {
  color: var(--red);
}

.stats__label {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ── CRIME LOOP SECTION ───────────────────── */
.loop {
  position: relative;
  background-image: linear-gradient(90deg, #000000bb, #000000bb), url('../images/map-gritty-borough.webp');
  background-size: cover;
  background-position: center bottom;
}

.loop__header {
  margin-bottom: 4rem;
}

.loop__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .loop__steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.loop__step {
  padding: 2rem 1.75rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background var(--t-norm);
}

@media (min-width: 768px) {
  .loop__step {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }

  .loop__step:last-child {
    border-right: none;
  }
}

.loop__step:hover {
  background: var(--surface);
}

.loop__step-num {
  font-family: var(--f-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.2;
  margin-bottom: 1rem;
  transition: opacity var(--t-norm);
}

.loop__step:hover .loop__step-num {
  opacity: 0.5;
}

.loop__step-title {
  font-family: var(--f-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.625rem;
  line-height: 1.1;
}

.loop__step-desc {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── CRIME FEED SECTION ───────────────────── */
.feed-section {
  position: relative;
  background-image: linear-gradient(90deg, #000000bb, #000000bb), url('../images/feed-texture.webp');
  background-size: cover;
  background-position: center bottom;
}

.feed-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feed-section__live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--success);
}

.feed-section__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.feed-section__disclaimer {
  font-size: 0.75rem;
  color: var(--text-3);
  font-style: italic;
}

.feed-window {
    background: #111113d6;
    border: 1px solid var(--border);
    overflow: hidden;
}

.feed-window__bar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feed-window__bar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.feed-window__bar-dot:nth-child(1) { background: #3a3a3a; }
.feed-window__bar-dot:nth-child(2) { background: #3a3a3a; }
.feed-window__bar-dot:nth-child(3) { background: var(--red); }

.feed-window__url {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin-left: 0.5rem;
}

.feed-list {
  max-height: 440px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-2) transparent;
}

.feed-list::-webkit-scrollbar { width: 4px; }
.feed-list::-webkit-scrollbar-track { background: transparent; }
.feed-list::-webkit-scrollbar-thumb { background: var(--border-2); }

.feed-item {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--t-fast);
  animation: feed-enter 0.4s var(--ease-out) both;
}

@keyframes feed-enter {
  from { opacity: 0; transform: translateX(-8px); background: rgba(200,0,26,0.04); }
  to   { opacity: 1; transform: translateX(0);    background: transparent; }
}

.feed-item:last-child {
  border-bottom: none;
}

.feed-item:hover {
  background: var(--surface-2);
}

.feed-item__time {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  color: var(--text-3);
  white-space: nowrap;
  flex-shrink: 0;
  width: 3.5rem;
}

.feed-item__badge {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.feed-item__badge--robbery   { color: var(--text-2); border: 1px solid var(--border-2); }
.feed-item__badge--muscle    { color: var(--red); border: 1px solid var(--red-deep); }
.feed-item__badge--vengeance { color: #ff6b35; border: 1px solid rgba(255,107,53,0.3); }
.feed-item__badge--critical  { color: var(--gold); border: 1px solid var(--gold-dim); }
.feed-item__badge--crew      { color: var(--success); border: 1px solid rgba(42,143,75,0.3); }

.feed-item__text {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.5;
}

.feed-item__text strong {
  color: var(--text);
  font-weight: 500;
}

.feed-item__text em {
  font-style: normal;
  color: var(--gold);
}

/* ── ALPHA EXCLUSIVITY SECTION ────────────── */
.alpha-section {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-image: linear-gradient(90deg, #000000bb, #000000bb), url('../images/alpha-texture.webp');
  background-size: cover;
  background-position: center bottom;
}

.alpha-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}

.alpha-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 960px) {
  .alpha-section__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* Countdown */
.countdown {
  margin-top: 2.5rem;
}

.countdown__label {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}

.countdown__units {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.countdown__unit {
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  padding: 0.75rem 1rem;
  min-width: 4.5rem;
  text-align: center;
  position: relative;
}

.countdown__unit::after {
  content: attr(data-label);
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}

.countdown__num {
  font-family: var(--f-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--text);
  display: block;
}

.countdown__sep {
  font-family: var(--f-display);
  font-size: 2.5rem;
  color: var(--text-3);
  line-height: 1;
  padding-top: 0.75rem;
}

.countdown__date {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.6;
}

.countdown__date strong {
  color: var(--text);
  font-weight: 500;
}

/* Tier comparison */
.tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tier {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-norm);
}

.tier--operative {
  border-color: var(--red-deep);
}

.tier--operative::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}

.tier__badge {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
  padding: 0.2rem 0.5rem;
}

.tier__badge--free {
  color: var(--text-2);
  border: 1px solid var(--border-2);
}

.tier__badge--nft {
  color: var(--red);
  border: 1px solid var(--red-deep);
}

.tier__name {
  font-family: var(--f-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 1rem;
}

.tier__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tier__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.4;
}

.tier__feature-check {
  flex-shrink: 0;
  color: var(--success);
  font-size: 0.7rem;
  margin-top: 0.15rem;
}

.tier__feature-cross {
  flex-shrink: 0;
  color: var(--text-3);
  font-size: 0.7rem;
  margin-top: 0.15rem;
}

/* ── SIGNUP SECTION ───────────────────────── */
.signup-section {
  background-image: linear-gradient(90deg, #000000bb, #000000bb), url('../images/alpha-table.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.signup-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    transparent 0%,
    rgba(5, 5, 7, 0.6) 70%,
    rgba(5, 5, 7, 0.95) 100%
  );
  z-index: 0;
}

.signup-section > * {
  position: relative;
  z-index: 1;
}
.signup-section__inner {
  max-width: 540px;
}

.signup-section__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.875rem;
  background: var(--red-deep);
  border: 1px solid var(--red-dim);
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.signup-section__note {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 1.25rem;
  font-style: italic;
  line-height: 1.6;
}

/* Form */
.alpha-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-label__req {
  color: var(--red);
}

.form-label__opt {
  color: var(--text-3);
  font-style: italic;
}

.form-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.875rem 1rem;
  font-family: var(--f-mono);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: var(--text-3);
}

.form-input:focus {
  border-color: var(--text-3);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.03);
}

.form-input--error {
  border-color: var(--error) !important;
  box-shadow: 0 0 0 2px var(--error-dim) !important;
}

.form-input--success {
  border-color: var(--success) !important;
}

.form-error {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--error);
  letter-spacing: 0.04em;
  min-height: 1rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--t-fast), transform var(--t-fast);
}

.form-error--show {
  opacity: 1;
  transform: translateY(0);
}

/* Form states */
.form-success {
  display: none;
  padding: 2rem;
  background: var(--success-dim);
  border: 1px solid rgba(42, 143, 75, 0.3);
  text-align: center;
}

.form-success--show {
  display: block;
  animation: feed-enter 0.5s var(--ease-out) both;
}

.form-success__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.form-success__title {
  font-family: var(--f-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-success__body {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── TRUST SECTION ────────────────────────── */
.trust-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 3.5rem;
}

.trust-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-section__title {
  font-family: var(--f-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--text-2);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-item__label {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
}

.trust-item__value {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-item__value a {
  transition: color var(--t-fast);
}

.trust-item__value a:hover {
  color: var(--text);
}

.trust-item__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--success);
}

/* ── FAQ ─────────────────────────────────── */
.faq-section {
  position: relative;
  background-image: linear-gradient(90deg, #000000bb, #000000bb), url('../images/operative-figure.webp');
  background-size: cover;
  background-position: center top;
}
.faq-section__header {
  margin-bottom: 3rem;
}

.faq-list {
  border-top: 1px solid var(--border);
}

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

.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  gap: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  transition: color var(--t-fast);
}

.faq-item__trigger:hover {
  color: var(--text);
}

.faq-item__question {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--t-fast);
}

.faq-item__trigger:hover .faq-item__question,
.faq-item--open .faq-item__question {
  color: var(--text);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t-fast), transform var(--t-norm) var(--ease-out);
}

.faq-item--open .faq-item__icon {
  border-color: var(--red);
  transform: rotate(45deg);
}

.faq-item__icon svg {
  width: 10px;
  height: 10px;
  color: var(--text-2);
  transition: color var(--t-fast);
}

.faq-item--open .faq-item__icon svg {
  color: var(--red);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-dramatic) var(--ease-out);
}

.faq-item__body-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 52rem;
}

.faq-item__body-inner a {
  color: var(--text);
  border-bottom: 1px solid var(--border-2);
  transition: border-color var(--t-fast);
}

.faq-item__body-inner a:hover {
  border-color: var(--text);
}

/* ── FOOTER ───────────────────────────────── */
.footer {
  background: var(--void);
  border-top: 1px solid var(--border);
  padding-block: 3rem;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer__brand {}

.footer__wordmark {
  font-family: var(--f-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.footer__wordmark span { color: var(--red); }

.footer__tagline {
  font-size: 0.75rem;
  color: var(--text-3);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}

.footer__link {
  font-size: 0.8rem;
  color: var(--text-2);
  transition: color var(--t-fast);
  font-weight: 400;
}

.footer__link:hover { color: var(--text); }

.footer__bottom {
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
}

.footer__chain {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer__chain-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--success);
}

/* ── MOBILE STICKY CTA ────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 1rem var(--gutter);
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  background: rgba(5, 5, 7, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  transition: transform var(--t-slow) var(--ease-out);
}

@media (max-width: 767px) {
  .mobile-cta { display: block; }
}

.mobile-cta--hidden {
  transform: translateY(100%);
}

/* ── RESPONSIVE ───────────────────────────── */
@media (min-width: 768px) {
  .hero__content {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }

  .loop__step {
    padding: 2.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .hero__content {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}

/* ── RANK BADGES ─────────────────────────── */
.rank-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.625rem;
}

.rank-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.rank-badge img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0.85);
  transition: filter var(--t-norm), transform var(--t-norm) var(--ease-out);
}

.rank-badge:hover img {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.rank-badge span {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
  transition: color var(--t-fast);
}

.rank-badge:hover span {
  color: var(--text-2);
}



/* ── REDUCED MOTION ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .hero__ticker-inner {
    animation: none;
  }

  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }

  #loader {
    display: none;
  }
}

/* ── SCROLLBAR (desktop) ──────────────────── */
@media (min-width: 768px) {
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--void); }
  ::-webkit-scrollbar-thumb { background: var(--border-2); }
  ::-webkit-scrollbar-thumb:hover { background: var(--text-3); }
}
