:root {
  color-scheme: dark;
  --ink: #03070b;
  --night: #071321;
  --blue-black: #081d31;
  --cobalt: #0e3e70;
  --star-blue: #1b6598;
  --teal: #1d6a69;
  --gold: #daa737;
  --sun: #f0ca66;
  --rust: #9e3d23;
  --cream: #f0e4c5;
  --muted: #aaafac;
  --line: rgba(218, 167, 55, 0.36);
  --page: min(1180px, calc(100vw - 40px));
  --display: Georgia, "Times New Roman", serif;
  --sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 9% 22%, rgba(27, 101, 152, 0.16), transparent 24rem),
    radial-gradient(circle at 88% 48%, rgba(218, 167, 55, 0.1), transparent 28rem), var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 16px 16px;
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--sun);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 50%;
  width: 100%;
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  transform: translateX(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    height 180ms ease;
}

.site-header.is-scrolled {
  height: 66px;
  border-color: var(--line);
  background: rgba(3, 7, 11, 0.92);
}

.brand {
  justify-self: start;
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: var(--cream);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-decoration: none;
}

.brand img {
  border: 1px solid var(--line);
  image-rendering: pixelated;
}

.site-header nav {
  display: flex;
  gap: clamp(20px, 3vw, 42px);
}

.site-header nav a {
  position: relative;
  color: #d5d1c2;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 11px 15px;
  border: 1px solid var(--line);
  color: var(--sun);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 150ms ease,
    border-color 150ms ease,
    background 150ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: min(960px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.8fr);
  gap: clamp(38px, 7vw, 112px);
  align-items: center;
  padding: 118px max(20px, calc((100vw - 1180px) / 2)) 90px;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -8%;
  bottom: 0;
  left: -8%;
  height: 34%;
  background: linear-gradient(to bottom, transparent, var(--ink));
  content: "";
}

.hero-sky {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(3, 7, 11, 0.98) 0%,
      rgba(3, 7, 11, 0.78) 45%,
      rgba(3, 7, 11, 0.28) 100%
    ),
    url("/assets/hero-banner.png") center / cover no-repeat;
  opacity: 0.76;
}

.hero-sky::after {
  position: absolute;
  inset: -20%;
  border: 2px solid rgba(218, 167, 55, 0.08);
  border-radius: 48%;
  box-shadow:
    0 0 0 42px rgba(27, 101, 152, 0.04),
    0 0 0 90px rgba(218, 167, 55, 0.035),
    0 0 0 150px rgba(27, 101, 152, 0.03);
  content: "";
  transform: rotate(-8deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 710px;
}

.kicker {
  display: flex;
  gap: 11px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--sun);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.kicker span {
  width: 25px;
  height: 2px;
  background: var(--gold);
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 770px;
  font-size: clamp(5rem, 10.4vw, 9.5rem);
  line-height: 0.73;
  text-transform: uppercase;
  text-shadow: 0 8px 44px rgba(0, 0, 0, 0.7);
}

.hero h1 span {
  display: block;
  color: var(--sun);
  font-size: 0.54em;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.hero-line {
  margin: 30px 0 12px;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-style: italic;
}

.hero-description {
  max-width: 610px;
  margin: 0;
  color: #c4c3ba;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.75;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 150ms ease,
    background 150ms ease,
    border-color 150ms ease,
    transform 150ms ease;
}

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

button.button {
  cursor: pointer;
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
  transform: none;
}

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

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--sun);
}

.button-ghost {
  border-color: rgba(240, 228, 197, 0.34);
  color: var(--cream);
  background: rgba(3, 7, 11, 0.48);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--sun);
}

.mint-clock {
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 22px;
  margin-top: 34px;
  padding: 15px 17px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 7, 11, 0.48);
}

.mint-clock p {
  margin: 0;
}

