/* ==================================================
   BRANYU — Black canvas, living light.
   Jet Black surfaces · Pure White words · one gradient
   doing all the emotional work.
   ================================================== */

@font-face {
  font-family: 'Sora';
  src: url('assets/fonts/Sora-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sora';
  src: url('assets/fonts/Sora-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sora';
  src: url('assets/fonts/Sora-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('assets/fonts/Newsreader-var.woff2') format('woff2');
  font-weight: 400 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('assets/fonts/Newsreader-italic-var.woff2') format('woff2');
  font-weight: 400 700; font-style: italic; font-display: swap;
}

:root {
  --black: #050505;
  --white: #FFFFFF;
  --orchid: #A855F7;
  --raspberry: #EC4899;
  --orange: #F97316;
  --gradient: linear-gradient(90deg, #A855F7 0%, #EC4899 50%, #F97316 100%);
  --gradient-diag: linear-gradient(135deg, #A855F7 0%, #EC4899 50%, #F97316 100%);
  --ink-70: rgba(255,255,255,0.70);
  --ink-45: rgba(255,255,255,0.45);
  --ink-16: rgba(255,255,255,0.16);
  --line: rgba(255,255,255,0.12);
  --surface: #0D0D0D;
  --sans: 'Sora', ui-sans-serif, system-ui, sans-serif;
  --serif: 'Newsreader', ui-serif, Georgia, serif;
  --pad-x: clamp(24px, 5vw, 64px);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 90;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: .045;
  animation: grain 9s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0,0); }
  20% { transform: translate(-6%, 4%); }
  40% { transform: translate(4%, -7%); }
  60% { transform: translate(-3%, 6%); }
  80% { transform: translate(6%, -3%); }
}

::selection { background: var(--raspberry); color: var(--white); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--raspberry); outline-offset: 4px; border-radius: 4px; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: #232323; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #333; }

/* ---------- utilities ---------- */

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.serif-body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.68;
  color: var(--ink-70);
  text-wrap: pretty;
}
.serif-it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.spark {
  width: 13px; height: 13px; flex: none; display: inline-block;
  background: var(--gradient-diag);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 0C54.5 27.5 72.5 45.5 100 50C72.5 54.5 54.5 72.5 50 100C45.5 72.5 27.5 54.5 0 50C27.5 45.5 45.5 27.5 50 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 0C54.5 27.5 72.5 45.5 100 50C72.5 54.5 54.5 72.5 50 100C45.5 72.5 27.5 54.5 0 50C27.5 45.5 45.5 27.5 50 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  padding: 16px 32px; border-radius: 999px; white-space: nowrap;
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}
.btn--primary { background: var(--gradient); color: var(--white); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(236,72,153,.35); }
.btn--ghost { border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--orange); transform: translateY(-3px); }

/* ---------- preloader ---------- */

.pl {
  position: fixed; inset: 0; z-index: 95;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: transform .8s cubic-bezier(.7, 0, .3, 1), visibility 0s .8s;
}
html:not(.js) .pl, html.pl-skip .pl { display: none; }
html.pl-done .pl { transform: translateY(-100%); visibility: hidden; }
html.js:not(.pl-done):not(.pl-skip) body { overflow: hidden; }
.pl__box { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.pl__spark { width: 44px; height: 44px; animation: plspark .9s var(--ease-out) both; }
@keyframes plspark {
  from { transform: scale(0) rotate(-120deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}
.pl__line { display: block; overflow: hidden; }
.pl__line em {
  display: inline-block;
  font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink-70);
  transform: translateY(120%);
  animation: plline .8s var(--ease-out) .35s forwards;
}
@keyframes plline { to { transform: translateY(0); } }

/* ---------- progress hairline ---------- */

.prog {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 70;
  background: var(--gradient);
  transform: scaleX(0); transform-origin: left;
}
html:not(.js) .prog { transform: none; }

/* ---------- cursor ---------- */

.cur-dot, .cur-ring {
  position: fixed; top: 0; left: 0; z-index: 100; pointer-events: none;
  border-radius: 50%; mix-blend-mode: difference;
  opacity: 0;
}
.cur-dot { width: 8px; height: 8px; background: #fff; }
.cur-ring { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.55); transition: width .25s, height .25s, background-color .25s, border-color .25s; }
.cur-ring.on { width: 64px; height: 64px; background: rgba(255,255,255,.92); border-color: transparent; }
html:not(.js) .cur-dot, html:not(.js) .cur-ring { display: none; }
@media (pointer: coarse) { .cur-dot, .cur-ring { display: none !important; } }

/* ---------- header ---------- */

.hd {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad-x);
  border-bottom: 1px solid transparent;
  transition: background-color .35s, border-color .35s, backdrop-filter .35s;
}
.hd--solid {
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.hd__brand { display: inline-flex; align-items: center; gap: 12px; }
.hd__mark { width: 24px; height: 24px; flex: none; }
.hd__word { font-size: 23px; font-weight: 600; letter-spacing: -0.02em; }
.hd__right { display: flex; align-items: center; gap: 28px; }
.hd__meta {
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-45); font-variant-numeric: tabular-nums;
}
.hd__cta {
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 999px; padding: 11px 22px;
  transition: border-color .3s, color .3s;
}
.hd__cta:hover { border-color: var(--raspberry); }
.hd__menu {
  display: flex; align-items: center; gap: 12px;
  background: none; border: 0; color: var(--white); cursor: pointer; padding: 8px 0;
}
.hd__menu-txt { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.hd__menu-ico { display: flex; flex-direction: column; gap: 6px; width: 26px; }
.hd__menu-ico i { display: block; height: 2px; background: var(--white); transition: transform .35s var(--ease-out); }
html.menu-open .hd__menu-ico i:first-child { transform: translateY(4px) rotate(45deg); }
html.menu-open .hd__menu-ico i:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- fullscreen menu ---------- */

.menu {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(5,5,5,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0; visibility: hidden;
  transition: opacity .45s, visibility 0s .45s;
  overflow-y: auto;
}
html.menu-open .menu { opacity: 1; visibility: visible; transition: opacity .45s; }
html.menu-open body { overflow: hidden; }
.menu__inner {
  max-width: 1240px; margin: 0 auto;
  padding: 140px var(--pad-x) 64px;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 72px;
}
.menu__links li {
  border-bottom: 1px solid var(--line);
  transform: translateY(34px); opacity: 0;
  transition: transform .6s var(--ease-out), opacity .6s;
}
html.menu-open .menu__links li { transform: none; opacity: 1; }
.menu__links li:nth-child(1) { transition-delay: .08s; }
.menu__links li:nth-child(2) { transition-delay: .14s; }
.menu__links li:nth-child(3) { transition-delay: .20s; }
.menu__links li:nth-child(4) { transition-delay: .26s; }
.menu__links li:nth-child(5) { transition-delay: .32s; }
.menu__links li:nth-child(6) { transition-delay: .38s; }
.menu__links li:nth-child(7) { transition-delay: .44s; }
.menu__links a {
  display: flex; align-items: baseline; gap: 26px;
  padding: 22px 0;
  font-size: clamp(30px, 4.6vw, 58px); font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  transition: transform .4s var(--ease-out);
}
.menu__links a:hover {
  transform: translateX(14px);
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.menu__n { font-size: 13px; font-weight: 600; letter-spacing: .2em; color: var(--ink-45); -webkit-text-fill-color: var(--ink-45); }
.menu__side {
  display: flex; flex-direction: column; gap: 18px; padding-top: 22px;
  transform: translateY(30px); opacity: 0;
  transition: transform .6s var(--ease-out) .4s, opacity .6s .4s;
}
html.menu-open .menu__side { transform: none; opacity: 1; }
.menu__head { font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-45); }
.menu__mail { font-family: var(--serif); font-style: italic; font-size: 26px; text-decoration: underline; text-underline-offset: 7px; text-decoration-thickness: 1px; }
.menu__mail:hover { color: var(--raspberry); }
.menu__loc { font-size: 14px; line-height: 1.8; color: var(--ink-70); }
.menu__tag { margin-top: 40px; font-family: var(--serif); color: var(--ink-45); font-size: 17px; }

/* ---------- hero ---------- */

.hero {
  position: relative; overflow: clip;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 150px var(--pad-x) 110px;
}
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.hero__glow--a {
  width: 44vw; height: 44vw; min-width: 380px; min-height: 380px;
  left: 6%; top: -12%;
  background: radial-gradient(circle, rgba(168,85,247,.16), transparent 65%);
  animation: drift 26s ease-in-out infinite alternate;
}
.hero__glow--b {
  width: 38vw; height: 38vw; min-width: 320px; min-height: 320px;
  right: 4%; bottom: -8%;
  background: radial-gradient(circle, rgba(249,115,22,.13), transparent 65%);
  animation: drift 22s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(5%, 7%) scale(1.12); }
}
.hero__meta {
  display: flex; align-items: center; gap: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink-70);
  margin-bottom: 44px;
}
.hero__meta-mid { width: 52px; height: 1px; background: var(--gradient); }
.hero__h {
  font-size: clamp(58px, 13vw, 176px);
  font-weight: 700; letter-spacing: -0.045em; line-height: .98;
}
.li--serif, .li--serif em { font-family: var(--serif); font-style: italic; font-weight: 500; letter-spacing: -0.02em; }
.hero__lede {
  font-family: var(--serif); font-size: clamp(18px, 2.1vw, 22px); line-height: 1.62;
  color: var(--ink-70); max-width: 620px; margin: 40px auto 46px; text-wrap: pretty;
}
.hero__lede strong { color: var(--white); font-weight: 600; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero__foot {
  position: absolute; left: var(--pad-x); right: var(--pad-x); bottom: 26px;
  display: flex; align-items: flex-end; justify-content: space-between;
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-45);
}
.hero__scroll i {
  display: block; width: 1px; height: 46px; margin: 0 auto 12px;
  background: var(--gradient);
  transform-origin: top;
  animation: scrollcue 2.4s var(--ease-out) infinite;
}
@keyframes scrollcue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- ticker ---------- */

.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 24px 0; overflow: hidden;
  transform: rotate(-1.4deg) scale(1.03);
  margin: 30px 0 60px;
}
.ticker__track { display: flex; width: max-content; animation: tick 40s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__group {
  display: flex; align-items: center; gap: 56px; padding-right: 56px;
  font-family: var(--serif); font-style: italic; font-size: 23px; color: var(--ink-70);
  white-space: nowrap;
}
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- act scaffolding ---------- */

.act {
  max-width: 1160px; margin: 0 auto;
  padding: clamp(100px, 14vh, 170px) var(--pad-x);
}
.act--full { max-width: 1400px; }
.act__head { display: flex; align-items: center; gap: 20px; margin-bottom: 60px; }
.act__n {
  font-size: 14px; font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.act__rule { width: 68px; height: 1px; background: var(--line); }
.act__label { font-size: 12px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-45); }
.act__h {
  font-size: clamp(42px, 6.4vw, 88px);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.02;
  margin-bottom: 26px;
}
.act__sub {
  font-family: var(--serif); font-size: 20px; color: var(--ink-45);
  max-width: 560px; margin-bottom: 84px;
}

/* line-mask reveals */
.lm { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.li { display: inline-block; will-change: transform; }
.js .rv-g .li, .js .hero__h .li {
  transform: translateY(115%) rotate(1.5deg);
  transition: transform 1s var(--ease-out);
}
.js .rv-g.in .li, .js .hero__h.in .li { transform: none; }
.js .rv-g .lm:nth-child(2) .li, .js .hero__h .lm:nth-child(2) .li { transition-delay: .1s; }
.js .rv-g .lm:nth-child(3) .li { transition-delay: .2s; }

/* act__head sweep */
.js .act__head { opacity: 0; transform: translateY(20px); transition: opacity .8s, transform .8s var(--ease-out); }
.js .act__head.in { opacity: 1; transform: none; }

/* generic reveal */
.js .rv { opacity: 0; transform: translateY(30px); transition: opacity .9s, transform .9s var(--ease-out); }
.js .rv.in { opacity: 1; transform: none; }

/* ---------- scrub text ---------- */

.scrub {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 46px);
  line-height: 1.48; font-weight: 400;
  max-width: 1000px;
  text-wrap: pretty;
  color: var(--white);
}
.scrub em { font-style: italic; }
.js .scrub .word { color: var(--ink-16); transition: color .35s linear; }
.js .scrub .word.lit { color: var(--white); }
.js .scrub em .word.lit {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.scrub--quote {
  font-size: clamp(30px, 4.4vw, 58px);
  text-align: center; margin: 0 auto; max-width: 1060px;
}
.promise { padding: clamp(140px, 22vh, 260px) var(--pad-x); }

/* ---------- photo placeholder ---------- */

.ph {
  position: relative; margin-top: 110px;
  aspect-ratio: 21 / 9;
  border: 1px solid var(--line); border-radius: 28px; overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 1px, transparent 1px 16px),
    radial-gradient(60% 130% at 72% 15%, rgba(168,85,247,.14), transparent 60%),
    radial-gradient(50% 110% at 18% 92%, rgba(249,115,22,.12), transparent 60%),
    #0A0A0A;
}
.ph figcaption {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-45); text-align: center; padding: 0 24px;
}

/* ---------- the gap ---------- */

.gapwrap { position: relative; }
.gapstick {
  max-width: 1400px; margin: 0 auto;
  padding: clamp(100px, 14vh, 170px) var(--pad-x);
}
.gap__h {
  font-size: clamp(42px, 6.4vw, 88px);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.02;
  margin-bottom: 70px;
}
.gap__stage { position: relative; }
.gap__card {
  background: var(--surface);
  border: 1px solid var(--line); border-radius: 26px;
  padding: 44px 40px;
}
.gap__card h3 { font-size: 26px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 14px; }
.gap__card p { font-family: var(--serif); font-size: 17px; line-height: 1.66; color: var(--ink-70); }
.gap__k {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-45); margin-bottom: 18px;
}
.gap__thread {
  background: var(--gradient-diag);
}
.gap__seal {
  background:
    linear-gradient(var(--black), var(--black)) padding-box,
    var(--gradient-diag) border-box;
  border: 1px solid transparent;
  border-radius: 50%;
  width: 170px; height: 170px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  text-align: center;
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; line-height: 1.6;
}
.gap__seal svg { width: 22px; height: 22px; }
.gap__close {
  margin-top: 70px; text-align: center;
  font-size: clamp(19px, 2.2vw, 24px);
  max-width: 680px; margin-left: auto; margin-right: auto;
  color: var(--white);
}

