/* ─────────────────────────────────────
   INTERNETVS.COM
   Kinetic Typography · Editorial
   ───────────────────────────────────── */

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

html, body {
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

/* ── STAGE ── */
.stage {
  position: fixed;
  inset: 0;
  background: #000;
  overflow: hidden;
}

/* Scan line */
.stage::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  animation: scan 5s linear infinite;
  pointer-events: none;
  z-index: 20;
}

@keyframes scan {
  0%   { transform: translateY(0);     opacity: 0; }
  4%   { opacity: 1; }
  96%  { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

/* Film grain */
.stage::after {
  content: '';
  position: fixed;
  inset: -100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.045;
  pointer-events: none;
  z-index: 15;
  animation: grainShift 0.16s steps(1) infinite;
}

@keyframes grainShift {
  0%   { transform: translate(0, 0);    }
  25%  { transform: translate(-6%, -10%); }
  50%  { transform: translate(10%, 4%);  }
  75%  { transform: translate(-8%, 9%);  }
  100% { transform: translate(6%, -6%);  }
}

/* ── WORD ELEMENTS ── */
.w {
  position: absolute;
  color: #f0f0f0;
  font-family: 'Teko', sans-serif;
  text-transform: uppercase;
  line-height: 0.78;
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity;

  --tx: 0px;
  --ty: 0px;
  --rot: 0deg;

  animation: snap 0.05s ease-out both;
}

@keyframes snap {
  from {
    transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(1.06);
    opacity: 0;
  }
  to {
    transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(1);
    opacity: 1;
  }
}

.w.is-outline {
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.025em, 4px) #f0f0f0;
}

.w.is-invert {
  color: #000;
  background: #f0f0f0;
  padding: 0.01em 0.06em;
  line-height: 0.9;
}

/* ── TAGLINE ── */
.tagline {
  position: fixed;
  top: 60vh;
  left: 0;
  right: 0;
  text-align: center;
  color: #f0f0f0;
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  pointer-events: none;
  user-select: none;
  z-index: 25;
  white-space: nowrap;
}

/* ── CENTERED WORD (stage area) ── */
.w.is-centered {
  left: 0;
  right: 0;
  text-align: center;
}

.tagline-swap {
  opacity: 0;
  animation: taglineSwapIn 0.25s ease-out forwards;
}

.dev-data-badge {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 70;
  border: 1px solid rgba(240,240,240,0.16);
  background: rgba(0,0,0,0.88);
  color: rgba(240,240,240,0.82);
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.7em 0.9em;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.dev-data-badge.is-fake {
  border-color: rgba(255,107,107,0.5);
  color: #ffb4b4;
}

.dev-data-badge.is-real {
  border-color: rgba(240,240,240,0.22);
  color: rgba(240,240,240,0.72);
}

.dev-data-badge:hover {
  border-color: rgba(240,240,240,0.5);
  color: #f0f0f0;
}

.legal-links {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-links a {
  color: rgba(240,240,240,0.5);
  text-decoration: none;
  transition: color 0.15s ease;
}

.legal-links a:hover {
  color: #f0f0f0;
}


@keyframes taglineSwapIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 0.9; transform: translateY(0); }
}

/* ── FLASH OVERLAY ── */
.flash {
  position: fixed;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 30;
  transition: opacity 0.12s ease-out;
}

/* ── ACCESSIBILITY ── */
@media (prefers-reduced-motion: reduce) {
  .w, .stage::before, .stage::after {
    animation: none !important;
    transition: none !important;
  }
  .flash   { display: none; }
  .tagline { animation: none !important; opacity: 0.6; }
}

@media (max-width: 640px) {
  .dev-data-badge {
    top: 10px;
    right: 10px;
    font-size: 8px;
    padding: 0.6em 0.75em;
  }

  .legal-links {
    right: 12px;
    bottom: 12px;
    gap: 10px;
    font-size: 8px;
  }

  .manifesto-link {
    font-size: 11px;
    padding: 4px 0;
  }
}

/* ── BOARD SECTION ── */
#board-section {
  position: fixed;
  top: max(3vh, 16px);
  right: max(3vw, 16px);
  width: min(300px, calc(100vw - 32px));
  z-index: 25;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
#board-section.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.board-inner      { padding: 0; }
.board-expand-btn { display: none; }
.board-extras     { display: none; }

.board-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 400;
  color: rgba(240, 240, 240, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.7em;
}

/* ── CROWD ── */
.crowd-raised-label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(11px, 0.9vw, 13px);
  color: rgba(240,240,240,0.3);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: 0.1em;
}
.crowd-raised {
  font-family: 'Teko', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: #f0f0f0;
  line-height: 1;
  margin-bottom: 0.2em;
  letter-spacing: -0.02em;
}

