:root {
  --bg: #06090f;
  --bg-2: #0a0f18;
  --surface: #10151f;
  --surface-2: #131925;
  --line: rgba(91, 255, 188, 0.14);
  --line-strong: rgba(91, 255, 188, 0.28);
  --text: #f2f6fb;
  --muted: #9aa4b5;
  --soft: #6f788a;
  --green: #25f29a;
  --cyan: #14c8ff;
  --violet: #a778ff;
  --shadow: rgba(0, 0, 0, 0.38);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 14% 14%, rgba(37, 242, 154, 0.08), transparent 30rem),
    radial-gradient(circle at 88% 72%, rgba(20, 200, 255, 0.07), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 72px;
  padding: 0 clamp(16px, 3vw, 34px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 9, 15, 0.78);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 9, 15, 0.93);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.brand {
  justify-self: start;
  color: var(--green);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 40px);
  color: #a4acba;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav a,
.footer a {
  transition: color 180ms ease;
}

.nav a:hover,
.footer a:hover {
  color: var(--green);
}

.site-header > .button {
  justify-self: end;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  padding: 0 31px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
}

.button path,
.icon path,
.mina-row a path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(100deg, var(--green), var(--cyan));
  color: #051016;
  box-shadow: 0 18px 45px rgba(20, 200, 255, 0.18);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(9, 13, 21, 0.7);
  color: #f4f7fb;
}

.button-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(17, 23, 34, 0.9);
}

.button-small {
  min-height: 46px;
  padding: 0 24px;
  font-size: 0.9rem;
}

.section-full {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.section {
  padding: clamp(80px, 11vw, 140px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.hero {
  overflow: hidden;
  padding-top: 72px;
  isolation: isolate;
}

.network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.76;
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 9, 15, 0.78) 0%, rgba(6, 9, 15, 0.62) 42%, rgba(6, 9, 15, 0.94) 100%),
    radial-gradient(circle at 50% 42%, rgba(37, 242, 154, 0.14), transparent 26rem);
  z-index: -1;
}

.hero-glow {
  position: absolute;
  width: min(680px, 70vw);
  aspect-ratio: 1;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(20, 200, 255, 0.11), rgba(37, 242, 154, 0.04) 42%, transparent 70%);
  filter: blur(12px);
  z-index: -1;
}

.hero-inner {
  text-align: center;
  padding: 58px 0 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  margin: 0 0 44px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(37, 242, 154, 0.08);
  color: #58f6b4;
  font-size: 0.88rem;
  font-weight: 800;
}

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

h1 {
  max-width: 980px;
  margin: 0 auto 22px;
  font-size: clamp(4.1rem, 8.6vw, 7.7rem);
  line-height: 0.95;
  font-weight: 850;
  overflow-wrap: anywhere;
}

h1 span,
h2 span,
.earnings-panel h3 span {
  background: linear-gradient(100deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 870px;
  margin: 0 auto;
  color: #a9b2c1;
  font-size: clamp(1.12rem, 2.2vw, 1.48rem);
  line-height: 1.45;
  font-weight: 520;
}

.hero-subcopy {
  max-width: 760px;
  margin: 28px auto 0;
  color: #7d8797;
  font-size: 1.03rem;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 84px auto 0;
  padding: 0;
}

.metrics div {
  min-width: 0;
}

.metrics dt {
  color: #58f6e9;
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 850;
  line-height: 1;
}

.metrics dd {
  margin: 8px 0 0;
  color: #7f8897;
  font-size: 0.92rem;
  font-weight: 650;
}

.centered {
  text-align: center;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 70px;
}

.section-heading .eyebrow {
  margin-bottom: 22px;
}

.section-heading h2,
.security-copy h2,
.cta h2 {
  margin-bottom: 18px;
  color: #f5f7fb;
  font-size: clamp(2.55rem, 5vw, 4.9rem);
  line-height: 1.02;
  font-weight: 840;
  overflow-wrap: anywhere;
}

.section-heading p:not(.eyebrow):not(.kicker),
.security-copy p,
.partner-copy,
.cta p,
.mina-card p {
  color: #9ca6b6;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card,
.mini-card,
.earnings-panel,
.mina-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    rgba(15, 20, 31, 0.82);
  box-shadow: 0 24px 60px var(--shadow);
}

.feature-card {
  min-height: 280px;
  padding: 42px 36px;
  border-radius: 8px;
}

.icon {
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  color: var(--green);
}

.feature-card h3,
.mini-card h3 {
  margin-bottom: 14px;
  color: #f2f5fa;
  font-size: 1.2rem;
  line-height: 1.28;
}

.feature-card p,
.mini-card p {
  margin: 0;
  color: #98a2b3;
  font-size: 1rem;
}

.earnings-panel {
  margin-top: 72px;
  padding: clamp(28px, 4vw, 54px);
  border-radius: 8px;
}

.earnings-panel h3 {
  margin: 0 0 26px;
  text-align: center;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 19px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  text-align: left;
  color: #c9d0db;
  font-weight: 750;
}

th {
  color: #8b94a5;
  font-size: 0.96rem;
}

td:nth-child(2),
th:nth-child(2) {
  color: #4df5ad;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(37, 242, 154, 0.12);
  color: #4df5ad;
  font-size: 0.83rem;
}

.note {
  margin: 26px 0 0;
  text-align: center;
  color: #778191;
  font-size: 0.84rem;
}

.section-band {
  background: rgba(4, 7, 13, 0.32);
}

.compact {
  margin-bottom: 70px;
}

.kicker {
  margin: 0 0 13px;
  color: #7a8393;
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 28px;
  margin-bottom: 62px;
}

.partner-row span {
  color: rgba(179, 188, 202, 0.42);
  font-size: clamp(1.14rem, 2vw, 1.55rem);
  font-weight: 850;
  text-align: center;
}

.partner-copy {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(44px, 7vw, 94px);
  align-items: center;
}

.security-copy .eyebrow {
  margin-bottom: 24px;
}

.shield {
  width: min(190px, 42vw);
  margin-bottom: 64px;
  filter: drop-shadow(0 0 34px rgba(37, 242, 154, 0.24));
}

.shield svg {
  width: 100%;
  height: auto;
}

.shield-shell {
  fill: rgba(25, 120, 52, 0.48);
  stroke: #25f29a;
  stroke-width: 5;
}

.shield-core {
  fill: url(#shieldGlow);
  opacity: 0.42;
}

.shield-lines path {
  fill: none;
  stroke: #b8ff77;
  stroke-width: 2.2;
  stroke-linecap: round;
  opacity: 0.68;
}

.shield circle {
  fill: #07110d;
  stroke: #b8ff77;
  stroke-width: 2.5;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.mini-card {
  min-height: 196px;
  padding: 30px 28px;
  border-radius: 8px;
}

.mini-card .icon {
  width: 30px;
  height: 30px;
  margin-bottom: 22px;
}

.mini-card h3 {
  font-size: 1rem;
}

.mini-card p {
  font-size: 0.9rem;
}

.mina-section {
  padding-top: 60px;
}

.mina-card {
  max-width: 950px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
  border-color: rgba(167, 120, 255, 0.16);
  border-radius: 8px;
}

.mina-card .kicker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mina-card .kicker span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--violet);
  box-shadow: 0 0 18px rgba(167, 120, 255, 0.5);
}

.mina-card h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.mina-card p {
  max-width: 760px;
}

.mina-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-top: 34px;
}

