:root {
  --bg: #050b12;
  --bg-soft: #07111b;
  --panel: rgba(9, 18, 29, 0.68);
  --panel-strong: rgba(10, 20, 32, 0.88);
  --line: rgba(215, 229, 244, 0.16);
  --line-bright: rgba(241, 190, 118, 0.58);
  --text: #f5f7fb;
  --muted: #a7b3c3;
  --faint: #6f7c8d;
  --gold: #f2bd75;
  --gold-strong: #ffcf82;
  --gold-soft: rgba(242, 189, 117, 0.18);
  --green: #55d48b;
  --blue: #78b7ff;
  --violet: #b49cff;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  background: #050b12;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 8%, rgba(217, 157, 87, 0.15), transparent 24rem),
    radial-gradient(circle at 20% 30%, rgba(85, 130, 176, 0.11), transparent 30rem),
    linear-gradient(180deg, #02060b 0%, var(--bg) 45%, #06111a 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 216, 154, 0.75) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(172, 205, 255, 0.42) 0 1px, transparent 1.4px);
  background-position:
    13% 18%,
    72% 42%;
  background-size:
    190px 220px,
    260px 300px;
  opacity: 0.22;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-shell {
  position: relative;
  min-height: 100vh;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px clamp(22px, 5vw, 58px);
  background: linear-gradient(180deg, rgba(2, 6, 11, 0.88), rgba(2, 6, 11, 0));
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    padding 0.25s ease;
}

.site-header.scrolled {
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(4, 10, 17, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand-block {
  display: inline-grid;
  gap: 7px;
  align-items: start;
}

.brand {
  position: relative;
  display: inline-block;
  color: #e6bd93;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 22px rgba(242, 189, 117, 0.38);
}

.brand-slogan {
  color: rgba(238, 231, 221, 0.62);
  font-size: clamp(0.52rem, 1.1vw, 0.68rem);
  font-weight: 650;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.2vw, 42px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-strong);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.moon-button,
.nav-toggle {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #f6f7fb;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.moon-button {
  width: 38px;
  height: 38px;
}

.moon-button:hover,
.nav-toggle:hover {
  border-color: rgba(242, 189, 117, 0.7);
  background: rgba(242, 189, 117, 0.1);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.section-band {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.layer-label {
  position: absolute;
  z-index: 4;
  top: 22px;
  left: clamp(22px, 5vw, 72px);
  color: rgba(242, 189, 117, 0.5);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-layer {
  top: 102px;
  left: clamp(22px, 7vw, 110px);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 120px clamp(22px, 7vw, 110px) 88px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(3, 8, 14, 0.98), rgba(3, 8, 14, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.eyebrow {
  min-height: 18px;
  margin: 0 0 8px;
  color: rgba(242, 189, 117, 0.72);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 820;
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 0 34px rgba(255, 255, 255, 0.12);
}

.hero h1 span {
  color: var(--gold);
  text-shadow: 0 0 26px rgba(242, 189, 117, 0.34);
}

.title-line {
  width: 46px;
  height: 2px;
  margin: 34px 0 26px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h2 {
  margin: 0 0 24px;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1.5;
}

.hero p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 2;
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: rgba(224, 232, 242, 0.74);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-status span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(242, 189, 117, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.hero-status span + span {
  color: rgba(242, 189, 117, 0.78);
  letter-spacing: 0.06em;
  text-transform: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 13px;
  font-weight: 760;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.button svg,
.text-link svg {
  margin-left: 10px;
  font-size: 1.2em;
}

.button-primary {
  color: #16120d;
  background: linear-gradient(135deg, #ffd58f, #eaa85e);
  box-shadow: 0 16px 35px rgba(235, 168, 94, 0.24);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(235, 168, 94, 0.34);
}

.button-secondary,
.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.025);
  color: #fff;
}

.button-secondary:hover,
.button-outline:hover {
  border-color: var(--line-bright);
  background: rgba(242, 189, 117, 0.08);
  transform: translateY(-2px);
}

.hero-visual {
  position: absolute;
  z-index: 1;
  top: 6%;
  right: -3%;
  width: min(66vw, 860px);
  height: 84vh;
  min-height: 620px;
  opacity: 0.95;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 4% 0;
  background:
    radial-gradient(circle at 57% 62%, rgba(255, 202, 128, 0.78), transparent 4%),
    radial-gradient(circle at 58% 64%, rgba(255, 181, 95, 0.45), transparent 16%),
    radial-gradient(ellipse at 58% 76%, rgba(242, 189, 117, 0.18), transparent 28%),
    linear-gradient(180deg, transparent 42%, rgba(9, 18, 29, 0.85) 100%);
  filter: blur(0.2px);
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: 44%;
  bottom: 18%;
  width: 24%;
  aspect-ratio: 1;
  border: 1px solid rgba(242, 189, 117, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(242, 189, 117, 0.16), transparent 34%),
    conic-gradient(from 210deg, transparent, rgba(242, 189, 117, 0.28), transparent 42%);
  box-shadow:
    inset 0 0 42px rgba(242, 189, 117, 0.045),
    0 0 58px rgba(242, 189, 117, 0.12);
  pointer-events: none;
  transform: rotate(-12deg);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(242, 189, 117, 0.55);
  border-radius: 50%;
  filter: drop-shadow(0 0 16px rgba(242, 189, 117, 0.36));
}

.orbit-one {
  top: 9%;
  left: 17%;
  width: 68%;
  aspect-ratio: 1;
  border-left-color: rgba(242, 189, 117, 0.12);
  border-bottom-color: rgba(242, 189, 117, 0.18);
  transform: rotate(-24deg);
}

.orbit-two {
  top: 4%;
  left: 8%;
  width: 88%;
  aspect-ratio: 1;
  border-color: rgba(242, 189, 117, 0.12);
  transform: rotate(-16deg);
}

.planet {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 30%, rgba(255, 213, 153, 0.42), transparent 14%),
    radial-gradient(circle at 34% 42%, #8b654d, #10131a 42%, #04070c 70%);
  box-shadow:
    inset -18px -18px 38px rgba(0, 0, 0, 0.72),
    0 0 55px rgba(242, 189, 117, 0.18);
}

.planet-large {
  top: 22%;
  right: 17%;
  width: 18%;
  aspect-ratio: 1;
}

.planet-small {
  top: 44%;
  right: 24%;
  width: 5%;
  aspect-ratio: 1;
}

.horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8%;
  height: 42%;
  background:
    linear-gradient(145deg, transparent 0 38%, rgba(23, 28, 35, 0.95) 39% 43%, transparent 44%),
    linear-gradient(35deg, transparent 0 43%, rgba(31, 33, 38, 0.98) 44% 48%, transparent 49%),
    linear-gradient(170deg, transparent 0 34%, rgba(15, 20, 29, 0.98) 35% 42%, transparent 43%),
    linear-gradient(180deg, transparent, rgba(4, 9, 15, 0.95));
  clip-path: polygon(0 62%, 9% 43%, 17% 56%, 26% 35%, 36% 58%, 46% 34%, 58% 60%, 70% 36%, 82% 59%, 92% 42%, 100% 61%, 100% 100%, 0 100%);
  opacity: 0.92;
}

.figure {
  position: absolute;
  z-index: 2;
  left: 55.5%;
  bottom: 22.5%;
  width: 10px;
  height: 74px;
  border-radius: 999px 999px 4px 4px;
  background: #05070a;
  box-shadow: 0 0 28px rgba(255, 220, 161, 0.5);
}

.figure::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #05070a;
  transform: translateX(-50%);
}

.figure::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -36px;
  width: 2px;
  height: 38px;
  background: rgba(255, 213, 153, 0.32);
  box-shadow:
    -10px 0 0 rgba(255, 213, 153, 0.08),
    10px 0 0 rgba(255, 213, 153, 0.08);
}

.quote-card {
  position: absolute;
  z-index: 4;
  right: clamp(24px, 6vw, 78px);
  bottom: 10%;
  width: min(240px, 28vw);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(7, 15, 25, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quote-mark {
  display: block;
  height: 24px;
  color: var(--gold);
  font-size: 3rem;
  font-weight: 850;
  line-height: 0.7;
}

.quote-card p {
  margin: 18px 0 20px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #f4f7fb;
}

.quote-line {
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  transform: translateX(-50%);
}

.mouse {
  position: relative;
  display: block;
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.mouse::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: wheel 1.7s ease-in-out infinite;
}

@keyframes wheel {
  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35%,
  65% {
    opacity: 1;
  }
  80% {
    transform: translate(-50%, 8px);
  }
}

.projects,
.timeline,
.mission,
.plans {
  padding: 64px clamp(22px, 5vw, 72px);
}

.section-heading,
.project-grid,
.timeline-inner,
.mission,
.plans-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}

.section-heading h2,
.mission h2,
.plans h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.2;
}

.section-heading h2::after,
.mission h2::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold);
}

.section-heading p,
.plans p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, color 0.2s ease;
}

.text-link:hover {
  color: var(--gold-strong);
  transform: translateX(3px);
}

.project-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.project-network::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 189, 117, 0.16), rgba(120, 183, 255, 0.08), transparent);
  pointer-events: none;
}

.project-card {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    var(--panel);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.project-node::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(242, 189, 117, 0.72);
  box-shadow: 0 0 18px rgba(242, 189, 117, 0.45);
}

.project-node::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 25px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 189, 117, 0.28), transparent);
  pointer-events: none;
}

