/*
  LUXUM — STYLE MAP

  01. Design tokens and global rules
  02. Hero and navigation
  03. Entertainment / belief section
  04. Capabilities, players and approach sections
  05. Future, careers and footer
  06. Contact modal and form states
  07. Motion, interaction and responsive overrides

  Editing notes:
  - Change the core palette and fonts only in :root below.
  - Desktop component rules come first; tablet/mobile overrides use 1100px and 720px.
  - Later rules intentionally refine earlier ones. Keep their order to preserve the cascade.
  - JavaScript hooks use the js-* classes and element IDs; do not rename them without
    updating script.js.
*/

/* 01. DESIGN TOKENS */
:root {
  --black: #171717;
  --black2: #101010;
  --white: #f5f5f2;
  --paper: #fff;
  --grey: #878787;
  --line: #d9d9d5;
  --orange: #ff3c18;
  --display: "Plus Jakarta Sans", sans-serif;
  --mono: "JetBrains Mono", monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) var(--black2);
}

/* Brand scrollbar: compact, high-contrast and consistent with the Luxum UI. */
html::-webkit-scrollbar {
  width: 9px;
}
html::-webkit-scrollbar-track {
  background: var(--black2);
}
html::-webkit-scrollbar-thumb {
  min-height: 56px;
  border: 2px solid var(--black2);
  border-radius: 999px;
  background: var(--orange);
}
html::-webkit-scrollbar-thumb:hover {
  background: #ff6245;
}
html::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
html.is-wheel-smoothing {
  scroll-behavior: auto;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--display);
  overflow-x: hidden;
}
button,
a,
input,
textarea {
  font: inherit;
}
button,
a {
  cursor: pointer;
}
.cursor-glow {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 60, 24, 0.09), transparent 67%);
  transform: translate(-50%, -50%);
}
.scroll-progress {
  position: fixed;
  z-index: 110;
  left: 0;
  top: 0;
  height: 3px;
  width: var(--progress, 0);
  background: var(--orange);
}
/* 02. HERO AND NAVIGATION */
.hero-shell {
  padding: 10px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 62% 38%;
  gap: 10px;
}
.panel-light {
  background: var(--paper);
  color: var(--black);
}
.hero-panel {
  min-height: calc(100vh - 20px);
  border-radius: 30px;
  position: relative;
  padding: 0 clamp(32px, 6vw, 90px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.site-header {
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.05em;
}
.brand svg {
  width: 33px;
  fill: var(--orange);
}
.brand sup {
  font: 500 8px var(--mono);
  vertical-align: top;
}
.main-nav {
  display: flex;
  gap: 25px;
  align-items: center;
}
.main-nav a {
  font: 700 10px var(--mono);
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-contact {
  display: none;
}
.menu-button {
  position: relative;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  width: 48px;
  height: 48px;
  padding: 15px;
  z-index: 5;
}
.menu-button span {
  display: block;
  height: 2px;
  width: 18px;
  background: white;
  margin: 4px auto;
}
.menu-button span:first-child {
  transform: translateX(3px);
}
.hero-copy {
  padding: 5vh 0;
  max-width: 830px;
}
.section-code {
  font: 700 10px var(--mono);
  display: flex;
  align-items: center;
  gap: 11px;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}
.section-code b {
  font-weight: 700;
  margin-left: 5px;
}
.code-icon {
  width: 12px;
  height: 12px;
  background: var(--black);
  display: inline-block;
  box-shadow: 8px 0 0 -3px var(--black);
}
h1 {
  font-size: clamp(60px, 6vw, 98px);
  line-height: 1;
  letter-spacing: -0.07em;
  margin: 35px 0 34px;
  font-weight: 700;
}
.hero-copy h1 span {
  background: linear-gradient(95deg, var(--orange), #f7722d 50%, #222 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy > p {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  color: #686868;
  max-width: 670px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
}
.primary-button {
  border: 0;
  background: var(--black);
  color: white;
  min-height: 64px;
  border-radius: 20px;
  padding: 0 10px 0 27px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  font: 700 10px var(--mono);
  text-transform: uppercase;
  transition:
    background 0.25s,
    color 0.25s;
}
.primary-button b {
  font: 400 18px var(--display);
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--orange);
  display: grid;
  place-items: center;
  transition: transform 0.25s;
}
.primary-button:hover {
  background: #292929;
}
.primary-button:hover b {
  transform: rotate(45deg);
}
.round-link {
  width: 64px;
  height: 64px;
  border: 2px solid var(--black);
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: var(--black);
  text-decoration: none;
  font-size: 22px;
  transition: 0.25s;
}
.round-link:hover {
  background: var(--orange);
}
.action-caption {
  font: 700 9px/1.5 var(--mono);
}
.action-caption span {
  color: #999;
}
.ticker {
  margin-top: auto;
  border-top: 1px solid var(--line);
  height: 65px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker > div {
  display: flex;
  white-space: nowrap;
  gap: 20px;
  animation: ticker 18s linear infinite;
  font: 700 9px var(--mono);
}
.ticker i {
  color: var(--orange);
}
.hero-visual {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #050505;
  min-height: calc(100vh - 20px);
}
#flux-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.visual-top,
.visual-footer {
  position: absolute;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 700 9px var(--mono);
}
.visual-top {
  top: 28px;
}
.visual-footer {
  bottom: 25px;
}
.signal {
  display: flex;
  gap: 8px;
  align-items: center;
}
.signal i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
}
.visual-contact {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  color: white;
  padding: 12px 12px 12px 18px;
  font: 700 9px var(--mono);
}
.visual-contact span {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background: white;
  color: black;
  margin-left: 8px;
}
.visual-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
}
.visual-copy > span {
  font: 700 9px var(--mono);
}
.visual-copy h2 {
  font-size: clamp(150px, 24vw, 370px);
  font-weight: 400;
  line-height: 0.45;
  margin: 14px 0 60px;
  color: rgba(255, 255, 255, 0.05);
  text-align: center;
}
.visual-copy p {
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 0;
}
.scan-code {
  width: 50px;
  height: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 6px;
  border: 1px solid #fff;
}
.scan-code span {
  border: 3px solid white;
}
.scan-code i {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--orange);
  margin: 15px;
}
.visual-footer p {
  text-align: right;
  margin: 0;
  line-height: 1.6;
}
.page-panel {
  margin: 10px;
  border-radius: 30px;
  padding: clamp(90px, 10vw, 160px) clamp(28px, 7vw, 110px);
}
.dark-section {
  position: relative;
  min-height: 900px;
  padding: 120px clamp(28px, 8vw, 130px);
  overflow: hidden;
}
.section-code--dark {
  color: white;
}
.section-code--dark .code-icon {
  background: white;
  box-shadow: 8px 0 0 -3px white;
}
/* 03. ENTERTAINMENT / BELIEF */
.belief-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 8vw;
  max-width: 1200px;
  margin: 80px auto;
}
.portrait-panel {
  height: 510px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 60, 24, 0.8), transparent 24%),
    linear-gradient(145deg, #2a2a2a, #090909);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  will-change: transform;
}
.portrait-panel:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 9px 9px;
  opacity: 0.14;
  mask-image: linear-gradient(to bottom, black, transparent);
}
.portrait-symbol {
  font-size: 230px;
  font-weight: 800;
  letter-spacing: -0.1em;
  position: relative;
  z-index: 2;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
  text-shadow: 20px 15px 0 rgba(255, 60, 24, 0.65);
}
.portrait-panel > span {
  position: absolute;
  bottom: 22px;
  left: 22px;
  font: 700 9px var(--mono);
}
.belief-copy h2 {
  font-size: clamp(43px, 5.2vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.065em;
  margin: 0;
}
.belief-copy h2 span {
  color: #6e6e6e;
}
.belief-copy > p {
  font-size: 18px;
  color: #929292;
  line-height: 1.55;
  max-width: 670px;
  margin: 60px 0;
}
.signature {
  display: flex;
  align-items: center;
  gap: 20px;
}
.signature i {
  font-style: normal;
  color: var(--orange);
  font-size: 32px;
}
.signature span {
  font: 700 9px/1.7 var(--mono);
  color: #777;
}
.signature b {
  color: white;
}
.loop-label {
  position: absolute;
  left: -3%;
  bottom: 15px;
  width: 106%;
  font: 700 clamp(35px, 5vw, 80px) var(--mono);
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  transform: translate3d(var(--marquee-x, 0), 0, 0) rotate(-2deg);
  will-change: transform;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.7fr auto;
  align-items: end;
  gap: 50px;
  padding-bottom: 70px;
}
.section-head h2 {
  font-size: clamp(55px, 7vw, 105px);
  line-height: 0.9;
  letter-spacing: -0.075em;
  margin: 0;
}
.section-head > div:nth-child(2) > p {
  color: #777;
  max-width: 520px;
  margin: 25px 0 0;
  line-height: 1.55;
}
.outline-button {
  border: 2px solid currentColor;
  background: transparent;
  border-radius: 18px;
  min-height: 55px;
  padding: 0 23px;
  font: 700 10px var(--mono);
  transition: 0.25s;
}
.outline-button:hover {
  background: var(--orange);
  border-color: var(--orange);
}
/* 04. CAPABILITIES */
.service-list {
  border-top: 1px solid var(--line);
}
.service-row {
  position: relative;
  min-height: 330px;
  padding: 42px 190px 42px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 100px 150px 1fr 1fr;
  gap: 30px;
  align-items: start;
  transition: background 0.3s;
}
.service-row:hover {
  background: #f7f7f4;
}
.service-num,
.service-tag {
  font: 700 10px var(--mono);
}
.service-tag {
  color: #777;
}
.service-row h3 {
  font-size: clamp(31px, 3vw, 47px);
  line-height: 1;
  letter-spacing: -0.055em;
  margin: 0;
}
.service-row p {
  color: #777;
  line-height: 1.55;
  margin: 0;
}
.service-mark {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 115px;
  height: 115px;
}
.service-mark svg {
  width: 100%;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
}
.service-mark--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  transform: translateY(-50%) rotate(8deg);
}
.service-mark--grid span {
  background: var(--black);
  border-radius: 8px;
}
.service-mark--grid span:nth-child(2) {
  background: var(--orange);
}
.service-mark--rings i {
  position: absolute;
  border: 2px solid var(--black);
  border-radius: 50%;
  inset: 10px;
}
.service-mark--rings i:nth-child(2) {
  inset: 28px;
}
.service-mark--rings i:nth-child(3) {
  inset: 46px;
  background: var(--orange);
}
.service-mark--spark {
  display: grid;
  place-items: center;
  font-size: 100px;
  color: var(--orange);
}
/* 05. PLAYER PRINCIPLES */
.players {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8vw;
  align-items: center;
  min-height: 850px;
}
.players-intro h2 {
  font-size: clamp(55px, 7vw, 105px);
  line-height: 0.9;
  letter-spacing: -0.075em;
  margin: 45px 0;
}
.players-intro > p {
  color: #999;
  max-width: 500px;
  font-size: 18px;
  line-height: 1.6;
}
.value-console {
  border: 1px solid #424242;
  border-radius: 28px;
  overflow: hidden;
  background: #101010;
  box-shadow: 0 30px 80px #000;
  will-change: transform;
}
.console-head {
  height: 60px;
  padding: 0 24px;
  border-bottom: 1px solid #3b3b3b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 700 9px var(--mono);
}
.console-head i {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--orange);
}
.console-main {
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 35px 35px;
}
.radar {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 1px solid #555;
  position: relative;
  display: grid;
  place-items: center;
  animation: radar 7s linear infinite;
}
.radar span {
  position: absolute;
  inset: 28px;
  border: 1px solid #444;
  border-radius: 50%;
}
.radar span:nth-child(2) {
  inset: 58px;
}
.radar span:nth-child(3) {
  inset: 86px;
  background: var(--orange);
  border: 0;
  box-shadow: 0 0 50px rgba(255, 60, 24, 0.6);
}
.radar b {
  z-index: 2;
  font: 700 10px var(--mono);
}
.console-stat {
  display: flex;
  flex-direction: column;
}
.console-stat strong {
  font-size: 90px;
  line-height: 1;
  color: var(--orange);
}
.console-stat span {
  font: 700 9px var(--mono);
}
.console-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.console-values > div {
  padding: 25px;
  border-top: 1px solid #383838;
  border-right: 1px solid #383838;
  min-height: 130px;
}
.console-values b {
  font: 700 9px var(--mono);
  color: #777;
}
.console-values span {
  display: block;
  font: 700 11px var(--mono);
  margin: 12px 0;
}
.console-values p {
  color: #777;
  font-size: 13px;
  margin: 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.process {
  position: relative;
  min-height: 440px;
  padding: 35px 35px 70px 0;
  border-right: 1px solid var(--line);
}
.process:not(:first-child) {
  padding-left: 35px;
}
.process span {
  font: 700 10px var(--mono);
}
.process strong {
  font-size: clamp(39px, 4vw, 59px);
  letter-spacing: -0.065em;
  display: block;
  margin: 100px 0 20px;
}
.process p {
  color: #777;
  line-height: 1.55;
}
.process i {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--orange);
  bottom: 27px;
}
/* 06. OPERATING APPROACH */
.approach-statement {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  border-top: 1px solid var(--black);
  padding-top: 25px;
}
.approach-statement span {
  font: 700 10px var(--mono);
}
.approach-statement p {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.065em;
  margin: 0;
}
/* 07. FUTURE OF SOCIAL GAMING */
.future {
  min-height: 920px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.future-orb {
  height: 600px;
  position: relative;
  display: grid;
  place-items: center;
  will-change: transform;
}
.future-orb > span {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 30%,
    #fff,
    rgba(255, 60, 24, 0.9) 20%,
    #4f1208 42%,
    transparent 65%
  );
  filter: blur(8px);
  animation: orb 7s ease-in-out infinite;
}
.future-orb > i {
  position: absolute;
  width: 560px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: rotate(-20deg);
}
.future-orb b {
  z-index: 2;
  font-size: 180px;
  color: transparent;
  -webkit-text-stroke: 1px white;
}
.future-copy h2 {
  font-size: clamp(56px, 7vw, 102px);
  line-height: 0.9;
  letter-spacing: -0.08em;
  margin: 40px 0;
}
.future-copy > p {
  color: #999;
  font-size: 18px;
  line-height: 1.6;
  max-width: 580px;
}
.future-copy > strong {
  font: 700 10px var(--mono);
  color: var(--orange);
}
.future-meta {
  position: absolute;
  bottom: 30px;
  left: 9vw;
  right: 9vw;
  border-top: 1px solid #444;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font: 700 9px var(--mono);
  color: #777;
}
/* 08. CAREERS */
.join {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 8vw;
  min-height: 760px;
}
.join h2 {
  font-size: clamp(75px, 9vw, 140px);
  line-height: 0.78;
  letter-spacing: -0.085em;
  margin: 40px 0 20px;
}
.join-copy > p {
  color: #777;
  line-height: 1.6;
  max-width: 580px;
  font-size: 18px;
}
.join-copy .primary-button {
  margin-top: 20px;
}
.join-board {
  border-radius: 25px;
  background: var(--orange);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  will-change: transform;
}
.join-board:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(0, 0, 0, 0.1) 32px),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(0, 0, 0, 0.1) 32px);
}
.join-line,
.join-coordinates {
  position: absolute;
  font: 700 10px var(--mono);
  z-index: 2;
}
.join-line {
  top: 25px;
  left: 25px;
}
.join-coordinates {
  bottom: 25px;
  right: 25px;
  text-align: right;
}
.join-glyph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(160px, 20vw, 320px);
  font-weight: 800;
  letter-spacing: -0.15em;
  transform: rotate(-8deg);
}
/* 09. FOOTER */
footer {
  margin: 10px;
  padding: 80px clamp(28px, 7vw, 100px) 30px;
  background: #0c0c0c;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 50px;
  align-items: start;
}
.brand--light {
  color: white;
}
.footer-brand p {
  color: #777;
}
.footer-brand svg {
  fill: var(--orange);
}
footer > div > span {
  font: 700 9px var(--mono);
  color: #777;
}
footer p,
footer a {
  color: white;
  line-height: 1.6;
  text-decoration: none;
  font-size: 14px;
}
.footer-cta {
  background: white;
  color: black;
  border: 0;
  border-radius: 18px;
  min-height: 56px;
  padding: 0 22px;
  font: 700 10px var(--mono);
}
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid #333;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
}
.footer-bottom span,
.footer-bottom a {
  font: 700 9px var(--mono);
  color: #777;
}
/* 10. CONTACT MODAL AND FORM */
.contact-modal {
  width: min(1050px, calc(100% - 30px));
  height: min(740px, calc(100% - 30px));
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: white;
  color: var(--black);
  overflow: hidden;
}
.contact-modal::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(7px);
}
.contact-modal[open] {
  display: grid;
  grid-template-columns: 34% 66%;
  animation: modalIn 0.25s ease-out;
}
.modal-close {
  position: absolute;
  z-index: 5;
  right: 22px;
  top: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid #bbb;
  border-radius: 50%;
  background: white;
}
.modal-close span {
  position: absolute;
  left: 13px;
  top: 22px;
  width: 20px;
  height: 2px;
  background: #111;
  transform: rotate(45deg);
}
.modal-close span:last-child {
  transform: rotate(-45deg);
}
.modal-aside {
  padding: 40px;
  background: var(--black);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.modal-orb {
  align-self: center;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, white, var(--orange) 25%, #3b0b04 60%, #111 75%);
  display: grid;
  place-items: center;
  font-size: 90px;
  font-weight: 800;
}
.modal-aside > p {
  font: 700 9px/1.7 var(--mono);
}
.modal-content {
  padding: 60px clamp(30px, 5vw, 75px);
  overflow-y: auto;
}
.form-state {
  display: none;
}
.form-state--active {
  display: block;
}
.modal-content h2 {
  font-size: clamp(55px, 6vw, 86px);
  line-height: 0.85;
  letter-spacing: -0.08em;
  margin: 35px 0 25px;
}
.modal-content > div > p:not(.section-code) {
  color: #777;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field {
  margin-top: 24px;
}
.field label {
  display: block;
  font: 700 9px var(--mono);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aaa;
  padding: 10px 0 13px;
  outline: 0;
  resize: none;
  font-size: 16px;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 1px 0 var(--orange);
}
.error {
  display: none;
  color: #b8321a;
  font-size: 11px;
  margin-top: 5px;
}
.field.invalid .error {
  display: block;
}
.field.invalid input,
.field.invalid textarea {
  border-color: #b8321a;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0;
  cursor: pointer;
}
.consent input {
  position: absolute;
  opacity: 0;
}
.consent > span {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border: 1px solid #888;
}
.consent input:checked + span {
  background: var(--orange);
  box-shadow: inset 0 0 0 4px white;
}
.consent small {
  color: #777;
  line-height: 1.5;
}
.consent.invalid small {
  color: #b8321a;
}
.form-submit {
  min-height: 55px;
}
.form-submit[disabled] {
  opacity: 0.6;
}
.form-success {
  padding-top: 80px;
}
.success-mark {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--orange);
  display: grid;
  place-items: center;
  font-size: 42px;
}
.reveal {
  opacity: 0;
  transform: translateY(35px) scale(0.99);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.service-row.reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.service-row.reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.service-row.reveal:nth-child(4) {
  transition-delay: 0.24s;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
@keyframes orb {
  50% {
    transform: scale(1.08) rotate(15deg);
  }
}
@keyframes radar {
  to {
    transform: rotate(360deg);
  }
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
}
/* 11. RESPONSIVE LAYOUT */
@media (max-width: 1100px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    min-height: 850px;
  }
  .hero-visual {
    min-height: 700px;
  }
  .belief-grid {
    grid-template-columns: 280px 1fr;
  }
  .service-row {
    grid-template-columns: 70px 130px 1fr;
    padding-right: 150px;
  }
  .service-row p {
    grid-column: 3;
  }
  .players {
    grid-template-columns: 1fr;
  }
  .section-head {
    grid-template-columns: 1fr 1.7fr;
  }
  .section-head > .outline-button {
    grid-column: 2;
  }
  .join {
    grid-template-columns: 1fr 1fr;
  }
  footer {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .cursor-glow {
    display: none;
  }
  .hero-shell {
    padding: 6px;
    gap: 6px;
  }
  .hero-panel {
    border-radius: 20px;
    padding: 0 20px;
    min-height: 830px;
  }
  .site-header {
    height: 82px;
  }
  .brand {
    font-size: 19px;
  }
  .brand svg {
    width: 28px;
  }
  .main-nav {
    position: fixed;
    z-index: 4;
    display: none;
    inset: 6px;
    background: var(--black);
    color: white;
    border-radius: 20px;
    padding: 100px 30px 30px;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav a {
    font-size: 22px;
    border-bottom: 0;
    padding: 14px 0;
  }
  .nav-contact {
    display: block;
    margin-top: auto;
    border: 0;
    background: var(--orange);
    border-radius: 15px;
    min-height: 55px;
  }
  .menu-button {
    z-index: 6;
  }
  .hero-copy {
    padding-top: 40px;
  }
  .hero-copy h1 {
    font-size: 50px;
    margin: 28px 0;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .primary-button {
    min-height: 58px;
  }
  .action-caption {
    display: none;
  }
  .round-link {
    width: 58px;
    height: 58px;
  }
  .ticker {
    height: 55px;
  }
  .hero-visual {
    min-height: 620px;
    border-radius: 20px;
  }
  .visual-copy h2 {
    font-size: 200px;
  }
  .page-panel {
    margin: 6px;
    border-radius: 20px;
    padding: 85px 20px;
  }
  .dark-section {
    padding: 90px 20px;
    min-height: auto;
  }
  .belief-grid {
    grid-template-columns: 1fr;
    margin: 55px auto;
  }
  .portrait-panel {
    height: 370px;
  }
  .portrait-symbol {
    font-size: 180px;
  }
  .belief-copy h2 {
    font-size: 42px;
  }
  .belief-copy > p {
    margin: 35px 0;
    font-size: 17px;
  }
  .loop-label {
    display: none;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .section-head > .outline-button {
    grid-column: auto;
    justify-self: start;
  }
  .section-head h2 {
    font-size: 56px;
  }
  .service-row {
    display: block;
    padding: 32px 100px 32px 0;
    min-height: 300px;
  }
  .service-tag {
    margin: 12px 0 45px;
  }
  .service-row h3 {
    font-size: 33px;
    margin-bottom: 20px;
  }
  .service-mark {
    right: 0;
    width: 75px;
    height: 75px;
  }
  .players {
    display: block;
  }
  .players-intro h2 {
    font-size: 54px;
  }
  .value-console {
    margin-top: 60px;
  }
  .console-main {
    height: 260px;
  }
  .radar {
    width: 170px;
    height: 170px;
  }
  .console-stat strong {
    font-size: 60px;
  }
  .console-values {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 30px 0 !important;
  }
  .process strong {
    margin: 70px 0 20px;
  }
  .approach-statement {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .approach-statement p {
    font-size: 42px;
  }
  .future {
    display: block;
  }
  .future-orb {
    height: 430px;
  }
  .future-orb > span {
    width: 320px;
    height: 320px;
  }
  .future-orb > i {
    width: 340px;
    height: 160px;
  }
  .future-copy h2 {
    font-size: 54px;
  }
  .future-meta {
    position: static;
    margin-top: 70px;
    gap: 12px;
  }
  .join {
    display: block;
  }
  .join h2 {
    font-size: 70px;
  }
  .join-board {
    margin-top: 60px;
    min-height: 430px;
  }
  footer {
    margin: 6px;
    border-radius: 20px;
    grid-template-columns: 1fr;
    padding: 60px 25px 25px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
  .contact-modal {
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border-radius: 20px;
  }
  .contact-modal[open] {
    grid-template-columns: 1fr;
  }
  .modal-aside {
    display: none;
  }
  .modal-content {
    padding: 70px 24px 30px;
  }
  .modal-content h2 {
    font-size: 52px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.primary-button:hover {
  background: var(--black);
}
.visual-footer {
  align-items: flex-end;
}
.visual-footer .visual-tagline {
  margin: 0;
  text-align: left;
  font: 700 clamp(22px, 2.2vw, 36px) / 0.88 var(--display);
  letter-spacing: -0.07em;
}
.loop-label {
  animation: loopRun 22s linear infinite;
}
.main-nav {
  position: fixed;
  z-index: 4;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  min-height: 100vh;
  display: none;
  background: var(--black);
  color: white;
  border-radius: 0;
  padding: clamp(110px, 16vh, 170px) clamp(35px, 8vw, 120px) 55px;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}
.main-nav.is-open {
  display: flex;
  animation: menuIn 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.main-nav a {
  position: relative;
  color: white;
  font: 700 clamp(38px, 6vw, 84px) / 1 var(--display);
  letter-spacing: -0.07em;
  text-transform: none;
  padding: 12px 0;
  border-bottom: 0;
  transition:
    color 0.25s,
    padding-left 0.25s;
}
.main-nav a:before {
  content: "↗";
  position: absolute;
  top: 50%;
  right: 0;
  opacity: 0;
  font-size: 0.45em;
  color: var(--orange);
  transform: translateY(-50%);
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.main-nav a:hover {
  color: var(--orange);
  padding-left: 18px;
}
.main-nav a[aria-current="page"] {
  color: var(--orange);
}
.main-nav a:hover:before {
  opacity: 1;
  transform: translateY(-50%) rotate(45deg);
}
.nav-contact {
  display: block;
  align-self: flex-end;
  margin-top: 35px;
  border: 1px solid #555;
  background: transparent;
  color: white;
  border-radius: 18px;
  min-height: 58px;
  padding: 0 24px;
  font: 700 10px var(--mono);
}
.site-header .brand {
  position: relative;
  z-index: 6;
}
.menu-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

.menu-open .site-header {
  position: fixed;
  z-index: 120;
  inset: 10px 10px auto;
  width: auto;
  height: 105px;
  padding: 0 clamp(32px, 6vw, 90px);
}

/* The home header belongs to the 62% hero column, so its close button stays
   on that column edge instead of jumping to the far side of the viewport. */
body.menu-open:not(.about-page) .site-header {
  width: calc((100vw - 30px) * 0.62);
}

.menu-open .site-header .brand,
.menu-open .site-header .menu-button {
  pointer-events: auto;
}
.menu-open .site-header .brand {
  color: white;
}
.menu-open .menu-button {
  background: white;
}
.menu-open .menu-button span {
  background: black;
}
.visual-copy {
  pointer-events: none;
}
.visual-copy > span {
  display: inline-block;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}
@keyframes loopRun {
  from {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  to {
    transform: translate3d(-48%, 0, 0) rotate(-2deg);
  }
}
@keyframes menuIn {
  from {
    opacity: 0;
    clip-path: circle(0 at calc(100% - 60px) 50px);
  }
  to {
    opacity: 1;
    clip-path: circle(150% at calc(100% - 60px) 50px);
  }
}
.outline-button,
.visual-contact,
.footer-cta,
.nav-contact {
  box-sizing: border-box;
  border: 0;
  background: var(--black);
  color: white;
  min-height: 64px;
  border-radius: 20px;
  padding: 0 10px 0 27px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font: 700 10px var(--mono);
  text-transform: uppercase;
  white-space: nowrap;
  transition: none;
}
.outline-button:after,
.visual-contact:after,
.footer-cta:after,
.nav-contact:after {
  content: "↗";
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--orange);
  color: white;
  display: grid;
  place-items: center;
  font: 400 18px var(--display);
  transition: transform 0.25s;
}
.outline-button:hover,
.visual-contact:hover,
.footer-cta:hover,
.nav-contact:hover {
  background: var(--black);
  border: 0;
}
.outline-button:hover:after,
.visual-contact:hover:after,
.footer-cta:hover:after,
.nav-contact:hover:after {
  transform: rotate(45deg);
}
.visual-contact {
  backdrop-filter: none;
}
.nav-contact {
  align-self: flex-end;
  margin-top: 35px;
}
.menu-open .nav-contact {
  color: white;
}
.footer-cta {
  padding-left: 27px;
}
.cursor-dot,
.cursor-ring {
  display: none;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  perspective: 1000px;
  background: #000;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.055) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition:
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.7s ease;
  will-change: transform;
  filter: saturate(0.82) contrast(1.05);
}
.hero-media.is-hovered img {
  transform: scale(1.11) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  filter: saturate(1.12) contrast(1.08);
}
.hero-media-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0;
  transition: opacity 0.5s;
  mask-image: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), black, transparent 48%);
}
.hero-media.is-hovered .hero-media-grid {
  opacity: 0.65;
}
.hero-media-light {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 180px at var(--mx, 50%) var(--my, 50%),
    rgba(255, 77, 35, 0.22),
    transparent 70%
  );
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.45s;
}
.hero-media.is-hovered .hero-media-light {
  opacity: 1;
}
.hero-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), transparent 35%, rgba(0, 0, 0, 0.32));
  z-index: 1;
}
.visual-top,
.visual-copy,
.visual-footer {
  z-index: 2;
}
@media (pointer: fine) {
  html,
  body,
  a,
  button,
  input,
  textarea,
  label {
    cursor: none !important;
  }
  .cursor-dot,
  .cursor-ring {
    display: block;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cursor-dot {
    width: 7px;
    height: 7px;
    background: var(--orange);
  }
  .cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 60, 24, 0.8);
    transition:
      width 0.25s,
      height 0.25s,
      background 0.25s,
      border-color 0.25s;
  }
  .cursor-ring.is-active {
    width: 58px;
    height: 58px;
    background: rgba(255, 60, 24, 0.12);
    border-color: var(--orange);
  }
}
.loop-label {
  transform: none;
}
@keyframes loopRun {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-48%, 0, 0);
  }
}
.contact-modal::backdrop {
  cursor: default;
}
.contact-modal .cursor-dot,
.contact-modal .cursor-ring {
  position: fixed;
  z-index: 10000;
}
.ticker > .ticker-inner {
  display: flex;
  width: max-content;
  gap: 0;
  animation: tickerLoop 22s linear infinite;
}
.ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 22px;
  padding-right: 22px;
  white-space: nowrap;
}
.ticker-group span {
  font: 700 9px var(--mono);
}
.ticker-group i {
  color: var(--orange);
}
@keyframes tickerLoop {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.loop-label {
  left: 0;
  width: 100%;
  overflow: hidden;
  animation: none;
  transform: none;
}
.loop-label-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: loopLabelRun 28s linear infinite;
}
.loop-label-track span {
  display: block;
  flex-shrink: 0;
  white-space: nowrap;
  padding-right: 0.35em;
}
@keyframes loopLabelRun {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.portrait-panel {
  background: #050505;
}
.portrait-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.6s ease;
  filter: saturate(0.82) contrast(1.05);
}
.portrait-panel:hover img {
  transform: scale(1.07);
  filter: saturate(1.1) contrast(1.08);
}
.portrait-panel:after {
  z-index: 2;
  opacity: 0.08;
}
.portrait-panel > span {
  z-index: 4;
  padding: 8px 10px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(7px);
}
.collectible-scan {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: -20%;
  height: 90px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 75, 35, 0.2),
    rgba(255, 255, 255, 0.12),
    transparent
  );
  opacity: 0;
  transform: skewY(-8deg);
  pointer-events: none;
}
.portrait-panel:hover .collectible-scan {
  opacity: 1;
  animation: collectibleScan 2.2s ease-in-out infinite;
}
@keyframes collectibleScan {
  from {
    top: -20%;
  }
  to {
    top: 110%;
  }
}

