:root {
  --navy: #042663;
  --navy-deep: #031b49;
  --blue: #04affb;
  --cyan: #5edeff;
  --ice: #e4f9ff;
  --ice-2: #c9f2ff;
  --pink: #ff00dd;
  --pink-soft: #ffd7fa;
  --tan: #b88c71;
  --cream: #fffdf8;
  --white: #ffffff;
  --ink: #042663;
  --muted: #35527d;
  --line: #042663;
  --display: "Rockwell Extra Bold", Rockwell, "Arial Rounded MT Bold", "Trebuchet MS", Georgia, serif;
  --body: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --shadow: 8px 8px 0 var(--navy);
  --shadow-small: 4px 4px 0 var(--navy);
  --radius: 30px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(94, 222, 255, .75) 0 7px, transparent 8px),
    radial-gradient(circle at 90% 14%, rgba(255, 0, 221, .16) 0 120px, transparent 121px),
    linear-gradient(180deg, var(--ice), #f6fdff 38%, var(--cream));
  background-size: 54px 54px, auto, auto;
  background-position: -8px -10px, 0 0, 0 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--pink); color: var(--navy); }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  transform: translateY(-220%);
  padding: .75rem 1rem;
  color: var(--navy);
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: 999px;
  box-shadow: var(--shadow-small);
}
.skip-link:focus { transform: none; }

.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { position: relative; padding: clamp(5rem, 9vw, 9rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1.1rem;
  color: var(--navy);
  font-weight: 900;
  font-size: .8rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: .72rem;
  background: var(--pink);
  border: 2px solid var(--navy);
  border-radius: 999px;
  transform: rotate(-7deg);
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3.6rem, 8vw, 8.6rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2.45rem, 5vw, 5rem); margin-bottom: 1.4rem; }
h3 { font-size: clamp(1.45rem, 2.3vw, 2.1rem); }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.12rem, 1.8vw, 1.42rem); }
.muted { color: var(--muted); }
.gradient-text {
  display: inline-block;
  color: var(--pink);
  text-shadow: 3px 3px 0 var(--navy);
  transform: rotate(-1deg);
}

.button-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 54px;
  padding: .82rem 1.3rem;
  border: 3px solid var(--navy);
  border-radius: 999px;
  box-shadow: var(--shadow-small);
  font-family: var(--body);
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--navy); }
.button:focus-visible { outline: 4px solid var(--pink); outline-offset: 4px; }
.button--primary { color: var(--navy); background: var(--blue); }
.button--primary:hover { background: var(--cyan); }
.button--bright { color: var(--navy); background: var(--pink); }
.button--bright:hover { background: var(--pink-soft); }
.button--ghost { color: var(--navy); background: var(--white); }
.button svg { width: 1.05rem; height: 1.05rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(228, 249, 255, .94);
  border-bottom: 3px solid var(--navy);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 96px;
  padding-block: .7rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem .85rem;
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: 20px;
  box-shadow: 4px 4px 0 var(--navy);
  color: var(--navy);
  text-decoration: none;
}
.brand-logo {
  display: block;
  height: 68px;
  width: auto;
  max-width: min(120px, 26vw);
}
.site-nav { display: flex; align-items: center; gap: 1.25rem; }
.site-nav a { font-size: .94rem; font-weight: 900; text-decoration: none; }
.site-nav a:not(.button) { border-bottom: 3px solid transparent; }
.site-nav a:not(.button):hover { border-bottom-color: var(--pink); }
.nav-toggle { display: none; color: var(--navy); border: 0; background: transparent; padding: .45rem; }

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 11.5rem 0 6.5rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: 7%;
  border: 42px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--navy), inset 0 0 0 4px var(--navy);
  transform: rotate(12deg);
  opacity: .7;
}
.hero::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 30px;
  right: 7%;
  top: 17%;
  background: var(--pink);
  border: 4px solid var(--navy);
  border-radius: 999px;
  transform: rotate(18deg);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 .line { display: block; }
.hero .subhead { max-width: 690px; color: var(--muted); font-size: clamp(1.14rem, 1.7vw, 1.42rem); }
.signal-list { display: flex; flex-wrap: wrap; gap: .72rem; margin: 2.3rem 0 0; padding: 0; list-style: none; }
.signal-list li {
  padding: .5rem .82rem;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 2px 2px 0 var(--navy);
  font-size: .82rem;
  font-weight: 900;
}
.signal-list li:nth-child(2n) { background: var(--pink-soft); }
.signal-list li:nth-child(3n) { background: var(--cyan); }

.hero-stage { position: relative; min-height: 690px; }
.hero-panel {
  position: absolute;
  inset: 7% 10% 7% 6%;
  overflow: hidden;
  border: 5px solid var(--navy);
  border-radius: 40px;
  background: var(--blue);
  box-shadow: 12px 12px 0 var(--navy);
  transform: rotate(-1.4deg);
  transition: transform .25s ease-out;
}
.hero-panel::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(4, 38, 99, .85) 100%);
}
.hero-panel::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 95px;
  height: 95px;
  right: -24px;
  top: -24px;
  border: 18px solid var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--navy);
}
.hero-panel img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.12) contrast(1.02); }
.hero-panel-copy { position: absolute; z-index: 4; left: 2rem; right: 2rem; bottom: 2rem; color: var(--white); max-width: 68%; }
.hero-panel-copy strong { display: block; font-family: var(--display); font-size: clamp(1.55rem, 3vw, 2.7rem); line-height: 1; letter-spacing: -.035em; }
.hero-panel-copy span { display: block; margin-top: .62rem; color: var(--ice); }
.float-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .9rem;
  border: 3px solid var(--navy);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--navy);
}
.float-card img {
  display: block;
  margin-inline: auto;
  max-width: 100%;
  max-height: 58px;
  width: auto;
  object-fit: contain;
  object-position: center;
}
.float-card--games {
  left: -6%;
  top: 5%;
  width: 142px;
  padding: .55rem;
  background: var(--white);
  animation: floatGames 6.8s ease-in-out infinite;
}
.float-card--imersar {
  right: -9%;
  top: 8%;
  width: 176px;
  min-height: 98px;
  background: #071326;
  animation: floatImersar 7.6s ease-in-out infinite;
}
.float-card--crowd {
  right: -8%;
  bottom: 4%;
  width: 246px;
  min-height: 92px;
  background: var(--navy);
  animation: floatCrowd 7s ease-in-out infinite;
}
.float-card--dot {
  left: 1%;
  bottom: 4%;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--pink);
  animation-delay: -.8s;
}
.float-card--dot::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 4px solid var(--navy);
  border-radius: 50%;
  background: var(--ice);
}
@keyframes floatGames {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-3deg); }
  50% { transform: translate3d(-8px, -18px, 0) rotate(2deg); }
}
@keyframes floatImersar {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(2deg); }
  50% { transform: translate3d(14px, -24px, 0) rotate(-3deg); }
}
@keyframes floatCrowd {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1.5deg); }
  50% { transform: translate3d(16px, -18px, 0) rotate(2.5deg); }
}
@keyframes floatProduct {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(6deg); }
  50% { transform: translate3d(10px, -20px, 0) rotate(11deg); }
}
@keyframes bobPlay {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-5deg); }
  50% { transform: translate3d(-8px, -10px, 0) rotate(-2deg); }
}

.manifesto {
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-block: 5px solid var(--navy);
}
.manifesto::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: -150px;
  top: -140px;
  border: 58px solid var(--blue);
  border-radius: 50%;
  opacity: .85;
}
.manifesto::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 65px;
  right: -70px;
  bottom: 70px;
  border: 4px solid var(--white);
  border-radius: 999px;
  background: var(--pink);
  transform: rotate(-18deg);
}
.manifesto-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}
.manifesto .eyebrow { color: var(--ice); }
.manifesto .eyebrow::before { border-color: var(--white); }
.manifesto h2 { margin-bottom: 0; }
.manifesto p { color: var(--ice); font-size: clamp(1.1rem, 1.8vw, 1.38rem); }
.manifesto-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.manifesto-step {
  padding: 1.3rem;
  color: var(--navy);
  background: var(--ice);
  border: 3px solid var(--white);
  border-radius: 20px;
  box-shadow: 5px 5px 0 var(--blue);
}
.manifesto-step:nth-child(2), .manifesto-step:nth-child(3) { background: var(--pink-soft); }
.manifesto-step b { display: block; margin-bottom: .3rem; font-family: var(--display); color: var(--navy); }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 3rem; }
.section-head > div:first-child { max-width: 800px; }
.section-head p { max-width: 440px; margin-bottom: .45rem; color: var(--muted); }

.brand-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.brand-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: clamp(1.55rem, 3vw, 2.35rem);
  color: var(--navy);
  background: var(--white);
  border: 4px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.brand-card:nth-child(2) { background: var(--pink-soft); }
