@font-face {
  font-family: 'Jakarta';
  src: url('./fonts/Jakarta-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Jakarta';
  src: url('./fonts/Jakarta-800.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

:root {
  --purple: #7f3aee;
  --lime: #bfff00;
  --panel: #09090b;
  --panel-alt: #141318;
  --white: #ffffff;
  --soft: #ddd6ef;
  --muted: #a89fc2;
  --line: rgba(255, 255, 255, 0.10);
  --font-display: 'Jakarta', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, 'Segoe UI', Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--panel);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
}

h2 {
  font-weight: 800;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin: 14px 0;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  vertical-align: -0.18em;
}

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

.underline-accent {
  position: relative;
  white-space: nowrap;
}

.underline-accent::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -2px;
  height: 8px;
  border-radius: 6px;
  background: var(--lime);
  opacity: 0.9;
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #e9ddff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

.glow--hero-top {
  width: 680px;
  height: 680px;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.30), transparent 60%);
}

.glow--hero-left,
.glow--cta-left {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(142, 34, 195, 0.6), transparent 60%);
}

.glow--hero-left {
  bottom: -280px;
  left: -120px;
}

.glow--hero-right {
  width: 520px;
  height: 520px;
  bottom: -260px;
  right: -120px;
  background: radial-gradient(circle, rgba(41, 41, 163, 0.55), transparent 60%);
}

.glow--cta-left {
  bottom: -220px;
  left: -100px;
}

.section-glow {
  position: absolute;
  width: 760px;
  height: 300px;
  left: 50%;
  transform: translateX(-50%);
  top: -150px;
  background: radial-gradient(circle, rgba(127, 58, 238, 0.45), transparent 65%);
  filter: blur(20px);
  z-index: 0;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(9, 9, 11, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 74px;
}

.logo img {
  height: 30px;
  width: auto;
  display: block;
}

.navlinks {
  display: flex;
  gap: 28px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 500;
  color: #cabce8;
}

.navlinks a:hover {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  cursor: pointer;
  border: 0;
  transition: 0.16s;
  font-family: var(--font-body);
}

.btn--lime {
  background: var(--lime);
  color: #15140a;
}

.btn--lime:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(191, 255, 0, 0.3);
}

.btn--purple {
  background: var(--purple);
  color: var(--white);
}

.btn--purple:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(127, 58, 238, 0.4);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-nav .btn {
  padding: 11px 22px;
  font-size: 14.5px;
}

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(to right bottom, #7f3aee 0%, #4b1d95 50%, #7f3aee 100%);
  padding: 96px 0 90px;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
}

.hero h1 {
  font-weight: 800;
  font-size: 74px;
  line-height: 1.02;
  letter-spacing: -2px;
  margin: 24px 0 22px;
}

.hero__sub {
  font-size: 20px;
  color: #e7defb;
  max-width: 660px;
  margin: 0 auto 34px;
  font-weight: 400;
}

.hero__sub b {
  color: var(--lime);
  font-weight: 600;
}

.button-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.rail-panel {
  margin-top: 30px;
  display: inline-flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 24px;
}

.rail-panel__label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #cbbcec;
  margin-bottom: 8px;
  font-weight: 600;
}

.chip-list {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  padding: 9px 15px;
  border-radius: 11px;
  font-weight: 500;
  color: #f3eeff;
  font-size: 14px;
}

.rail-panel__separator {
  width: 1px;
  align-self: stretch;
  background: var(--line);
}

.section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.section--dark {
  background: var(--panel);
}

.section--alt {
  background: var(--panel-alt);
}

.section__intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section__intro p {
  font-size: 18px;
  color: #e7e1f5;
  margin: 0;
}

.grid {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 2;
}

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

.grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(6px);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(127, 58, 238, 0.18);
  border: 1px solid rgba(127, 58, 238, 0.4);
  color: #c9b3ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card .icon-box {
  margin-bottom: 16px;
}

.icon-box .icon {
  width: 24px;
  height: 24px;
}

