@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&family=Manrope:wght@500;600;700&display=swap');

:root {
  color-scheme: light;
  --paper: #f4efe5;
  --paper-deep: #e9e1d3;
  --ink: #132034;
  --muted: #6f746f;
  --line: rgba(32, 47, 63, .13);
  --blue: #3298c9;
  --blue-deep: #166b96;
  --orange: #c55e21;
  --green: #56b68c;
  --selected-accent: #bf5a16;
  --selected-haze: rgba(213, 163, 83, .19);
  --selected-ink: #362415;
  --shell: min(1240px, calc(100vw - 72px));
  --shadow-soft: 0 24px 70px rgba(57, 48, 34, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(251, 207, 118, .18), transparent 28rem),
    linear-gradient(180deg, #f7f3eb 0%, var(--paper) 66%, #eee7da 100%);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}

body[data-look="classic"] {
  --selected-accent: #36a4e0;
  --selected-haze: rgba(54, 164, 224, .15);
  --selected-ink: #0e3654;
}

body[data-look="circadian"] {
  --selected-accent: #ef8a3a;
  --selected-haze: rgba(239, 138, 58, .18);
  --selected-ink: #462516;
}

body[data-look="neon"] {
  --selected-accent: #9df137;
  --selected-haze: rgba(158, 241, 55, .16);
  --selected-ink: #18330a;
}

body[data-look="abyss"] {
  --selected-accent: #6074ff;
  --selected-haze: rgba(82, 104, 229, .17);
  --selected-ink: #171c55;
}

body[data-look="ink"] {
  --selected-accent: #171717;
  --selected-haze: rgba(18, 18, 18, .12);
  --selected-ink: #111;
}

body[data-look="carbon"] {
  --selected-accent: #8892a0;
  --selected-haze: rgba(87, 98, 116, .16);
  --selected-ink: #242b35;
}

body[data-look="minimal"] {
  --selected-accent: #67a5b9;
  --selected-haze: rgba(103, 165, 185, .13);
  --selected-ink: #193943;
}

body[data-look="mono"] {
  --selected-accent: #484848;
  --selected-haze: rgba(72, 72, 72, .12);
  --selected-ink: #222;
}

body[data-look="dune"] {
  --selected-accent: #af733f;
  --selected-haze: rgba(175, 115, 63, .17);
  --selected-ink: #4c2c17;
}

body[data-look="meadow"] {
  --selected-accent: #4f9c60;
  --selected-haze: rgba(79, 156, 96, .16);
  --selected-ink: #1f462a;
}

body[data-look="clay"] {
  --selected-accent: #b96850;
  --selected-haze: rgba(185, 104, 80, .17);
  --selected-ink: #4f251c;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

section[id],
article[id] {
  scroll-margin-top: 92px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1340px, calc(100vw - 36px));
  min-height: 58px;
  padding: 10px 14px 10px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, top .3s ease;
}

.site-header.is-scrolled {
  top: 10px;
  border-color: rgba(35, 46, 57, .1);
  background: rgba(247, 243, 235, .86);
  box-shadow: 0 12px 36px rgba(56, 49, 37, .08);
  backdrop-filter: blur(20px) saturate(1.2);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: max-content;
  color: var(--ink);
  font-family: Manrope, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-decoration: none;
}

.brand img {
  border-radius: 9px;
}

.site-nav {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(36, 51, 66, .09);
  border-radius: 999px;
  background: rgba(255, 255, 255, .34);
}

.site-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: #525d67;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, .8);
  color: var(--ink);
  outline: none;
}

.language {
  justify-self: end;
  display: flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(35, 50, 64, .1);
  border-radius: 999px;
}

.language button {
  width: 36px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #717871;
  font-size: .68rem;
  font-weight: 700;
  cursor: pointer;
}

.language button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
}

.kicker {
  margin: 0 0 16px;
  color: var(--blue-deep);
  font-family: Manrope, sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Manrope, sans-serif;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(440px, .9fr);
  gap: clamp(40px, 7vw, 112px);
  align-items: center;
  min-height: 780px;
  padding-top: 104px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 18px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  color: #111c2e;
  font-size: clamp(3.7rem, 6vw, 6.6rem);
  font-weight: 600;
  letter-spacing: -.075em;
  line-height: .94;
}