.mina-row dl {
  display: flex;
  gap: 44px;
  margin: 0;
}

.mina-row dt {
  color: var(--violet);
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 850;
}

.mina-row dd {
  margin: 6px 0 0;
  color: #8e97a7;
  font-size: 0.9rem;
  font-weight: 700;
}

.mina-row a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #aab3c2;
  font-weight: 750;
}

.mina-row a:hover {
  color: var(--green);
}

.mina-row a svg {
  width: 18px;
  height: 18px;
}

.cta {
  min-height: 520px;
  padding: 130px 0 110px;
  background:
    linear-gradient(180deg, rgba(6, 9, 15, 0.96), rgba(6, 9, 15, 0.78)),
    radial-gradient(ellipse at 50% 100%, rgba(37, 242, 154, 0.22), transparent 46%);
}

.cta p {
  max-width: 650px;
  margin: 0 auto;
}

.footer {
  padding: 38px 0 34px;
  border-top: 1px solid rgba(37, 242, 154, 0.12);
  background: rgba(6, 9, 15, 0.98);
}

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

.footer-inner > div {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer span,
.footer a,
.copyright {
  color: #7f8897;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer nav {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.copyright {
  margin: 30px 0 0;
  text-align: center;
  color: #4d5664;
  font-size: 0.82rem;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 11, 18, 0.98);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  body.menu-open .nav {
    transform: translateY(0);
  }

  .nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(12, 17, 25, 0.92);
    color: var(--text);
  }

  .menu-button span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .section-full {
    min-height: auto;
  }

  .hero {
    min-height: 860px;
  }

  .feature-grid,
  .security-layout {
    grid-template-columns: 1fr;
  }

  .security-copy {
    max-width: 680px;
  }

  .shield {
    margin-bottom: 42px;
  }

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

  .partner-row span:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 64px;
    padding-inline: 14px;
  }

  .site-header > .button {
    min-width: 112px;
    padding-inline: 16px;
  }

  .nav {
    top: 64px;
  }

  .hero {
    padding-top: 64px;
    min-height: 780px;
  }

  .hero-inner {
    padding-top: 44px;
  }

  .eyebrow {
    margin-bottom: 32px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.15rem);
  }

  .hero-actions {
    width: 100%;
    margin-top: 40px;
  }

  .button {
    width: min(100%, 340px);
    min-height: 58px;
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 18px;
    margin-top: 58px;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .feature-card {
    min-height: 0;
    padding: 32px 26px;
  }

  .security-grid,
  .partner-row {
    grid-template-columns: 1fr;
  }

  .partner-row span:last-child {
    grid-column: auto;
  }

  .mina-row,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mina-row dl {
    flex-wrap: wrap;
    gap: 24px 38px;
  }

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

@media (max-width: 420px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: 10px;
  }

  .site-header > .button {
    min-width: 98px;
    padding-inline: 13px;
    font-size: 0.82rem;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .container {
    width: min(100% - 24px, 1160px);
  }

  .hero-lede,
  .hero-subcopy {
    max-width: 100%;
  }

  .metrics {
    gap: 26px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .network-canvas {
    opacity: 0.42;
  }
}
