:root {
  --paper: #07101a;
  --paper-soft: rgb(12 22 34 / 0.78);
  --ink: #eef7ff;
  --ink-soft: #a7b7c8;
  --muted: #6f849a;
  --line: rgb(132 169 196 / 0.24);
  --line-dark: rgb(118 226 255 / 0.2);
  --charcoal: #050911;
  --charcoal-soft: #0b1320;
  --white-ink: #f4fbff;
  --accent: #65e6ff;
  --accent-soft: rgb(101 230 255 / 0.12);
  --gold: #ffe8ae;
  --radius: 18px;
  --nav-h: 68px;
  --max: 1240px;
  --font-display: "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
  --font-body: "SF Pro Text", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
  --font-mono: "SFMono-Regular", "Cascadia Mono", "Roboto Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  background: linear-gradient(135deg, #050911 0%, #08111d 38%, #0b1320 100%);
  color: var(--ink);
  font-family: var(--font-body);
  letter-spacing: 0;
  line-height: 1.65;
  text-rendering: geometricPrecision;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(to right, rgb(101 230 255 / 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(101 230 255 / 0.035) 1px, transparent 1px);
  background-size: 104px 104px;
}

body::after {
  background:
    repeating-linear-gradient(to bottom, transparent 0 9px, rgb(255 255 255 / 0.014) 10px),
    linear-gradient(100deg, rgb(34 200 255 / 0.035), transparent 42%, rgb(255 255 255 / 0.025));
  mix-blend-mode: screen;
  opacity: 0.54;
}

.home-page {
  overflow: hidden;
}

.ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.42;
  pointer-events: none;
}

.skip-link,
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 40;
  transform: translateY(-140%);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--charcoal-soft);
  color: var(--ink);
  padding: 10px 12px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgb(238 247 255 / 0.08);
  background: linear-gradient(180deg, rgb(5 9 17 / 0.72), rgb(5 9 17 / 0.22) 72%, transparent);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.nav {
  min-height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-size: 15px;
  font-weight: 680;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgb(101 230 255 / 0.36);
  border-radius: 999px;
  background: rgb(101 230 255 / 0.12);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: rgb(238 247 255 / 0.68);
  font-size: 13px;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  border-color: rgb(255 232 174 / 0.74);
  outline: none;
}

.nav-cta,
.menu-toggle,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(101 230 255 / 0.48);
  border-radius: 999px;
  background: rgb(101 230 255 / 0.9);
  color: #041019;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  cursor: pointer;
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button.secondary {
  background: rgb(255 255 255 / 0.04);
  color: var(--ink);
  border-color: rgb(238 247 255 / 0.22);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button:hover,
.button:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translate3d(var(--magnet-x, 0), calc(var(--magnet-y, 0) - 1px), 0);
  box-shadow: 0 16px 42px rgb(34 200 255 / 0.18);
  outline: none;
}

.button:disabled {
  border-color: rgb(238 247 255 / 0.12);
  background: rgb(255 255 255 / 0.04);
  color: var(--muted);
  cursor: not-allowed;
  box-shadow: none;
}

.menu-toggle {
  display: none;
  background: rgb(5 9 17 / 0.28);
  color: var(--ink);
  border-color: rgb(238 247 255 / 0.24);
}

main {
  overflow: clip;
}

.home-main {
  min-height: 100dvh;
}

.home-hero {
  --hero-focus-x: 50%;
  --hero-focus-y: 49%;
  position: relative;
  min-height: 100dvh;
  isolation: isolate;
  overflow: hidden;
  background: #07101a;
}

.home-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: #07101a;
}

.home-bg img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: var(--hero-focus-x) var(--hero-focus-y);
  transform: scale(1.002);
  filter: saturate(1.04) contrast(1.02) brightness(1.04);
  transition: object-position 420ms cubic-bezier(0.16, 1, 0.3, 1), filter 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 721px) {
  .home-page:has(.identity-popover.is-open) .home-bg img {
    object-position: 22% var(--hero-focus-y);
    filter: saturate(1.05) contrast(1.03) brightness(1.02);
  }
}

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

.home-hero::before {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 44%, transparent 0 45%, rgb(4 8 14 / 0.1) 72%, rgb(4 8 14 / 0.34) 100%),
    linear-gradient(90deg, rgb(5 9 17 / 0.24) 0%, transparent 24%, transparent 70%, rgb(5 9 17 / 0.16) 100%);
}

.home-hero::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgb(5 9 17 / 0.16), transparent 28%, transparent 66%, rgb(5 9 17 / 0.52)),
    radial-gradient(circle at 50% 88%, rgb(255 232 174 / 0.14), transparent 32%);
  mix-blend-mode: normal;
}

.home-signature {
  position: absolute;
  left: 50%;
  bottom: clamp(30px, 6vh, 70px);
  z-index: 6;
  width: min(560px, calc(100% - 56px));
  transform: translateX(-50%);
  text-align: center;
  color: rgb(244 251 255 / 0.9);
  text-shadow:
    0 2px 20px rgb(0 0 0 / 0.84),
    0 0 40px rgb(255 232 174 / 0.14);
}

.home-signature[data-reveal] {
  transform: translateX(-50%);
}

.home-signature[data-reveal].is-visible {
  transform: translate(-50%, 0);
}

.home-lede {
  font-size: clamp(15px, 1.18vw, 19px);
  line-height: 1.5;
  font-weight: 500;
  text-wrap: balance;
}

