:root {
  --bg: #050806;
  --panel: #0b120e;
  --panel-2: #101a14;
  --text: #f3fff7;
  --muted: #9fb3a7;
  --green: #38ff88;
  --green-soft: rgba(56, 255, 136, 0.14);
  --line: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(56, 255, 136, 0.16), transparent 30%),
    radial-gradient(circle at top left, rgba(0, 200, 160, 0.12), transparent 25%),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 100vh;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 20px;
}

.brand img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.nav-link {
  color: var(--muted);
  font-size: 14px;
}

.hero-content {
  max-width: 1280px;
  width: 100%;
  margin: auto 0;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero-text {
  max-width: 760px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: min(440px, 38vw);
  height: auto;
  filter: drop-shadow(0 0 44px rgba(56, 255, 136, 0.26));
}

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

h1 {
  font-size: clamp(56px, 10vw, 128px);
  line-height: 0.92;
  margin: 18px 0;
  letter-spacing: -0.07em;
}

.subtitle {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--line);
}

.button.primary {
  background: var(--green);
  color: #031006;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 28px;
  border-top: 1px solid var(--line);
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  margin: 12px 0 24px;
  letter-spacing: -0.04em;
}

.section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 780px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.card p {
  font-size: 16px;
  margin: 0;
}

.disclaimer {
  opacity: 0.9;
}

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



.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.stat {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.stat strong {
  font-size: 24px;
  color: var(--green);
}




@media (max-width: 800px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 20px;
  }

  .section {
    padding: 70px 20px;
  }
}


.stats {
    grid-template-columns: 1fr;
  }
}

.hero-content {
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 60px 0;
}

.hero-visual {
  justify-content: flex-start;
}

.hero-logo {
  width: min(280px, 78vw);
}