.hero h1 em {
  color: var(--blue-deep);
  font-family: inherit;
  font-style: normal;
}

.lede {
  max-width: 570px;
  margin: 0;
  color: #626d76;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.hero-actions > span {
  color: #858982;
  font-size: .76rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px 0 22px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: .84rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #23324a;
}

.button svg {
  width: 18px;
}

.hero-art {
  position: relative;
  display: grid;
  overflow: clip;
  min-height: 680px;
  place-items: center;
  isolation: isolate;
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(42, 135, 178, .18);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-a {
  width: 630px;
  height: 630px;
  animation: orbit-turn 22s linear infinite;
}

.orbit-b {
  width: 420px;
  height: 420px;
  border-style: dashed;
  animation: orbit-turn 17s linear infinite reverse;
}

.orbit i {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(50, 152, 201, .1);
}

.orbit-b i {
  top: 8%;
  left: 75%;
  width: 8px;
  height: 8px;
  background: #e88b43;
}

@keyframes orbit-turn {
  to { transform: rotate(360deg); }
}

.hero-reel {
  position: relative;
  width: min(430px, 82vw);
  padding: 12px 12px 0;
  border: 1px solid rgba(42, 52, 62, .13);
  border-radius: 40px;
  background: rgba(255, 255, 255, .55);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-window {
  position: relative;
  overflow: hidden;
  aspect-ratio: .72;
  border-radius: 30px 30px 24px 24px;
  background: #f6eedc;
}

.hero-state {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.006);
  will-change: opacity, transform;
}

.hero-state-base {
  opacity: 1;
  transform: scale(1);
}

.hero-reel.is-running .hero-state-base {
  animation: hero-base-story 13s linear both;
}

.hero-reel.is-running .hero-state-moved {
  animation: hero-moved-story 13s linear both;
}

.hero-reel.is-running .hero-state-settled {
  animation: hero-settled-story 13s linear both;
}

.hero-reel.is-static .hero-state-base,
.hero-reel.is-static .hero-state-moved {
  opacity: 0;
}

.hero-reel.is-static .hero-state-settled {
  opacity: 1;
  transform: scale(1);
}

@keyframes hero-base-story {
  0%, 30% { opacity: 1; transform: scale(1); }
  39%, 88% { opacity: 0; transform: scale(1.004); }
  96%, 100% { opacity: 1; transform: scale(1); }
}

@keyframes hero-moved-story {
  0%, 30% { opacity: 0; transform: scale(1.004); }
  39%, 61% { opacity: 1; transform: scale(1); }
  70%, 100% { opacity: 0; transform: scale(1.004); }
}

@keyframes hero-settled-story {
  0%, 61% { opacity: 0; transform: scale(1.004); }
  70%, 88% { opacity: 1; transform: scale(1); }
  96%, 100% { opacity: 0; transform: scale(1.004); }
}

.hero-choice-cue {
  position: absolute;
  z-index: 4;
  top: 61%;
  left: 16.9%;
  width: 11.5%;
  aspect-ratio: 1;
  border: 2px solid rgba(191, 91, 23, .62);
  border-radius: 14px;
  box-shadow: 0 0 0 0 rgba(210, 114, 42, .18);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.82);
}

.hero-reel.is-running .hero-choice-cue {
  animation: hero-choice-story 13s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes hero-choice-story {
  0%, 3% { opacity: 0; transform: translate(-50%, -50%) scale(.82); }
  7% { opacity: 1; transform: translate(-50%, -50%) scale(1.04); box-shadow: 0 0 0 10px rgba(210, 114, 42, .1); }
  12% { opacity: .9; transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 4px rgba(210, 114, 42, .05); }
  17%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(.96); box-shadow: 0 0 0 0 rgba(210, 114, 42, 0); }
}

.hero-float-action {
  position: absolute;
  z-index: 5;
  top: 34.3%;
  left: 56.1%;
  width: 43.9%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(84, 61, 34, .16);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(.98);
  will-change: opacity, transform;
}

.hero-reel.is-running .hero-float-action {
  animation: hero-action-story 13s cubic-bezier(.22, .78, .18, 1) both;
}

