:root {
  color-scheme: light;
  --bg: #fbfaf7;
  --ink: #23211f;
  --muted: #706b63;
  --line: rgba(35, 33, 31, 0.12);
  --mint: #59d6c7;
  --coral: #ff6f61;
  --sun: #ffd56a;
  --violet: #7b61ff;
  --paper: #ffffff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 213, 106, 0.45), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(89, 214, 199, 0.34), transparent 24rem),
    linear-gradient(135deg, #fffdf7 0%, var(--bg) 52%, #f4fbfa 100%);
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 0 42px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #102421;
  background: var(--mint);
  border: 2px solid rgba(35, 33, 31, 0.08);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(89, 214, 199, 0.28);
}

.domain {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(36px, 7vw, 84px);
  min-height: calc(100vh - 220px);
  padding: 64px 0 72px;
}

.status {
  width: fit-content;
  margin: 0 0 22px;
  padding: 8px 12px;
  color: #23423e;
  background: rgba(89, 214, 199, 0.2);
  border: 1px solid rgba(89, 214, 199, 0.42);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 7.4vw, 88px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

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

.actions span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: #4e4942;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.actions .primary-chip {
  color: #12100e;
  background: var(--sun);
  border-color: rgba(35, 33, 31, 0.08);
}

.card-stage {
  position: relative;
  min-height: 440px;
}

.show-card {
  position: absolute;
  border: 1px solid rgba(35, 33, 31, 0.12);
  border-radius: 24px;
  box-shadow: 0 28px 72px rgba(35, 33, 31, 0.16);
}

.show-card-main {
  z-index: 2;
  right: 28px;
  top: 34px;
  display: flex;
  width: min(320px, 84vw);
  height: 420px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: #141210;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 48% 35%, rgba(255, 213, 106, 0.95), transparent 7rem),
    radial-gradient(circle at 70% 42%, rgba(123, 97, 255, 0.75), transparent 9rem),
    linear-gradient(145deg, #59d6c7, #f8f4e6 64%, #ff8b80);
  overflow: hidden;
}

.show-card-main::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  pointer-events: none;
}

.card-topline {
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: rgba(20, 18, 16, 0.64);
  font-size: 12px;
  font-weight: 900;
}

.spark {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 42px;
  transform: translate(-50%, -50%) rotate(18deg);
}

.show-card h2 {
  z-index: 1;
  margin: auto 0 8px;
  font-size: 34px;
  line-height: 1;
}

.show-card p {
  z-index: 1;
  max-width: 210px;
  margin: 0;
  color: rgba(20, 18, 16, 0.68);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.show-card-back {
  right: 120px;
  top: 78px;
  width: 250px;
  height: 350px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.28) 0 10px, transparent 10px 20px),
    var(--violet);
  transform: rotate(-13deg);
}

.mini-orbit {
  position: absolute;
  inset: 86px 50px;
  border: 12px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
}

.notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.notes div {
  min-height: 112px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(35, 33, 31, 0.08);
  border-radius: 18px;
}

.notes strong,
.notes span {
  display: block;
}

.notes strong {
  margin-bottom: 10px;
  font-size: 17px;
}

.notes span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 28px, 680px);
    padding-top: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 44px 0 42px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .card-stage {
    min-height: 380px;
  }

  .show-card-main {
    left: 50%;
    right: auto;
    top: 0;
    width: min(310px, 88vw);
    height: 390px;
    transform: translateX(-50%);
  }

  .show-card-back {
    left: calc(50% - 120px);
    right: auto;
    top: 32px;
    width: 230px;
    height: 318px;
  }

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