:root {
  color-scheme: dark;
  --ink: #f5f0e8;
  --muted: #a9aaa3;
  --soft: rgba(245, 240, 232, 0.72);
  --line: rgba(245, 240, 232, 0.14);
  --line-strong: rgba(99, 211, 196, 0.32);
  --panel: rgba(16, 17, 18, 0.68);
  --panel-solid: #121416;
  --black: #050606;
  --graphite: #1c2020;
  --teal: #63d3c4;
  --teal-bright: #7ff0de;
  --amber: #cda76b;
  --steel: #96a7ad;
  --red: #e0796a;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  --glow-teal: 0 0 18px rgba(99, 211, 196, 0.55);
  --glow-soft: 0 0 0 1px rgba(99, 211, 196, 0.18), 0 0 28px rgba(99, 211, 196, 0.12);
  --mono: "SF Mono", ui-monospace, "Cascadia Code", "Roboto Mono", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.55;
}

.starfield-image-bg,
.cosmos-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.starfield-image-bg {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 6, 0.42), rgba(5, 6, 6, 0.72)),
    linear-gradient(90deg, rgba(5, 6, 6, 0.62), rgba(5, 6, 6, 0.18) 48%, rgba(5, 6, 6, 0.66)),
    url("assets/starfield-bg.png") center / cover no-repeat;
  filter: saturate(0.86) brightness(0.58) contrast(1.08);
  transform: scale(1.04);
}

.cosmos-canvas {
  z-index: 1;
  opacity: 0.72;
  mix-blend-mode: screen;
}

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

img,
video,
canvas,
svg {
  display: block;
}

.site-shell {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  overflow: clip;
}

.section-switcher {
  position: fixed;
  inset: 0;
  z-index: 18;
  pointer-events: none;
  opacity: 0;
}

.section-switcher::before,
.section-switcher::after {
  position: absolute;
  right: 0;
  left: 0;
  content: "";
  transform: translateY(-120%);
}

.section-switcher::before {
  top: 0;
  height: 100%;
  background:
    linear-gradient(180deg, transparent, rgba(99, 211, 196, 0.08) 48%, transparent),
    linear-gradient(180deg, transparent 0 42%, rgba(245, 240, 232, 0.08) 42% 42.2%, transparent 42.2%);
}

.section-switcher::after {
  top: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 211, 196, 0.86), rgba(205, 167, 107, 0.48), transparent);
  box-shadow: 0 0 28px rgba(99, 211, 196, 0.38);
}

body.is-switching .section-switcher {
  opacity: 1;
}

body.is-switching .section-switcher::before {
  animation: sectionSweep 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-switching .section-switcher::after {
  animation: sectionSweepLine 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 56px);
  color: rgba(245, 240, 232, 0.88);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    padding 180ms ease;
}

.nav.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 8, 0.72);
  backdrop-filter: blur(18px);
  padding-block: 14px;
}

.brand,
.contact-pill,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  justify-self: start;
  min-width: 0;
  font-weight: 700;
}

.brand {
  min-height: 42px;
  padding: 0 14px 0 8px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  background: rgba(245, 240, 232, 0.035);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.brand:hover {
  border-color: rgba(99, 211, 196, 0.55);
  background: rgba(245, 240, 232, 0.055);
  transform: translateY(-2px);
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(99, 211, 196, 0.32);
  background: rgba(99, 211, 196, 0.06);
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 0;
}

.brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  justify-self: center;
  gap: clamp(14px, 3vw, 38px);
  color: var(--soft);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.contact-pill {
  justify-self: end;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  background: rgba(245, 240, 232, 0.06);
  font-size: 14px;
}

.contact-pill svg,
.primary-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 96px clamp(18px, 4vw, 56px) 156px;
  isolation: isolate;
}

.hero,
.section,
.closing {
  scroll-margin-top: 84px;
}

.hero-video,
.hero-canvas,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video,
.hero-canvas {
  object-fit: cover;
  z-index: -3;
}

.hero-canvas {
  z-index: -4;
  background: #070808;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.9), rgba(7, 8, 8, 0.28) 55%, rgba(7, 8, 8, 0.78)),
    linear-gradient(0deg, rgba(7, 8, 8, 0.96), rgba(7, 8, 8, 0.12) 34%, rgba(7, 8, 8, 0.62));
}

.hero-content {
  width: min(100%, 1120px);
  padding-top: 22px;
}

.section,
.closing {
  position: relative;
  opacity: 0.42;
  filter: blur(10px);
  transform: translateY(42px) scale(0.985);
  clip-path: inset(9% 0 9% 0);
  transition:
    opacity 840ms ease,
    filter 840ms ease,
    transform 840ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 840ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section.is-visible,
.closing.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
  clip-path: inset(0 0 0 0);
}

