:root {
  --home-bg: #050505;
  --home-text: #f5f5f0;
  --home-muted: rgba(245, 245, 240, 0.58);
  --home-subtle: rgba(245, 245, 240, 0.32);
  --home-line: rgba(255, 255, 255, 0.1);
  --home-glass: rgba(255, 255, 255, 0.055);
  --home-glass-strong: rgba(255, 255, 255, 0.12);
  --home-accent: #00ff00;
  --home-page-x: clamp(22px, 5.8vw, 112px);
  --home-section-y: clamp(120px, 15vw, 190px);
  --home-radius: 24px;
}

html {
  scroll-behavior: auto;
}

body.home-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 4% 38%, rgba(0, 255, 0, 0.54), rgba(0, 255, 0, 0.16) 20vw, transparent 38vw),
    radial-gradient(circle at 98% 68%, rgba(0, 255, 0, 0.58), rgba(0, 255, 0, 0.16) 18vw, transparent 34vw),
    linear-gradient(128deg, transparent 0 31%, rgba(0, 255, 0, 0.18) 31.1%, transparent 31.4% 100%),
    linear-gradient(162deg, transparent 0 58%, rgba(0, 255, 0, 0.12) 58.1%, transparent 58.3% 100%),
    var(--home-bg);
  color: var(--home-text);
}

body.home-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 72%, transparent);
}

.noise-svg {
  position: fixed;
  inset: -12%;
  z-index: -2;
  width: 124%;
  height: 124%;
  pointer-events: none;
  opacity: 0.03;
  mix-blend-mode: screen;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: noise-drift 18s steps(6, end) infinite;
}

@keyframes noise-drift {
  0% {
    transform: translate3d(-2%, -1%, 0);
  }

  25% {
    transform: translate3d(1%, -3%, 0);
  }

  50% {
    transform: translate3d(3%, 1%, 0);
  }

  75% {
    transform: translate3d(-1%, 3%, 0);
  }

  100% {
    transform: translate3d(-2%, -1%, 0);
  }
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 24px;
  padding: clamp(28px, 5vw, 80px);
  background: #050505;
  color: #fff;
}

.loader-mark {
  align-self: start;
  font-size: clamp(48px, 12vw, 180px);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: 0;
}