.crowd-bar-wrap {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 1.4em;
  overflow: hidden;
}

.crowd-bar {
  height: 100%;
  background: #f0f0f0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 100%;
}

.crowd-meta {
  font-family: 'Inter', sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  color: rgba(240, 240, 240, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.4em;
}

.crowd-note {
  font-family: 'Inter', sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  color: rgba(240, 240, 240, 0.45);
  letter-spacing: 0.06em;
  font-style: italic;
  margin-bottom: 1em;
}

/* ── BOARD CTA ── */
.board-cta {
  display: block;
  width: 100%;
  font-family: 'Teko', sans-serif;
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #000;
  background: #f0f0f0;
  border: none;
  padding: 0.4em 0;
  cursor: pointer;
  transition: background 0.1s;
  margin-top: 0.4em;
}
.board-cta:hover { background: #fff; color: #000; }

/* ── BOARD CHAMPION (compact row) ── */
.board-top {
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.board-champion-label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(11px, 0.9vw, 13px);
  color: rgba(240,240,240,0.25);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: 0.35em;
}
.board-champion-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.board-champion-name {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  color: rgba(240,240,240,0.75);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.board-champion-amount {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  color: rgba(240,240,240,0.3);
  white-space: nowrap;
  flex-shrink: 0;
}
.board-beat-btn,
.board-join-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(240,240,240,0.4);
  font-family: 'Inter', sans-serif;
  font-size: clamp(11px, 0.85vw, 13px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4em 0.7em;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.board-beat-btn {
  color: rgba(240,240,240,0.65);
  border-color: rgba(255,255,255,0.3);
}
.board-beat-btn:hover,
.board-join-btn:hover {
  color: #000;
  background: #f0f0f0;
  border-color: #f0f0f0;
}

/* ── LEADERBOARD LINK ── */
.board-lb-link {
  display: block;
  margin-top: 1.2em;
  padding-top: 1em;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  color: rgba(240,240,240,0.35);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: color 0.15s;
}
.board-lb-link:hover { color: rgba(240,240,240,0.75); }
.manifesto-link {
  position: fixed;
  top: max(3vh, 16px);
  left: max(3vw, 20px);
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.45);
  text-decoration: none;
  z-index: 25;
  transition: color 0.15s, opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}
.manifesto-link.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.manifesto-link:hover {
  color: #f0f0f0;
}

/* ── OFFER MODAL ── */
.offer-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: max(6vh, 32px) max(6vw, 24px);
}
.offer-modal.is-open { display: flex; }

.offer-modal-inner {
  position: relative;
  width: min(520px, 100%);
}

.offer-close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  color: rgba(240, 240, 240, 0.25);
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.1s;
}
.offer-close:hover { color: #f0f0f0; }

/* Ocultar X cuando el success state está visible */
.offer-modal-inner:has(.offer-success.is-visible) .offer-close {
  opacity: 0;
  pointer-events: none;
}

.offer-label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(240, 240, 240, 0.4);
  margin-bottom: 1.4em;
}

.offer-amount-row {
  display: flex;
  align-items: baseline;
  gap: 0.2em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 0.3em;
  margin-bottom: 1.4em;
}

.offer-currency {
  font-family: 'Teko', sans-serif;
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 700;
  color: rgba(240, 240, 240, 0.55);
  line-height: 1;
}

.offer-amount-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Teko', sans-serif;
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 700;
  color: #f0f0f0;
  line-height: 1;
  appearance: textfield;
  -moz-appearance: textfield;
}
.offer-amount-input::-webkit-outer-spin-button,
.offer-amount-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.offer-amount-input::placeholder { color: rgba(240, 240, 240, 0.1); }