.mint-clock-label {
  align-self: center;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.mint-clock-value {
  color: var(--sun);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(0.95rem, 1.7vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.mint-clock-note {
  grid-column: 1 / -1;
  color: #a8aaa5;
  font-size: 0.72rem;
}

.mint-clock.is-live {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(218, 167, 55, 0.14);
}

.hero-art {
  position: relative;
  width: min(100%, 490px);
  justify-self: end;
}

.portrait-frame {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: clamp(7px, 1.2vw, 11px);
  border: 1px solid rgba(240, 202, 102, 0.7);
  background: var(--ink);
  box-shadow:
    18px 18px 0 rgba(3, 7, 11, 0.75),
    20px 20px 0 rgba(218, 167, 55, 0.36),
    0 34px 85px rgba(0, 0, 0, 0.6);
  transform: rotate(1.4deg);
}

.portrait-frame::before,
.portrait-frame::after {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: var(--sun);
  content: "";
}

.portrait-frame::before {
  top: -8px;
  left: -8px;
  border-top: 3px solid;
  border-left: 3px solid;
}

.portrait-frame::after {
  right: -8px;
  bottom: -8px;
  border-right: 3px solid;
  border-bottom: 3px solid;
}

.portrait-frame img,
.punk-card img,
.verification-portrait {
  image-rendering: pixelated;
}

.orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(240, 202, 102, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  inset: -11% -13%;
  animation: orbit 18s linear infinite;
}

.orbit-two {
  inset: 4% -24%;
  border-color: rgba(27, 101, 152, 0.42);
  animation: orbit-reverse 24s linear infinite;
}

.orbit::after {
  position: absolute;
  top: 16%;
  left: 4%;
  width: 9px;
  height: 9px;
  background: var(--sun);
  box-shadow: 0 0 20px var(--gold);
  content: "";
}

.art-stamp {
  position: absolute;
  z-index: 3;
  right: -25px;
  bottom: 38px;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid var(--sun);
  border-radius: 50%;
  color: var(--sun);
  background: var(--rust);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-align: center;
  transform: rotate(-10deg);
}

.art-number {
  position: absolute;
  z-index: 4;
  top: 15px;
  left: -31px;
  padding: 7px 11px;
  color: var(--ink);
  background: var(--sun);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  color: #9ea39f;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold);
  animation: nudge 1.8s ease-in-out infinite;
}

.section {
  width: var(--page);
  margin-inline: auto;
  padding-block: clamp(80px, 11vw, 145px);
}

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(36px, 6vw, 68px);
}

h2 {
  max-width: 900px;
  font-size: clamp(2.65rem, 6vw, 5.25rem);
  line-height: 0.97;
}

.section-heading > p:last-child,
.manifesto-copy > p,
.provenance-copy > p,
.security-copy > p,
.finale-inner > p {
  max-width: 690px;
  color: #b8bbb5;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.78;
}

.portrait-grid {
  width: 100%;
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(9px, 1.5vw, 20px);
  margin-inline: auto;
}

.punk-card {
  position: relative;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(218, 167, 55, 0.25);
  background: var(--blue-black);
  transition:
    border-color 160ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.punk-card:nth-child(4n + 2),
.punk-card:nth-child(4n + 4) {
  transform: translateY(22px);
}

.punk-card:hover {
  z-index: 2;
  border-color: var(--sun);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.48);
  transform: translateY(-5px) rotate(-0.5deg);
}

.punk-card:nth-child(4n + 2):hover,
.punk-card:nth-child(4n + 4):hover {
  transform: translateY(17px) rotate(0.5deg);
}

.punk-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.punk-card:hover img {
  transform: scale(1.035);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
}

.manifesto-art {
  position: relative;
}

.manifesto-art::after {
  position: absolute;
  top: 18px;
  right: -18px;
  bottom: -18px;
  left: 18px;
  z-index: -1;
  border: 1px solid var(--line);
  content: "";
}

.manifesto-art img {
  min-height: 390px;
  border: 1px solid rgba(240, 202, 102, 0.4);
  object-fit: cover;
  object-position: center;
}

.manifesto-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.details {
  border-top: 1px solid rgba(218, 167, 55, 0.2);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fact {
  min-height: 224px;
  padding: clamp(24px, 3.5vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(14, 62, 112, 0.14), rgba(3, 7, 11, 0));
}

.fact dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.fact dd {
  margin: 21px 0 8px;
  color: var(--sun);
  font-family: var(--display);
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  line-height: 1;
}

.fact p {
  margin: 0;
  color: #a9aca7;
  font-size: 0.85rem;
  line-height: 1.55;
}

.provenance {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1.2fr);
  gap: clamp(38px, 8vw, 100px);
  align-items: center;
}

.contract-card {
  position: relative;
  padding: clamp(25px, 4.5vw, 48px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(27, 101, 152, 0.18), transparent 55%), var(--night);
  box-shadow: 12px 12px 0 rgba(218, 167, 55, 0.09);
}

.contract-card > span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.contract-card code {
  display: block;
  color: var(--cream);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(0.78rem, 1.4vw, 1rem);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.contract-card button {
  margin-top: 24px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: var(--sun);
  background: transparent;
  font: inherit;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.contract-card button:hover,
.contract-card button:focus-visible {
  color: var(--ink);
  background: var(--gold);
}

.security {
  min-height: 420px;
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 50px;
  align-items: center;
  padding-inline: clamp(28px, 6vw, 78px);
  border: 1px solid rgba(218, 167, 55, 0.33);
  background:
    radial-gradient(circle at 8% 50%, rgba(218, 167, 55, 0.18), transparent 25%),
    linear-gradient(120deg, rgba(158, 61, 35, 0.25), rgba(8, 29, 49, 0.72));
}

.security-mark {
  color: var(--sun);
  font-family: var(--display);
  font-size: clamp(8rem, 17vw, 14rem);
  line-height: 0.7;
  text-align: center;
  text-shadow: 0 0 60px rgba(218, 167, 55, 0.3);
}

.finale {
  width: 100%;
  padding-inline: 20px;
  text-align: center;
  background:
    linear-gradient(rgba(3, 7, 11, 0.7), rgba(3, 7, 11, 0.94)),
    url("/assets/hero-banner.png") center / cover no-repeat;
}

.finale-inner {
  width: min(850px, 100%);
  margin-inline: auto;
}

.finale .kicker,
.hero-actions.centered {
  justify-content: center;
}

.finale h2 {
  margin-inline: auto;
}

.finale-inner > p {
  margin-inline: auto;
}

.featured-on {
  width: min(360px, 100%);
  display: flex;
  gap: clamp(18px, 3vw, 30px);
  align-items: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(218, 167, 55, 0.2);
}

.featured-on-label {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.featured-on-label::after {
  width: 28px;
  height: 1px;
  background: var(--line);
  content: "";
}

.featured-on-link {
  width: clamp(88px, 8vw, 104px);
  flex: 0 0 auto;
  display: block;
  border: 1px solid rgba(240, 228, 197, 0.16);
  background: #1a1918;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.featured-on-link:hover,
.featured-on-link:focus-visible {
  border-color: rgba(111, 255, 163, 0.72);
  box-shadow: 0 16px 42px rgba(68, 255, 135, 0.1);
  transform: translateY(-3px);
}

.featured-on-link:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 4px;
}

.featured-on-link img {
  width: 100%;
  height: auto;
}

footer {
  width: var(--page);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  margin-inline: auto;
  padding-block: 40px;
  color: #858b88;
  font-size: 0.7rem;
  line-height: 1.55;
}

.footer-brand {
  color: var(--cream);
}

footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.portrait-grid .reveal:nth-child(2n) {
  transition-delay: 70ms;
}

.portrait-grid .reveal:nth-child(3n) {
  transition-delay: 130ms;
}

.verification-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    linear-gradient(90deg, rgba(3, 7, 11, 0.97), rgba(3, 7, 11, 0.7)),
    url("/assets/hero-banner.png") center / cover fixed;
}

.verification-shell {
  width: min(1050px, 100%);
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  border: 1px solid var(--line);
  background: rgba(3, 7, 11, 0.94);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.72);
}

.verification-card {
  padding: clamp(30px, 6vw, 74px);
}

.verification-brand {
  margin-bottom: 58px;
}

.verification-card h1 {
  font-size: clamp(3.3rem, 7vw, 6.5rem);
  line-height: 0.86;
}

.verification-card > p:not(.kicker) {
  color: #bfc1bb;
  line-height: 1.75;
}

.verification-warning {
  margin-top: 28px;
  padding: 17px 19px;
  border-left: 3px solid var(--gold);
  color: #b9bbb5;
  background: rgba(218, 167, 55, 0.08);
  font-size: 0.87rem;
  line-height: 1.6;
}

.verification-warning strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sun);
}

.verification-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.verification-gtd-shell {
  width: min(1180px, 100%);
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.68fr);
}