.icon-box--lime {
  background: rgba(191, 255, 0, 0.15);
  border-color: rgba(191, 255, 0, 0.4);
  color: var(--lime);
}

.icon-box--solid-lime {
  background: var(--lime);
  color: #15140a;
  border-color: transparent;
}

.card h3 {
  font-size: 19px;
  margin: 0 0 8px;
  font-weight: 700;
  font-family: var(--font-body);
}

.card p {
  margin: 0;
  color: var(--soft);
  font-size: 14.5px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.pane {
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--line);
}

.pane--problem {
  background: rgba(255, 255, 255, 0.03);
}

.pane--solution {
  background: linear-gradient(150deg, rgba(127, 58, 238, 0.22), rgba(75, 29, 149, 0.12));
  border-color: rgba(127, 58, 238, 0.4);
}

.pane h3 {
  font-size: 21px;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-family: var(--font-body);
}

.pane ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pane li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
}

.pane li:last-child {
  border-bottom: 0;
}

.list-icon {
  flex: none;
  margin-top: 1px;
  color: var(--muted);
}

.pane--solution .list-icon {
  color: var(--lime);
}

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

.icon--lime {
  color: var(--lime);
}

.flow {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
}

.flow-row {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 24px 6px;
  border-bottom: 1px solid var(--line);
}

.flow-row__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: var(--purple);
  line-height: 1;
  flex: none;
  width: 54px;
}

.flow-row--highlight .flow-row__number {
  color: var(--lime);
}

.flow-row__content {
  flex: 1;
}

.flow-row h4 {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 700;
  font-family: var(--font-body);
}

.flow-row p {
  margin: 0;
  color: var(--soft);
  font-size: 15px;
  max-width: 680px;
}

.issuer-note {
  margin-top: 28px;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(191, 255, 0, 0.10), rgba(127, 58, 238, 0.12));
  border: 1px solid rgba(191, 255, 0, 0.3);
  border-radius: 18px;
  padding: 26px 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.issuer-note .icon-box {
  flex: none;
  border-radius: 13px;
}

.issuer-note h4 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-body);
}

.issuer-note p {
  margin: 0;
  color: #e7defb;
  font-size: 15px;
}

.metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.metric__value {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
  background: linear-gradient(120deg, var(--white), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metric__label {
  font-size: 15px;
  color: var(--soft);
  margin-top: 10px;
}

.quote {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.quote p {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.8px;
  font-family: var(--font-display);
  margin-top: 20px;
}

.quote__byline {
  color: var(--muted);
  font-size: 15px;
  margin-top: 18px;
  font-weight: 600;
}

.faq-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 28px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  font-family: var(--font-body);
}

.faq-item p {
  margin: 0;
  color: var(--soft);
  font-size: 15px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(to right bottom, #7f3aee, #4b1d95, #7f3aee);
  padding: 64px 40px;
  text-align: center;
}

.cta-box__inner {
  position: relative;
  z-index: 2;
}

.cta-box h2 {
  margin: 14px 0;
}

.cta-box p {
  color: #e7defb;
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 30px;
}

.site-footer {
  background: #070709;
  padding: 48px 0;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

.site-footer .wrap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
}

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

.footer-links a:hover {
  color: var(--white);
}

.fineprint {
  font-size: 11.5px;
  color: #6f6986;
  margin-top: 12px;
  max-width: 780px;
  line-height: 1.5;
}

.site-footer img {
  height: 24px;
  width: auto;
}

@media (max-width: 860px) {
  h2 {
    font-size: 34px;
    letter-spacing: -0.6px;
  }

  .hero {
    padding: 64px 0 60px;
  }

  .hero h1 {
    font-size: 46px;
    letter-spacing: -1px;
  }

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

  .metrics {
    gap: 30px;
  }
}

@media (max-width: 980px) {
  .navlinks {
    display: none;
  }
}

@media (max-width: 560px) {
  .rail-panel__separator {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 36px;
  }
}