.project-card:hover {
  border-color: rgba(242, 189, 117, 0.46);
  box-shadow:
    0 20px 62px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(242, 189, 117, 0.12);
  transform: translateY(-7px);
}

.project-card-world {
  border-color: rgba(242, 189, 117, 0.28);
  background:
    radial-gradient(circle at 52% 18%, rgba(125, 164, 219, 0.12), transparent 26%),
    radial-gradient(circle at 68% 86%, rgba(242, 189, 117, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(7, 10, 18, 0.26)),
    rgba(7, 12, 22, 0.78);
}

.project-card-light:hover {
  border-color: rgba(143, 212, 180, 0.42);
  box-shadow:
    0 20px 62px rgba(0, 0, 0, 0.32),
    0 0 42px rgba(118, 210, 164, 0.1);
}

.project-card-tool:hover {
  border-color: rgba(120, 183, 255, 0.4);
  box-shadow:
    0 20px 62px rgba(0, 0, 0, 0.32),
    0 0 42px rgba(120, 183, 255, 0.1);
}

.project-card-world:hover {
  border-color: rgba(242, 189, 117, 0.62);
  box-shadow:
    0 22px 68px rgba(0, 0, 0, 0.42),
    0 0 48px rgba(93, 141, 204, 0.12),
    0 0 46px rgba(242, 189, 117, 0.14);
}

.project-card-archive:hover {
  border-color: rgba(183, 161, 255, 0.4);
  box-shadow:
    0 20px 62px rgba(0, 0, 0, 0.32),
    0 0 42px rgba(183, 161, 255, 0.1);
}

.project-echo {
  position: absolute;
  z-index: 3;
  top: 32px;
  right: 30px;
  display: grid;
  justify-items: end;
  max-width: 70%;
  gap: 5px;
  color: rgba(224, 232, 242, 0.38);
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  opacity: 0.72;
  pointer-events: none;
  transition:
    color 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
}

.project-echo span + span {
  color: rgba(242, 189, 117, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.project-card:hover .project-echo {
  color: rgba(242, 189, 117, 0.74);
  opacity: 1;
  transform: translateY(-2px);
}

.project-card-tool:hover .project-echo {
  color: rgba(120, 183, 255, 0.72);
}

.project-card-world .project-echo span + span {
  color: rgba(147, 184, 230, 0.5);
}

.project-card-world:hover .project-echo {
  color: rgba(147, 184, 230, 0.8);
}

.project-art {
  position: relative;
  height: 170px;
  margin: 18px 18px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 213, 150, 0.2), transparent 18%),
    radial-gradient(circle at 78% 76%, rgba(169, 130, 255, 0.2), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015) 38%, rgba(5, 10, 17, 0.9)),
    #0b121e;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -42px 70px rgba(0, 0, 0, 0.28);
}