.home-signature h1 {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.1;
  font-weight: 650;
  letter-spacing: 0;
}

.home-role {
  margin-top: 5px;
  color: rgb(238 247 255 / 0.62);
  font-size: 11px;
  line-height: 1.6;
}

.home-mobile-routes {
  display: none;
  margin-top: 14px;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.home-mobile-routes a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 232 174 / 0.26);
  border-radius: 999px;
  background: rgb(5 9 17 / 0.44);
  color: rgb(255 247 224 / 0.86);
  padding: 0 10px;
  font-size: 12px;
  text-shadow: 0 2px 14px rgb(0 0 0 / 0.72);
}

.world-portals {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.world-portal {
  --portal-x: 50%;
  --portal-y: 50%;
  position: absolute;
  left: var(--portal-x);
  top: var(--portal-y);
  min-width: 112px;
  display: grid;
  justify-items: center;
  gap: 4px;
  color: rgb(255 238 194 / 0.82);
  text-align: center;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  text-shadow:
    0 2px 16px rgb(0 0 0 / 0.8),
    0 0 18px rgb(255 232 174 / 0.18);
  opacity: 0.82;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1), color 180ms ease;
}

.world-portal::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 1px solid rgb(255 232 174 / 0.72);
  border-radius: 999px;
  background: rgb(255 232 174 / 0.82);
  box-shadow:
    0 0 18px rgb(255 232 174 / 0.48),
    0 0 32px rgb(101 230 255 / 0.2);
}

.world-portal strong {
  font-size: 13px;
  line-height: 1.25;
  font-weight: 620;
}

.world-portal span {
  color: rgb(238 247 255 / 0.46);
  font-size: 10px;
  line-height: 1.25;
}

.world-portal:hover,
.world-portal:focus-visible {
  color: rgb(255 247 224 / 0.96);
  opacity: 1;
  transform: translate(-50%, calc(-50% - 4px));
  outline: none;
}

.portal-method {
  --portal-x: 17.2%;
  --portal-y: 52.4%;
}

.portal-lab {
  --portal-x: 19.5%;
  --portal-y: 77.2%;
}

.portal-work {
  --portal-x: 67.8%;
  --portal-y: 24.4%;
}

.portal-knowledge {
  --portal-x: 83.6%;
  --portal-y: 48%;
}

.portal-contact {
  --portal-x: 76.8%;
  --portal-y: 79.4%;
}

.identity-name-trigger {
  all: unset;
  display: inline-block;
  cursor: help;
  border-radius: 10px;
}

.identity-name-trigger:focus-visible {
  outline: 1px solid rgb(255 232 174 / 0.82);
  outline-offset: 5px;
}

[data-identity-trigger] {
  cursor: help;
}

.brand[data-identity-trigger] {
  border-radius: 999px;
}

.brand[data-identity-trigger]:focus-visible {
  outline: 1px solid rgb(255 232 174 / 0.7);
  outline-offset: 5px;
}

.identity-hotspot {
  position: absolute;
  z-index: 7;
  border: 0;
  background: transparent;
  color: transparent;
  padding: 0;
  cursor: help;
}

.identity-hotspot-person {
  left: 42.4%;
  top: 17.5%;
  width: 16.2%;
  height: 46.5%;
}

.identity-hotspot span {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.identity-hotspot::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid transparent;
  border-radius: 44% 48% 42% 46%;
  background:
    radial-gradient(circle at 50% 26%, rgb(255 232 174 / 0.14), transparent 34%),
    radial-gradient(circle at 48% 72%, rgb(101 230 255 / 0.1), transparent 44%);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 180ms ease;
}

.identity-hotspot:hover::before,
.identity-hotspot:focus-visible::before {
  border-color: rgb(255 232 174 / 0.22);
  opacity: 1;
  transform: scale(1);
}

.identity-hotspot:focus-visible {
  outline: none;
}

