:root {
  color-scheme: light;
  --yellow: #ffd400;
  --gold: #ffae00;
  --ink: #080a0b;
  --charcoal: #141617;
  --paper: #fffdf2;
  --line: rgba(8, 10, 11, 0.16);
  --soft: rgba(255, 212, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(135deg, rgba(255, 212, 0, 0.28), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(255, 174, 0, 0.34), transparent 22%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(255, 253, 242, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--ink);
}

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

.nav-links a,
.button,
.copy-button {
  min-height: 42px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  background: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.nav-links a:hover,
.button:hover,
.copy-button:hover,
.entry:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  align-items: center;
  gap: clamp(28px, 6vw, 82px);
  min-height: calc(100vh - 75px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 6vw, 92px) 56px;
  overflow: hidden;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #3f3200;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 12px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  transform: skewX(-22deg);
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  line-height: 0.94;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  font-size: clamp(54px, 7vw, 86px);
  font-weight: 1000;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(34px, 6vw, 76px);
  font-weight: 1000;
  text-transform: uppercase;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
  font-weight: 750;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  text-transform: uppercase;
}

.button.primary {
  background: var(--yellow);
}

.button.secondary {
  background: var(--ink);
  color: var(--yellow);
}

.hero-art {
  position: relative;
  width: min(100%, 520px);
  margin-inline: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 12%;
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 50%;
  box-shadow: 18px 18px 0 var(--ink);
  transform: rotate(-8deg);
}

.hero-art::after {
  content: "↗";
  position: absolute;
  right: -1%;
  top: 6%;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--yellow);
  border: 4px solid var(--yellow);
  border-radius: 50%;
  font-size: 76px;
  font-weight: 1000;
  box-shadow: 8px 8px 0 var(--ink);
}

.hero-art img {
  position: relative;
  z-index: 2;
  width: 86%;
  border-radius: 50%;
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.24));
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  opacity: 0.18;
}

.orbit-one {
  inset: 0;
}

.orbit-two {
  inset: 7%;
  border-style: dashed;
}

.ticker-band {
  display: flex;
  gap: 28px;
  overflow: hidden;
  padding: 18px clamp(18px, 6vw, 92px);
  background: var(--ink);
  color: var(--yellow);
  border-block: 4px solid var(--yellow);
  font-size: clamp(18px, 2.8vw, 34px);
  font-weight: 1000;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-band span {
  flex: 0 0 auto;
}

.launch-panel,
.contract-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: start;
  padding: clamp(54px, 7vw, 96px) clamp(18px, 6vw, 92px);
}

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

.entry {
  min-height: 164px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.entry:nth-child(2),
.entry:nth-child(4) {
  background: var(--yellow);
}

.entry-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 1000;
}

.entry strong {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  text-transform: uppercase;
}

.entry small {
  font-size: 15px;
  font-weight: 800;
}

.contract-section {
  background: linear-gradient(120deg, var(--yellow), #fff 72%);
  border-block: 4px solid var(--ink);
}

.contract-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--ink);
}

.contract-box code {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 900;
}

.copy-button {
  flex: 0 0 auto;
  padding: 10px 15px;
  background: var(--ink);
  color: var(--yellow);
  cursor: pointer;
}

.banner-strip {
  padding: clamp(42px, 6vw, 84px) clamp(18px, 6vw, 92px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), var(--soft)),
    #fff;
}

.banner-strip img {
  width: 100%;
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 12px 12px 0 var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 24px clamp(18px, 6vw, 92px);
  background: var(--ink);
  color: #fff;
  font-weight: 850;
}

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

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

  .hero,
  .launch-panel,
  .contract-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    max-width: 460px;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    padding: 16px 20px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .nav-links a {
    justify-content: center;
    min-width: 0;
    width: min(100%, 330px);
  }

  .nav-links a:first-child,
  .nav-links a:last-child {
    grid-column: auto;
  }

  .hero {
    gap: 34px;
    padding-top: 38px;
    max-width: 100vw;
    overflow: hidden;
  }

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

  h1 {
    max-width: 330px;
    font-size: clamp(36px, 10vw, 42px);
    overflow-wrap: anywhere;
  }

  .hero-text {
    font-size: 16px;
    max-width: 330px;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .button {
    width: min(100%, 330px);
    flex: 0 0 auto;
    padding-inline: 14px;
  }

  .hero-art {
    width: min(100%, 300px);
  }

  .hero-art::before {
    box-shadow: 10px 10px 0 var(--ink);
  }

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

  .contract-box {
    align-items: stretch;
    flex-direction: column;
  }

  .copy-button {
    width: 100%;
  }

  .hero-art::after {
    width: 86px;
    height: 86px;
    font-size: 50px;
  }

  .site-footer {
    flex-direction: column;
  }
}