.loader-line {
  grid-column: 1 / -1;
  align-self: end;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.loader-count {
  align-self: start;
  justify-self: end;
  color: var(--home-muted);
  font-size: clamp(18px, 2.4vw, 32px);
  font-weight: 500;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 100%;
  height: 1px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

.home-nav {
  --nav-blur: 12px;
  --nav-bg-alpha: 0.34;
  --nav-border-alpha: 0.08;
  --nav-shadow-alpha: 0.18;
  --nav-opacity: 1;
  --nav-scale: 1;
  --nav-y: 0px;
  position: fixed;
  inset: 34px var(--home-page-x) auto;
  z-index: 220;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, var(--nav-border-alpha));
  border-radius: 999px;
  background: rgba(12, 12, 12, var(--nav-bg-alpha));
  box-shadow: 0 18px 56px rgba(0, 0, 0, var(--nav-shadow-alpha));
  opacity: var(--nav-opacity);
  backdrop-filter: blur(var(--nav-blur)) saturate(1.25);
  -webkit-backdrop-filter: blur(var(--nav-blur)) saturate(1.25);
  transform: translate3d(0, var(--nav-y), 0) scale(var(--nav-scale));
  transform-origin: 50% 0;
  transition: transform 0.42s ease, opacity 0.42s ease, border-color 0.42s ease, background 0.42s ease, box-shadow 0.42s ease;
  will-change: transform, opacity, backdrop-filter;
}

.home-nav.is-scrolled {
  --nav-bg-alpha: 0.58;
  --nav-border-alpha: 0.14;
  --nav-shadow-alpha: 0.34;
  --nav-blur: 18px;
  --nav-scale: 0.965;
  --nav-opacity: 0.92;
}

.home-nav.is-hidden {
  --nav-y: -120%;
  --nav-opacity: 0;
}

.home-nav .brand-mark {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  background: #111;
}

.home-nav .brand-name,
.home-nav .navbar a {
  color: var(--home-text);
}

.home-nav .brand-note,
.home-nav .navbar a:not(.active) {
  color: var(--home-muted);
}

.home-nav .navbar a {
  min-height: 34px;
  background: transparent;
  transition: color 0.35s ease, background 0.35s ease, letter-spacing 0.35s ease;
}

.home-nav .navbar a:hover,
.home-nav .navbar a.active {
  color: #050505;
  background: var(--home-accent);
}

.text-link {
  position: relative;
  transition: color 0.32s ease, opacity 0.32s ease, letter-spacing 0.32s ease;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 0 50%;
  opacity: 0.72;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.text-link:hover {
  opacity: 0.92;
  letter-spacing: 0.035em;
}

.text-link:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.home-main {
  padding: 0 var(--home-page-x);
}

.section-mask {
  position: relative;
  clip-path: inset(0 0 0 0 round 0);
}

.home-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: clamp(132px, 13vw, 190px) 0 clamp(88px, 10vw, 126px);
}

.hero-copy {
  position: relative;
  width: min(980px, 92vw);
  margin: 0 auto;
  z-index: 2;
  text-align: center;
}

.hero-title {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(74px, 10.6vw, 176px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: none;
}

.hero-title span {
  display: block;
}

.hero-title .hero-green {
  color: var(--home-accent);
}

.hero-title em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 2px var(--home-accent);
  text-stroke: 2px var(--home-accent);
}

.hero-lead {
  max-width: 540px;
  margin-inline: auto;
  color: var(--home-muted);
}

.hero-actions {
  margin-top: 40px;
}

.btn {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  padding: 0 24px;
  border-color: rgba(255, 255, 255, 0.92);
  background: #fff;
  color: #050505;
  box-shadow: none;
  isolation: isolate;
  will-change: transform;
  transition: transform 0.36s ease, border-color 0.36s ease, background 0.36s ease, color 0.36s ease, box-shadow 0.36s ease;
}

.btn span {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: transform 0.36s ease, letter-spacing 0.36s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 0%, rgba(0, 255, 0, 0.22) 28%, rgba(255, 255, 255, 0.88) 45%, rgba(0, 255, 0, 0.2) 62%, transparent 100%);
  transform: translate3d(-145%, 0, 0) skewX(-18deg);
  pointer-events: none;
  transition: transform 0.62s cubic-bezier(0.19, 1, 0.22, 1);
  mix-blend-mode: difference;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(0, 255, 0, 0.32), transparent 68%);
  opacity: 0;
  filter: blur(16px);
  pointer-events: none;
  transition: opacity 0.36s ease, transform 0.36s ease;
}

.btn:hover {
  transform: translate3d(0, -2px, 0) scale(1.045);
  box-shadow: 0 18px 54px rgba(0, 255, 0, 0.18), 0 18px 54px rgba(0, 0, 0, 0.3);
}

.btn:hover::before {
  transform: translate3d(145%, 0, 0) skewX(-18deg);
}

.btn:hover::after {
  opacity: 1;
  transform: scale(1.08);
}

.btn:hover span {
  letter-spacing: 0.035em;
  transform: translate3d(1px, 0, 0);
}

