:root {
  color-scheme: dark;
  --lime: oklch(91% 0.29 128);
  --lime-deep: oklch(72% 0.24 128);
  --gold: oklch(81% 0.17 82);
  --gold-deep: oklch(63% 0.16 72);
  --violet: oklch(66% 0.21 306);
  --black: oklch(5% 0.025 120);
  --ink: oklch(10% 0.04 125);
  --text: oklch(96% 0.035 98);
  --muted: oklch(79% 0.07 115);
  --line: oklch(90% 0.26 128 / .24);
  --display: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  --serif: "Noto Serif SC", "Songti SC", serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  color: var(--text);
  font-family: var(--serif);
  background:
    radial-gradient(circle at 50% -10%, oklch(91% 0.29 128 / .28), transparent 34rem),
    radial-gradient(circle at 92% 22%, oklch(66% 0.21 306 / .18), transparent 32rem),
    linear-gradient(180deg, oklch(9% 0.04 126), var(--black) 52%, oklch(8% 0.035 80));
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, oklch(92% 0.28 128 / .035) 1px, transparent 1px),
    linear-gradient(oklch(92% 0.28 128 / .035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.stage-glow {
  position: fixed;
  inset: auto -20% -30% -20%;
  height: 52vh;
  pointer-events: none;
  background: radial-gradient(ellipse at center, oklch(88% 0.27 128 / .24), transparent 62%);
  filter: blur(18px);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
a,
button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
img,
video,
canvas {
  max-width: 100%;
}

.cover-copy,
.butterfly-stage,
.mint-title,
.mint-board,
.yield-copy,
.yield-visual,
.proof-aside,
.proof-list,
.story-line,
.wallet-actions {
  min-width: 0;
}

.topbar,
main,
footer {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px max(clamp(18px, 4vw, 54px), env(safe-area-inset-right)) 18px max(clamp(18px, 4vw, 54px), env(safe-area-inset-left));
  background: oklch(5% 0.025 120 / .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .18em;
}

.wordmark img {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 0 34px oklch(90% 0.28 128 / .38);
}

nav {
  display: flex;
  gap: 34px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: .08em;
}

nav a:hover { color: var(--lime); }

.wallet-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.connect {
  justify-self: end;
  min-height: 46px;
  padding: 0 20px;
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  cursor: pointer;
  box-shadow: 0 0 36px oklch(91% 0.29 128 / .24);
  white-space: nowrap;
}

.connect:focus-visible,
.enter:focus-visible,
.verify:focus-visible,
.mint-action:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.secondary-connect {
  color: var(--lime);
  border: 1px solid var(--line);
  background: oklch(12% 0.04 125 / .68);
  box-shadow: none;
}

.connect.is-ok {
  background: var(--gold);
}

main {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.cover {
  min-height: min(860px, calc(100dvh - 84px));
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
  padding: clamp(34px, 6vw, 88px) 0;
}

.edition,
.mint-title span,
.yield-copy span,
.proof-aside span {
  display: block;
  color: var(--lime);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  margin: 18px 0 24px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(64px, 10.4vw, 154px);
  line-height: .82;
  letter-spacing: -.04em;
}

h1 span {
  color: var(--gold);
}

.slogan {
  max-width: 560px;
  color: oklch(88% 0.055 105);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.75;
  text-wrap: balance;
}

.slogan b {
  display: inline-block;
  margin-right: 6px;
  color: var(--lime);
  font-weight: 900;
  text-shadow: 0 0 24px oklch(91% 0.29 128 / .28);
}

.cover-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.enter,
.verify,
.mint-action {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  transition: transform .2s cubic-bezier(.22, 1, .36, 1);
}

.enter,
.mint-action {
  color: var(--ink);
  background: linear-gradient(135deg, var(--lime), oklch(84% 0.19 105));
  box-shadow: 0 18px 54px oklch(90% 0.28 128 / .28);
}

.verify {
  color: var(--lime);
  border: 1px solid var(--line);
  background: oklch(12% 0.04 125 / .55);
}

.enter:hover,
.verify:hover,
.mint-action:hover {
  transform: translateY(-2px);
}

.butterfly-stage {
  position: relative;
  min-height: clamp(390px, 46vw, 640px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.butterfly-stage::before {
  content: "";
  position: absolute;
  width: min(58%, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, oklch(81% 0.17 82 / .2), oklch(91% 0.29 128 / .08) 38%, transparent 68%);
  filter: blur(20px);
}

.butterfly-stage::after {
  content: "";
  position: absolute;
  width: min(108%, 820px);
  aspect-ratio: 1;
  border: 1px solid oklch(91% 0.29 128 / .26);
  border-radius: 50%;
  transform: scaleY(.55) rotate(-18deg);
}

.keyed-video,
.video-fallback {
  position: relative;
  z-index: 2;
  width: min(82%, 660px);
  aspect-ratio: 1.225;
  object-fit: contain;
  box-shadow: none;
}

.source-video {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.keyed-video {
  display: block;
  background: transparent;
  filter:
    saturate(1.05)
    contrast(1.03)
    drop-shadow(0 18px 28px oklch(75% 0.17 82 / .38))
    drop-shadow(0 0 34px oklch(81% 0.17 82 / .24));
}

.video-fallback {
  display: none;
}

.butterfly-stage::selection {
  background: transparent;
}

.butterfly-stage p {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 11%;
  margin: 0;
  padding: 12px 16px;
  color: var(--ink);
  border-radius: 999px;
  background: var(--gold);
  transform: rotate(-4deg);
}

.halo {
  position: absolute;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--violet), transparent 66%);
  filter: blur(24px);
  opacity: .18;
  right: 6%;
  top: 10%;
}

.mint-strip {
  display: grid;
  grid-template-columns: .62fr 1fr;
  gap: 24px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    linear-gradient(135deg, oklch(16% 0.05 124 / .88), oklch(8% 0.03 112 / .94)),
    radial-gradient(circle at 12% 30%, oklch(91% 0.29 128 / .14), transparent 30rem);
}

h2 {
  margin: 12px 0 0;
  font-size: clamp(38px, 5.2vw, 86px);
  line-height: .96;
  letter-spacing: -.05em;
}

.mint-board {
  align-self: end;
}

.meter-line {
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: oklch(4% 0.025 120 / .88);
  overflow: hidden;
}

.meter-line span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--gold));
}

.meter-text {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 16px 0 22px;
  color: var(--muted);
}

.meter-text b { color: var(--gold); }

.quick-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
}

.quick-facts div {
  padding: 24px;
  background: oklch(10% 0.035 120 / .92);
}

.quick-facts b {
  display: block;
  color: var(--lime);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
}

.quick-facts span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.story {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 86px;
}

.story-line {
  position: relative;
  min-height: 320px;
  padding: 28px;
  border: 1px solid oklch(91% 0.29 128 / .18);
  border-radius: 40px;
  background: oklch(12% 0.04 124 / .7);
  overflow: hidden;
}

.story-line::after {
  content: "";
  position: absolute;
  inset: auto -30% -38% auto;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  opacity: .12;
}

.story-line span {
  color: var(--gold);
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
}

.story-line h3 {
  margin: 90px 0 10px;
  font-size: 30px;
}

.story-line p,
.yield-visual p,
.proof-aside p {
  color: oklch(84% 0.06 110);
  line-height: 1.72;
}

.yield {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 28px;
  align-items: end;
  margin-top: 112px;
}

.yield-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.yield-visual article {
  min-height: 430px;
  padding: 34px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 80% 0%, oklch(91% 0.29 128 / .16), transparent 16rem),
    oklch(13% 0.04 124 / .84);
  border: 1px solid oklch(91% 0.29 128 / .18);
}

.yield-visual article:nth-child(2) {
  background:
    radial-gradient(circle at 80% 0%, oklch(66% 0.21 306 / .18), transparent 16rem),
    oklch(13% 0.04 124 / .84);
}

.yield-visual small {
  display: block;
  color: var(--lime);
  font-size: 96px;
  font-weight: 900;
  line-height: .85;
}

.yield-visual h3 {
  margin: 90px 0 14px;
  font-size: 32px;
}

.proof {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 18px;
  margin-top: 112px;
}

.proof-aside {
  padding: 28px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: oklch(12% 0.04 124 / .72);
}

.proof-aside h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.proof-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--line);
}