/* Free-standing interactive host */
.belief {
  padding-left: 0;
  padding-bottom: 95px;
}
.belief > .section-code {
  margin-left: clamp(28px, 8vw, 130px);
  position: relative;
  z-index: 3;
}
.belief-grid {
  grid-template-columns: minmax(400px, 42vw) minmax(0, 1fr);
  gap: clamp(30px, 4.5vw, 85px);
  max-width: none;
  margin: 38px 0 70px;
  min-height: 650px;
  align-items: center;
}
.character-stage {
  --head-turn: 0deg;
  --head-lean: 0deg;
  position: relative;
  align-self: stretch;
  min-height: 650px;
  z-index: 2;
  perspective: 900px;
  pointer-events: auto;
  will-change: transform;
}
.character-stage img {
  position: absolute;
  inset: auto 0 -95px 0;
  width: 100%;
  height: calc(100% + 130px);
  object-fit: contain;
  object-position: left bottom;
  filter: drop-shadow(24px 26px 34px rgba(0, 0, 0, 0.45));
  user-select: none;
  pointer-events: none;
}
.character-body {
  clip-path: inset(16.5% 0 0 0);
}
.character-head {
  clip-path: ellipse(12.5% 10.8% at 50% 11.5%);
  transform-origin: 50% 14.5%;
  transform: rotateY(var(--head-turn)) rotateZ(var(--head-lean));
  transition: transform 0.16s cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: transform;
}
.belief-copy {
  position: relative;
  z-index: 3;
  padding-right: clamp(28px, 8vw, 130px);
}
.belief .loop-label {
  z-index: 1;
}
@media (max-width: 1100px) {
  .belief-grid {
    grid-template-columns: minmax(330px, 40vw) minmax(0, 1fr);
    min-height: 590px;
  }
  .character-stage {
    min-height: 590px;
  }
  .belief-copy h2 {
    font-size: clamp(42px, 5.2vw, 68px);
  }
}
@media (max-width: 720px) {
  .belief {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 70px;
  }
  .belief > .section-code {
    margin-left: 0;
  }
  .belief-grid {
    grid-template-columns: 1fr;
    margin: 35px 0 45px;
    min-height: 0;
    gap: 35px;
  }
  .character-stage {
    min-height: 520px;
  }
  .character-stage img {
    inset: auto -8% -70px -8%;
    width: 116%;
    height: calc(100% + 90px);
    object-position: center bottom;
  }
  .belief-copy {
    padding-right: 0;
  }
  .character-head {
    transition-duration: 0.22s;
  }
}