/* desktop: sticky theater */
@media (min-width: 900px) {
  .gapwrap { height: 280vh; }
  .gapstick {
    position: sticky; top: 0;
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
  }
  .gap__stage {
    display: grid; grid-template-columns: 1fr 150px 1fr;
    align-items: center;
  }
  .js .gap__card--l {
    opacity: var(--p1, 0);
    transform: translateX(calc((1 - var(--p1, 0)) * -46%)) rotate(calc((1 - var(--p1, 0)) * -2deg));
  }
  .js .gap__card--r {
    opacity: var(--p1, 0);
    transform: translateX(calc((1 - var(--p1, 0)) * 46%)) rotate(calc((1 - var(--p1, 0)) * 2deg));
  }
  .gap__thread {
    justify-self: center; width: 1px; height: 78%;
    transform: scaleY(var(--p2, 0)); transform-origin: top;
  }
  .gap__seal {
    position: absolute; left: 50%; top: 50%;
    translate: -50% -50%;
    scale: calc(.55 + .45 * var(--p3, 0));
    opacity: var(--p3, 0);
  }
  .js .gap__close { opacity: var(--p3, 0); transform: translateY(calc((1 - var(--p3, 0)) * 24px)); }
}
@media (max-width: 899.9px) {
  .gap__stage { display: grid; gap: 18px; justify-items: center; }
  .gap__thread { width: 1px; height: 56px; }
  .gap__card { width: 100%; }
}

