@import url('https://fonts.googleapis.com/css2?family=Caesar+Dressing&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: 'Caesar Dressing', serif;
  letter-spacing: .05em;
  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: 400; letter-spacing: .08em; }
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 14px;
  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: 15px; }
.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: 13px;
  letter-spacing: .28em;
}
.hero h1 {
  margin: 12px 0 14px;
  font-size: clamp(64px, 10vw, 142px);
  line-height: .88;
  letter-spacing: .02em;
  font-weight: 400;
}
.hero h1 span { color: var(--gold-light); text-shadow: 0 0 44px rgba(216,164,46,.12); }
.hero-copy {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.85;
  letter-spacing: .08em;
}

.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; filter: drop-shadow(0 34px 45px rgba(0,0,0,.55)); }

.socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 8px; }
.btn {
  min-width: 148px;
  padding: 13px 18px;
  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: 14px;
  letter-spacing: .09em;
  transition: .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.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-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
}
.btn-icon svg { width: 100%; height: 100%; display: block; }

.ca-card {
  margin: 22px auto 0;
  width: min(760px, 100%);
  min-height: 64px;
  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: 12px;
  letter-spacing: .22em;
  color: var(--acid);
}
.ca-card code {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  color: #c9ccc5;
  font-size: 13px;
  letter-spacing: .08em;
}
.copy-btn {
  border: 1px solid rgba(118,255,53,.26);
  background: rgba(118,255,53,.08);
  color: var(--acid);
  border-radius: 11px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: .14em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.copy-btn:hover { background: rgba(118,255,53,.14); }
.copy-icon { width: 16px; height: 16px; display:inline-flex; align-items:center; justify-content:center; }
.copy-icon svg { width: 100%; height: 100%; }

.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: .03em;
  line-height: 1.05;
  font-weight: 400;
}
.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.95;
  font-size: 15px;
  letter-spacing: .07em;
}

.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-size: 15px; }
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.9;
  max-width: 850px;
  font-size: 14px;
  letter-spacing: .06em;
}
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:.16em;
}
.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;
  letter-spacing: .1em;
  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; }
}