/* Character composition: oversized waist-up crop pinned to the section edge */
.belief-grid {
  position: static;
}
.character-stage {
  position: absolute;
  left: 0;
  top: 74px;
  bottom: 0;
  width: min(44vw, 820px);
  min-height: 0;
  align-self: auto;
}
.character-stage img {
  inset: 0 auto auto clamp(-105px, -5vw, -55px);
  width: auto;
  max-width: none;
  height: 195%;
  object-fit: fill;
  object-position: initial;
}
.character-body {
  clip-path: inset(16.5% 0 0 0);
}
.character-head {
  clip-path: ellipse(12.5% 10.8% at 50% 11.5%);
  transform-origin: 50% 14.5%;
}
@media (max-width: 1100px) {
  .character-stage {
    width: 43vw;
    top: 68px;
  }
  .character-stage img {
    height: 187%;
    left: -62px;
  }
}
@media (max-width: 720px) {
  .belief-grid {
    position: relative;
  }
  .character-stage {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 520px;
    overflow: hidden;
  }
  .character-stage img {
    top: 0;
    left: 50%;
    width: auto;
    height: 195%;
    transform: translateX(-50%);
  }
  .character-head {
    transform: translateX(-50%) rotateY(var(--head-turn)) rotateZ(var(--head-lean));
    transform-origin: 50% 14.5%;
  }
}