.btn.secondary {
  border-color: var(--home-line);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn.secondary:hover {
  border-color: rgba(0, 255, 0, 0.58);
  background: rgba(0, 255, 0, 0.1);
}

.hero-visual {
  position: absolute;
  right: clamp(70px, 11vw, 210px);
  top: 34%;
  width: clamp(220px, 22vw, 390px);
  min-height: 260px;
  z-index: 3;
  transform-style: preserve-3d;
}

.image-reveal {
  overflow: hidden;
  clip-path: inset(12% 0 12% 0 round 24px);
}

.hero-image {
  height: clamp(220px, 23vw, 410px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.placeholder-visual {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.placeholder-visual::before,
.placeholder-visual::after {
  content: "";
  position: absolute;
  inset: 20% 9% 26% 11%;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-left-width: 7px;
  border-radius: 0;
  transform: skewY(-28deg) rotate(-18deg);
}

.placeholder-visual::after {
  inset: 34% 22% 37% 22%;
  border-width: 2px;
  transform: skewY(-28deg) rotate(-18deg) scale(0.76);
}

.placeholder-orbit {
  position: absolute;
  width: 82%;
  height: 2px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 32px 0 rgba(255, 255, 255, 0.58), 0 -32px 0 rgba(255, 255, 255, 0.58);
  transform: rotate(-18deg);
}

.placeholder-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--home-accent);
  transform: translate3d(82px, -34px, 0);
  box-shadow: -42px 54px 0 #7a1cff, 44px 28px 0 #ff8a00, 26px -38px 0 #2c8fff;
}

.placeholder-visual figcaption {
  position: absolute;
  z-index: 2;
  color: transparent;
  font-size: 0;
  font-weight: 600;
  line-height: 0.9;
  text-transform: uppercase;
}

.glass-panel {
  border: 1px solid var(--home-line);
  background: var(--home-glass);
  backdrop-filter: blur(16px) saturate(1.1);
}

.hero-panel {
  position: absolute;
  left: -56%;
  top: 13%;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--home-accent);
  text-align: center;
}

.hero-panel span,
.feature-card .card-index,
.work-card span,
.eyebrow {
  display: block;
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: none;
}

.hero-panel span {
  width: 100%;
  color: var(--home-accent);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.marquee-section {
  margin: 0 calc(var(--home-page-x) * -1);
  overflow: hidden;
  border-block: 1px solid var(--home-line);
}

.marquee {
  overflow: hidden;
  padding: clamp(24px, 5vw, 54px) 0;
  white-space: nowrap;
  cursor: default;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(32px, 5vw, 86px);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.marquee span {
  flex: 0 0 auto;
  color: #fff;
  font-size: clamp(44px, 10vw, 154px);
  font-weight: 600;
  line-height: 0.86;
  text-transform: uppercase;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-block: clamp(70px, 9vw, 120px);
}

.stat-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--home-line);
  background: rgba(255, 255, 255, 0.035);
}

.stat-number {
  font-size: clamp(64px, 10vw, 132px);
  font-weight: 600;
  line-height: 0.9;
}

.stat-card p {
  margin: 0;
  color: var(--home-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sticky-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 128px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 142px;
}

.sticky-copy .muted {
  max-width: 430px;
  margin-top: 24px;
}

.intro-stack {
  display: grid;
  gap: 22px;
}

.feature-card {
  position: relative;
  display: block;
  min-height: 285px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 24px;
  transform-style: preserve-3d;
  transition: border-color 0.42s ease, background 0.42s ease, box-shadow 0.42s ease, opacity 0.42s ease;
}

.feature-card h3 {
  max-width: 680px;
  margin: clamp(64px, 7vw, 94px) 0 14px;
  color: #fff;
  font-size: clamp(40px, 6vw, 86px);
  font-weight: 600;
  line-height: 0.94;
}

.feature-card p {
  max-width: 520px;
  margin: 0;
  color: var(--home-muted);
}

.feature-card::after {
  content: "↗";
  position: absolute;
  top: 30px;
  right: 34px;
  color: #fff;
  font-size: 24px;
  pointer-events: none;
  transition: color 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
}

.feature-card:hover::after {
  color: #00ff00;
  opacity: 1;
  transform: translate3d(5px, -5px, 0);
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 58px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.work-card {
  display: grid;
  gap: 22px;
  padding: 14px;
  border: 1px solid var(--home-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.42s ease, background 0.42s ease, box-shadow 0.42s ease, opacity 0.42s ease;
}

.work-visual {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 32%),
    rgba(255, 255, 255, 0.055);
}

.work-visual::before,
.work-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.work-visual-a::before {
  inset: 14% 12% auto;
  height: 34%;
}

.work-visual-a::after {
  left: 12%;
  right: 12%;
  bottom: 16%;
  height: 1px;
  box-shadow: 0 -18px 0 rgba(255, 255, 255, 0.18), 0 -36px 0 rgba(255, 255, 255, 0.12);
}

.work-visual-b::before {
  inset: 18%;
  border-radius: 50%;
}

.work-visual-b::after {
  width: 44%;
  aspect-ratio: 1;
  right: 16%;
  bottom: 18%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.work-visual-c::before {
  inset: 17% 28%;
  border-radius: 999px;
  transform: rotate(22deg);
}

.work-visual-c::after {
  inset: 28% 18%;
  border-radius: 999px;
  transform: rotate(-22deg);
}

.work-card h3 {
  margin: 8px 4px 12px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.closing-section {
  min-height: 84svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.closing-title {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(48px, 9vw, 142px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0;
}

.home-footer {
  position: relative;
  z-index: 2;
  border-color: var(--home-line);
  color: var(--home-muted);
}

.tilt-card {
  transform: perspective(1100px) rotateX(0) rotateY(0) translate3d(0, 0, 0);
  transition: border-color 0.45s ease, background 0.45s ease, box-shadow 0.45s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.tilt-card:hover {
  border-color: rgba(0, 255, 0, 0.34);
  background: var(--home-glass-strong);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.48), 0 0 64px rgba(0, 255, 0, 0.08);
}

.tilt-card.is-hovered {
  border-color: rgba(0, 255, 0, 0.38);
  background: var(--home-glass-strong);
  box-shadow: 0 36px 126px rgba(0, 0, 0, 0.5), 0 0 72px rgba(0, 255, 0, 0.1);
}

@media (max-width: 1080px) {
  .home-hero,
  .sticky-intro,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .sticky-copy {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --home-page-x: 18px;
    --home-section-y: 96px;
  }

  .loading-screen {
    grid-template-columns: 1fr;
  }

  .loader-count {
    justify-self: start;
  }

  .home-nav {
    --nav-scale: 1;
    inset: 12px 12px auto;
    align-items: center;
    border-radius: 22px;
    padding: 10px;
  }

  .home-nav .brand-note {
    display: none;
  }

  .home-nav .navbar {
    max-width: 58vw;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .home-nav .navbar::-webkit-scrollbar {
    display: none;
  }

  .home-hero {
    min-height: auto;
    padding-top: 126px;
  }

  .hero-title,
  .closing-title {
    line-height: 0.96;
  }

  .hero-visual,
  .hero-image {
    min-height: 420px;
  }

  .stats-section {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 230px;
  }
}

/* Final homepage convergence: black stage, neon rhythm, Jiejoe-like spatial layout. */
body.home-page {
  background:
    radial-gradient(circle at -6% 37%, rgba(0, 255, 0, 0.88), rgba(0, 255, 0, 0.24) 18vw, transparent 37vw),
    radial-gradient(circle at 108% 67%, rgba(0, 255, 0, 0.82), rgba(0, 255, 0, 0.2) 17vw, transparent 35vw),
    linear-gradient(148deg, transparent 0 23%, rgba(0, 255, 0, 0.2) 23.08%, transparent 23.24% 100%),
    linear-gradient(28deg, transparent 0 71%, rgba(0, 255, 0, 0.18) 71.08%, transparent 71.24% 100%),
    #111;
}

body.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.045), transparent 34%),
    linear-gradient(90deg, rgba(0, 255, 0, 0.18), transparent 12%, transparent 88%, rgba(0, 255, 0, 0.18));
}

.scroll-progress span {
  background: var(--home-accent);
  box-shadow: 0 0 16px rgba(0, 255, 0, 0.76);
}

.home-nav {
  max-width: none;
  padding: 14px 18px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(12, 12, 12, 0.22);
}

.home-nav .brand {
  gap: 16px;
}

.home-nav .brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 255, 0, 0.08);
  box-shadow: inset 0 0 0 1px rgba(0, 255, 0, 0.22), 0 0 24px rgba(0, 255, 0, 0.14);
}

.home-nav .brand-mark img {
  display: block;
}

.home-nav .brand-note {
  color: var(--home-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-nav .navbar {
  gap: 10px;
}

.home-nav .navbar a {
  min-height: 42px;
  padding-inline: 17px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.78);
}

.home-nav .navbar a:hover,
.home-nav .navbar a.active {
  border-color: rgba(255, 255, 255, 0.82);
  background: var(--home-accent);
  color: #070707;
  box-shadow: 0 0 22px rgba(0, 255, 0, 0.32);
}

.home-main {
  position: relative;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: clamp(120px, 11vw, 168px);
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.home-hero::before {
  left: clamp(16px, 13vw, 250px);
  bottom: clamp(34px, 6vw, 92px);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--home-accent);
  box-shadow:
    42vw -40vh 0 -4px var(--home-accent),
    66vw -4vh 0 -2px rgba(255, 255, 255, 0.92),
    8vw -3vh 0 -2px rgba(255, 255, 255, 0.92);
}

.home-hero::after {
  left: 50%;
  bottom: 44px;
  width: 1px;
  height: 70px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), transparent);
  transform: translateX(-50%);
  opacity: 0.7;
}

.hero-copy {
  width: min(1120px, 94vw);
  padding-top: 26px;
}

.hero-logo {
  color: var(--home-accent);
  text-shadow: 0 0 18px rgba(0, 255, 0, 0.34);
}

.hero-title {
  font-size: clamp(82px, 12vw, 206px);
  font-weight: 900;
  line-height: 0.86;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.46);
}

.hero-title .hero-green {
  color: var(--home-accent);
  text-shadow: 0 0 28px rgba(0, 255, 0, 0.34);
}

.hero-title em {
  -webkit-text-stroke: clamp(1px, 0.18vw, 3px) var(--home-accent);
  text-stroke: clamp(1px, 0.18vw, 3px) var(--home-accent);
}

.hero-lead {
  position: relative;
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.hero-lead::after {
  content: "whoami";
  position: absolute;
  left: 50%;
  top: 100%;
  color: #fff;
  font-family: "Segoe Script", "Bradley Hand ITC", cursive;
  font-size: clamp(38px, 5.6vw, 82px);
  font-weight: 600;
  line-height: 1;
  transform: translate3d(-3%, -18%, 0) rotate(-6deg);
  opacity: 0.92;
  pointer-events: none;
}

.hero-actions {
  margin-top: clamp(62px, 7vw, 94px);
  justify-content: center;
}

.btn {
  min-height: 50px;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.92);
  background: #fff;
  color: #050505;
  font-weight: 700;
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.26);
  color: #fff;
}

