:root {
  color-scheme: dark;
  --black: #020202;
  --panel: #080808;
  --line: rgba(255, 221, 0, 0.38);
  --gold: #ffd900;
  --gold-2: #fff26a;
  --white: #f6f6f0;
  --muted: #9f9b86;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 221, 0, 0.16), transparent 24rem),
    radial-gradient(circle at 12% 72%, rgba(255, 221, 0, 0.08), transparent 22rem),
    var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 217, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 217, 0, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 70%, transparent);
}

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

button {
  font: inherit;
}

.site-shell {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 22px clamp(18px, 4vw, 64px) 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 62px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 217, 0, 0.65);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(255, 217, 0, 0.35);
}

.brand-mark span {
  background: linear-gradient(95deg, #ffffff, #9f9f9f 38%, #ffe600 54%, #fff7a2);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2vw, 26px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 160ms ease, text-shadow 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
  text-shadow: 0 0 14px rgba(255, 217, 0, 0.8);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(36px, 7vw, 110px);
  min-height: calc(100vh - 96px);
  padding: clamp(44px, 7vw, 96px) 0 clamp(32px, 5vw, 72px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 760px;
  overflow: visible;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 217, 0, 0.6);
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 {
  display: grid;
  gap: 4px;
  max-width: 100%;
  font-size: clamp(58px, 9vw, 132px);
  font-style: italic;
  font-weight: 1000;
}

h1 span:first-child {
  background: linear-gradient(100deg, #ffffff, #878787 42%, #ffffff 58%, #555);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 12px 0 rgba(255, 217, 0, 0.18));
}

h1 span:last-child {
  background: linear-gradient(100deg, #fff68a, #ffd900 38%, #9c8000 58%, #fff7aa);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 217, 0, 0.28);
}

.hero-line {
  width: 100%;
  max-width: 610px;
  margin: 28px 0 0;
  color: #d6d1b4;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.ca-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 1px solid rgba(255, 217, 0, 0.48);
  background:
    linear-gradient(90deg, rgba(255, 217, 0, 0.12), rgba(255, 217, 0, 0.02)),
    rgba(0, 0, 0, 0.74);
  box-shadow: 0 0 28px rgba(255, 217, 0, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.ca-strip {
  max-width: 690px;
  min-height: 58px;
  margin-top: 28px;
  padding: 9px 10px 9px 16px;
  border-radius: 4px;
}

.ca-strip span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255, 217, 0, 0.5);
}

.ca-strip code {
  min-width: 0;
  color: #f4edc4;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: thin;
}

.ca-strip button {
  min-height: 38px;
  border: 1px solid rgba(255, 246, 105, 0.82);
  border-radius: 3px;
  padding: 0 16px;
  background: linear-gradient(135deg, #ffe600, #9f8500);
  color: #050500;
  cursor: pointer;
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(255, 217, 0, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.ca-strip button:hover,
.ca-strip button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(255, 217, 0, 0.46);
  outline: none;
}

.action,
.link-grid a,
.link-grid button {
  min-height: 50px;
  border: 1px solid rgba(255, 217, 0, 0.45);
  background: rgba(8, 8, 8, 0.78);
  color: var(--white);
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 24px rgba(255, 217, 0, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0 22px;
  border-radius: 4px;
}

.action-primary {
  background: linear-gradient(135deg, #ffe600, #9c8200);
  color: #050500;
  border-color: rgba(255, 246, 105, 0.92);
  box-shadow: 0 0 34px rgba(255, 217, 0, 0.36);
}

.action:hover,
.action:focus-visible,
.link-grid a:hover,
.link-grid a:focus-visible,
.link-grid button:hover,
.link-grid button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 246, 105, 0.94);
  box-shadow: 0 0 32px rgba(255, 217, 0, 0.28);
  outline: none;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(420px, 44vw, 650px);
  perspective: 1000px;
}

.hero-visual::before {
  position: absolute;
  width: min(34vw, 520px);
  height: min(34vw, 520px);
  min-width: 320px;
  min-height: 320px;
  content: "";
  border: 2px solid rgba(255, 217, 0, 0.86);
  border-radius: 50%;
  box-shadow:
    0 0 28px rgba(255, 217, 0, 0.9),
    inset 0 0 40px rgba(255, 217, 0, 0.22);
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(36vw, 560px);
  min-width: 330px;
  max-width: 100%;
  border-radius: 50%;
  filter:
    drop-shadow(0 0 26px rgba(255, 217, 0, 0.62))
    drop-shadow(0 34px 52px rgba(0, 0, 0, 0.82));
  transform: rotateY(-10deg) rotateX(3deg);
}

.halo {
  position: absolute;
  inset: 9% 2% auto auto;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 217, 0, 0.28);
  border-radius: 50%;
  transform: rotateX(68deg);
  box-shadow: 0 0 70px rgba(255, 217, 0, 0.28);
}

.coin-orbit {
  position: absolute;
  right: 2%;
  bottom: 12%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(86px, 10vw, 136px);
  aspect-ratio: 1;
  border: 6px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 24%, #2b2b19, #050505 68%);
  color: var(--gold);
  font-size: clamp(15px, 1.45vw, 20px);
  font-weight: 1000;
  letter-spacing: 0;
  box-shadow: 0 0 42px rgba(255, 217, 0, 0.58);
  transform: rotateZ(-14deg);
}

.ticker-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 128px;
  border-top: 1px solid rgba(255, 217, 0, 0.24);
  border-bottom: 1px solid rgba(255, 217, 0, 0.24);
}

.ticker-band p {
  min-width: 0;
  margin: 0;
  color: #ded8b9;
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.candles {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 74px;
}

.candles i {
  display: block;
  width: 9px;
  height: var(--h, 44px);
  background: linear-gradient(#fff574, #7d6900);
  box-shadow: 0 0 20px rgba(255, 217, 0, 0.35);
}

.candles i:nth-child(1) { --h: 26px; }
.candles i:nth-child(2) { --h: 54px; }
.candles i:nth-child(3) { --h: 38px; }
.candles i:nth-child(4) { --h: 72px; }
.candles i:nth-child(5) { --h: 42px; }
.candles i:nth-child(6) { --h: 62px; }
.candles i:nth-child(7) { --h: 30px; }
.candles i:nth-child(8) { --h: 50px; }

.feather-signal {
  justify-self: end;
  width: min(100%, 260px);
  height: 74px;
  border-right: 9px solid var(--gold);
  border-bottom: 9px solid var(--gold);
  transform: skewX(-24deg);
  filter: drop-shadow(0 0 18px rgba(255, 217, 0, 0.86));
}

.market-panel {
  padding: clamp(46px, 7vw, 90px) 0 10px;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin-bottom: 28px;
}

h2 {
  max-width: 760px;
  font-size: clamp(38px, 6vw, 86px);
  background: linear-gradient(100deg, #fff, #797979 44%, #ffe600 54%, #fff7a0);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.market-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: 16px;
  align-items: stretch;
}

.chart-card,
.price-card {
  min-width: 0;
  border: 1px solid rgba(255, 217, 0, 0.36);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 217, 0, 0.08), rgba(255, 217, 0, 0.015)),
    rgba(3, 3, 3, 0.86);
  box-shadow: 0 0 34px rgba(255, 217, 0, 0.09), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 217, 0, 0.2);
}

.panel-head span,
.panel-head b {
  color: var(--gold);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255, 217, 0, 0.4);
}

.panel-head a {
  color: #f4edc4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dex-frame {
  display: block;
  width: 100%;
  min-height: clamp(360px, 42vw, 560px);
  border: 0;
  background: #050505;
}

.chart-placeholder {
  position: relative;
  display: grid;
  align-content: end;
  min-height: clamp(360px, 42vw, 560px);
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 217, 0, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 217, 0, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 75% 30%, rgba(255, 217, 0, 0.16), transparent 18rem);
  background-size: 58px 58px, 58px 58px, auto;
}

.chart-placeholder p {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0;
  color: #d6d1b4;
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 800;
  line-height: 1.45;
}

.chart-line {
  position: absolute;
  inset: 24% 4% 24% 4%;
  border-bottom: 6px solid var(--gold);
  border-right: 6px solid var(--gold);
  transform: skewY(-14deg);
  filter: drop-shadow(0 0 18px rgba(255, 217, 0, 0.9));
}

.chart-bars {
  position: absolute;
  right: 22px;
  bottom: 24px;
  left: 22px;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 10px;
  height: 110px;
  opacity: 0.9;
}

.chart-bars i {
  width: 16px;
  height: var(--h, 60px);
  background: linear-gradient(#fff574, #6c5a00);
  box-shadow: 0 0 18px rgba(255, 217, 0, 0.34);
}

.chart-bars i:nth-child(1) { --h: 36px; }
.chart-bars i:nth-child(2) { --h: 76px; }
.chart-bars i:nth-child(3) { --h: 58px; }
.chart-bars i:nth-child(4) { --h: 96px; }
.chart-bars i:nth-child(5) { --h: 46px; }
.chart-bars i:nth-child(6) { --h: 108px; }
.chart-bars i:nth-child(7) { --h: 68px; }
.chart-bars i:nth-child(8) { --h: 86px; }
.chart-bars i:nth-child(9) { --h: 42px; }

.price-card {
  min-width: 0;
}

.price-table {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}

.price-table div {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 70px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 217, 0, 0.16);
}

.price-table div:last-child {
  border-bottom: 0;
}

.price-table dt {
  color: #9f9b86;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-table dd {
  margin: 0;
  color: #f4edc4;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 1000;
  text-align: right;
  overflow-wrap: anywhere;
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 9;
  padding: 12px 18px;
  border: 1px solid rgba(255, 217, 0, 0.62);
  background: rgba(0, 0, 0, 0.9);
  color: var(--gold);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 980px) {
  .topbar,
  .nav-links {
    align-items: flex-start;
  }

  .topbar {
    flex-direction: column;
  }

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

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 430px;
    order: -1;
  }

  .hero-visual img {
    width: min(76vw, 480px);
  }

  .ticker-band {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }

  .ticker-band p {
    width: 100%;
    max-width: 100%;
  }

  .candles,
  .feather-signal {
    justify-self: center;
  }

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

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

  .chart-placeholder {
    min-height: 360px;
  }

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

@media (max-width: 560px) {
  .site-shell {
    padding-inline: 16px;
  }

  .brand-mark span {
    font-size: 14px;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 38px);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .hero-line {
    width: min(100%, 340px);
    max-width: 100%;
    font-size: 17px;
  }

  .ca-strip {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    overflow: visible;
  }

  .ca-strip span {
    grid-column: 1 / -1;
  }

  .ca-strip {
    padding: 12px;
  }

  .ca-strip code {
    width: 100%;
    font-size: 12px;
  }

  .ca-strip button {
    width: 100%;
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual img {
    min-width: 0;
    width: min(80vw, 350px);
  }

  .hero-visual::before {
    min-width: 260px;
    min-height: 260px;
  }

  .coin-orbit {
    right: 0;
    bottom: 8%;
  }

  .action {
    flex: 1 1 100%;
  }

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

  .market-panel {
    padding-top: 44px;
  }

  .ticker-band p {
    max-width: 330px;
    margin-inline: auto;
    font-size: 16px;
    line-height: 1.25;
  }

  .chart-placeholder {
    min-height: 300px;
    padding: 16px;
  }

  .chart-bars {
    height: 74px;
    gap: 7px;
  }

  .chart-bars i {
    width: 10px;
  }

  .price-table div {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 14px;
  }

  .price-table dd {
    text-align: left;
  }

}