.brand-card:nth-child(3) { background: #071326; }
.brand-card:hover { transform: translate(4px, 4px); box-shadow: 4px 4px 0 var(--navy); }
.brand-card::before {
  content: "";
  position: absolute;
  width: 235px;
  height: 235px;
  right: -92px;
  top: -90px;
  border: 30px solid var(--blue);
  border-radius: 50%;
  opacity: .75;
}
.brand-card:nth-child(2)::before { border-color: var(--pink); }
.brand-card:nth-child(3)::before { border-color: var(--cyan); }
.brand-card .logo-frame { position: relative; z-index: 1; display: flex; align-items: center; justify-content: flex-start; height: 145px; margin-bottom: 2rem; }
.brand-card .logo-frame img { max-height: 130px; max-width: 270px; object-fit: contain; }
.brand-card h3 { position: relative; z-index: 1; }
.brand-card p { position: relative; z-index: 1; color: var(--muted); }
.brand-tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 1.2rem;
  padding: .42rem .7rem;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--navy);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.link-arrow {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 3px 3px 0 var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
}
.brand-card--crowd { color: var(--white); background: var(--navy); border-color: var(--navy); }
.brand-card--crowd::before { border-color: var(--pink); }
.brand-card--crowd p { color: var(--ice); }
.brand-card--crowd .brand-tag { color: var(--navy); background: var(--cyan); }
.brand-card--crowd .link-arrow { color: var(--navy); background: var(--cyan); border-color: var(--white); box-shadow: 3px 3px 0 var(--white); }
.brand-card--imersar {
  color: var(--white);
  background: #071326;
  border-color: var(--navy);
}
.brand-card--imersar::before { border-color: var(--cyan); opacity: .9; }
.brand-card--imersar h3 { color: var(--white); }
.brand-card--imersar p { color: var(--ice); }
.brand-card--imersar .brand-tag {
  color: var(--navy);
  background: var(--white);
}
.brand-card--imersar .logo-frame {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 150px;
  margin-bottom: 1.8rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.brand-card--imersar .logo-frame img {
  max-height: 122px;
  max-width: 215px;
  object-fit: contain;
  object-position: center left;
}
.brand-card--imersar .link-arrow {
  color: var(--navy);
  background: var(--pink);
  border-color: var(--white);
  box-shadow: 3px 3px 0 var(--white);
}
.brand-card--crowd .logo-frame {
  height: 175px;
  margin-bottom: 1.65rem;
}
.brand-card--crowd .logo-frame img {
  max-height: 170px;
  max-width: 430px;
}

.build-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.visual-shell {
  position: relative;
  overflow: visible;
  border: 5px solid var(--navy);
  border-radius: 34px;
  background: var(--blue);
  box-shadow: 12px 12px 0 var(--navy);
  transform: rotate(-1deg);
}
.visual-shell img { width: 100%; min-height: 540px; object-fit: cover; border-radius: 28px; }
.visual-shell::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -28px;
  top: -34px;
  border: 4px solid var(--navy);
  border-radius: 50%;
  background: var(--pink);
}
.visual-label {
  position: absolute;
  z-index: 3;
  padding: .72rem .9rem;
  border: 3px solid var(--navy);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--navy);
  font-size: .84rem;
  font-weight: 900;
}
.visual-label--one { left: -24px; top: 12%; transform: rotate(-4deg); }
.visual-label--two { right: -24px; bottom: 9%; background: var(--pink-soft); transform: rotate(3deg); }
.capabilities { display: grid; gap: 1.05rem; margin-top: 2rem; }
.capability {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 3px solid var(--navy);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 4px 4px 0 rgba(4, 38, 99, .22);
}
.capability:nth-child(even) { background: var(--ice); }
.capability-num {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: var(--pink);
  font-family: var(--display);
  font-weight: 900;
}
.capability h3 { margin-bottom: .28rem; font-size: 1.35rem; }
.capability p { margin-bottom: 0; color: var(--muted); }

.frontier {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,.88) 0 18%, transparent 18.2%),
    linear-gradient(180deg, #fff9f2 0%, #ffe4d4 46%, #fff6ef 100%);
  border-block: 5px solid var(--navy);
}
.frontier::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -130px;
  bottom: -140px;
  border: 56px solid rgba(255,0,221,.34);
  border-radius: 50%;
}
.frontier::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 10%;
  width: 190px;
  height: 32px;
  background: rgba(255,215,250,.92);
  border: 4px solid var(--navy);
  border-radius: 999px;
  transform: rotate(-12deg);
}
.frontier-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  gap: clamp(2.8rem, 5.5vw, 6.5rem);
  align-items: center;
}
.frontier-copy { position: relative; z-index: 3; }
.frontier-copy h2 { max-width: 640px; font-size: clamp(3.3rem, 6.3vw, 7rem); }
.frontier-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.frontier-copy .lead { max-width: 680px; color: var(--navy); font-size: clamp(1.16rem, 1.9vw, 1.48rem); }
.frontier-pills { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.7rem; }
.frontier-pills span {
  padding: .52rem .85rem;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 3px 3px 0 var(--navy);
  font-size: .82rem;
  font-weight: 900;
}
.frontier-pills span:nth-child(2n) { background: var(--pink-soft); }
.frontier-scene { position: relative; min-height: 1020px; }
.frontier-scene-shell {
  position: relative;
  min-height: 1020px;
  overflow: hidden;
  border: 5px solid var(--navy);
  border-radius: 44px;
  background: linear-gradient(180deg, #becde9 0%, #f2d1c6 62%, #f9e5d4 100%);
  box-shadow: 16px 16px 0 var(--navy);
}
.frontier-scene-shell::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -86px;
  top: -84px;
  border: 52px solid rgba(94, 222, 255, .95);
  border-radius: 50%;
  z-index: 4;
}
.frontier-scene-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.24) 0%, rgba(255,255,255,.02) 34%, rgba(4,38,99,.34) 100%),
    radial-gradient(circle at 74% 12%, rgba(255,255,255,.78) 0 9%, rgba(255,255,255,0) 19%);
  z-index: 1;
  pointer-events: none;
}
.frontier-landscape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.035);
}
.frontier-atmosphere {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 50% 104%, rgba(4,38,99,.46) 0 16%, transparent 31%),
    linear-gradient(180deg, rgba(4,38,99,.04) 0%, rgba(4,38,99,.22) 55%, rgba(4,38,99,.4) 100%);
  z-index: 2;
}
.frontier-astronaut {
  position: absolute;
  z-index: 3;
  left: 4%;
  bottom: -1%;
  width: min(318px, 42%);
  height: auto;
  filter: drop-shadow(22px 24px 0 rgba(4,38,99,.82));
  transform-origin: bottom center;
  animation: astronaut-drift 9s ease-in-out infinite;
}
.frontier-note {
  position: absolute;
  z-index: 5;
  padding: .72rem .98rem;
  border: 3px solid var(--navy);
  border-radius: 18px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--navy);
}
.frontier-note--one {
  right: 7%;
  top: 11%;
  color: var(--navy);
  background: var(--white);
  transform: rotate(-3deg);
}
.frontier-note--two {
  right: 5%;
  bottom: 10%;
  color: var(--navy);
  background: var(--pink);
  transform: rotate(3deg);
}
@keyframes astronaut-drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(8px, -14px, 0) rotate(.9deg); }
}

.project-showcase {
  --hitl-gold: #d3aa3e;
  --hitl-gold-light: #f7df8b;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 9%, rgba(94, 222, 255, .12) 0 15%, transparent 15.2%),
    radial-gradient(circle at 48% 50%, rgba(94, 222, 255, .13) 0 19%, transparent 19.2%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border-block: 4px solid var(--navy);
}
.project-showcase .wrap {
  width: min(calc(100% - 48px), 1540px);
}
.project-showcase::before,
.project-showcase::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: .44;
}
.project-showcase::before {
  left: 1.8%;
  top: 19%;
  width: 145px;
  height: 335px;
  border-left: 2px solid var(--hitl-gold);
  border-radius: 50%;
  box-shadow: 18px 0 0 -16px var(--hitl-gold), 38px 0 0 -36px var(--hitl-gold);
  transform: rotate(7deg);
}
.project-showcase::after {
  right: 2%;
  bottom: 8%;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(211,170,62,.42);
  border-radius: 50%;
  box-shadow: inset 0 0 0 18px rgba(211,170,62,.06);
}
.project-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(720px, 1.18fr) minmax(430px, .82fr);
  gap: clamp(3.5rem, 5.5vw, 6.5rem);
  align-items: center;
}
.project-media {
  position: relative;
  min-height: 790px;
  isolation: isolate;
}
.project-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 1.5%;
  top: 8%;
  width: 91%;
  height: 79%;
  border: 2px solid rgba(211,170,62,.31);
  border-radius: 46px;
  transform: rotate(-.7deg);
}
.project-frame {
  position: absolute;
  margin: 0;
  overflow: visible;
  border: 4px solid var(--navy);
  border-radius: 30px;
  background: #061326;
  box-shadow: 11px 11px 0 var(--navy), inset 0 0 0 2px var(--hitl-gold);
}
.project-frame::after {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: 4;
  border: 1px solid rgba(247,223,139,.72);
  border-radius: 22px;
  pointer-events: none;
}
.project-frame > figcaption {
  position: absolute;
  z-index: 8;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: .5rem 1.25rem;
  color: var(--hitl-gold-light);
  background: var(--navy);
  border: 2px solid var(--hitl-gold);
  border-radius: 999px;
  box-shadow: 0 0 0 3px var(--navy);
  font-family: Georgia, serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}