/* Reference-matched static character section */
.belief-grid {
  position: relative;
  grid-template-columns: 42% 58%;
  gap: 0;
  align-items: start;
  margin: 12px 0 65px;
  min-height: 710px;
}
.character-stage {
  position: relative;
  inset: auto;
  grid-column: 1;
  width: 100%;
  height: 710px;
  min-height: 710px;
  overflow: hidden;
  align-self: start;
  transform: none !important;
  isolation: isolate;
}
.belief-copy {
  grid-column: 2;
  min-width: 0;
  padding: 90px clamp(28px, 7vw, 115px) 0 clamp(22px, 2.4vw, 46px);
  max-width: 980px;
}
@media (max-width: 1100px) {
  .belief-grid {
    grid-template-columns: 42% 58%;
    min-height: 630px;
  }
  .character-stage {
    height: 630px;
    min-height: 630px;
  }
  .belief-copy {
    padding: 28px 36px 0 24px;
  }
}
@media (max-width: 720px) {
  .belief {
    padding-left: 20px;
    padding-right: 20px;
  }
  .belief-grid {
    grid-template-columns: 1fr;
    margin: 28px 0 50px;
    min-height: 0;
  }
  .character-stage {
    grid-column: 1;
    height: 520px;
    min-height: 520px;
  }
  .belief-copy {
    grid-column: 1;
    padding: 0;
    max-width: none;
  }
}

