/* OnlyPons — dark neon, matcher logoet: sort / neon-pink / chrome */
:root {
  --bg: #050406;
  --panel: #0e0b10;
  --pink: #ff2d78;
  --pink-soft: #ff6ba4;
  --pink-glow: rgba(255, 45, 120, .55);
  --ink: #f4eff4;
  --muted: #9b8fa0;
  --line: rgba(255, 107, 164, .18);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}
h1, h2, h3, .brand span, .btn, .tier-name, .tier-price {
  font-family: "Arial Rounded MT Bold", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- nav ---------- */
nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 28px;
  padding: 14px 28px;
  background: rgba(5, 4, 6, .8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-size: 22px; }
.brand img { width: 38px; height: 38px; }
.brand b { color: var(--pink); }
nav .links { display: flex; gap: 22px; margin-left: auto; }
nav .links a { color: var(--muted); text-decoration: none; font-size: 15px; transition: color .15s; }
nav .links a:hover { color: var(--pink-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; border-radius: 999px;
  padding: 12px 26px; font-size: 15px; letter-spacing: .3px;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn.big { padding: 17px 34px; font-size: 18px; }
.btn-neon {
  background: var(--pink); color: #fff;
  box-shadow: 0 0 18px var(--pink-glow), 0 0 46px rgba(255, 45, 120, .25);
}
.btn-neon:hover { transform: translateY(-2px); box-shadow: 0 0 26px var(--pink-glow), 0 0 70px rgba(255, 45, 120, .35); }
.btn-ghost {
  color: var(--pink-soft); border: 1.5px solid var(--pink-soft);
  background: transparent;
}
.btn-ghost:hover { background: rgba(255, 45, 120, .1); transform: translateY(-2px); }

/* ---------- hero ---------- */
header {
  position: relative; text-align: center;
  padding: 72px 24px 56px;
}
.hero-glow {
  position: absolute; inset: -20% -10% auto; height: 560px;
  background: radial-gradient(560px 380px at 50% 30%, rgba(255, 45, 120, .22), transparent 70%);
  pointer-events: none;
}
.hero-logo {
  width: 210px; height: 210px;
  filter: drop-shadow(0 0 34px rgba(255, 45, 120, .4));
  position: relative;
}
.neon-tag {
  display: inline-block; margin: 26px auto 18px;
  padding: 9px 22px; border: 2px solid var(--pink); border-radius: 12px;
  color: var(--pink-soft); font-size: 14px; letter-spacing: 3px;
  text-shadow: 0 0 12px var(--pink-glow);
  box-shadow: 0 0 16px rgba(255, 45, 120, .35), inset 0 0 16px rgba(255, 45, 120, .12);
  transform: rotate(-1.5deg);
}
h1 {
  font-size: clamp(42px, 7vw, 84px); line-height: 1.02; letter-spacing: -1px;
  background: linear-gradient(#ffffff, #d9ccd9 55%, #ffffff 62%, #b9a9bb);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative;
}
h1 .rh { -webkit-text-fill-color: var(--pink); text-shadow: 0 0 26px var(--pink-glow); }
.sub { margin-top: 18px; color: var(--muted); font-size: 19px; line-height: 1.5; position: relative; }
.cta-row { margin-top: 32px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

.ca-box {
  margin: 34px auto 0; max-width: 560px;
  display: flex; align-items: center; gap: 14px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 20px; cursor: pointer; position: relative;
  transition: border-color .15s;
}
.ca-box:hover { border-color: var(--pink-soft); }
.ca-label {
  background: var(--pink); color: #fff; font-weight: 700; font-size: 12px;
  border-radius: 8px; padding: 4px 10px; letter-spacing: 1px;
}
.ca-box code { color: var(--ink); font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; text-align: left; }
.copy-hint { color: var(--muted); font-size: 12px; }
.live-pill {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 10px;
  color: var(--muted); font-size: 14px; position: relative;
}
.live-pill .dot { width: 9px; height: 9px; border-radius: 50%; background: #b8ff4f; box-shadow: 0 0 10px #b8ff4f; animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { opacity: .4; } }

/* ---------- sections ---------- */
section { max-width: 1080px; margin: 0 auto; padding: 84px 24px 20px; text-align: center; }
h2 { font-size: clamp(30px, 4.4vw, 46px); letter-spacing: -.5px; }
.neon-small { color: var(--pink); text-shadow: 0 0 22px var(--pink-glow); }
.section-sub { color: var(--muted); margin-top: 12px; font-size: 17px; }

/* ---------- locked content ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin-top: 42px; }
.post {
  background: var(--panel); border: 1px solid var(--line); border-radius: 20px;
  padding: 20px 16px 16px; position: relative; cursor: pointer; overflow: hidden;
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.post:hover { transform: translateY(-4px); border-color: var(--pink-soft); box-shadow: 0 14px 40px rgba(255, 45, 120, .15); }
.post-media { aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden; position: relative; background: #000; }
/* billederne er allerede destruktivt blurret i filen (90px teaser) — let CSS-blur glatter kun opskaleringen */
.post-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: blur(3px) brightness(.82) saturate(1.05); transform: scale(1.06);
  transition: filter .5s ease, transform .5s ease;
}
.post.unlocked .post-media img { filter: none; transform: none; }
.post.unlocked { border-color: var(--pink); box-shadow: 0 0 30px rgba(255, 45, 120, .25); }
.unlock-bar { margin-top: 36px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.unlock-bar .btn { border: 0; cursor: pointer; }
.unlock-bar .btn:disabled { cursor: default; opacity: .8; }
.unlock-status { color: var(--muted); font-size: 14px; min-height: 18px; text-align: center; }
.unlock-status.ok { color: #b8ff4f; text-shadow: 0 0 12px rgba(184, 255, 79, .5); }
.grid-note {
  margin: 6px auto 0; max-width: 620px; color: var(--muted);
  font-size: 13px; line-height: 1.6; text-align: center; opacity: .82;
}
.lock-badge {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px;
  background: rgba(255, 45, 120, .92); border-radius: 50%;
  display: grid; place-items: center; font-size: 16px;
  transition: transform .3s, opacity .3s;
}
.post.unlocked .lock-badge { transform: scale(0); opacity: 0; }
.post figcaption { margin-top: 10px; color: var(--muted); font-size: 14px; }
.post.unlocked figcaption { color: var(--pink-soft); }

/* ---------- tiers ---------- */
.tier-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; margin-top: 42px; align-items: stretch; }
.tier {
  background: var(--panel); border: 1px solid var(--line); border-radius: 22px;
  padding: 34px 26px 30px; display: flex; flex-direction: column; gap: 6px; position: relative;
}
.tier.featured { border: 2px solid var(--pink); box-shadow: 0 0 40px rgba(255, 45, 120, .2); transform: scale(1.03); }
.tier-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: #fff; font-size: 11px; letter-spacing: 2px;
  border-radius: 999px; padding: 5px 14px; font-weight: 700;
}
.tier-name { font-size: 24px; }
.tier-price { color: var(--pink-soft); font-size: 17px; margin-bottom: 12px; }
.tier ul { list-style: none; text-align: left; margin: 6px 0 22px; flex: 1; }
.tier li { color: var(--muted); font-size: 15px; padding: 7px 0 7px 26px; position: relative; }
.tier li::before { content: "💗"; position: absolute; left: 0; font-size: 13px; }
.tier .btn { width: 100%; text-align: center; }

/* ---------- how ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; margin-top: 42px; }
.step {
  background: var(--panel); border: 1px solid var(--line); border-radius: 20px;
  padding: 30px 24px; text-align: left;
}
.step .n {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  background: var(--pink); color: #fff; border-radius: 50%;
  font-family: "Arial Rounded MT Bold"; font-size: 19px;
  box-shadow: 0 0 16px var(--pink-glow); margin-bottom: 14px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.5; }

/* ---------- footer ---------- */
footer {
  margin-top: 90px; padding: 44px 24px 54px; text-align: center;
  border-top: 1px solid var(--line);
}
footer img { width: 54px; height: 54px; margin-bottom: 16px; }
footer p { color: var(--muted); font-size: 13px; max-width: 560px; margin: 0 auto; line-height: 1.6; }
footer b { color: var(--pink-soft); }

/* ---------- token gate ---------- */
body.gate-locked { overflow: hidden; }
.gate-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(5, 4, 6, .82);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  display: grid; place-items: center; padding: 24px;
  transition: opacity .8s;
}
.gate-overlay.gate-open { opacity: 0; pointer-events: none; }
.gate-card {
  max-width: 560px; width: 100%; text-align: center;
  background: #0e0b10; border: 1px solid var(--line); border-radius: 28px;
  padding: 44px 36px 38px;
  box-shadow: 0 0 80px rgba(255, 45, 120, .25);
}
.gate-card img { display: block; margin: 0 auto; width: 110px; height: 110px; filter: drop-shadow(0 0 24px rgba(255, 45, 120, .45)); }
.gate-neon {
  display: inline-block; margin: 22px auto 16px;
  padding: 8px 20px; border: 2px solid var(--pink); border-radius: 12px;
  color: var(--pink-soft); font-size: 13px; letter-spacing: 3px;
  font-family: "Arial Rounded MT Bold";
  text-shadow: 0 0 12px var(--pink-glow);
  box-shadow: 0 0 16px rgba(255, 45, 120, .35), inset 0 0 16px rgba(255, 45, 120, .12);
  transform: rotate(-1.5deg);
}
.gate-card h2 { font-size: 30px; line-height: 1.15; }
.gate-card h2 span { color: var(--pink); text-shadow: 0 0 22px var(--pink-glow); }
.gate-sub { color: var(--muted); margin-top: 12px; font-size: 15px; line-height: 1.55; }
.gate-btns { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.gate-btns .btn { width: 100%; text-align: center; border: 0; cursor: pointer; }
.gate-status { margin-top: 16px; color: var(--muted); font-size: 14px; min-height: 20px; }
.gate-status.ok { color: #b8ff4f; text-shadow: 0 0 12px rgba(184, 255, 79, .5); }

@media (max-width: 640px) {
  nav .links { display: none; }
  .hero-logo { width: 150px; height: 150px; }
}