@keyframes hero-action-story {
  0%, 15% { opacity: 0; transform: translate3d(0, 0, 0) scale(.98); }
  18%, 21% { opacity: 1; transform: translate3d(0, 0, 0) scale(1.035); }
  34%, 38% { opacity: 1; transform: translate3d(0, 555%, 0) scale(1.015); }
  42%, 100% { opacity: 0; transform: translate3d(0, 555%, 0) scale(1); }
}

.hero-resize-block {
  position: absolute;
  z-index: 4;
  top: 39.6%;
  left: 1.25%;
  width: 37.5%;
  opacity: 0;
  clip-path: inset(0 0 29.5% 0 round 12px);
  filter: drop-shadow(0 10px 18px rgba(91, 61, 34, .12));
  will-change: opacity, clip-path;
}

.hero-resize-block img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-reel.is-running .hero-resize-block {
  animation: hero-resize-story 13s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes hero-resize-story {
  0%, 50% { opacity: 0; clip-path: inset(0 0 29.5% 0 round 12px); }
  54% { opacity: 1; clip-path: inset(0 0 29.5% 0 round 12px); }
  66% { opacity: 1; clip-path: inset(0 0 0 0 round 12px); }
  72%, 100% { opacity: 0; clip-path: inset(0 0 0 0 round 12px); }
}

.hero-resize-handle {
  position: absolute;
  z-index: 6;
  top: 72.2%;
  left: 20%;
  width: 34px;
  height: 12px;
  border: 1px solid rgba(181, 91, 24, .48);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 26%, rgba(181, 91, 24, .72) 26% 38%, transparent 38% 62%, rgba(181, 91, 24, .72) 62% 74%, transparent 74%),
    rgba(255, 249, 233, .9);
  box-shadow: 0 6px 18px rgba(84, 61, 34, .12);
  opacity: 0;
  transform: translate(-50%, -50%);
}

.hero-reel.is-running .hero-resize-handle {
  animation: hero-handle-story 13s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes hero-handle-story {
  0%, 50% { top: 72.2%; opacity: 0; }
  54% { top: 72.2%; opacity: 1; }
  66% { top: 85.8%; opacity: 1; }
  72%, 100% { top: 85.8%; opacity: 0; }
}

.hero-touch {
  position: absolute;
  z-index: 7;
  top: 61%;
  left: 16.9%;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(31, 119, 163, .72);
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  opacity: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 7px rgba(31, 119, 163, .08);
  will-change: top, left, opacity, transform;
}

.hero-reel.is-running .hero-touch {
  animation: hero-touch-story 13s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes hero-touch-story {
  0%, 3% { top: 61%; left: 16.9%; opacity: 0; transform: translate(-50%, -50%) scale(.7); }
  7% { top: 61%; left: 16.9%; opacity: 1; transform: translate(-50%, -50%) scale(1.18); }
  12% { top: 61%; left: 16.9%; opacity: .8; transform: translate(-50%, -50%) scale(.9); }
  16% { top: 38.6%; left: 94.6%; opacity: 0; transform: translate(-50%, -50%) scale(.8); }
  19% { top: 38.6%; left: 94.6%; opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
  34% { top: 88%; left: 94.6%; opacity: .8; transform: translate(-50%, -50%) scale(.9); }
  40% { top: 88%; left: 94.6%; opacity: 0; transform: translate(-50%, -50%) scale(.8); }
  51% { top: 72.2%; left: 20%; opacity: 0; transform: translate(-50%, -50%) scale(.8); }
  54% { top: 72.2%; left: 20%; opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
  66% { top: 85.8%; left: 20%; opacity: .8; transform: translate(-50%, -50%) scale(.9); }
  72%, 100% { top: 85.8%; left: 20%; opacity: 0; transform: translate(-50%, -50%) scale(.8); }
}

.hero-status {
  display: grid;
  grid-template-columns: auto minmax(116px, auto) 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 0 10px;
}

.hero-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(50, 152, 201, .1);
}

.hero-status strong {
  font-size: .82rem;
  white-space: nowrap;
  transition: opacity .18s ease, transform .18s ease;
}

.hero-status strong.is-changing {
  opacity: 0;
  transform: translateY(3px);
}

.hero-progress {
  overflow: hidden;
  height: 2px;
  border-radius: 999px;
  background: rgba(20, 37, 52, .12);
}

.hero-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-reel.is-running .hero-progress i {
  animation: hero-progress 13s linear both;
}

@keyframes hero-progress {
  to { transform: scaleX(1); }
}

.hero-replay {
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink-soft);
  background: transparent;
  font: 600 1rem/1 Manrope, sans-serif;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.hero-replay:hover,
.hero-replay:focus-visible {
  color: var(--blue-deep);
  background: rgba(31, 119, 163, .08);
  transform: rotate(-24deg);
}

.spaces {
  padding-block: 120px 140px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(340px, 1.1fr);
  column-gap: 8vw;
  align-items: end;
  max-width: 1000px;
  margin-bottom: 58px;
}

.section-head .kicker {
  grid-column: 1 / -1;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4.2vw, 4.9rem);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .98;
}

.section-head > p:last-child {
  max-width: 500px;
  margin: 0 0 4px;
  color: #6d7479;
  font-size: 1.05rem;
  line-height: 1.65;
}

.space-stories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.space-story {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .25);
}

.views-story,
.canvas-story {
  display: grid;
  grid-template-rows: auto 1fr;
}

.story-copy {
  padding: 28px 28px 26px;
}

.story-index {
  display: block;
  margin-bottom: 34px;
  color: var(--blue-deep);
  font-family: Manrope, sans-serif;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .13em;
}

.story-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -.045em;
}