/* Final static front-facing character */
.character-static {
  position: absolute;
  top: 0;
  left: -12%;
  width: 124%;
  height: 178%;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(20px 24px 35px rgba(0, 0, 0, 0.42));
  pointer-events: none;
  user-select: none;
}
@media (max-width: 720px) {
  .character-static {
    left: -15%;
    width: 130%;
    height: 186%;
  }
}

/* Particle field and final reference-matched placement */
.belief {
  isolation: isolate;
}
.belief > .section-code,
.belief-grid,
.belief .loop-label {
  position: relative;
  z-index: 2;
}
.character-stage {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 42%;
  height: auto;
  min-height: 0;
  overflow: hidden;
  pointer-events: none;
}
.character-static {
  position: absolute;
  top: 0;
  left: -8%;
  width: 132%;
  height: 176%;
  object-fit: contain;
  object-position: center top;
  filter: none;
  pointer-events: none;
  user-select: none;
}
.belief-copy {
  grid-column: 2;
}
@media (max-width: 1100px) {
  .character-stage {
    width: 42%;
  }
  .character-static {
    left: -10%;
    width: 136%;
    height: 180%;
  }
}
@media (max-width: 720px) {
  .character-stage {
    position: relative;
    inset: auto;
    width: 100%;
    height: 540px;
    min-height: 540px;
  }
  .character-static {
    left: -14%;
    width: 128%;
    height: 172%;
  }
}

/* Section layer order: particles < ticker < character < copy */
.belief-grid {
  position: static;
}
.belief > .section-code {
  z-index: 4;
}
.belief .loop-label {
  z-index: 1;
}
.character-stage {
  z-index: 2;
  top: 0;
  bottom: 0;
}
.belief .character-stage {
  opacity: 1;
  visibility: visible;
  transform: none !important;
}
.character-static {
  top: 0;
  bottom: auto;
}
.belief-copy {
  position: relative;
  z-index: 4;
}
@media (max-width: 720px) {
  .belief-grid {
    position: relative;
  }
  .character-stage {
    position: relative;
    inset: auto;
  }
  .belief .loop-label {
    display: none;
  }
}

/* Reliable character rendering layer */
.belief .character-stage {
  display: block !important;
  position: absolute !important;
  z-index: 3 !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 42% !important;
  height: auto !important;
  min-height: 0 !important;
  background-image: url("assets/player-host-transparent.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 132% auto;
  overflow: hidden;
}
.belief .character-static {
  display: none !important;
}
@media (max-width: 1100px) {
  .belief .character-stage {
    width: 43% !important;
    background-size: 138% auto;
  }
}
@media (max-width: 720px) {
  .belief .character-stage {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 540px !important;
    min-height: 540px !important;
    background-size: 128% auto;
    background-position: center top;
  }
}

/* Direct character layer: independent from legacy stage rules */
.belief {
  min-height: 800px;
  padding-top: 72px;
  padding-bottom: 52px;
}
.belief-grid {
  grid-template-columns: 42% 58%;
  min-height: 610px;
  margin: 12px 0 20px;
}
.belief-character {
  position: absolute;
  z-index: 3;
  display: block;
  opacity: 1;
  visibility: visible;
  left: -3%;
  top: 0;
  width: 48%;
  height: 145%;
  object-fit: contain;
  object-position: center top;
  filter: none;
  pointer-events: none;
  user-select: none;
}
.belief-copy {
  grid-column: 2;
  position: relative;
  z-index: 4;
}
@media (max-width: 1100px) {
  .belief {
    min-height: 740px;
  }
  .belief-grid {
    min-height: 570px;
  }
  .belief-character {
    left: -5%;
    width: 52%;
    height: 148%;
  }
}
@media (max-width: 720px) {
  .belief {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 60px;
  }
  .belief-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    margin: 25px 0 20px;
  }
  .belief-character {
    position: relative;
    left: -12%;
    top: auto;
    width: 124%;
    height: 520px;
    object-position: center top;
    margin-bottom: 25px;
  }
  .belief-copy {
    grid-column: 1;
  }
}

/* Exact desktop split: character 50% / copy 50% */
@media (min-width: 721px) {
  .belief-grid {
    grid-template-columns: 50% 50%;
  }
  .belief-copy {
    grid-column: 2;
    padding-left: 0;
    padding-right: clamp(32px, 6vw, 110px);
    max-width: none;
  }
  .belief-character {
    left: -7%;
    top: 2%;
    width: 64%;
    height: 200%;
    object-position: center top;
  }
}

.section-cta {
  background: #222;
  border: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 4px;
}
.hero-copy > p + p {
  margin-top: 12px;
}
.belief-copy > p {
  margin: 18px 0;
}
.belief-copy h2 + p {
  margin-top: 34px;
}
.belief-manifesto {
  display: block;
  max-width: 700px;
  margin: 24px 0 30px;
  color: #fff;
  font: 700 12px/1.6 var(--mono);
  text-transform: uppercase;
}
.future-copy > p {
  margin: 0 0 15px;
}
.join-copy > p + p {
  margin-top: 12px;
}
.console-values > div {
  min-height: 185px;
}
.modal-aside {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.modal-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: modalArtDrift 14s ease-in-out infinite alternate;
}
.modal-aside:after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.38),
    rgba(0, 0, 0, 0.04) 40%,
    rgba(0, 0, 0, 0.72)
  );
}
.modal-aside .brand,
.modal-aside > p {
  position: relative;
  z-index: 2;
}
.form-submit {
  min-width: 240px;
  min-height: 64px;
  margin-top: 8px;
  padding: 0 10px 0 27px;
  gap: 38px;
  justify-content: space-between;
}
@keyframes modalArtDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-2%, -1%, 0);
  }
}
@media (max-width: 720px) {
  .form-submit {
    width: 100%;
  }
}