.project-art::before,
.project-art::after {
  content: "";
  position: absolute;
}

.project-art::before {
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.54;
  mask-image: linear-gradient(135deg, #000, transparent 78%);
}

.project-art::after {
  inset: 0;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.16), transparent 31%),
    radial-gradient(circle at 34% 34%, rgba(242, 189, 117, 0.28), transparent 16%),
    linear-gradient(180deg, transparent 58%, rgba(4, 8, 13, 0.64));
  pointer-events: none;
}

.art-planet {
  background:
    radial-gradient(circle at 47% 48%, #0d1119 0 18%, transparent 19%),
    radial-gradient(circle at 45% 45%, rgba(255, 217, 160, 0.84) 0 20%, transparent 21%),
    radial-gradient(circle at 47% 48%, #11192a 0 31%, transparent 32%),
    radial-gradient(circle at 24% 18%, rgba(255, 213, 150, 0.2), transparent 18%),
    radial-gradient(circle at 78% 76%, rgba(169, 130, 255, 0.2), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015) 38%, rgba(5, 10, 17, 0.9)),
    #0b121e;
}

.art-data {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 36%),
    radial-gradient(circle at 74% 22%, rgba(242, 189, 117, 0.2), transparent 18%),
    radial-gradient(circle at 26% 82%, rgba(169, 130, 255, 0.2), transparent 24%),
    #0b121e;
}