.project-frame > figcaption::before,
.project-frame > figcaption::after {
  content: "◆";
  margin-inline: .5rem;
  color: var(--hitl-gold);
  font-size: .52rem;
}
.project-frame--hero {
  z-index: 1;
  left: 4%;
  top: 1%;
  width: 88%;
  height: 54%;
}
.project-frame--hero > figcaption { top: -1.05rem; }
.project-hero-composite {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 25px;
  background: #071427;
}
.project-hero-vr {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(1.08) brightness(.72);
}
.project-hero-library {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 63%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  filter: saturate(.92) contrast(1.07) brightness(.84);
  -webkit-mask-image: linear-gradient(90deg, #000 0 74%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0 74%, transparent 100%);
}
.project-hero-composite::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,10,19,.04), rgba(2,10,19,.16)),
    radial-gradient(circle at 45% 71%, rgba(132,255,81,.18), transparent 32%);
  pointer-events: none;
}
.project-frame--product {
  z-index: 4;
  left: 13%;
  bottom: 1%;
  width: 52%;
  height: 47%;
  background: linear-gradient(145deg, #fffdf7 0%, #f4ecd7 100%);
}
.project-frame--product > figcaption { bottom: -1.05rem; }
.project-product-surface {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 25px;
  background: radial-gradient(circle at 42% 38%, rgba(255,255,255,.98), rgba(249,242,218,.8) 54%, rgba(211,170,62,.16) 100%);
}
.project-product-surface img {
  width: 98%;
  height: 98%;
  object-fit: contain;
  filter: drop-shadow(9px 13px 10px rgba(3,17,42,.34));
  transform: rotate(-3deg);
}
.project-frame--play {
  z-index: 3;
  right: 0;
  bottom: 3%;
  width: 51%;
  height: 35%;
}
.project-frame--play > figcaption { top: -1.05rem; }
.project-frame--play > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  border-radius: 25px;
  filter: saturate(.94) contrast(1.05);
}
.project-device {
  position: absolute;
  z-index: 6;
  left: -1.5%;
  bottom: 12%;
  width: 17%;
  max-height: 46%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(244,229,73,.64)) drop-shadow(7px 9px 0 rgba(4,38,99,.62));
  transform: rotate(-3deg);
}
.project-copy { position: relative; }
.project-copy::before {
  content: "";
  display: block;
  width: 150px;
  height: 18px;
  margin: -.35rem 0 1.35rem;
  background: linear-gradient(var(--hitl-gold), var(--hitl-gold)) center / 100% 1px no-repeat;
  opacity: .9;
}
.project-copy::after {
  content: "❦";
  position: absolute;
  left: 62px;
  top: 2.55rem;
  padding-inline: .45rem;
  color: var(--hitl-gold);
  background: #fbfdfe;
  font-family: Georgia, serif;
  font-size: 1.05rem;
}
.project-copy h2 { font-size: clamp(4rem, 5.7vw, 7rem); }
.project-copy .lead { max-width: 37rem; }
.project-copy .quote {
  position: relative;
  margin: 2rem 0;
  padding: 1.5rem 1.65rem 1.5rem 2.7rem;
  color: var(--navy);
  background: linear-gradient(135deg, #ffe0fb, #f7cbed);
  border: 3px solid var(--navy);
  border-radius: 20px;
  box-shadow: 6px 6px 0 var(--navy), inset 0 0 0 2px rgba(211,170,62,.64);
  font-weight: 800;
}
.project-copy .quote::before {
  content: "“";
  position: absolute;
  left: .75rem;
  top: .35rem;
  color: var(--hitl-gold);
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}
.project-pills { display: flex; flex-wrap: wrap; gap: .62rem; margin: 1.4rem 0 1.8rem; }
.project-pills span {
  padding: .5rem .8rem;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #edf8fb);
  box-shadow: 0 2px 0 rgba(211,170,62,.55);
  font-size: .82rem;
  font-weight: 900;
}
.project-showcase .button-row {
  flex-wrap: nowrap;
  align-items: center;
}
.project-showcase .button {
  position: relative;
  width: auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  border-color: var(--navy);
  box-shadow: 4px 4px 0 var(--navy), inset 0 0 0 2px rgba(211,170,62,.68);
}
.project-showcase .button::before,
.project-showcase .button::after {
  content: "✦";
  color: var(--hitl-gold);
  font-size: .7rem;
}
.project-showcase .button--primary {
  color: var(--white);
  background: linear-gradient(180deg, #149fef, #087bd2);
}

.crowd {
  overflow: hidden;
  color: var(--navy);
  background: var(--blue);
  border-bottom: 5px solid var(--navy);
}
.crowd::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -140px;
  bottom: -180px;
  border: 62px solid var(--pink);
  border-radius: 50%;
  opacity: .8;
}
.crowd::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 34px;
  right: 5%;
  top: 12%;
  border: 4px solid var(--navy);
  border-radius: 999px;
  background: var(--pink-soft);
  transform: rotate(-11deg);
}
.crowd .wrap {
  width: min(calc(100% - 48px), 1380px);
}
.crowd-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(560px, .92fr) minmax(0, 1.08fr);
  gap: clamp(4rem, 6vw, 7rem);
  align-items: center;
}
.crowd-copy,
.crowd-image { min-width: 0; }
.crowd-copy h2 {
  max-width: 12ch;
  font-size: clamp(3.35rem, 4.6vw, 4.8rem);
  overflow-wrap: normal;
  word-break: normal;
}
.crowd-logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(430px, 100%);
  margin-bottom: 2.2rem;
  padding: 1.25rem 1.45rem;
  border: 3px solid var(--navy);
  border-radius: 22px;
  background: var(--navy);
  box-shadow: 6px 6px 0 var(--pink);
}
.crowd-logo-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 205;
  object-fit: contain;
  object-position: center;
}
.crowd .lead { max-width: 34rem; color: var(--navy); }
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; margin: 2rem 0; }
.process-step {
  padding: 1rem .7rem;
  text-align: center;
  border: 3px solid var(--navy);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--navy);
}
.process-step b { display: block; color: var(--pink); font-family: var(--display); font-size: 1.25rem; text-shadow: 1px 1px 0 var(--navy); }
.process-step span { font-weight: 900; }
.crowd-image {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  gap: 1.55rem;
  min-height: 0;
  isolation: isolate;
}
.crowd-image::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 4%;
  top: 8%;
  width: 250px;
  height: 150px;
  opacity: .38;
  background-image: radial-gradient(circle, rgba(228,249,255,.95) 0 3px, transparent 3.5px);
  background-size: 19px 19px;
}
.crowd-top-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(250px, .88fr);
  gap: 1.55rem;
  align-items: stretch;
}
.crowd-image figure { margin: 0; }
.crowd-image img {
  display: block;
  max-width: 100%;
  transform: none;
}

.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }
.audience-card {
  min-height: 330px;
  padding: 1.45rem;
  border: 3px solid var(--navy);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--navy);
}
.audience-card:nth-child(2) { background: var(--ice-2); }
.audience-card:nth-child(3) { background: var(--pink-soft); }
.audience-card:nth-child(4) { background: var(--cyan); }
.audience-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.2rem;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 3px 3px 0 var(--navy);
  font-family: var(--display);
  font-size: 1.4rem;
}
.audience-card h3 { margin-bottom: .7rem; }
.audience-card p { color: var(--muted); }
.audience-card a { font-weight: 900; text-decoration-thickness: 3px; text-underline-offset: 5px; }