.identity-popover {
  position: absolute;
  left: clamp(34px, 5.4vw, 86px);
  top: clamp(82px, 10.6vh, 106px);
  z-index: 12;
  width: min(560px, calc(100% - 64px));
  min-height: min(620px, calc(100dvh - 132px));
  border: 1px solid rgb(255 232 174 / 0.5);
  border-radius: 0;
  background:
    radial-gradient(circle at 88% 9%, rgb(255 232 174 / 0.18), transparent 17%),
    radial-gradient(circle at 20% 78%, rgb(101 230 255 / 0.1), transparent 28%),
    linear-gradient(90deg, rgb(6 13 24 / 0.7), rgb(9 20 34 / 0.48) 62%, rgb(9 20 34 / 0.2)),
    linear-gradient(180deg, rgb(9 18 31 / 0.74), rgb(6 11 20 / 0.62));
  clip-path: polygon(0 0, calc(100% - 58px) 0, 100% 38px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
  box-shadow:
    0 28px 90px rgb(0 0 0 / 0.32),
    0 0 54px rgb(255 232 174 / 0.12),
    inset 0 0 0 1px rgb(255 247 224 / 0.08),
    inset 0 1px 0 rgb(255 255 255 / 0.1);
  color: var(--ink);
  padding: clamp(28px, 3.2vw, 42px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-8px, 10px, 0) scale(0.985);
  transform-origin: 26% 18%;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

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

.identity-popover::before {
  inset: 16px;
  background:
    linear-gradient(90deg, rgb(255 232 174 / 0.68), transparent 52%) top left / 62% 1px no-repeat,
    linear-gradient(90deg, transparent, rgb(255 232 174 / 0.52)) bottom right / 46% 1px no-repeat,
    linear-gradient(180deg, rgb(255 232 174 / 0.42), transparent 60%) top left / 1px 62% no-repeat,
    linear-gradient(180deg, transparent, rgb(255 232 174 / 0.42)) bottom right / 1px 52% no-repeat,
    radial-gradient(circle at 9% 8%, rgb(255 232 174 / 0.72) 0 2px, transparent 3px),
    radial-gradient(circle at 77% 18%, rgb(255 232 174 / 0.62) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 43%, rgb(101 230 255 / 0.58) 0 2px, transparent 3px),
    linear-gradient(126deg, transparent 0 31%, rgb(255 232 174 / 0.18) 31.2% 31.5%, transparent 31.7%),
    linear-gradient(25deg, transparent 0 70%, rgb(101 230 255 / 0.16) 70.1% 70.4%, transparent 70.6%);
  opacity: 0.9;
}

.identity-popover::after {
  right: 24px;
  top: 24px;
  width: 118px;
  height: 118px;
  border: 1px solid rgb(255 232 174 / 0.2);
  border-radius: 999px;
  background:
    radial-gradient(circle, transparent 0 38%, rgb(255 232 174 / 0.16) 39% 40%, transparent 41% 100%),
    conic-gradient(from 38deg, transparent 0 18deg, rgb(255 232 174 / 0.28) 18deg 21deg, transparent 21deg 78deg, rgb(101 230 255 / 0.24) 78deg 81deg, transparent 81deg 360deg);
  opacity: 0.78;
}

.identity-popover.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.identity-kicker {
  position: relative;
  z-index: 1;
  color: rgb(101 230 255 / 0.82);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.12em;
}

.identity-popover h2 {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 760;
  text-shadow:
    0 0 28px rgb(255 232 174 / 0.16),
    0 3px 20px rgb(0 0 0 / 0.6);
}

.identity-roman {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  color: rgb(255 232 174 / 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-style: italic;
  line-height: 1.12;
}

.identity-current {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  color: var(--gold);
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.55;
  font-weight: 650;
}

.identity-summary {
  position: relative;
  z-index: 1;
  max-width: 32ch;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgb(255 232 174 / 0.42);
  color: rgb(255 247 224 / 0.9);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.72;
}

.identity-history {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.identity-history span {
  display: inline-flex;
  align-items: center;
  color: rgb(255 247 224 / 0.9);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
}

.identity-history span + span::before {
  content: "|";
  margin-right: 10px;
  color: rgb(255 232 174 / 0.48);
  font-weight: 400;
}

.identity-titles {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.identity-titles li {
  position: relative;
  min-height: 34px;
  display: flex;
  align-items: center;
  padding-left: 50px;
  color: rgb(255 247 224 / 0.86);
  font-size: 15px;
  line-height: 1.45;
  text-shadow: 0 2px 14px rgb(0 0 0 / 0.42);
}

.identity-titles li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 232 174 / 0.38);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgb(255 232 174 / 0.14), transparent 56%),
    rgb(5 9 17 / 0.26);
  color: rgb(101 230 255 / 0.9);
  font-size: 10px;
  transform: translateY(-50%);
  box-shadow:
    0 0 16px rgb(255 232 174 / 0.16),
    inset 0 0 12px rgb(101 230 255 / 0.08);
}

.page-main {
  min-height: 100dvh;
  padding-top: var(--nav-h);
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: clamp(78px, 11vw, 150px) 0 clamp(54px, 8vw, 96px);
  background:
    linear-gradient(135deg, rgb(101 230 255 / 0.1), transparent 34%),
    linear-gradient(180deg, rgb(5 9 17 / 0.32), rgb(5 9 17 / 0.82)),
    var(--charcoal);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: image-set(
    url("homepage-floating-archipelago-hero-v1.webp") type("image/webp"),
    url("homepage-floating-archipelago-hero-v1.png") type("image/png")
  ) center / cover no-repeat;
  opacity: 0.16;
  filter: saturate(0.95) contrast(1.04);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 28px;
  color: rgb(255 232 174 / 0.78);
  font-size: 13px;
  transition: color 180ms ease;
}

.back-link:hover,
.back-link:focus-visible {
  color: rgb(255 247 224 / 0.98);
  outline: none;
}

.page-hero h1 {
  max-width: 10ch;
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.98;
  font-weight: 740;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-lede {
  max-width: 56ch;
  margin-top: 24px;
  color: rgb(238 247 255 / 0.78);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.78;
  text-wrap: pretty;
}

.page-section {
  border-top: 1px solid var(--line);
  padding: clamp(72px, 9vw, 124px) 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: clamp(36px, 6vw, 64px);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  font-weight: 740;
  text-wrap: balance;
}

.section-lede {
  max-width: 62ch;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
  text-wrap: pretty;
}

.statement-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.statement {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.18;
  color: var(--ink);
  text-wrap: balance;
}

.note-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 30px);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.07), rgb(255 255 255 / 0.025)),
    rgb(12 22 34 / 0.48);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.note-card p,
.contact-card p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.78;
}

