:root {
  --bg: #000000;
  --text: #e6e6e6;
  --muted: #6a6a6a;
  --dim: #9a9a9a;
  --ui-muted: #858585;
  --line: #171717;
  --code: #8fb8e6;
  --red: #ff4438;
  --mono: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: #1f1f1f; }

.wrap { max-width: 620px; margin: 0 auto; padding: 0 28px; }

/* header */
header { border-bottom: 1px solid var(--line); }
.nav {
  max-width: 620px; margin: 0 auto; padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
/* shared neon gradient for the top bar */
@keyframes gradshift { to { background-position: 200% 50%; } }
.brand, .ca, .ca .lbl, .ca .addr {
  background: linear-gradient(90deg, #2e9bff, #39d353, #a6f21a, #ff4438, #2e9bff);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: gradshift 6s linear infinite;
}
.brand {
  font-family: var(--mono); font-size: 15px; font-weight: 600;
  letter-spacing: 0.5px; text-decoration: none;
}
.links { display: flex; align-items: center; gap: 14px; }
.links a { display: inline-flex; transition: filter 0.15s; }
.links a:hover { filter: brightness(1.3) saturate(1.25); }
.network-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10px; color: var(--dim); white-space: nowrap;
}
.network-dot, .wallet-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--muted); flex: none;
}
.network-dot { background: #39d353; box-shadow: 0 0 0 3px rgba(57, 211, 83, .08); }
.wallet-button, .mint-button, .stepper button {
  font: inherit; color: var(--text); border: 1px solid #292929; background: #0a0a0a;
  cursor: pointer; transition: border-color .15s, background-color .15s, transform .15s;
}
.wallet-button {
  min-height: 34px; padding: 0 11px; border-radius: 6px; display: inline-flex;
  align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; white-space: nowrap;
}
.wallet-control { position: relative; }
.wallet-menu {
  position: absolute; z-index: 10; top: calc(100% + 8px); right: 0; width: 170px;
  border: 1px solid #292929; border-radius: 6px; background: #080909;
  padding: 5px; box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
}
.wallet-menu[hidden] { display: none; }
.wallet-menu button, .wallet-menu a {
  display: block; width: 100%; min-height: 34px; padding: 8px 9px; border: 0;
  border-radius: 3px; background: transparent; color: var(--dim); text-align: left;
  text-decoration: none; font-family: var(--mono); font-size: 10px; cursor: pointer;
}
.wallet-menu button:hover, .wallet-menu a:hover { background: #121313; color: var(--text); }
.wallet-menu .disconnect-action { color: #ff8c84; border-top: 1px solid var(--line); border-radius: 0 0 3px 3px; }
.wallet-menu button:focus-visible, .wallet-menu a:focus-visible { outline: 2px solid var(--code); outline-offset: -2px; }
.wallet-button:hover:not(:disabled), .mint-button:hover:not(:disabled), .stepper button:hover:not(:disabled) { border-color: #555; background: #111; }
.wallet-button:active, .mint-button:active:not(:disabled), .stepper button:active { transform: translateY(1px); }
.wallet-button:disabled, .stepper button:disabled { color: #555; cursor: not-allowed; }
.wallet-button.connected .wallet-dot { background: #39d353; }
.wallet-button.wrong-network .wallet-dot { background: var(--red); }
.wallet-button:focus-visible, .mint-button:focus-visible, .stepper button:focus-visible, .links a:focus-visible {
  outline: 2px solid var(--code); outline-offset: 3px;
}

/* contract address */
.ca {
  display: flex; align-items: center; gap: 6px; min-width: 0;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.3px;
}
.ca .addr {
  display: block; max-width: 150px; overflow: hidden; padding: 0; border: 0;
  background-color: transparent; text-overflow: ellipsis; white-space: nowrap;
  font: inherit; text-align: left; cursor: copy;
}
.ca .addr:hover { filter: brightness(1.25); }
.ca .addr:focus-visible { outline: 2px solid var(--code); outline-offset: 3px; }

/* logo */
.logo { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 96px 0 72px; }
.logo img { width: 200px; height: auto; display: block; }
.logo-name { margin-top: 18px; color: var(--text); font-family: var(--mono); font-size: 17px; font-weight: 600; }
.logo-tag { margin-top: 4px; color: var(--ui-muted); font-family: var(--mono); font-size: 10px; }

/* first-read NFT signal */
.launch-signal {
  display: grid; grid-template-columns: 1.2fr 1fr 1.45fr auto; align-items: stretch;
  margin: -18px 0 52px; border-block: 1px solid #273026; font-family: var(--mono);
}
.launch-signal > div { min-height: 76px; padding: 13px 14px; border-right: 1px solid #273026; }
.launch-signal span, .launch-signal small { display: block; color: var(--ui-muted); font-size: 9px; line-height: 1.45; }
.launch-signal strong { display: block; color: var(--text); font-size: 14px; font-weight: 600; }
.signal-product strong { color: var(--green, #a6f21a); font-size: 22px; line-height: 1.1; }
.signal-mint strong { color: #a6f21a; }
.signal-loop { display: grid; align-content: center; gap: 4px; }
.signal-loop span { display: flex; align-items: baseline; gap: 6px; }
.signal-loop span strong { display: inline; color: #a6f21a; font-size: 12px; }
.signal-loop span:first-child strong { color: #ff7066; }
.launch-signal > a {
  display: grid; place-items: center; min-width: 82px; padding: 12px;
  color: #091000; background: #a6f21a; text-decoration: none; font-size: 10px; font-weight: 600;
}
.launch-signal > a:hover { filter: brightness(1.08); }
.launch-signal > a:focus-visible { outline: 2px solid var(--code); outline-offset: 3px; }

/* dev note */
.devnote { position: relative; padding: 2px 0 2px 22px; margin-bottom: 8px; }
.devnote::before {
  content: ""; position: absolute; left: 0; top: 3px; bottom: 3px; width: 2px; border-radius: 2px;
  background: linear-gradient(180deg, #2e9bff, #39d353, #a6f21a, #ff4438);
}
.devnote h2 { margin-bottom: 16px; }
.devnote p { color: var(--dim); margin: 0 0 14px; font-size: 15px; }
.devnote p:last-child { margin-bottom: 0; }
.devnote em { font-style: normal; color: var(--text); }
.devnote .sig { font-family: var(--mono); font-size: 13px; color: var(--muted); margin-top: 18px; }

/* intro */
.intro { padding-bottom: 8px; }
.intro p {
  font-size: 17px; line-height: 1.75; margin: 0; letter-spacing: -0.1px;
  background: linear-gradient(90deg, #2e9bff, #39d353, #a6f21a, #ff4438, #2e9bff);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: gradshift 8s linear infinite;
}
.intro code.f { -webkit-text-fill-color: var(--code); }

code {
  font-family: var(--mono); font-size: 0.88em; color: #cfcfcf;
  background: #0b0b0b; border: 1px solid var(--line); border-radius: 5px; padding: 1px 6px;
}
/* the one accented value on the whole site */
code.f { color: var(--code); }

hr { border: none; border-top: 1px solid var(--line); margin: 48px 0; }

/* wallet and mint tool */
.mint {
  position: relative; left: 50%; transform: translateX(-50%);
  width: min(1080px, calc(100vw - 32px));
}
.mint > h2, .mint > .section-lead { max-width: 620px; margin-left: auto; margin-right: auto; }
.section-lead { color: var(--dim); margin: 0 0 22px; }
.mint-lab {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  border: 1px solid #1d6094; border-radius: 8px; overflow: hidden;
  background-color: #040910;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(50, 156, 229, .025) 4px);
}
.mint-primary { padding: 34px; border-right: 1px solid #1d6094; }
.collection-intro { margin-bottom: 28px; }
.collection-kicker { color: #43d9e8; font-family: var(--mono); font-size: 11px; }
.collection-intro h3 { margin: 10px 0 9px; color: #68bdf2; font-family: var(--mono); font-size: 26px; font-weight: 600; }
.collection-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 15px; }
.collection-tags span {
  padding: 3px 7px; border: 1px solid #19456a; border-radius: 3px;
  background: #07131f; color: #7bc7f5; font-family: var(--mono); font-size: 9px;
}
.collection-intro p { max-width: 60ch; margin: 0; color: #a8c2cf; font-family: var(--mono); font-size: 12px; line-height: 1.65; }
.mint-console {
  border: 1px solid #252525; border-radius: 8px; background: #050606;
  overflow: hidden; margin: 0;
}
.mint-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  padding: 18px 20px; border-bottom: 1px solid var(--line);
}
.mint-name { display: block; color: var(--text); font-family: var(--mono); font-size: 14px; }
.mint-type { display: block; color: var(--ui-muted); font-size: 12px; margin-top: 2px; }
.stage {
  color: #a6f21a; border: 1px solid #263119; border-radius: 4px; background: #0c1009;
  padding: 3px 7px; font-family: var(--mono); font-size: 9px; white-space: nowrap;
}
.mint-status-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 12px; border-bottom: 1px solid var(--line); }
.mint-status-grid > div { min-width: 0; padding: 10px; border: 1px solid #202720; border-radius: 4px; background: #080a08; }
.mint-status-grid span { display: block; margin-bottom: 4px; color: var(--ui-muted); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.mint-status-grid strong {
  display: block; overflow: hidden; color: var(--dim); font-family: var(--mono); font-size: 10px;
  font-weight: 600; text-overflow: ellipsis; white-space: nowrap;
}
.mint-status-grid strong.good { color: #9bd9ad; }
.wallet-readout { margin: 0; padding: 6px 20px; font-family: var(--mono); font-size: 11px; }
.wallet-readout > div { display: grid; grid-template-columns: 86px 1fr; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.wallet-readout > div:last-child { border-bottom: 0; }
.wallet-readout dt { color: var(--ui-muted); }
.wallet-readout dd { margin: 0; color: var(--dim); text-align: right; overflow-wrap: anywhere; }
.wallet-readout dd.good { color: #9bd9ad; }
.wallet-readout dd.bad { color: #ff8c84; }
.mint-controls {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: end;
  padding: 16px 20px; border-top: 1px solid var(--line);
}
.control-label { display: block; color: var(--ui-muted); font-family: var(--mono); font-size: 10px; margin-bottom: 7px; }
.stepper { display: grid; grid-template-columns: 34px 42px 34px; width: max-content; border: 1px solid #292929; border-radius: 6px; overflow: hidden; }
.stepper button { width: 34px; height: 34px; border: 0; border-radius: 0; font-family: var(--mono); font-size: 17px; }
.stepper output { display: grid; place-items: center; height: 34px; border-inline: 1px solid #292929; font-family: var(--mono); font-size: 12px; }
.mint-summary { text-align: right; }
.mint-summary strong { display: block; min-height: 34px; line-height: 34px; font-family: var(--mono); font-size: 12px; font-weight: 500; }
.mint-button {
  width: calc(100% - 40px); min-height: 42px; margin: 0 20px; border-radius: 6px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
}
.mint-button:disabled { color: #555; border-color: var(--line); background: #080808; cursor: not-allowed; }
.wallet-notice { min-height: 38px; margin: 12px 20px 16px; color: var(--ui-muted); font-size: 11px; line-height: 1.55; }
.wallet-notice.error { color: #ff8c84; }
.wallet-notice.success { color: #9bd9ad; }
.nft-studio { min-width: 0; padding: 22px; background: #040a12; }
.nft-art-frame {
  position: relative; width: 100%; aspect-ratio: 1; overflow: hidden;
  border: 1px solid #329ce5; border-radius: 6px; background: #050b14;
}
.nft-art-frame canvas { width: 100%; height: 100%; display: block; image-rendering: pixelated; }
.nft-art-frame > span {
  position: absolute; left: 10px; bottom: 8px; color: #baff00;
  font-family: var(--mono); font-size: 10px; text-shadow: 0 1px #000;
}
.nft-identity { margin: 14px 0 12px; font-family: var(--mono); }
.nft-identity > span { color: #68bdf2; font-size: 8px; text-transform: uppercase; }
.nft-identity h3 { margin: 3px 0; color: var(--text); font-size: 21px; font-weight: 500; }
.nft-identity h3 strong { color: #dce8ef; font-weight: 500; }
.nft-identity p { margin: 0; color: var(--ui-muted); font-size: 10px; }
.nft-randomizer { margin-bottom: 11px; }
.nft-randomizer > label { display: block; margin-bottom: 5px; color: var(--ui-muted); font-family: var(--mono); font-size: 8px; }
.nft-randomizer > div { display: grid; grid-template-columns: 120px 1fr; gap: 7px; }
.nft-randomizer input, .nft-randomizer button {
  min-width: 0; min-height: 36px; border: 1px solid #1d6094; border-radius: 4px;
  font-family: var(--mono); font-size: 10px;
}
.nft-randomizer input { padding: 0 10px; background: #090c09; color: #baff00; outline: none; }
.nft-randomizer input:focus { border-color: #baff00; }
.nft-randomizer button { background: #329ce5; color: #04101a; cursor: pointer; }
.nft-randomizer button:hover { filter: brightness(1.08); }
.nft-randomizer button:active { transform: translateY(1px); }
.nft-randomizer button:focus-visible, .nft-thumb:focus-visible { outline: 2px solid var(--code); outline-offset: 3px; }
.trait-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 0; }
.trait-grid > div { min-width: 0; min-height: 51px; padding: 8px; border: 1px solid #19456a; border-radius: 4px; background: #060d15; }
.trait-grid dt { color: #617064; font-family: var(--mono); font-size: 7px; text-transform: uppercase; }
.trait-grid dd { margin: 3px 0 0; overflow-wrap: anywhere; color: #d2ddd5; font-family: var(--mono); font-size: 9px; line-height: 1.35; }
.nft-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 12px; }
.nft-thumb {
  position: relative; min-width: 0; aspect-ratio: 1; overflow: hidden; padding: 0;
  border: 1px solid #293326; border-radius: 3px; background: #050706; cursor: pointer;
}
.nft-thumb.active { border-color: #329ce5; }
.nft-thumb canvas { width: 100%; height: 100%; display: block; image-rendering: pixelated; }
.nft-thumb span {
  position: absolute; left: 4px; bottom: 3px; padding: 1px 3px;
  background: rgba(0, 0, 0, .72); color: #dce8ef; font-family: var(--mono); font-size: 7px;
}
.mint-economy { max-width: 620px; margin: 42px auto 0; }
.allocation-head { display: flex; justify-content: space-between; color: var(--ui-muted); font-family: var(--mono); font-size: 10px; margin-bottom: 8px; }
.allocation { margin: 0; font-family: var(--mono); }
.allocation > div { display: grid; grid-template-columns: 1fr 42px; align-items: center; gap: 12px; padding: 9px 0; border-top: 1px solid var(--line); }
.allocation dt { display: flex; align-items: center; gap: 10px; color: var(--dim); font-size: 12px; }
.allocation dd { margin: 0; color: var(--text); font-size: 12px; text-align: right; }
.share { display: block; width: 60px; height: 3px; background: #2e9bff; }
.share.s2 { width: 42px; background: #39d353; }
.share.s3 { width: 42px; background: #ff4438; }
.share.s4 { width: 28px; background: #a6f21a; }
.share.s5 { width: 28px; background: #7ad7ff; }
.proposal-note { color: var(--ui-muted); font-size: 11px; margin: 10px 0 0; }
.token-loop {
  display: grid; grid-template-columns: 1fr 1fr; margin-top: 22px;
  border: 1px solid #292929; border-radius: 8px; overflow: hidden; background: #050606;
}
.token-event { min-height: 118px; padding: 18px; }
.token-event + .token-event { border-left: 1px solid #292929; }
.token-event strong {
  display: block; margin-bottom: 8px; font-family: var(--mono);
  font-size: 18px; line-height: 1.2; font-weight: 600;
}
.token-event span { display: block; color: var(--dim); font-size: 11px; line-height: 1.55; }
.burn-event strong { color: #ff7066; }
.reward-event strong { color: #a6f21a; }
.holder-utility { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.holder-utility h3 {
  margin: 0 0 12px; color: var(--text); font-family: var(--mono);
  font-size: 12px; font-weight: 600;
}
.utility-list { margin: 0; }
.utility-list > div {
  display: grid; grid-template-columns: 130px 1fr; gap: 16px;
  padding: 11px 0; border-top: 1px solid var(--line);
}
.utility-list dt { color: #c7dbe8; font-family: var(--mono); font-size: 11px; }
.utility-list dd { margin: 0; color: var(--dim); font-size: 12px; line-height: 1.55; }
.utility-list .utility-emphasis dt { color: #a6f21a; }

/* proof flywheel */
.flywheel-track { margin: 26px 0 20px; padding: 0; list-style: none; }
.flywheel-track li {
  position: relative; display: grid; grid-template-columns: 92px 1fr; gap: 20px;
  min-height: 58px; padding-bottom: 16px;
}
.flywheel-track li:not(:last-child)::after {
  content: ""; position: absolute; left: 41px; top: 31px; bottom: 1px; width: 1px;
  background: linear-gradient(#33404a, #171717);
}
.flywheel-mark {
  position: relative; z-index: 1; display: grid; place-items: center; align-self: start;
  width: 84px; min-height: 30px; border: 1px solid #29343c; border-radius: 5px;
  color: #c7dbe8; background: #070a0c; font-family: var(--mono); font-size: 11px;
}
.flywheel-track p { margin: 3px 0 0; color: var(--dim); font-size: 13px; line-height: 1.55; }
.guardrail { display: flex; flex-wrap: wrap; gap: 8px 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.guardrail span { color: var(--ui-muted); font-family: var(--mono); font-size: 10px; }
.guardrail span::before { content: "×"; color: var(--red); margin-right: 6px; }

/* section headings */
h2 {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted);
  margin: 0 0 20px; display: flex; align-items: center; gap: 9px;
}
h2::before {
  content: ""; width: 16px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, #2e9bff, #a6f21a);
}

/* ascii diagrams */
.asciiart {
  font-family: var(--mono); font-size: 13px; line-height: 1.55;
  white-space: pre; overflow-x: auto; color: var(--dim);
  border: 1px solid var(--line); border-radius: 10px;
  background: #060809; padding: 18px 20px; margin: 4px 0 14px;
}
.asciiart .flow { color: #47606e; }
.asciiart .k { color: #d3e2f0; }
.asciiart .f { color: var(--code); }
.asciiart .hit { color: var(--red); }
.asciiart .cap { color: var(--muted); }
.dcap { font-family: var(--mono); font-size: 11px; color: var(--muted); margin: 0 0 26px; }

/* claim callout */
.claim {
  position: relative; border: 1px solid var(--line); border-radius: 12px;
  background: #070809; padding: 18px 22px 18px 26px; margin: 4px 0 22px;
  color: var(--text); font-size: 15.5px; line-height: 1.7;
}
.claim::before {
  content: ""; position: absolute; left: 0; top: 10px; bottom: 10px; width: 3px;
  border-radius: 3px; background: linear-gradient(180deg, #2e9bff, #39d353, #a6f21a, #ff4438);
}
.claim .f { font-family: var(--mono); color: var(--code); font-size: 0.92em; }

/* lore */
.lore p { color: var(--dim); margin: 0 0 18px; }
.lore em { font-style: normal; color: var(--text); }
.lore .cite { font-size: 13px; color: var(--muted); margin-top: 24px; }
.lore .cite a { color: var(--dim); text-decoration: none; border-bottom: 1px solid var(--line); }
.lore .cite a:hover { color: var(--text); border-bottom-color: var(--muted); }

/* diagrams */
.diagram { margin: 6px 0 30px; }
.diagram svg { width: 100%; height: auto; display: block; }
.diagram text { font-family: var(--mono); text-anchor: middle; fill: var(--dim); font-size: 12px; }
.diagram .node rect, .diagram .snode circle { fill: #070707; stroke: var(--line2); stroke-width: 1; }
.diagram .node.open rect { stroke-dasharray: 3 4; }
.diagram .node text, .diagram .snode text { fill: var(--text); font-size: 12.5px; }
.diagram .node .sub { fill: var(--muted); font-size: 9.5px; }
.diagram .snode.dead circle { stroke: #333; }
.diagram .snode.dead text { fill: var(--muted); }
.diagram text.acc { fill: var(--code); font-size: 12px; }
.diagram .lab { fill: var(--muted); font-size: 10.5px; }
.diagram line, .diagram path { stroke: #4f4f4f; stroke-width: 1; }
.diagram figcaption { font-family: var(--mono); font-size: 11px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }

/* prose sections */
.why p, .ledger p { color: var(--dim); margin: 0 0 18px; }
.why p:last-child, .ledger p:last-child { margin-bottom: 0; }

/* notes / qa */
.qa { padding: 16px 0; border-top: 1px solid var(--line); }
.qa:first-of-type { border-top: none; padding-top: 0; }
.qa .q { margin: 0 0 6px; color: var(--text); font-size: 14.5px; font-weight: 600; }
.qa .a { margin: 0; color: var(--dim); font-size: 14px; }

/* how it works */
.mech .step { display: grid; grid-template-columns: 40px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); }
.mech .step:first-of-type { border-top: none; padding-top: 0; }
.mech .step .n { font-family: var(--mono); font-size: 12px; color: var(--muted); padding-top: 3px; }
.mech h3 { margin: 0 0 6px; font-size: 14.5px; font-weight: 600; color: var(--text); }
.mech .step p { margin: 0; color: var(--dim); font-size: 14px; }

/* labelled rows (states, status) */
.srow { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); align-items: baseline; }
.srow:first-of-type { border-top: none; }
.srow .k { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.srow p { margin: 0; color: var(--dim); font-size: 14px; }

/* spec */
.spec dl { margin: 0; font-family: var(--mono); font-size: 13.5px; }
.spec dl > div {
  display: grid; grid-template-columns: 130px 1fr; gap: 16px;
  padding: 11px 0; border-top: 1px solid var(--line);
}
.spec dl > div:first-child { border-top: none; }
.spec dt { color: var(--muted); }
.spec dd { margin: 0; color: var(--dim); }

/* falling owl eyes */
.eyefield { position: fixed; top: 0; bottom: 0; pointer-events: none; z-index: 3; overflow: hidden; }
.eyefield.left { left: 0; }
.eyefield.right { right: 0; }
.eye {
  position: absolute; font-family: var(--mono); font-size: 15px; line-height: 1;
  white-space: nowrap; filter: drop-shadow(0 0 5px currentColor); opacity: .85; user-select: none;
}
@media (max-width: 900px) {
  .eyefield { display: none; }
  .mint { width: min(720px, calc(100vw - 28px)); }
  .mint-lab { grid-template-columns: 1fr; }
  .mint-primary { border-right: 0; border-bottom: 1px solid #1d6094; }
  .nft-studio { padding: 26px; }
}

/* footer */
footer {
  max-width: 620px; margin: 96px auto 0; padding: 24px 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 12px; color: var(--muted);
}

@media (max-width: 560px) {
  .nav { align-items: center; }
  .network-tag { display: none; }
  .ca .addr { max-width: 76px; }
  .links { gap: 11px; }
  .wallet-button { padding: 0 9px; }
  .wallet-menu { position: fixed; top: 62px; right: 16px; }
  .logo { padding: 64px 0 52px; }
  .logo img { width: 160px; }
  .launch-signal { grid-template-columns: 1fr 1fr; margin-top: -8px; }
  .launch-signal > div { min-height: 68px; }
  .launch-signal .signal-mint { border-right: 0; }
  .launch-signal .signal-loop { border-top: 1px solid #273026; }
  .launch-signal > a { border-top: 1px solid #273026; }
  .intro p { font-size: 16px; }
  .mint { width: calc(100vw - 20px); }
  .mint-primary { padding: 18px; }
  .collection-intro h3 { font-size: 22px; }
  .collection-intro p { font-size: 11px; }
  .mint-head { align-items: center; }
  .mint-status-grid { grid-template-columns: 1fr 1fr; }
  .mint-status-grid > div:last-child { grid-column: 1 / -1; }
  .mint-controls { grid-template-columns: 1fr; gap: 12px; }
  .mint-summary { text-align: left; }
  .wallet-readout > div { grid-template-columns: 74px 1fr; }
  .nft-studio { padding: 14px; }
  .nft-randomizer > div { grid-template-columns: 92px 1fr; }
  .trait-grid { grid-template-columns: 1fr 1fr; }
  .utility-list > div { grid-template-columns: 92px 1fr; gap: 12px; }
  .allocation-head span:last-child { display: none; }
  .token-loop { grid-template-columns: 1fr; }
  .token-event { min-height: 0; }
  .token-event + .token-event { border-left: 0; border-top: 1px solid #292929; }
  .flywheel-track li { grid-template-columns: 76px 1fr; gap: 14px; }
  .flywheel-mark { width: 68px; }
  .flywheel-track li:not(:last-child)::after { left: 33px; }
  .spec dl > div,
  .srow { grid-template-columns: 92px 1fr; gap: 12px; }
  footer { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .brand, .ca, .ca .lbl, .ca .addr, .intro p { animation: none; }
}
