@font-face {
  font-family: Manrope;
  src: url('./manrope.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
:root {
  --paper: #ffffff;
  --ink: #000000;
  --muted: #525252;
  --ease: cubic-bezier(.22, 1, .36, 1);
  color-scheme: light;
  font-family: Manrope, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
* { box-sizing: border-box; }
body { margin: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
button:focus-visible, a:focus-visible { outline: 2px solid currentColor; outline-offset: 6px; }
button { border: 0; background: none; }
[hidden] { display: none !important; }
.masthead {
  position: fixed; inset: 0 0 auto; z-index: 5;
  padding: 24px 3.5%; display: flex; justify-content: flex-end; align-items: center;
  pointer-events: none;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
body[data-scrolled="true"] .masthead { opacity: 1; visibility: visible; }
.masthead > * { pointer-events: auto; }
.wordmark { font-size: 34px; letter-spacing: -.08em; line-height: 1; }
.wordmark small { display: block; margin-top: 9px; font-size: 10px; letter-spacing: .12em; }
.about-button { display: flex; align-items: center; gap: 18px; padding: 5px 0 5px 20px; font-size: 14px; }
.about-button span {
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 1px solid #191a1845; border-radius: 50%; font-size: 25px;
  transition: transform .5s var(--ease), background .3s, color .3s;
}
.about-button:hover span { transform: rotate(90deg); color: var(--paper); background: var(--ink); }
.journey { height: 235svh; }
.scene { position: sticky; top: 0; height: 100svh; overflow: clip; isolation: isolate; background: var(--paper); }
.hero-title { margin: 0; font-weight: 400; font-size: clamp(90px, 12.8vw, 230px); line-height: .97; letter-spacing: -.065em; word-spacing: .08em; }
.hero-title span { position: absolute; display: block; will-change: transform, opacity; }
.headline-first { left: 7%; top: 15%; }
.headline-second { right: 6%; bottom: 13%; }
.eye-placement {
  position: absolute; left: 50%; top: 46%; width: min(48vw, 740px);
  aspect-ratio: 1.5; transform: translate(-50%, -50%); z-index: 2;
  mix-blend-mode: multiply; perspective: 1000px; will-change: transform;
}
.eye-surface { position: relative; width: 100%; height: 100%; transform-origin: 50% 48%; }
.eye-image { display: block; width: 100%; height: 100%; object-fit: contain; filter: brightness(1.12); }
.eye-hit { position: absolute; inset: 16% 3% 20%; width: 94%; cursor: pointer; border-radius: 50%; }
.eye-hit:focus-visible { outline-offset: 10px; }
.thread { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; overflow: visible; }
.thread path { fill: none; stroke: #000; stroke-width: 20; stroke-linecap: butt; }
.line-handle {
  position: absolute; width: 48px; height: 48px; z-index: 3; border-radius: 50%;
  transform: translate(-50%, -50%); touch-action: none; cursor: grab;
}
.line-handle::after { content: ''; position: absolute; inset: 21px; background: var(--ink); opacity: 0; transform: rotate(45deg); transition: opacity .2s, transform .3s; }
.line-handle:hover::after, .line-handle:focus-visible::after { opacity: 1; transform: rotate(45deg) scale(1.5); }
.line-handle:active { cursor: grabbing; }
.scene-footer {
  position: absolute; inset: auto 3.5% 25px; z-index: 3; display: flex;
  align-items: flex-end; justify-content: flex-end; gap: 20px;
}
.company-note { margin: 0 auto 0 0; font-size: 13px; line-height: 1.6; }
.company-note span { color: var(--muted); }
.explore { font-size: 13px; display: flex; align-items: center; gap: 16px; min-height: 44px; padding: 0; }
.explore i { width: 90px; height: 1px; background: #191a1840; position: relative; }
.explore i::after { content: ''; position: absolute; inset: 0; background: var(--ink); transform: scaleX(var(--progress, .04)); transform-origin: left; }
.explore b { font-weight: 400; font-size: 20px; }
.story { position: absolute; left: 8%; top: 30%; width: 49%; z-index: 3; opacity: 0; visibility: hidden; }
.eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: .13em; }
.story h2 { font-size: clamp(48px, 6.3vw, 108px); font-weight: 400; line-height: 1.07; letter-spacing: -.05em; word-spacing: .06em; margin: 32px 0; }
.story .description { font-size: 17px; line-height: 1.7; max-width: 370px; color: var(--muted); }
.story a { display: inline-flex; gap: 36px; margin-top: 20px; padding: 12px 0; border-bottom: 1px solid #191a1855; font-size: 14px; }
.skip { position: fixed; z-index: 6; right: 3.5%; bottom: 26px; font-size: 13px; padding: 14px; background: var(--paper); }
.opening .hero-title { opacity: 0; }
.skip:not(:focus-visible) { opacity: 0; pointer-events: none; }
.opening .line-handle { visibility: hidden; }
.no-script { position: absolute; left: 7%; bottom: 4%; font-size: 14px; }
.hero-title, .scene-footer { transition: opacity 1s var(--ease); }
.eye-surface { transition: transform .6s var(--ease); }
@media (max-width: 900px) {
  .hero-title { font-size: 14vw; }
  .story .description { font-size: 16px; }
}
@media (max-width: 650px) {
  .masthead { padding: 22px 6%; }
  .wordmark { font-size: 31px; }
  .about-button { gap: 10px; }
  .about-button > span { width: 40px; height: 40px; }
  .hero-title { font-size: 20vw; }
  .headline-first { top: 20%; left: 7%; }
  .headline-second { bottom: 20%; right: 7%; font-size: 17vw; }
  .eye-placement { width: 84vw; top: 43%; }
  .scene-footer { inset: auto 6% 25px; }
  .company-note { font-size: 12px; }
  .explore { font-size: 12px; gap: 10px; }
  .explore i { display: none; }
  .story { top: 44%; width: 84%; }
  .story h2 { margin: 22px 0; font-size: clamp(40px, 11vw, 68px); }
  .story .description { max-width: 330px; font-size: 16px; }
  .story a { margin-top: 8px; }
}
@media (max-height: 740px) and (min-width: 651px) {
  .hero-title { font-size: 10vw; }
  .headline-first { top: 18%; }
  .headline-second { bottom: 13%; }
  .eye-placement { width: 47vw; }
  .story { top: 24%; }
  .story h2 { font-size: 5.4vw; margin: 20px 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