.experience { background: var(--ice); }
.experience-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 5px solid var(--navy);
  border-radius: 36px;
  background: var(--white);
  box-shadow: 12px 12px 0 var(--navy);
}
.experience-card > img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; border-right: 5px solid var(--navy); }
.experience-copy { align-self: center; padding: clamp(1.9rem, 4vw, 4rem); }
.experience-copy p { color: var(--muted); }
.sector-list { display: flex; flex-wrap: wrap; gap: .6rem; align-content: flex-start; margin-top: 1.7rem; }
.sector-list span { padding: .52rem .78rem; border: 2px solid var(--navy); border-radius: 999px; background: var(--ice); font-size: .82rem; font-weight: 900; }
.sector-list span:nth-child(3n) { background: var(--pink-soft); }

.final-cta {
  overflow: hidden;
  color: var(--navy);
  background: var(--pink);
  border-block: 5px solid var(--navy);
}
.final-cta::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -170px;
  top: -180px;
  border: 72px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--navy), inset 0 0 0 5px var(--navy);
}
.final-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; }
.final-cta .eyebrow { color: var(--navy); }
.final-cta h2 { max-width: 900px; margin-bottom: 1rem; }
.final-cta p { max-width: 720px; color: var(--navy); }
.contact-link { display: inline-block; margin-top: 1.2rem; color: var(--navy); font-family: var(--display); font-size: clamp(1.2rem, 2vw, 1.65rem); font-weight: 900; text-decoration-thickness: 3px; text-underline-offset: 6px; }
.final-cta .button--bright { background: var(--cyan); }

.site-footer { padding: 3.2rem 0 2rem; color: var(--ice); background: var(--navy-deep); font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(2, .7fr); gap: 3rem; }
.footer-title { margin-bottom: .7rem; color: var(--white); font-family: var(--display); font-size: 1.1rem; font-weight: 900; }
.footer-links { display: grid; gap: .45rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 2.5rem; padding-top: 1.2rem; border-top: 2px solid rgba(228, 249, 255, .24); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }


@media (max-width: 1220px) {
  .crowd .wrap { width: min(calc(100% - 40px), var(--max)); }
  .crowd-grid {
    grid-template-columns: minmax(490px, .9fr) minmax(0, 1.1fr);
    gap: 3.5rem;
  }
  .crowd-copy h2 { font-size: clamp(3.2rem, 5.1vw, 4.35rem); }
  .crowd-logo-panel { width: min(390px, 100%); }
}
@media (max-width: 1050px) {
  .crowd .wrap { width: min(calc(100% - 40px), var(--max)); }
  .hero-grid, .manifesto-grid, .build-grid, .project-grid, .crowd-grid, .frontier-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 590px; width: min(760px, 100%); margin-inline: auto; }
  .manifesto-grid { gap: 2.5rem; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .project-media { min-height: 760px; width: min(820px, 100%); margin-inline: auto; }
  .crowd-grid > :first-child { order: 2; }
  .frontier-copy { max-width: 760px; }
  .frontier-scene { min-height: 900px; width: min(760px, 100%); margin-inline: auto; }
  .frontier-scene-shell { min-height: 900px; }
  .frontier-astronaut { width: min(300px, 40%); }
}

@media (max-width: 780px) {
  body { font-size: 16px; background-size: 72px 72px, auto, auto; }
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .site-header { background: rgba(228, 249, 255, .98); }
  .header-inner { min-height: 88px; padding-block: .5rem; }
  .brand { padding: .45rem .65rem; border-radius: 16px; }
  .brand-logo { height: 60px; max-width: 88px; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 86px;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 3px solid var(--navy);
    border-radius: 20px;
    background: var(--ice);
    box-shadow: 7px 7px 0 var(--navy);
  }
  .site-nav.is-open { display: flex; }
  .site-nav .button { width: 100%; }
  .hero { padding-top: 10rem; }
  .hero::after { right: -45px; top: 13%; }
  .hero-stage { min-height: 560px; }
  .hero-panel { inset: 9% 6% 8% 4%; transform: none; border-radius: 28px; box-shadow: 8px 8px 0 var(--navy); }
  .float-card--games { left: 1%; top: -1%; width: 114px; }
  .float-card--imersar { right: -1%; top: 5%; width: 132px; }
  .float-card--crowd { right: 0; bottom: 2%; width: 190px; }
  .float-card--dot { left: 0; bottom: 1%; width: 64px; height: 64px; }
  .section-head { display: block; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-card { min-height: 390px; box-shadow: 7px 7px 0 var(--navy); }
  .manifesto-steps, .process { grid-template-columns: repeat(2, 1fr); }
  .project-media { min-height: 680px; }
  .project-frame--hero { left: 3%; width: 82%; height: 50%; }
  .project-frame--product { left: 8%; width: 49%; height: 43%; }
  .project-frame--play { width: 55%; height: 33%; }
  .project-device { width: 14%; left: -1%; bottom: 15%; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: auto; }
  .experience-card { grid-template-columns: 1fr; }
  .experience-card > img { min-height: 0; aspect-ratio: 16 / 9; border-right: 0; border-bottom: 5px solid var(--navy); }
  .final-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
  .visual-label--one { left: -5px; }
  .visual-label--two { right: -5px; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(3.2rem, 17vw, 5.2rem); }
  .header-inner { min-height: 80px; padding-block: .4rem; }
  .brand { padding: .35rem .5rem; border-radius: 14px; }
  .brand-logo { height: 52px; max-width: 76px; }
  .site-nav { top: 78px; }
  .hero { padding-top: 9.2rem; }
  .hero-stage { min-height: 450px; }
  .hero-panel-copy { left: 1.2rem; right: 1.2rem; bottom: 1.2rem; }
  .float-card--games { width: 96px; }
  .float-card--imersar { width: 110px; }
  .float-card--crowd { width: 160px; }
  .manifesto-steps, .process { grid-template-columns: 1fr; }
  .capability { grid-template-columns: 48px 1fr; }
  .project-media { min-height: 610px; }
  .project-frame { border-width: 3px; border-radius: 22px; box-shadow: 7px 7px 0 var(--navy), inset 0 0 0 1px var(--hitl-gold); }
  .project-frame::after { inset: 5px; border-radius: 15px; }
  .project-frame--hero { left: 2%; width: 88%; height: 45%; }
  .project-frame--product { left: 3%; bottom: 3%; width: 53%; height: 43%; }
  .project-frame--play { right: 0; bottom: 4%; width: 53%; height: 31%; }
  .project-frame > figcaption { min-width: 0; padding: .36rem .62rem; font-size: .58rem; letter-spacing: .05em; }
  .project-frame > figcaption::before,
  .project-frame > figcaption::after { display: none; }
  .project-device { display: none; }
  .project-hero-library { width: 61%; }
  .project-copy::after { top: 2.35rem; }
  .button { width: 100%; }
  .button-row { align-items: stretch; }
}

@media (max-width: 1250px) {
  .project-showcase .wrap { width: min(calc(100% - 40px), 1240px); }
  .project-grid { grid-template-columns: 1fr; }
  .project-media { min-height: 800px; width: min(900px, 100%); margin-inline: auto; }
  .project-copy { max-width: 820px; margin-inline: auto; }
}
@media (max-width: 780px) {
  .project-showcase .wrap { width: min(calc(100% - 28px), 1240px); }
  .project-media { min-height: 680px; }
  .project-frame--hero { left: 2%; width: 94%; height: 48%; }
  .project-frame--product { left: 4%; width: 55%; height: 43%; }
  .project-frame--play { right: 0; width: 54%; height: 31%; }
  .project-device { display: none; }
  .project-frame > figcaption { min-width: 160px; font-size: .67rem; padding-inline: .75rem; }
  .project-showcase .button-row { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .project-media { min-height: 590px; }
  .project-frame { border-radius: 22px; box-shadow: 7px 7px 0 var(--navy), inset 0 0 0 1px var(--hitl-gold); }
  .project-frame--hero { height: 43%; }
  .project-frame--product { left: 1%; bottom: 3%; width: 58%; height: 42%; }
  .project-frame--play { bottom: 5%; width: 52%; height: 29%; }
  .project-frame > figcaption { min-width: 0; white-space: nowrap; font-size: .58rem; letter-spacing: .05em; }
  .project-copy h2 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .project-showcase .button-row { align-items: stretch; }
  .project-showcase .button { width: 100%; white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* v3: authentic Blue Donut project imagery */
.hero-panel img { object-position: center; }
.hero-panel-copy { max-width: 68%; }
.hero-inset {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 4px solid var(--navy);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--navy);
}
.hero-inset img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-inset--play {
  left: -5%;
  bottom: 2%;
  width: 46%;
  aspect-ratio: 16 / 9;
  animation: bobPlay 7.4s ease-in-out infinite;
}
.float-card--games { left: -6%; top: 4%; width: 128px; padding: .55rem; }
.float-card--games img { max-height: 82px; }
.float-card--imersar { right: -9%; top: 10%; }
.float-card--imersar img { max-height: 46px; max-width: 122px; }
.float-card--crowd { right: -8%; bottom: 5%; }
.float-card--crowd img { max-height: 44px; max-width: 180px; }
.float-card--product {
  right: -1%;
  top: 48%;
  width: 148px;
  padding: .45rem;
  background: #071326;
  animation: floatProduct 7.2s ease-in-out infinite;
}
.float-card--product img { display: block; max-height: none; width: 100%; object-fit: contain; object-position: center; }

.work-section {
  overflow: hidden;
}
.art-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(430px, 1.22fr);
  min-height: 880px;
  margin-bottom: clamp(5rem, 9vw, 9rem);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 110px),
    linear-gradient(28deg, transparent 0 46%, rgba(191,227,236,.85) 46% 46.5%, transparent 46.5% 100%),
    linear-gradient(145deg, #722374 0 38%, #941c81 38% 70%, #b24e97 70% 100%);
  border: 5px solid var(--navy);
  border-radius: 42px;
  box-shadow: 14px 14px 0 var(--navy);
}
.art-stage::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  left: -95px;
  top: -100px;
  border: 48px solid var(--pink);
  border-radius: 50%;
  opacity: .72;
}
.art-stage::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 34px;
  right: 7%;
  top: 9%;
  background: var(--cyan);
  border: 4px solid var(--navy);
  border-radius: 999px;
  transform: rotate(-12deg);
}
.art-stage-copy {
  position: relative;
  z-index: 3;
  align-self: end;
  padding: clamp(2.2rem, 5vw, 4.5rem);
  padding-right: 1rem;
}
.art-stage-copy .eyebrow { color: var(--cyan); }
.art-stage-copy h2 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  line-height: .91;
}
.art-stage-copy p {
  max-width: 540px;
  color: #f8e9f7;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}
.art-signature {
  display: inline-block;
  margin-top: 1.2rem;
  padding: .58rem .8rem;
  color: var(--navy);
  background: var(--pink);
  border: 3px solid var(--navy);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--navy);
  font-weight: 900;
  transform: rotate(-2deg);
}
.art-stage-figure {
  position: relative;
  z-index: 2;
  min-height: 880px;
  overflow: hidden;
}
.art-stage-figure::before {
  content: "";
  position: absolute;
  inset: 8% 7% 7% 3%;
  border: 4px solid rgba(191,227,236,.82);
  clip-path: polygon(12% 0, 100% 4%, 92% 95%, 5% 100%, 0 18%);
  opacity: .75;
  pointer-events: none;
}
.art-stage-figure img {
  position: absolute;
  right: 0;
  bottom: -2%;
  width: min(760px, 104%);
  height: auto;
  max-height: 103%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(14px 18px 0 rgba(4,38,99,.82));
  transform-origin: bottom center;
  animation: art-character-float 8s ease-in-out infinite;
}
@keyframes art-character-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-.8deg); }
  50% { transform: translate3d(0, -13px, 0) rotate(.7deg); }
}

