:root {
  --bg: #090908;
  --sidebar: #0d0d0c;
  --panel: #11110f;
  --panel-2: #161512;
  --line: #292822;
  --line-soft: #1c1b18;
  --text: #f2f0e9;
  --muted: #8e8a7f;
  --muted-2: #5f5c54;
  --lime: #a4ff4f;
  --orange: #f08a24;
  --orange-soft: rgba(240, 138, 36, 0.13);
  --sidebar-width: 228px;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 23%, rgba(240, 138, 36, 0.055), transparent 30rem),
    var(--bg);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px);
  background-size: 4px 4px, 68px 68px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 93%);
  z-index: -1;
}

button, a { font: inherit; color: inherit; }
a { text-decoration: none; }

.app { min-height: 100vh; }

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-width);
  padding: 20px 14px 15px;
  display: flex;
  flex-direction: column;
  background: rgba(13, 13, 12, 0.98);
  border-right: 1px solid var(--line);
  z-index: 20;
}

.brand {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 8px 19px;
  border-bottom: 1px solid var(--line);
}

.brand-badge {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #55452f;
  border-radius: 6px;
  color: var(--orange);
  background: #17120c;
  font: 900 13px var(--mono);
  letter-spacing: -0.08em;
}

.brand > span:last-child { display: grid; gap: 4px; }
.brand strong { font-size: 13px; letter-spacing: .11em; }
.brand small { color: var(--muted); font: 8px var(--mono); letter-spacing: .09em; }

.menu-label {
  margin: 19px 10px 8px;
  color: var(--muted-2);
  font: 8px var(--mono);
  letter-spacing: .16em;
}

.menu { display: grid; gap: 6px; }

.menu-item {
  width: 100%;
  min-height: 43px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: #99968d;
  text-align: left;
  font-size: 11px;
  font-weight: 730;
}

.menu-item:disabled { cursor: default; }

.menu-item.active {
  color: #fff3e4;
  border-color: #443521;
  background: #17120c;
  box-shadow: inset 3px 0 0 var(--orange);
}

.menu-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #34332e;
  border-radius: 5px;
  background: #0b0b0a;
  color: #aaa69d;
  font: 11px var(--mono);
}

.menu-item.active .menu-icon {
  color: var(--orange);
  border-color: #5d4529;
  background: #120e09;
}

.menu-status {
  margin-left: auto;
  padding: 3px 5px;
  border: 1px solid #34332e;
  border-radius: 4px;
  color: #67645e;
  font: 7px var(--mono);
  letter-spacing: .06em;
}

.menu-status.orange {
  color: #d99852;
  border-color: #573a1d;
  background: #171007;
}

.sidebar-spacer { flex: 1; }

.side-card {
  margin: 0 7px 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0b0a;
}

.side-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 11px;
  margin-bottom: 7px;
  border-bottom: 1px solid var(--line-soft);
  color: #b9b5aa;
  font: 8px var(--mono);
  letter-spacing: .1em;
}

.live-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(240, 138, 36, .65);
}

.pulse { animation: pulse 2s ease-in-out infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .38; transform: scale(.8); }
}

.side-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 0;
  color: var(--muted);
  font: 8px var(--mono);
}