.story-copy p {
  max-width: 420px;
  margin: 0;
  color: #6a7277;
  font-size: .98rem;
  line-height: 1.55;
}

.loop-stage {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #f4eddf;
}

.views-stage {
  aspect-ratio: 1.38;
}

.loop-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transition: opacity .5s ease, transform 1s cubic-bezier(.2, .8, .2, 1);
}

.loop-frame.is-active {
  z-index: 1;
  opacity: 1;
}

.views-stage .loop-frame {
  transform: scale(1.025);
}

.views-stage .loop-frame.is-active {
  transform: scale(1);
}

.loop-label {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(155, 107, 59, .18);
  border-radius: 999px;
  background: rgba(255, 252, 244, .8);
  color: #76583b;
  font-size: .68rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.date-pulse {
  position: absolute;
  z-index: 3;
  top: 69%;
  left: 9.5%;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(191, 84, 13, .55);
  border-radius: 50%;
  opacity: 0;
}

[data-feature-loop="views"][data-loop-step="0"] .date-pulse {
  animation: date-pulse 1.5s ease infinite;
}

@keyframes date-pulse {
  45% { opacity: .9; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.55); }
}

.canvas-story {
  background:
    linear-gradient(135deg, rgba(196, 109, 34, .12), transparent 45%),
    rgba(255, 255, 255, .3);
}

.canvas-story .story-copy {
  order: 2;
}

.canvas-stage {
  display: grid;
  aspect-ratio: 1.02;
  place-items: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, .7), transparent 58%),
    #eadfc9;
}

.canvas-stage .loop-frame {
  inset: 3%;
  width: 94%;
  height: 94%;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .25);
  transform: scale(.975) translateY(8px);
}

.canvas-stage .loop-frame.is-active {
  transform: scale(1) translateY(0);
}

.canvas-signal {
  position: absolute;
  z-index: 3;
  top: 47%;
  left: 51%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff4766;
  box-shadow: 0 0 0 0 rgba(255, 71, 102, .35);
}

[data-feature-loop="canvas"][data-loop-step="1"] .canvas-signal {
  animation: canvas-signal 1.7s ease infinite;
}

@keyframes canvas-signal {
  60% { box-shadow: 0 0 0 13px rgba(255, 71, 102, 0); }
}

.focus-story {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  align-items: stretch;
  background:
    radial-gradient(circle at 76% 44%, rgba(222, 156, 53, .1), transparent 24rem),
    rgba(255, 255, 255, .33);
}

.focus-story .story-copy {
  align-self: center;
  padding: 56px clamp(30px, 5vw, 76px);
}

.focus-stage {
  min-height: 530px;
  background: #f4ecdc;
}