.hero-visual {
  right: clamp(42px, 8vw, 160px);
  top: 38%;
  width: clamp(210px, 23vw, 410px);
  min-height: clamp(210px, 23vw, 410px);
  opacity: 0.96;
}

.placeholder-visual::before {
  inset: 18% 6% 24% 9%;
  border-width: 3px;
  border-left-width: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.26), 0 0 34px rgba(255, 255, 255, 0.08);
}

.placeholder-visual::after {
  inset: 31% 19% 36%;
  border-color: rgba(255, 255, 255, 0.74);
}

.placeholder-dot {
  background: #2c8fff;
  box-shadow:
    -42px 54px 0 #7a1cff,
    44px 28px 0 #ff8a00,
    26px -38px 0 #ff003a,
    2px 76px 0 var(--home-accent);
}

.hero-panel {
  left: -44%;
  top: 9%;
  border: 2px solid rgba(0, 255, 0, 0.72);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 0 28px rgba(0, 255, 0, 0.18);
}

.marquee-section {
  border-block-color: rgba(0, 255, 0, 0.32);
  background: var(--home-accent);
  color: #080808;
}

.marquee {
  padding: clamp(26px, 5vw, 66px) 0;
}

.marquee span {
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.82);
  text-stroke: 2px rgba(0, 0, 0, 0.82);
  font-size: clamp(78px, 14vw, 220px);
  font-weight: 900;
  line-height: 0.78;
}

