:root {
  --bg: #f4f7f2;
  --surface: #ffffff;
  --ink: #07140d;
  --text: #112117;
  --muted: #657166;
  --deep: #062414;
  --deep-2: #0b341d;
  --green: #00c805;
  --green-bright: #baff13;
  --line: rgba(9, 36, 20, 0.12);
  --line-strong: rgba(0, 200, 5, 0.32);
  --shadow: 0 26px 70px rgba(7, 20, 13, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 78% 7%, rgba(0, 200, 5, 0.18), transparent 30%),
    linear-gradient(180deg, #fbfff8 0%, var(--bg) 46%, #edf4ed 100%);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(7, 20, 13, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 20, 13, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 68%);
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 255, 248, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 200, 5, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  min-height: 38px;
  padding: 10px 13px;
  border: 1px solid transparent;
  color: #334136;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--line);
  color: var(--ink);
  outline: none;
  background: rgba(0, 200, 5, 0.08);
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: min(660px, calc(100vh - 75px));
  padding: 54px 0 42px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(54px, 9vw, 112px);
  line-height: 0.9;
  font-weight: 900;
  color: var(--ink);
}

.lede {
  max-width: 540px;
  margin-bottom: 30px;
  color: #445247;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -12px 0 28px;
}

.hero-badges span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #2f3c32;
  background: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  border-color: var(--green);
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 18px 48px rgba(0, 200, 5, 0.22);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
}

.hero-visual {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(0, 200, 5, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(11, 52, 29, 0.98), rgba(6, 36, 20, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-topline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  min-width: 0;
}

.visual-topline strong {
  color: var(--green-bright);
  white-space: nowrap;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.banner-art {
  aspect-ratio: 3 / 1;
  object-fit: cover;
  border: 1px solid rgba(186, 255, 19, 0.2);
  border-radius: 18px;
}

.hero-visual .coin-art {
  display: none;
}

.visual-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.visual-metrics div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.visual-metrics span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-metrics strong {
  color: #ffffff;
  font-size: 16px;
}

.quote-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.quote-list div,
.quote-list button {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: inherit;
  text-align: left;
  background: rgba(255, 255, 255, 0.045);
}

.quote-list button {
  cursor: pointer;
}

.quote-list button:hover,
.quote-list button:focus-visible {
  border-color: rgba(186, 255, 19, 0.28);
  outline: none;
  background: rgba(255, 255, 255, 0.075);
}

.quote-list span {
  color: var(--green-bright);
  font-size: 12px;
  font-weight: 900;
}

.quote-list strong {
  min-width: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.quote-copy strong {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.quote-list em {
  color: #7cff7f;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.ca-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 26px 0 18px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(0, 200, 5, 0.12), rgba(255, 255, 255, 0.94) 48%),
    #ffffff;
  box-shadow: 0 22px 60px rgba(7, 20, 13, 0.1);
}

.ca-banner div {
  min-width: 140px;
}

.ca-banner span {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ca-banner strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.ca-banner code {
  display: block;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(244, 247, 242, 0.9);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.copy-button {
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--green);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0, 200, 5, 0.2);
}

.copy-button .copy-status {
  display: inline;
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  text-transform: none;
}

.copy-button:hover,
.copy-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.market-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.dashboard-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: #445247;
  font-size: 18px;
  line-height: 1.6;
}

.dashboard-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.panel-header,
.ticker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-header span,
.ticker-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.panel-header strong {
  color: var(--ink);
  font-size: 26px;
}

.ticker-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.ticker-row strong {
  color: var(--ink);
}

.ticker-row.positive strong {
  color: var(--green);
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 82px;
  margin-top: 20px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0, 200, 5, 0.1), rgba(0, 200, 5, 0.02));
}

.mini-chart span {
  flex: 1;
  min-width: 0;
  border-radius: 999px 999px 0 0;
  background: var(--green);
}

.mini-chart span:nth-child(1) {
  height: 30%;
}

.mini-chart span:nth-child(2) {
  height: 46%;
}

.mini-chart span:nth-child(3) {
  height: 38%;
}

.mini-chart span:nth-child(4) {
  height: 62%;
}

.mini-chart span:nth-child(5) {
  height: 74%;
}

.mini-chart span:nth-child(6) {
  height: 92%;
}

.entry-panel {
  padding: 54px 0 34px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

h2 {
  width: 100%;
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
  color: var(--ink);
  overflow-wrap: anywhere;
  word-break: normal;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.entry-card {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--ink);
  text-align: left;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 44px rgba(7, 20, 13, 0.06);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.entry-card:hover,
.entry-card:focus-visible {
  z-index: 1;
  transform: translateY(-5px);
  outline: none;
  border-color: var(--line-strong);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(7, 20, 13, 0.12);
}

.entry-kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.entry-card strong {
  display: block;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1;
}

.entry-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.contract.copied .copy-status {
  color: var(--green);
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 60px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
  overflow: hidden;
}

.market-strip div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.market-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.market-strip strong {
  font-size: 20px;
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: -28px 0 60px;
}

.trust-panel div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
}

.trust-panel span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.trust-panel strong {
  display: block;
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: 22px;
}

.trust-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.content-split,
.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.copy-block {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
}

.copy-block p,
.token-note p,
.process-grid p,
.roadmap-grid p,
.faq-list p {
  color: var(--muted);
  line-height: 1.6;
}

.copy-block p:last-child,
.token-note p:last-child,
.process-grid p:last-child,
.roadmap-grid p:last-child,
.faq-list p:last-child {
  margin-bottom: 0;
}

.process-section,
.roadmap-section {
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.process-grid,
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

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

.process-grid div,
.roadmap-grid div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(7, 20, 13, 0.05);
}

.process-grid span,
.roadmap-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.roadmap-grid span {
  color: var(--green);
  background: rgba(0, 200, 5, 0.1);
}

.process-grid strong,
.roadmap-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
}

.token-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 12px;
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.token-card,
.token-note {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 44px rgba(7, 20, 13, 0.05);
}

.token-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
}

.token-card dl div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(244, 247, 242, 0.76);
}