.build-collage {
  position: relative;
  min-height: 690px;
  isolation: isolate;
}
.build-shot {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 4px solid var(--navy);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 9px 9px 0 var(--navy);
}
.build-shot img { width: 100%; height: 100%; object-fit: cover; }
.build-shot figcaption {
  position: absolute;
  left: .75rem;
  bottom: .75rem;
  padding: .4rem .65rem;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 2px 2px 0 var(--navy);
  font-size: .75rem;
  font-weight: 900;
}
.build-shot--venue { inset: 0 4% auto 8%; height: 44%; transform: rotate(-2deg); }
.build-shot--devices { left: 0; bottom: 1%; width: 44%; height: 49%; transform: rotate(-4deg); }
.build-shot--line { right: 3%; bottom: 0; width: 38%; height: 53%; transform: rotate(3deg); }
.build-machine {
  position: absolute;
  z-index: 5;
  left: 40%;
  bottom: 4%;
  width: 19%;
  max-height: 49%;
  object-fit: contain;
  filter: drop-shadow(6px 7px 0 rgba(4,38,99,.95));
  transform: rotate(2deg);
}
.build-collage::after {
  content: "MADE, NOT JUST MOCKED UP";
  position: absolute;
  z-index: 8;
  right: -1%;
  top: 38%;
  padding: .65rem .85rem;
  border: 3px solid var(--navy);
  border-radius: 16px;
  background: var(--pink);
  box-shadow: 5px 5px 0 var(--navy);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
  transform: rotate(6deg);
}

.crowd-maker-card {
  position: relative;
  z-index: 2;
  min-height: 270px;
  padding: 1.65rem;
  color: var(--white);
  background: linear-gradient(180deg, #082d70 0%, #061f54 100%);
  border: 4px solid var(--navy);
  border-radius: 28px;
  box-shadow: 10px 10px 0 rgba(4,38,99,.34);
}
.crowd-maker-card h3 {
  margin: 1rem 0 .65rem;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}
.crowd-maker-card p {
  max-width: 32rem;
  margin: 0;
  color: var(--ice);
  font-size: 1rem;
  line-height: 1.55;
}
.crowd-maker-icon {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  width: 62px;
  height: 62px;
  padding: 12px;
  border: 2px solid var(--green);
  border-radius: 50%;
}
.crowd-maker-icon span {
  display: block;
  width: 8px;
  border: 2px solid var(--green);
  border-radius: 999px;
}
.crowd-maker-icon span:nth-child(1) { height: 20px; }
.crowd-maker-icon span:nth-child(2) { height: 31px; }
.crowd-maker-icon span:nth-child(3) { height: 24px; }
.crowd-event-card {
  position: relative;
  z-index: 3;
  align-self: stretch;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #000;
  border: 5px solid var(--navy);
  border-radius: 30px;
  box-shadow: 10px 10px 0 rgba(4,38,99,.44), 4px 4px 0 var(--pink);
}
.crowd-event-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
}
.crowd-board-card {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1400 / 788;
  background: var(--navy);
  border: 5px solid var(--navy);
  border-radius: 32px;
  box-shadow: 13px 13px 0 rgba(4,38,99,.42);
}
.crowd-board-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.button--dark-ghost { color: var(--navy); border-color: var(--navy); background: rgba(255,255,255,.7); }