.stats-section {
  position: relative;
  gap: 0;
  padding-block: clamp(86px, 10vw, 150px);
}

.stats-section::before {
  content: "";
  position: absolute;
  left: calc(var(--home-page-x) * -1);
  right: calc(var(--home-page-x) * -1);
  top: 50%;
  height: 1px;
  background: rgba(0, 255, 0, 0.34);
  box-shadow: 0 0 26px rgba(0, 255, 0, 0.7);
  pointer-events: none;
}

.stats-section::after,
.sticky-intro::before,
.work-section::after {
  content: "+";
  position: absolute;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.stats-section::after {
  right: 8vw;
  top: 34%;
  color: var(--home-accent);
}

.stat-card {
  min-height: 260px;
  border-color: rgba(0, 255, 0, 0.22);
  background: rgba(0, 0, 0, 0.34);
}

.stat-number {
  color: var(--home-accent);
}

.sticky-intro {
  position: relative;
  min-height: 130svh;
  gap: clamp(54px, 8vw, 140px);
}

.sticky-intro::before {
  left: calc(var(--home-page-x) * -0.28);
  top: 24%;
}

.sticky-intro::after {
  content: "首\A像";
  position: absolute;
  left: calc(var(--home-page-x) * -0.38);
  top: 38%;
  color: var(--home-accent);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.05;
  white-space: pre;
  pointer-events: none;
}

.sticky-copy .eyebrow,
.section-heading .eyebrow,
.closing-section .eyebrow {
  color: var(--home-accent);
}

.sticky-copy .title,
.section-heading .title {
  max-width: 760px;
  font-size: clamp(54px, 7.4vw, 120px);
  line-height: 0.92;
}

.sticky-copy .title {
  color: #fff;
}

.sticky-copy .muted {
  color: rgba(255, 255, 255, 0.68);
}

.feature-card {
  min-height: clamp(270px, 34vw, 430px);
  border-radius: 28px;
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(90deg, rgba(0, 255, 0, 0.12), transparent 36%),
    rgba(17, 17, 17, 0.72);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -24%;
  width: 42%;
  aspect-ratio: 1;
  border: 3px solid rgba(0, 255, 0, 0.66);
  border-radius: 50%;
  opacity: 0.42;
  pointer-events: none;
}

.feature-card h3 {
  color: #fff;
  font-size: clamp(54px, 7vw, 128px);
  font-weight: 900;
  line-height: 0.84;
}

.feature-card:nth-child(even) h3 {
  color: var(--home-accent);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.66);
}