.art-data::after {
  inset: 0;
  background:
    linear-gradient(to top, rgba(168, 132, 255, 0.78) 0 36%, transparent 36%),
    linear-gradient(to top, rgba(242, 189, 117, 0.78) 0 58%, transparent 58%),
    linear-gradient(to top, rgba(120, 183, 255, 0.62) 0 44%, transparent 44%),
    linear-gradient(to top, rgba(168, 132, 255, 0.68) 0 72%, transparent 72%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.16), transparent 31%),
    linear-gradient(180deg, transparent 58%, rgba(4, 8, 13, 0.64));
  background-position:
    22% 72%,
    39% 72%,
    56% 72%,
    73% 72%,
    0 0,
    0 0;
  background-repeat: no-repeat;
  background-size:
    11% 46%,
    11% 46%,
    11% 46%,
    11% 46%,
    100% 100%,
    100% 100%;
}

.art-gate {
  background:
    linear-gradient(180deg, rgba(124, 165, 219, 0.1) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 50% 72%, rgba(242, 189, 117, 0.28), transparent 20%),
    radial-gradient(circle at 50% 44%, rgba(92, 145, 210, 0.3), transparent 30%),
    linear-gradient(180deg, rgba(11, 19, 32, 0.22), rgba(2, 5, 10, 0.28)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015) 38%, rgba(5, 10, 17, 0.9)),
    #0b121e;
  background-size:
    100% 12px,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%;
}

.art-gate::before {
  left: 50%;
  bottom: 24%;
  width: 68px;
  height: 112px;
  border: 2px solid rgba(255, 215, 167, 0.78);
  border-bottom: 0;
  border-radius: 42px 42px 0 0;
  background: linear-gradient(180deg, rgba(180, 156, 255, 0.34), rgba(242, 189, 117, 0.06));
  box-shadow:
    0 0 34px rgba(180, 156, 255, 0.42),
    inset 0 0 22px rgba(255, 255, 255, 0.13);
  transform: translateX(-50%);
}

.art-gate::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(137, 174, 223, 0.12) 0 1px, transparent 1px 10px),
    linear-gradient(145deg, transparent 0 42%, rgba(37, 31, 52, 0.68) 43% 48%, transparent 49%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.16), transparent 31%),
    linear-gradient(180deg, transparent 58%, rgba(4, 8, 13, 0.64));
  background-size:
    100% 10px,
    100% 100%,
    100% 100%,
    100% 100%;
  clip-path: none;
}

.art-dashboard {
  background:
    radial-gradient(circle at 77% 22%, rgba(242, 189, 117, 0.22), transparent 18%),
    radial-gradient(circle at 24% 80%, rgba(169, 130, 255, 0.22), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015) 38%, rgba(5, 10, 17, 0.9)),
    #0b121e;
}