.proof {
  background: var(--white);
  border-bottom: 4px solid var(--navy);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: start;
}
.proof-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 4px solid var(--navy);
  border-radius: 28px;
  background: var(--ice);
  box-shadow: 8px 8px 0 var(--navy);
}
.proof-card:nth-child(2) { background: var(--pink-soft); }
.proof-card:nth-child(3) { background: var(--cyan); }
.proof-media {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 4px solid var(--navy);
  background: #071326;
}
.proof-media--eit { background: #0b2359; }
.proof-media--sxsw { background: #000; }
.proof-media--gamescom { background: #061326; }
.proof-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.proof-copy {
  flex: 1;
  padding: 1.35rem;
}
.proof-card span {
  display: inline-block;
  margin-bottom: .65rem;
  padding: .3rem .55rem;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--white);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.proof-card h3 { margin-bottom: .7rem; }
.proof-card p { margin-bottom: 0; color: var(--muted); }

.experience-card > img { object-position: center; }
.final-cta { min-height: 560px; }

@media (max-width: 1050px) {
  .art-stage {
    grid-template-columns: 1fr;
    min-height: 1180px;
  }
  .art-stage-copy {
    align-self: start;
    max-width: 720px;
    padding-bottom: 0;
  }
  .art-stage-figure {
    min-height: 790px;
  }
  .art-stage-figure img {
    right: 50%;
    width: min(720px, 96%);
    height: 110%;
    transform: translateX(50%);
  }
  @keyframes art-character-float {
    0%, 100% { transform: translate3d(50%, 0, 0) rotate(-.8deg); }
    50% { transform: translate3d(50%, -13px, 0) rotate(.7deg); }
  }
}

@media (max-width: 1050px) {
  .build-collage { min-height: 720px; width: min(760px,100%); margin-inline: auto; }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - .7rem);
    justify-self: center;
  }
  .crowd-image { width: min(820px,100%); margin-inline: auto; }
  .crowd-top-row { grid-template-columns: minmax(0, 1fr) minmax(250px, .78fr); }
}

@media (max-width: 780px) {
  .art-stage { min-height: 1030px; border-radius: 30px; }
  .frontier::after { right: 3%; top: 6%; }
  .frontier-scene { min-height: 760px; }
  .frontier-scene-shell { min-height: 760px; border-radius: 34px; box-shadow: 10px 10px 0 var(--navy); }
  .frontier-scene-shell::before { width: 240px; height: 240px; right: -68px; top: -68px; border-width: 38px; }
  .frontier-astronaut { left: 2%; width: min(248px, 40%); }
  .frontier-note { font-size: .72rem; padding: .6rem .75rem; }
  .frontier-note--one { top: 12%; right: 5%; }
  .frontier-note--two { right: 4%; bottom: 7%; }
  .art-stage-copy h2 { font-size: clamp(3rem, 13vw, 5.5rem); }
  .art-stage-figure { min-height: 690px; }
  .art-stage-figure img { width: min(620px, 112%); height: 112%; }
  .hero-panel-copy { max-width: 90%; }
  .hero-inset--play { left: 0; bottom: 2%; width: 48%; }
  .float-card--product { width: 100px; right: 1%; top: 48%; }
  .build-collage { min-height: 650px; }
  .build-shot--venue { inset-inline: 5%; height: 40%; }
  .build-shot--devices { width: 46%; height: 45%; }
  .build-shot--line { width: 40%; height: 48%; }
  .build-machine { left: 39%; width: 20%; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card:last-child {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }
  .crowd-logo-panel { width: min(390px, 100%); }
  .crowd-image { gap: 1.2rem; }
  .crowd-top-row { grid-template-columns: 1fr .78fr; gap: 1.2rem; }
  .crowd-maker-card { min-height: 230px; padding: 1.35rem; }
  .crowd-event-card { border-radius: 24px; }
  .crowd-board-card { border-radius: 26px; }
}

@media (max-width: 480px) {
  .art-stage { min-height: 900px; margin-bottom: 5rem; }
  .frontier-grid { gap: 2rem; }
  .frontier-copy h2 { font-size: clamp(2.7rem, 14vw, 4.4rem); }
  .frontier-scene { min-height: 620px; }
  .frontier-scene-shell { min-height: 620px; border-radius: 28px; }
  .frontier-scene-shell::before { width: 160px; height: 160px; right: -60px; top: -60px; border-width: 28px; }
  .frontier-astronaut { left: 2%; width: min(205px, 38%); }
  .frontier-note { font-size: .66rem; border-radius: 14px; box-shadow: 4px 4px 0 var(--navy); }
  .frontier-note--one { top: 10%; right: 4%; }
  .frontier-note--two { bottom: 6%; right: 3%; }
  .art-stage-copy { padding: 1.5rem; }
  .art-stage-copy h2 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .art-stage-figure { min-height: 590px; }
  .art-stage-figure img { width: 124%; height: 112%; right: 47%; }
  .hero-inset--play { width: 56%; }
  .float-card--product { display: none; }
  .build-collage { min-height: 560px; }
  .build-shot--venue { height: 36%; }
  .build-shot--devices { width: 52%; height: 43%; }
  .build-shot--line { width: 43%; height: 46%; }
  .build-machine { left: 44%; width: 18%; }
.build-collage::after { top: 35%; right: 0; font-size: .65rem; }
  .crowd-logo-panel { width: 100%; padding: 1rem 1.2rem; }
  .crowd-image::before { display: none; }
  .crowd-top-row { grid-template-columns: 1fr; }
  .crowd-maker-card { min-height: 0; }
  .crowd-event-card { width: min(360px, 88%); justify-self: center; }
  .crowd-board-card { width: 100%; }
}

/* v7 hero composition polish */
@media (min-width: 1051px) {
  .hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
    gap: clamp(3rem, 5vw, 5.5rem);
  }
}

.hero-stage {
  min-height: 760px;
  perspective: 1200px;
  overflow: visible;
}

.hero-panel {
  inset: 7% 12% 10% 9%;
  border-radius: 42px;
  box-shadow: 14px 14px 0 var(--navy);
}

.hero-panel::before {
  background: linear-gradient(180deg, rgba(3, 27, 73, .04) 20%, rgba(3, 27, 73, .28) 60%, rgba(3, 27, 73, .68) 100%);
}

.hero-panel-copy {
  left: 2rem;
  right: auto;
  bottom: 8.25rem;
  width: min(65%, 420px);
  max-width: none;
  padding: 1.15rem 1.35rem 1.25rem;
  color: var(--white);
  background: rgba(3, 27, 73, .96);
  border: 3px solid var(--white);
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--navy);
}

.hero-panel-copy strong {
  font-size: clamp(1.9rem, 2.65vw, 2.8rem);
  line-height: .98;
  text-wrap: balance;
}

.hero-panel-copy span {
  margin-top: .75rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.float-card,
.hero-inset {
  transform-origin: center;
}

.float-card img,
.hero-inset img {
  display: block;
  margin: auto;
  object-position: center;
}

.float-card--games {
  left: -7%;
  top: 1%;
  width: 172px;
  min-height: 158px;
  padding: .7rem;
  border-radius: 26px;
}

.float-card--games img {
  width: 132px;
  height: 132px;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.float-card--imersar {
  right: -8%;
  top: 3%;
  width: 222px;
  min-height: 126px;
  padding: 1rem 1.15rem;
  border-radius: 26px;
  background: #04152f;
}

.float-card--imersar img {
  width: 168px;
  height: 92px;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.float-card--product {
  right: -4%;
  top: 43%;
  width: 176px;
  min-height: 176px;
  padding: .65rem;
  border-radius: 26px;
}

.float-card--product img {
  width: 150px;
  height: 150px;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.float-card--crowd {
  right: -8%;
  bottom: 0;
  width: 286px;
  min-height: 112px;
  padding: 1rem 1.35rem;
  border-radius: 26px;
}

.float-card--crowd img {
  width: 230px;
  height: 58px;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.hero-inset--play {
  left: -6%;
  bottom: 0;
  width: 47%;
  max-width: 286px;
  border-radius: 26px;
}

@keyframes floatGames {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-4deg); }
  50% { transform: translate3d(-12px, -22px, 0) rotate(2deg); }
}
@keyframes floatImersar {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(2deg); }
  50% { transform: translate3d(18px, -28px, 0) rotate(-3deg); }
}
@keyframes floatCrowd {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(20px, -22px, 0) rotate(2deg); }
}
@keyframes floatProduct {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(7deg); }
  50% { transform: translate3d(14px, -24px, 0) rotate(12deg); }
}
@keyframes bobPlay {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-5deg); }
  50% { transform: translate3d(-12px, -14px, 0) rotate(-1deg); }
}

@media (max-width: 1050px) {
  .hero-stage {
    min-height: 720px;
    width: min(820px, 100%);
  }
  .hero-panel {
    inset: 8% 10% 11% 10%;
  }
  .hero-panel-copy {
    bottom: 8.5rem;
    width: min(62%, 430px);
  }
  .float-card--games { left: 0; }
  .float-card--imersar { right: 0; }
  .float-card--product { right: 1%; }
  .float-card--crowd { right: 0; }
  .hero-inset--play { left: 0; }
}

@media (max-width: 780px) {
  .hero-stage {
    min-height: 650px;
  }
  .hero-panel {
    inset: 11% 4% 13% 4%;
  }
  .hero-panel-copy {
    left: 1.25rem;
    bottom: 7.25rem;
    width: min(68%, 360px);
    padding: 1rem 1.05rem 1.1rem;
  }
  .hero-panel-copy strong {
    font-size: clamp(1.55rem, 6vw, 2.2rem);
  }
  .hero-panel-copy span {
    font-size: .9rem;
  }
  .float-card--games {
    left: 0;
    top: 0;
    width: 132px;
    min-height: 122px;
  }
  .float-card--games img {
    width: 102px;
    height: 102px;
  }
  .float-card--imersar {
    right: 0;
    top: 2%;
    width: 164px;
    min-height: 100px;
  }
  .float-card--imersar img {
    width: 125px;
    height: 68px;
  }
  .float-card--product {
    right: 0;
    top: 44%;
    width: 126px;
    min-height: 126px;
  }
  .float-card--product img {
    width: 105px;
    height: 105px;
  }
  .float-card--crowd {
    right: 0;
    bottom: 0;
    width: 214px;
    min-height: 88px;
  }
  .float-card--crowd img {
    width: 174px;
    height: 44px;
  }
  .hero-inset--play {
    left: 0;
    bottom: 0;
    width: 43%;
  }
}

@media (max-width: 560px) {
  .hero-stage {
    min-height: 560px;
  }
  .hero-panel {
    inset: 12% 2% 15% 2%;
  }
  .hero-panel-copy {
    bottom: 5.8rem;
    width: calc(100% - 2.5rem);
  }
  .hero-panel-copy span {
    display: none;
  }
  .float-card--games {
    width: 105px;
    min-height: 96px;
  }
  .float-card--games img {
    width: 80px;
    height: 80px;
  }
  .float-card--imersar {
    width: 130px;
    min-height: 82px;
  }
  .float-card--imersar img {
    width: 100px;
    height: 54px;
  }
  .float-card--product {
    display: none;
  }
  .float-card--crowd {
    width: 164px;
    min-height: 72px;
    padding: .75rem;
  }
  .float-card--crowd img {
    width: 136px;
    height: 35px;
  }
  .hero-inset--play {
    width: 48%;
  }
}