.note-card p + p {
  margin-top: 16px;
}

.method-grid,
.writing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgb(255 255 255 / 0.025);
}

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

.method-item,
.writing-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3.5vw, 42px);
  border-right: 1px solid var(--line);
  background: rgb(255 255 255 / 0.03);
  transition: background 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.method-item:hover,
.writing-card:hover {
  background: var(--accent-soft);
  transform: translateY(-3px);
}

.method-item:last-child,
.writing-card:last-child {
  border-right: 0;
}

.method-number,
.writing-card span,
.case-item span,
.dark-row span,
.contact-item span,
.knowledge-row span,
.knowledge-extra span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
}

.method-item h3 {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.6vw, 58px);
  line-height: 1;
  font-weight: 740;
}

.method-item p,
.writing-card p,
.case-item p,
.dark-row p,
.knowledge-row p,
.knowledge-extra p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.74;
}

.method-foot {
  margin-top: auto;
  padding-top: 42px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
  text-transform: uppercase;
}

.dark-panel,
.knowledge-shell,
.case-board {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgb(255 255 255 / 0.025);
}

.dark-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line-dark);
  padding: 24px;
}

.dark-row:last-child,
.case-item:last-child,
.knowledge-row:last-child {
  border-bottom: 0;
}

.dark-row strong,
.case-item h3,
.knowledge-row strong,
.writing-card strong,
.contact-card h3 {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.34;
  font-weight: 700;
}

.knowledge-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
}

.knowledge-title {
  padding: clamp(26px, 4vw, 44px);
  border-right: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgb(101 230 255 / 0.1), transparent 42%),
    var(--paper-soft);
}

.knowledge-title h3,
.case-lead h3 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1.02;
  font-weight: 740;
}

.knowledge-title p,
.case-lead p {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.knowledge-list {
  display: grid;
}

.knowledge-row {
  border-bottom: 1px solid var(--line);
}

.knowledge-row summary {
  display: grid;
  grid-template-columns: 120px minmax(160px, 0.7fr) 1fr 28px;
  gap: 24px;
  align-items: start;
  padding: 24px clamp(24px, 3vw, 36px);
  cursor: pointer;
  list-style: none;
  transition: background 180ms ease;
}

.knowledge-row summary::-webkit-details-marker {
  display: none;
}

.knowledge-row summary:hover,
.knowledge-row summary:focus-visible {
  background: var(--accent-soft);
  outline: none;
}

.knowledge-plus {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 16px;
  font-style: normal;
  line-height: 1;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease;
}

.knowledge-row[open] .knowledge-plus {
  background: var(--accent);
  color: #041019;
  transform: rotate(45deg);
}

.knowledge-extra {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 0 clamp(24px, 3vw, 36px) 28px;
}

.case-board {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.case-lead {
  min-height: 420px;
  padding: clamp(30px, 5vw, 56px);
  border-right: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgb(101 230 255 / 0.12), transparent 48%),
    var(--paper-soft);
}

.case-list {
  display: grid;
}

.case-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  padding: clamp(24px, 3vw, 34px);
  transition: background 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-item:hover {
  background: var(--accent-soft);
  transform: translateX(4px);
}

.writing-card {
  min-height: 280px;
}

.writing-card p {
  margin-top: auto;
  padding-top: 32px;
}

.content-grid,
.artifact-grid,
.principle-grid,
.framework-grid,
.evidence-grid,
.article-showcase,
.method-card-grid,
.experiment-board {
  display: grid;
  gap: 14px;
}

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

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

.artifact-grid,
.principle-grid,
.framework-grid,
.evidence-grid,
.article-showcase,
.method-card-grid,
.experiment-board {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-card,
.artifact-card,
.principle-card,
.signal-item,
.framework-card,
.evidence-card,
.article-card,
.method-card,
.experiment-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.06), rgb(255 255 255 / 0.02)),
    rgb(12 22 34 / 0.42);
  overflow: hidden;
}

.content-card,
.artifact-card,
.principle-card,
.framework-card,
.evidence-card,
.article-card,
.method-card,
.experiment-card {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
}

.content-card::before,
.artifact-card::before,
.principle-card::before,
.signal-item::before,
.framework-card::before,
.evidence-card::before,
.article-card::before,
.method-card::before,
.experiment-card::before,
.overview-panel::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(101 230 255 / 0.64), transparent);
  opacity: 0.72;
}

.content-card span,
.artifact-card span,
.principle-card span,
.signal-item span,
.process-step span,
.bridge-kicker,
.framework-card span,
.evidence-card span,
.article-card span,
.method-card span,
.experiment-card span,
.status-pill,
.field-hint {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.4;
}

.content-card h3,
.artifact-card h3,
.principle-card h3,
.framework-card h3,
.evidence-card h3,
.article-card h3,
.method-card h3,
.experiment-card h3 {
  margin-top: 24px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.28;
}

.content-card p,
.artifact-card p,
.principle-card p,
.signal-item p,
.process-step p,
.bridge-copy p,
.framework-card p,
.evidence-card p,
.article-card p,
.method-card p,
.experiment-card p,
.overview-copy p,
.loop-step p,
.form-field p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.74;
}

.overview-panel,
.contact-form {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.06), rgb(255 255 255 / 0.02)),
    rgb(12 22 34 / 0.44);
}

.overview-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
}