/* Compact editorial capability board */
.services {
  padding-top: clamp(82px, 8vw, 120px);
  padding-bottom: clamp(82px, 8vw, 120px);
}
.services .section-head {
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: clamp(32px, 5vw, 82px);
  row-gap: 34px;
  align-items: end;
  padding-bottom: 42px;
}
.services .section-head > .section-code {
  grid-column: 1/-1;
}
.services .section-head > div:nth-child(2) {
  grid-column: 1;
  max-width: 900px;
}
.services .section-head h2 {
  font-size: clamp(58px, 6vw, 90px);
}
.services .section-head > div:nth-child(2) > p {
  margin-top: 18px;
}
.services .section-head > .primary-button {
  grid-column: 2;
  grid-row: 2;
  min-height: 64px;
  white-space: nowrap;
  align-self: end;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: var(--line);
}
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 22px;
  row-gap: 18px;
  align-content: start;
  align-items: start;
  min-height: 245px;
  padding: 28px 98px 30px 30px;
  border: 0;
  background: var(--paper);
  overflow: hidden;
  transition: background 0.32s ease;
}
.service-row:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.45s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.service-row:hover {
  background: #f7f7f4;
}
.service-row:hover:before {
  width: 100%;
}
.service-num {
  color: var(--orange);
}
.service-tag {
  justify-self: end;
  text-align: right;
}
.service-row h3 {
  grid-column: 1/-1;
  font-size: clamp(29px, 2.55vw, 42px);
  line-height: 1.02;
  margin: 4px 0 0;
}
.service-row p {
  grid-column: 1/-1;
  max-width: 500px;
  padding-right: 12px;
  font-size: 15px;
  line-height: 1.5;
}
.service-mark,
.service-mark--grid {
  right: 24px;
  top: auto;
  bottom: 24px;
  width: 58px;
  height: 58px;
  transform: none;
  transition: none;
}
.service-mark {
  display: grid;
  place-items: center;
}
.service-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.service-mark svg > * {
  vector-effect: non-scaling-stroke;
}
.service-mark svg .icon-core {
  fill: var(--black);
  stroke: none;
}
.service-row:hover .service-mark {
  transform: none;
}
.service-mark--grid {
  gap: 4px;
}
.service-mark--grid span {
  border-radius: 5px;
}
.service-mark--rings i {
  inset: 4px;
}
.service-mark--rings i:nth-child(2) {
  inset: 15px;
}
.service-mark--rings i:nth-child(3) {
  inset: 26px;
}
.service-mark--spark {
  font-size: 58px;
  line-height: 1;
}
@media (max-width: 1100px) {
  .services .section-head {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 30px;
    row-gap: 30px;
  }
  .service-row {
    grid-template-columns: auto 1fr;
    padding-right: 88px;
  }
  .service-row p {
    grid-column: 1/-1;
  }
}
@media (max-width: 860px) {
  .service-list {
    grid-template-columns: 1fr;
  }
  .service-row {
    min-height: 220px;
  }
}
@media (max-width: 720px) {
  .services {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .services .section-head {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 34px;
  }
  .services .section-head > .section-code,
  .services .section-head > .primary-button {
    grid-column: 1;
    grid-row: auto;
  }
  .services .section-head h2 {
    font-size: 52px;
  }
  .services .section-head > .primary-button {
    justify-self: start;
  }
  .service-list {
    border-radius: 20px;
  }
  .service-row {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto 1fr;
    min-height: 215px;
    padding: 24px 78px 26px 24px;
    row-gap: 15px;
  }
  .service-tag {
    margin: 0;
  }
  .service-row h3 {
    font-size: 31px;
    margin: 2px 0 0;
  }
  .service-row p {
    margin: 0;
    padding: 0;
    font-size: 14px;
  }
  .service-mark,
  .service-mark--grid {
    right: 18px;
    bottom: 20px;
    width: 48px;
    height: 48px;
  }
}

/* Compact player signal matrix */
.players {
  min-height: auto;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.5fr);
  gap: clamp(50px, 6vw, 105px);
  align-items: center;
  padding-top: 82px;
  padding-bottom: 82px;
}
.players-intro h2 {
  font-size: clamp(58px, 5.7vw, 88px);
  line-height: 0.88;
  margin: 34px 0 28px;
}
.players-intro h2 span {
  color: #6e6e6e;
}
.players-intro > p {
  max-width: 460px;
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.55;
}
.players-cta {
  margin-top: 24px;
  background: #222;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.value-console {
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
}
.console-head {
  height: 52px;
  padding: 0 20px;
}
.console-main {
  height: 190px;
  justify-content: space-evenly;
  background-size: 30px 30px;
}
.radar {
  width: 150px;
  height: 150px;
}
.radar span {
  inset: 18px;
}
.radar span:nth-child(2) {
  inset: 40px;
}
.radar span:nth-child(3) {
  inset: 64px;
}
.console-stat strong {
  font-size: 72px;
}
.console-values {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.console-values > div {
  position: relative;
  min-height: 175px;
  padding: 20px 18px;
  border-right: 1px solid #383838;
  transition: background 0.25s ease;
}
.console-values > div:last-child {
  border-right: 0;
}
.console-values > div:after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}
.console-values > div:hover {
  background: #151515;
}
.console-values > div:hover:after {
  transform: scaleX(1);
}
.console-values span {
  margin: 10px 0;
}
.console-values p {
  font-size: 12px;
  line-height: 1.45;
}
@media (max-width: 1399px) {
  .console-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .console-values > div {
    min-height: 145px;
  }
}
@media (max-width: 1100px) {
  .players {
    grid-template-columns: 1fr;
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .players-intro {
    max-width: 720px;
  }
  .value-console {
    margin-top: 0;
  }
}
@media (max-width: 720px) {
  .players {
    padding: 64px 20px;
    gap: 36px;
  }
  .players .value-console {
    margin-top: 40px;
  }
  .players-intro h2 {
    font-size: 50px;
    margin: 28px 0 24px;
  }
  .console-main {
    height: 165px;
  }
  .radar {
    width: 125px;
    height: 125px;
  }
  .radar span {
    inset: 15px;
  }
  .radar span:nth-child(2) {
    inset: 33px;
  }
  .radar span:nth-child(3) {
    inset: 53px;
  }
  .console-stat strong {
    font-size: 58px;
  }
  .console-values {
    grid-template-columns: 1fr;
  }
  .console-values > div {
    min-height: auto;
    padding: 20px;
    border-right: 0;
  }
}

/* Readable 2×2 player principles */
.console-main {
  position: relative;
  height: 165px;
}
.console-main:after {
  content: "";
  position: absolute;
  left: 37%;
  right: 37%;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 60, 24, 0),
    rgba(255, 60, 24, 0.75),
    rgba(255, 60, 24, 0)
  );
  pointer-events: none;
}
.radar,
.console-stat {
  position: relative;
  z-index: 1;
}
.radar {
  width: 128px;
  height: 128px;
}
.radar span {
  inset: 15px;
}
.radar span:nth-child(2) {
  inset: 34px;
}
.radar span:nth-child(3) {
  inset: 55px;
}
.console-stat strong {
  font-size: 78px;
}
.console-values {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.console-values > div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 20px;
  align-content: start;
  min-height: 170px;
  padding: 30px 32px;
}
.console-values > div:nth-child(2n) {
  border-right: 0;
}
.console-values > div > b {
  grid-column: 1;
  grid-row: 1/3;
  color: var(--orange);
  font: 500 26px/1 var(--mono);
}
.console-values > div > span {
  grid-column: 2;
  margin: 0 0 9px;
  font: 700 14px/1.15 var(--mono);
}
.console-values > div > p {
  grid-column: 2;
  margin: 0;
  max-width: 430px;
  color: #a1a1a1;
  font-size: 14px;
  line-height: 1.5;
}
.value-console > .console-values > div:nth-child(-n + 2) {
  border-top: 0;
}
@media (max-width: 720px) {
  .console-main {
    height: 150px;
  }
  .console-main:after {
    left: 34%;
    right: 34%;
  }
  .radar {
    width: 112px;
    height: 112px;
  }
  .radar span {
    inset: 13px;
  }
  .radar span:nth-child(2) {
    inset: 29px;
  }
  .radar span:nth-child(3) {
    inset: 48px;
  }
  .console-stat strong {
    font-size: 58px;
  }
  .console-values {
    grid-template-columns: 1fr;
  }
  .console-values > div {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: auto;
    padding: 25px 22px;
  }
  .console-values > div > p {
    font-size: 13px;
  }
}

/* Our Approach — left-aligned header and unified dividers */
.approach .section-head {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 30px;
  padding-bottom: 52px;
}
.approach .section-head > .section-code,
.approach .section-head > div:nth-child(2) {
  grid-column: 1;
}
.approach .section-head > div:nth-child(2) {
  max-width: 920px;
}
.approach .section-head h2 {
  font-size: clamp(58px, 6vw, 90px);
}
.approach .section-head > div:nth-child(2) > p {
  max-width: 620px;
  margin-top: 18px;
}
.approach-statement {
  border-top-color: var(--line);
  padding-top: 40px;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto;
  align-items: center;
  column-gap: 40px;
}
.approach-statement > p {
  grid-column: 1;
  grid-row: 1;
  max-width: 1100px;
}
.approach-statement > .primary-button {
  grid-column: 2;
  grid-row: 1;
}
@media (max-width: 720px) {
  .approach .section-head {
    gap: 24px;
    padding-bottom: 38px;
  }
  .approach .section-head h2 {
    font-size: 52px;
  }
  .approach-statement {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 18px;
  }
  .approach-statement > p,
  .approach-statement > .primary-button {
    grid-column: 1;
    grid-row: auto;
  }
  .approach-statement > .primary-button {
    justify-self: start;
    margin-top: 10px;
  }
}