.offer-name-row {
  margin-bottom: 1.6em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.offer-name-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.3vw, 17px);
  color: rgba(240, 240, 240, 0.5);
  padding: 0.6em 0;
  letter-spacing: 0.02em;
}
.offer-name-input::placeholder { color: rgba(240, 240, 240, 0.18); }
.offer-name-input:focus         { color: #f0f0f0; }

.offer-fine {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  color: rgba(240, 240, 240, 0.18);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.8em;
}

.offer-legal {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  color: rgba(240, 240, 240, 0.42);
  line-height: 1.6;
  margin: -0.6em 0 1.4em;
}

.offer-legal a {
  color: rgba(240, 240, 240, 0.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 240, 240, 0.22);
}

.offer-legal a:hover {
  border-bottom-color: rgba(240, 240, 240, 0.72);
}

.offer-submit {
  display: block;
  width: 100%;
  font-family: 'Teko', sans-serif;
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  background: #f0f0f0;
  border: none;
  padding: 0.65em 0;
  cursor: pointer;
  transition: background 0.1s;
}
.offer-submit:hover { background: #fff; }

body.modal-open { overflow: hidden; }

/* ── OFFER PAY STEP ── */
.offer-pay {
  display: none;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.offer-pay.is-visible { display: flex; }

.offer-pay-summary {
  display: flex;
  flex-direction: column;
  gap: 0.45em;
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(240,240,240,0.35);
  margin-bottom: 1.8em;
}

.offer-pay-summary-main {
  font-size: clamp(14px, 1.1vw, 16px);
  color: rgba(240,240,240,0.82);
  letter-spacing: 0.18em;
}

.offer-pay-summary-sub {
  font-size: clamp(13px, 1vw, 15px);
  color: rgba(240,240,240,0.34);
  letter-spacing: 0.18em;
}

#stripe-element {
  margin-bottom: 1.4em;
  min-height: 40px;
}

.offer-pay-loading,
.offer-pay-demo {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  color: rgba(240,240,240,0.3);
  letter-spacing: 0.1em;
  padding: 1em 0;
}

.offer-pay-error {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  color: #ff6b6b;
  letter-spacing: 0.05em;
  margin-bottom: 0.6em;
  min-height: 1.2em;
}

.offer-pay-back {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1vw, 14px);
  color: rgba(240,240,240,0.25);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.6em 0;
  text-align: left;
  transition: color 0.15s;
}
.offer-pay-back:hover { color: rgba(240,240,240,0.6); }

/* ── DEMO PAYMENT FORM ── */
.demo-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  letter-spacing: 0.25em;
  color: rgba(240,240,240,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.25em 0.6em;
  margin-bottom: 1.4em;
}
.demo-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 1.6em;
}
.demo-tab {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(240,240,240,0.35);
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.06em;
  padding: 0.45em 0.9em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.15s, color 0.15s;
}
.demo-tab--active {
  border-color: rgba(255,255,255,0.45);
  color: #f0f0f0;
}
.demo-tab-icon {
  width: 16px;
  height: 11px;
  flex-shrink: 0;
}
.demo-field {
  margin-bottom: 1.2em;
}
.demo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.demo-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,240,240,0.3);
  margin-bottom: 6px;
}
.demo-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: #f0f0f0;
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.4vw, 17px);
  letter-spacing: 0.04em;
  padding: 0.5em 0;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.demo-input::placeholder { color: rgba(240,240,240,0.18); }
.demo-input:focus { border-bottom-color: rgba(255,255,255,0.5); }

/* ── OFFER SUCCESS STATE ── */
.offer-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  width: 100%;
  padding: 1.5em 0;
}
.offer-success.is-visible { display: flex; }
.offer-success.is-visible > * {
  opacity: 0;
  transform: translateY(8px);
  animation: offerSuccessIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.offer-success.is-visible > *:nth-child(1) { animation-delay: 0.02s; }
.offer-success.is-visible > *:nth-child(2) { animation-delay: 0.07s; }
.offer-success.is-visible > *:nth-child(3) { animation-delay: 0.12s; }
.offer-success.is-visible > *:nth-child(4) { animation-delay: 0.18s; }
.offer-success.is-visible > *:nth-child(5) { animation-delay: 0.24s; }
.offer-success.is-visible > *:nth-child(6) { animation-delay: 0.3s; }
#offer-form.is-hidden      { display: none; }

@keyframes offerSuccessIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes offerSuccessPulse {
  0% {
    transform: translateY(0) scale(1);
    text-shadow: 0 0 0 rgba(240,240,240,0);
  }
  35% {
    transform: translateY(0) scale(1.035);
    text-shadow: 0 0 24px rgba(240,240,240,0.12);
  }
  100% {
    transform: translateY(0) scale(1);
    text-shadow: 0 0 0 rgba(240,240,240,0);
  }
}

.offer-success-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(240,240,240,0.3);
  margin-bottom: 1em;
}