.overview-copy {
  padding: clamp(26px, 4.6vw, 54px);
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 12%, rgb(255 232 174 / 0.12), transparent 34%),
    rgb(12 22 34 / 0.42);
}

.overview-copy h2,
.dimension-loop h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
}

.dimension-loop {
  padding: clamp(24px, 4vw, 44px);
}

.loop-steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-top: 26px;
}

.loop-step {
  min-height: 150px;
  border: 1px solid rgb(101 230 255 / 0.22);
  border-radius: 16px;
  background: rgb(101 230 255 / 0.06);
  padding: 16px;
}

.loop-step strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.28;
}

.loop-step p {
  margin-top: 10px;
  font-size: 13px;
}

.framework-card {
  min-height: 300px;
}

.framework-card strong,
.evidence-card strong,
.article-card strong,
.method-card strong,
.experiment-card strong {
  color: var(--gold);
  font-weight: 650;
}

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

.resource-link {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgb(255 232 174 / 0.24);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgb(255 232 174 / 0.1), rgb(101 230 255 / 0.035)),
    rgb(12 22 34 / 0.44);
  padding: 22px;
  transition: border-color 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.resource-link:hover,
.resource-link:focus-visible {
  border-color: rgb(255 232 174 / 0.62);
  transform: translateY(-2px);
  outline: none;
}

.resource-link strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.resource-link span {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 13px;
}

.evidence-grid,
.article-showcase {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.evidence-card,
.article-card {
  min-height: 360px;
}

.evidence-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-pill {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(101 230 255 / 0.26);
  border-radius: 999px;
  background: rgb(101 230 255 / 0.08);
  padding: 0 10px;
  color: rgb(201 246 255 / 0.88);
  white-space: nowrap;
}

.evidence-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.evidence-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.64;
}

.evidence-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.proof-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 22px;
  color: rgb(255 232 174 / 0.9);
  font-size: 14px;
}

.proof-link:hover,
.proof-link:focus-visible {
  color: var(--ink);
  outline: none;
}

.article-card {
  display: flex;
  flex-direction: column;
}

.article-card .proof-link {
  margin-top: auto;
  padding-top: 22px;
}

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

.method-card,
.experiment-card {
  min-height: 280px;
}

.experiment-card {
  display: grid;
  gap: 18px;
}

.experiment-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field label,
.form-field > span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgb(238 247 255 / 0.18);
  border-radius: 16px;
  background: rgb(5 9 17 / 0.55);
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

.form-field textarea {
  min-height: 118px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgb(101 230 255 / 0.68);
  outline: none;
  box-shadow: 0 0 0 3px rgb(101 230 255 / 0.12);
}

.form-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-status {
  display: block;
  margin-top: 12px;
  color: var(--gold);
}

.form-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.form-result {
  margin-top: 20px;
  border: 1px solid rgb(255 232 174 / 0.28);
  border-radius: 16px;
  background: rgb(255 232 174 / 0.06);
  color: var(--ink-soft);
  padding: 16px;
  white-space: pre-wrap;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgb(255 255 255 / 0.025);
}

.process-step {
  min-height: 250px;
  padding: clamp(22px, 2.8vw, 32px);
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 24px 24px, rgb(101 230 255 / 0.13), transparent 34%),
    rgb(255 255 255 / 0.024);
}

.process-step:last-child {
  border-right: 0;
}

.process-step h3 {
  margin-top: 26px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.34;
}

.signal-list {
  display: grid;
  gap: 14px;
}

.signal-item {
  display: grid;
  grid-template-columns: 120px minmax(180px, 0.5fr) 1fr;
  gap: 24px;
  align-items: start;
  padding: clamp(22px, 3vw, 30px);
}

.signal-item h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.32;
}

.bridge-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgb(101 230 255 / 0.11), transparent 42%),
    rgb(255 255 255 / 0.025);
}

.bridge-title {
  padding: clamp(28px, 5vw, 52px);
  border-right: 1px solid var(--line);
  background: rgb(12 22 34 / 0.5);
}

.bridge-title h2 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1.04;
}

.bridge-copy {
  display: grid;
  gap: 0;
}

.bridge-copy article {
  padding: clamp(24px, 3vw, 34px);
  border-bottom: 1px solid var(--line);
}

.bridge-copy article:last-child {
  border-bottom: 0;
}

.bridge-copy h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.34;
}

.page-anchor {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
  border-color: rgb(255 232 174 / 0.74);
}

.methodology-page {
  background:
    radial-gradient(circle at 68% 24%, rgb(101 230 255 / 0.08), transparent 34%),
    linear-gradient(135deg, #050911 0%, #08111d 38%, #0b1320 100%);
}

.methodology-prototype-page {
  background: #020914;
}

.methodology-prototype-stage {
  position: relative;
  width: min(100vw, 1672px);
  margin: 0 auto;
  overflow: hidden;
  background: #020914;
  line-height: 0;
  box-shadow: 0 0 120px rgb(0 0 0 / 0.36);
}

.methodology-prototype-image {
  width: 100%;
  height: auto;
  max-width: none;
  opacity: 1;
  filter: none;
}

.methodology-hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.methodology-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: var(--h);
  overflow: hidden;
  border-radius: 999px;
  color: transparent;
  text-indent: 100%;
  white-space: nowrap;
}

.methodology-hotspot:focus-visible {
  outline: 2px solid rgb(101 230 255 / 0.88);
  outline-offset: 2px;
  background: rgb(101 230 255 / 0.08);
}

