/* ============================================================
   payforactuallynothing.com — one stylesheet for every page
   ============================================================ */

@import url('fonts/fonts.css');

/* ─────────────────────────────────────── TOKENS ─────────── */
:root {
  --c-bg:          #080809;
  --c-surface:     #101012;
  --c-surface2:    #18181b;
  --c-border:      rgba(255,255,255,.08);
  --c-border2:     rgba(255,255,255,.14);
  --c-text:        #efefef;
  --c-muted:       #888;
  --c-muted2:      #bbb;
  --c-orange:      #ff7a00;
  --c-orange-dim:  rgba(255,122,0,.12);
  --c-orange-mid:  rgba(255,122,0,.30);
  --c-orange-text: #ffb97a;
  --c-good:        #2d7a45;

  --f-display: 'Syne', system-ui, sans-serif;
  --f-body:    'DM Sans', system-ui, sans-serif;
  --f-mono:    'DM Mono', ui-monospace, monospace;

  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 20px 60px rgba(0,0,0,.5);
  --shadow-sm: 0 8px 32px rgba(0,0,0,.3);
  --t:         .18s ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text);
  background-color: var(--c-bg);
  background-image:
    radial-gradient(ellipse 800px 500px at -5%  0%, rgba(255,122,0,.10) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 110% 20%, rgba(255,122,0,.06) 0%, transparent 55%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
}

a { color: var(--c-orange); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* One visible focus style for everything, so keyboard users are
   never guessing where they are. */
:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ──────────────────────────────── ACCESSIBILITY ─────────── */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 100;
  padding: 10px 16px;
  font-size: 13px;
  background: var(--c-surface2);
  border: 1px solid var(--c-orange);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  transition: top var(--t);
}
.skip-link:focus { top: 12px; text-decoration: none; }

/* ─────────────────────────────────────── LAYOUT ─────────── */
.page { max-width: 960px; margin: 0 auto; padding: 32px 20px 64px; }
.page--narrow { max-width: 720px; }

/* ─────────────────────────────────────── HEADER ─────────── */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  text-align: center;
}
@media (min-width: 560px) {
  .header { flex-direction: row; justify-content: space-between; text-align: left; }
}

.brand { display: inline-block; line-height: 0; color: inherit; }
.brand:hover { text-decoration: none; }

/* Signature: the tagline ring around the mark turns once a minute.
   Slow enough to read, fast enough to notice. */
.brand-orbit { animation: orbit 60s linear infinite; transform-origin: 60px 60px; }
@keyframes orbit { to { transform: rotate(360deg); } }

.brand-compact {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: inherit;
}
.brand-compact:hover { text-decoration: none; }
.brand-dot {
  width: 9px; height: 9px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-orange);
  box-shadow: 0 0 0 4px var(--c-orange-dim), 0 0 12px var(--c-orange-mid);
}
.brand-tld { color: var(--c-orange); }
.brand-sub {
  display: block;
  margin-top: 3px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-muted);
}

/* ────────────────────────────── LANGUAGE SWITCH ─────────── */
.lang-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--c-surface);
  border: 1px solid var(--c-border2);
  border-radius: 999px;
}
.lang-btn {
  padding: 6px 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--c-muted);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.lang-btn:hover { color: var(--c-text); }
.lang-btn.is-active {
  color: var(--c-text);
  background: var(--c-orange-dim);
  box-shadow: inset 0 0 0 1px var(--c-orange-mid);
}

/* ─────────────────────────────────────── HERO ───────────── */
.hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  padding: 36px 32px;
  background: var(--c-surface);
  border: 1px solid var(--c-border2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,122,0,.30) 0%, transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}
.hero > * { position: relative; }

.eyebrow {
  margin-bottom: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-orange);
}
.hero-title {
  margin-bottom: 14px;
  font-family: var(--f-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.hero-sub { max-width: 56ch; font-size: 15px; line-height: 1.7; color: var(--c-muted); }

.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; list-style: none; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-muted2);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--c-border2);
  border-radius: 999px;
}
.pill-mark { color: var(--c-orange); }