.offer-success-num {
  font-family: 'Teko', sans-serif;
  font-size: clamp(56px, 11vw, 110px);
  font-weight: 700;
  color: #f0f0f0;
  line-height: 0.9;
  margin-bottom: 0.3em;
}

.offer-success.is-visible .offer-success-num {
  animation:
    offerSuccessIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    offerSuccessPulse 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.offer-success-label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(10px, 1.1vw, 13px);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(240,240,240,0.4);
  margin-bottom: 0.7em;
}

.offer-success-copy {
  max-width: 30ch;
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.45;
  color: rgba(240,240,240,0.76);
  margin-bottom: 1.5em;
}

.offer-success-stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 1em;
}

.offer-success-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45em;
  padding: 0.95em 0.9em 0.85em;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
}

.offer-success-stat-kicker {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(240,240,240,0.32);
}

.offer-success-stat-value {
  font-family: 'Teko', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 0.95;
  color: #f0f0f0;
}

.offer-success-meta {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(240,240,240,0.22);
  margin-bottom: 2.1em;
}

.offer-success-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.18);
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,240,240,0.72);
  cursor: pointer;
  padding: 0.95em 1.2em 0.85em;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.offer-success-close:hover {
  color: #000;
  border-color: #f0f0f0;
  background: #f0f0f0;
}

@media (max-width: 640px) {
  .offer-success-copy {
    max-width: 24ch;
  }

  .offer-success-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-success.is-visible > * {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .offer-success.is-visible .offer-success-num {
    animation: none;
  }
}

/* ── TICKER ── */
.crowd-ticker {
  position: fixed;
  bottom: max(3vh, 16px);
  left: max(3vw, 20px);
  z-index: 24;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.crowd-ticker.is-visible { opacity: 1; }

.ticker-row {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  color: rgba(240,240,240,0.32);
  letter-spacing: 0.08em;
  display: flex;
  gap: 0.5em;
  align-items: baseline;
  animation: tickerIn 0.3s ease-out both;
}
.ticker-row--real .ticker-amount { color: #f0f0f0; }
.ticker-row--real .ticker-name   { color: rgba(240,240,240,0.5); }

.ticker-dot    { opacity: 0.4; }
.ticker-amount { color: rgba(240,240,240,0.55); }
.ticker-ago    { opacity: 0.4; font-size: 0.85em; }

@keyframes tickerIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* fade-out before removal */
.ticker-row--out {
  animation: tickerOut 0.4s ease-in forwards;
}
@keyframes tickerOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-4px); }
}

@media (max-width: 600px) {
  .crowd-ticker { display: none; }
  .legal-links  { display: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {

  .tagline {
    top: 68vh;
  }

  .w.is-centered {
    right: 0;
  }

  #board-section {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0;
  }

  .board-extras {
    display: block;
    position: fixed;
    bottom: calc(52px + env(safe-area-inset-bottom, 0px));
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    z-index: 26;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .board-top { display: none; }
  .board-extras.is-expanded { max-height: 420px; }

  .board-extras-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 8px max(5vw, 16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  .board-extras-item:last-child { border-bottom: none; }

  .board-extras-stats {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    color: rgba(240, 240, 240, 0.2);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 10px max(5vw, 16px) 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .board-extras-rank {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: rgba(240, 240, 240, 0.2);
    flex-shrink: 0;
    width: 1.4em;
  }

  .board-extras-name {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(240, 240, 240, 0.55);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .board-extras-amount {
    font-family: 'Teko', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: rgba(240, 240, 240, 0.85);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .board-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px max(5vw, 16px);
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    width: 100%;
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .board-title {
    width: 100%;
    font-size: 8px;
    letter-spacing: 0.15em;
    margin-bottom: 2px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .crowd-raised {
    font-size: clamp(18px, 5vw, 26px);
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .crowd-bar-wrap {
    flex: 1;
    margin-bottom: 0;
    align-self: center;
  }

  .crowd-meta { display: none; }
  .crowd-note { display: none; }

  .board-expand-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(240, 240, 240, 0.35);
    font-size: 10px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s, transform 0.25s ease;
    line-height: 1;
  }

  #board-section.is-expanded .board-expand-btn {
    color: rgba(240, 240, 240, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
    transform: rotate(180deg);
  }

  .board-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #000;
    background: #f0f0f0;
    border: none;
    padding: 0 16px;
    height: 38px;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.1s;
  }
  .board-cta:hover,
  .board-cta:active { background: #fff; color: #000; }
}
