:root {
  --bg: #071418;
  --panel: rgba(9, 29, 34, 0.78);
  --panel-border: rgba(121, 198, 165, 0.24);
  --text: #ebf6f2;
  --muted: #9fc4b8;
  --accent: #7be0b7;
  --accent-strong: #24b47e;
  --gold: #f4bf68;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 15% 20%, #143b42 0, #08171c 35%, #061114 65%, #04090b 100%);
  color: var(--text);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.5;
}

.orb-a {
  width: 340px;
  height: 340px;
  background: #2bc792;
  top: -80px;
  right: -60px;
}

.orb-b {
  width: 380px;
  height: 380px;
  background: #2f8cb5;
  bottom: -120px;
  left: -100px;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(5, 14, 17, 0.72);
  border-bottom: 1px solid rgba(125, 209, 178, 0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  z-index: 20;
}

.brand {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
}

nav {
  display: flex;
  gap: 14px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

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

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px 18px 60px;
}

.hero {
  margin-top: 16px;
  padding: 36px;
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(20, 56, 49, 0.42), rgba(7, 22, 27, 0.82));
}

.kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  margin: 0;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-top: 6px;
}

h2 {
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  margin-bottom: 16px;
}

.hero-copy {
  max-width: 760px;
  margin-top: 14px;
  color: #c6e2da;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  color: #032116;
  box-shadow: 0 8px 28px rgba(37, 193, 133, 0.35);
}

.btn-ghost {
  border: 1px solid rgba(174, 227, 207, 0.44);
  color: var(--text);
}

.panel {
  margin-top: 18px;
  border: 1px solid var(--panel-border);
  border-radius: 22px;
  background: var(--panel);
  padding: 26px;
}

.token-grid,
.api-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px;
}

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

.features article,
.token-grid article,
.api-cards > div {
  border: 1px solid rgba(130, 203, 175, 0.2);
  border-radius: 16px;
  padding: 16px;
  background: rgba(6, 24, 28, 0.62);
}

ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.price {
  margin-top: 14px;
  color: var(--gold);
  font-weight: 700;
}

.mono {
  font-family: "IBM Plex Sans", "Courier New", monospace;
  word-break: break-all;
}

.note {
  color: #b6d8cc;
  font-size: 0.92rem;
}

.cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(16, 58, 53, 0.9), rgba(8, 28, 24, 0.9));
}

footer {
  padding: 24px 16px 36px;
  text-align: center;
  color: #84a99e;
}

.reveal {
  animation: rise 520ms ease forwards;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .token-grid,
  .api-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .hero,
  .panel {
    padding: 20px;
  }
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.6rem;
}

.footer-links a {
  color: #7be0b7;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 18px 48px;
}

.legal-page h1 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin-bottom: 14px;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-page p,
.legal-page li {
  color: #c7ddd5;
}
