:root {
  --bg: #07100c;
  --bg-soft: #0e1b14;
  --card: rgba(255, 255, 255, 0.07);
  --card-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7fff9;
  --muted: #b7c7bd;
  --green: #55e879;
  --green-dark: #149648;
  --gold: #f5c95d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(85, 232, 121, 0.2), transparent 32%),
    radial-gradient(circle at 88% 16%, rgba(245, 201, 93, 0.14), transparent 28%),
    linear-gradient(135deg, var(--bg), var(--bg-soft));
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 12, 0.82);
}

.topbar .wrap {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #08100c;
  background: linear-gradient(135deg, var(--gold), #fff5bd 45%, var(--green));
  box-shadow: 0 12px 28px rgba(85, 232, 121, 0.18);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--text);
  background: var(--card);
}

.hero {
  padding: clamp(42px, 8vw, 92px) 0 40px;
}

.hero-panel {
  min-height: 490px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(7, 16, 12, 0.98), rgba(7, 16, 12, 0.72) 52%, rgba(7, 16, 12, 0.3)),
    radial-gradient(circle at 78% 34%, rgba(85, 232, 121, 0.32), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 92px),
    linear-gradient(145deg, #12271b, #020604);
  box-shadow: var(--shadow);
}

.hero-content {
  max-width: 780px;
  padding: clamp(24px, 5vw, 56px);
}

.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 12px;
  font-size: clamp(43px, 8vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.lead {
  margin-top: 18px;
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: var(--card);
  text-decoration: none;
  font-weight: 950;
}

.button.primary {
  border-color: transparent;
  color: #07100c;
  background: linear-gradient(135deg, var(--green), #e3ffdb);
}

section {
  padding: 34px 0;
}

.section-head {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-head p,
.card p,
li,
.legal p {
  color: var(--muted);
  line-height: 1.58;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.legal {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  padding: 20px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  color: #082411;
  background: #abffbb;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tag.gold {
  background: #ffe093;
  color: #3f2b04;
}

.list {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal {
  display: grid;
  gap: 16px;
  max-width: 880px;
}

.legal h1 {
  font-size: clamp(34px, 6vw, 62px);
}

.legal h2 {
  margin-top: 12px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.muted {
  color: var(--muted);
}

.notice {
  border: 1px solid rgba(85, 232, 121, 0.28);
  border-radius: 18px;
  padding: 16px;
  color: #d7ffdf;
  background: rgba(85, 232, 121, 0.1);
}

.footer {
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 860px) {
  .topbar .wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero-panel {
    min-height: 430px;
  }

  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }
}