.methodology-a11y-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.methodology-content-after-prototype {
  border-top: 1px solid var(--line);
}

.methodology-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: calc(var(--nav-h) + clamp(32px, 5vw, 64px)) 0 clamp(54px, 7vw, 92px);
}

.methodology-hero-art,
.methodology-hero-shade {
  position: absolute;
  inset: 0;
}

.methodology-hero-art {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.56;
  filter: saturate(1.05) contrast(1.06) brightness(0.76);
  transform: scale(1.02);
}

.methodology-hero-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 72% 42%, rgb(101 230 255 / 0.12), transparent 32%),
    linear-gradient(90deg, rgb(5 9 17 / 0.92) 0%, rgb(5 9 17 / 0.62) 42%, rgb(5 9 17 / 0.7) 100%),
    linear-gradient(180deg, rgb(5 9 17 / 0.3), rgb(5 9 17 / 0.95));
}

.methodology-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.methodology-hero-copy h1 {
  margin-top: 28px;
  color: var(--white-ink);
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.98;
  font-weight: 760;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 70px rgb(0 0 0 / 0.55);
}

.methodology-hero-copy p {
  max-width: 34em;
  margin-top: 24px;
  color: rgb(238 247 255 / 0.82);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.75;
  text-wrap: pretty;
}

.methodology-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.methodology-visual {
  position: relative;
  min-height: clamp(440px, 56vw, 640px);
  border: 1px solid rgb(101 230 255 / 0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 42%, rgb(101 230 255 / 0.18), transparent 36%),
    radial-gradient(circle at 72% 70%, rgb(255 232 174 / 0.09), transparent 30%),
    linear-gradient(145deg, rgb(255 255 255 / 0.08), rgb(255 255 255 / 0.02)),
    rgb(5 9 17 / 0.54);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.1),
    0 34px 100px rgb(0 0 0 / 0.38);
  backdrop-filter: blur(14px) saturate(1.18);
  -webkit-backdrop-filter: blur(14px) saturate(1.18);
  overflow: hidden;
}

.methodology-visual::before,
.methodology-visual::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgb(101 230 255 / 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.methodology-visual::after {
  inset: 24%;
  border-color: rgb(255 232 174 / 0.18);
}

.methodology-orbit,
.methodology-loop,
.methodology-molecule,
.methodology-stack,
.methodology-ladder,
.methodology-enterprise,
.methodology-triangle {
  position: absolute;
  inset: clamp(26px, 4vw, 48px);
  display: grid;
  place-items: center;
}

.orbit-core,
.methodology-loop strong,
.methodology-molecule strong,
.methodology-triangle strong {
  position: relative;
  z-index: 2;
  display: grid;
  width: 148px;
  height: 148px;
  place-items: center;
  border: 1px solid rgb(255 232 174 / 0.62);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgb(255 232 174 / 0.22), rgb(101 230 255 / 0.08) 62%, rgb(5 9 17 / 0.72));
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 0 52px rgb(255 232 174 / 0.18);
}

.orbit-node,
.loop-dot,
.molecule-dot,
.triangle-dot {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 1px solid rgb(101 230 255 / 0.38);
  border-radius: 999px;
  background: rgb(5 16 26 / 0.78);
  box-shadow: 0 0 30px rgb(101 230 255 / 0.16);
  color: var(--ink);
  text-align: center;
}

.orbit-node {
  width: 154px;
  min-height: 72px;
  padding: 10px 14px;
}

.orbit-node strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.orbit-node span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 12px;
}

.orbit-node-1 { top: 4%; left: 50%; transform: translateX(-50%); }
.orbit-node-2 { top: 28%; right: 4%; }
.orbit-node-3 { right: 8%; bottom: 15%; }
.orbit-node-4 { left: 50%; bottom: 4%; transform: translateX(-50%); }
.orbit-node-5 { left: 5%; bottom: 15%; }
.orbit-node-6 { top: 28%; left: 4%; }

.loop-dot,
.molecule-dot {
  width: 96px;
  height: 96px;
  color: rgb(238 247 255 / 0.92);
  font-weight: 720;
}

.loop-dot-1 { top: 0; left: 50%; transform: translateX(-50%); }
.loop-dot-2 { top: 15%; right: 14%; }
.loop-dot-3 { top: 44%; right: 5%; }
.loop-dot-4 { right: 24%; bottom: 4%; }
.loop-dot-5 { left: 24%; bottom: 4%; }
.loop-dot-6 { top: 44%; left: 5%; }
.loop-dot-7 { top: 15%; left: 14%; }

.molecule-dot-1 { top: 3%; left: 50%; transform: translateX(-50%); }
.molecule-dot-2 { top: 36%; right: 4%; }
.molecule-dot-3 { right: 22%; bottom: 2%; }
.molecule-dot-4 { left: 22%; bottom: 2%; }
.molecule-dot-5 { top: 36%; left: 4%; }

.methodology-stack {
  align-content: center;
  gap: 16px;
}

.methodology-stack span {
  width: min(520px, 86%);
  border: 1px solid rgb(101 230 255 / 0.28);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgb(101 230 255 / 0.16), rgb(255 232 174 / 0.08)),
    rgb(5 16 26 / 0.72);
  color: var(--ink);
  padding: 24px 28px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 760;
  text-align: center;
  box-shadow: 0 20px 60px rgb(0 0 0 / 0.22);
}

