@import url("https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&display=swap");

:root {
  --bg: #050707;
  --panel: #0c0f0e;
  --panel-2: #111512;
  --text: #f1efe5;
  --muted: #9ea39c;
  --gold: #d8a42e;
  --gold-light: #f1c860;
  --acid: #76ff35;
  --border: rgba(216, 164, 46, .24);
  --shadow: 0 24px 80px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 34%, rgba(73, 255, 38, .055), transparent 29rem),
    radial-gradient(circle at 50% 0%, rgba(216,164,46,.045), transparent 33rem),
    var(--bg);
  font-family: "UnifrakturCook", "Old English Text MT", "Lucida Blackletter", "Engravers Old English", cursive;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; letter-spacing: .05em; }
.brand-mark {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 11px;
  color: var(--gold-light);
  box-shadow: inset 0 0 22px rgba(216,164,46,.12);
}

.nav-links { display: flex; gap: 24px; color: var(--muted); font-size: 14px; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--gold-light); }

.hero { text-align: center; padding: 76px 0 94px; position: relative; }
.eyebrow, .section-kicker { color: var(--gold-light); font-size: 12px; font-weight: 800; letter-spacing: .23em; }
.hero h1 { margin: 12px 0 14px; font-size: clamp(64px, 10vw, 142px); line-height: .82; letter-spacing: -.065em; font-weight: 950; }
.hero h1 span { color: var(--gold-light); text-shadow: 0 0 44px rgba(216,164,46,.12); }
.hero-copy { max-width: 660px; margin: 0 auto; color: var(--muted); font-size: clamp(16px, 2vw, 20px); line-height: 1.65; }

.hero-art-wrap { position: relative; width: min(610px, 88vw); margin: 34px auto 26px; isolation: isolate; }
.halo { position: absolute; inset: 13% 13%; background: radial-gradient(circle, rgba(118,255,53,.15), rgba(118,255,53,0) 66%); filter: blur(26px); z-index: -1; }
.hero-art { width: 100%; height: auto; display: block; border-radius: 28px; image-rendering: pixelated; filter: drop-shadow(0 34px 45px rgba(0,0,0,.55)); }

.socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 8px; }
.btn {
  min-width: 132px;
  padding: 10px 17px 10px 11px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.012));
  color: #deddd5;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: .2s ease;
}
.btn-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.07);
  transition: .2s ease;
}
.btn-icon img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}
.btn-icon.x-icon img { filter: invert(1); }
.btn:hover { transform: translateY(-2px); border-color: rgba(216,164,46,.7); color: var(--gold-light); box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.btn:hover .btn-icon {
  border-color: rgba(216,164,46,.38);
  background: rgba(216,164,46,.08);
  transform: scale(1.04);
}

.ca-card {
  margin: 22px auto 0;
  width: min(760px, 100%);
  min-height: 60px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 9px 10px 9px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(10,13,12,.86);
  box-shadow: var(--shadow);
}
.ca-label { font-size: 11px; font-weight: 900; letter-spacing: .18em; color: var(--acid); }
.ca-card code { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-align: left; color: #c9ccc5; font-size: 13px; }
.copy-btn {
  border: 1px solid rgba(118,255,53,.26);
  background: rgba(118,255,53,.08);
  color: var(--acid);
  border-radius: 11px;
  padding: 11px 14px;
  cursor: pointer;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .12em;
}
.copy-btn:hover { background: rgba(118,255,53,.14); }

.section { padding: 92px 0; border-top: 1px solid rgba(255,255,255,.065); }
.section h2 { margin: 10px 0 0; font-size: clamp(34px, 5vw, 66px); letter-spacing: -.045em; line-height: 1; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: end; }
.split > p, .disclaimer p { margin: 0; color: var(--muted); line-height: 1.8; font-size: 16px; }

.faq-list { margin-top: 34px; display: grid; gap: 10px; }
details { border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: rgba(255,255,255,.018); padding: 0 18px; }
summary { list-style: none; cursor: pointer; padding: 20px 0; font-weight: 780; }
summary::-webkit-details-marker { display:none; }
summary::after { content: "+"; float: right; color: var(--gold-light); font-size: 20px; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { margin: -3px 0 20px; color: var(--muted); line-height: 1.7; max-width: 850px; }
details code { color: var(--acid); }

.disclaimer { border-top-color: rgba(216,164,46,.16); }
.disclaimer p { max-width: 900px; margin-top: 26px; }

.footer { padding: 30px 0 42px; display:flex; flex-wrap:wrap; gap:10px; justify-content:center; color:#696f69; font-size:11px; letter-spacing:.12em; font-weight:800; }
.footer-dot { color: var(--gold); }

.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); opacity: 0; pointer-events:none; padding: 11px 15px; border:1px solid rgba(118,255,53,.28); background:#0a0e0b; color:var(--acid); border-radius:999px; font-size:12px; font-weight:800; transition:.22s ease; z-index:30; }
.toast.show { opacity:1; transform:translate(-50%,0); }

.ambient { position:fixed; width:420px; height:420px; border-radius:50%; filter:blur(130px); opacity:.05; pointer-events:none; z-index:-2; }
.ambient-a { background:var(--acid); right:-180px; top:270px; }
.ambient-b { background:var(--gold); left:-180px; top:120px; }

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1120px); }
  .site-header { height: 72px; }
  .nav-links { display:none; }
  .hero { padding-top: 54px; }
  .hero h1 { font-size: clamp(58px, 22vw, 92px); }
  .hero-art-wrap { width: min(520px, 102vw); margin-left:50%; transform:translateX(-50%); }
  .btn { flex: 1 1 calc(50% - 10px); min-width: 0; }
  .ca-card { grid-template-columns:auto 1fr; }
  .copy-btn { grid-column:1 / -1; width:100%; }
  .split { grid-template-columns: 1fr; gap: 26px; }
  .section { padding: 72px 0; }
}