.proof-list div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 18px 22px;
  background: oklch(9% 0.032 120 / .94);
}

.proof-list span,
.wallet-state span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.proof-list b {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.proof-list em { font-style: normal; }

.wallet-state {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.wallet-state div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: oklch(10% 0.035 120 / .78);
}

.wallet-state b {
  display: block;
  margin-top: 8px;
  word-break: break-word;
}

footer {
  width: min(1240px, calc(100% - 36px));
  margin: 100px auto 0;
  padding: 32px 0 46px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (prefers-reduced-motion: no-preference) {
  .keyed-video,
  .video-fallback {
    animation: float 6s cubic-bezier(.22, 1, .36, 1) infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-16px) rotate(1.4deg); }
  }
}

@media (max-width: 1040px) {
  .topbar {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }
  nav { display: none; }
  .cover,
  .mint-strip,
  .yield,
  .proof {
    grid-template-columns: 1fr;
  }
  .butterfly-stage { min-height: 520px; }
  .cover {
    min-height: auto;
    padding-top: 44px;
  }
  h1 {
    max-width: 760px;
    font-size: clamp(72px, 15vw, 140px);
  }
  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .story {
    grid-template-columns: 1fr;
  }
  .story-line {
    min-height: auto;
  }
  .story-line h3 {
    margin-top: 44px;
  }
}