/* ─────────────────────────────────────── GRID ───────────── */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.grid > .span-all  { grid-column: 1 / -1; }
.grid > .span-two  { grid-column: span 2; }
@media (max-width: 760px) {
  .grid { grid-template-columns: 1fr; }
  .grid > .span-two { grid-column: 1 / -1; }
}

/* ─────────────────────────────────────── CARDS ──────────── */
.card {
  padding: 22px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.card-label {
  margin-bottom: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.card-title {
  margin-bottom: 10px;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
}
.card-text { font-size: 14px; line-height: 1.65; color: var(--c-muted); }
.card-text + .card-text { margin-top: 8px; }

/* ─────────────────────────── PAYMENT METHODS ────────────── */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 760px) { .pay-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pay-grid { grid-template-columns: 1fr; } }

.pay {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--t);
}
.pay:hover { border-color: var(--c-border2); }
.pay-name { font-family: var(--f-display); font-size: 15px; font-weight: 700; }
.pay-note { font-size: 11px; line-height: 1.5; color: var(--c-muted); }

/* ─────────────────────────────────────── BUTTONS ────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 14px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text);
  background: var(--c-orange-dim);
  border: 1px solid rgba(255,122,0,.4);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  transition: background var(--t), border-color var(--t);
}
.btn:hover {
  background: rgba(255,122,0,.20);
  border-color: rgba(255,122,0,.60);
  text-decoration: none;
}
.btn[disabled] { opacity: .4; cursor: not-allowed; }
.btn--ghost { background: rgba(255,255,255,.05); border-color: var(--c-border2); }
.btn--ghost:hover { background: rgba(255,255,255,.10); border-color: var(--c-border2); }
.btn--small { padding: 7px 12px; font-size: 12px; }
.btn--block { width: 100%; }
.btn--good { background: var(--c-good); border-color: var(--c-good); color: #fff; }
.btn--good:hover { background: #246337; border-color: #246337; }

/* ─────────────────────── DISCLOSURES (<details>) ────────── */
/* Native <details> means these open without JavaScript and are
   keyboard-operable for free. */
.disclose > summary {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--c-orange);
  cursor: pointer;
  list-style: none;
}
.disclose > summary::-webkit-details-marker { display: none; }
.disclose > summary:hover { text-decoration: underline; }
.disclose > summary::before {
  content: '▶';
  font-size: 9px;
  transition: transform var(--t);
}
.disclose[open] > summary::before { transform: rotate(90deg); }

.disclose-body {
  margin-top: 10px;
  padding: 12px;
  background: rgba(0,0,0,.30);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
}

.kv {
  font-family: var(--f-mono);
  font-size: 12px;
  line-height: 1.85;
  color: var(--c-muted2);
}
.kv dt { display: inline; color: var(--c-text); font-weight: 500; }
.kv dt::after { content: ':'; }
.kv dd { display: inline; margin-left: .4em; }
.kv dd::after { content: ''; display: block; }

/* ─────────────────────────────────────── CRYPTO ─────────── */
.qr {
  width: 148px; height: 148px;
  margin: 4px auto 10px;
  border-radius: 6px;
  background: #f2f2f2;
}
.addr {
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
  color: var(--c-muted2);
}
.status {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  min-height: 1.2em;
  text-align: center;
  color: var(--c-orange-text);
}

/* ─────────────────────────────────────── PAYPAL ─────────── */
.pp-loaded { display: none; }
[data-pp-state='loading'] .pp-loaded,
[data-pp-state='ready']   .pp-loaded { display: block; }
[data-pp-state='loading'] .pp-consent,
[data-pp-state='ready']   .pp-consent { display: none; }
.pp-mount { min-height: 0; }
.pp-mount:not(:empty) { margin-bottom: 10px; }

