:root {
  color-scheme: dark;
  --bg: #05070a;
  --panel: #10151b;
  --panel-2: #16120a;
  --text: #fff8dc;
  --muted: #c6b98d;
  --gold: #f6bd27;
  --gold-2: #ffe991;
  --line: rgba(255, 217, 91, 0.22);
  --shadow: rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 75% 18%, rgba(246, 189, 39, 0.16), transparent 28rem),
    linear-gradient(135deg, #05070a 0%, #10151b 52%, #070604 100%);
  color: var(--text);
}

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

.topbar {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(5, 7, 10, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 20px;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(246, 189, 39, 0.32);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover {
  color: var(--gold-2);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.86fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
  padding: 112px clamp(18px, 5vw, 72px) 58px;
  background:
    radial-gradient(circle at 78% 42%, rgba(246, 189, 39, 0.26), transparent 24rem),
    radial-gradient(circle at 28% 58%, rgba(255, 233, 145, 0.1), transparent 22rem),
    linear-gradient(135deg, #07090d 0%, #111820 48%, #050402 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background:
    linear-gradient(8deg, rgba(214, 144, 6, 0.14), transparent 58%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 76px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 217, 91, 0.34), transparent);
  pointer-events: none;
}

.hero-duck {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
}

.hero-duck::before {
  content: "";
  position: absolute;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border: 2px solid rgba(246, 189, 39, 0.27);
  border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(246, 189, 39, 0.08), 0 0 80px rgba(246, 189, 39, 0.14);
}

.hero-duck img {
  position: relative;
  display: block;
  width: min(42vw, 570px);
  max-height: 74vh;
  object-fit: contain;
  filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.5));
}

.hero-copy {
  width: min(720px, 100%);
  min-width: 0;
  position: relative;
  z-index: 1;
}

.kicker,
.section-label {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 8vw, 124px);
  line-height: 0.9;
  letter-spacing: 0;
  color: var(--gold-2);
  text-shadow: 0 0 28px rgba(246, 189, 39, 0.42), 0 14px 28px var(--shadow);
}

.intro {
  max-width: 570px;
  margin-bottom: 28px;
  color: #f1e4ba;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 520px);
  margin: 0 0 24px;
  border: 1px solid rgba(255, 217, 91, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(5, 7, 10, 0.5);
}

.hero-stats div {
  padding: 16px;
  border-right: 1px solid rgba(255, 217, 91, 0.18);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-2);
  font-size: 22px;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions,
.launch {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 217, 91, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #ffe991;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.quick-links a:hover,
.links-panel a:hover {
  border-color: rgba(255, 233, 145, 0.7);
  background: rgba(246, 189, 39, 0.1);
}

.contract-bar {
  display: flex;
  align-items: center;
  width: min(100%, 620px);
  min-height: 52px;
  margin-top: 16px;
  padding: 7px;
  border: 1px solid rgba(255, 217, 91, 0.3);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.58);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.contract-bar span {
  padding: 0 8px 0 12px;
  color: var(--gold-2);
  font-weight: 900;
}

.contract-bar code {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: #f1e4ba;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-button {
  min-height: 38px;
  padding: 0 15px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, #fff1a7, #f6bd27 52%, #b36f00);
  color: #171006;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.button.primary {
  background: linear-gradient(135deg, #fff1a7, #f6bd27 44%, #b36f00);
  color: #171006;
  box-shadow: 0 16px 36px rgba(214, 144, 6, 0.26);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.05);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(0, 620px);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
  padding: 86px clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.95), rgba(16, 21, 27, 0.96));
}

.showcase-media img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
}

.showcase-copy h2,
.section-head h2,
.tokenomics h2,
.launch h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

.showcase-copy p,
.steps-grid p,
.tokenomics p,
.launch p,
.traits p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.content-band {
  padding: 86px clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 15% 0%, rgba(246, 189, 39, 0.11), transparent 24rem),
    linear-gradient(180deg, rgba(12, 14, 17, 0.98), rgba(5, 7, 10, 0.98));
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.steps-grid article {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.steps-grid article:last-child {
  border-right: 0;
}

.steps-grid span,
.roadmap li span {
  display: block;
  margin-bottom: 36px;
  color: var(--gold);
  font-weight: 900;
}

.steps-grid h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.12;
}