.art-dashboard::before {
  inset: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(180, 156, 255, 0.24), transparent 42%),
    radial-gradient(circle at 82% 28%, rgba(242, 189, 117, 0.3), transparent 18%),
    rgba(255, 255, 255, 0.035);
}

.art-dashboard::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(168, 132, 255, 0.68) 0 24%, transparent 24% 32%, rgba(120, 183, 255, 0.6) 32% 58%, transparent 58% 66%, rgba(242, 189, 117, 0.7) 66% 100%) 28% 70% / 50% 24% no-repeat,
    linear-gradient(130deg, rgba(255, 255, 255, 0.16), transparent 31%),
    linear-gradient(180deg, transparent 58%, rgba(4, 8, 13, 0.64));
}

.project-body {
  padding: 24px 22px 10px;
}

.project-body h3 {
  margin: 0 0 14px;
  font-size: 1.24rem;
  line-height: 1.35;
}

.project-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.85;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 0 22px 22px;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 9px;
  font-size: 0.84rem;
  font-weight: 760;
}

.status-online {
  color: #b8ffd5;
  background: rgba(45, 177, 103, 0.18);
}

.status-dev {
  color: #ffd68e;
  background: rgba(242, 174, 76, 0.16);
}

.status-writing {
  color: #ffe0a9;
  background: rgba(242, 189, 117, 0.14);
  box-shadow: inset 0 0 0 1px rgba(242, 189, 117, 0.14);
}

.status-plan {
  color: #d8ccff;
  background: rgba(150, 120, 232, 0.16);
}

.card-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 760;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.card-footer a svg {
  flex: 0 0 auto;
}

.project-card:hover .card-footer a {
  background: rgba(242, 189, 117, 0.12);
  color: var(--gold-strong);
  transform: translateX(3px);
}

.project-network-note {
  width: min(100%, var(--max));
  margin: 24px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(242, 189, 117, 0.16);
  border-radius: 12px;
  color: rgba(216, 224, 234, 0.76);
  background:
    linear-gradient(90deg, rgba(242, 189, 117, 0.075), rgba(120, 183, 255, 0.035), transparent),
    rgba(255, 255, 255, 0.018);
  font-size: 0.92rem;
  line-height: 1.8;
}

.timeline {
  padding-top: 48px;
  padding-bottom: 48px;
  background:
    radial-gradient(circle at 16% 22%, rgba(242, 189, 117, 0.075), transparent 22rem),
    radial-gradient(circle at 82% 70%, rgba(120, 183, 255, 0.06), transparent 24rem);
}

.timeline-heading {
  margin-bottom: 22px;
}

.timeline-kicker {
  color: rgba(242, 189, 117, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(7, 15, 25, 0.54);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.timeline-item {
  position: relative;
  min-height: 182px;
  padding: 24px 20px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-item:last-child {
  border-right: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 54px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(242, 189, 117, 0.8);
  box-shadow: 0 0 18px rgba(242, 189, 117, 0.45);
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 27px;
  right: 0;
  top: 57px;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 189, 117, 0.22), transparent);
}

.timeline-date {
  display: block;
  margin-bottom: 30px;
  color: rgba(242, 189, 117, 0.72);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.14em;
}

.timeline-code {
  display: block;
  margin-bottom: 8px;
  color: rgba(224, 232, 242, 0.44);
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin: 0 0 10px;
  color: #f2f6fb;
  font-size: 1rem;
  line-height: 1.45;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.timeline-item-world {
  background:
    linear-gradient(180deg, rgba(90, 135, 194, 0.08), transparent),
    rgba(255, 255, 255, 0.006);
}

.timeline-item-world::before {
  background: rgba(133, 178, 225, 0.86);
  box-shadow: 0 0 18px rgba(133, 178, 225, 0.42);
}

.timeline-item-future {
  background: linear-gradient(180deg, rgba(242, 189, 117, 0.055), transparent);
}

.mission {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(360px, 1.24fr);
  gap: clamp(36px, 7vw, 76px);
  align-items: center;
}

.mission-list {
  display: grid;
  gap: 24px;
  margin: 38px 0 34px;
  padding: 0;
  list-style: none;
}

.mission-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: center;
}

.mission-list p {
  margin: 0;
  max-width: 32em;
  color: #d8e0ea;
  line-height: 1.85;
}

.mission-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(242, 189, 117, 0.48);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(242, 189, 117, 0.055);
}

