:root {
  --bg: #1a1c20;
  --fg: #eef1ea;
  --soft: #cfe3ad;
  --line: rgba(255, 255, 255, 0.24);
  --panel: rgba(16, 20, 24, 0.78);
  --btn: #8dc63f;
  --btn-text: #121417;
  --accent: rgba(141, 198, 63, 0.42);
}
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: "Avenir Next", Avenir, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--fg);
  background: var(--bg);
  letter-spacing: 0.01em;
}
.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 600px at 80% -10%, rgba(141, 198, 63, 0.10), transparent 60%),
    radial-gradient(800px 500px at 10% 110%, rgba(80, 120, 200, 0.10), transparent 55%),
    linear-gradient(180deg, #15171b 0%, #1a1c20 100%);
}
.wrap {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.panel {
  width: min(540px, 95vw);
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  background: var(--panel);
  border-radius: 12px;
  box-shadow: 0 10px 38px rgba(0, 0, 0, 0.46);
  padding: 1.4rem 1.3rem;
  backdrop-filter: blur(3px);
}
.top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.title {
  margin: 0;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.sub {
  margin: 0.45rem 0 1rem;
  text-align: center;
  color: var(--soft);
  font-size: 0.96rem;
  line-height: 1.45;
}
.small {
  margin: 0.6rem 0 0.9rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #dce8c8;
  text-align: left;
}
.features {
  list-style: none;
  margin: 0.4rem 0 1.1rem;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #dce8c8;
}
.features li { display: flex; gap: 0.55rem; align-items: flex-start; }
.bullet { color: var(--btn); font-weight: 700; flex: 0 0 auto; }
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.4rem;
}
.btn {
  display: block;
  text-align: center;
  text-decoration: none;
  border: 0;
  border-radius: 7px;
  padding: 0.7rem 0.6rem;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}
.btn.primary { background: var(--btn); color: var(--btn-text); }
.btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--fg);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.brand {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.84);
}
.legal {
  margin-top: 0.34rem;
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.86;
}
.legal a { color: #d8e6bf; text-decoration: none; }
.legal a:hover { text-decoration: underline; }
.icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #8dc63f;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}
@media (max-width: 560px) {
  .panel { width: min(440px, 96vw); padding: 1.1rem; border-radius: 9px; }
  .title { font-size: 1.1rem; }
  .row { grid-template-columns: 1fr; }
}
