:root {
  --bg: #f7f7f4; --ink: #26251d; --card: #f2f1ee; --sage: #bdbfb0; --soft: #e9e8e3;
  --line: rgba(38, 37, 29, .1); --mute: rgba(38, 37, 29, .6);
  --pad: 20px; --f: 'Hanken Grotesk', system-ui, sans-serif; --mono: 'DM Mono', ui-monospace, monospace;
  --ease: cubic-bezier(.7, 0, .2, 1); --h2: clamp(34px, 4.17vw, 60px);
  --vh: 100vh;
}
@supports (height: 100svh) { :root { --vh: 100svh; } }
* { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--bg); -webkit-font-smoothing: antialiased; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
body { font-family: var(--f); color: var(--ink); background: var(--bg); font-size: 16px; line-height: 1.2; overflow-x: clip; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
canvas { display: block; }
.w { display: inline-block; white-space: nowrap; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* ---------- shared ---------- */
.pill { display: inline-flex; align-items: center; height: 40px; padding: 0 20px; border-radius: 40px; font-size: 16px; font-weight: 500; letter-spacing: -.01em; white-space: nowrap; transition: background-color .35s, transform .35s var(--ease); }
.pill.dark { background: var(--ink); color: var(--bg); }
.pill.dark:hover { background: #3a392f; }
.pill.light { background: var(--soft); color: var(--ink); }
.pill.light:hover { background: #deddd6; }
.roll { display: inline-grid; overflow: hidden; height: 1.25em; line-height: 1.25em; }
.roll > span { grid-area: 1 / 1; transition: transform .55s var(--ease); }
.roll > span + span { transform: translateY(105%); }
:hover > .roll > span:first-child { transform: translateY(-105%); }
:hover > .roll > span + span { transform: none; }
.eyebrow { font-size: 16px; text-align: center; letter-spacing: -.005em; }
.corner { position: absolute; font-family: var(--mono); font-size: 12px; line-height: 1; text-transform: uppercase; z-index: 2; }
.corner.tl, .corner.bl { left: var(--pad); }
.corner.tr, .corner.br { right: var(--pad); }
.h2 { font-size: var(--h2); line-height: 1; font-weight: 500; letter-spacing: -.02em; text-align: center; max-width: 800px; margin: 0 auto; }
[data-reveal] .c { opacity: .12; }
.ulink { position: relative; display: inline-block; font-size: 16px; padding-bottom: 8px; }
.ulink::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform-origin: right; transition: transform .6s var(--ease); }
.ulink:hover::after { transform: scaleX(0); }
.ulink::before { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease) .15s; }
.ulink:hover::before { transform: scaleX(1); }

/* ---------- nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 0 var(--pad); z-index: 50; transition: transform .7s var(--ease); pointer-events: none; }
.nav > * { pointer-events: auto; }
.nav.hide { transform: translateY(-110%); }
.logo { display: flex; align-items: flex-end; height: 28px; }
.logo-mark { width: 40px; height: 26px; fill: var(--ink); margin-right: 3px; }
.logo-word { font-size: 33px; font-weight: 400; letter-spacing: -.035em; line-height: 26px; }
.logo-reg { font-size: 9px; line-height: 1; margin-left: 1px; margin-bottom: 1px; }
.menu-btn { display: flex; align-items: center; gap: 16px; font-size: 20px; letter-spacing: -.01em; }
.dots { position: relative; width: 36px; height: 36px; transition: transform .8s var(--ease); }
.dots i { position: absolute; left: 50%; top: 50%; width: 5px; height: 5px; margin: -2.5px; border-radius: 50%; background: var(--ink);
  transform: rotate(calc(var(--k) * 45deg)) translateY(-15px); animation: dotpulse 1.6s linear infinite; animation-delay: calc(var(--k) * -.2s); }
@keyframes dotpulse { 0%, 100% { opacity: 1; } 50% { opacity: .22; } }
.menu-open .dots { transform: rotate(22.5deg) scale(.86); }

/* ---------- menu overlay ---------- */
.menu { position: fixed; top: 0; left: 0; right: 0; z-index: 40; background: var(--sage); padding: 150px 0 60px; clip-path: inset(0 0 100% 0); visibility: hidden; transition: clip-path .8s var(--ease), visibility 0s .8s; }
.menu-open .menu { clip-path: inset(0); visibility: visible; transition: clip-path .8s var(--ease), visibility 0s; }
.menu-inner { display: grid; grid-template-columns: 536px 1fr; }
.menu-small { padding-left: 100px; }
.menu-small ul + ul { margin-top: 48px; }
.menu-small a { font-size: 18px; line-height: 34px; display: inline-block; opacity: 0; transform: translateY(10px); transition: opacity .5s, transform .6s var(--ease), color .3s; }
.menu-small a:hover { color: rgba(38, 37, 29, .55); }
.menu-big li { position: relative; overflow: hidden; }
.menu-big li::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: rgba(38, 37, 29, .14); transform: scaleX(0); transform-origin: left; transition: transform .9s var(--ease); }
.menu-big a { display: block; font-size: 64px; line-height: 84px; letter-spacing: -.02em; transform: translateY(100%); transition: transform .8s var(--ease), padding .5s var(--ease); }
.menu-big a:hover { padding-left: 16px; }
.menu-open .menu-small a { opacity: 1; transform: none; transition-delay: calc(.35s + var(--k) * .04s); }
.menu-open .menu-big a { transform: none; transition-delay: calc(.25s + var(--k) * .07s), 0s; }
.menu-open .menu-big li::after { transform: scaleX(1); transition-delay: calc(.3s + var(--k) * .07s); }

/* ---------- banner ---------- */
.banner { position: fixed; left: 50%; bottom: 30px; width: min(800px, calc(100% - 24px)); transform: translate(-50%, calc(100% + 40px)); background: var(--sage); display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 8px 8px 20px; z-index: 30; transition: transform 1s var(--ease); }
.banner.is-in { transform: translate(-50%, 0); }
.banner p { font-size: 17px; letter-spacing: -.01em; }
.banner .m { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; height: 345px; }
.hero-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: #ebeae5; }
.hero-cta { position: absolute; right: var(--pad); top: 145px; }
.hero-title { position: absolute; left: var(--pad); top: 205px; font-size: 60px; line-height: 60px; font-weight: 500; letter-spacing: -.02em; }
.hero-title .ln { display: block; overflow: hidden; padding-bottom: .1em; margin-bottom: -.1em; }
.hero-title .c { display: inline-block; transform: translateY(115%); transition: transform 1.1s var(--ease); transition-delay: calc(.35s + var(--i) * 24ms); }
.loaded .hero-title .c { transform: none; }
.hero-rot { position: absolute; left: 62.5%; top: 224px; width: min(498px, 35vw); min-height: 81px; border-left: 2px solid var(--ink); padding-left: 20px; font-size: 20.8px; line-height: 27px; letter-spacing: -.01em; color: #000; }
.hero-rot .c { transition: opacity .45s, filter .45s; transition-delay: calc(var(--i) * 4ms); }
.hero-rot.out .c, .hero-rot.pre .c { opacity: 0; filter: blur(5px); }
.hero-rot.pre .c { transition: none; }

/* ---------- hero reel ---------- */
.reel-wrap { position: relative; height: calc(var(--vh) + 450px); }
.reel-sticky { position: sticky; top: 0; height: var(--vh); overflow: hidden; }
.reel-frame { position: absolute; inset: 0; background: #0d0d0b; clip-path: inset(0 20px 0 20px round 4px); will-change: clip-path; }
.reel-frame canvas { position: absolute; left: 50%; top: 50%; width: 100vw; height: var(--vh); transform: translate(-50%, -50%); }
.reel-word { position: absolute; top: 50%; left: 0; margin-top: -42px; font-size: 60px; line-height: 84px; font-weight: 500; letter-spacing: -.04em; color: var(--bg); white-space: nowrap; opacity: 0; will-change: transform, clip-path; pointer-events: none; }

/* ---------- intro ---------- */
.intro { padding: 100px var(--pad) 0; }

/* ---------- vision ---------- */
.vision { position: relative; margin-top: 116px; padding: 82px 0 82px; }
.vision .corner.t { top: 0; } .vision .corner.b { bottom: 0; }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 0 118px; margin: 90px 0 100px; }
.sphere-box { width: min(482px, 100%); aspect-ratio: 1; }
.sphere-box canvas { width: 100%; height: 100%; }
.vision-right { display: flex; justify-content: space-between; align-items: center; padding-left: 22px; }
.vision-copy { width: 350px; transition: opacity .32s, transform .5s var(--ease); }
.vision-copy.swap { opacity: 0; transform: translateY(8px); }
.vision-copy h3 { font-size: 22px; line-height: 1; font-weight: 500; letter-spacing: -.02em; text-align: justify; text-align-last: left; }
.vision-copy p { margin-top: 30px; font-size: 18px; line-height: 1.2; text-align: justify; }
.steps li { text-align: right; height: 46px; }
.steps button { font-size: 16px; opacity: .25; transition: opacity .4s; position: relative; }
.steps button:hover { opacity: .6; }
.steps li.on button { opacity: 1; }
.steps li.on button::before { content: ''; position: absolute; left: -12px; top: 50%; width: 4px; height: 4px; margin-top: -2px; border-radius: 50%; background: var(--ink); }
.v-prog { display: none; }

/* ---------- partners ---------- */
.partners { padding-top: 76px; }
.marquee { overflow: hidden; margin-top: 68px; }
.track { display: flex; width: max-content; animation: mq 46s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
@keyframes mq { to { transform: translateX(-50%); } }
.pcard { flex: none; width: 250px; height: 162px; margin-right: 40px; background: var(--card); display: grid; place-items: center; color: var(--ink); }
.lg { display: inline-flex; align-items: center; gap: 7px; font-size: 26px; line-height: 1; white-space: nowrap; }
.lg i { display: block; width: 24px; height: 24px; } .lg svg { width: 100%; height: 100%; }
.lg-a b { font-weight: 600; letter-spacing: -.03em; }
.lg-b b { font-weight: 500; font-style: italic; letter-spacing: .14em; font-size: 20px; }
.lg-c b { font-weight: 500; letter-spacing: -.04em; }
.lg-d b { font-weight: 700; letter-spacing: -.02em; }
.lg-e b { font-weight: 800; letter-spacing: .02em; font-size: 24px; }
.lg-f b { font-weight: 300; font-style: italic; font-size: 30px; letter-spacing: -.02em; }
.lg-g b { font-weight: 600; letter-spacing: -.01em; }
.economy { margin-top: 160px; }

/* ---------- sectors (pinned) ---------- */
.sectors { position: relative; height: calc(var(--vh) + 3600px); margin-top: 128px; }
.sec-sticky { position: sticky; top: 0; height: var(--vh); overflow: hidden; }
.sec-sticky .corner.t { top: 26px; } .sec-sticky .corner.b { bottom: 25px; }
.ring { position: absolute; left: -420px; top: 50%; width: 920px; height: 920px; margin-top: -460px; color: #efeee9; pointer-events: none; }
.ring svg { width: 100%; height: 100%; overflow: visible; }
.sec-eyebrow { position: absolute; top: 68px; left: 0; right: 0; }
.sec-list { position: absolute; right: calc(100% - 195px); top: 50%; transform: translateY(-50%); text-align: right; z-index: 2; }
.sec-list li { height: 46px; }
.sec-list button { font-size: 16px; opacity: .25; transition: opacity .4s; position: relative; }
.sec-list button:hover { opacity: .6; }
.sec-list li.on button { opacity: 1; }
.sec-list li.on button::before { content: ''; position: absolute; left: -12px; top: 50%; width: 4px; height: 4px; margin-top: -2px; border-radius: 50%; background: var(--ink); }
.sec-media { position: absolute; left: 26.1%; top: 50%; width: 27.8vw; aspect-ratio: 400 / 528; max-height: calc(var(--vh) - 260px); transform: translateY(-50%); }
.media-stack { position: absolute; inset: 0; border-radius: 4px; overflow: hidden; background: #111; }
.sm { position: absolute; inset: 0; clip-path: inset(100% 0 0 0); transition: clip-path 0s 1s; z-index: 0; }
.sm.up { clip-path: inset(0 0 100% 0); }
.sm.prev { clip-path: inset(0); z-index: 1; transition: none; }
.sm.on { clip-path: inset(0); z-index: 2; transition: clip-path 1s var(--ease); }
.sm > * { display: block; width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); transition: transform 1.4s var(--ease); }
.sm.on > *, .sm.prev > * { transform: none; }
.reel-frame video { position: absolute; left: 50%; top: 50%; width: 100vw; height: var(--vh); object-fit: cover; transform: translate(-50%, -50%); }
.jimg img, .jimg video { display: block; width: 100%; height: 100%; object-fit: cover; }
.vprog { position: absolute; left: 100%; bottom: 0; margin-left: 10px; display: flex; flex-direction: column; align-items: center; gap: 21px; }
.vprog button { position: relative; width: 4px; height: 4px; border-radius: 4px; background: #cfcec8; transition: height .6s var(--ease), background .4s; overflow: hidden; }
.vprog button::after { content: ''; position: absolute; inset: -8px; }
.vprog button.on { height: 40px; background: #dddcd6; }
.vprog button b { position: absolute; left: 0; top: 0; width: 100%; height: calc(var(--p, 0) * 100%); background: var(--ink); border-radius: 4px; opacity: 0; transition: opacity .3s; }
.vprog button.on b { opacity: 1; }
.sec-copy { position: absolute; left: 67.5%; top: 50%; width: 24.3vw; max-width: 350px; transform: translateY(-50%); height: 280px; }
.sc { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(calc(-50% + 14px)); opacity: 0; transition: opacity .5s, transform .8s var(--ease); pointer-events: none; }
.sc.on { opacity: 1; transform: translateY(-50%); pointer-events: auto; transition-delay: .15s; }
.sc h3 { font-size: 22px; line-height: 1; font-weight: 500; letter-spacing: -.02em; text-align: justify; text-align-last: left; }
.sc h3 .c, .shc h3 .c { opacity: .12; transition: opacity .5s; }
.sc.on h3 .c, .shc.on h3 .c { opacity: 1; transition-delay: calc(.2s + var(--i) * 16ms); }
.sc p { margin-top: 28px; font-size: 18px; line-height: 1.2; text-align: justify; }
.sc .ulink { margin-top: 36px; }

/* ---------- friction ---------- */
.friction { position: relative; padding: 150px var(--pad) 0; }
.friction .corner.t { top: 0; }

/* ---------- wheel (pinned) ---------- */
.wheel { position: relative; height: calc(var(--vh) + 700px); margin-top: 60px; }
.wheel-sticky { position: sticky; top: 0; height: var(--vh); overflow: hidden; perspective: 1400px; }
.wheel-sticky .corner.t { top: 26px; } .wheel-sticky .corner.b { bottom: 25px; }
.wheel-list { position: absolute; left: 0; right: 0; top: 50%; transform-style: preserve-3d; }
.wheel-list li { position: absolute; left: 0; right: 0; height: 92px; margin-top: -46px; line-height: 92px; text-align: center; font-size: 60px; letter-spacing: -.02em; white-space: nowrap; will-change: transform, opacity; }
.wheel-list li::after { content: ''; position: absolute; left: 13%; right: 13%; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(38, 37, 29, .06) 30%, rgba(38, 37, 29, .06) 70%, transparent); }
.wheel-label { position: absolute; top: 50%; transform: translateY(-50%); font-size: 16px; }
.wheel-label.l { left: 118px; } .wheel-label.r { right: 118px; }

/* ---------- showcase (pinned) ---------- */
.show { position: relative; height: calc(var(--vh) + 1950px); margin-top: 20px; }
.show-sticky { position: sticky; top: 0; height: var(--vh); }
.show-media { position: absolute; left: var(--pad); top: 20px; bottom: 20px; width: 47.6vw; }
.show-media .vprog { margin-left: 8px; }
.show-tags { position: absolute; right: calc(100% - 875 / 1440 * 100vw); top: 20px; width: 150px; height: 20px; text-align: right; }
.show-tags span { position: absolute; right: 0; top: 0; font-size: 16px; opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .6s var(--ease); }
.show-tags span.on { opacity: 1; transform: none; transition-delay: .1s; }
.show-rule { position: absolute; left: calc(895 / 1440 * 100vw); top: 20px; bottom: 20px; width: 1px; background: var(--line); }
.show-copy { position: absolute; left: calc(915 / 1440 * 100vw); right: 40px; top: 20px; bottom: 20px; }
.shc { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; opacity: 0; transition: opacity .5s; pointer-events: none; }
.shc.on { opacity: 1; pointer-events: auto; }
.shc h3 { font-size: 48px; line-height: 1; font-weight: 500; letter-spacing: -.02em; text-align: justify; text-align-last: left; margin-top: 4px; }
.shd > div + div { border-top: 1px solid var(--line); margin-top: 20px; padding-top: 30px; }
.shd h4 { font-size: 20.8px; font-weight: 500; line-height: 1; }
.shd p { margin-top: 22px; font-size: 19.2px; line-height: 1.2; font-weight: 300; color: var(--mute); text-align: justify; }
.shc .shd { transform: translateY(16px); transition: transform .9s var(--ease); }
.shc.on .shd { transform: none; }

/* ---------- cta ---------- */
.cta { padding: 150px var(--pad) 0; text-align: center; }
.cta-btns { display: flex; gap: 20px; justify-content: center; margin-top: 40px; }

/* ---------- journal ---------- */
.journal { position: relative; margin-top: 126px; padding-top: 42px; }
.journal .corner.t { top: 0; }
.j-view { position: relative; height: 640px; margin-top: 20px; }
.j-view::before { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent, rgba(242, 241, 238, .35) 30%, rgba(242, 241, 238, .35) 70%, transparent); pointer-events: none; }
.j-track { position: absolute; inset: 0; overflow: hidden; -webkit-mask-image: linear-gradient(transparent, #000 24%, #000 76%, transparent); mask-image: linear-gradient(transparent, #000 24%, #000 76%, transparent); }
.jcard { position: absolute; left: calc(50% - 36px); top: 50%; width: 725px; background: var(--card); border: 1px solid #ecebe6; padding: 10px 10px 16px; transition: transform 1s var(--ease), opacity .8s; }
.jimg { position: relative; height: 260px; overflow: hidden; background: #222; }
.jimg canvas { width: 100%; height: 100%; transition: transform 1.2s var(--ease); }
.jcard:hover .jimg canvas { transform: scale(1.04); }
.jcard h3 { font-size: 18px; font-weight: 400; margin: 22px 0 20px; }
.jcard p { font-size: 18px; font-weight: 300; line-height: 1.2; color: var(--mute); text-align: justify; }
.j-label { position: absolute; left: 80px; top: 50%; transform: translateY(-50%); font-size: 16px; z-index: 2; }
.j-btns { position: absolute; left: calc(50% - 36px + 362px + 20px); top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 40px; z-index: 2; }
.j-btn { width: 80px; height: 80px; border-radius: 50%; background: var(--ink); color: var(--bg); display: grid; place-items: center; transition: transform .5s var(--ease), background .3s; }
.j-btn:hover { transform: scale(.94); background: #3a392f; }
.j-btn svg { width: 22px; height: 22px; }
.j-dash { position: absolute; right: 80px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: flex-end; gap: 12px; z-index: 2; }
.j-dash button { position: relative; width: 10px; height: 10px; }
.j-dash button::before { content: ''; position: absolute; right: 0; top: 50%; width: 10px; height: 1px; background: rgba(38, 37, 29, .45); transition: width .5s var(--ease), background .4s, height .3s; }
.j-dash button.on::before { width: 20px; height: 2px; margin-top: -.5px; background: var(--ink); }

/* ---------- manifesto ---------- */
.mani { position: relative; margin-top: 110px; padding-top: 133px; }
.mani .corner.t { top: 0; }
.mani-inner { margin-left: calc(440 / 1440 * 100%); width: calc(900 / 1440 * 100%); }
.mani h2 { font-size: var(--h2); line-height: 1; font-weight: 500; letter-spacing: -.02em; text-align: justify; text-align-last: left; }
.rows { margin-top: 60px; }
.row { display: grid; grid-template-columns: 40% 1fr; border-top: 1px solid var(--line); padding: 31px 0 80px; }
.row h3 { font-size: 20.8px; line-height: 1.2; font-weight: 500; max-width: 270px; letter-spacing: -.01em; }
.row p { font-size: 19.2px; line-height: 1.2; color: var(--mute); text-align: justify; }
.m2 { margin-top: 0; border-top: 1px solid var(--line); padding: 72px 0 150px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); }
.m2 .track { animation-duration: 34s; }
.mlogo { flex: none; margin-right: 80px; display: flex; align-items: center; height: 40px; }

/* ---------- footer ---------- */
.foot { background: var(--ink); color: var(--bg); padding: 50px var(--pad) 20px; overflow: hidden; }
.foot-top { display: grid; grid-template-columns: 1fr calc(561 / 1440 * 100vw); }
.foot h2 { font-size: 48px; line-height: 1; font-weight: 500; letter-spacing: -.02em; }
.news { width: min(520px, 100%); margin-top: 60px; }
.news > p { font-size: 18px; }
.news-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 18px; }
.news input[type=text], .news input[type=email] { height: 42px; background: #32312a; border: 1px solid transparent; color: var(--bg); font: 16px var(--f); padding: 0 12px; outline: none; transition: border-color .3s; }
.news input::placeholder { color: #8d8c84; }
.news input:focus { border-color: #6b6a62; }
.news-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }
.agree { display: flex; align-items: center; gap: 10px; font-size: 16px; cursor: pointer; }
.agree input { appearance: none; width: 20px; height: 20px; border-radius: 50%; background: #3d3c35; display: grid; place-items: center; cursor: pointer; transition: box-shadow .3s; }
.agree input::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--bg); transform: scale(0); transition: transform .3s var(--ease); }
.agree input:checked::after { transform: scale(1); }
.agree a { text-decoration: underline; text-underline-offset: 2px; }
.news.err .agree input { box-shadow: 0 0 0 1px #d9826a; }
.news-btn { font-size: 16px; padding-bottom: 8px; border-bottom: 1px solid currentColor; transition: opacity .3s; }
.news-btn:hover { opacity: .7; }
.news.done .news-btn { border-color: transparent; }
.cols { display: grid; grid-template-columns: repeat(3, auto); justify-content: space-between; padding-right: 20px; }
.cols h4 { font-size: 18px; font-weight: 400; }
.cols ul { margin-top: 116px; }
.cols a { display: inline-block; font-size: 18px; line-height: 32px; color: #9c9b93; transition: color .3s; }
.cols a:hover { color: var(--bg); }
.addr { display: flex; justify-content: space-between; margin-top: 50px; font-size: 18px; line-height: 32px; }
.addr a:hover { opacity: .7; }
.giant { margin-top: 90px; }
.giant svg { display: block; width: 100%; height: auto; fill: var(--bg); }

/* ---------- tablet ---------- */
@media (max-width: 1199px) {
  .vision-grid { padding: 0 60px; }
  .vision-copy { width: 290px; }
  .pcard { width: 210px; height: 136px; }
  .lg { font-size: 22px; }
  .wheel-list li { font-size: 48px; }
  .wheel-label.l { left: 40px; } .wheel-label.r { right: 40px; }
  .shc h3 { font-size: 38px; }
  .shd p { font-size: 16px; }
  .jcard { width: 560px; }
  .j-btns { left: calc(50% - 36px + 280px + 20px); }
  .j-label { left: 30px; } .j-dash { right: 30px; }
  .menu-inner { grid-template-columns: 380px 1fr; }
}

/* ---------- phone ---------- */
@media (max-width: 809px) {
  :root { --h2: 36px; }
  .nav { height: 76px; }
  .menu { padding: 110px 20px 40px; }
  .menu-inner { grid-template-columns: 1fr; gap: 40px; }
  .menu-small { padding-left: 0; order: 2; display: grid; grid-template-columns: 1fr 1fr; }
  .menu-small ul + ul { margin-top: 0; }
  .menu-small a { font-size: 16px; line-height: 30px; }
  .menu-big a { font-size: 44px; line-height: 62px; }
  .banner { bottom: 20px; }
  .banner p { font-size: 13px; line-height: 1.1; }
  .banner .d { display: none; } .banner .m { display: inline; }
  .hero { height: auto; padding: 125px var(--pad) 20px; display: flex; flex-direction: column; align-items: flex-start; }
  .hero-line { display: none; }
  .hero-title, .hero-cta, .hero-rot { position: static; }
  .hero-title { font-size: 44px; line-height: 44px; order: 1; }
  .hero-rot { order: 2; width: 100%; margin-top: 28px; font-size: 16px; line-height: 21px; min-height: 63px; padding-left: 10px; border-left-width: 1px; }
  .hero-cta { order: 3; margin-top: 30px; }
  .reel-wrap { height: calc(var(--vh) + 300px); }
  .reel-word { font-size: 26px; line-height: 40px; margin-top: -20px; letter-spacing: -.03em; }
  .intro { padding-top: 70px; }
  .vision { margin-top: 80px; padding: 60px 0; }
  .vision-grid { grid-template-columns: 1fr; padding: 0 40px; margin: 40px 0 70px; gap: 60px; justify-items: center; }
  .sphere-box { width: min(300px, 100%); }
  .vision-right { padding-left: 0; }
  .vision-copy { width: 100%; }
  .vision-copy h3 { font-size: 18px; }
  .vision-copy p { margin-top: 20px; font-size: 16px; }
  .steps { display: none; }
  .v-prog { display: flex; justify-content: center; gap: 21px; margin-top: 60px; }
  .v-prog button { position: relative; width: 4px; height: 4px; border-radius: 4px; background: #cfcec8; overflow: hidden; transition: width .6s var(--ease); }
  .v-prog button::after { content: ''; position: absolute; inset: -8px; }
  .v-prog button.on { width: 40px; background: #dddcd6; }
  .v-prog button b { position: absolute; left: 0; top: 0; bottom: 0; width: calc(var(--p, 0) * 100%); background: var(--ink); opacity: 0; }
  .v-prog button.on b { opacity: 1; }
  .partners { padding-top: 60px; }
  .marquee { margin-top: 40px; }
  .pcard { width: 170px; height: 110px; margin-right: 20px; }
  .lg { font-size: 18px; } .lg i { width: 18px; height: 18px; }
  .lg-b b { font-size: 14px; } .lg-e b { font-size: 17px; } .lg-f b { font-size: 21px; }
  .economy { margin-top: 110px; }
  .sectors { height: calc(var(--vh) + 2800px); margin-top: 90px; }
  .sec-eyebrow { top: 22px; }
  .sec-sticky .corner.t { top: 22px; } .sec-sticky .corner.b { bottom: 22px; }
  .ring { left: -300px; width: 800px; height: 800px; margin-top: -400px; }
  .sec-list { display: none; }
  .sec-media { left: 38px; top: 70px; transform: none; width: calc(100% - 90px); aspect-ratio: 300 / 395; max-height: 47vh; }
  .sec-copy { left: 40px; right: 40px; width: auto; max-width: none; top: auto; bottom: 70px; transform: none; height: 230px; }
  .sc { top: auto; bottom: 0; transform: translateY(14px); }
  .sc.on { transform: none; }
  .sc h3 { font-size: 18px; }
  .sc p { font-size: 16px; margin-top: 20px; }
  .sc .ulink { margin-top: 24px; }
  .friction { padding-top: 110px; }
  .wheel { height: calc(var(--vh) + 500px); }
  .wheel-list li { font-size: 28px; height: 57px; line-height: 57px; margin-top: -28px; }
  .wheel-label { top: 12%; }
  .wheel-label.l { left: 0; right: 0; text-align: center; top: auto; bottom: 12%; transform: none; }
  .wheel-label.r { left: 0; right: 0; text-align: center; transform: none; }
  .show { height: calc(var(--vh) + 1800px); }
  .show-media { top: 20px; bottom: auto; height: 44%; width: calc(100% - 60px); }
  .show-tags { right: auto; left: var(--pad); top: calc(44% + 34px); width: auto; text-align: left; }
  .show-tags span { right: auto; left: 0; }
  .show-rule { display: none; }
  .show-copy { left: var(--pad); right: var(--pad); top: calc(44% + 62px); }
  .shc h3 { font-size: 28px; }
  .shd > div + div { margin-top: 14px; padding-top: 16px; }
  .shd h4 { font-size: 16px; }
  .shd p { margin-top: 10px; font-size: 14px; }
  .cta { padding-top: 110px; }
  .cta-btns { gap: 12px; }
  .journal { margin-top: 90px; }
  .j-view { height: 640px; }
  .jcard { left: 50%; width: calc(100% - 40px); }
  .jimg { height: 200px; }
  .jcard h3, .jcard p { font-size: 16px; }
  .j-label, .j-dash { display: none; }
  .j-btns { left: 50%; top: auto; bottom: 0; transform: translateX(-50%); flex-direction: row; gap: 16px; }
  .j-btn { width: 56px; height: 56px; }
  .mani { margin-top: 70px; padding-top: 90px; }
  .mani-inner { margin: 0 var(--pad); width: auto; }
  .row { grid-template-columns: 140px 1fr; gap: 20px; padding: 26px 0 70px; }
  .row h3 { font-size: 16px; }
  .row p { font-size: 14px; }
  .m2 { padding: 60px 0 100px; }
  .foot-top { grid-template-columns: 1fr; gap: 70px; }
  .foot h2 { font-size: 36px; }
  .news-row { grid-template-columns: 1fr; }
  .news-foot { flex-direction: column; align-items: flex-start; gap: 22px; }
  .cols { grid-template-columns: repeat(3, 1fr); padding-right: 0; }
  .cols ul { margin-top: 40px; }
  .cols h4, .cols a, .addr { font-size: 15px; }
  .giant { margin-top: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; transition-delay: 0s !important; }
}