@media (max-width: 720px) {
  main,
  footer {
    width: min(100% - 28px, 1240px);
  }
  .topbar {
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 12px 14px;
  }
  .wordmark span { display: none; }
  .wordmark img {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }
  .wallet-actions {
    justify-self: end;
    width: auto;
    gap: 8px;
  }
  .connect {
    min-height: 44px;
    padding: 0 13px;
    font-size: 13px;
  }
  .cover { min-height: auto; }
  h1 {
    font-size: clamp(58px, 18vw, 96px);
    line-height: .86;
  }
  .edition,
  .mint-title span,
  .yield-copy span,
  .proof-aside span {
    font-size: 11px;
    letter-spacing: .18em;
  }
  .slogan {
    font-size: 17px;
    line-height: 1.68;
  }
  .butterfly-stage {
    min-height: clamp(300px, 78vw, 360px);
    margin-top: 6px;
  }
  .keyed-video,
  .video-fallback {
    width: 100%;
  }
  .butterfly-stage p {
    right: 3%;
    bottom: 7%;
    padding: 9px 12px;
    font-size: 12px;
  }
  .cover-actions,
  footer { flex-direction: column; }
  .enter,
  .verify,
  .mint-action { width: 100%; }

  .mint-strip {
    padding: 20px;
    border-radius: 30px;
  }
  h2 {
    font-size: clamp(34px, 12vw, 58px);
  }
  .meter-text {
    flex-direction: column;
  }
  .quick-facts,
  .story,
  .yield-visual,
  .wallet-state {
    grid-template-columns: 1fr;
  }
  .story {
    gap: 12px;
    margin-top: 52px;
  }
  .story-line {
    padding: 22px;
    border-radius: 28px;
  }
  .story-line span {
    font-size: 46px;
  }
  .story-line h3 {
    margin-top: 28px;
  }
  .yield {
    margin-top: 62px;
  }
  .yield-visual article {
    min-height: auto;
    padding: 24px;
    border-radius: 30px;
  }
  .yield-visual small {
    font-size: 62px;
  }
  .yield-visual h3 {
    margin-top: 42px;
  }
  .proof {
    margin-top: 62px;
  }
  .proof-list div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }
}

@media (max-width: 420px) {
  main,
  footer {
    width: min(100% - 20px, 1240px);
  }
  .topbar {
    gap: 8px;
  }
  .wallet-actions {
    gap: 6px;
  }
  .connect {
    min-height: 44px;
    padding: 0 10px;
    font-size: 12px;
  }
  h1 {
    font-size: clamp(50px, 17vw, 72px);
  }
  .slogan {
    font-size: 16px;
  }
  .cover-actions {
    margin-top: 24px;
  }
  .butterfly-stage {
    min-height: clamp(250px, 78vw, 300px);
  }
  .quick-facts div {
    padding: 18px;
  }
  .quick-facts b {
    font-size: 32px;
  }
}

@media (max-width: 360px) {
  main,
  footer {
    width: min(100% - 18px, 1240px);
  }
  .topbar {
    padding: 10px max(10px, env(safe-area-inset-right)) 10px max(10px, env(safe-area-inset-left));
  }
  .wordmark img {
    width: 40px;
    height: 40px;
  }
  .connect {
    padding: 0 9px;
    font-size: 11.5px;
  }
  h1 {
    font-size: clamp(46px, 17vw, 62px);
  }
  .slogan {
    font-size: 15px;
  }
  .butterfly-stage p {
    bottom: 5%;
    font-size: 11px;
  }
  .mint-strip,
  .story-line,
  .yield-visual article,
  .proof-aside,
  .wallet-state div {
    border-radius: 24px;
  }
}