/* v7.1 fold fit */
@media (min-width: 1051px) {
  .hero-stage { min-height: 720px; }
  .hero-panel-copy { bottom: 7.4rem; }
  .hero-inset--play { bottom: 2%; }
  .float-card--crowd { bottom: 2%; }
}


/* v21: approved luxury Horror in the Library editorial section */
.hitl-showcase {
  --hitl-navy: #031d52;
  --hitl-gold: #cda743;
  --hitl-gold-light: #f6df8c;
  --hitl-cream: #f7f0dd;
  --hitl-paper: #fffaf0;
  overflow: hidden;
  color: var(--hitl-navy);
  background:
    linear-gradient(rgba(0, 18, 8, .28), rgba(0, 18, 8, .34)),
    url("victorian-gothic-wallpaper-tile.webp") center / 570px 570px repeat;
  border-block: 5px solid var(--navy);
}
.hitl-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 28%, rgba(130, 255, 92, .12), transparent 23%),
    radial-gradient(circle at 79% 38%, rgba(255, 232, 164, .12), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.14), transparent 34%, transparent 70%, rgba(0,0,0,.09));
}
.hitl-showcase .wrap {
  width: min(calc(100% - 48px), 1580px);
}
.hitl-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(680px, 1.12fr) minmax(470px, .88fr);
  gap: clamp(2.8rem, 4.8vw, 5.4rem);
  align-items: stretch;
}

.hitl-media {
  display: grid;
  grid-template-rows: minmax(0, 1.35fr) minmax(0, .95fr);
  gap: 1.2rem;
  min-height: 830px;
}
.hitl-media-row {
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(0, .83fr);
  gap: 1.2rem;
  min-height: 0;
}
.hitl-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--hitl-gold-light);
  background: #061326;
  border: 3px solid var(--hitl-gold);
  border-radius: 28px;
  box-shadow:
    0 0 0 4px var(--hitl-navy),
    10px 12px 0 rgba(1, 11, 31, .72),
    0 18px 38px rgba(0, 0, 0, .30);
}
.hitl-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 5;
  border: 1px solid rgba(246, 223, 140, .58);
  border-radius: 19px;
  pointer-events: none;
}
.hitl-card figcaption {
  position: relative;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: .65rem 1rem .58rem;
  color: var(--hitl-gold-light);
  background:
    linear-gradient(180deg, rgba(11, 42, 91, .98), rgba(3, 29, 82, .98));
  border-bottom: 2px solid var(--hitl-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .105em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.hitl-card figcaption::before,
.hitl-card figcaption::after {
  content: "◆";
  margin-inline: .65rem;
  color: var(--hitl-gold);
  font-size: .52rem;
}
.hitl-card--hero { min-height: 0; }
.hitl-hero-visual {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #041329;
}
.hitl-hero-library,
.hitl-hero-vr {
  position: absolute;
  inset-block: 0;
  height: 100%;
  object-fit: cover;
}
.hitl-hero-library {
  left: 0;
  width: 61%;
  object-position: 50% 47%;
  filter: saturate(.94) contrast(1.08) brightness(.82);
  -webkit-mask-image: linear-gradient(90deg, #000 0 77%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0 77%, transparent 100%);
  z-index: 2;
}
.hitl-hero-vr {
  right: 0;
  width: 61%;
  object-position: 57% center;
  filter: saturate(1.04) contrast(1.12) brightness(.68);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 25% 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 25% 100%);
  z-index: 1;
}
.hitl-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.14)),
    radial-gradient(circle at 49% 65%, rgba(121,255,77,.16), transparent 29%);
  pointer-events: none;
}
.hitl-hero-glow {
  position: absolute;
  z-index: 4;
  left: 42%;
  bottom: 8%;
  width: 90px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,255,181,.48), rgba(103,255,80,.15) 34%, transparent 70%);
  filter: blur(3px);
  pointer-events: none;
}
.hitl-product-visual {
  display: grid;
  place-items: center;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.98), rgba(250,245,226,.94) 58%, rgba(211,170,62,.25));
}
.hitl-product-visual img {
  width: min(94%, 560px);
  height: 94%;
  object-fit: contain;
  filter: drop-shadow(8px 12px 11px rgba(2, 14, 35, .42));
  transform: rotate(-2deg);
}
.hitl-card--play > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(.94) contrast(1.07) brightness(.88);
}

.hitl-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 830px;
  padding: clamp(2.6rem, 4vw, 4.6rem);
  overflow: hidden;
  background:
    linear-gradient(rgba(255,250,240,.93), rgba(255,250,240,.96)),
    url("victorian-gothic-wallpaper-tile.webp") center / 460px 460px repeat;
  border: 2px solid var(--hitl-gold);
  border-radius: 38px;
  box-shadow:
    0 0 0 4px rgba(3,29,82,.94),
    12px 14px 0 rgba(1, 11, 31, .62),
    0 18px 45px rgba(0,0,0,.25),
    inset 0 0 40px rgba(157,114,35,.13);
}
.hitl-copy::before,
.hitl-copy::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  pointer-events: none;
  opacity: .78;
}
.hitl-copy::before {
  left: 16px;
  top: 16px;
  border-left: 2px solid var(--hitl-gold);
  border-top: 2px solid var(--hitl-gold);
  border-radius: 18px 0 0 0;
}
.hitl-copy::after {
  right: 16px;
  bottom: 16px;
  border-right: 2px solid var(--hitl-gold);
  border-bottom: 2px solid var(--hitl-gold);
  border-radius: 0 0 18px 0;
}
.hitl-eyebrow {
  margin: 0;
  color: var(--hitl-navy);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}