.focus-stage .loop-frame {
  object-fit: cover;
  object-position: center 5%;
}

.focus-stage [data-focus-frame="matrix"] {
  object-fit: contain;
  object-position: center;
  padding: 16px;
}

.focus-switch {
  display: inline-flex;
  gap: 4px;
  margin-top: 28px;
  padding: 4px;
  border: 1px solid rgba(83, 61, 35, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .38);
}

.focus-switch button {
  min-width: 78px;
  padding: 9px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #78664f;
  font-size: .76rem;
  font-weight: 600;
  cursor: pointer;
}

.focus-switch button.is-active {
  background: #ba570f;
  color: #fff;
}

.focus-tap {
  position: absolute;
  z-index: 3;
  top: 7%;
  right: 24%;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(183, 83, 13, .65);
  border-radius: 50%;
  opacity: 0;
}

.focus-story[data-focus-active="timer"] .focus-tap {
  animation: focus-tap .85s ease both;
}

@keyframes focus-tap {
  0% { opacity: 0; transform: scale(.55); }
  42% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(1.7); }
}

.custom {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .65fr) minmax(520px, 1.35fr);
  gap: 54px;
  align-items: center;
  overflow: hidden;
  margin-bottom: 150px;
  padding: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .24);
}

.custom h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1.03;
}

.custom-copy > p:not(.export-note):last-of-type {
  color: #687176;
  line-height: 1.6;
}

.export-note {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  color: #847866;
  font-size: .8rem;
  line-height: 1.45;
}

.export-note::before {
  content: "↗";
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(116, 95, 67, .2);
  border-radius: 50%;
  color: #b55a17;
  font-size: .78rem;
}

.custom-toggle {
  display: inline-grid;
  grid-template-columns: auto 38px auto;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(40, 52, 61, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .48);
  color: #777a73;
  font-size: .72rem;
  font-weight: 600;
  cursor: pointer;
}

.custom-toggle i {
  position: relative;
  width: 38px;
  height: 20px;
  border-radius: 999px;
  background: rgba(32, 57, 72, .18);
}

.custom-toggle i::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue-deep);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), background .25s ease;
}

.custom-toggle[aria-pressed="true"] i::after {
  transform: translateX(18px);
  background: var(--orange);
}

.custom-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.9;
  margin: 0;
  border-radius: 26px;
  background: #f4ead7;
  box-shadow: 0 18px 46px rgba(79, 62, 40, .13);
}

.custom-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
  transition: opacity .42s ease, transform .7s ease;
}

.custom-frame.is-active {
  opacity: 1;
  transform: scale(1);
}

.custom-stage figcaption {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 252, 245, .82);
  color: #776e61;
  font-size: .66rem;
  backdrop-filter: blur(12px);
}

.yours {
  position: relative;
  overflow: clip;
  padding-bottom: 132px;
}

.yours::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 80px;
  right: -12vw;
  width: min(680px, 55vw);
  height: min(680px, 55vw);
  border-radius: 50%;
  background: radial-gradient(circle, var(--selected-haze), transparent 68%);
  transition: background .5s ease;
  pointer-events: none;
}

.yours-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(250px, .5fr);
  gap: 28px;
  align-items: stretch;
}

.look-explorer {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(210px, .5fr);
  gap: 18px;
  min-width: 0;
}

.look-stage {
  position: sticky;
  top: 88px;
  overflow: hidden;
  align-self: start;
  aspect-ratio: .92;
  border: 1px solid rgba(35, 48, 57, .1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, .12), transparent 42%),
    #112033;
  box-shadow: var(--shadow-soft);
  transition: background .45s ease, border-color .45s ease;
}

.look-stage::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.1), transparent 32%, rgba(0,0,0,.14));
}