.work-section {
  position: relative;
  margin-inline: calc(var(--home-page-x) * -1);
  padding-inline: var(--home-page-x);
  background:
    radial-gradient(circle at 52% 28%, rgba(0, 0, 0, 0.25), transparent 32%),
    var(--home-accent);
  color: #080808;
  overflow: hidden;
  isolation: isolate;
}

.work-section::before {
  content: "首先 首先 首先\A首先 首先 首先\A首先 首先 首先";
  position: absolute;
  inset: -8% auto auto 50%;
  z-index: -1;
  width: 140vw;
  color: transparent;
  font-size: clamp(126px, 20vw, 330px);
  font-weight: 900;
  line-height: 0.72;
  white-space: pre;
  -webkit-text-stroke: 3px rgba(0, 0, 0, 0.48);
  text-stroke: 3px rgba(0, 0, 0, 0.48);
  transform: translateX(-50%);
  opacity: 0.8;
  pointer-events: none;
}

.work-section::after {
  right: 11vw;
  top: 23%;
  color: rgba(0, 0, 0, 0.82);
}

.work-section .eyebrow,
.work-card span {
  color: rgba(0, 0, 0, 0.72);
}

.work-section .title {
  color: #080808;
}

.section-heading,
.work-grid {
  position: relative;
  z-index: 1;
}