.verification-gtd-shell .verification-card {
  padding: clamp(28px, 4.7vw, 60px);
}

.verification-gtd-shell .verification-brand {
  margin-bottom: 42px;
}

.verification-gtd-shell .verification-card h1 {
  max-width: 690px;
  font-size: clamp(3.1rem, 6.2vw, 6rem);
}

.capture-meter {
  margin-top: 28px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  background: rgba(14, 62, 112, 0.13);
}

.capture-meter-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 11px;
}

.capture-meter-copy > span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.capture-meter-copy strong {
  color: var(--sun);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
}

.capture-meter progress {
  width: 100%;
  height: 8px;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: rgba(240, 228, 197, 0.1);
  appearance: none;
}

.capture-meter progress::-webkit-progress-bar {
  background: rgba(240, 228, 197, 0.1);
}

.capture-meter progress::-webkit-progress-value {
  background: linear-gradient(90deg, var(--cobalt), var(--gold));
}

.capture-meter progress::-moz-progress-bar {
  background: linear-gradient(90deg, var(--cobalt), var(--gold));
}

.capture-meter p {
  margin: 10px 0 0;
  color: #aeb1ac;
  font-size: 0.72rem;
}

.verification-status {
  min-height: 48px;
  display: flex;
  align-items: center;
  margin-top: 16px;
  padding: 11px 14px;
  border-left: 2px solid var(--star-blue);
  color: #c5c7c0;
  background: rgba(27, 101, 152, 0.08);
  font-size: 0.8rem;
  line-height: 1.45;
}