.methodology-stack small {
  color: rgb(255 232 174 / 0.9);
  font-size: 14px;
}

.methodology-ladder {
  align-content: center;
  justify-items: center;
  gap: 12px;
}

.methodology-ladder span {
  width: calc(52% + var(--i) * 6%);
  border: 1px solid rgb(101 230 255 / 0.3);
  border-radius: 999px;
  background: rgb(5 16 26 / 0.76);
  color: var(--ink);
  padding: 13px 18px;
  font-size: clamp(17px, 2vw, 23px);
  text-align: center;
  transform: translateX(calc((var(--i) - 2.5) * 14px));
}

.methodology-enterprise {
  align-content: center;
  gap: 12px;
}

.methodology-enterprise span {
  width: min(560px, 92%);
  border: 1px solid rgb(101 230 255 / 0.28);
  border-radius: 18px;
  background: rgb(5 16 26 / 0.72);
  color: var(--ink);
  padding: 14px 18px;
  text-align: center;
  font-size: clamp(16px, 1.8vw, 22px);
}

.methodology-enterprise .enterprise-warning {
  border-color: rgb(255 232 174 / 0.54);
  color: var(--gold);
  background: rgb(255 232 174 / 0.09);
}

.triangle-dot {
  width: 150px;
  height: 64px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 760;
}

.triangle-dot-1 { top: 7%; left: 50%; transform: translateX(-50%); }
.triangle-dot-2 { bottom: 12%; left: 8%; }
.triangle-dot-3 { bottom: 12%; right: 8%; }

.methodology-structure {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: rgb(255 255 255 / 0.025);
}

.methodology-structure article {
  min-height: 168px;
  padding: clamp(20px, 3vw, 30px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 24px 24px, rgb(101 230 255 / 0.12), transparent 28%),
    rgb(255 255 255 / 0.02);
}

.methodology-structure article:last-child {
  border-right: 0;
}

.methodology-structure strong,
.methodology-panel-grid span,
.methodology-route-panel strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 720;
}

.methodology-structure p,
.methodology-panel-grid p,
.methodology-route-panel p,
.methodology-artifact-band p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.72;
}

.methodology-panel-grid,
.methodology-route-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.methodology-panel-grid article,
.methodology-route-panel article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.06), rgb(255 255 255 / 0.02)),
    rgb(12 22 34 / 0.44);
  padding: clamp(20px, 3vw, 30px);
}

.methodology-panel-grid span {
  color: var(--gold);
}

.methodology-artifact-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  border: 1px solid rgb(255 232 174 / 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 20%, rgb(255 232 174 / 0.14), transparent 34%),
    linear-gradient(145deg, rgb(101 230 255 / 0.08), rgb(255 255 255 / 0.02)),
    rgb(12 22 34 / 0.52);
  padding: clamp(26px, 5vw, 52px);
}

.methodology-artifact-band h2 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
}

.methodology-artifacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.methodology-artifacts span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(101 230 255 / 0.28);
  border-radius: 999px;
  background: rgb(101 230 255 / 0.08);
  color: var(--ink);
  padding: 0 18px;
}

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