.steps-grid p {
  margin-bottom: 0;
  font-size: 16px;
}

.tokenomics {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: 86px clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 78% 42%, rgba(246, 189, 39, 0.14), transparent 28rem),
    linear-gradient(135deg, #090b0e, #16120a);
}

.tokenomics p {
  margin-bottom: 0;
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.token-grid article {
  min-height: 154px;
  padding: 26px;
  background: rgba(5, 7, 10, 0.9);
}

.token-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.token-grid strong {
  color: var(--gold-2);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.traits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(18px, 5vw, 72px) 0;
  background: var(--line);
}

.traits article {
  min-height: 250px;
  padding: 36px;
  background: rgba(5, 7, 10, 0.94);
}

.traits span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-weight: 900;
}

.traits h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.1;
}

.traits p {
  margin-bottom: 0;
}

.roadmap {
  padding: 86px clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.98), rgba(13, 16, 19, 0.98));
}

.roadmap ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--line);
}

.roadmap li {
  min-height: 210px;
  padding: 30px;
  background: rgba(5, 7, 10, 0.95);
}

.roadmap li span {
  margin-bottom: 48px;
}

.roadmap strong {
  color: #f1e4ba;
  font-size: 20px;
  line-height: 1.45;
}

.links-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(18px, 5vw, 72px);
  background: var(--line);
}

.links-panel a {
  display: grid;
  align-content: center;
  min-height: 132px;
  padding: 28px;
  border: 1px solid transparent;
  background:
    radial-gradient(circle at 82% 18%, rgba(246, 189, 39, 0.14), transparent 8rem),
    rgba(5, 7, 10, 0.95);
}

.links-panel span {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.links-panel strong {
  color: var(--gold-2);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.1;
}

.launch {
  justify-content: space-between;
  padding: 72px clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 84% 50%, rgba(246, 189, 39, 0.17), transparent 24rem),
    linear-gradient(135deg, #111820, #08090a);
}

.launch div {
  max-width: 760px;
}

.launch p {
  margin-bottom: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #05070a;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

footer strong {
  color: var(--gold-2);
}

@media (max-width: 860px) {
  .topbar {
    height: 68px;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 860px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    padding-top: 92px;
    align-items: center;
  }

  .hero-copy {
    padding-top: 18px;
    width: 100%;
    max-width: 340px;
  }

  h1 {
    font-size: clamp(42px, 11.6vw, 52px);
    overflow-wrap: anywhere;
  }

  .hero-duck {
    align-self: end;
  }

  .hero-duck::before {
    width: min(78vw, 430px);
  }

  .hero-duck img {
    width: min(88vw, 480px);
    max-height: 470px;
  }

  .showcase,
  .steps-grid,
  .tokenomics,
  .traits,
  .roadmap ol,
  .links-panel {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .showcase {
    padding-top: 60px;
  }

  .steps-grid article,
  .roadmap li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps-grid article:last-child,
  .roadmap li:last-child {
    border-bottom: 0;
  }

  .tokenomics {
    gap: 30px;
  }

  .traits article {
    min-height: 0;
    padding: 30px 24px;
  }

  .links-panel a {
    min-height: 98px;
    padding: 24px;
  }

  .traits span {
    margin-bottom: 22px;
  }

  .launch {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .brand span {
    font-size: 18px;
  }

  .hero {
    min-height: 790px;
  }

  .intro {
    font-size: 17px;
    max-width: 320px;
  }

  .button {
    width: 100%;
  }

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

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 217, 91, 0.18);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .quick-links a {
    justify-content: center;
  }

  .contract-bar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    padding: 10px;
  }

  .contract-bar span {
    padding: 0;
  }

  .copy-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .showcase-copy h2,
  .section-head h2,
  .tokenomics h2,
  .launch h2 {
    font-size: 34px;
  }

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

  footer {
    display: block;
  }

  footer strong {
    display: block;
    margin-bottom: 8px;
  }
}
