:root {
  color-scheme: dark;
  --background: #14151c;
  --panel: #212225;
  --panel-dark: #18191b;
  --line: #34353a;
  --text: #fafafa;
  --muted: #a1a1aa;
  --green: #5fe992;
  --green-dark: #052e16;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--background);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 5%, rgba(95, 233, 146, 0.09), transparent 24rem),
    var(--background);
  -webkit-font-smoothing: antialiased;
}

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

button {
  color: inherit;
  font: inherit;
}

.site-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(20, 21, 28, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: max-content;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 12px;
  height: 22px;
  background: var(--green);
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(95, 233, 146, 0.45);
  transform: rotate(42deg);
}

.site-header p,
.header-link {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-link {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-self: end;
  color: var(--text);
}

.header-link:hover,
.text-link:hover {
  color: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  gap: clamp(42px, 7vw, 120px);
  align-items: center;
  width: min(100% - 36px, 1440px);
  min-height: calc(100svh - 72px);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) 0;
}

.status,
.live-pill {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  width: max-content;
  padding: 8px 11px;
  color: var(--green);
  border: 1px solid rgba(95, 233, 146, 0.3);
  background: rgba(95, 233, 146, 0.1);
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(95, 233, 146, 0.12);
}

.ticker-name {
  margin: clamp(38px, 6vw, 74px) 0 15px;
  color: var(--green);
  font-size: clamp(1.3rem, 2.3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(6rem, 12.5vw, 13rem);
  letter-spacing: -0.095em;
  line-height: 0.7;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 650px;
  margin: clamp(42px, 6vw, 72px) 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  color: #07150c;
  border-color: var(--green);
  background: var(--green);
}

.button-primary:hover {
  background: #86efac;
}

.button-secondary {
  background: var(--panel);
}

.button-secondary:hover {
  border-color: var(--muted);
}

.coin-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.coin-image {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 12px;
  overflow: hidden;
  background: var(--panel-dark);
  border-radius: 9px;
}

.coin-image::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  border-radius: inherit;
}

.coin-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chain-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 9px;
  color: var(--green);
  background: rgba(5, 46, 22, 0.9);
  border: 1px solid rgba(95, 233, 146, 0.4);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 900;
}

.coin-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 20px;
  border-bottom: 1px solid var(--line);
}

.coin-title p {
  margin: 0 0 5px;
  font-size: 1.25rem;
  font-weight: 800;
}

.coin-title strong {
  color: var(--muted);
  font-size: 0.9rem;
}

.live-pill {
  padding: 7px 10px;
}

.contract {
  padding: 20px;
}

.contract > p:first-child {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contract code {
  display: block;
  padding: 14px;
  color: #e4e4e7;
  background: var(--panel-dark);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.copy-button {
  width: 100%;
  min-height: 46px;
  margin-top: 10px;
  color: var(--green-dark);
  border: 0;
  background: var(--green);
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.copy-button:hover {
  background: #86efac;
}

.copy-status {
  min-height: 1.2em;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--green);
  background: var(--green);
}

.marquee-track {
  display: flex;
  width: max-content;
  padding: 17px 0;
  animation: scroll 18s linear infinite;
  will-change: transform;
}

.marquee-track span {
  flex: none;
  color: var(--green-dark);
  font-size: clamp(1.3rem, 3vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.bounty {
  display: grid;
  grid-template-columns: 0.65fr 1.5fr;
  gap: clamp(50px, 9vw, 160px);
  padding: clamp(90px, 12vw, 180px) max(18px, calc((100vw - 1400px) / 2));
  border-bottom: 1px solid var(--line);
}

.bounty-label {
  display: flex;
  gap: 14px;
  align-items: center;
  height: max-content;
}

.bounty-label span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--green);
  border: 1px solid rgba(95, 233, 146, 0.4);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
}

.bounty-label p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bounty-copy {
  max-width: 960px;
}

.bounty-copy h2,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(4rem, 8.5vw, 10rem);
  letter-spacing: -0.085em;
  line-height: 0.82;
  text-transform: uppercase;
}

.bounty-copy > p {
  max-width: 760px;
  margin: 44px 0 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.6;
}

.dm-callout {
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 760px;
  margin: 0 0 34px;
  padding: 18px 20px;
  color: var(--green-dark);
  background: var(--green);
  border-radius: 8px;
}

.dm-callout span {
  font-size: 1.35rem;
  font-weight: 900;
}

.dm-callout p {
  margin: 0;
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  font-weight: 900;
  letter-spacing: -0.025em;
}

.text-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--green);
  font-size: 0.85rem;
  font-weight: 800;
}