/* Never use a Unicode arrow in CTA controls: iOS renders it as an emoji. */
.outline-button:after,
.visual-contact:after,
.footer-cta:after,
.nav-contact:after {
  content: "";
  background-color: var(--orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M9 7h8v8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}
.main-nav a:before {
  content: "";
  width: 0.45em;
  height: 0.45em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3c18' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M9 7h8v8'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

/* Animated menu glyph: two rails converge into a precise close mark. */
.menu-button span {
  transform-origin: center;
  transition:
    transform 0.42s cubic-bezier(0.22, 0.8, 0.24, 1),
    width 0.3s ease,
    background-color 0.25s ease;
}
.menu-button span:first-child {
  transform: translateX(3px);
}
.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}
.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* Shared site header: the same navigation rail is used on every page. */
.site-header {
  position: relative;
  z-index: 7;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto 48px;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: 105px;
}

.site-header > .menu-button {
  grid-column: 3;
}

.header-status {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.header-status__location {
  color: #777;
}

.header-status__location::before {
  content: "—";
  margin-right: 8px;
  color: var(--orange);
}

.header-status__online {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.header-status__online::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 60, 24, 0.75);
}

.header-contact {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.header-contact__signal {
  position: relative;
  display: block;
  width: 54px;
  height: 34px;
}

.header-contact__signal i {
  position: absolute;
  top: 0;
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, var(--orange) 0 12%, transparent 13%),
    linear-gradient(145deg, #262626 0 48%, var(--orange) 49% 62%, #0e0e0e 63%);
}

.header-contact__signal i:first-child {
  left: 0;
}

.header-contact__signal i:last-child {
  right: 0;
  background:
    radial-gradient(circle at 50% 45%, #fff 0 10%, transparent 11%),
    linear-gradient(215deg, var(--orange), #1b1b1b 62%);
}

/* Compact CTA shared by the top navigation on every page. */
.header-contact {
  gap: 15px;
  min-height: 58px;
  padding: 0 7px 0 22px;
  border-radius: 18px;
  background: #202020;
  color: var(--white);
}

.header-contact__signal {
  order: 2;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background-color: var(--orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M9 7h8v8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

.header-contact__signal i {
  display: none;
}

.header-contact__copy {
  display: grid;
}

.header-contact__copy strong,
.header-contact__copy small {
  font: 700 9px/1.15 var(--mono);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.header-contact__copy small {
  color: #858585;
}

.header-contact:hover .header-contact__copy strong,
.header-contact:focus-visible .header-contact__copy strong {
  color: var(--orange);
}

.header-contact:focus-visible,
.brand:focus-visible,
.menu-button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.menu-open .header-status,
.menu-open .header-contact {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr 48px;
    gap: 20px;
  }

  .site-header > .menu-button {
    grid-column: 2;
  }

  .header-status,
  .header-contact {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 82px;
  }

  .menu-open .site-header {
    inset: 7px 7px auto;
    height: 82px;
    padding: 0 20px;
  }

  body.menu-open:not(.about-page) .site-header {
    width: auto;
  }

  .menu-button {
    min-width: 48px;
    min-height: 48px;
  }
}

/* Unified vertical rhythm for every main content section */
:root {
  --section-space-y: 82px;
}
main > .page-panel,
main > .dark-section {
  padding-top: var(--section-space-y);
  padding-bottom: var(--section-space-y);
}
@media (max-width: 720px) {
  :root {
    --section-space-y: 68px;
  }
}

/* Approved friendly robot pair: calm host in section 02, welcoming host in careers. */
.belief-character {
  left: 0;
  top: 32px;
  width: 50%;
  height: calc(100% - 32px);
  object-fit: contain;
  object-position: center bottom;
}
.join-character > img {
  top: 34px;
  right: 2%;
  bottom: 0;
  left: auto;
  width: 96%;
  height: calc(100% - 34px);
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
}
@media (max-width: 1100px) {
  .belief-character {
    left: 0;
    width: 48%;
    height: calc(100% - 28px);
  }
  .join-character > img {
    top: 24px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 24px);
    object-position: center bottom;
  }
}
@media (max-width: 720px) {
  .belief-character {
    position: relative;
    left: 0;
    top: auto;
    width: 100%;
    height: 500px;
    margin: 0 0 24px;
    object-position: center bottom;
  }
  .join-character > img {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center bottom;
    transform: translateX(-50%);
  }
}

/* Future system — networked gaming map */
main > .future {
  min-height: auto;
  align-items: start;
  column-gap: clamp(55px, 7vw, 120px);
  padding-bottom: 145px;
}
.future-meta {
  bottom: 30px;
  left: 6vw;
  right: 6vw;
}
.future-orb {
  height: min(600px, 42vw);
  min-height: 480px;
  left: clamp(-130px, -8vw, -70px);
  top: 0;
}
.future-copy {
  align-self: center;
}
.future-bridge {
  position: absolute;
  z-index: 3;
  left: calc(50% - 126px);
  top: 47%;
  width: 190px;
  min-height: 278px;
  padding: 20px;
  border: 1px solid #3a3a3a;
  border-radius: 22px;
  background: rgba(13, 13, 13, 0.92);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.38);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}
.future-bridge__head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 14px;
  border-bottom: 1px solid #303030;
  color: #969696;
  font: 700 8px var(--mono);
}
.future-bridge__head i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
}
.future-bridge__signal {
  position: relative;
  width: 124px;
  height: 124px;
  margin: 22px auto;
  border: 1px solid #393939;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.future-bridge__signal:before,
.future-bridge__signal:after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(255, 60, 24, 0.4);
  border-radius: 50%;
}
.future-bridge__signal:after {
  inset: 40px;
  border-style: solid;
  background: rgba(255, 60, 24, 0.08);
}
.future-bridge__signal > span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 9px rgba(255, 60, 24, 0.75);
}
.future-bridge__signal > span:nth-child(1) {
  left: -4px;
  top: 58px;
}
.future-bridge__signal > span:nth-child(2) {
  right: -4px;
  top: 58px;
}
.future-bridge__signal > span:nth-child(3) {
  left: 58px;
  top: -4px;
}
.future-bridge__signal > span:nth-child(4) {
  left: 58px;
  bottom: -4px;
}
.future-bridge__signal b {
  position: relative;
  z-index: 2;
  color: white;
  font: 700 22px var(--mono);
}
.future-bridge__foot {
  display: grid;
  gap: 6px;
  color: #777;
  font: 700 8px var(--mono);
}
.future-bridge__foot strong {
  color: var(--orange);
  font-weight: 700;
}
@media (max-width: 1350px) {
  .future-bridge {
    display: none;
  }
}
.future-system {
  width: min(100%, 600px);
  height: auto;
  color: rgba(255, 255, 255, 0.055);
  overflow: visible;
}
.future-system__frame {
  fill: #121212;
  stroke: #3a3a3a;
  stroke-width: 1.5;
}
.future-system__grid {
  color: rgba(255, 255, 255, 0.055);
}
.future-system__orbit,
.future-system__links path,
.future-system__hex {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1.5;
}
.future-system__orbit--b {
  stroke: rgba(255, 60, 24, 0.48);
  stroke-dasharray: 6 13;
  animation: futureFlow 16s linear infinite;
}
.future-system__links path {
  stroke: rgba(255, 60, 24, 0.28);
}
.future-system__node circle:first-child {
  fill: var(--orange);
}
.future-system__pulse {
  fill: none;
  stroke: rgba(255, 60, 24, 0.4);
  transform-box: fill-box;
  transform-origin: center;
  animation: futurePulse 3.2s ease-out infinite;
}
.future-system__node:nth-of-type(3) .future-system__pulse {
  animation-delay: 0.8s;
}
.future-system__node:nth-of-type(4) .future-system__pulse {
  animation-delay: 1.6s;
}
.future-system__node:nth-of-type(5) .future-system__pulse {
  animation-delay: 2.4s;
}
.future-system__node text {
  fill: #7f7f7f;
  font: 700 10px var(--mono);
  letter-spacing: 0.08em;
}
.future-system__halo {
  fill: none;
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 1.5;
  stroke-dasharray: 2 8;
}
.future-system__hex {
  stroke: rgba(255, 60, 24, 0.75);
}
.future-system__core-glow {
  fill: rgba(255, 60, 24, 0.5);
  filter: url(#future-glow);
}
.future-system__core {
  stroke: #ff6a47;
  stroke-width: 1.5;
}
.future-system__logo {
  fill: white;
}
.future-copy h2 {
  font-size: clamp(43px, 5.2vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.065em;
  margin: 34px 0 38px;
}
.future-copy h2 span {
  color: #6e6e6e;
}
.future-copy > p {
  color: #929292;
}
.future-cta {
  margin-top: 24px;
  background: #222;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
@keyframes futureFlow {
  to {
    stroke-dashoffset: -190;
  }
}
@keyframes futurePulse {
  0% {
    opacity: 0.85;
    transform: scale(0.55);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}
@media (max-width: 720px) {
  main > .future {
    padding-bottom: 68px;
  }
  .future-orb {
    height: 390px;
    min-height: 390px;
    left: 0;
    top: 0;
    margin-bottom: 45px;
  }
  .future-system {
    width: min(100%, 430px);
  }
  .future-copy {
    align-self: auto;
  }
  .future-copy h2 {
    font-size: 42px;
    margin: 28px 0 32px;
  }
}

/* Unified section marker — northeast arrow */
.section-code .code-icon {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  box-shadow: none;
  clip-path: polygon(32% 0, 100% 0, 100% 68%, 82% 68%, 82% 30%, 18% 94%, 6% 82%, 70% 18%, 32% 18%);
}

.footer-top {
  min-height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font: 700 9px var(--mono);
}
.footer-top b {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--orange);
  color: white;
  display: grid;
  place-items: center;
  font: 500 17px var(--display);
  transition: transform 0.25s ease;
}
.footer-top:hover b {
  transform: translateY(-3px);
}

/* Career network: a live talent system rather than a flat poster */
.join-board {
  min-height: 560px;
  padding: 0;
  border: 1px solid #323232;
  border-radius: 28px;
  background:
    radial-gradient(circle at 38% 48%, rgba(255, 60, 24, 0.18), transparent 27%),
    linear-gradient(135deg, #181818 0 62%, #101010 62% 100%);
  color: white;
  box-shadow: 0 28px 70px rgba(20, 20, 20, 0.16);
  isolation: isolate;
}
.join-board:before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.8;
  mask-image: linear-gradient(to bottom, black 15%, transparent 88%);
}
.join-board:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 210px;
  height: 210px;
  right: -80px;
  bottom: -95px;
  border-radius: 50%;
  border: 42px solid rgba(255, 60, 24, 0.92);
  filter: drop-shadow(0 0 35px rgba(255, 60, 24, 0.26));
}
.join-board__top,
.join-board__bottom {
  position: relative;
  z-index: 3;
  min-height: 64px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 700 9px var(--mono);
}
.join-board__top {
  border-bottom: 1px solid #343434;
}
.join-board__bottom {
  border-top: 1px solid #343434;
  color: #858585;
}
.join-board__status {
  display: flex;
  align-items: center;
  gap: 9px;
}
.join-board__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 14px var(--orange);
}
.join-board__stage {
  position: relative;
  z-index: 2;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(170px, 0.8fr);
  align-items: center;
  padding: 32px clamp(26px, 3vw, 48px);
  gap: clamp(24px, 3vw, 52px);
}
.join-orbit {
  position: relative;
  width: min(330px, 100%);
  aspect-ratio: 1;
  margin: auto;
}
.join-orbit__ring,
.join-orbit__axis {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.join-orbit__ring--inner {
  inset: 27%;
  border-style: dashed;
  border-color: rgba(255, 60, 24, 0.62);
  animation: joinSpin 16s linear infinite reverse;
}
.join-orbit__axis {
  inset: 50% 10% auto;
  height: 1px;
  border: 0;
  border-top: 1px solid rgba(255, 60, 24, 0.36);
  border-radius: 0;
  transform-origin: center;
}
.join-orbit__axis--a {
  transform: rotate(42deg);
}
.join-orbit__axis--b {
  transform: rotate(-42deg);
}
.join-orbit__core {
  position: absolute;
  inset: 34%;
  border: 1px solid var(--orange);
  background: radial-gradient(circle, rgba(255, 60, 24, 0.92), #32120c 58%, #151515 60%);
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 22px rgba(255, 60, 24, 0.45));
}
.join-orbit__core svg {
  width: 38px;
  fill: white;
}
.join-orbit__node {
  position: absolute;
  padding-top: 14px;
  color: #8b8b8b;
  font: 700 8px var(--mono);
  letter-spacing: 0.04em;
}
.join-orbit__node:before {
  content: "";
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(255, 60, 24, 0.12);
}
.join-orbit__node--product {
  left: 4%;
  top: 18%;
}
.join-orbit__node--product:before {
  left: 0;
}
.join-orbit__node--tech {
  right: 3%;
  top: 18%;
  text-align: right;
}
.join-orbit__node--tech:before {
  right: 0;
}
.join-orbit__node--creative {
  left: 4%;
  bottom: 14%;
}
.join-orbit__node--creative:before {
  left: 0;
}
.join-orbit__node--ops {
  right: 3%;
  bottom: 14%;
  text-align: right;
}
.join-orbit__node--ops:before {
  right: 0;
}
.join-signal {
  position: relative;
  min-height: 230px;
  padding: 28px 24px;
  border: 1px solid #3a3a3a;
  border-radius: 22px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.join-signal:before {
  content: "07";
  position: absolute;
  right: -8px;
  bottom: -25px;
  color: rgba(255, 255, 255, 0.035);
  font: 700 150px/1 var(--mono);
}
.join-signal span,
.join-signal small {
  position: relative;
  font: 700 8px var(--mono);
  color: #858585;
}
.join-signal span:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
}
.join-signal strong {
  position: relative;
  font-size: clamp(24px, 2.1vw, 36px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.join-signal small {
  color: var(--orange);
}
@keyframes joinSpin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1100px) {
  .join-board__stage {
    grid-template-columns: 1fr;
  }
  .join-signal {
    min-height: 150px;
  }
  .join-orbit {
    width: min(280px, 80vw);
  }
}
@media (max-width: 720px) {
  .join-board {
    min-height: 520px;
  }
  .join-board__stage {
    padding: 24px 18px;
  }
  .join-board__bottom {
    gap: 16px;
  }
  .join-board__bottom span:last-child {
    display: none;
  }
  .join-orbit {
    width: 245px;
  }
  .join-signal {
    min-height: 135px;
  }
  .join-signal strong {
    font-size: 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .join-orbit__ring--inner {
    animation: none;
  }
}

/* Careers character — action gesture points back to the contact CTA */
.join {
  overflow: hidden;
  align-items: stretch;
}
.join-copy {
  position: relative;
  z-index: 3;
  align-self: center;
}
.join-character {
  position: relative;
  min-height: 590px;
  align-self: end;
  isolation: isolate;
}
.join-character:before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 10% -20% 0 8%;
  background-image:
    linear-gradient(rgba(23, 23, 23, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.065) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 62% 48%, black, transparent 67%);
}
.join-character:after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 2%;
  top: 15%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 60, 24, 0.17),
    rgba(255, 60, 24, 0.04) 38%,
    transparent 68%
  );
}
.join-character > img {
  position: absolute;
  z-index: 2;
  right: -5%;
  bottom: calc(-1 * clamp(90px, 7vw, 110px));
  width: min(760px, 120%);
  height: auto;
  max-width: none;
  filter: contrast(1.035);
  user-select: none;
  pointer-events: none;
}
.join-character__orbit {
  position: absolute;
  z-index: 1;
  right: 1%;
  top: 14%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 23, 23, 0.18);
  border-radius: 50%;
}
.join-character__orbit span {
  position: absolute;
  inset: 16%;
  border: 1px dashed rgba(255, 60, 24, 0.4);
  border-radius: 50%;
}
.join-character__orbit span:nth-child(2) {
  inset: 34%;
  border-style: solid;
  border-color: rgba(23, 23, 23, 0.14);
}
.join-character__orbit i {
  position: absolute;
  left: 50%;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.join-character__status {
  position: absolute;
  z-index: 4;
  left: 2%;
  bottom: 32px;
  padding: 14px 16px;
  border: 1px solid #d1d1cd;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 9px;
  font: 700 8px var(--mono);
}
.join-character__status > i {
  grid-row: 1/3;
  align-self: center;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 60, 24, 0.65);
}
.join-character__status span {
  color: #777;
}
.join-character__status b {
  color: var(--black);
}
@media (max-width: 1100px) {
  .join-character {
    min-height: 520px;
    margin-top: 35px;
  }
  .join-character > img {
    right: 0;
    width: min(690px, 105%);
    bottom: -85px;
  }
}
@media (max-width: 720px) {
  .join-character {
    min-height: 440px;
    margin-top: 28px;
  }
  .join-character > img {
    width: 125%;
    right: -20%;
    bottom: -74px;
  }
  .join-character__status {
    left: 0;
    bottom: 18px;
  }
  .join-character__orbit {
    right: -5%;
    width: 72%;
  }
}