.mission-icon svg {
  font-size: 1.35rem;
}

.button-outline {
  min-height: 50px;
  border-color: rgba(242, 189, 117, 0.42);
}

.desk-scene {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 55% 62%, rgba(242, 189, 117, 0.16), transparent 20%),
    linear-gradient(180deg, #0a1020, #080d14 68%, #120f0d);
  box-shadow: var(--shadow);
}

.window-view {
  position: absolute;
  inset: 0 0 30%;
  background:
    radial-gradient(circle at 22% 34%, rgba(242, 189, 117, 0.42) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 26%, rgba(245, 208, 143, 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 54% 54%, rgba(120, 183, 255, 0.22), transparent 26%),
    linear-gradient(180deg, #11152b, #101929 58%, #0b1018);
}

.window-view::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.36) 0 3px, transparent 3px 49%, rgba(0, 0, 0, 0.36) 49% 50%, transparent 50% 100%),
    linear-gradient(180deg, transparent 0 76%, rgba(13, 18, 24, 0.92) 77% 100%);
}

.window-view::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background:
    linear-gradient(90deg, transparent 0 8%, #18202b 8% 10%, transparent 10% 22%, #161e28 22% 25%, transparent 25% 39%, #1c2430 39% 42%, transparent 42% 58%, #1a2230 58% 61%, transparent 61% 76%, #1d2530 76% 79%, transparent 79%),
    linear-gradient(180deg, transparent, rgba(6, 10, 14, 0.85));
}

.desk-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 31%;
  background:
    radial-gradient(ellipse at 55% 8%, rgba(242, 189, 117, 0.18), transparent 38%),
    linear-gradient(180deg, #1a1714, #0b0b0d);
}

.lamp {
  position: absolute;
  left: 12%;
  bottom: 26%;
  width: 118px;
  height: 120px;
}

.lamp::before {
  content: "";
  position: absolute;
  left: 50px;
  bottom: 18px;
  width: 8px;
  height: 82px;
  border-radius: 999px;
  background: #1c232d;
  transform: rotate(18deg);
}

.lamp::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  width: 58px;
  height: 34px;
  border-radius: 999px 999px 10px 10px;
  background: #242a34;
  box-shadow: 0 18px 48px rgba(255, 204, 124, 0.32);
  transform: rotate(-12deg);
}

