:root {
  color-scheme: dark;
  --bg: #050008;
  --ink: #fff8ff;
  --muted: #cbb8d7;
  --pink: #ff2fa7;
  --red: #ff244f;
  --orange: #ff9f1c;
  --yellow: #fff42b;
  --green: #37ff6b;
  --cyan: #16e7ff;
  --blue: #3566ff;
  --violet: #a63cff;
  --panel: rgba(17, 4, 27, 0.76);
  --line: rgba(255, 255, 255, 0.2);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 47, 167, 0.24), transparent 28rem),
    radial-gradient(circle at 82% 0%, rgba(22, 231, 255, 0.22), transparent 30rem),
    linear-gradient(180deg, #070011 0%, #12001a 46%, #050008 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(5, 0, 8, 0.92), rgba(5, 0, 8, 0.36));
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header[data-elevated="true"] {
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background: rgba(5, 0, 8, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #09000f;
  font-weight: 1000;
  background: conic-gradient(var(--pink), var(--yellow), var(--green), var(--cyan), var(--violet), var(--pink));
  box-shadow: 0 0 26px rgba(255, 47, 167, 0.55);
}

.brand span:not(.brand-mark) {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.96rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.8vw, 32px);
  color: rgba(255, 248, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--yellow);
}

.header-cta,
.btn,
.copy-button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 1000;
  line-height: 1;
  white-space: nowrap;
}

.header-cta,
.btn-primary {
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow), var(--green), var(--cyan), var(--violet));
  color: #09000f;
  box-shadow: 0 0 28px rgba(255, 47, 167, 0.36);
}

.header-cta {
  padding: 12px 18px;
}

[aria-disabled="true"] {
  cursor: not-allowed;
}

.hero {
  position: relative;
  min-height: min(900px, 92svh);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 0, 8, 0.74) 0%, rgba(5, 0, 8, 0.4) 35%, rgba(5, 0, 8, 0.04) 78%),
    linear-gradient(180deg, rgba(5, 0, 8, 0.08) 0%, rgba(5, 0, 8, 0.18) 55%, rgba(5, 0, 8, 0.88) 100%),
    url("./assets/wokecoin-hero-v2.png") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-content {
  width: min(1160px, calc(100% - 34px));
  margin: 0 auto;
  padding: 138px 0 clamp(54px, 8vw, 82px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  line-height: 0.92;
  letter-spacing: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
}

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8.1vw, 7.7rem);
  text-shadow:
    0 0 12px rgba(255, 47, 167, 0.76),
    0 12px 44px rgba(0, 0, 0, 0.75);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 6.2vw, 6.2rem);
  text-shadow: 0 0 24px rgba(22, 231, 255, 0.26);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.1;
}

.hero-subtitle {
  max-width: 680px;
  color: rgba(255, 248, 255, 0.88);
  font-size: clamp(1.03rem, 2vw, 1.32rem);
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15px 20px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.btn-secondary {
  background: rgba(22, 231, 255, 0.16);
  color: var(--ink);
  border-color: rgba(22, 231, 255, 0.44);
}

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

.ticker-strip {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 14px 0;
  animation: drift 24s linear infinite;
}

.ticker-strip span {
  display: inline-flex;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-40%);
  }
}

.market-panel,
.section,
.contract-band,
.site-footer {
  width: min(1180px, calc(100% - 34px));
  margin-inline: auto;
}

.market-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.stat-card,
.chart-shell,
.meme-stage,
.meme-grid article,
.step-grid article,
.token-grid article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stat-card {
  padding: 18px;
}

.stat-card span,
.token-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stat-card strong,
.token-grid strong {
  font-size: clamp(1.15rem, 2.4vw, 1.9rem);
}

.contract-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 47, 167, 0.2), rgba(22, 231, 255, 0.14));
}

.contract-band span {
  color: var(--yellow);
  font-weight: 1000;
}

.contract-band code {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255, 248, 255, 0.92);
}

.copy-button {
  padding: 11px 14px;
  background: #fff;
  color: #12001a;
}

.section {
  padding: clamp(70px, 10vw, 122px) 0 0;
}

.split {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 28px;
  align-items: center;
}

.section-copy p,
.section-heading p,
.community-copy p {
  max-width: 680px;
  color: rgba(255, 248, 255, 0.78);
  font-size: 1.02rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.link-grid a {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cyan);
  font-weight: 1000;
}

.chart-shell {
  min-height: 560px;
  overflow: hidden;
}

.chart-shell iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
}

.chart-placeholder {
  display: grid;
  place-content: center;
  min-height: 560px;
  padding: 26px;
  text-align: center;
  background:
    linear-gradient(transparent 92%, rgba(255, 255, 255, 0.12) 92%),
    linear-gradient(90deg, transparent 92%, rgba(255, 255, 255, 0.1) 92%),
    radial-gradient(circle, rgba(255, 47, 167, 0.26), transparent 34rem);
  background-size: 100% 54px, 54px 100%, auto;
}

.chart-placeholder strong {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 1.35rem;
}

.chart-placeholder span {
  color: var(--muted);
}

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

.meme-stage {
  overflow: hidden;
}

.meme-stage img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  object-position: center right;
}

.meme-grid,
.step-grid,
.token-grid {
  display: grid;
  gap: 12px;
}

.meme-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 12px;
}

.meme-grid article,
.step-grid article,
.token-grid article {
  padding: 18px;
}

.meme-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
}

.meme-grid span,
.step-grid p {
  color: var(--muted);
  font-size: 0.92rem;
}

.buy-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
}

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

.step-grid article > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan);
  font-weight: 1000;
}

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

.community {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding-bottom: 96px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--muted);
  font-size: 0.9rem;
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-bg {
    background-position: 62% center;
  }

  .market-panel,
  .meme-grid,
  .step-grid,
  .token-grid,
  .split,
  .buy-section,
  .community {
    grid-template-columns: 1fr;
  }

  .chart-shell,
  .chart-shell iframe,
  .chart-placeholder {
    min-height: 430px;
    height: 430px;
  }

  .meme-stage img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 560px) {
  .brand small,
  .header-cta {
    display: none;
  }

  h1 {
    font-size: clamp(3.4rem, 19vw, 5.2rem);
  }

  .hero-content {
    padding-bottom: 58px;
  }

  .hero-actions,
  .community-actions {
    display: grid;
  }

  .contract-band {
    grid-template-columns: 1fr auto;
  }

  .contract-band span {
    display: none;
  }

  .site-footer {
    display: grid;
  }
}
