:root {
  --white: #fff;
  --black: #111;
  --blue: #4b37ff;
  --line: #d9d9d9;
  --muted: #727272;
  --page: min(100% - 48px, 1440px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--black); font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.35; overflow-x: hidden; }
button, a { color: inherit; }
button { font: inherit; }
a { text-decoration: none; }
sup { font-size: .42em; vertical-align: super; }
h1, h2, h3, p { margin-top: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; transform: translateY(-150%); z-index: 99; background: var(--blue); color: white; padding: 10px 14px; }
.skip-link:focus { transform: none; }

.site-header { position: fixed; z-index: 30; top: 0; left: 0; width: 100%; display: flex; align-items: center; justify-content: space-between; min-height: 76px; padding: 18px max(24px, calc((100vw - 1440px) / 2)); background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color .25s ease; }
.site-header.scrolled { border-color: var(--line); }
.brand { display: flex; align-items: center; gap: 12px; font-size: .78rem; font-weight: 800; letter-spacing: .055em; }
.brand-mark, .footer-mark { position: relative; display: block; flex: 0 0 auto; width: 34px; height: 34px; border: 1.5px solid var(--black); border-radius: 50%; }
.brand-mark i, .footer-mark i { position: absolute; width: 12px; height: 12px; border: 1.5px solid var(--black); left: 9px; top: 9px; }
.brand-mark b, .footer-mark b { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); top: 6px; right: 6px; }
.site-nav { display: flex; gap: clamp(20px,3vw,52px); font-size: .72rem; letter-spacing: .1em; font-weight: 700; }
.site-nav a { position: relative; padding: 8px 0; }
.site-nav a::after { content: ''; position: absolute; left: 0; bottom: 2px; width: 0; height: 2px; background: var(--blue); transition: width .2s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { width: 100%; }
.menu-button { display: none; border: 0; background: transparent; font-size: .72rem; font-weight: 700; letter-spacing: .1em; }

.hero { width: var(--page); margin: 0 auto; min-height: 100svh; padding: 130px 0 52px; display: grid; grid-template-columns: 1fr minmax(310px,.72fr); grid-template-rows: auto 1fr auto; column-gap: clamp(48px,8vw,140px); position: relative; }
.index-label, .micro-label, .field-label { font-size: .66rem; letter-spacing: .16em; font-weight: 800; }
.index-label { grid-column: 1/-1; }
.hero-copy { align-self: center; }
.method-hero .hero-copy { max-width: 900px; }
.method-hero h1 { font-size: clamp(3.55rem,6.9vw,7.45rem); }
.kicker { font-size: clamp(1rem,1.35vw,1.25rem); margin: 0 0 26px; }
h1 { font-size: clamp(3.8rem,7.4vw,8rem); line-height: .91; letter-spacing: -.07em; margin: 0; max-width: 1050px; font-weight: 700; }
.blue-dot { color: var(--blue); }
.hero-aside { margin: 34px 0 38px; color: var(--blue); font-size: clamp(.9rem,1.35vw,1.2rem); line-height: 1.4; letter-spacing: .16em; font-weight: 800; }
.hero-aside span { color: var(--black); }
.hero-link { margin-top: 0; }
.box-stage { align-self: center; justify-self: center; width: min(34vw,440px); aspect-ratio: 1; position: relative; display: grid; place-items: center; }
.box-orbit { position: absolute; inset: 0; }
.empty-square { position: absolute; width: 38%; height: 38%; left: 31%; top: 31%; border: 3px solid var(--black); transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.conscious-point { position: absolute; width: 16px; height: 16px; background: var(--blue); border-radius: 50%; left: calc(69% - 8px); top: calc(29% - 8px); transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.content-tag { position: absolute; font-size: .64rem; letter-spacing: .13em; font-weight: 800; background: white; padding: 5px 7px; transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.tag-origin { left: 41%; top: 42%; transform: rotate(-4deg); }
.tag-fear { left: 52%; top: 51%; transform: rotate(3deg); }
.tag-desire { left: 39%; top: 58%; transform: rotate(-2deg); }
.box-stage.open .tag-origin { transform: translate(-155px,-125px) rotate(-11deg); }
.box-stage.open .tag-fear { transform: translate(145px,-105px) rotate(9deg); }
.box-stage.open .tag-desire { transform: translate(30px,165px) rotate(-6deg); }
.box-stage.open .empty-square { transform: scale(.82); }
.box-stage.open .conscious-point { transform: translate(8px,-8px) scale(1.35); }
.open-box { position: absolute; bottom: 5%; border: 0; border-bottom: 2px solid var(--black); padding: 6px 0; background: transparent; font-size: .7rem; font-weight: 800; letter-spacing: .14em; cursor: pointer; }
.open-label { display: none; }
.box-stage.open .closed-label { display: none; }
.box-stage.open .open-label { display: inline; }
.hero-credit { align-self: end; margin: 0; font-size: .65rem; line-height: 1.5; letter-spacing: .13em; font-weight: 800; }
.scroll-cue { justify-self: end; align-self: end; font-size: .68rem; letter-spacing: .14em; font-weight: 800; }
.scroll-cue span { color: var(--blue); margin-left: 8px; }

.section-pad { padding: clamp(100px,13vw,190px) max(24px,calc((100vw - 1440px)/2)); }
.section-number { display: flex; gap: 18px; align-items: center; font-size: .7rem; font-weight: 800; letter-spacing: .13em; margin-bottom: clamp(70px,9vw,130px); }
.section-number::after { content: ''; height: 1px; background: var(--line); flex: 1; }
.section-number.light::after { background: #333; }
.statement-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(50px,10vw,170px); align-items: start; }
.marginalia { position: relative; width: fit-content; margin: 0; padding: 18px 0 16px 24px; font-size: clamp(1rem,1.55vw,1.35rem); line-height: 1.45; letter-spacing: .16em; font-weight: 800; }
.marginalia::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--blue); transform: skewY(-7deg); }
.marginalia span { color: var(--blue); }
.statement-copy h2, .method-copy h2, .program-intro h2 { font-size: clamp(3.2rem,6.2vw,7rem); line-height: .92; letter-spacing: -.065em; margin-bottom: 48px; }
.statement-copy > p, .program-intro > p { max-width: 620px; font-size: clamp(1.1rem,1.5vw,1.35rem); line-height: 1.5; }
.redacted { display: inline-block; margin-top: 36px; padding: 5px 9px; background: var(--black); color: var(--white); font-size: .62rem !important; font-weight: 800; letter-spacing: .16em; }

.inquiry-statement { min-height: 88svh; display: flex; flex-direction: column; justify-content: center; }
.inquiry-statement .statement-copy h2 { margin-bottom: 38px; }

.method-gate { min-height: 92svh; background: var(--blue); color: var(--white); display: flex; flex-direction: column; justify-content: center; }
.gate-copy { max-width: 1180px; }
.gate-copy h2 { margin: 25px 0 42px; font-size: clamp(3.6rem,8vw,9rem); line-height: .88; letter-spacing: -.07em; }
.gate-copy > p:not(.micro-label) { max-width: 700px; margin: 0 0 54px; font-size: clamp(1.1rem,1.7vw,1.45rem); line-height: 1.5; }
.white-dot { color: var(--white); }
.light-link { color: var(--white); border-color: var(--white); }
.light-link span { color: var(--black); }

.contents { background: var(--black); color: var(--white); min-height: 100svh; }
.contents-heading { position: relative; margin-bottom: 90px; }
.contents h2 { font-size: clamp(4rem,9vw,10rem); line-height: .84; letter-spacing: -.075em; margin: 0; }
.floating-dot { position: absolute; right: 8%; top: 9%; width: clamp(18px,2vw,30px); height: clamp(18px,2vw,30px); border-radius: 50%; background: var(--blue); }
.inventory { border-top: 1px solid #363636; }
.inventory-row { display: grid; grid-template-columns: 70px minmax(220px,.7fr) 1fr; align-items: center; gap: 20px; padding: 28px 0; border-bottom: 1px solid #363636; transition: color .2s ease,padding .2s ease; }
.inventory-row > span { font-size: .68rem; color: #888; }
.inventory-row h3 { margin: 0; font-size: clamp(1.5rem,2.7vw,2.8rem); letter-spacing: -.03em; }
.inventory-row p { margin: 0; font-size: .64rem; letter-spacing: .18em; color: var(--blue); opacity: 0; transform: translateX(-10px); transition: opacity .25s,transform .25s; }
.inventory-row:hover, .inventory-row:focus { padding-left: 12px; outline: none; }
.inventory-row:hover p, .inventory-row:focus p { opacity: 1; transform: none; }

.method { position: relative; min-height: 100svh; overflow: hidden; }
.method-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px,9vw,140px); align-items: center; }
.method-symbol { width: min(36vw,480px); aspect-ratio: 1; position: relative; }
.method-circle,.method-square,.method-dot { position: absolute; }
.method-circle { inset: 4%; border: 2px solid var(--black); border-radius: 50%; }
.method-square { width: 31%; height: 31%; border: 2px solid var(--black); left: 34.5%; top: 34.5%; }
.method-dot { width: 22px; height: 22px; background: var(--blue); border-radius: 50%; right: 19%; top: 18%; }
.method-copy .micro-label { margin-bottom: 25px; }
.method-copy h2 { margin-bottom: 34px; }
.marginalia-blue { color: var(--blue); margin: 0 0 52px; padding-left: 0; }
.marginalia-blue::before { display: none; }
.marginalia-blue::after { content: ''; display: block; width: 64%; height: 5px; margin-top: 12px; background: var(--black); transform: skewX(-18deg); }
.text-link { border: 0; border-bottom: 2px solid var(--black); background: transparent; padding: 0 0 8px; font-size: .74rem; font-weight: 800; letter-spacing: .14em; cursor: pointer; }
.text-link span { color: var(--blue); padding-left: 8px; }
.inquiry-panel { position: fixed; z-index: 50; inset: 0 0 0 auto; width: min(100%,660px); background: var(--blue); color: white; padding: clamp(36px,8vw,90px); box-shadow: -20px 0 60px rgba(0,0,0,.15); }
.panel-close { position: absolute; top: 22px; right: 28px; border: 0; background: none; color: white; font-size: 2.5rem; cursor: pointer; }
.panel-question { font-size: clamp(2rem,4vw,4.2rem); line-height: 1.03; letter-spacing: -.045em; margin-top: 80px; }
.panel-aside { margin-top: 42px; color: var(--black); font-size: clamp(1.25rem,2.4vw,2.2rem); line-height: 1.2; letter-spacing: .01em; font-weight: 700; }
.panel-note { position: absolute; bottom: 40px; font-size: .72rem; letter-spacing: .12em; font-weight: 800; }

.field-note { min-height: 85svh; background: var(--blue); color: white; padding: clamp(35px,5vw,70px); display: flex; flex-direction: column; justify-content: space-between; }
.field-note p { align-self: center; font-size: clamp(4rem,10vw,11.5rem); line-height: .85; letter-spacing: -.075em; max-width: 1300px; margin: auto 0; }
.dark-dot { color: var(--black); }

.program-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(60px,9vw,150px); align-items: end; }
.program-intro h2 { margin: 24px 0 38px; }
.program-intro > p { margin-bottom: 26px; }
.program-intro .outcome-line { margin: 0 0 50px; font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; line-height: 1.7; }
.program-steps { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--black); }
.program-steps li { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: center; border-bottom: 1px solid var(--line); padding: 23px 0; }
.program-steps span { color: var(--muted); font-size: .64rem; letter-spacing: .12em; }
.program-steps b { font-size: clamp(1.25rem,2vw,2rem); letter-spacing: -.025em; }
.program-lock { margin: 100px 0 0; font-size: .62rem; font-weight: 800; letter-spacing: .16em; color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); min-height: 46svh; padding: 70px max(24px,calc((100vw - 1440px)/2)); display: grid; grid-template-columns: auto 1fr; grid-template-rows: 1fr auto; column-gap: 26px; align-items: start; }
.site-footer p { margin: 0; font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.site-footer p:nth-of-type(2) { align-self: end; }
.site-footer p:nth-of-type(3) { justify-self: end; align-self: end; }
.footer-mark { grid-row: 1/-1; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease,transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 820px) {
  :root { --page: calc(100% - 32px); }
  .site-header { min-height: 64px; padding: 14px 16px; }
  .brand { font-size: .68rem; }
  .brand-mark { width: 30px; height: 30px; }
  .brand-mark i { left: 8px; top: 8px; }
  .menu-button { display: block; }
  .site-nav { display: none; position: absolute; left: 0; top: 63px; width: 100%; background: white; flex-direction: column; gap: 0; border-bottom: 1px solid var(--line); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 18px 20px; border-top: 1px solid var(--line); }
  .hero { padding-top: 105px; min-height: auto; display: flex; flex-direction: column; }
  .hero-copy { margin-top: 100px; }
  .method-hero .hero-copy { margin-top: 78px; }
  h1 { font-size: clamp(3.7rem,16vw,6.4rem); }
  .box-stage { width: min(88vw,430px); margin: 55px auto; }
  .box-stage.open .tag-origin { transform: translate(-82px,-95px) rotate(-11deg); }
  .box-stage.open .tag-fear { transform: translate(82px,-85px) rotate(9deg); }
  .box-stage.open .tag-desire { transform: translate(12px,118px) rotate(-6deg); }
  .hero-credit { margin-top: 12px; }
  .scroll-cue { align-self: flex-end; margin-top: -28px; }
  .statement-grid,.method-layout,.program-grid { grid-template-columns: 1fr; }
  .statement-grid { gap: 70px; }
  .statement-copy h2,.method-copy h2,.program-intro h2 { font-size: clamp(3.1rem,14vw,5.2rem); }
  .contents h2 { font-size: clamp(3.8rem,18vw,6.5rem); }
  .inventory-row { grid-template-columns: 45px 1fr; }
  .inventory-row p { grid-column: 2; opacity: 1; transform: none; }
  .method-symbol { width: 78vw; margin: 0 auto 70px; }
  .field-note { min-height: 65svh; }
  .program-grid { gap: 90px; }
  .gate-copy h2 { font-size: clamp(3.4rem,15vw,6rem); }
  .site-footer { grid-template-columns: auto 1fr; grid-template-rows: auto auto auto; row-gap: 45px; }
  .site-footer p:nth-of-type(2),.site-footer p:nth-of-type(3) { grid-column: 1/-1; justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