[data-active-look="paper"] .look-stage { background: #e9dfcb; }
[data-active-look="ink"] .look-stage { background: #161719; }
[data-active-look="dune"] .look-stage { background: #40291f; }

.look-stage img {
  position: absolute;
  z-index: 0;
  inset: 5% 8%;
  width: 84%;
  height: 90%;
  opacity: 0;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .18));
  transform: translateY(9px) scale(.985);
  transition: opacity .42s ease, transform .75s cubic-bezier(.2, .8, .2, 1);
}

.look-stage img.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.look-stage-meta {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .78);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.look-name {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  background: rgba(15, 24, 37, .44);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.look-steps {
  display: grid;
  align-content: start;
  gap: 10px;
  padding-block: 8px;
}

.look-step {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  min-height: clamp(168px, 24vh, 250px);
  padding: 18px 14px;
  border: 1px solid transparent;
  border-radius: 20px;
  background: transparent;
  color: #777771;
  text-align: left;
  cursor: pointer;
  transition: border-color .35s ease, background .35s ease, color .35s ease, transform .35s ease;
}

.look-step:hover,
.look-step:focus-visible {
  border-color: rgba(35, 49, 61, .12);
  background: rgba(255, 255, 255, .3);
  outline: none;
}

.look-step.is-active {
  border-color: color-mix(in srgb, var(--selected-accent) 34%, transparent);
  background: rgba(255, 255, 255, .56);
  color: var(--selected-ink);
}

.look-step-index {
  color: var(--selected-accent);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.look-step-copy {
  display: grid;
  gap: 7px;
}

.look-step-copy strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.look-step-copy span {
  max-width: 16ch;
  color: #777b78;
  font-size: .78rem;
  line-height: 1.45;
}

.look-dot {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
  background: #329ed4;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
}

.look-dot-paper { background: #f1d69e; }
.look-dot-ink { background: #121212; }
.look-dot-dune { background: #b77a45; }

.widget-note {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(35, 49, 61, .11);
  border-radius: 36px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .76), rgba(255, 255, 255, .38)),
    var(--selected-haze);
  transition: background .5s ease;
}

.widget-copy {
  padding: 28px 28px 22px;
}

.widget-copy h3 {
  margin-bottom: 12px;
  color: var(--selected-ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.1;
  transition: color .5s ease;
}

.widget-copy p:last-child {
  margin: 0;
  color: #6b7274;
  font-size: .9rem;
  line-height: 1.5;
}

.widget-note figure {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  margin: 0;
  background: #070d17;
}

.widget-note img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 10px 10px 0;
  object-fit: contain;
  object-position: center top;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1);
}

.widget-note:hover img {
  transform: scale(1.025);
}

.close {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 22px;
  padding: clamp(46px, 6vw, 80px);
  border-radius: 40px;
  background:
    radial-gradient(circle at 75% 20%, rgba(54, 164, 224, .16), transparent 24rem),
    #111d2e;
  color: #fff;
}

.close .kicker {
  color: #6bc1eb;
}

.close h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .96;
}

.button-light {
  flex: 0 0 auto;
  background: #fff;
  color: #152238;
}

.button-light:hover {
  background: #dff3fc;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 36px;
  align-items: center;
  padding-block: 34px 42px;
}

.footer-brand {
  display: flex;
  gap: 22px;
  align-items: center;
}

.mission {
  max-width: 290px;
  margin: 0;
  color: #90928c;
  font-size: .64rem;
  line-height: 1.45;
}

.privacy-note {
  margin: 0;
  color: #898d89;
  font-size: .68rem;
}

.footer nav {
  display: flex;
  gap: 16px;
}

.footer nav a {
  color: #5f676a;
  font-size: .72rem;
  font-weight: 600;
  text-decoration: none;
}

.motion-reveal {
  opacity: 1;
  transform: translateY(16px);
  transition: opacity .65s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}

.motion-reveal[data-delay="1"] {
  transition-delay: .08s;
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  :root {
    --shell: min(100% - 48px, 980px);
  }

  .hero {
    grid-template-columns: minmax(0, .8fr) minmax(380px, .72fr);
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 6.7vw, 5.7rem);
  }

  .hero-art {
    min-height: 630px;
  }

  .orbit-a {
    width: 520px;
    height: 520px;
  }

  .orbit-b {
    width: 350px;
    height: 350px;
  }

  .custom {
    grid-template-columns: .72fr 1.28fr;
    gap: 34px;
    padding: 40px;
  }

  .yours-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(230px, .55fr);
  }

  .look-explorer {
    grid-template-columns: minmax(0, 1fr) minmax(190px, .45fr);
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 140px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1,
  .lede {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-art {
    min-height: 680px;
  }

  .hero-reel {
    width: min(430px, 78vw);
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-head .kicker {
    grid-column: auto;
  }

  .space-stories {
    grid-template-columns: 1fr;
  }

  .focus-story {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .focus-stage {
    min-height: auto;
    aspect-ratio: 1.12;
  }

  .custom {
    grid-template-columns: 1fr;
    margin-bottom: 110px;
  }

  .custom-stage {
    aspect-ratio: 1.65;
  }

  .yours-layout {
    grid-template-columns: 1fr;
  }

  .look-explorer {
    grid-template-columns: minmax(0, 1.1fr) minmax(190px, .52fr);
  }

  .look-stage {
    top: 78px;
    aspect-ratio: .92;
  }

  .widget-note {
    grid-template-columns: .72fr 1.28fr;
    grid-template-rows: 1fr;
  }

  .footer {
    grid-template-columns: 1fr auto;
  }

  .footer .privacy-note {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .site-header {
    top: 8px;
    width: calc(100vw - 16px);
    min-height: 52px;
    padding-left: 12px;
  }

  .brand span {
    font-size: .66rem;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(3rem, 15vw, 4.35rem);
    line-height: .97;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
  }

  .hero-art {
    min-height: 590px;
    margin-top: 10px;
  }

  .orbit-a {
    width: 450px;
    height: 450px;
  }

  .orbit-b {
    width: 310px;
    height: 310px;
  }

  .hero-reel {
    width: min(368px, 92vw);
    padding: 8px 8px 0;
    border-radius: 30px;
  }

  .hero-window {
    border-radius: 23px 23px 18px 18px;
  }

  .hero-status {
    grid-template-columns: auto minmax(62px, auto) 1fr auto;
    min-height: 54px;
    padding-inline: 8px;
  }

  .hero-status strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .spaces {
    padding-block: 90px 100px;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section-head h2 {
    font-size: clamp(2.2rem, 11.5vw, 3.25rem);
  }

  .space-stories {
    gap: 18px;
  }

  .story-copy {
    padding: 22px 20px 20px;
  }

  .story-index {
    margin-bottom: 16px;
  }

  .views-stage {
    aspect-ratio: 1.08;
  }

  .canvas-stage {
    aspect-ratio: .98;
  }

  .date-pulse,
  .canvas-signal {
    display: none;
  }

  .focus-story .story-copy {
    padding: 34px 20px;
  }

  .focus-stage {
    aspect-ratio: .9;
  }

  .custom {
    width: 100%;
    margin-bottom: 96px;
    padding: 38px 20px;
    border-radius: 0;
  }

  .custom-stage {
    aspect-ratio: 1.25;
    border-radius: 20px;
  }

  .custom-stage figcaption {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }

  .yours {
    padding-bottom: 100px;
  }

  .look-stage {
    position: relative;
    top: auto;
    aspect-ratio: 1.06;
    border-radius: 28px;
  }

  .look-stage img {
    inset: 6% 20%;
    width: 60%;
    height: 88%;
  }

  .look-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0;
  }

  .look-explorer {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .look-step {
    grid-template-columns: 1fr auto;
    min-height: 0;
    padding: 13px 11px;
  }

  .look-step-index {
    grid-column: 1;
  }

  .look-step-copy {
    grid-column: 1;
    grid-row: 2;
    gap: 4px;
  }

  .look-step-copy strong {
    font-size: .87rem;
  }

  .look-step-copy span {
    font-size: .68rem;
    line-height: 1.35;
  }

  .look-dot {
    grid-column: 2;
    grid-row: 1;
  }

  .widget-note {
    grid-template-columns: 1fr;
    grid-template-rows: auto 220px;
    border-radius: 28px;
  }

  .widget-note figure {
    min-height: 0;
  }

  .close {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
    padding: 42px 26px;
    border-radius: 30px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer .privacy-note {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 390px) {
  .hero-art {
    min-height: 548px;
  }

  .hero-reel {
    width: min(344px, 94vw);
  }

  .hero-status {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .hero-progress {
    display: none;
  }

  .custom-toggle {
    gap: 8px;
    padding-inline: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .motion-reveal {
    opacity: 1;
    transform: none;
  }
}