/* ---------- two directions ---------- */

.dir {
  display: grid; grid-template-columns: 1fr 1px 1fr;
  border: 1px solid var(--line); border-radius: 30px;
  overflow: hidden;
  background: var(--surface);
}
.dir__half { padding: clamp(36px, 4.6vw, 64px); transition: background-color .5s; }
.dir__half--in {
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
}
.dir__half--out {
  background-image: radial-gradient(80% 60% at 80% 10%, rgba(168,85,247,.07), transparent 70%);
}
.dir__half:hover { background-color: #101010; }
.dir__spine { position: relative; background: var(--gradient-diag); }
.dir__spine .spark {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 26px; height: 26px;
  filter: drop-shadow(0 0 14px rgba(236,72,153,.6));
}
.dir__tag {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: 22px;
}
.dir__title { font-size: clamp(26px, 2.8vw, 38px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 18px; }
.dir__title--serif { font-family: var(--serif); font-style: italic; font-weight: 500; }
.dir__intro { margin-bottom: 40px; max-width: 420px; }
.dir__list li {
  display: flex; align-items: baseline; gap: 22px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
  font-size: 18px; font-weight: 400;
  transition: padding-left .35s var(--ease-out), color .35s;
}
.dir__list li:hover { padding-left: 10px; color: var(--raspberry); }
.dir__list li span {
  font-size: 12px; font-weight: 600; letter-spacing: .12em; color: var(--ink-45);
  min-width: 44px; font-variant-numeric: tabular-nums;
}
.dir__bridge {
  margin: 76px auto 0; max-width: 760px; text-align: center;
  font-family: var(--serif); font-size: clamp(20px, 2.4vw, 26px); line-height: 1.55;
}
.dir__bridge em { font-style: italic; font-weight: 500; }

/* ---------- method / steps ---------- */

.steps { counter-reset: s; }
.step {
  display: grid; grid-template-columns: clamp(150px, 22vw, 260px) 1fr;
  gap: clamp(24px, 5vw, 72px); align-items: center;
  padding: clamp(40px, 6vh, 72px) 0;
  border-top: 1px solid var(--line);
}
.js .step { opacity: .25; transform: translateY(26px); transition: opacity .8s, transform .8s var(--ease-out); }
.js .step.active { opacity: 1; transform: none; }
.step__num {
  position: relative;
  font-size: clamp(84px, 12vw, 168px); font-weight: 700; line-height: .85; letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.22);
}
.step__num::after {
  content: attr(data-n);
  position: absolute; inset: 0;
  -webkit-text-stroke: 0px transparent;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0; transition: opacity .7s;
}
.step.active .step__num::after { opacity: 1; }
.step__body h3 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.step__body .serif-body { max-width: 560px; }

/* ---------- who rows ---------- */

.rows { border-bottom: 1px solid var(--line); }
.row {
  position: relative;
  display: grid; grid-template-columns: 90px 1fr 64px;
  align-items: center; column-gap: 24px;
  padding: clamp(34px, 5vh, 54px) 0;
  border-top: 1px solid var(--line);
}
.row__i { font-size: 13px; font-weight: 600; color: var(--ink-45); font-variant-numeric: tabular-nums; }
.row__t {
  font-size: clamp(30px, 4.6vw, 60px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.04;
  transition: transform .5s var(--ease-out);
}
.row:hover .row__t {
  transform: translateX(18px);
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.row__d {
  grid-column: 2;
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease-out), margin-top .55s var(--ease-out);
  margin-top: 0;
}
.row__d > span { overflow: hidden; display: block; max-width: 640px; }
.row:hover .row__d, .row:focus-visible .row__d { grid-template-rows: 1fr; margin-top: 16px; }
.row__a {
  grid-column: 3; grid-row: 1;
  font-size: 30px; justify-self: end;
  opacity: 0; transform: translateX(-14px);
  transition: opacity .4s, transform .4s var(--ease-out);
}
.row:hover .row__a {
  opacity: 1; transform: none;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
@media (hover: none) {
  .row__d { grid-template-rows: 1fr; margin-top: 14px; }
  .row__a { opacity: 1; transform: none; }
}

/* ---------- faq ---------- */

.faq { max-width: 940px; margin: 0 auto; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  display: grid; grid-template-columns: 72px 1fr 18px;
  align-items: center; column-gap: 20px;
  padding: 30px 4px;
  font-size: clamp(17px, 2vw, 21px); font-weight: 600;
  cursor: pointer; list-style: none;
  transition: color .25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--raspberry); }
.faq__i { font-size: 12px; font-weight: 600; letter-spacing: .12em; color: var(--ink-45); }
.faq__x { position: relative; width: 18px; height: 18px; }
.faq__x::before, .faq__x::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--white); transition: transform .3s var(--ease-out);
}
.faq__x::before { width: 18px; height: 1.5px; }
.faq__x::after { width: 1.5px; height: 18px; }
.faq details[open] .faq__x::after { transform: rotate(90deg); }
.faq details[open] .faq__x::before { background: var(--raspberry); }
.faq__a { padding: 0 4px 34px; }
.faq__a p { max-width: 660px; margin-left: 92px; }
.faq__a strong { color: var(--white); }

