@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(/fonts/inter-400.woff2) format('woff2')}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(/fonts/inter-500.woff2) format('woff2')}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url(/fonts/inter-600.woff2) format('woff2')}
@font-face{font-family:'Manrope';font-style:normal;font-weight:500;font-display:swap;src:url(/fonts/manrope-500.woff2) format('woff2')}
@font-face{font-family:'Manrope';font-style:normal;font-weight:600;font-display:swap;src:url(/fonts/manrope-600.woff2) format('woff2')}
@font-face{font-family:'Manrope';font-style:normal;font-weight:700;font-display:swap;src:url(/fonts/manrope-700.woff2) format('woff2')}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
h1, h2, h3, h4, h5, h6, p, figure, ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

/* ── Variables ── */
:root {
  --black:        #000;
  --white:        #fff;
  --gray-dark:    #666;
  --gray-mid:     #969696;
  --gray-light:   #ccc;
  --gray-lighter: #e3e3e3;
  --gray-faint:   #f0f0f0;
  --solana-green: #14F195;
}
@media (prefers-color-scheme: dark) {
  :root {
    --black:        #f0f0f0;
    --white:        #0d0d0d;
    --gray-dark:    #a0a0a0;
    --gray-mid:     #707070;
    --gray-light:   #444;
    --gray-lighter: #2a2a2a;
    --gray-faint:   #1a1a1a;
  }
}

/* ── Body ── */
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-lighter);
}
.site-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav__logo {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  color: var(--black);
  text-decoration: none;
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.site-nav__link {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--black);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.15s ease;
}
.site-nav__link:hover { opacity: 1; }
.site-nav__link.active { opacity: 1; }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Section shared ── */
.section-label {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 14px;
}
.section-title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 48px;
}
section + section { border-top: 1px solid var(--gray-lighter); }

/* ── Hero (shared base) ── */
.hero { padding: 120px 0 100px; }
.hero h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 52px;
  line-height: 1.2;
  color: var(--black);
}
.hero__label {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-mid);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  background: var(--black);
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.15s ease;
}
.btn-primary:hover { opacity: 0.8; }

/* ── CTA box ── */
.cta-box {
  background: var(--gray-faint);
  border-radius: 16px;
  padding: 60px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-box h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 10px;
}
.cta-box p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-dark);
  max-width: 480px;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--gray-lighter);
  padding: 36px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 13px;
  color: var(--gray-mid);
}
.footer__verifiable {
  font-size: 13px;
  color: var(--gray-dark);
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__brand {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--gray-mid);
}
.footer__links a {
  font-size: 13px;
  color: var(--gray-mid);
  text-decoration: none;
  transition: color 0.12s;
}
.footer__links a:hover { color: var(--black); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cta-box { flex-direction: column; align-items: flex-start; padding: 40px 36px; }
}
@media (max-width: 768px) {
  .container         { padding: 0 20px; }
  .site-nav__inner   { padding: 0 20px; }
  .site-nav__links   { gap: 24px; }
  .site-nav__link    { font-size: 16px; }
  .hero              { padding: 72px 0 60px; }
  .hero h1           { font-size: 32px; }
  .hero__sub         { font-size: 16px; }
  .section-title     { font-size: 28px; }
  .cta-box           { padding: 32px 24px; }
  .footer__inner     { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .site-nav__inner {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 12px 20px;
    gap: 8px;
  }
  .site-nav__links { gap: 20px; }
  .site-nav__link  { font-size: 15px; }
}

.footer__links a[href*="privacy"] { color: var(--gray-mid); }