.laptop {
  position: absolute;
  left: 43%;
  bottom: 20%;
  width: 220px;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(145deg, #111923, #06090e);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
}

.laptop::after {
  content: "";
  position: absolute;
  left: -26px;
  right: -26px;
  bottom: -20px;
  height: 18px;
  border-radius: 3px 3px 18px 18px;
  background: linear-gradient(180deg, #2d2b29, #0c0c0d);
}

.mug {
  position: absolute;
  right: 17%;
  bottom: 18%;
  width: 48px;
  height: 54px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(135deg, #2b2621, #141414);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mug::after {
  content: "";
  position: absolute;
  top: 14px;
  right: -17px;
  width: 22px;
  height: 24px;
  border: 4px solid #211f1f;
  border-left: 0;
  border-radius: 0 999px 999px 0;
}

.plans {
  padding-top: 40px;
  padding-bottom: 50px;
}

.plans-inner {
  max-width: var(--max);
  text-align: center;
}

.plans-inner h2 {
  color: #f8f9fb;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.plan-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 22% 14%, rgba(242, 189, 117, 0.14), transparent 22%),
    radial-gradient(circle at 86% 84%, rgba(169, 130, 255, 0.14), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    var(--panel);
  text-align: left;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(180deg, transparent 55%, rgba(4, 8, 13, 0.5));
  pointer-events: none;
}

.plan-card:hover {
  border-color: rgba(242, 189, 117, 0.42);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.3),
    0 0 34px rgba(242, 189, 117, 0.1);
  transform: translateY(-4px);
}

.plan-index {
  position: relative;
  z-index: 1;
  color: rgba(242, 189, 117, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.plan-card h3 {
  position: relative;
  z-index: 1;
  margin: 16px 0 10px;
  color: #f6f8fb;
  font-size: 1.1rem;
}

.plan-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.85;
}

.site-footer {
  position: relative;
  padding: 24px 22px 38px;
  text-align: center;
  color: var(--faint);
  background: linear-gradient(180deg, rgba(6, 16, 25, 0), rgba(2, 7, 12, 0.76));
}

.footer-root {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(242, 189, 117, 0.58);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.social-links a {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(220, 228, 238, 0.74);
  background:
    radial-gradient(circle at 50% 50%, rgba(242, 189, 117, 0.035), transparent 58%),
    rgba(255, 255, 255, 0.018);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.social-links a::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(242, 189, 117, 0.08);
  opacity: 0;
  transition:
    opacity 0.2s ease,
    inset 0.2s ease;
}

.social-links a:hover {
  color: var(--gold-strong);
  border-color: rgba(242, 189, 117, 0.42);
  background:
    radial-gradient(circle at 50% 50%, rgba(242, 189, 117, 0.16), transparent 62%),
    rgba(242, 189, 117, 0.045);
  box-shadow: 0 0 22px rgba(242, 189, 117, 0.12);
  transform: translateY(-2px);
}

.social-links a:hover::before {
  inset: 5px;
  opacity: 1;
}

.social-links svg {
  position: relative;
  z-index: 1;
  font-size: 1.18rem;
}

.social-links a[aria-label="GitHub 主页"] svg path {
  fill: currentColor;
  stroke: none;
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 0.88rem;
}

.police-beian {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.police-beian img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

@media (max-width: 1080px) {
  .hero {
    padding-right: 42px;
  }

  .hero-visual {
    right: -18%;
    width: 78vw;
    opacity: 0.66;
  }

  .quote-card {
    width: 224px;
  }

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

  .timeline-list {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .timeline-item:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 760px) {
  .site-header {
    padding: 18px 20px;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 4px);
    left: 18px;
    right: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(5, 12, 20, 0.95);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 40px;
    padding: 10px 8px;
  }

  .site-nav a::after {
    left: 8px;
    transform: none;
  }

  .moon-button {
    width: 40px;
    height: 40px;
    justify-self: start;
  }

  .hero {
    min-height: auto;
    padding: 104px 22px 72px;
  }

  .layer-label {
    top: 18px;
    left: 22px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .hero-layer {
    top: 82px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
    line-height: 1.02;
  }

  .eyebrow {
    max-width: 18rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero p {
    max-width: 21rem;
    font-size: 0.93rem;
    line-height: 1.9;
  }

  .hero h2 {
    max-width: 21rem;
    font-size: 1.08rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 14px;
    margin-top: 34px;
  }

  .button {
    min-height: 50px;
    padding: 0 20px;
  }

  .hero-visual {
    top: 10%;
    right: -52%;
    width: 120vw;
    min-height: 560px;
    opacity: 0.38;
  }

  .quote-card {
    position: relative;
    z-index: 4;
    right: auto;
    bottom: auto;
    width: min(100%, 330px);
    margin-top: 38px;
    padding: 22px;
  }

  .scroll-cue {
    bottom: 16px;
  }

  .section-heading {
    display: block;
  }

  .text-link {
    margin-top: 18px;
  }

  .projects,
  .timeline,
  .mission,
  .plans {
    padding: 52px 22px;
  }

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

  .project-network::before {
    top: 0;
    bottom: 0;
    left: 21px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(242, 189, 117, 0.13), rgba(120, 183, 255, 0.08), transparent);
  }

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

  .project-card {
    min-height: auto;
  }

  .project-echo {
    top: 24px;
    right: 24px;
    max-width: 52%;
    font-size: 0.58rem;
    opacity: 0.58;
  }

  .project-echo span + span {
    display: none;
  }

  .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .status {
    flex: 0 0 auto;
  }

  .card-footer a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .project-network-note {
    margin-top: 18px;
    padding: 14px 16px;
    font-size: 0.88rem;
  }

  .timeline-heading {
    margin-bottom: 18px;
  }

  .timeline-kicker {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.68rem;
    white-space: normal;
  }

  .timeline-list {
    border-radius: 12px;
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 16px;
    padding: 20px 18px;
  }

  .timeline-date {
    margin: 0;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .timeline-item::before {
    left: 86px;
    top: 26px;
  }

  .timeline-item::after {
    left: 89px;
    right: auto;
    top: 33px;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(242, 189, 117, 0.2), transparent);
  }

  .timeline-item h3 {
    font-size: 0.98rem;
  }

  .timeline-item p {
    font-size: 0.88rem;
  }

  .project-art {
    height: 176px;
  }

  .mission-list li {
    grid-template-columns: 46px 1fr;
    gap: 16px;
  }

  .mission-icon {
    width: 46px;
    height: 46px;
  }

  .desk-scene {
    min-height: 300px;
  }

  .laptop {
    left: 34%;
    width: 185px;
    height: 100px;
  }

  .lamp {
    left: 6%;
  }

  .mug {
    right: 10%;
  }
}

@media (max-width: 420px) {
  .brand-slogan {
    font-size: 0.5rem;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    font-size: clamp(2.28rem, 12vw, 3.2rem);
  }

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

  .site-nav {
    grid-template-columns: 1fr;
  }

  .project-art {
    margin: 14px 14px 0;
  }

  .project-body,
  .card-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .quote-card p {
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.placeholder-page {
  min-height: 100vh;
}

.placeholder-page::before {
  mask-image: none;
  opacity: 0.18;
}

.placeholder-shell {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 110px 22px 56px;
  overflow: hidden;
}

.placeholder-shell::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 8%;
  width: min(54vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(242, 189, 117, 0.22);
  border-radius: 50%;
  box-shadow:
    inset 0 0 80px rgba(242, 189, 117, 0.035),
    0 0 90px rgba(242, 189, 117, 0.08);
  pointer-events: none;
}

.placeholder-shell::after {
  content: "";
  position: absolute;
  inset: auto -8% 0;
  height: 32%;
  background: linear-gradient(0deg, rgba(3, 8, 14, 0.96), rgba(3, 8, 14, 0));
  pointer-events: none;
}

.placeholder-brand {
  position: absolute;
  top: 34px;
  left: clamp(22px, 5vw, 58px);
  z-index: 2;
}

.placeholder-card {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  padding: clamp(30px, 6vw, 54px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 10%, rgba(242, 189, 117, 0.16), transparent 24%),
    radial-gradient(circle at 90% 86%, rgba(169, 130, 255, 0.14), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.014)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.placeholder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(180deg, transparent 54%, rgba(4, 8, 13, 0.5));
  pointer-events: none;
}

.placeholder-kicker,
.placeholder-card h1,
.placeholder-card p,
.placeholder-status,
.placeholder-card .button {
  position: relative;
  z-index: 1;
}

.placeholder-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(242, 189, 117, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.placeholder-card h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.25rem, 7vw, 4.4rem);
  line-height: 1.08;
  text-wrap: balance;
}

.placeholder-card p {
  max-width: 32em;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.9;
}

.placeholder-status {
  display: inline-flex;
  margin-top: 26px;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(242, 189, 117, 0.28);
  border-radius: 999px;
  color: var(--gold-strong);
  background: rgba(242, 189, 117, 0.08);
  font-size: 0.9rem;
  font-weight: 760;
}

.placeholder-card .button {
  margin-top: 34px;
}

@media (max-width: 760px) {
  .placeholder-shell {
    place-items: end stretch;
    padding-top: 96px;
  }

  .placeholder-shell::before {
    top: 7%;
    right: -34%;
    width: 112vw;
    opacity: 0.62;
  }

  .placeholder-brand {
    top: 22px;
    left: 22px;
  }

  .placeholder-card {
    padding: 30px 22px;
  }

  .placeholder-card .button {
    width: 100%;
  }
}