/* ---------- begin / contact ---------- */

.begin {
  position: relative; overflow: clip;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 160px var(--pad-x);
}
.begin__glow {
  position: absolute; left: 50%; bottom: -30%;
  width: 70vw; height: 60vh; transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(236,72,153,.14), transparent 70%);
  filter: blur(70px); pointer-events: none;
}
.begin__k {
  font-size: 12px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-45); margin-bottom: 30px;
}
.begin__h {
  font-size: clamp(58px, 12vw, 168px);
  font-weight: 700; letter-spacing: -0.045em; line-height: .98;
}
.begin__p { max-width: 520px; margin: 36px auto 60px; font-size: 19px; }
.magnet {
  position: relative;
  width: clamp(170px, 22vw, 216px); aspect-ratio: 1;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(var(--black), var(--black)) padding-box,
    var(--gradient-diag) border-box;
  border: 1px solid transparent;
  overflow: hidden;
  will-change: transform;
}
.magnet::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--gradient-diag);
  transform: scale(0);
  transition: transform .5s var(--ease-out);
}
.magnet:hover::before { transform: scale(1.02); }
.magnet__in { position: relative; display: flex; flex-direction: column; gap: 6px; transition: color .3s; }
.magnet__hi { font-size: 21px; font-weight: 600; letter-spacing: -0.01em; }
.magnet__sub { font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; opacity: .5; }
.magnet:hover .magnet__in { color: var(--black); }
.begin__mail {
  margin-top: 54px;
  font-family: var(--serif); font-style: italic; font-size: clamp(19px, 2.4vw, 25px);
  text-decoration: underline; text-underline-offset: 8px; text-decoration-thickness: 1px;
  transition: color .3s;
}
.begin__mail:hover { color: var(--raspberry); }