.experience {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.8fr);
  gap: clamp(40px, 7vw, 110px);
  padding: clamp(90px, 12vw, 180px) max(18px, calc((100vw - 1400px) / 2));
}

.section-heading {
  position: sticky;
  top: 36px;
  align-self: start;
}

.section-heading h2 {
  margin-top: 38px;
  font-size: clamp(3.5rem, 6vw, 7rem);
}

.section-note {
  max-width: 280px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-transform: uppercase;
}

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

.tech-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(230px, 23vw, 350px);
  padding: clamp(22px, 3vw, 40px);
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 10px;
}

.tech-card.feature {
  border-color: rgba(95, 233, 146, 0.25);
  background:
    linear-gradient(145deg, rgba(95, 233, 146, 0.12), transparent 60%),
    var(--panel);
}

.tech-card h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3.8rem);
  letter-spacing: -0.065em;
  line-height: 0.95;
  text-transform: uppercase;
}

.tech-card p {
  display: flex;
  gap: 9px;
  align-items: baseline;
  margin: 50px 0 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.3vw, 1.15rem);
  font-weight: 800;
  text-transform: uppercase;
}

.tech-card strong {
  color: var(--green);
  font-size: clamp(4rem, 7vw, 8rem);
  letter-spacing: -0.09em;
  line-height: 0.7;
}

.credentials {
  padding: clamp(90px, 12vw, 180px) max(18px, calc((100vw - 1400px) / 2));
  border-top: 1px solid var(--line);
  background: var(--panel-dark);
}

.credentials-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.5fr;
  gap: clamp(50px, 9vw, 160px);
  align-items: start;
}

.credentials-heading h2 {
  margin: 0;
  font-size: clamp(4rem, 8.5vw, 10rem);
  letter-spacing: -0.085em;
  line-height: 0.82;
  text-transform: uppercase;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(60px, 8vw, 110px);
}

.credential-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(260px, 28vw, 420px);
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 10px;
}

.credential-card-feature {
  color: var(--green-dark);
  border-color: var(--green);
  background: var(--green);
}

.credential-index {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.credential-card-feature .credential-index {
  color: rgba(5, 46, 22, 0.65);
}

.credential-card h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.5rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

.credential-card div p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.credential-card-feature div p {
  color: rgba(5, 46, 22, 0.75);
}

.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 84svh;
  padding: 100px 18px;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(95, 233, 146, 0.13), transparent 30rem),
    var(--panel-dark);
}

.final-cta > p {
  margin: 0 0 28px;
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 900;
}

.final-cta .final-message {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
}

.button-large {
  min-height: 60px;
  margin-top: 48px;
  padding: 0 28px;
}

footer {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--panel-dark);
  font-size: 0.68rem;
  line-height: 1.5;
}

footer p {
  margin: 0;
}

@keyframes scroll {
  to {
    transform: translateX(-25%);
  }
}

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

  .site-header > p {
    display: none;
  }

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

  .coin-panel {
    width: min(100%, 620px);
  }

  .bounty,
  .experience,
  .credentials-heading {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }

  .credential-grid {
    grid-template-columns: 1fr;
  }

  .credential-card {
    min-height: 240px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 62px;
  }

  .header-link {
    font-size: 0;
  }

  .header-link span {
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  h1 {
    font-size: clamp(5rem, 29vw, 8rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .bounty-copy h2,
  .final-cta h2 {
    font-size: clamp(3.4rem, 18vw, 5.3rem);
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .tech-card {
    min-height: 230px;
  }

  footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
  }
}