.hitl-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1.05rem 0 1.45rem;
  color: var(--hitl-gold);
}
.hitl-divider::before,
.hitl-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hitl-gold));
}
.hitl-divider::after { background: linear-gradient(90deg, var(--hitl-gold), transparent); }
.hitl-divider span::before { content: "◆"; font-size: .7rem; }
.hitl-copy h2 {
  margin: 0 0 1.55rem;
  color: var(--hitl-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 5.2vw, 6.5rem);
  line-height: .92;
  letter-spacing: -.045em;
  text-align: center;
}
.hitl-lead {
  max-width: 38rem;
  margin: 0 auto;
  color: #172f59;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.04rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}
.hitl-quote {
  position: relative;
  margin: 1.75rem 0 1.35rem;
  padding: 1.35rem 2.35rem;
  color: var(--hitl-navy);
  background: linear-gradient(135deg, #f6d2ed, #f2c5e5);
  border: 2px solid var(--hitl-gold);
  border-radius: 20px;
  box-shadow: 0 0 0 3px var(--hitl-navy), 6px 7px 0 rgba(3,29,82,.85);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .99rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.hitl-quote::before,
.hitl-quote::after {
  position: absolute;
  color: var(--hitl-gold);
  font-family: Georgia, serif;
  font-size: 2.7rem;
  line-height: 1;
}
.hitl-quote::before { content: "“"; left: .65rem; top: .45rem; }
.hitl-quote::after { content: "”"; right: .65rem; bottom: -.05rem; }
.hitl-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
  margin: .25rem 0 1.6rem;
}
.hitl-pills span {
  padding: .48rem .82rem;
  color: var(--hitl-navy);
  background: rgba(255,250,240,.84);
  border: 1.8px solid var(--hitl-navy);
  border-radius: 999px;
  box-shadow: 0 2px 0 rgba(205,167,67,.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .8rem;
  font-weight: 700;
}
.hitl-actions {
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 0;
}
.hitl-button {
  min-height: 54px;
  padding-inline: 1.35rem;
  border: 2px solid var(--hitl-gold);
  border-radius: 12px;
  box-shadow: 0 0 0 3px var(--hitl-navy), 5px 6px 0 rgba(3,29,82,.78);
  font-family: Georgia, "Times New Roman", serif;
  white-space: nowrap;
}
.hitl-button span { color: var(--hitl-gold); font-size: 1.35rem; line-height: 0; }
.hitl-button--primary { color: #fff; background: linear-gradient(180deg, #08377d, #031d52); }
.hitl-button--secondary { color: var(--hitl-navy); background: linear-gradient(180deg, #fffef9, #f4ead1); }
.hitl-button:hover { box-shadow: 0 0 0 3px var(--hitl-navy), 3px 4px 0 rgba(3,29,82,.78); }

@media (max-width: 1250px) {
  .hitl-grid { grid-template-columns: 1fr; }
  .hitl-media { width: min(900px, 100%); min-height: 800px; margin-inline: auto; }
  .hitl-copy { width: min(900px, 100%); min-height: auto; margin-inline: auto; }
}
@media (max-width: 780px) {
  .hitl-showcase .wrap { width: min(calc(100% - 28px), 1580px); }
  .hitl-media { min-height: 690px; gap: .9rem; }
  .hitl-media-row { gap: .9rem; }
  .hitl-card { border-radius: 22px; box-shadow: 0 0 0 3px var(--hitl-navy), 7px 8px 0 rgba(1,11,31,.68); }
  .hitl-card::after { inset: 6px; border-radius: 14px; }
  .hitl-card figcaption { min-height: 43px; font-size: .67rem; letter-spacing: .07em; }
  .hitl-card figcaption::before,
  .hitl-card figcaption::after { margin-inline: .38rem; }
  .hitl-copy { padding: 2.2rem 1.4rem; border-radius: 28px; }
  .hitl-copy h2 { font-size: clamp(3.4rem, 14vw, 5.3rem); }
  .hitl-actions { flex-wrap: wrap; }
}
@media (max-width: 520px) {
  .hitl-media { grid-template-rows: 330px auto; min-height: auto; }
  .hitl-media-row { grid-template-columns: 1fr; }
  .hitl-card--product { min-height: 330px; }
  .hitl-card--play { min-height: 260px; }
  .hitl-card figcaption { white-space: normal; }
  .hitl-hero-library { width: 67%; }
  .hitl-hero-vr { width: 66%; }
  .hitl-copy h2 { font-size: clamp(3rem, 15vw, 4.2rem); }
  .hitl-eyebrow { font-size: .72rem; }
  .hitl-quote { padding-inline: 1.8rem; }
  .hitl-actions { align-items: stretch; }
  .hitl-button { width: 100%; white-space: normal; }
}


/* Dazzling click-to-navigate energy transition */
.energy-trigger {
  position: relative;
  isolation: isolate;
  transform: translateZ(0);
  transition: filter .18s ease, transform .18s ease;
}
.energy-trigger:hover,
.energy-trigger:focus-visible {
  filter: drop-shadow(0 0 8px rgba(94,222,255,.75)) drop-shadow(0 0 14px rgba(255,0,221,.5));
}
.energy-trigger:active { transform: scale(.97); }

.energy-transition {
  --energy-x: 50vw;
  --energy-y: 50vh;
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  overflow: hidden;
  pointer-events: all;
  cursor: wait;
  background:
    radial-gradient(circle at var(--energy-x) var(--energy-y), rgba(255,255,255,.95) 0 1%, rgba(94,222,255,.55) 4%, rgba(4,38,99,.28) 16%, rgba(4,38,99,0) 42%),
    rgba(1,8,30,.06);
  animation: energy-overlay 1.28s cubic-bezier(.17,.78,.21,1) forwards;
}
.energy-transition::before {
  content: "";
  position: absolute;
  inset: -35%;
  left: calc(var(--energy-x) - 50vw - 35%);
  top: calc(var(--energy-y) - 50vh - 35%);
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255,255,255,.82) 0deg 1.2deg,
    transparent 1.2deg 7deg,
    rgba(94,222,255,.44) 7deg 8deg,
    transparent 8deg 15deg,
    rgba(255,0,221,.32) 15deg 16deg,
    transparent 16deg 24deg
  );
  -webkit-mask-image: radial-gradient(circle, transparent 0 3%, #000 5% 42%, transparent 69%);
  mask-image: radial-gradient(circle, transparent 0 3%, #000 5% 42%, transparent 69%);
  animation: energy-rays 1.05s cubic-bezier(.12,.75,.2,1) forwards;
}
.energy-transition::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  animation: energy-flash 1.28s ease-out forwards;
}
.energy-core,
.energy-ring,
.energy-aura,
.energy-particle {
  position: absolute;
  left: var(--energy-x);
  top: var(--energy-y);
  pointer-events: none;
}
.energy-core {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  box-shadow:
    0 0 12px 6px #fff,
    0 0 28px 16px rgba(94,222,255,.95),
    0 0 68px 32px rgba(255,0,221,.72),
    0 0 130px 65px rgba(4,38,99,.58);
  animation: energy-core 1.05s cubic-bezier(.12,.8,.18,1) forwards;
}
.energy-aura {
  width: 62px;
  height: 62px;
  border-radius: 46% 54% 48% 52%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, #fff 0 8%, #5edeff 27%, #ff00dd 54%, rgba(4,38,99,0) 76%);
  filter: blur(5px) saturate(1.35);
  opacity: .9;
  animation: energy-aura 1.18s ease-out forwards;
}
.energy-ring {
  width: 48px;
  height: 48px;
  border: 5px solid #fff;
  border-radius: 50%;
  transform: translate(-50%,-50%) scale(.2);
  box-shadow:
    0 0 0 4px rgba(94,222,255,.88),
    0 0 26px 8px rgba(255,0,221,.7),
    inset 0 0 20px rgba(255,255,255,.8);
  animation: energy-ring 1.12s cubic-bezier(.08,.7,.17,1) forwards;
}
.energy-ring--2 {
  border-width: 3px;
  animation-delay: .08s;
  animation-duration: 1.18s;
  box-shadow: 0 0 0 5px rgba(255,0,221,.7), 0 0 34px 12px rgba(94,222,255,.7);
}
.energy-ring--3 {
  border-width: 2px;
  animation-delay: .16s;
  animation-duration: 1.2s;
  box-shadow: 0 0 0 3px rgba(94,222,255,.8), 0 0 46px 14px rgba(255,255,255,.5);
}
.energy-particle {
  --particle-angle: 0deg;
  --particle-distance: 240px;
  --particle-size: 7px;
  --particle-delay: 0s;
  width: var(--particle-size);
  height: calc(var(--particle-size) * 2.8);
  border-radius: 999px;
  background: linear-gradient(#fff, #5edeff 45%, #ff00dd);
  box-shadow: 0 0 9px #fff, 0 0 16px #5edeff;
  opacity: 0;
  transform-origin: center;
  animation: energy-particle .88s cubic-bezier(.12,.78,.18,1) var(--particle-delay) forwards;
}
html.energy-active { overflow: hidden; }
html.energy-active .site-header,
html.energy-active main,
html.energy-active .site-footer {
  animation: energy-screen-shake .54s ease-in-out both;
}

@keyframes energy-overlay {
  0% { opacity: 0; background-color: rgba(1,8,30,0); }
  8% { opacity: 1; }
  74% { opacity: 1; background-color: rgba(1,8,30,.2); }
  100% { opacity: 0; background-color: #fff; }
}
@keyframes energy-rays {
  0% { transform: scale(.08) rotate(0deg); opacity: 0; }
  12% { opacity: .95; }
  70% { opacity: .62; }
  100% { transform: scale(1.65) rotate(19deg); opacity: 0; }
}
@keyframes energy-core {
  0% { transform: translate(-50%,-50%) scale(.2); opacity: 0; }
  10% { opacity: 1; }
  52% { transform: translate(-50%,-50%) scale(2.4); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(18); opacity: 0; }
}
@keyframes energy-aura {
  0% { transform: translate(-50%,-50%) scale(.1) rotate(0deg); opacity: 0; }
  18% { opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(13) rotate(135deg); opacity: 0; }
}
@keyframes energy-ring {
  0% { transform: translate(-50%,-50%) scale(.15); opacity: 0; }
  12% { opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(28); opacity: 0; }
}
@keyframes energy-particle {
  0% {
    opacity: 0;
    transform: translate(-50%,-50%) rotate(var(--particle-angle)) translateX(10px) scale(.15);
  }
  16% { opacity: 1; }
  100% {
    opacity: 0;
    transform: translate(-50%,-50%) rotate(var(--particle-angle)) translateX(var(--particle-distance)) scale(1.1);
  }
}
@keyframes energy-flash {
  0%, 58% { opacity: 0; }
  67% { opacity: .72; }
  77% { opacity: .12; }
  91% { opacity: .92; }
  100% { opacity: 1; }
}
@keyframes energy-screen-shake {
  0%, 100% { transform: translate(0,0); }
  12% { transform: translate(-5px,3px); }
  24% { transform: translate(6px,-4px); }
  38% { transform: translate(-4px,-2px); }
  52% { transform: translate(4px,4px); }
  68% { transform: translate(-2px,2px); }
  82% { transform: translate(2px,-1px); }
}

@media (prefers-reduced-motion: reduce) {
  .energy-trigger { transition: none; }
  .energy-transition { animation-duration: .18s; }
  .energy-transition::before,
  .energy-core,
  .energy-aura,
  .energy-ring,
  .energy-particle { display: none; }
  .energy-transition::after { animation: none; opacity: .85; }
  html.energy-active .site-header,
  html.energy-active main,
  html.energy-active .site-footer { animation: none; }
}
