@font-face {
  font-family: "Urbanist";
  src: url("/fonts/urbanist-regular.woff2") format("woff2"), url("/fonts/urbanist-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist";
  src: url("/fonts/urbanist-medium.woff2") format("woff2"), url("/fonts/urbanist-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
/* The weights that were being faked.

   Only 400 and 500 were ever declared, and the site asks for 600 in twenty
   five places on the home page alone and on five other pages. A weight with no
   face is not a fallback to another font: the browser smears the 500 face into
   a synthetic bold, which is heavier, wider and slightly wrong in the letter
   shapes. That is why the type stopped looking like Urbanist without anything
   obviously falling back. These are the real cuts, and the files were already
   sitting in public/fonts unused. */
@font-face {
  font-family: "Urbanist";
  src: url("/fonts/urbanist-latin-300-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist";
  src: url("/fonts/urbanist-latin-600-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist";
  src: url("/fonts/urbanist-latin-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist";
  src: url("/fonts/urbanist-latin-800-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --paper: #fcfcfc;
  --white: #ffffff;
  --ink: #171716;
  --muted: #656560;
  --line: #d9d9d2;
  --blue: #4868c8;
  --blue-soft: #e9edfb;
  --yellow: #efc84d;
  --coral: #ec806e;
  --green: #507858;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Urbanist", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
[class], h1, h2, h3, h4, h5, h6, strong, b, button { font-weight: inherit; }
h1, h2, h3, h4, h5, h6, strong, b, button, .button, .brand { font-weight: 500; }
h1, h2 { font-weight: 600; }
[hidden] { display: none !important; }
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
svg, img { display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.shell { width: min(1240px, calc(100% - 56px)); margin-inline: auto; }
.section { padding-block: 132px; }
.eyebrow { margin: 0 0 24px; color: var(--muted); font-size: .74rem; line-height: 1.2; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow-light { color: #aaa9a3; }

.nav-sentinel { position: absolute; top: 12px; height: 1px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 76px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(150%);
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.site-header.scrolled { background: rgba(255, 255, 255, .94); border-color: rgba(23, 23, 22, .08); box-shadow: 0 10px 34px rgba(31, 31, 27, .06); }
.nav-shell { width: min(1400px, calc(100% - 48px)); height: 100%; margin-inline: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.brand { display: inline-flex; align-items: center; gap: 9px; justify-self: start; font-weight: 500; font-size: 1.16rem; letter-spacing: -.035em; }
.brand-mark { width: 30px; height: 30px; fill: currentColor; }
.primary-nav { display: flex; align-items: center; gap: 34px; font-size: .9rem; }
.primary-nav a { position: relative; padding-block: 10px; color: #42423e; }
.primary-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 3px; height: 1.5px; background: var(--ink); transition: left .25s var(--ease), right .25s var(--ease); }
.primary-nav a:hover::after, .primary-nav a.active::after { left: 0; right: 0; }
.header-cta { justify-self: end; min-height: 42px; padding-inline: 19px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 23px; height: 1.5px; margin: 5px 0; background: var(--ink); transition: transform .25s ease; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-size: .91rem; font-weight: 500; cursor: pointer; transition: transform .3s var(--ease), background-color .3s ease, color .3s ease; }
.button:active, button:active { transform: translateY(1px) scale(.985); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: #343432; transform: translateY(-2px); }
.button-light { background: var(--white); color: var(--ink); border-color: rgba(23, 23, 22, .14); }
.button-light:hover { background: #f0f0ec; transform: translateY(-2px); }
.button-secondary { background: rgba(255, 255, 255, .58); color: var(--ink); border-color: rgba(23, 23, 22, .28); }
.button-secondary:hover { background: var(--white); border-color: rgba(23, 23, 22, .5); transform: translateY(-2px); }
.text-link { display: inline-flex; align-items: center; gap: 7px; font-size: .94rem; font-weight: 500; }
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(3px, -3px); }

.hero { position: relative; width: min(1440px, calc(100% - 56px)); display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding-block: clamp(64px, 7vh, 76px) 36px; text-align: center; }
.hero-copy { position: relative; z-index: 2; width: min(100%, 880px); margin-inline: auto; }
.hero-copy .eyebrow { color: var(--ink); font-size: 1.08rem; letter-spacing: .04em; text-transform: none; }
.hero h1 { margin: 0; color: var(--ink); font-size: clamp(3.7rem, 7vw, 5.75rem); line-height: 1.08; letter-spacing: .008em; font-weight: 600; }
.trust-word { position: relative; display: inline-block; white-space: nowrap; }
.trust-word > span { display: inline-block; color: var(--ink); transition: color .34s var(--ease), transform .34s var(--ease); transition-delay: var(--letter-delay); }
.trust-word::after {
  content: "";
  position: absolute;
  left: 1%;
  right: 1%;
  bottom: -.09em;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5c83d9 0%, #69a46e 33%, #d6a421 66%, #f16f50 100%);
  transform-origin: left center;
  transition: transform .45s var(--ease);
}
.trust-word:hover::after { transform: scaleX(1.04); }
.trust-word:hover > span { color: var(--letter-color); transform: translateY(-.025em); }
.word-blue { --word-color: #5c83d9; --line-angle: 0deg; --line-delay: .75s; }
.word-coral { --word-color: #f16f50; --line-angle: 0deg; --line-delay: .95s; }
.word-green { --word-color: #69a46e; --line-angle: 0deg; --line-delay: 1.15s; }
.word-yellow { --word-color: #d6a421; --line-angle: 0deg; --line-delay: 1.35s; }
.hero-intro { max-width: 720px; margin: 30px auto 0; color: var(--ink); font-size: clamp(1.06rem, 1.6vw, 1.28rem); line-height: 1.55; letter-spacing: 0; font-weight: 500; }
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 28px; margin-top: 34px; }
.hero-enter { animation: hero-rise .85s var(--ease) both; animation-delay: var(--delay); }
@keyframes hero-rise { from { opacity: 0; transform: translateY(28px); } }

.hero-product-preview {
  position: relative;
  z-index: 4;
  width: min(1180px, 100%);
  margin-top: 78px;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 22, .14);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 30px 74px rgba(45, 44, 39, .13);
  text-align: left;
}
.preview-card-head {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 0 30px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.preview-card-head > div:first-child { display: flex; align-items: baseline; gap: 14px; }
.preview-card-head strong { font-size: 1rem; letter-spacing: -.02em; }
.preview-card-head span { color: var(--muted); font-size: .76rem; }
.preview-live {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: .74rem;
}
.preview-live i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(80, 120, 88, .12); }
.preview-interface { min-height: 540px; display: grid; grid-template-columns: minmax(340px, .76fr) minmax(520px, 1.24fr); }
.preview-story { display: flex; flex-direction: column; padding: clamp(34px, 4vw, 54px); background: #f0f0eb; }
.preview-story-meta, .preview-question-index, .preview-choice-foot { display: flex; justify-content: space-between; gap: 18px; color: #777771; font-size: .69rem; letter-spacing: .09em; font-weight: 500; text-transform: uppercase; }
.preview-kicker { margin: auto 0 16px; color: var(--blue); font-size: .74rem; letter-spacing: .11em; font-weight: 500; text-transform: uppercase; }
.preview-story h2 { max-width: 470px; margin: 0; font-size: clamp(2.35rem, 3.35vw, 3.75rem); line-height: 1.05; letter-spacing: .004em; }
.preview-story > p:not(.preview-kicker) { max-width: 490px; margin: 24px 0 30px; color: #555550; font-size: .96rem; line-height: 1.58; }
.preview-context-link { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); font-size: .84rem; font-weight: 500; }
.preview-context-link span { font-size: 1.1rem; transition: transform .3s var(--ease); }
.preview-context-link:hover span { transform: translateX(5px); }
.preview-choice { display: flex; flex-direction: column; padding: clamp(38px, 5vw, 62px); background: var(--ink); color: var(--white); }
.preview-question-index { color: #989892; }
.preview-choice h3 { max-width: 660px; margin: 54px 0 34px; font-size: clamp(2.45rem, 4vw, 4.45rem); line-height: 1.05; letter-spacing: .004em; font-weight: 600; }
.preview-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.preview-options a {
  min-height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
  border: 1px solid #4b4b47;
  border-radius: 17px;
  background: #272725;
  color: var(--white);
  text-align: left;
  transition: transform .3s var(--ease), background-color .3s ease, border-color .3s ease, color .3s ease;
}
.preview-options a i { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-style: normal; font-size: .7rem; }
.preview-options a span { max-width: 260px; font-size: 1rem; line-height: 1.32; }
.preview-options a:hover { transform: translateY(-5px) rotate(-.4deg); background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.preview-options a:last-child:hover { transform: translateY(-5px) rotate(.4deg); background: #5c83d9; border-color: #5c83d9; color: var(--ink); }
.preview-choice-foot { margin-top: auto; padding-top: 28px; color: #989892; }

.hero-note { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; text-align: center; box-shadow: 0 16px 34px rgba(55, 51, 36, .12); }
.hero-note {
  position: absolute;
  z-index: 3;
  isolation: isolate;
  width: 188px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px 24px;
  background: var(--note-color);
  border: 1px solid rgba(53, 45, 25, .08);
  box-shadow: 0 2px 2px rgba(55, 51, 36, .08), 0 20px 38px rgba(55, 51, 36, .17);
  text-align: left;
  font-size: .94rem;
  line-height: 1.18;
  font-weight: 400;
  opacity: 0;
  animation: note-story 11s var(--ease) infinite;
  animation-delay: var(--note-delay);
}
.hero-note mark { padding: 0; background: transparent; color: var(--ink); font: inherit; font-size: 1rem; line-height: 1.08; font-weight: 500; }
.hero-note span { max-width: 145px; color: rgba(23, 23, 22, .76); }
.note-yellow { --note-color: var(--yellow); left: 2%; top: 16%; }
.note-blue { --note-color: #5c83d9; right: 2%; top: 18%; color: var(--ink); }
.note-coral { --note-color: #f16f50; left: 10%; bottom: 1%; }
@keyframes note-story {
  0%, 100% { opacity: 0; transform: translate3d(0, 80px, 0) rotate(calc(var(--note-rotate) + 7deg)) scale(.86); }
  12%, 64% { opacity: 1; transform: translate3d(0, 0, 0) rotate(var(--note-rotate)) scale(1); }
  76% { opacity: 0; transform: translate3d(22px, -54px, 0) rotate(calc(var(--note-rotate) - 5deg)) scale(.96); }
}
@keyframes note-waddle {
  from { transform: translate3d(-7px, 0, 0) rotate(calc(var(--note-rotate) - 3deg)); }
  to { transform: translate3d(7px, 0, 0) rotate(calc(var(--note-rotate) + 3deg)); }
}

.section-intro, .products-intro { max-width: 920px; margin: 0 auto 72px; text-align: center; }
.section-intro h2, .products-intro h2 { margin: 0; font-size: clamp(3rem, 5.2vw, 5.7rem); line-height: 1.04; letter-spacing: .004em; font-weight: 600; }
.section-intro > p:last-child, .products-intro > p:last-child { max-width: 650px; margin: 24px auto 0; color: var(--muted); font-size: 1.1rem; }
.section-word { position: relative; display: inline; color: var(--word-color); white-space: nowrap; }
.accent-word { color: var(--word-color); }
.section-word::after { content: ""; position: absolute; left: 0; right: 0; bottom: -.05em; height: 2px; background: currentColor; transform: scaleX(0) rotate(var(--line-angle)); transform-origin: left; transition: transform .8s .55s var(--ease); }
.motion-section.in-view .section-word::after { transform: scaleX(1) rotate(var(--line-angle)); }

.game-reset { padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; font-size: .8rem; font-weight: 500; cursor: pointer; }

.sanctum-journey {
  --journey-card-scale: 1;
  --journey-card-x: 0%;
  --journey-card-y: 0px;
  --journey-copy-opacity: 0;
  position: relative;
  min-height: 360dvh;
  background-color: var(--white);
  background-image: linear-gradient(to bottom, var(--paper) 0 clamp(420px, 65dvh, 720px), var(--white) clamp(420px, 65dvh, 720px) 100%);
}
.journey-stage { position: sticky; top: 76px; height: calc(100dvh - 76px); overflow: hidden; }
.journey-copy {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;
  width: 29%;
  opacity: var(--journey-copy-opacity);
  transform: translate3d(0, calc(-50% + 22px), 0);
  transition: opacity .18s ease;
}
.journey-step { display: grid; grid-template-columns: 32px 1fr; gap: 18px; padding: 26px 0; border-top: 1px solid var(--line); }
.journey-step:last-child { border-bottom: 1px solid var(--line); }
.journey-step > span { padding-top: 6px; color: var(--muted); font-size: .68rem; letter-spacing: .1em; font-weight: 500; }
.journey-step h2 { margin: 0; font-size: clamp(1.35rem, 1.7vw, 1.75rem); line-height: 1.14; letter-spacing: .008em; font-weight: 500; transition: color .35s ease; }
.journey-step-detail { grid-column: 2; max-height: 0; overflow: hidden; opacity: 0; transform: translate3d(0, 12px, 0); transition: max-height .55s var(--ease), opacity .35s ease, transform .55s var(--ease), margin-top .55s var(--ease); }
.journey-step.active .journey-step-detail { max-height: 220px; margin-top: 20px; opacity: 1; transform: none; }
.journey-step-detail strong { display: block; font-size: 1rem; line-height: 1.42; letter-spacing: .008em; font-weight: 500; }
.journey-step-detail p { margin: 14px 0 0; color: var(--muted); font-size: .94rem; line-height: 1.62; }
.journey-card-wrap {
  position: absolute;
  z-index: 1;
  inset: clamp(26px, 4vh, 48px) 0 auto 0;
  transform: translate3d(var(--journey-card-x), var(--journey-card-y), 0) scale(var(--journey-card-scale));
  transform-origin: center;
  will-change: transform;
}
.journey-question { width: min(1180px, 100%); margin: 0 auto; border-radius: 28px; box-shadow: 0 30px 74px rgba(45, 44, 39, .12); }
.journey-question .preview-interface { min-height: 620px; grid-template-columns: minmax(340px, .76fr) minmax(520px, 1.24fr); }
.journey-question:not([data-journey-card="intro"]) .preview-choice h3 { max-width: 430px; font-size: clamp(2.5rem, 3.05vw, 3.2rem); }
.preview-story, .preview-choice { transition: opacity .45s ease, filter .45s ease; }
.journey-question[data-journey-card="story"] .preview-choice-body { opacity: .3; }
.journey-question[data-journey-card="choice"] .preview-story { opacity: .32; filter: grayscale(.55); }
.preview-choice { position: relative; }
.preview-choice-body { display: flex; flex: 1; flex-direction: column; opacity: 1; transform: none; transition: opacity .3s ease, transform .45s var(--ease); }
.preview-choice-body .preview-choice-foot { margin-top: auto; }
.preview-impact {
  position: absolute;
  inset: 102px clamp(38px, 5vw, 62px) 42px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 24px, 0);
  transition: opacity .45s ease, transform .55s var(--ease);
}
.preview-impact > span { color: #989892; font-size: .69rem; letter-spacing: .1em; text-transform: uppercase; }
.preview-impact > strong { max-width: 560px; margin-top: 26px; font-size: clamp(2.25rem, 3.6vw, 4rem); line-height: 1.08; letter-spacing: .008em; font-weight: 600; }
.journey-question:not([data-journey-card="intro"]) .preview-impact > strong { max-width: 420px; font-size: clamp(2.4rem, 3vw, 3.2rem); }
.impact-signal { position: relative; height: 13px; margin-top: auto; overflow: hidden; border-radius: 999px; background: #3f3f3b; }
.impact-signal i { display: block; width: 72%; height: 100%; border-radius: inherit; background: var(--yellow); transform-origin: left; }
.impact-signal, .impact-labels, .preview-impact p { width: min(100%, 360px); }
.impact-labels { display: flex; justify-content: space-between; margin-top: 12px; color: #aaa9a3; font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; }
.preview-impact p { margin: 28px 0 0; padding-top: 22px; border-top: 1px solid #41413e; color: #c4c4be; font-size: .94rem; line-height: 1.58; }
.journey-question[data-journey-card="impact"] .preview-story { opacity: .28; filter: grayscale(.6); }
.journey-question[data-journey-card="impact"] .preview-choice-body { opacity: 0; pointer-events: none; transform: translate3d(0, -18px, 0); transition: opacity .3s ease, transform .45s var(--ease); }
.journey-question[data-journey-card="impact"] .preview-impact { opacity: 1; pointer-events: auto; transform: none; }

.games { position: relative; min-height: 100dvh; display: flex; align-items: center; overflow: hidden; padding-block: clamp(38px, 5vh, 64px); background: var(--ink); color: var(--white); }
.games::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, transparent 0 62%, rgba(239, 200, 77, .045) 62% 63%, transparent 63% 100%); }
.games-shell { position: relative; z-index: 2; }
.games-copy { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr); gap: 72px; align-items: end; margin-bottom: clamp(26px, 3.5vh, 42px); }
.games-copy-main .eyebrow { margin-bottom: 14px; }
.games-copy h2 { max-width: 720px; margin: 0; font-size: clamp(3rem, 4.2vw, 4.75rem); line-height: 1.02; letter-spacing: .006em; font-weight: 500; }
.games-copy-aside p { max-width: 470px; margin: 0 0 22px; color: #b3b3ad; font-size: 1rem; line-height: 1.5; }
.game-studio { height: clamp(540px, 60dvh, 640px); display: grid; grid-template-columns: minmax(280px, .58fr) minmax(0, 1.42fr); overflow: hidden; border: 1px solid #3b3b38; border-radius: 32px; background: #242422; box-shadow: 0 36px 90px rgba(0, 0, 0, .22); }
.game-studio-rail { display: flex; flex-direction: column; padding: 30px; background: #191918; border-right: 1px solid #3b3b38; }
.game-studio-label { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 22px; color: #8f8f89; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.game-studio-label span:last-child { color: var(--yellow); }
.game-method { display: flex; flex: 1; flex-direction: column; border-top: 1px solid #3b3b38; }
.game-method button { position: relative; flex: 1; display: grid; grid-template-columns: 38px 1fr; gap: 16px; align-content: center; width: 100%; padding: 26px 6px 26px 0; border: 0; border-bottom: 1px solid #3b3b38; background: transparent; color: #85857f; text-align: left; cursor: pointer; transition: color .35s ease, transform .35s var(--ease); }
.game-method button:active { transform: scale(.985); }
.game-method button > span { padding-top: 4px; font-size: .7rem; letter-spacing: .12em; font-weight: 500; }
.game-method button > div { display: flex; flex-direction: column; gap: 9px; }
.game-method strong { color: inherit; font-size: 1.2rem; line-height: 1.18; letter-spacing: .012em; font-weight: 500; }
.game-method small { max-width: 245px; color: #787872; font-size: .86rem; line-height: 1.45; }
.game-method button > i { position: absolute; top: 50%; right: 0; width: 7px; height: 7px; border-radius: 50%; background: #4b4b47; transform: translate3d(0, -50%, 0) scale(.7); transition: background-color .35s ease, transform .45s var(--ease); }
.game-method button[aria-selected="true"] { color: var(--white); }
.game-method button[aria-selected="true"] > span { color: var(--yellow); }
.game-method button[aria-selected="true"] small { color: #b7b7b0; }
.game-method button[aria-selected="true"] > i { background: var(--yellow); transform: translate3d(0, -50%, 0) scale(1); }
.game-rail-foot { display: flex; justify-content: space-between; gap: 14px; padding-top: 24px; color: #8f8f89; font-size: .72rem; }
.game-rail-foot strong { color: #d3d3ce; font-weight: 500; }
.game-board { position: relative; min-width: 0; display: flex; flex-direction: column; padding: 24px 32px 18px; background: #f7f7f4; color: var(--ink); }
.game-board-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.game-board-head > div { display: flex; flex-direction: column; gap: 3px; }
.game-board-head > div:last-child { align-items: flex-end; color: var(--muted); font-size: .69rem; letter-spacing: .09em; text-transform: uppercase; }
.game-board-head strong { font-size: 1.03rem; font-weight: 500; }
.game-board-head > div:first-child span { color: var(--muted); font-size: .82rem; }
.game-panel { flex: 1; animation: game-panel-in .55s var(--ease) both; }
.game-panel[hidden] { display: none; }
@keyframes game-panel-in { from { opacity: 0; transform: translate3d(0, 18px, 0); } to { opacity: 1; transform: none; } }
.game-question-label { display: flex; justify-content: space-between; gap: 18px; margin-top: 18px; color: var(--muted); font-size: .69rem; letter-spacing: .11em; font-weight: 500; text-transform: uppercase; }
.game-panel > h3 { max-width: 670px; margin: 12px 0 18px; font-size: clamp(1.85rem, 2.6vw, 2.8rem); line-height: 1.04; letter-spacing: .006em; font-weight: 500; }
.game-options { display: grid; grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr); gap: 12px; align-items: center; }
.game-options button { position: relative; isolation: isolate; min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; border: 1px solid #d6d6cf; border-radius: 18px; background: var(--white); color: var(--ink); text-align: left; cursor: pointer; box-shadow: 5px 5px 0 #e3e3dc; transition: transform .35s var(--ease), background-color .35s ease, border-color .35s ease, box-shadow .35s ease; }
.game-options button:hover { transform: translate3d(-2px, -5px, 0); background: #fff9df; border-color: #d9bd55; box-shadow: 8px 10px 0 #e7d985; }
.game-options button:active { transform: translate3d(0, -1px, 0) scale(.985); }
.game-options button.selected { background: #fff6cf; border-color: #caaa35; box-shadow: 5px 7px 0 #e7d985; transform: translate3d(0, -3px, 0); }
.game-option-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; width: 100%; color: var(--muted); font-size: .68rem; letter-spacing: .1em; font-weight: 500; text-transform: uppercase; }
.game-option-head i { font-style: normal; letter-spacing: .04em; }
.game-countries { display: flex; flex-direction: column; width: 100%; }
.game-countries > span { display: flex; align-items: center; gap: 11px; min-height: 42px; border-bottom: 1px solid var(--line); font-size: .93rem; }
.game-countries > span:last-child { border-bottom: 0; }
.game-countries i { width: 30px; height: 20px; display: grid; place-items: center; overflow: hidden; border-radius: 3px; background: #e7e7e1; }
.game-countries img { width: 100%; height: 100%; object-fit: cover; }
.game-options button > strong { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; font-size: 1.02rem; line-height: 1.2; font-weight: 500; }
.game-options button > strong i { font-style: normal; transition: transform .3s var(--ease); }
.game-options button:hover > strong i { transform: translate3d(4px, 0, 0); }
.game-versus { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); font-size: .62rem; letter-spacing: .08em; }
.game-math-panel > h3 { font-size: clamp(1.75rem, 2.35vw, 2.55rem); }
.game-math-layout { display: grid; grid-template-columns: minmax(220px, .7fr) minmax(300px, 1.3fr); gap: 28px; align-items: stretch; margin-top: 18px; }
.game-selected-basket { min-height: 170px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; border-radius: 18px; background: var(--ink); color: var(--white); }
.game-selected-basket > span { color: #999992; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.game-selected-basket > strong { max-width: 210px; font-size: 1.55rem; line-height: 1.08; font-weight: 500; }
.game-selected-basket > div { display: flex; gap: 8px; }
.game-selected-basket i { width: 34px; height: 24px; display: grid; place-items: center; overflow: hidden; border-radius: 4px; background: #343431; }
.game-selected-basket img { width: 100%; height: 100%; object-fit: cover; }
.game-weight-list { display: flex; flex-direction: column; justify-content: center; border-top: 1px solid var(--line); }
.game-weight-list > div { display: grid; grid-template-columns: 120px minmax(80px, 1fr) 78px; gap: 14px; align-items: center; min-height: 52px; border-bottom: 1px solid var(--line); }
.game-weight-list span, .game-weight-list strong { font-size: .75rem; font-weight: 500; }
.game-weight-list strong { color: var(--muted); text-align: right; }
.game-weight-list i { height: 5px; overflow: hidden; border-radius: 99px; background: #deded8; }
.game-weight-list b { display: block; width: 78%; height: 100%; border-radius: inherit; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .85s var(--ease); }
.game-weight-list > div:nth-child(2) b { width: 62%; transition-delay: .12s; }
.game-weight-list > div:nth-child(3) b { width: 39%; transition-delay: .24s; }
.game-board[data-game-stage="math"] .game-weight-list b { transform: scaleX(1); }
.game-math-summary { display: grid; grid-template-columns: 124px 1fr; gap: 18px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.game-math-summary span { color: var(--muted); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.game-math-summary p { max-width: 510px; margin: 0; color: #5d5d58; font-size: .91rem; line-height: 1.5; }
.game-panel-action { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; padding: 0 0 5px; border: 0; border-bottom: 1px solid var(--yellow); background: transparent; color: var(--ink); font: inherit; font-size: .87rem; font-weight: 500; cursor: pointer; transition: color .3s ease, border-color .3s ease; }
.game-panel-action:hover { color: #9b7800; border-color: #9b7800; }
.game-panel-action i { font-style: normal; transition: transform .3s var(--ease); }
.game-panel-action:hover i { transform: translate3d(4px, 0, 0); }
.game-panel-action:active { transform: translate3d(0, 1px, 0); }
.game-perspective-sheet { min-height: 280px; display: flex; flex-direction: column; justify-content: space-between; margin-top: 18px; padding: 28px; border-radius: 20px; background: var(--ink); color: var(--white); }
.game-perspective-sheet > span { color: var(--yellow); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.game-perspective-sheet > strong { max-width: 660px; font-size: clamp(1.8rem, 2.65vw, 2.8rem); line-height: 1.05; letter-spacing: .01em; font-weight: 500; }
.game-perspective-sheet > p { max-width: 560px; margin: 0; color: #aaa9a3; font-size: .92rem; line-height: 1.55; }
.game-perspective-notes { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 18px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.game-perspective-notes > div { min-height: 64px; display: flex; flex-direction: column; justify-content: center; gap: 7px; padding: 10px 18px; border-left: 1px solid var(--line); }
.game-perspective-notes > div:first-child { padding-left: 0; border-left: 0; }
.game-perspective-notes span { color: var(--muted); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.game-perspective-notes strong { font-size: .86rem; font-weight: 500; }
.game-board-progress { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.game-board-progress i { height: 3px; overflow: hidden; border-radius: 99px; background: #d9d9d2; }
.game-board-progress i::after { content: ""; display: block; width: 100%; height: 100%; border-radius: inherit; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.game-board-progress i.active::after, .game-board-progress i.complete::after { transform: scaleX(1); }

.constitution { position: relative; overflow: hidden; background: #f2f2f2; }
.constitution::before { content: "CONSTITUTION"; position: absolute; top: 445px; left: 50%; pointer-events: none; color: rgba(23, 23, 22, .025); font-size: clamp(9rem, 18vw, 18rem); line-height: .8; letter-spacing: -.055em; font-weight: 600; white-space: nowrap; transform: translateX(-50%); }
.constitution-shell { position: relative; }
.constitution-intro { max-width: 900px; margin: 0 auto 64px; text-align: center; }
.constitution-intro h2 { max-width: 900px; margin: 0 auto; font-size: clamp(3.7rem, 5.7vw, 6.5rem); line-height: .96; letter-spacing: .004em; font-weight: 600; }
.constitution-intro > div:last-child { margin-top: 26px; }
.constitution-intro > div:last-child p { max-width: 610px; margin: 0 auto 26px; color: #51514d; font-size: 1.05rem; line-height: 1.58; }
.constitution-scene { position: relative; min-height: 780px; padding: 0 74px 74px; }
.constitution-paper-stack { min-width: 0; }
.constitution-selector-label { margin: 0 0 12px; color: #6f6f69; font-size: .72rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }
.constitution-tabs { position: relative; z-index: 4; width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0 0 28px; border-top: 1px solid rgba(23, 23, 22, .34); border-bottom: 1px solid rgba(23, 23, 22, .34); background: rgba(255, 255, 255, .24); }
.constitution-tabs button { min-width: 0; display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 12px; align-items: center; padding: 17px 20px; border: 0; border-right: 1px solid rgba(23, 23, 22, .17); border-radius: 0; background: transparent; color: #777772; text-align: left; cursor: pointer; transition: color .3s ease, background-color .3s ease; }
.constitution-tabs button:last-child { border-right: 0; }
.constitution-tabs button:hover { color: var(--ink); background: rgba(255, 254, 250, .6); }
.constitution-tabs button[aria-selected="true"] { background: var(--ink); color: #fffefa; }
.constitution-tabs button > span { font-size: .68rem; letter-spacing: .09em; }
.constitution-tabs button > div { min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.constitution-tabs small { display: block; color: inherit; font-size: .57rem; letter-spacing: .1em; text-transform: uppercase; opacity: .62; }
.constitution-tabs strong { overflow: hidden; font-size: .83rem; line-height: 1.2; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.constitution-document { position: relative; z-index: 3; min-width: 0; min-height: 665px; display: flex; flex-direction: column; padding: 34px 40px 30px; border: 1px solid rgba(23, 23, 22, .38); border-radius: 3px; background-color: #fffefa; color: var(--ink); box-shadow: 0 30px 65px rgba(23, 23, 22, .13), 10px 12px 0 rgba(255, 255, 255, .52); }
.constitution-document::before { content: ""; position: absolute; inset: 10px; pointer-events: none; border: 1px solid rgba(23, 23, 22, .08); }
.constitution-document > header { position: relative; display: flex; justify-content: space-between; gap: 30px; padding: 0 4px 23px; border-bottom: 3px double var(--ink); }
.constitution-masthead { display: flex; align-items: center; gap: 12px; }
.constitution-masthead .brand-mark { width: 29px; height: 29px; }
.constitution-document > header > div { display: flex; flex-direction: column; gap: 3px; }
.constitution-masthead > div { display: flex; flex-direction: column; gap: 1px; }
.constitution-edition { align-items: flex-end; text-align: right; }
.constitution-document > header span { color: var(--muted); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }
.constitution-masthead > div > span { color: var(--ink); font-size: .84rem; letter-spacing: -.02em; font-weight: 500; text-transform: none; }
.constitution-document > header strong { font-size: .72rem; font-weight: 500; }
.constitution-paper-body { flex: 1; display: grid; grid-template-columns: 122px minmax(0, 1fr); gap: 38px; padding: 48px 4px 38px; }
.constitution-paper-body > aside { display: flex; flex-direction: column; gap: 5px; padding: 7px 26px 0 0; border-right: 1px solid #d9d8d0; color: var(--muted); }
.constitution-paper-body > aside span { font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }
.constitution-paper-body > aside strong { color: var(--ink); font-size: .76rem; line-height: 1.3; font-weight: 500; }
.constitution-paper-body > aside i { width: 18px; height: 2px; margin-top: 14px; background: var(--blue); }
.constitution-paper-body > div { position: relative; }
.constitution-article-number { position: absolute; top: -12px; right: 0; color: #dedfd7; font-size: clamp(5.5rem, 8vw, 8.2rem); line-height: .8; letter-spacing: -.06em; font-weight: 500; }
.constitution-paper-body > div > p:first-of-type { position: relative; margin: 5px 0 15px; color: var(--blue); font-size: .69rem; letter-spacing: .11em; font-weight: 500; text-transform: uppercase; }
.constitution-paper-body h3 { position: relative; max-width: 600px; margin: 0; padding-right: 90px; font-size: clamp(3rem, 4.4vw, 4.9rem); line-height: .94; letter-spacing: .002em; font-weight: 500; }
.constitution-statement { position: relative; max-width: 660px; margin: 32px 0 0; color: #30312e; font-size: clamp(1.2rem, 1.7vw, 1.48rem); line-height: 1.5; }
.constitution-rationale { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 24px; max-width: 680px; margin-top: 38px; padding-top: 23px; border-top: 1px solid #d9d8d0; }
.constitution-rationale span { color: var(--muted); font-size: .64rem; line-height: 1.4; letter-spacing: .09em; text-transform: uppercase; }
.constitution-rationale p { margin: -3px 0 0; color: var(--muted); font-size: .88rem; line-height: 1.5; }
.constitution-document > footer { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 36px; align-items: end; padding: 24px 4px 0; border-top: 3px double var(--ink); }
.constitution-signal { display: grid; grid-template-columns: auto minmax(110px, 1fr) auto; gap: 18px; align-items: center; }
.constitution-signal > div:first-child { display: flex; flex-direction: column; gap: 3px; }
.constitution-signal span, .constitution-signal small { color: var(--muted); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.constitution-signal strong { font-size: .9rem; font-weight: 500; }
.constitution-signal-track { height: 4px; overflow: hidden; background: #dfdfd7; }
.constitution-signal-track i { display: block; width: 86%; height: 100%; background: var(--blue); transform-origin: left; transition: transform .65s var(--ease), width .65s var(--ease); }
.constitution-document > footer > a { display: inline-flex; align-items: center; gap: 11px; padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: .82rem; font-weight: 500; }
.constitution-document > footer > a span { transition: transform .3s var(--ease); }
.constitution-document > footer > a:hover span { transform: translate3d(3px, -3px, 0); }
.constitution-document.is-switching .constitution-paper-body > div, .constitution-document.is-switching .constitution-paper-body > aside, .constitution-document.is-switching > footer { opacity: 0; transform: translate3d(0, 12px, 0); }
.constitution-paper-body > div, .constitution-paper-body > aside, .constitution-document > footer { transition: opacity .28s ease, transform .45s var(--ease); }
.constitution-notes { position: absolute; inset: 88px 0 0; z-index: 5; pointer-events: none; }
.constitution-sticky { aspect-ratio: 1; display: flex; flex-direction: column; justify-content: space-between; margin: 0; padding: 28px 25px; border: 1px solid rgba(53, 45, 25, .08); color: var(--ink); box-shadow: 0 20px 35px rgba(23, 23, 22, .12); transform: rotate(var(--sticky-rotate)); transform-origin: center; transition: box-shadow .35s ease, transform .45s var(--ease); }
.constitution-sticky { position: absolute; width: 174px; pointer-events: auto; }
.constitution-sticky:nth-child(1) { top: 70px; left: -34px; }
.constitution-sticky:nth-child(2) { top: 238px; right: -40px; }
.constitution-sticky:nth-child(3) { bottom: 4px; left: -4px; }
.constitution-sticky:hover { box-shadow: 0 26px 44px rgba(23, 23, 22, .17); animation: note-waddle .62s var(--ease) both; }
@keyframes note-waddle { 0%, 100% { transform: rotate(var(--sticky-rotate)) translate3d(0, 0, 0); } 25% { transform: rotate(calc(var(--sticky-rotate) - 3deg)) translate3d(-2px, -4px, 0); } 55% { transform: rotate(calc(var(--sticky-rotate) + 3deg)) translate3d(2px, -5px, 0); } 78% { transform: rotate(calc(var(--sticky-rotate) - 1deg)) translate3d(-1px, -3px, 0); } }
.constitution-sticky span { font-size: .69rem; letter-spacing: .09em; text-transform: uppercase; }
.constitution-sticky p { max-width: 165px; margin: 0; font-size: 1.3rem; line-height: 1.12; font-weight: 500; }
.sticky-yellow { --sticky-rotate: 3deg; background: #f4d151; }
.sticky-blue { --sticky-rotate: -2.5deg; background: #6488dc; color: #121a2e; }
.sticky-coral { --sticky-rotate: 2deg; background: #ef8a75; }

.why-sanctity { overflow: hidden; background: #fcfcfc; }
.why-heading { max-width: 1160px; }
.why-heading h2 { max-width: 1140px; margin: 0; font-size: clamp(4.25rem, 7.15vw, 7.7rem); line-height: .94; letter-spacing: .006em; font-weight: 500; }
.why-answers { display: grid; grid-template-columns: 1.08fr 1fr .92fr; margin-top: 92px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-answers article { min-height: 290px; padding: 34px 46px 42px 0; }
.why-answers article + article { padding-left: 46px; border-left: 1px solid var(--line); }
.why-answers article:last-child { padding-right: 0; }
.why-answers article > span { color: #8a8a84; font-size: .67rem; letter-spacing: .11em; }
.why-answers h3 { max-width: 330px; margin: 22px 0 18px; font-size: clamp(1.45rem, 2vw, 2rem); line-height: 1.13; letter-spacing: .006em; font-weight: 500; }
.why-answers p { max-width: 345px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.55; }

.products { overflow: hidden; background: #fcfcfc; }
.products-intro { margin-bottom: 62px; }
.product-world { position: relative; min-height: 610px; display: block; margin-top: 28px; padding: 30px clamp(28px, 4vw, 54px) clamp(34px, 4.8vw, 62px); overflow: hidden; border-radius: 30px; color: #f8f8f5; isolation: isolate; transition: transform .45s var(--ease); }
.product-world:hover { transform: translate3d(0, -5px, 0); }
.product-world::before, .product-world::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.product-human { background: #090a0a; }
.product-human::before { background-image: radial-gradient(circle at 50% 50%, rgba(75, 123, 232, .95) 0 5px, transparent 6px), linear-gradient(45deg, transparent 46%, rgba(255, 255, 255, .1) 47% 53%, transparent 54%); background-position: 4% 19%, 4% 19%; background-size: 148px 148px; opacity: .48; transform: rotate(-8deg) scale(1.16); }
.product-human::after { inset: 0; background: radial-gradient(circle at 63% 48%, rgba(9, 10, 10, .18), #090a0a 73%); }
.product-model { background: #1a1711; }
.product-model::before { background-image: repeating-linear-gradient(0deg, transparent 0 19px, rgba(198, 184, 152, .075) 20px), repeating-linear-gradient(90deg, transparent 0 19px, rgba(198, 184, 152, .075) 20px), linear-gradient(135deg, transparent 45%, rgba(220, 211, 190, .11) 46% 49%, transparent 50%); background-size: auto, auto, 38px 38px; opacity: .8; }
.product-model::after { background: radial-gradient(circle at 65% 48%, rgba(26, 23, 17, .08), #1a1711 78%); }
.product-world-head { position: relative; z-index: 2; display: grid; grid-template-columns: 44px 1fr auto; gap: 16px; align-items: center; padding-bottom: 24px; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.product-world-head span { color: rgba(255, 255, 255, .48); font-size: .68rem; letter-spacing: .12em; }
.product-world-head strong { font-size: 1rem; font-weight: 500; }
.product-world-head i { font-size: .8rem; font-style: normal; transition: transform .3s var(--ease); }
.product-world:hover .product-world-head i { transform: translate3d(3px, -3px, 0); }
.product-world-body { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(330px, .78fr) minmax(500px, 1.22fr); gap: clamp(50px, 7vw, 104px); align-items: center; min-height: 500px; padding-top: 46px; }
.product-copy > span { color: rgba(255, 255, 255, .56); font-size: .71rem; letter-spacing: .12em; font-weight: 500; text-transform: uppercase; }
.product-copy h3 { max-width: 520px; margin: 20px 0 24px; font-size: clamp(3rem, 4.7vw, 5.25rem); line-height: .96; letter-spacing: .002em; font-weight: 500; }
.product-copy p { max-width: 490px; margin: 0; color: rgba(255, 255, 255, .65); font-size: 1rem; line-height: 1.58; }
.hc-console { width: 100%; max-width: 590px; justify-self: end; padding: 22px; border: 1px solid rgba(255, 255, 255, .17); border-radius: 24px; background: rgba(18, 19, 20, .82); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07); backdrop-filter: blur(16px); }
.hc-console-head, .instrument-head { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .55); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.hc-console-head i { display: flex; align-items: center; gap: 7px; color: #b8c7ee; font-style: normal; }
.hc-console-head i::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #4d7ee8; }
.hc-question, .hc-answer { display: grid; gap: 8px; margin-top: 18px; padding: 22px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 16px; background: #111213; }
.hc-answer { width: 88%; margin-left: auto; border-color: #4d7ee8; background: #4d7ee8; color: #0b1220; }
.hc-question span, .hc-answer span, .hc-question small, .hc-answer small { color: rgba(255, 255, 255, .48); font-size: .67rem; letter-spacing: .07em; text-transform: uppercase; }
.hc-answer span, .hc-answer small { color: rgba(11, 18, 32, .66); }
.hc-question strong, .hc-answer strong { font-size: 1.08rem; font-weight: 500; }
.model-instrument { width: 100%; max-width: 620px; justify-self: end; padding: 24px 28px 22px; border: 1px solid rgba(218, 206, 177, .28); background: rgba(23, 20, 15, .83); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045); }
.instrument-head i { color: rgba(255, 255, 255, .72); font-style: normal; }
.instrument-dial { position: relative; height: 330px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding-bottom: 24px; }
.instrument-dial svg { position: absolute; inset: 6px 0 auto; width: 100%; height: 250px; fill: none; }
.dial-arc, .dial-ticks { stroke: rgba(218, 206, 177, .46); stroke-width: 2; }
.dial-needle { stroke: #d4654d; stroke-width: 4; transform-origin: 210px 204px; transition: transform 1.1s .45s var(--ease); }
.model-instrument circle:first-of-type { fill: #d4654d; stroke: rgba(212, 101, 77, .25); stroke-width: 9; }
.model-instrument circle:last-of-type { fill: #1a1711; }
.instrument-dial strong { position: relative; font-size: 2.15rem; letter-spacing: .02em; font-weight: 500; }
.instrument-dial strong small { color: rgba(255, 255, 255, .46); font-size: .72rem; }
.instrument-dial > span { position: relative; margin-top: 4px; color: rgba(255, 255, 255, .42); font-size: .68rem; letter-spacing: .05em; }
.instrument-foot { display: grid; grid-template-columns: 1fr auto 1fr auto; gap: 14px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .48); font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; }
.instrument-foot b { color: #c8bf96; font-weight: 500; }

.stewardship { overflow: hidden; background: #f2f2f2; }
.stewardship-shell { display: grid; grid-template-columns: minmax(280px, .58fr) minmax(560px, 1.42fr); gap: 88px; align-items: start; }
.stewardship-copy { min-width: 0; }
.stewardship-copy h2 { max-width: 430px; margin: 0; font-size: clamp(3rem, 4.2vw, 4.65rem); line-height: 1.05; letter-spacing: .004em; }
.stewardship-list { min-width: 0; }
.stewardship-list details { border-top: 1px solid var(--line); }
.stewardship-list details:last-child { border-bottom: 1px solid var(--line); }
.stewardship-list summary { display: grid; grid-template-columns: 45px 1fr auto; align-items: center; padding: 26px 0; cursor: pointer; list-style: none; font-size: 1.13rem; font-weight: 500; }
.stewardship-list summary::-webkit-details-marker { display: none; }
.stewardship-list summary span { color: var(--muted); font-size: .69rem; }
.stewardship-list summary i { font-style: normal; font-size: 1.2rem; transition: transform .25s var(--ease); }
.stewardship-list details[open] summary i { transform: rotate(45deg); }
.stewardship-list details p { max-width: 650px; margin: -6px 0 26px 45px; color: var(--muted); }

.site-footer { background: var(--ink); color: var(--white); }
.footer-callout { position: relative; min-height: 620px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px; padding: 90px 28px; overflow: hidden; background-color: #fcfcfc; background-image: linear-gradient(rgba(23, 23, 22, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 23, 22, .035) 1px, transparent 1px); background-size: 28px 28px; color: var(--ink); text-align: center; }
.footer-callout::before, .footer-callout::after { content: ""; position: absolute; width: 170px; aspect-ratio: 1; background: rgba(23, 23, 22, .025); }
.footer-callout::before { top: 48px; left: 8%; }
.footer-callout::after { right: 9%; bottom: 38px; }
.footer-callout p { margin: 0; color: var(--muted); font-size: .74rem; letter-spacing: .13em; font-weight: 500; text-transform: uppercase; }
.footer-callout h2 { max-width: 980px; margin: 0; font-size: clamp(3.8rem, 6.8vw, 7.6rem); line-height: .96; letter-spacing: .004em; }
.footer-callout h2 span { color: #4d73d7; }
.footer-callout-actions { display: flex; align-items: center; gap: 14px; }
.footer-callout-actions i { margin-left: 7px; font-style: normal; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, .6fr); gap: 54px; padding-block: 70px; }
.footer-brand { color: var(--white); }
.footer-brand-block > p { max-width: 360px; margin: 22px 0 0; color: #a8a8a2; font-size: .91rem; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-column strong { margin-bottom: 9px; color: #85857f; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a { color: #d3d3cd; font-size: .88rem; }
.footer-column a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-block: 24px; border-top: 1px solid #3a3a37; color: #85857f; font-size: .73rem; }
.footer-bottom div { display: flex; gap: 20px; }

.js .motion-section [data-rise] { opacity: 0; filter: blur(5px); transform: translate3d(0, 72px, 0) rotate(.7deg) scale(.975); transition: opacity .95s var(--ease), transform 1.05s var(--ease), filter .8s ease; will-change: transform, opacity; }
.js .motion-section [data-rise="left"] { transform: translate3d(-84px, 40px, 0) rotate(-1.2deg) scale(.975); }
.js .motion-section [data-rise="right"] { transform: translate3d(84px, 40px, 0) rotate(1.2deg) scale(.975); }
.js .motion-section [data-rise]:nth-child(2) { transition-delay: .12s; }
.js .motion-section [data-rise]:nth-child(3) { transition-delay: .2s; }
.js .motion-section.in-view [data-rise] { opacity: 1; filter: none; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
.js .motion-section .constitution-tabs button { opacity: 0; transition: color .3s ease, background-color .3s ease, opacity .55s var(--ease), transform .4s var(--ease); }
.js .motion-section.in-view .constitution-tabs button { opacity: 1; }
.js .motion-section.in-view .constitution-tabs button:nth-child(1) { transition-delay: .36s; }
.js .motion-section.in-view .constitution-tabs button:nth-child(2) { transition-delay: .48s; }
.js .motion-section.in-view .constitution-tabs button:nth-child(3) { transition-delay: .6s; }
.js .products .hc-question, .js .products .hc-answer { opacity: 0; transform: translate3d(0, 20px, 0); transition: opacity .55s var(--ease), transform .7s var(--ease); }
.js .products.in-view .hc-question { opacity: 1; transform: none; transition-delay: .4s; }
.js .products.in-view .hc-answer { opacity: 1; transform: none; transition-delay: .72s; }
.js .products .dial-needle { transform: rotate(-34deg); }
.js .products.in-view .dial-needle { transform: rotate(0); }
@media (max-width: 1390px) {
  .hero-note { display: none; }
}

@media (max-width: 1100px) {
  .primary-nav { gap: 20px; }
  .journey-copy { width: 31%; }
  .journey-question .preview-interface { grid-template-columns: minmax(300px, .78fr) minmax(460px, 1.22fr); }
  .games-copy { gap: 48px; }
  .game-studio { grid-template-columns: 260px minmax(0, 1fr); }
  .game-studio-rail { padding: 24px; }
  .game-method small { font-size: .8rem; }
  .game-board { padding-inline: 28px; }
  .game-options { grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr); gap: 8px; }
  .game-versus { width: 32px; height: 32px; }
  .game-math-layout { grid-template-columns: 210px minmax(0, 1fr); gap: 24px; }
  .game-weight-list > div { grid-template-columns: 104px minmax(70px, 1fr) 72px; gap: 10px; }
  .constitution-scene { padding-inline: 56px; }
  .constitution-tabs button { min-width: 160px; }
  .constitution-document { padding-inline: 30px; }
  .constitution-paper-body { grid-template-columns: 105px minmax(0, 1fr); gap: 28px; }
  .constitution-sticky { width: 154px; padding: 23px 21px; }
  .constitution-sticky:nth-child(1) { left: -24px; }
  .constitution-sticky:nth-child(2) { right: -28px; }
  .constitution-sticky p { font-size: 1.12rem; }
  .why-heading h2 { font-size: clamp(4rem, 7vw, 6.25rem); }
  .why-answers article { padding-right: 32px; }
  .why-answers article + article { padding-left: 32px; }
  .product-world-body { grid-template-columns: minmax(280px, .85fr) minmax(390px, 1.15fr); gap: 44px; }
  .product-copy h3 { font-size: clamp(2.8rem, 4.8vw, 4.45rem); }
}

@media (min-width: 881px) and (max-height: 760px) {
  .games { padding-block: 28px; }
  .games-copy { margin-bottom: 20px; }
  .games-copy-main .eyebrow { margin-bottom: 9px; }
  .games-copy h2 { font-size: clamp(2.6rem, 3.5vw, 3.6rem); }
  .games-copy-aside p { margin-bottom: 16px; font-size: .94rem; line-height: 1.42; }
  .game-studio { height: 475px; min-height: 0; }
  .game-studio-rail { padding: 20px 24px; }
  .game-studio-label { padding-bottom: 14px; }
  .game-method button { padding-block: 14px; }
  .game-method small { font-size: .75rem; }
  .game-rail-foot { padding-top: 14px; }
  .game-board { padding: 18px 26px 14px; }
  .game-board-head { padding-bottom: 13px; }
  .game-question-label { margin-top: 12px; }
  .game-panel > h3 { margin: 9px 0 13px; font-size: 2rem; }
  .game-options button { min-height: 218px; padding: 16px 18px; }
  .game-countries > span { min-height: 34px; }
  .game-math-panel > h3 { font-size: 1.82rem; }
  .game-math-layout { margin-top: 12px; }
  .game-selected-basket { min-height: 142px; padding: 16px; }
  .game-weight-list > div { min-height: 44px; }
  .game-math-summary { margin-top: 12px; padding-top: 12px; }
  .game-math-summary p { font-size: .82rem; }
  .game-panel-action { margin-top: 12px; }
  .game-perspective-sheet { min-height: 225px; margin-top: 12px; padding: 22px; }
  .game-perspective-notes { margin-top: 12px; }
  .game-perspective-notes > div { min-height: 52px; }
  .game-board-progress { margin-top: 10px; }
}

@media (max-width: 880px) {
  .shell { width: min(100% - 32px, 740px); }
  .section { padding-block: 92px; }
  .site-header { height: 70px; }
  .nav-shell { width: calc(100% - 32px); grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .primary-nav { position: absolute; top: 69px; left: 0; right: 0; display: none; flex-direction: column; align-items: flex-start; gap: 4px; padding: 22px 16px 28px; background: var(--white); border-bottom: 1px solid var(--line); }
  .primary-nav.open { display: flex; }
  .primary-nav a { width: 100%; padding: 11px 0; font-size: 1rem; }
  .hero { min-height: auto; padding-block: 90px 80px; }
  .hero h1 { font-size: clamp(3.5rem, 11.5vw, 5.25rem); }
  .hero-subline { white-space: normal; }
  .hero-product-preview { border-radius: 24px; }
  .preview-interface { grid-template-columns: 1fr; }
  .preview-story { min-height: 470px; }
  .sanctum-journey { min-height: auto; padding-block: 20px 92px; }
  .journey-stage { position: relative; top: auto; height: auto; display: flex; flex-direction: column; overflow: visible; }
  .journey-copy { position: relative; top: auto; width: 100%; margin-top: 52px; opacity: 1; transform: none; }
  .journey-step-detail { max-height: none; margin-top: 16px; opacity: 1; transform: none; }
  .journey-card-wrap { position: relative; inset: auto; order: -1; margin-top: 0; transform: none; }
  .journey-question .preview-interface { grid-template-columns: 1fr; }
  .journey-question .preview-story { min-height: 470px; }
  .journey-question[data-journey-card] .preview-story, .journey-question[data-journey-card] .preview-choice { opacity: 1; filter: none; }
  .journey-question[data-journey-card="impact"] .preview-choice-body { opacity: 1; pointer-events: auto; transform: none; }
  .journey-question[data-journey-card="impact"] .preview-impact { display: none; }
  .games { min-height: 0; display: block; }
  .games-copy, .constitution-intro, .stewardship-shell { grid-template-columns: 1fr; }
  .games-copy { gap: 28px; margin-bottom: 56px; }
  .games-copy-aside p { max-width: 600px; }
  .game-studio { height: auto; grid-template-columns: 1fr; }
  .game-studio-rail { padding: 24px 26px; border-right: 0; border-bottom: 1px solid #3b3b38; }
  .game-method { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .game-method button { min-height: 150px; display: block; padding: 24px 20px; border-bottom: 0; border-left: 1px solid #3b3b38; }
  .game-method button:first-child { padding-left: 0; border-left: 0; }
  .game-method button:last-child { padding-right: 0; }
  .game-method button > span { display: block; margin-bottom: 24px; }
  .game-method button > i { top: 24px; right: 18px; }
  .game-method small { display: none; }
  .game-rail-foot { display: none; }
  .game-board { min-height: 650px; }
  .constitution-intro { margin-bottom: 48px; }
  .constitution-intro > div:last-child { margin-top: 22px; }
  .constitution-scene { min-height: 0; padding: 0; }
  .constitution-document { min-height: 630px; }
  .constitution-notes { position: static; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 42px; }
  .constitution-sticky, .constitution-sticky:nth-child(1), .constitution-sticky:nth-child(2), .constitution-sticky:nth-child(3) { position: static; width: 100%; margin-left: 0; padding: 22px 20px; }
  .constitution-sticky p { font-size: 1.04rem; }
  .why-heading h2 { font-size: clamp(3.65rem, 10.8vw, 5.8rem); }
  .why-answers { grid-template-columns: 1fr; margin-top: 62px; }
  .why-answers article, .why-answers article + article { display: grid; grid-template-columns: 48px minmax(210px, .8fr) minmax(0, 1.2fr); gap: 18px; align-items: start; min-height: 0; padding: 30px 0; border-left: 0; border-top: 1px solid var(--line); }
  .why-answers article:first-child { border-top: 0; }
  .why-answers h3 { margin: -2px 0 0; }
  .why-answers p { margin-top: -2px; }
  .product-world { min-height: 0; }
  .product-world-body { grid-template-columns: 1fr; gap: 42px; min-height: 0; }
  .hc-console, .model-instrument { justify-self: stretch; max-width: none; }
  .stewardship-shell { gap: 50px; }
  .stewardship-copy h2 { max-width: 620px; }
  .footer-callout { min-height: 520px; padding-block: 78px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand-block { grid-column: 1 / 4; }
}

@media (max-width: 590px) {
  .shell { width: calc(100% - 24px); }
  .section { padding-block: 76px; }
  .hero { padding-top: 68px; }
  .hero h1 { font-size: clamp(3.05rem, 15.3vw, 4.5rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: 17px; }
  .hero-product-preview { margin-top: 58px; border-radius: 20px; }
  .preview-card-head { min-height: 68px; padding-inline: 20px; }
  .preview-card-head > div:first-child span { display: none; }
  .preview-interface { min-height: 0; }
  .preview-story { min-height: 390px; padding: 28px 22px; }
  .preview-story h2 { font-size: 3rem; }
  .preview-story-meta span:last-child, .preview-choice-foot span:last-child { display: none; }
  .preview-choice { padding: 34px 20px; }
  .preview-choice h3 { margin: 40px 0 28px; font-size: 2.65rem; }
  .preview-options { grid-template-columns: 1fr; }
  .preview-options a { min-height: 118px; }
  .section-intro, .products-intro { margin-bottom: 48px; text-align: left; }
  .section-intro h2, .products-intro h2 { font-size: 3.1rem; }
  .section-intro > p:last-child, .products-intro > p:last-child { margin-inline: 0; }
  .products-intro .section-word { white-space: normal; }
  .sanctum-journey { padding-block: 12px 76px; }
  .journey-step { grid-template-columns: 28px 1fr; gap: 12px; padding-block: 23px; }
  .journey-step-detail { grid-column: 2; }
  .journey-step h2 { font-size: 1.4rem; }
  .journey-card-wrap { margin-top: 0; }
  .journey-question { margin-top: 0; border-radius: 20px; }
  .games-copy h2, .stewardship-copy h2 { font-size: 3.15rem; }
  .constitution-intro h2 { font-size: 2.85rem; line-height: .98; }
  .game-studio { border-radius: 22px; }
  .game-studio-rail { padding: 20px; }
  .game-studio-label { padding-bottom: 16px; }
  .game-method button { min-height: 112px; padding: 18px 10px; }
  .game-method button:first-child { padding-left: 0; }
  .game-method button:last-child { padding-right: 0; }
  .game-method button > span { margin-bottom: 17px; }
  .game-method button > i { top: 18px; right: 10px; }
  .game-method strong { font-size: .9rem; }
  .game-board { min-height: auto; padding: 24px 18px 20px; }
  .game-board-head { gap: 16px; }
  .game-board-head > div:last-child { font-size: .62rem; }
  .game-panel > h3 { margin-top: 18px; font-size: 2.2rem; }
  .game-options { grid-template-columns: 1fr; }
  .game-options button { min-height: 245px; }
  .game-versus { margin-inline: auto; }
  .game-math-layout { grid-template-columns: 1fr; gap: 18px; }
  .game-selected-basket { min-height: 190px; }
  .game-weight-list > div { grid-template-columns: 100px minmax(60px, 1fr); }
  .game-weight-list strong { display: none; }
  .game-math-summary { grid-template-columns: 1fr; gap: 8px; }
  .game-perspective-sheet { min-height: 370px; padding: 26px 22px; }
  .game-perspective-sheet > strong { font-size: 2.3rem; }
  .game-perspective-notes { grid-template-columns: 1fr; }
  .game-perspective-notes > div { min-height: 68px; padding: 12px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .game-perspective-notes > div:last-child { border-bottom: 0; }
  .constitution-paper-stack, .constitution-document { width: 100%; min-width: 0; }
  .constitution-tabs { width: 100%; grid-template-columns: 1fr; gap: 0; overflow: visible; margin-bottom: 20px; padding: 0; }
  .constitution-tabs button { min-width: 0; padding: 13px 14px; border-right: 0; border-bottom: 1px solid rgba(23, 23, 22, .17); }
  .constitution-tabs button:last-child { border-bottom: 0; }
  .constitution-document { min-height: 0; padding: 24px 18px 22px; }
  .constitution-document > header { gap: 14px; }
  .constitution-document > header > div { min-width: 0; max-width: 48%; }
  .constitution-paper-body { grid-template-columns: 1fr; gap: 22px; padding: 34px 0 30px; }
  .constitution-paper-body > aside { flex-direction: row; justify-content: space-between; gap: 14px; padding: 0 0 16px; border-right: 0; border-bottom: 1px solid #d9d8d0; }
  .constitution-paper-body > aside i { display: none; }
  .constitution-article-number { top: 0; font-size: 4.2rem; }
  .constitution-paper-body h3 { padding-right: 58px; font-size: 2.7rem; }
  .constitution-statement { font-size: 1.05rem; }
  .constitution-rationale { grid-template-columns: 1fr; gap: 8px; }
  .constitution-document > footer { grid-template-columns: 1fr; gap: 26px; }
  .constitution-document > footer > a { justify-self: start; }
  .constitution-signal { grid-template-columns: 1fr; gap: 10px; }
  .constitution-notes { display: grid; grid-auto-flow: column; grid-auto-columns: 180px; grid-template-columns: none; gap: 18px; overflow-x: auto; margin-top: 32px; padding: 8px 6px 18px; scrollbar-width: none; }
  .constitution-notes::-webkit-scrollbar { display: none; }
  .constitution-sticky, .constitution-sticky:nth-child(1), .constitution-sticky:nth-child(2), .constitution-sticky:nth-child(3) { width: 180px; margin-left: 0; padding: 21px 19px; }
  .constitution-sticky p { font-size: 1.05rem; }
  .why-heading h2 { font-size: 3.15rem; line-height: .98; }
  .why-answers article, .why-answers article + article { grid-template-columns: 30px minmax(0, 1fr); gap: 14px; padding: 26px 0; }
  .why-answers h3 { grid-column: 2; max-width: none; margin: -4px 0 12px; font-size: 1.55rem; }
  .why-answers p { grid-column: 2; max-width: none; margin: 0; }
  .product-world { margin-top: 18px; padding: 24px 18px 30px; border-radius: 22px; }
  .product-world-head { grid-template-columns: 30px 1fr auto; gap: 10px; }
  .product-world-head i { font-size: 0; }
  .product-world-head i::after { content: "\2197"; font-size: .9rem; }
  .product-world-body { gap: 32px; padding-top: 34px; }
  .product-copy h3 { margin-block: 16px 20px; font-size: 2.75rem; }
  .hc-console { padding: 16px; border-radius: 18px; }
  .hc-question, .hc-answer { padding: 17px; }
  .hc-answer { width: 94%; }
  .model-instrument { padding: 18px 16px; }
  .instrument-dial { height: 270px; }
  .instrument-dial svg { height: 210px; }
  .instrument-foot { grid-template-columns: 1fr auto; }
  .footer-callout h2 { font-size: 3.7rem; }
  .footer-callout-actions { width: 100%; flex-direction: column; }
  .footer-callout-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px 24px; }
  .footer-brand-block { grid-column: 1 / 3; }
  .footer-column:last-child { grid-column: 1 / 3; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .constitution-sticky:hover { animation: none; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .motion-section [data-rise] { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) and (min-width: 881px) {
  .sanctum-journey { min-height: auto; padding-block: 132px; }
  .journey-stage { position: relative; top: auto; height: auto; display: grid; grid-template-columns: minmax(280px, .42fr) minmax(700px, 1.58fr); gap: 72px; overflow: visible; }
  .journey-copy { position: relative; top: auto; width: 100%; opacity: 1; transform: none; }
  .journey-step-detail { max-height: none; margin-top: 16px; opacity: 1; transform: none; }
  .journey-card-wrap { position: relative; inset: auto; transform: none; }
}