.token-card dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.token-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.token-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(0, 200, 5, 0.12), rgba(255, 255, 255, 0.84)),
    #ffffff;
}

.token-note strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.05;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-top: 12px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 60px;
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(0, 200, 5, 0.14), rgba(255, 255, 255, 0.88)),
    #ffffff;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 620px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

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

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

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 42px;
  }

  .hero-visual {
    order: -1;
  }

  .ca-banner {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .market-dashboard {
    grid-template-columns: 1fr;
  }

  .content-split,
  .faq-section,
  .token-section {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entry-card {
    border-right: 1px solid var(--line);
  }

  .trust-panel {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    width: 100vw;
    max-width: 100vw;
  }

  main {
    width: min(340px, calc(100vw - 56px));
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }

  .site-header {
    padding: 16px 14px;
    overflow: hidden;
  }

  .nav-links a {
    padding-inline: 10px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    gap: 2px;
    overflow: visible;
  }

  .nav-links a {
    display: block;
    min-width: 0;
    padding-inline: 4px;
    font-size: 10px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(42px, 14vw, 58px);
  }

  .lede {
    max-width: 29ch;
    font-size: 18px;
  }

  .hero,
  .hero-copy,
  .hero-visual,
  .entry-panel,
  .market-strip {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-visual {
    width: 100%;
    padding: 12px;
    border-radius: 24px;
  }

  .visual-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .visual-topline strong {
    white-space: normal;
  }

  .hero-visual .banner-art {
    display: none;
  }

  .hero-visual .coin-art {
    display: block;
    width: min(230px, 72vw);
    margin: 10px auto 14px;
    border-radius: 50%;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  }

  .hero-visual img {
    border-radius: 14px;
  }

  .visual-metrics {
    grid-template-columns: 1fr;
  }

  .quote-list div {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .quote-list button {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .quote-list em {
    grid-column: 2;
  }

  .quote-list button em {
    grid-column: 1 / -1;
    justify-self: stretch;
    padding: 9px 12px;
    border-radius: 999px;
    color: #061006;
    text-align: center;
    background: var(--green-bright);
  }

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-badges span {
    width: 100%;
    text-align: center;
  }

  .market-dashboard {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 38px 0;
  }

  .ca-banner {
    width: min(300px, calc(100vw - 64px));
    max-width: min(300px, calc(100vw - 64px));
    margin: 20px auto 24px;
    padding: 14px;
    overflow: hidden;
  }

  .ca-banner div {
    min-width: 0;
  }

  .copy-button {
    width: 100%;
  }

  h2 {
    max-width: 11ch;
    font-size: clamp(27px, 9vw, 38px);
    line-height: 1.08;
  }

  .entry-grid,
  .market-strip,
  .trust-panel,
  .process-grid,
  .roadmap-grid,
  .token-card dl {
    grid-template-columns: 1fr;
  }

  .content-split,
  .faq-section,
  .process-section,
  .roadmap-section,
  .token-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 38px 0;
  }

  .copy-block,
  .token-card,
  .token-note,
  .process-grid div,
  .roadmap-grid div,
  .faq-list details,
  .final-cta {
    padding: 20px;
    border-radius: 22px;
  }

  .entry-card {
    min-height: 168px;
  }

  footer {
    flex-direction: column;
    padding-inline: 14px;
  }
}