.section-heading::after {
  content: "视觉效果";
  position: absolute;
  right: 6%;
  top: 22%;
  color: rgba(0, 0, 0, 0.66);
  font-size: 16px;
  font-weight: 700;
  pointer-events: none;
}

.work-card {
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(10, 10, 10, 0.92);
  color: #fff;
}

.work-visual {
  background:
    radial-gradient(circle at 50% 45%, #fff 0 28%, transparent 28.4%),
    radial-gradient(circle at 42% 36%, rgba(0, 255, 0, 0.9) 0 8%, transparent 8.4%),
    #121212;
}

.work-visual::before,
.work-visual::after {
  border-color: rgba(0, 255, 0, 0.72);
}

.work-card h3 {
  color: #fff;
}

.closing-section {
  position: relative;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.closing-section::before {
  content: "视觉效果 视觉效果 视觉效果";
  position: absolute;
  inset: 8% auto auto 50%;
  z-index: -1;
  width: 120vw;
  color: transparent;
  font-size: clamp(110px, 16vw, 280px);
  font-weight: 900;
  line-height: 0.82;
  -webkit-text-stroke: 2px rgba(0, 255, 0, 0.24);
  text-stroke: 2px rgba(0, 255, 0, 0.24);
  transform: translateX(-50%);
  opacity: 0.72;
}

.closing-title {
  color: #fff;
  font-size: clamp(62px, 10vw, 164px);
  font-weight: 900;
}

.home-footer {
  margin-inline: var(--home-page-x);
  padding-block: 34px;
  border-top-color: rgba(0, 255, 0, 0.24);
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1080px) {
  .home-nav {
    inset: 20px 20px auto;
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    width: min(440px, 74vw);
    min-height: min(440px, 74vw);
    margin: 48px auto 0;
  }

  .hero-panel {
    left: -18px;
  }

  .sticky-intro {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  body.home-page {
    background:
      radial-gradient(circle at -14% 28%, rgba(0, 255, 0, 0.76), transparent 48vw),
      radial-gradient(circle at 114% 74%, rgba(0, 255, 0, 0.7), transparent 52vw),
      #111;
  }

  .home-nav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .home-nav .brand-mark {
    width: 46px;
    height: 46px;
  }

  .home-nav .brand-name {
    font-size: 15px;
  }

  .home-nav .navbar {
    max-width: none;
    justify-content: flex-start;
  }

  .home-nav .navbar a {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .hero-copy {
    width: min(100%, 620px);
    text-align: left;
  }

  .hero-title {
    font-size: clamp(58px, 21vw, 104px);
  }

  .hero-lead {
    margin-inline: 0;
  }

  .hero-lead::after {
    left: 30%;
    font-size: 40px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .marquee span {
    -webkit-text-stroke-width: 1px;
    text-stroke-width: 1px;
  }

  .sticky-copy .title,
  .section-heading .title {
    font-size: clamp(44px, 15vw, 76px);
  }

  .feature-card h3 {
    font-size: clamp(46px, 16vw, 82px);
  }

  .work-section {
    margin-inline: calc(var(--home-page-x) * -1);
  }
}