/* ---------- footer ---------- */

.ft { border-top: 1px solid var(--line); overflow: clip; }
.ft__grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 56px;
  padding: 90px var(--pad-x) 40px;
}
.ft__brand .hd__mark { width: 30px; height: 30px; margin-bottom: 22px; }
.ft__brand .serif-body { font-size: 16px; }
.ft__col { display: grid; gap: 13px; align-content: start; font-size: 15px; color: var(--ink-70); }
.ft__col a { width: fit-content; transition: color .25s; }
.ft__col a:hover { color: var(--raspberry); }
.ft__head {
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-45); margin-bottom: 10px;
}
.ft__mark {
  font-size: clamp(110px, 23vw, 350px);
  font-weight: 700; letter-spacing: -0.05em; line-height: .78;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.08);
  user-select: none; pointer-events: none;
  transform: translateY(8%);
}
.ft__bar {
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding: 26px var(--pad-x);
  font-size: 12px; letter-spacing: .08em; color: var(--ink-45);
}
.ft__krio { font-family: var(--serif); font-size: 15px; }

/* ---------- responsive ---------- */

@media (max-width: 1060px) {
  .menu__inner { grid-template-columns: 1fr; gap: 48px; padding-top: 120px; }
}
@media (max-width: 900px) {
  .hd__meta { display: none; }
  .dir { grid-template-columns: 1fr; }
  .dir__spine { height: 1px; }
  .dir__spine .spark { display: none; }
  .step { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .hero__foot { justify-content: center; }
  .hero__count { display: none; }
  .faq summary { grid-template-columns: 1fr 18px; }
  .faq__i { display: none; }
  .faq__a p { margin-left: 0; }
}
@media (max-width: 620px) {
  .hd { padding: 16px var(--pad-x); }
  .hd__cta { display: none; }
  .hd__word { font-size: 20px; }
  .row { grid-template-columns: 1fr 44px; }
  .row__i { display: none; }
  .row__d { grid-column: 1; }
  .row__br { display: none; }
  .ph { aspect-ratio: 4 / 3; border-radius: 18px; }
  .ticker__group { font-size: 19px; gap: 40px; padding-right: 40px; }
  .gap__seal { width: 150px; height: 150px; }
  .hero__meta { flex-direction: column; gap: 12px; }
  .hero__meta-mid { width: 1px; height: 30px; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::after { animation: none; }
  .ticker__track { animation: none; }
  .hero__glow--a, .hero__glow--b { animation: none; }
  .hero__scroll i { animation: none; transform: none; }
  .pl { display: none !important; }
  html.js body { overflow: auto !important; }
  .js .rv, .js .act__head, .js .step,
  .js .rv-g .li, .js .hero__h .li { opacity: 1 !important; transform: none !important; transition: none !important; }
  .js .step { opacity: 1; }
  .js .scrub .word { color: inherit; transition: none; }
  .js .gap__card--l, .js .gap__card--r, .js .gap__close { opacity: 1 !important; transform: none !important; }
  .gap__thread { transform: none !important; }
  .gap__seal { opacity: 1 !important; scale: 1 !important; }
  .gapwrap { height: auto !important; }
  .gapstick { position: static !important; }
  .cur-dot, .cur-ring { display: none !important; }
}