.side-row strong { color: #d4d0c6; font-weight: 500; }
.copyright { margin: 0; text-align: center; color: #45433e; font: 7px var(--mono); }

.content {
  min-height: 100vh;
  margin-left: var(--sidebar-width);
  display: grid;
  grid-template-rows: 66px minmax(650px, 1fr) auto 40px;
}

.topbar {
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 8, .86);
  backdrop-filter: blur(14px);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font: 9px var(--mono);
  letter-spacing: .08em;
}

.breadcrumb i { color: #4c4942; font-style: normal; }
.breadcrumb strong { color: #ddd9cf; font-weight: 500; }

.launch-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid #45321d;
  border-radius: 6px;
  color: #d69b5d;
  background: #120e09;
  font: 8px var(--mono);
  letter-spacing: .07em;
}

.hero {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 58px 0 50px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(470px, 1.08fr);
  gap: 56px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font: 9px var(--mono);
  letter-spacing: .17em;
}

h1 {
  margin: 0;
  display: grid;
  font-size: clamp(64px, 7vw, 108px);
  line-height: .78;
  letter-spacing: -.075em;
}

h1 .accent {
  color: var(--orange);
  transform: translateX(1px);

  /*
    Use a deliberately heavier, cleaner face for the orange DESK word.
    The wider tracking keeps the S clearly readable instead of making
    it look compressed at large desktop sizes.
  */
  font-family: "Arial Black", "Segoe UI Black", Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -.035em;
  font-kerning: normal;
}

h2 {
  margin: 34px 0 19px;
  color: #bab5a9;
  font: 700 clamp(17px, 1.8vw, 25px) var(--mono);
  letter-spacing: .19em;
}

.intro {
  max-width: 590px;
  margin: 0;
  color: #98948a;
  font-size: 14px;
  line-height: 1.75;
}

.intro strong { color: #e7a45c; }

.fact-line {
  margin-top: 33px;
  padding: 20px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-line > div {
  padding: 0 18px;
  border-right: 1px solid var(--line);
}

.fact-line > div:first-child { padding-left: 0; }
.fact-line > div:last-child { border-right: 0; padding-right: 0; }

.fact-line strong {
  display: block;
  color: #eeeae0;
  font: 13px var(--mono);
}

.fact-line span {
  display: block;
  margin-top: 6px;
  color: var(--muted-2);
  font: 7px var(--mono);
  letter-spacing: .09em;
}

.small-note {
  margin: 19px 0 0;
  color: #625e55;
  font: 8px var(--mono);
  letter-spacing: .08em;
}

.collection-stage {
  min-height: 560px;
  padding: 18px 18px 14px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(240, 138, 36, .025), transparent 45%),
    #0d0d0b;
  overflow: hidden;
}

.collection-stage::before {
  content: "";
  position: absolute;
  inset: 45px 0 52px;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
  pointer-events: none;
}

.stage-head {
  min-height: 28px;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6c685f;
  font: 8px var(--mono);
  letter-spacing: .12em;
}

.card-stack {
  min-height: 445px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.nft-card {
  position: absolute;
  border: 1px solid #38362f;
  border-radius: 10px;
  background: #11110f;
  overflow: hidden;
  box-shadow: 0 28px 75px rgba(0,0,0,.5);
}

.nft-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  image-rendering: pixelated;
}

.card-main {
  width: min(350px, 68%);
  aspect-ratio: 1 / 1.19;
  z-index: 3;
  border-color: #5c4328;
  transition: transform .28s ease, opacity .2s ease;
}

.card-main img {
  height: calc(100% - 55px);
  object-position: center top;
}

.card-main.changing {
  transform: translateY(6px) scale(.985);
  opacity: .28;
}

.card-back {
  width: min(260px, 51%);
  aspect-ratio: 1 / 1;
  opacity: .42;
  filter: saturate(.65) brightness(.63);
}

.card-left { transform: translateX(-62%) rotate(-6deg); }
.card-right { transform: translateX(62%) rotate(6deg); }

.rarity-tag {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 4;
  padding: 6px 8px;
  border: 1px solid rgba(0,0,0,.38);
  border-radius: 4px;
  color: #0a0908;
  background: var(--rarity-color, #c5782e);
  font: 900 8px var(--mono);
  letter-spacing: .1em;
  box-shadow: 0 6px 22px rgba(0,0,0,.25);
}

.card-footer {
  height: 55px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid #2a2924;
  background: #11110f;
}

.card-footer > div { display: grid; gap: 4px; }
.card-footer small { color: #666259; font: 7px var(--mono); letter-spacing: .08em; }
.card-footer strong { color: #e9e5db; font: 11px var(--mono); }
.basket-copy { text-align: right; }

.rarity-nav {
  min-height: 38px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.rarity-nav button {
  min-width: 0;
  padding: 8px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #292823;
  border-radius: 5px;
  color: #77736a;
  background: #0a0a09;
  cursor: pointer;
  font: 7px var(--mono);
  letter-spacing: .05em;
}

.rarity-nav button:hover,
.rarity-nav button.active {
  color: #e5e0d5;
  border-color: #514331;
  background: #13100c;
}

.rarity-dot {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #c5782e;
}

.rarity-dot.silver { background: #b7b7b3; }
.rarity-dot.gold { background: #f4cc21; }
.rarity-dot.legendary {
  background: linear-gradient(135deg, #f33, #ffb000 28%, #4ade80 52%, #42a5ff 74%, #b05cff);
}

.ticker {
  min-height: 50px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 52px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #878278;
  background: #0b0b0a;
  font: 9px var(--mono);
  letter-spacing: .11em;
}

.ticker i { color: #453d32; font-style: normal; }

.footer {
  padding: 0 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #4c4942;
  font: 8px var(--mono);
  letter-spacing: .08em;
}

.footer strong { color: #9d6d3d; font-weight: 500; }

@media (max-width: 1050px) {
  .hero {
    width: min(100% - 38px, 820px);
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 44px;
  }

  .hero-copy { max-width: 740px; }
  .collection-stage { min-height: 540px; }
}

@media (max-width: 720px) {
  :root { --sidebar-width: 0px; }

  .sidebar {
    position: fixed;
    width: 100%;
    height: 64px;
    inset: 0 0 auto;
    padding: 8px 10px;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
  }

  .brand {
    min-width: 152px;
    min-height: 46px;
    padding: 0 10px 0 0;
    border: 0;
  }

  .brand-badge { width: 35px; height: 35px; }
  .brand small, .menu-label, .sidebar-spacer, .side-card, .copyright { display: none; }
  .menu { display: flex; gap: 4px; }
  .menu-item { width: auto; min-width: 39px; min-height: 39px; padding: 0 7px; }
  .menu-item > span:not(.menu-icon) { display: none; }
  .menu-icon { border: 0; background: transparent; }

  .content {
    margin-left: 0;
    padding-top: 64px;
    grid-template-rows: 54px auto auto 38px;
  }

  .topbar { padding: 0 13px; }
  .breadcrumb span, .breadcrumb i { display: none; }
  .launch-status { padding: 7px 8px; font-size: 7px; }

  .hero {
    width: min(100% - 24px, 620px);
    padding: 35px 0 32px;
  }

  h1 { font-size: clamp(58px, 21vw, 88px); }
  h2 { margin-top: 28px; }
  .intro { font-size: 13px; }

  .fact-line { grid-template-columns: 1fr; }
  .fact-line > div {
    padding: 11px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .fact-line > div:last-child { border-bottom: 0; }

  .collection-stage { min-height: 470px; padding-inline: 11px; }
  .card-stack { min-height: 370px; }
  .card-main { width: min(300px, 73%); }
  .card-back { width: min(210px, 49%); }
  .rarity-nav { grid-template-columns: 1fr 1fr; }
  .ticker { justify-content: flex-start; overflow-x: auto; }
}