.profile-grid,
.section-heading,
.project-grid,
.strength-grid,
.closing-inner,
footer {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.is-visible .profile-grid,
.is-visible .section-heading,
.is-visible .project-grid,
.is-visible .strength-grid,
.is-visible .closing-inner,
.is-visible footer {
  opacity: 1;
  transform: translateY(0);
}

.is-visible .profile-grid,
.is-visible .project-grid {
  transition-delay: 90ms;
}

.is-visible .strength-grid,
.is-visible .closing-inner {
  transition-delay: 120ms;
}

.eyebrow,
.section-kicker,
.project-body span,
.strength-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 1040px;
  margin: 18px 0;
  font-size: clamp(52px, 7.2vw, 104px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: min(660px, 100%);
  margin: 0 0 34px;
  color: rgba(245, 240, 232, 0.76);
  font-size: clamp(17px, 2vw, 24px);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid var(--line);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.primary-action {
  background: var(--ink);
  color: #080908;
  font-weight: 800;
}

.secondary-action {
  background: rgba(245, 240, 232, 0.04);
  color: var(--soft);
}

.primary-action:hover,
.secondary-action:hover,
.contact-pill:hover {
  border-color: rgba(99, 211, 196, 0.55);
  transform: translateY(-2px);
}

.next-peek {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(90px, 0.22fr) minmax(220px, 0.32fr) 1fr auto;
  align-items: center;
  gap: clamp(18px, 4vw, 54px);
  min-height: 118px;
  padding: 0 clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(99, 211, 196, 0.08), transparent 38%),
    rgba(7, 8, 8, 0.72);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.next-peek::before,
.next-peek::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.next-peek::before {
  inset: 0;
  background:
    linear-gradient(rgba(245, 240, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 232, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.65;
}

.next-peek::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 211, 196, 0.78), transparent);
}

.next-index,
.next-title,
.next-line,
.next-action {
  position: relative;
  z-index: 1;
}

.next-index {
  color: var(--amber);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
}

.next-title {
  display: grid;
  gap: 5px;
}

.next-title strong {
  color: var(--ink);
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1;
}

.next-title small,
.next-action {
  color: var(--muted);
  font-size: 13px;
}

.next-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(99, 211, 196, 0.66), transparent);
}

.next-action {
  justify-self: end;
  color: var(--teal);
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  padding: clamp(78px, 12vw, 148px) clamp(18px, 4vw, 56px);
}

.profile {
  background:
    linear-gradient(180deg, #070808 0%, #101211 58%, #090a0a 100%);
}

.profile-grid {
  display: grid;
  width: min(100%, 1180px);
  margin: 22px auto 0;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr) minmax(250px, 0.72fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.signal-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 232, 0.12);
  background:
    linear-gradient(180deg, rgba(99, 211, 196, 0.06), transparent 34%),
    linear-gradient(rgba(245, 240, 232, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 232, 0.05) 1px, transparent 1px),
    #0d0f0f;
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow);
  padding: 26px;
  isolation: isolate;
}

.signal-panel::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(99, 211, 196, 0.22);
  content: "";
  pointer-events: none;
  transform: translate(14px, -14px);
}