@media (max-height: 720px) and (min-width: 1041px) {
  .cover {
    min-height: auto;
    padding-block: 34px;
  }
  h1 {
    font-size: clamp(64px, 9vw, 126px);
  }
  .butterfly-stage {
    min-height: clamp(390px, 43vw, 560px);
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .topbar {
    position: relative;
    min-height: 0;
    padding-block: 10px;
  }
  .wordmark img {
    width: 40px;
    height: 40px;
    border-radius: 15px;
  }
  .connect {
    min-height: 44px;
  }
  .cover {
    grid-template-columns: minmax(0, 1.02fr) minmax(250px, .98fr);
    gap: 22px;
    padding-top: 26px;
  }
  h1 {
    margin-block: 12px 16px;
    font-size: clamp(52px, 10vw, 78px);
  }
  .slogan {
    font-size: 15px;
    line-height: 1.5;
  }
  .cover-actions {
    margin-top: 18px;
  }
  .butterfly-stage {
    min-height: 260px;
  }
  .keyed-video,
  .video-fallback {
    width: min(92%, 380px);
  }
}

.pool-console {
  position: relative;
  margin-top: 26px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid oklch(81% 0.17 82 / .28);
  border-radius: 42px;
  background:
    radial-gradient(circle at 8% 8%, oklch(81% 0.17 82 / .18), transparent 24rem),
    radial-gradient(circle at 92% 12%, oklch(91% 0.29 128 / .12), transparent 28rem),
    linear-gradient(145deg, oklch(12% 0.04 118 / .92), oklch(6% 0.025 110 / .96));
  box-shadow: inset 0 1px 0 oklch(96% 0.035 98 / .08);
}

.console-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: 20px;
  align-items: end;
}

.console-head span,
.pool-card small {
  display: block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.console-head h2 {
  grid-column: 1;
  margin-top: 10px;
  font-size: clamp(40px, 5.8vw, 92px);
}

.console-head p {
  grid-column: 2;
  margin: 0 0 10px;
  color: oklch(84% 0.06 110);
  line-height: 1.75;
}

.pool-status {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
}

.pool-status div,
.mini-ledger div {
  min-width: 0;
  padding: 18px;
  background: oklch(9% 0.032 120 / .9);
}

.pool-status span,
.mini-ledger span,
.pool-card label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
}

.pool-status b,
.mini-ledger b {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 14px;
  word-break: break-word;
}

.pool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.pool-card {
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid oklch(91% 0.29 128 / .17);
  border-radius: 36px;
  background:
    linear-gradient(180deg, oklch(15% 0.045 124 / .86), oklch(8% 0.03 112 / .94));
}

.staking-card {
  border-color: oklch(66% 0.21 306 / .25);
  background:
    radial-gradient(circle at 88% 0%, oklch(66% 0.21 306 / .14), transparent 18rem),
    linear-gradient(180deg, oklch(15% 0.045 124 / .86), oklch(8% 0.03 112 / .94));
}

.pool-card h3 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.pool-card p {
  color: oklch(84% 0.06 110);
  line-height: 1.72;
}

.mini-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 20px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.pool-card label {
  margin-top: 12px;
}

.pool-card input {
  width: 100%;
  min-height: 50px;
  margin-top: 8px;
  padding: 0 15px;
  color: var(--text);
  border: 1px solid oklch(91% 0.29 128 / .18);
  border-radius: 18px;
  background: oklch(5% 0.025 120 / .72);
  outline: none;
}

.pool-card input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px oklch(81% 0.17 82 / .16);
}

.pool-actions,
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.claim-row {
  margin-bottom: 10px;
}

.ghost-action,
.solid-action {
  min-height: 50px;
  padding: 0 16px;
  border-radius: 18px;
  cursor: pointer;
  transition: transform .2s cubic-bezier(.22, 1, .36, 1), border-color .2s, background .2s;
}

.ghost-action {
  color: var(--gold);
  border: 1px solid oklch(81% 0.17 82 / .32);
  background: oklch(10% 0.035 120 / .68);
}

.solid-action {
  color: var(--ink);
  border: 0;
  background: linear-gradient(135deg, var(--gold), var(--lime));
  box-shadow: 0 14px 40px oklch(81% 0.17 82 / .18);
}

.solid-action.warn {
  background: linear-gradient(135deg, oklch(66% 0.21 306), var(--gold));
}

.ghost-action:hover,
.solid-action:hover {
  transform: translateY(-1px);
}

.ghost-action:focus-visible,
.solid-action:focus-visible,
.pool-card input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.inline-action {
  align-self: end;
}

.pool-note {
  margin: 16px 0 0;
  padding: 14px 18px;
  color: oklch(88% 0.055 105);
  border: 1px solid oklch(81% 0.17 82 / .22);
  border-radius: 20px;
  background: oklch(5% 0.025 120 / .48);
}

@media (max-width: 1040px) {
  .console-head,
  .pool-grid {
    grid-template-columns: 1fr;
  }
  .console-head p {
    grid-column: 1;
    margin-bottom: 0;
  }
  .pool-status {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .pool-console {
    padding: 20px;
    border-radius: 30px;
  }
  .pool-status,
  .mini-ledger,
  .pool-actions,
  .form-row {
    grid-template-columns: 1fr;
  }
  .pool-card {
    padding: 22px;
    border-radius: 28px;
  }
  .pool-card input,
  .ghost-action,
  .solid-action {
    min-height: 48px;
  }
}