.verification-status[data-tone="success"] {
  border-color: var(--teal);
  color: #d1e5da;
  background: rgba(29, 106, 105, 0.13);
}

.verification-status[data-tone="warning"] {
  border-color: var(--gold);
  color: var(--sun);
  background: rgba(218, 167, 55, 0.09);
}

.verification-status[data-tone="error"] {
  border-color: var(--rust);
  color: #f0b19c;
  background: rgba(158, 61, 35, 0.13);
}

.claim-steps {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.claim-steps li {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 13px;
  border: 1px solid rgba(240, 228, 197, 0.12);
  background: rgba(3, 7, 11, 0.5);
  transition: border-color 150ms ease;
}

.claim-steps li.is-complete {
  border-color: rgba(29, 106, 105, 0.65);
}

.claim-step-number {
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 800;
}

.claim-steps strong {
  color: var(--cream);
  font-size: 0.83rem;
}

.claim-steps p {
  margin: 4px 0 0;
  color: #929791;
  font-size: 0.72rem;
  line-height: 1.4;
}

.button-compact {
  min-width: 108px;
  min-height: 40px;
  padding: 11px 13px;
  font-size: 0.62rem;
}

.verification-footer-links {
  display: flex;
  gap: 24px;
  margin-top: 22px;
}

.verification-footer-links a {
  color: #adb0aa;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration-color: rgba(218, 167, 55, 0.55);
  text-transform: uppercase;
  text-underline-offset: 5px;
}

.verification-aside {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  background: var(--night);
}

.verification-aside .verification-portrait {
  height: auto;
  aspect-ratio: 1;
  border-bottom: 1px solid var(--line);
  image-rendering: pixelated;
}

.gtd-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
}

.gtd-facts div {
  min-height: 88px;
  padding: 17px;
  border-right: 1px solid rgba(218, 167, 55, 0.18);
  border-bottom: 1px solid rgba(218, 167, 55, 0.18);
}

.gtd-facts dt {
  color: #858c89;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gtd-facts dd {
  margin: 7px 0 0;
  color: var(--sun);
  font-family: var(--display);
  font-size: 1.05rem;
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

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

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 126px;
  }

  .hero-sky {
    background:
      linear-gradient(rgba(3, 7, 11, 0.78), rgba(3, 7, 11, 0.96)),
      url("/assets/hero-banner-mobile.png") center top / cover no-repeat;
  }

  .hero-art {
    width: min(82vw, 480px);
    justify-self: center;
    margin-top: 20px;
  }

  .scroll-cue {
    display: none;
  }

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

  .punk-card:nth-child(4n + 2),
  .punk-card:nth-child(4n + 4) {
    transform: none;
  }

  .punk-card:hover,
  .punk-card:nth-child(4n + 2):hover,
  .punk-card:nth-child(4n + 4):hover {
    transform: translateY(-4px);
  }

  .manifesto,
  .provenance {
    grid-template-columns: 1fr;
  }

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

  .security {
    grid-template-columns: 0.25fr 1fr;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
  }

  .verification-shell {
    grid-template-columns: 1fr;
  }

  .verification-aside {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .verification-portrait {
    max-height: 480px;
    object-position: 50% 24%;
  }
}

@media (max-width: 600px) {
  :root {
    --page: calc(100vw - 28px);
  }

  .site-header {
    height: 66px;
    padding-inline: 14px;
  }

  .brand span {
    font-size: 0.68rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    padding: 9px 11px;
    font-size: 0.61rem;
  }

  .hero {
    padding: 100px 20px 68px;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 25vw, 7rem);
  }

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

  .mint-clock {
    grid-template-columns: 1fr;
  }

  .mint-clock-value {
    margin-top: 4px !important;
  }

  .art-stamp {
    right: -10px;
    bottom: 16px;
    width: 76px;
    height: 76px;
    font-size: 0.57rem;
  }

  .art-number {
    left: -12px;
  }

  .section {
    padding-block: 80px;
  }

  .portrait-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .manifesto-art img {
    min-height: 250px;
  }

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

  .fact {
    min-height: 180px;
  }

  .security {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 50px;
    text-align: left;
  }

  .security-mark {
    font-size: 7rem;
    text-align: left;
  }

  .verification-page {
    padding: 12px;
  }

  .verification-card {
    padding: 28px 22px;
  }

  .verification-brand {
    margin-bottom: 44px;
  }

  .claim-steps li {
    grid-template-columns: auto 1fr;
  }

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

  .verification-footer-links {
    flex-direction: column;
    gap: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