.methodology-index a {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgb(12 22 34 / 0.44);
  overflow: hidden;
  transition: border-color 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.methodology-index a:hover,
.methodology-index a:focus-visible {
  border-color: rgb(255 232 174 / 0.54);
  transform: translateY(-3px);
  outline: none;
}

.methodology-index img {
  width: 100%;
  aspect-ratio: 16 / 7.5;
  object-fit: cover;
  filter: saturate(1.04) brightness(0.82);
}

.methodology-index strong,
.methodology-index span {
  display: block;
  padding-inline: 22px;
}

.methodology-index strong {
  padding-top: 20px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.28;
}

.methodology-index span {
  padding-top: 12px;
  padding-bottom: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.methodology-route-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.methodology-next .section-head {
  margin-bottom: 26px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-item {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.contact-item strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-row span:first-child {
  color: var(--ink);
  font-weight: 680;
}

.footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-meta a {
  color: var(--ink-soft);
  transition: color 180ms ease;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--accent);
}

.js-enabled [data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms cubic-bezier(0.2, 0, 0, 1), transform 700ms cubic-bezier(0.2, 0, 0, 1);
}

.js-enabled [data-reveal].is-visible,
[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .home-signature[data-reveal],
.js-enabled .home-signature[data-reveal].is-visible,
.home-signature[data-reveal],
.home-signature[data-reveal].is-visible {
  transform: translateX(-50%);
}

@media (max-width: 1040px) {
  .world-portal strong {
    font-size: 12px;
  }

  .world-portal span {
    display: none;
  }

  .identity-popover {
    width: min(390px, calc(100% - 40px));
  }

	  .statement-grid,
	  .contact-layout,
	  .knowledge-shell,
	  .case-board,
	  .bridge-panel,
	  .overview-panel {
	    grid-template-columns: 1fr;
	  }

	  .knowledge-title,
	  .case-lead,
	  .bridge-title,
	  .overview-copy {
	    border-right: 0;
	    border-bottom: 1px solid var(--line);
	  }

	  .loop-steps {
	    grid-template-columns: repeat(4, minmax(0, 1fr));
	  }

	  .method-grid,
	  .writing-grid {
	    grid-template-columns: 1fr 1fr;
	  }

	  .content-grid,
	  .content-grid.two,
	  .artifact-grid,
	  .principle-grid,
	  .framework-grid,
	  .evidence-grid,
	  .article-showcase,
	  .method-card-grid,
	  .experiment-board,
	  .resource-strip,
	  .methodology-hero-grid,
	  .methodology-artifact-band {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

  .methodology-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .methodology-index,
  .methodology-panel-grid,
  .methodology-route-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-step:nth-child(2n) {
    border-right: 0;
  }

  .process-step:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .method-item:nth-child(2),
  .writing-card:nth-child(2) {
    border-right: 0;
  }

  .method-item:last-child,
  .writing-card:nth-child(3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  :root {
    --nav-h: 64px;
  }

  body::before {
    background-size: 56px 56px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(var(--nav-h) + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgb(5 9 17 / 0.92);
    padding: 10px;
  }

  .nav-links[data-open="true"] {
    display: flex;
  }

  .nav-links a {
    min-height: 44px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    width: auto;
    min-width: 76px;
    justify-self: end;
  }

  .home-bg img {
    object-position: 50% 48%;
  }

  .world-portals {
    display: none;
  }

  .identity-hotspot {
    display: none;
  }

  .identity-popover {
    left: 14px;
    right: 14px;
    top: calc(var(--nav-h) + 74px);
    width: auto;
    min-height: auto;
    max-height: calc(100dvh - 168px);
    overflow: auto;
    padding: 24px;
    clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 24px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
    background:
      radial-gradient(circle at 88% 12%, rgb(255 232 174 / 0.16), transparent 24%),
      linear-gradient(90deg, rgb(6 13 24 / 0.82), rgb(9 20 34 / 0.64)),
      linear-gradient(180deg, rgb(9 18 31 / 0.86), rgb(6 11 20 / 0.74));
  }

  .identity-popover::after {
    display: none;
  }

  .identity-popover h2 {
    font-size: 42px;
  }

  .identity-roman {
    font-size: 22px;
  }

  .identity-summary {
    max-width: none;
    font-size: 15px;
  }

  .identity-history {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .identity-history span + span::before {
    content: none;
  }

  .identity-titles li {
    min-height: 28px;
    padding-left: 38px;
    font-size: 14px;
  }

  .identity-titles li::before {
    width: 26px;
    height: 26px;
    font-size: 8px;
  }

	  .home-signature {
	    bottom: clamp(24px, 5vh, 48px);
	    width: min(360px, calc(100% - 34px));
	  }

	  .home-mobile-routes {
	    display: flex;
	  }

  .home-lede {
    font-size: clamp(15px, 4.5vw, 18px);
  }

  .home-signature h1 {
    font-size: 22px;
  }

  .page-hero {
    padding-top: 76px;
  }

  .page-hero h1 {
    font-size: 48px;
  }

  .page-lede,
  .section-lede {
    font-size: 16px;
  }

  .dark-row,
  .knowledge-row summary,
  .knowledge-extra,
  .case-item,
  .signal-item {
    grid-template-columns: 1fr;
  }

	  .method-grid,
	  .writing-grid,
	  .content-grid,
	  .content-grid.two,
	  .artifact-grid,
	  .principle-grid,
	  .process-rail,
	  .framework-grid,
	  .evidence-grid,
	  .article-showcase,
	  .method-card-grid,
	  .experiment-board,
	  .resource-strip,
	  .methodology-index,
	  .methodology-panel-grid,
	  .methodology-route-panel,
	  .methodology-artifact-band,
	  .loop-steps,
	  .form-grid {
	    grid-template-columns: 1fr;
	  }

  .methodology-hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 42px);
  }

  .methodology-hero-copy h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

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

  .methodology-visual {
    min-height: 420px;
    border-radius: 22px;
  }

  .orbit-node {
    width: 126px;
    min-height: 58px;
    padding: 8px 10px;
  }

  .orbit-node strong,
  .triangle-dot,
  .loop-dot,
  .molecule-dot {
    font-size: 13px;
  }

  .loop-dot,
  .molecule-dot {
    width: 72px;
    height: 72px;
  }

  .orbit-core,
  .methodology-loop strong,
  .methodology-molecule strong,
  .methodology-triangle strong {
    width: 118px;
    height: 118px;
    font-size: 20px;
  }

  .methodology-stack span {
    width: 94%;
    font-size: 20px;
    padding: 18px 16px;
  }

  .methodology-ladder span {
    width: 92%;
    transform: none;
  }

  .methodology-enterprise span {
    width: 94%;
    font-size: 15px;
  }

  .triangle-dot {
    width: 118px;
  }

  .method-item,
  .method-item:nth-child(2),
  .writing-card,
  .writing-card:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .method-item:first-child,
  .writing-card:first-child {
    border-top: 0;
  }

  .process-step,
  .process-step:nth-child(2n),
  .process-step:nth-child(n + 3) {
    min-height: auto;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .process-step:first-child {
    border-top: 0;
  }

	  .content-card,
	  .artifact-card,
	  .principle-card,
	  .framework-card,
	  .evidence-card,
	  .article-card,
	  .method-card,
	  .experiment-card {
	    min-height: auto;
	  }

  .button,
  .contact-actions .button {
    width: 100%;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .ambient-canvas {
    display: none;
  }
}