/* ─────────────────────────────────────── FAQ ────────────── */
.faq { list-style: none; }
.faq-item { padding: 12px 0; border-bottom: 1px solid var(--c-border); }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-item:first-child { padding-top: 0; }
.faq-q { margin-bottom: 4px; font-size: 14px; font-weight: 500; }
.faq-a { font-size: 13px; color: var(--c-muted); }
.faq-more { margin-top: 12px; font-size: 13px; }

/* ────────────────────────────── LEGAL PAGE BITS ─────────── */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; list-style: none; }
.chip {
  display: inline-block;
  padding: 5px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-muted);
  background: var(--c-surface);
  border: 1px solid var(--c-border2);
  border-radius: 999px;
  transition: color var(--t), border-color var(--t);
}
.chip:hover { color: var(--c-text); border-color: rgba(255,122,0,.4); text-decoration: none; }

.page-title {
  margin-bottom: 32px;
  font-family: var(--f-display);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.section { margin-bottom: 48px; scroll-margin-top: 24px; }
.section-label {
  margin-bottom: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-orange);
}
.section h2 {
  margin-bottom: 10px;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
}
.section h2 + h2 { margin-top: 26px; }
.section p { margin-bottom: 10px; font-size: 14px; line-height: 1.7; color: var(--c-muted); }
.section p:last-child { margin-bottom: 0; }

.data-box {
  margin: 12px 0;
  padding: 16px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: var(--f-mono);
  font-size: 12px;
  line-height: 1.9;
  color: var(--c-muted2);
}
.data-box strong { color: var(--c-text); font-weight: 500; }
.data-box p { font-family: var(--f-body); font-size: 13px; line-height: 1.65; margin: 0; }
.data-box h3 {
  margin: 14px 0 2px;
  font-family: var(--f-display);
  font-size: 13px;
  color: var(--c-text);
}
.data-box h3:first-child { margin-top: 0; }

.divider { margin: 40px 0; border: none; border-top: 1px solid var(--c-border); }

/* ─────────────────────────────────────── FOOTER ─────────── */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
  font-size: 12px;
  color: var(--c-muted);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; list-style: none; }
.footer-links a { font-size: 12px; color: var(--c-muted); }
.footer-links a:hover { color: var(--c-text); }

/* ────────────────────────────── STORAGE PANEL ───────────── */
#storage-panel {
  width: min(560px, calc(100vw - 32px));
  padding: 24px;
  color: var(--c-text);
  background: #141416;
  border: 1px solid var(--c-border2);
  border-radius: 16px;
  box-shadow: 0 12px 60px rgba(0,0,0,.70);
}
#storage-panel::backdrop { background: rgba(0,0,0,.60); }
#storage-panel[open] { animation: rise .24s ease; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } }

.panel-title { margin-bottom: 8px; font-family: var(--f-display); font-size: 18px; font-weight: 700; }
.panel-text { font-size: 13px; line-height: 1.65; color: var(--c-muted); }
.panel-item { padding: 14px 0; border-bottom: 1px solid var(--c-border); }
.panel-item:last-of-type { border-bottom: none; }
.panel-item h3 { margin-bottom: 3px; font-size: 13px; font-weight: 500; }
.panel-item p { font-size: 12px; line-height: 1.5; color: var(--c-muted); }
.panel-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 8px; }
.panel-done { font-size: 12px; color: var(--c-orange-text); }
.panel-foot { margin-top: 14px; font-size: 11px; color: var(--c-muted); }

/* ─────────────────────────────────── ENTRANCE ───────────── */
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } }
.hero        { animation: fade-up .4s ease both; }
.grid > *:nth-child(1) { animation: fade-up .4s .08s ease both; }
.grid > *:nth-child(2) { animation: fade-up .4s .14s ease both; }
.grid > *:nth-child(3) { animation: fade-up .4s .20s ease both; }