.signal-panel-top,
.signal-status {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.signal-panel-top {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-panel-top strong {
  color: var(--amber);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.9;
}

.signal-orbit {
  position: absolute;
  inset: 24% 13% auto;
  aspect-ratio: 1;
  border: 1px solid rgba(99, 211, 196, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(99, 211, 196, 0.18), transparent 4px),
    radial-gradient(circle, rgba(205, 167, 107, 0.13), transparent 58%);
}

.signal-orbit::before,
.signal-orbit::after,
.signal-orbit span {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 50%;
  content: "";
}

.signal-orbit::after {
  inset: 27%;
  border-color: rgba(205, 167, 107, 0.16);
}

.signal-orbit span {
  inset: auto;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border: 0;
  box-shadow: 0 0 22px rgba(99, 211, 196, 0.72);
}

.signal-orbit span:nth-child(1) {
  top: 18%;
  left: 24%;
}

.signal-orbit span:nth-child(2) {
  right: 18%;
  top: 42%;
  background: var(--amber);
  box-shadow: 0 0 22px rgba(205, 167, 107, 0.64);
}

.signal-orbit span:nth-child(3) {
  right: 38%;
  bottom: 17%;
}

.signal-lines {
  position: absolute;
  inset: auto 26px 142px;
  display: grid;
  gap: 10px;
}

.signal-lines i {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(99, 211, 196, 0.65), transparent);
}

.signal-lines i:nth-child(2) {
  width: 72%;
  background: linear-gradient(90deg, rgba(205, 167, 107, 0.5), transparent);
}

.signal-lines i:nth-child(3) {
  width: 84%;
}

.signal-lines i:nth-child(4) {
  width: 52%;
  background: linear-gradient(90deg, rgba(150, 167, 173, 0.42), transparent);
}

.signal-status {
  min-height: 42px;
  margin-top: 10px;
  padding: 0 14px;
  border: 1px solid rgba(245, 240, 232, 0.1);
  background: rgba(7, 8, 8, 0.48);
  backdrop-filter: blur(12px);
}

.signal-lines + .signal-status {
  margin-top: 268px;
}

.signal-status span {
  color: var(--muted);
  font-size: 13px;
}

.signal-status strong {
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-copy {
  align-self: center;
}

.profile-copy h2,
.section-heading h2,
.closing h2 {
  margin: 12px 0 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.profile-copy h2 {
  font-size: clamp(34px, 3.6vw, 48px);
}

.profile-copy p {
  max-width: 610px;
  color: var(--soft);
  font-size: 17px;
}

.contact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 28px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(82px, 0.34fr) 1fr;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(245, 240, 232, 0.14);
  background:
    linear-gradient(90deg, rgba(99, 211, 196, 0.08), transparent 42%),
    rgba(245, 240, 232, 0.035);
  color: var(--ink);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-card:hover {
  border-color: rgba(99, 211, 196, 0.48);
  background:
    linear-gradient(90deg, rgba(99, 211, 196, 0.12), transparent 48%),
    rgba(245, 240, 232, 0.055);
  transform: translateY(-2px);
}

.contact-card span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  min-width: 0;
  overflow: hidden;
  color: var(--soft);
  font-size: 15px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-board {
  display: grid;
  align-self: end;
  gap: 12px;
  margin: 0;
}

.metric-board div,
.strength-card,
.project-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.metric-board div {
  padding: 22px;
}

.metric-board dt {
  color: var(--amber);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 850;
  line-height: 1;
}

.metric-board dd {
  margin: 8px 0 0;
  color: var(--muted);
}

.featured {
  background:
    linear-gradient(180deg, #090a0a, #111416 48%, #070808),
    radial-gradient(circle at 80% 10%, rgba(184, 111, 98, 0.08), transparent 30%);
}

.section-heading {
  display: flex;
  width: min(100%, 1180px);
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto 34px;
}

.section-heading p {
  max-width: 440px;
  margin: 0 0 8px;
  color: var(--muted);
}

.project-grid {
  display: grid;
  width: min(100%, 1180px);
  margin: 0 auto;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.project-card {
  display: grid;
  min-height: 390px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.project-card:hover {
  border-color: rgba(99, 211, 196, 0.42);
  transform: translateY(-4px);
}

.project-card-large {
  grid-row: span 2;
  min-height: 640px;
}

.project-visual {
  min-height: 240px;
  background-color: #16191a;
  background-image:
    linear-gradient(rgba(245, 240, 232, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 232, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  position: relative;
}

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

.visual-automation::before {
  inset: 18% 16% auto 14%;
  height: 58%;
  border: 1px solid rgba(99, 211, 196, 0.44);
  background:
    linear-gradient(90deg, rgba(99, 211, 196, 0.28), transparent 34%),
    repeating-linear-gradient(0deg, rgba(245, 240, 232, 0.1), rgba(245, 240, 232, 0.1) 1px, transparent 1px, transparent 18px);
}

.visual-automation::after {
  right: 14%;
  bottom: 18%;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(205, 167, 107, 0.5);
  background: rgba(205, 167, 107, 0.08);
}

.visual-dashboard::before {
  inset: 22% 14%;
  border: 1px solid rgba(150, 167, 173, 0.45);
  background:
    linear-gradient(90deg, transparent 28%, rgba(99, 211, 196, 0.24) 28% 34%, transparent 34%),
    linear-gradient(0deg, rgba(205, 167, 107, 0.2), transparent 55%);
}

.visual-content::before {
  width: 42%;
  height: 58%;
  left: 18%;
  top: 18%;
  border: 1px solid rgba(184, 111, 98, 0.55);
  background: rgba(184, 111, 98, 0.1);
  transform: rotate(-4deg);
}

.visual-content::after {
  width: 34%;
  height: 44%;
  right: 18%;
  top: 28%;
  border: 1px solid rgba(99, 211, 196, 0.42);
  background: rgba(99, 211, 196, 0.08);
  transform: rotate(6deg);
}

.project-body {
  padding: 28px;
}

.project-body h3,
.strength-card h3 {
  margin: 10px 0;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.1;
}

.project-body p,
.strength-card p {
  margin: 0;
  color: var(--muted);
}

.strengths {
  background: #070808;
}

.section-heading.compact {
  align-items: start;
}

.strength-grid {
  display: grid;
  width: min(100%, 1180px);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.strength-card {
  min-height: 290px;
  padding: 26px;
}

.strength-card span {
  color: var(--amber);
}

.closing {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-content: center;
  padding: 92px clamp(18px, 4vw, 56px) 34px;
  background:
    linear-gradient(180deg, rgba(7, 8, 8, 0.96), rgba(15, 17, 18, 0.72)),
    linear-gradient(120deg, rgba(99, 211, 196, 0.08), transparent 46%),
    #090a0a;
}

.closing::before {
  position: absolute;
  inset: 12% clamp(18px, 4vw, 56px) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 211, 196, 0.7), transparent);
  content: "";
}

.closing-inner {
  width: min(100%, 1050px);
}

.closing h2 {
  max-width: 980px;
  font-size: clamp(44px, 6.8vw, 88px);
}

footer {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  left: clamp(18px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 960px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

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

  .signal-panel {
    min-height: 430px;
  }

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

  .project-card-large {
    grid-row: auto;
    min-height: 480px;
  }

  .section-heading {
    display: block;
  }
}

@media (max-width: 640px) {
  .brand-text {
    display: none;
  }

  .contact-pill span {
    display: none;
  }

  .contact-pill {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .hero {
    place-items: end start;
    padding-bottom: 158px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.98;
  }

  .hero .eyebrow {
    max-width: 320px;
    line-height: 1.55;
  }

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

  .next-peek {
    grid-template-columns: auto 1fr;
    gap: 8px 18px;
    min-height: 116px;
    padding-block: 18px;
  }

  .next-line {
    grid-column: 1 / -1;
  }

  .next-action {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .metric-board {
    grid-template-columns: 1fr;
  }

  .signal-panel {
    min-height: 360px;
  }

  .signal-lines + .signal-status {
    margin-top: 210px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 2px;
    padding: 10px 14px;
  }

  .project-body,
  .strength-card {
    padding: 22px;
  }

  .closing-actions {
    display: grid;
  }

  footer {
    position: static;
    margin-top: 80px;
    flex-direction: column;
  }
}

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

  .section,
  .closing,
  .profile-grid,
  .section-heading,
  .project-grid,
  .strength-grid,
  .closing-inner,
  footer {
    opacity: 1;
    filter: none;
    transform: none;
    clip-path: none;
  }
}

@keyframes sectionSweep {
  0% {
    transform: translateY(-120%);
  }
  46% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(120%);
  }
}

@keyframes sectionSweepLine {
  0% {
    transform: translateY(-32vh);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  100% {
    transform: translateY(118vh);
    opacity: 0;
  }
}

/* ===== 新增板块样式：看板 / 博客 / 订阅 ===== */

.board {
  background: linear-gradient(180deg, #070808, #101312 50%, #090a0a);
}

.board-loading {
  width: min(100%, 1180px);
  margin: 0 auto;
  color: var(--muted);
}

.board-grid {
  display: grid;
  width: min(100%, 1180px);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.board-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.board-card:hover {
  border-color: rgba(99, 211, 196, 0.42);
  transform: translateY(-4px);
}

.board-tag {
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.board-card h3 {
  margin: 12px 0;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.15;
}

.board-summary {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  flex-grow: 0;
}

.board-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-value {
  color: var(--amber);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 800;
  line-height: 1;
}

.metric-label {
  color: var(--muted);
  font-size: 11px;
}

.board-records {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.record {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(245, 240, 232, 0.08);
  font-size: 13px;
}

.record-date {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.record-event {
  color: var(--soft);
}

.record-pnl {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.record-win .record-pnl {
  color: var(--teal);
}

.record-loss .record-pnl {
  color: var(--red);
}

/* 博客 */
.blog {
  background: #070808;
}

.blog-grid {
  display: grid;
  width: min(100%, 1180px);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.blog-card:hover {
  border-color: rgba(99, 211, 196, 0.42);
  transform: translateY(-4px);
}

.blog-meta {
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.2;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  flex-grow: 1;
}

.blog-more {
  color: var(--soft);
  font-size: 14px;
  border-bottom: 1px solid rgba(99, 211, 196, 0.46);
  width: fit-content;
}

/* 订阅 */
.subscribe-copy {
  max-width: 560px;
  margin: 0 0 24px;
  color: var(--soft);
  font-size: 17px;
}

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 520px;
}

.subscribe-form input {
  flex: 1 1 260px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(245, 240, 232, 0.04);
  color: var(--ink);
  font-size: 15px;
}

.subscribe-form input:focus {
  outline: none;
  border-color: rgba(99, 211, 196, 0.55);
}

.subscribe-form button {
  cursor: pointer;
}

.subscribe-hint {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 960px) {
  .board-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* HUD polish layer */
.site-shell::before {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    rgba(99, 211, 196, 0.025) 0,
    rgba(99, 211, 196, 0.025) 1px,
    transparent 1px,
    transparent 3px
  );
  content: "";
  mix-blend-mode: screen;
  opacity: 0.46;
}

.metric-value,
.record-date,
.record-pnl,
.metric-board dt,
.next-peek span,
.signal-panel-top strong,
[data-last-updated] {
  font-family: var(--mono);
  font-feature-settings: "tnum" 1;
}

.hero h1 {
  text-shadow: 0 0 38px rgba(99, 211, 196, 0.18);
}

.eyebrow {
  position: relative;
  padding-left: 18px;
}

.eyebrow::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: var(--teal);
  box-shadow: var(--glow-teal);
  content: "";
  transform: translateY(-50%);
}

.board-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(18, 22, 22, 0.86), rgba(9, 11, 11, 0.92)),
    var(--panel);
}

.board-card::before,
.board-card::after {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--teal);
  content: "";
  opacity: 0.6;
  transition: opacity 200ms ease;
}

.board-card::before {
  top: 10px;
  left: 10px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.board-card::after {
  right: 10px;
  bottom: 10px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.board-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--glow-soft);
}

.board-card:hover::before,
.board-card:hover::after {
  opacity: 1;
}

.scan-sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(99, 211, 196, 0.08) 50%, transparent);
  transform: translateY(-100%);
}

.board-card:hover .scan-sweep {
  animation: cardScan 1.1s ease-in-out;
}

.board-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.board-tag::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: var(--glow-teal);
  content: "";
  animation: pulse 2.4s ease-in-out infinite;
}

.board-card h3 {
  letter-spacing: 0.01em;
}

.metric-value {
  color: var(--teal-bright);
  letter-spacing: -0.01em;
  text-shadow: 0 0 14px rgba(99, 211, 196, 0.4);
}

.board-metrics {
  position: relative;
  background: linear-gradient(90deg, rgba(99, 211, 196, 0.04), transparent 70%);
}

.record-win .record-pnl {
  color: var(--teal-bright);
  text-shadow: 0 0 10px rgba(99, 211, 196, 0.45);
}

.record-loss .record-pnl {
  color: var(--red);
  text-shadow: 0 0 10px rgba(224, 121, 106, 0.4);
}

.record {
  transition:
    background 160ms ease,
    padding-left 160ms ease;
}

.record:hover {
  background: rgba(99, 211, 196, 0.05);
  padding-left: 6px;
}

.board .section-heading::after {
  align-self: flex-end;
  color: var(--teal);
  content: "实时数据 / 公开记录";
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  opacity: 0.7;
  white-space: nowrap;
}

.signal-panel {
  background:
    radial-gradient(circle at 50% 38%, rgba(99, 211, 196, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(16, 20, 20, 0.9), rgba(8, 10, 10, 0.95));
}

.signal-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    transparent 0 22px,
    rgba(99, 211, 196, 0.04) 22px 23px
  );
  content: "";
}

.blog-card {
  position: relative;
  background: linear-gradient(180deg, rgba(16, 19, 19, 0.7), rgba(9, 11, 11, 0.85));
}

.blog-card::before {
  position: absolute;
  top: 26px;
  right: 28px;
  color: var(--teal);
  content: "->";
  font-family: var(--mono);
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.blog-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--glow-soft);
}

.blog-card:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.blog-meta {
  font-family: var(--mono);
}

.subscribe-form input {
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

.subscribe-form input:focus {
  box-shadow: var(--glow-soft);
}

.subscribe::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 12% 30%, rgba(99, 211, 196, 0.08), transparent 40%);
  content: "";
}

.brand-mark {
  box-shadow: inset 0 0 12px rgba(99, 211, 196, 0.15);
  text-shadow: var(--glow-teal);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(99, 211, 196, 0.7);
    opacity: 1;
  }

  50% {
    box-shadow: 0 0 2px rgba(99, 211, 196, 0.3);
    opacity: 0.45;
  }
}

@keyframes cardScan {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@media (max-width: 960px) {
  .board .section-heading::after {
    display: block;
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .board-tag::before,
  .board-card:hover .scan-sweep {
    animation: none;
  }

  .site-shell::before {
    display: none;
  }
}

/* Curation pass: restrained, premium, portfolio-first */
body {
  background:
    linear-gradient(135deg, rgba(99, 211, 196, 0.035), transparent 30%),
    linear-gradient(315deg, rgba(205, 167, 107, 0.03), transparent 34%),
    #050606;
}

.site-shell::before {
  opacity: 0.18;
}

.nav {
  padding-top: 24px;
}

.nav.is-scrolled {
  background: rgba(5, 6, 6, 0.84);
}

.brand-mark,
.contact-pill,
.primary-action,
.secondary-action,
.contact-card,
.board-card,
.blog-card,
.metric-board div,
.signal-panel,
.subscribe-form input {
  border-radius: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-color: rgba(245, 240, 232, 0.24);
  background: rgba(245, 240, 232, 0.03);
  color: var(--ink);
  box-shadow: none;
  text-shadow: none;
}

.contact-pill {
  border-color: rgba(245, 240, 232, 0.22);
  background: rgba(245, 240, 232, 0.035);
}

.hero {
  place-items: end center;
  padding-bottom: 148px;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.95), rgba(5, 6, 6, 0.38) 58%, rgba(5, 6, 6, 0.86)),
    linear-gradient(0deg, rgba(5, 6, 6, 0.98), rgba(5, 6, 6, 0.08) 40%, rgba(5, 6, 6, 0.62));
}

.hero-video {
  filter: saturate(0.82) contrast(1.08);
  opacity: 0.76;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 7vw, 120px);
  align-items: end;
  width: min(100%, 1220px);
  padding-top: 0;
}

.hero-content > :not(.hero-ledger) {
  grid-column: 1;
}

.hero h1 {
  max-width: 940px;
  margin: 16px 0 20px;
  font-size: clamp(58px, 7.8vw, 116px);
  font-weight: 850;
  line-height: 0.91;
  text-shadow: 0 0 42px rgba(99, 211, 196, 0.1);
}

.hero-title-single {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(54px, 7.1vw, 104px);
}

.hero-copy {
  max-width: 690px;
  color: rgba(245, 240, 232, 0.72);
  font-size: clamp(17px, 1.75vw, 22px);
}

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

.primary-action,
.secondary-action {
  min-height: 52px;
  padding-inline: 22px;
}

.primary-action {
  border-color: rgba(245, 240, 232, 0.78);
  background: #f4eee5;
}

.secondary-action {
  border-color: rgba(245, 240, 232, 0.16);
  background: rgba(245, 240, 232, 0.025);
}

.hero-ledger {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: end;
  border-top: 1px solid rgba(245, 240, 232, 0.34);
  border-bottom: 1px solid rgba(245, 240, 232, 0.16);
  background:
    linear-gradient(90deg, rgba(245, 240, 232, 0.055), transparent),
    rgba(5, 6, 6, 0.38);
  backdrop-filter: blur(18px);
}

.ledger-head,
.ledger-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.ledger-head {
  padding-inline: 0;
}

.ledger-row:last-child {
  border-bottom: 0;
}

.ledger-head span,
.ledger-row span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ledger-head strong,
.ledger-row strong {
  color: var(--soft);
  font-size: 13px;
  white-space: nowrap;
}

.ledger-head strong {
  color: var(--amber);
  font-family: var(--mono);
}

.next-peek {
  grid-template-columns: minmax(80px, 0.18fr) minmax(240px, 0.28fr) 1fr auto;
  min-height: 132px;
  border-top-color: rgba(245, 240, 232, 0.18);
  background:
    linear-gradient(90deg, rgba(245, 240, 232, 0.08), transparent 28%),
    rgba(5, 6, 6, 0.78);
}

.next-peek::before {
  opacity: 0.2;
}

.next-index {
  color: rgba(205, 167, 107, 0.88);
  font-size: clamp(42px, 5.4vw, 76px);
}

.next-title strong {
  font-size: clamp(22px, 2.4vw, 32px);
}

.section {
  padding-block: clamp(96px, 12vw, 164px);
}

.section-kicker {
  display: block;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.profile,
.board,
.blog {
  background: linear-gradient(180deg, rgba(5, 6, 6, 0.76), rgba(10, 12, 13, 0.72) 48%, rgba(5, 6, 6, 0.78));
}

.profile-grid {
  width: min(100%, 1220px);
  margin-top: 34px;
  grid-template-columns: minmax(260px, 0.74fr) minmax(360px, 1.06fr) minmax(240px, 0.66fr);
  gap: clamp(26px, 4vw, 56px);
}

.signal-panel {
  min-height: 560px;
  border-color: rgba(245, 240, 232, 0.14);
  background:
    linear-gradient(180deg, rgba(245, 240, 232, 0.055), rgba(245, 240, 232, 0.012)),
    linear-gradient(rgba(245, 240, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 232, 0.03) 1px, transparent 1px),
    #0a0c0c;
  background-size: auto, 40px 40px, 40px 40px, auto;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.signal-panel::before {
  opacity: 0.35;
}

.signal-panel::after {
  border-color: rgba(205, 167, 107, 0.16);
  transform: translate(10px, -10px);
}

.signal-orbit {
  border-radius: 0;
  border-color: rgba(245, 240, 232, 0.14);
  background:
    linear-gradient(135deg, rgba(99, 211, 196, 0.12), transparent 48%),
    linear-gradient(315deg, rgba(205, 167, 107, 0.08), transparent 54%);
}

.signal-orbit::before,
.signal-orbit::after {
  border-radius: 0;
}

.signal-status {
  border-color: rgba(245, 240, 232, 0.12);
  background: rgba(5, 6, 6, 0.5);
}

.profile-copy {
  padding-top: 18px;
}

.profile-copy h2 {
  max-width: 600px;
  font-size: clamp(38px, 4.1vw, 56px);
}

.profile-copy p {
  max-width: 640px;
  color: rgba(245, 240, 232, 0.72);
}

.contact-list {
  gap: 12px;
  margin-top: 34px;
}

.contact-card {
  grid-template-columns: 104px 1fr;
  min-height: 64px;
  border-color: rgba(245, 240, 232, 0.15);
  background:
    linear-gradient(90deg, rgba(245, 240, 232, 0.055), transparent 64%),
    rgba(245, 240, 232, 0.018);
}

.contact-card:hover {
  border-color: rgba(205, 167, 107, 0.34);
  background:
    linear-gradient(90deg, rgba(205, 167, 107, 0.08), transparent 64%),
    rgba(245, 240, 232, 0.028);
}

.contact-card span {
  color: rgba(205, 167, 107, 0.88);
}

.metric-board {
  gap: 14px;
}

.metric-board div {
  border-color: rgba(245, 240, 232, 0.14);
  background:
    linear-gradient(180deg, rgba(245, 240, 232, 0.055), rgba(245, 240, 232, 0.018)),
    rgba(8, 10, 10, 0.72);
}

.metric-board dt {
  color: rgba(245, 240, 232, 0.88);
}

.section-heading {
  width: min(100%, 1220px);
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading p {
  max-width: 470px;
  color: rgba(245, 240, 232, 0.62);
}

.board-grid {
  width: min(100%, 1220px);
  gap: 20px;
}

.board-card {
  min-height: 430px;
  padding: 30px;
  border-color: rgba(245, 240, 232, 0.14);
  background:
    linear-gradient(180deg, rgba(245, 240, 232, 0.052), rgba(245, 240, 232, 0.018)),
    rgba(7, 8, 8, 0.84);
}

.board-card:hover {
  border-color: rgba(205, 167, 107, 0.36);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.board-card::before,
.board-card::after {
  border-color: rgba(205, 167, 107, 0.58);
  opacity: 0.45;
}

.board-tag::before {
  display: none;
}

.board-tag {
  color: rgba(205, 167, 107, 0.9);
}

.board-card h3 {
  margin-top: 14px;
  font-size: clamp(22px, 2vw, 30px);
}

.board-summary {
  color: rgba(245, 240, 232, 0.62);
}

.board-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(245, 240, 232, 0.025);
}

.metric-value {
  color: var(--ink);
  text-shadow: none;
}

.record:hover {
  background: rgba(245, 240, 232, 0.035);
}

.board .section-heading::after {
  color: rgba(205, 167, 107, 0.72);
  content: "公开记录 / 不承诺收益";
}

.blog-grid {
  width: min(100%, 1220px);
  gap: 20px;
}

.blog-card {
  min-height: 230px;
  border-color: rgba(245, 240, 232, 0.14);
  background:
    linear-gradient(180deg, rgba(245, 240, 232, 0.05), rgba(245, 240, 232, 0.018)),
    rgba(7, 8, 8, 0.78);
}

.blog-card:hover {
  border-color: rgba(205, 167, 107, 0.34);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.blog-meta,
.blog-more {
  color: rgba(205, 167, 107, 0.88);
}

.closing {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(5, 6, 6, 0.78), rgba(10, 12, 13, 0.68));
}

.closing::before {
  inset: 11% clamp(18px, 4vw, 56px) auto;
  background: linear-gradient(90deg, transparent, rgba(245, 240, 232, 0.38), transparent);
}

.subscribe::before {
  background:
    linear-gradient(90deg, rgba(99, 211, 196, 0.055), transparent 30%),
    linear-gradient(270deg, rgba(205, 167, 107, 0.045), transparent 34%);
}

.closing-inner {
  width: min(100%, 1120px);
}

.closing h2 {
  max-width: 960px;
  font-size: clamp(46px, 6.4vw, 92px);
}

.subscribe-copy {
  max-width: 640px;
  color: rgba(245, 240, 232, 0.68);
}

.subscribe-form {
  max-width: 680px;
}

.subscribe-form input {
  min-height: 56px;
  border-color: rgba(245, 240, 232, 0.18);
  background: rgba(245, 240, 232, 0.035);
}

.subscribe-hint {
  color: rgba(245, 240, 232, 0.48);
}

footer {
  border-top-color: rgba(245, 240, 232, 0.14);
}

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-ledger {
    grid-column: 1;
    grid-row: auto;
    width: min(100%, 560px);
    margin-top: 20px;
  }

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

  .signal-panel {
    min-height: 430px;
  }
}

@media (max-width: 960px) {
  .board-grid,
  .blog-grid {
    gap: 16px;
  }

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

@media (max-width: 640px) {
  .hero {
    padding-bottom: 150px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(40px, 11.5vw, 54px);
  }

  .hero-title-single {
    max-width: 100%;
    white-space: normal;
    font-size: clamp(42px, 10.6vw, 52px);
    line-height: 1.02;
  }

  .hero-copy {
    max-width: min(100%, 342px);
    font-size: 15px;
    line-height: 1.7;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .hero-ledger {
    display: none;
  }

  .next-peek {
    min-height: 114px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .closing h2 {
    font-size: clamp(40px, 12vw, 58px);
  }
}

/* Dimension entrance and floating project universe */
.hero {
  place-items: center;
  padding-bottom: 96px;
}

.hero-content {
  grid-template-columns: 1fr;
  width: min(100%, 1220px);
}

.hero-content > :not(.hero-ledger) {
  grid-column: 1;
}

.hero-title-single {
  max-width: min(100%, 1160px);
}

.project-universe {
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding-block: clamp(88px, 10vw, 132px);
  background:
    linear-gradient(180deg, rgba(5, 6, 6, 0.54), rgba(5, 6, 6, 0.34) 46%, rgba(5, 6, 6, 0.58)),
    linear-gradient(90deg, rgba(5, 6, 6, 0.42), transparent 52%, rgba(5, 6, 6, 0.48));
  overflow: hidden;
}

.project-space {
  position: relative;
  width: min(100%, 1220px);
  min-height: clamp(620px, 72vh, 820px);
  margin: 0 auto;
}

.project-space .section-kicker {
  width: auto;
  margin: 0;
}

.universe-intro {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-top: clamp(34px, 5vw, 70px);
}

.universe-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(44px, 6.8vw, 96px);
  line-height: 0.94;
  letter-spacing: 0;
}

.universe-intro p {
  max-width: 520px;
  margin: 0;
  color: rgba(245, 240, 232, 0.68);
  font-size: clamp(16px, 1.6vw, 20px);
}

.orbit-field {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.orbit-field::before,
.orbit-field::after {
  position: absolute;
  border: 1px solid rgba(99, 211, 196, 0.1);
  content: "";
  pointer-events: none;
}

.orbit-field::before {
  right: 9%;
  bottom: 13%;
  width: min(62vw, 760px);
  aspect-ratio: 1;
  transform: rotate(-18deg);
}

.orbit-field::after {
  right: 24%;
  bottom: 25%;
  width: min(38vw, 470px);
  aspect-ratio: 1;
  border-color: rgba(205, 167, 107, 0.12);
  transform: rotate(12deg);
}

.orbit-ring {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(245, 240, 232, 0.08);
  opacity: 0.7;
}

.orbit-ring-one {
  right: 18%;
  top: 13%;
  width: min(56vw, 690px);
  aspect-ratio: 1.55;
  transform: rotate(-11deg);
}

.orbit-ring-two {
  right: 2%;
  bottom: 8%;
  width: min(42vw, 540px);
  aspect-ratio: 1.35;
  border-color: rgba(99, 211, 196, 0.12);
  transform: rotate(18deg);
}

.project-orb {
  position: absolute;
  z-index: 2;
  display: grid;
  width: clamp(210px, 23vw, 310px);
  min-height: 138px;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(245, 240, 232, 0.17);
  background:
    linear-gradient(135deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.02)),
    rgba(7, 8, 8, 0.62);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  animation: floatOrb 7s ease-in-out infinite;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.project-orb:hover {
  border-color: rgba(99, 211, 196, 0.48);
  background:
    linear-gradient(135deg, rgba(99, 211, 196, 0.12), rgba(205, 167, 107, 0.05)),
    rgba(7, 8, 8, 0.68);
  transform: translateY(-5px);
}

.project-orb span {
  color: rgba(205, 167, 107, 0.92);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.project-orb strong {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.15;
}

.project-orb small {
  color: rgba(245, 240, 232, 0.62);
  font-size: 14px;
}

.project-orb-football {
  right: 5%;
  top: 13%;
}

.project-orb-quant {
  right: 32%;
  top: 39%;
  animation-delay: -1.8s;
}

.project-orb-market {
  right: 8%;
  bottom: 17%;
  animation-delay: -3.2s;
}

.project-orb-community {
  left: 3%;
  bottom: 11%;
  animation-delay: -4.7s;
}

@keyframes floatOrb {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -18px;
  }
}

@media (max-width: 960px) {
  .project-space {
    min-height: auto;
  }

  .orbit-field {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 44px;
  }

  .orbit-field::before,
  .orbit-field::after,
  .orbit-ring {
    display: none;
  }

  .project-orb {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 150px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
    place-items: center start;
    padding-bottom: 54px;
  }

  .hero-title-single {
    max-width: 100%;
  }

  .project-universe {
    min-height: auto;
    padding-block: 86px;
  }

  .universe-intro h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .orbit-field {
    grid-template-columns: 1fr;
  }

  .project-orb {
    animation: none;
  }
}
