:root {
  --bg: #050308;
  --bg-2: #0a1014;
  --card: #12161c;
  --line: #ffd36a33;
  --text: #eef7ff;
  --muted: #9aa3ad;
  --green: #12b886;
  --green-2: #2dd4bf;
  --gold: #ffd36a;
  --cyan: #00e5ff;
  --rose: #ff4d6d;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a { color: inherit; }
code { font-family: ui-monospace, "SF Mono", "Cascadia Code", "Segoe UI Mono", Menlo, monospace; font-size: .92em; color: #cde8d4; }
.nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; gap: 28px;
  padding: 14px 28px;
  background: rgba(5,3,8,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 3px;
  background: linear-gradient(90deg, #ffd36a, #ff4d6d, #00e5ff, #12b886, #ffd36a);
  background-size: 200% 100%;
  animation: led-run 3.2s linear infinite;
}
@keyframes led-run { to { background-position: 200% 0; } }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; text-decoration: none; letter-spacing: .02em; }
.mark {
  width: 28px; height: 28px; border-radius: 50%; object-fit: cover; background: #111;
}
nav { display: flex; gap: 18px; font-size: 14px; color: var(--muted); }
nav a { text-decoration: none; }
nav a:hover { color: #fff; }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 16px; font-size: 14px; }
.nav-cta > a:first-child { color: var(--muted); text-decoration: none; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: #04140e; font-weight: 800;
  padding: 10px 16px; border-radius: 12px; text-decoration: none;
  box-shadow: 0 0 20px #12b88633;
}
.btn:hover { background: #2dd4bf; }
.btn.ghost { background: transparent; color: #eef7ff; border: 1px solid #ffd36a44; box-shadow: none; }
.btn.block { width: 100%; margin-top: 8px; }

.hero { padding: 88px 28px 72px; max-width: 980px; }
.eyebrow { color: var(--gold); letter-spacing: .28em; text-transform: uppercase; font-size: 11px; font-weight: 700; }
.hero h1 { font-size: clamp(40px, 7vw, 72px); line-height: 1.02; margin: 10px 0 18px; letter-spacing: -.03em; text-shadow: 0 0 40px #12b88633; }
.lead { font-size: 20px; color: var(--muted); max-width: 640px; }
.hero-actions { display: flex; gap: 12px; margin: 28px 0 22px; }
.hero-meta { display: flex; gap: 18px; flex-wrap: wrap; color: #7d8a99; font-size: 13px; }
.hero-meta span::before { content: "● "; color: var(--gold); }

section { padding: 64px 28px; max-width: 1120px; margin: 0 auto; }
.band { background: var(--bg-2); max-width: none; padding-left: calc((100% - 1120px) / 2 + 28px); padding-right: calc((100% - 1120px) / 2 + 28px); }
h2 { font-size: 36px; letter-spacing: -.02em; margin: 0 0 10px; }
.section-lead { color: var(--muted); max-width: 640px; margin-bottom: 28px; }
.subhead { margin: 28px 0 14px; color: #c5d0dc; font-size: 18px; }
.grid-2 { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: linear-gradient(180deg, #1c2228cc, #0a0c10e6); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.card:hover { border-color: #ffd36a; box-shadow: 0 0 28px #ffd36a22, 0 0 40px #12b88618; }
.sell-list { padding-left: 18px; }
.sell-list li { margin: 10px 0; }
.fine { color: var(--muted); font-size: 14px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.feat-grid article { background: linear-gradient(180deg, #1c2228cc, #0a0c10e6); border: 1px solid var(--line); border-radius: 16px; padding: 16px; }
.feat-grid article:hover { border-color: #ffd36a; box-shadow: 0 0 24px #ffd36a22; }
.feat-grid h4 { margin: 0 0 6px; }
.feat-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.feat-grid.extra article { border-color: #12b88644; background: #071410; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.price { background: linear-gradient(180deg, #1c2228cc, #0a0c10e6); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.price.featured { border-color: var(--gold); box-shadow: 0 0 0 1px #ffd36a55, 0 0 28px #12b88633; }
.tier { text-transform: uppercase; letter-spacing: .1em; font-size: 12px; color: var(--muted); }
.amount { font-size: 40px; margin: 6px 0; letter-spacing: -.03em; }
.amount span { font-size: 16px; color: var(--muted); }
.who { color: var(--muted); }
.price ul { padding-left: 18px; color: #d5dde6; }
.card ul { margin: 0; padding-left: 18px; color: #d5dde6; line-height: 1.55; }
.card li { margin: 0 0 8px; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); font-size: 14px; }
.steps { color: #d7dee6; }
.dl { list-style: none; padding: 0; }
.dl li { margin: 8px 0; }
.dl a { color: var(--green); font-weight: 700; text-decoration: none; }
.dl a:hover { text-decoration: underline; }
label { display: block; margin: 12px 0 6px; color: var(--muted); font-size: 13px; }
label input { display: block; width: 100%; margin-top: 6px; padding: 10px 12px; border-radius: 8px; border: 1px solid var(--line); background: #0b0d10; color: var(--text); }
pre {
  background: #0b0d10;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  overflow-x: auto;
  color: #cde8d4;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  line-height: 1.45;
}
footer {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 28px; border-top: 1px solid var(--line); color: var(--muted);
}
footer a { margin-right: 14px; text-decoration: none; }
.logo-full {
  display: block; height: 52px; width: auto; max-width: 320px;
  object-fit: contain; object-position: right center;
  background: #fff; border-radius: 8px; padding: 6px 12px; margin-bottom: 10px;
}
.crumbs { font-size: 13px; color: var(--muted); margin: 0 0 18px; }
.crumbs a { color: var(--gold); text-decoration: none; }
.page { padding: 48px 28px 72px; max-width: 920px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px;
  margin: 8px 0; background: var(--card);
}
.faq summary { font-weight: 700; cursor: pointer; }
.faq details p { color: var(--muted); margin: 10px 0 0; }
.seo-note { color: var(--muted); font-size: 14px; max-width: 720px; }
@media (max-width: 900px) {
  nav { display: none; }
  .grid-2, .grid-3, .feat-grid, .price-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
}