/* ─────────────────────────── REDUCED MOTION ─────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ═══════════════════════════════════ THE COLLECTION ══════ */
.progress {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
}
.progress-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.progress-value {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: var(--c-orange);
}
.progress-note { font-size: 12px; color: var(--c-muted); }

.badges-count { margin-bottom: 12px; font-size: 13px; color: var(--c-muted); }
.badges-count strong { font-family: var(--f-mono); color: var(--c-text); font-weight: 500; }

.badge-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
}
@media (max-width: 760px) { .badge-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .badge-list { grid-template-columns: 1fr; } }

.badge {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 12px 14px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  opacity: .45;
}
.badge--got { opacity: 1; border-color: rgba(255,122,0,.32); }

.badge-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--c-muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--c-border2);
  border-radius: 50%;
}
.badge--got .badge-icon {
  color: var(--c-orange);
  background: var(--c-orange-dim);
  border-color: rgba(255,122,0,.45);
}

.badge-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.badge-name { font-size: 13px; font-weight: 500; }
.badge-desc { font-size: 11.5px; line-height: 1.45; color: var(--c-muted); }

.badges-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--c-border);
}
.badges-actions .pay-note { flex: 1 1 12ch; }

/* ═════════════════════════════════════ CERTIFICATE ══════ */
.field {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
  margin-top: 16px;
}
.field-label {
  display: block;
  margin-bottom: 5px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.field-group { flex: 1 1 220px; }
.field-input {
  width: 100%;
  padding: 9px 12px;
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--c-text);
  background: var(--c-surface2);
  border: 1px solid var(--c-border2);
  border-radius: var(--radius-sm);
}
.field-input::placeholder { color: #666; }
.field-input:focus-visible { border-color: var(--c-orange); }

/* payment terms line */
.pay-terms {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--c-border);
  font-size: 12px;
  line-height: 1.6;
  color: var(--c-muted);
}

/* the entrance stagger now covers all five cards */
.grid > *:nth-child(4) { animation: fade-up .4s .26s ease both; }
.grid > *:nth-child(5) { animation: fade-up .4s .32s ease both; }

/* ══════════════════════════════════════════ RANK ═════════ */
.rank { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.rank-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.rank strong {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-orange-text);
}

/* ═══════════════════════════════ ANTI-LEADERBOARD ════════ */
.disclose--spaced { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--c-border); }

.lb { width: 100%; border-collapse: collapse; font-family: var(--f-mono); font-size: 12px; }
.lb th {
  padding: 0 10px 8px 0;
  text-align: left;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
  border-bottom: 1px solid var(--c-border);
}
.lb td { padding: 10px 10px 10px 0; color: var(--c-text); }
.lb td:first-child { color: var(--c-orange); width: 3em; }
.lb td:last-child, .lb th:last-child { text-align: right; padding-right: 0; }
.lb + .pay-note { margin-top: 4px; }

/* ═════════════════════════════════════ 404 PAGE ══════════ */
.nf { max-width: 60ch; }
.nf-code {
  font-family: var(--f-display);
  font-size: clamp(72px, 18vw, 148px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,122,0,.55);
  margin-bottom: 8px;
}
.nf p { margin-bottom: 12px; font-size: 15px; line-height: 1.7; color: var(--c-muted); }
.nf-back { display: inline-block; margin-top: 12px; font-size: 14px; }

/* hidden badges: present but unnamed until found */
.badge--secret .badge-icon { color: var(--c-orange); border-style: dashed; }
.badge--secret .badge-name { color: var(--c-muted2); font-style: italic; }

/* only one language version has been checked by a human */
.legal-note {
  margin-bottom: 32px;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--c-muted);
  background: var(--c-surface2);
  border-left: 2px solid var(--c-orange-mid);
  border-radius: var(--radius-sm);
}

/* the switcher wraps once there are more than a handful of languages */
.lang-switch { flex-wrap: wrap; justify-content: center; max-width: 100%; }