/* Careers composition: copy 50% / complete character 50% */
.join {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  min-height: 760px;
  padding: 0 0 0 clamp(28px, 6vw, 110px);
}
.join-copy {
  align-self: center;
  padding: clamp(70px, 8vw, 120px) clamp(36px, 5vw, 90px) clamp(70px, 8vw, 120px) 0;
}
.join-character {
  align-self: stretch;
  min-height: 760px;
  margin: 0;
  overflow: hidden;
  border-left: 0;
}
.join-character > img {
  top: 26px;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 118%;
  max-width: 100%;
  object-fit: contain;
  object-position: center top;
  filter: contrast(1.035);
}
.join-character__orbit,
.join-character__status {
  display: none;
}
@media (max-width: 1100px) {
  .join {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .join-copy {
    padding: 80px 0 25px;
  }
  .join-character {
    min-height: 620px;
    border-left: 0;
  }
  .join-character > img {
    top: 20px;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 114%;
    object-fit: contain;
    object-position: center top;
  }
}
@media (max-width: 720px) {
  .join {
    padding: 0 20px;
  }
  .join-copy {
    padding: 72px 0 10px;
  }
  .join-character {
    min-height: 480px;
    margin: 0;
  }
  .join-character > img {
    top: 18px;
    right: -6%;
    bottom: auto;
    left: auto;
    width: 112%;
    height: 110%;
    max-width: none;
    object-position: center top;
  }
}

/* Character is an overlay, not a separate bordered column */
.join {
  position: relative;
  display: block;
  min-height: 760px;
  padding: 0 clamp(28px, 6vw, 110px);
  overflow: hidden;
}
.join-copy {
  position: relative;
  z-index: 3;
  width: 50%;
  min-height: 760px;
  padding: clamp(70px, 8vw, 120px) clamp(34px, 4vw, 74px) clamp(70px, 8vw, 120px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.join-copy .primary-button {
  align-self: flex-start;
  width: auto;
}
.join-copy h2 {
  background: linear-gradient(96deg, var(--orange) 0%, #ff6b27 38%, #8b3a20 64%, var(--black) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 0.9;
  padding-bottom: 0.08em;
}
.join-character {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  width: 62%;
  min-height: 0;
  margin: 0;
  border: 0 !important;
  pointer-events: none;
}
.join-character > img {
  top: 32px;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 128%;
  max-width: 100%;
  object-fit: contain;
  object-position: center top;
}
@media (max-width: 1100px) {
  .join {
    display: block;
    padding: 0 20px;
  }
  .join-copy {
    width: 100%;
    min-height: auto;
    padding: 80px 0 20px;
  }
  .join-character {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 600px;
  }
  .join-character > img {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 120%;
    object-position: center top;
  }
}
@media (max-width: 720px) {
  main > .join {
    min-height: 0;
    padding-bottom: 30px !important;
  }
  .join-copy {
    padding: 72px 0 10px;
  }
  .join-character {
    height: 580px;
    min-height: 580px;
    margin: 0;
    overflow: hidden;
  }
  .join-character > img {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    transform: translateX(-50%);
  }
}
.form-error {
  min-height: 18px;
  margin: 4px 0 0;
  color: #b8321a;
  font: 700 10px/1.5 var(--mono);
}
.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Keep the form usable on short screens without showing a distracting rail. */
.modal-content {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.modal-content::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.success-mark {
  background: #22a968;
  color: white;
}

.button-arrow {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Mobile rhythm: compact hero ending and borderless approach statement. */
@media (max-width: 720px) {
  .hero-panel {
    min-height: auto;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero-actions {
    margin-top: 32px;
  }
  .hero-panel > .ticker {
    margin-top: 44px;
  }
  .approach-statement {
    margin-top: 24px;
    padding-top: 0;
    border-top: 0;
  }
}

/* Final robot placement overrides. */
.belief-character {
  left: -8%;
  top: 0;
  bottom: auto;
  width: 70%;
  height: 210%;
  max-width: none;
  object-fit: contain;
  object-position: center top;
}
.join-character > img {
  top: 32px;
  right: 0;
  bottom: auto;
  left: 0;
  width: 105%;
  height: 165%;
  max-width: none;
  object-fit: contain;
  object-position: center top;
  transform: none;
}
@media (max-width: 1100px) {
  .belief-character {
    left: -5%;
    width: 52%;
    height: 148%;
  }
  .join-character > img {
    top: 20px;
    right: 0;
    bottom: auto;
    left: 0;
    width: 105%;
    height: 150%;
    object-position: center top;
  }
}
@media (max-width: 720px) {
  .belief-character {
    position: relative;
    left: 0;
    top: auto;
    width: 100%;
    height: 500px;
    margin: 0 0 24px;
    object-position: center bottom;
  }
  .join-character > img {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center bottom;
    transform: translateX(-50%);
  }
}
