:root {
  --alwael-navy: #0c0b23;
  --alwael-navy-deep: #060617;
  --alwael-gold: #e4c054;
  --alwael-white: #f5f3ec;
  --alwael-muted: #aaaab5;
  --alwael-rule: rgba(228, 192, 84, 0.28);
  --page-gutter: clamp(24px, 5vw, 80px);
  --page-max: 1360px;
  --headline-serif: Georgia, "Times New Roman", serif;
  --body-sans: Arial, Helvetica, system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--alwael-white);
  font-family: var(--body-sans);
  font-size: 16px;
  line-height: 1.55;
  background: var(--alwael-navy);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

.journey-section,
.site-footer {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
}

.journey-section {
  min-height: 88svh;
  display: grid;
  align-items: center;
  padding-block: clamp(112px, 14vw, 216px);
}

.journey-container {
  position: relative;
  z-index: 2;
  width: min(100%, calc(var(--page-max) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.eyebrow {
  margin: 0 0 clamp(24px, 3vw, 46px);
  color: var(--alwael-gold);
  font-size: clamp(0.7rem, 0.65rem + 0.16vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1.3;
}

.display-title,
.section-title {
  max-width: 12ch;
  margin: 0;
  color: var(--alwael-white);
  font-family: var(--headline-serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-wrap: balance;
}

.display-title {
  font-size: clamp(4.042rem, 10.34vw, 9.4rem);
  letter-spacing: -0.055em;
}

.section-title {
  font-size: clamp(2.538rem, 5.452vw, 5.405rem);
}

.lead-copy {
  max-width: 34rem;
  margin: 0;
  color: var(--alwael-white);
  font-size: clamp(1.05rem, 0.96rem + 0.42vw, 1.33rem);
  line-height: 1.65;
}

.secondary-copy {
  max-width: 32rem;
  margin: 24px 0 0;
  color: var(--alwael-muted);
  font-size: clamp(0.93rem, 0.89rem + 0.18vw, 1.05rem);
  letter-spacing: 0.01em;
}

.name-copy__body {
  display: grid;
  gap: 0.16em;
}

.gold-rule {
  width: clamp(48px, 6vw, 84px);
  height: 1px;
  margin: clamp(36px, 5vw, 64px) 0;
  background: var(--alwael-gold);
  transform-origin: left;
}

.has-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.has-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.name-section {
  min-height: 100svh;
  background: var(--alwael-navy);
}

.name-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(6, 6, 23, 0) 0%, rgba(6, 6, 23, 0.3) 70%, rgba(6, 6, 23, 0.68) 100%);
  content: "";
}

.name-section__mountain {
  position: absolute;
  inset: 4% -3% auto 34%;
  z-index: -3;
  height: 78%;
  background: url("media/alwael-hero-opening-frame.png") 38% center / cover no-repeat;
  filter: blur(5px) saturate(0.55);
  opacity: 0.075;
  transform: scale(1.05);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
}

.name-section__ibex {
  position: absolute;
  top: 13%;
  right: clamp(-280px, -8vw, -80px);
  z-index: -1;
  width: min(58vw, 820px);
  height: 72%;
  overflow: hidden;
  opacity: 0.14;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 32%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 32%, #000 82%, transparent 100%);
}

.name-section__ibex img {
  position: absolute;
  top: -9%;
  left: -21%;
  width: 118%;
  height: 118%;
  object-fit: contain;
  transform: scale(1.7);
  transform-origin: center;
}

.name-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(120px, 0.22fr);
  align-items: end;
  gap: clamp(48px, 8vw, 140px);
}

.name-copy {
  max-width: 700px;
}

.name-copy .lead-copy {
  max-width: 30rem;
}

.character-section {
  background: var(--alwael-navy-deep);
}

.character-section::before,
.selective-section::before {
  position: absolute;
  top: 0;
  right: var(--page-gutter);
  left: var(--page-gutter);
  height: 1px;
  background: rgba(245, 243, 236, 0.08);
  content: "";
}

.character-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(460px, 1.18fr);
  align-items: start;
  gap: clamp(72px, 10vw, 180px);
}

.character-intro {
  padding-top: 8px;
}

.character-intro__body {
  margin-top: clamp(38px, 5vw, 72px);
  color: var(--alwael-muted);
}

.values-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-row {
  display: grid;
  min-height: clamp(105px, 11vw, 158px);
  grid-template-columns: 64px 1fr;
  align-items: center;
  border-top: 1px solid var(--alwael-rule);
}

.value-row:last-child {
  border-bottom: 1px solid var(--alwael-rule);
}

.value-row__label {
  color: var(--alwael-white);
  font-family: var(--headline-serif);
  font-size: clamp(2.209rem, 4.089vw, 4.606rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.selective-section {
  min-height: 110svh;
  background: #09081e;
}

.selective-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(64px, 10vw, 160px);
}

.selective-heading__primary {
  max-width: 10.5ch;
}

.selective-heading__continuation {
  max-width: 11ch;
  margin-top: 0.22em;
  color: var(--alwael-muted);
}

.selective-copy {
  max-width: 390px;
  padding-bottom: 10px;
}

.closing-copy {
  margin: 36px 0 0;
  color: var(--alwael-white);
  font-family: var(--headline-serif);
  font-size: clamp(1.5rem, 2vw, 2.05rem);
  line-height: 1.25;
}

.closing-copy p {
  margin: 0;
}

.closing-copy p + p {
  margin-top: 0.52em;
}

.selection-field {
  position: absolute;
  top: 9%;
  right: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  z-index: 1;
  width: 220px;
  height: 42%;
  opacity: 0.7;
}

.selection-field__line {
  position: absolute;
  top: 0;
  right: 54px;
  width: 1px;
  height: 100%;
  background: rgba(245, 243, 236, 0.1);
}

.selection-field__mark,
.selection-field__path {
  position: absolute;
  display: block;
  height: 1px;
}

.selection-field__mark {
  right: 54px;
  width: 114px;
  background: rgba(245, 243, 236, 0.14);
}

.selection-field__mark::after {
  position: absolute;
  top: -2px;
  right: -3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(245, 243, 236, 0.22);
  content: "";
}

.selection-field__mark--01 { top: 13%; width: 72px; }
.selection-field__mark--02 { top: 37%; width: 146px; }
.selection-field__mark--03 { top: 61%; width: 94px; }
.selection-field__mark--04 { top: 82%; width: 126px; }

.selection-field__path {
  right: 0;
  width: 54px;
  background: var(--alwael-gold);
}

.selection-field__path::before {
  position: absolute;
  top: -2px;
  left: -3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--alwael-gold);
  content: "";
}

.selection-field__path--01 { top: 37%; }
.selection-field__path--02 { top: 82%; width: 34px; opacity: 0.62; }

.access-section {
  min-height: 100svh;
  background: var(--alwael-navy-deep);
}

.access-layout {
  max-width: calc(920px + (2 * var(--page-gutter)));
  margin-left: max(0px, calc((100vw - var(--page-max)) / 2));
}

.access-title {
  max-width: 11ch;
}

.access-body {
  max-width: 36rem;
  margin-top: clamp(42px, 5.5vw, 76px);
}

.access-button,
.access-dialog__close {
  min-width: 184px;
  min-height: 52px;
  padding: 15px 26px;
  border: 1px solid rgba(228, 192, 84, 0.58);
  border-radius: 0;
  background: transparent;
  color: var(--alwael-gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.access-button {
  margin-top: clamp(44px, 6vw, 72px);
}

.access-button:hover,
.access-dialog__close:hover {
  border-color: var(--alwael-gold);
  background: rgba(228, 192, 84, 0.07);
}

.access-button:focus-visible,
.access-dialog__close:focus-visible,
.footer-link:focus-visible {
  outline: 1px solid var(--alwael-gold);
  outline-offset: 6px;
}

.access-threshold {
  position: absolute;
  top: 15%;
  right: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  bottom: 15%;
  width: min(26vw, 330px);
  border-right: 1px solid rgba(228, 192, 84, 0.36);
  border-left: 1px solid rgba(245, 243, 236, 0.05);
}

.access-threshold span {
  position: absolute;
  top: 47%;
  right: -4px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--alwael-gold);
  border-radius: 50%;
  background: var(--alwael-navy-deep);
}

.site-footer {
  padding-block: clamp(64px, 8vw, 108px);
  background: #040411;
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: var(--page-gutter);
  left: var(--page-gutter);
  height: 1px;
  background: var(--alwael-rule);
  content: "";
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(270px, 1fr) auto;
  align-items: start;
  gap: 60px;
}

.footer-company,
.footer-location,
.footer-copyright {
  margin: 0;
  letter-spacing: 0.12em;
}

.footer-company {
  color: var(--alwael-white);
  font-size: 0.78rem;
}

.footer-location {
  margin-top: 12px;
  color: var(--alwael-muted);
  font-size: 0.7rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 32px;
}

.footer-link {
  padding: 4px 0;
  border: 0;
  background: none;
  color: var(--alwael-muted);
  font-size: 0.69rem;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.footer-link--button {
  cursor: pointer;
}

.footer-link[aria-disabled="true"] {
  cursor: default;
}

.footer-copyright {
  grid-column: 1 / -1;
  padding-top: 60px;
  color: rgba(170, 170, 181, 0.72);
  font-size: 0.64rem;
}

.access-dialog {
  width: min(92vw, 520px);
  padding: 0;
  border: 1px solid rgba(228, 192, 84, 0.32);
  background: var(--alwael-navy-deep);
  color: var(--alwael-white);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.52);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease, overlay 220ms allow-discrete, display 220ms allow-discrete;
}

.access-dialog[open] {
  opacity: 1;
  transform: translateY(0);
}

@starting-style {
  .access-dialog[open] {
    opacity: 0;
    transform: translateY(12px);
  }
}

.access-dialog::backdrop {
  background: rgba(3, 3, 14, 0.78);
  opacity: 0;
  transition: opacity 220ms ease, overlay 220ms allow-discrete, display 220ms allow-discrete;
}

.access-dialog[open]::backdrop {
  opacity: 1;
}

@starting-style {
  .access-dialog[open]::backdrop {
    opacity: 0;
  }
}

.access-dialog__inner {
  padding: clamp(34px, 6vw, 58px);
}

.access-dialog__rule {
  width: 64px;
  height: 1px;
  margin-bottom: 34px;
  background: var(--alwael-gold);
}

.access-dialog h2 {
  margin: 0;
  font-family: var(--headline-serif);
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.access-dialog p {
  margin: 24px 0 38px;
  color: var(--alwael-muted);
}

.info-dialog__body {
  margin: 24px 0 38px;
  color: var(--alwael-muted);
}

.info-dialog__body p {
  margin: 0;
  color: inherit;
}

.info-dialog__body p + p {
  margin-top: 1em;
}

.info-dialog__registry {
  display: grid;
  gap: 6px;
  margin: -12px 0 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(228, 192, 84, 0.25);
  color: rgba(245, 243, 236, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  line-height: 1.55;
}

.info-dialog__registry[hidden] {
  display: none;
}

.info-dialog__registry p {
  margin: 0;
  color: inherit;
}

.info-dialog__registry-group {
  display: grid;
  gap: 1px;
  margin-top: 10px;
}

.info-dialog__registry-group span:first-child {
  color: var(--alwael-gold);
  font-size: 0.64rem;
  font-weight: 600;
}

.footer-registry {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  margin-top: 22px;
  color: rgba(245, 243, 236, 0.58);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  line-height: 1.5;
}

.footer-registry__group {
  display: grid;
  gap: 1px;
}

.footer-registry__label {
  color: rgba(228, 192, 84, 0.78);
  font-size: 0.61rem;
  font-weight: 600;
}

.access-dialog__close {
  min-width: 130px;
}

.access-code-form {
  display: grid;
  gap: 12px;
  margin: 34px 0 28px;
}

.access-code-form label {
  color: var(--alwael-gold);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.access-code-form input {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(228, 192, 84, 0.34);
  border-radius: 0;
  outline: 0;
  background: rgba(5, 5, 19, 0.58);
  color: var(--alwael-white);
  font: inherit;
  letter-spacing: 0.08em;
}

.access-code-form input:focus-visible {
  border-color: rgba(228, 192, 84, 0.9);
  box-shadow: 0 0 0 1px rgba(228, 192, 84, 0.24);
}

.access-code-form button {
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(228, 192, 84, 0.52);
  background: transparent;
  color: var(--alwael-gold);
  font: inherit;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  cursor: pointer;
}

.access-code-form button:hover,
.access-code-form button:focus-visible {
  border-color: var(--alwael-gold);
  outline: 0;
}

.access-code-form .access-code-form__status {
  min-height: 1.35em;
  margin: 2px 0 0;
  color: rgba(245, 243, 236, 0.76);
  font-size: 0.79rem;
}

@media (max-width: 900px) {
  .journey-section {
    min-height: auto;
    padding-block: clamp(104px, 18vw, 152px);
  }

  .name-section {
    min-height: 94svh;
  }

  .name-layout,
  .character-layout,
  .selective-layout {
    grid-template-columns: 1fr;
  }

  .character-layout,
  .selective-layout {
    gap: 72px;
  }

  .character-intro__body {
    max-width: 34rem;
  }

  .selective-copy {
    max-width: 34rem;
    padding-left: clamp(0px, 7vw, 72px);
  }

  .selection-field {
    top: 5%;
    right: 5%;
    transform: scale(0.78);
    transform-origin: top right;
  }

  .access-threshold {
    opacity: 0.48;
  }
}

@media (max-width: 600px) {
  :root {
    --page-gutter: clamp(22px, 7vw, 32px);
  }

  html {
    scroll-behavior: auto;
  }

  .journey-section {
    padding-block: 112px;
  }

  .eyebrow {
    margin-bottom: 26px;
    font-size: 0.67rem;
    letter-spacing: 0.22em;
  }

  .display-title {
    font-size: clamp(3.76rem, 21.62vw, 5.828rem);
  }

  .section-title {
    max-width: 100%;
    font-size: clamp(2.303rem, 11.28vw, 3.76rem);
    line-height: 0.98;
  }

  .lead-copy {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .name-section {
    min-height: 92svh;
    align-items: end;
    padding-bottom: 126px;
  }

  .name-section__mountain {
    inset: 0 -42% auto 0;
    width: 142%;
    height: 60%;
    background-position: 34% center;
    opacity: 0.075;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 50%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 50%, transparent 100%);
  }

  .name-section__ibex {
    top: 4%;
    right: -82%;
    width: 150%;
    height: 50%;
    opacity: 0.11;
  }

  .gold-rule {
    margin-block: 38px;
  }

  .character-layout,
  .selective-layout {
    gap: 62px;
  }

  .value-row {
    min-height: 96px;
    grid-template-columns: 46px 1fr;
  }

  .value-row__label {
    font-size: clamp(1.88rem, 9.87vw, 2.914rem);
  }

  .selective-section {
    min-height: auto;
  }

  .selective-heading__continuation {
    margin-top: 0.34em;
  }

  .selective-copy {
    padding-left: 0;
  }

  .selection-field {
    top: 36px;
    right: -40px;
    opacity: 0.34;
    transform: scale(0.54);
  }

  .access-section {
    min-height: 90svh;
  }

  .access-layout {
    margin-left: 0;
  }

  .access-threshold {
    top: auto;
    right: var(--page-gutter);
    bottom: 86px;
    width: 32%;
    height: 36%;
    opacity: 0.42;
  }

  .access-body {
    margin-top: 38px;
  }

  .access-button {
    width: 100%;
    max-width: 320px;
  }

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

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-copyright {
    grid-column: 1;
    padding-top: 28px;
    line-height: 1.7;
  }
}

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

  .reveal,
  .has-reveal .reveal,
  .has-reveal .reveal.is-visible,
  .access-dialog,
  .access-dialog::backdrop,
  .access-button,
  .access-dialog__close {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    transform: none !important;
  }
}

/* v02 — unified midnight continuity and restrained one-shot activation language */

:root {
  --alwael-midnight-field: #08071d;
  --alwael-midnight-lift: #0b0a24;
  --alwael-intelligence: #637b6e;
}

body {
  position: relative;
  background: var(--alwael-midnight-field);
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    radial-gradient(ellipse at 76% 18%, rgba(42, 45, 78, 0.12), transparent 42%),
    radial-gradient(ellipse at 18% 60%, rgba(30, 29, 66, 0.14), transparent 46%),
    radial-gradient(ellipse at 68% 88%, rgba(38, 31, 66, 0.09), transparent 38%),
    var(--alwael-midnight-field);
}

body::after {
  background-image:
    repeating-linear-gradient(113deg, rgba(255, 255, 255, 0.007) 0 1px, transparent 1px 9px),
    radial-gradient(circle at 50% 50%, transparent 0 64%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0.32;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.access-dialog {
  position: fixed;
  inset: 0;
  z-index: 20;
  max-height: calc(100svh - 32px);
  margin: auto;
  overflow-y: auto;
}

.name-section,
.character-section,
.selective-section,
.access-section,
.site-footer {
  background: transparent;
}

.character-section::before,
.selective-section::before,
.site-footer::before {
  display: none;
}

.character-section::after,
.selective-section::after,
.access-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.character-section::after {
  background: radial-gradient(ellipse at 72% 52%, rgba(31, 32, 67, 0.13), transparent 50%);
}

.selective-section::after {
  background:
    radial-gradient(ellipse at 18% 66%, rgba(31, 32, 66, 0.12), transparent 43%),
    radial-gradient(ellipse at 78% 42%, rgba(24, 34, 57, 0.11), transparent 45%);
}

.access-section::after {
  background: radial-gradient(ellipse at 28% 48%, rgba(29, 28, 62, 0.12), transparent 48%);
}

.name-section::before {
  background:
    radial-gradient(ellipse at 73% 37%, rgba(39, 39, 76, 0.14), transparent 48%),
    radial-gradient(ellipse at 30% 86%, rgba(28, 26, 59, 0.11), transparent 44%);
}

.name-section__mountain {
  inset: 4% -2% auto 27%;
  height: 82%;
  filter: blur(7px) saturate(0.45);
  opacity: 0.055;
}

.hero__continuation-hint {
  position: fixed;
  z-index: 18;
  bottom: max(30px, calc(22px + env(safe-area-inset-bottom)));
  left: 50%;
  width: 14px;
  height: 30px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 520ms cubic-bezier(0.22, 0.72, 0.22, 1);
}

.hero__continuation-hint span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 21px;
  background: var(--alwael-gold);
  opacity: 0.68;
  transform: translateX(-50%);
}

.hero__continuation-hint span::after {
  position: absolute;
  right: -3px;
  bottom: -5px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--alwael-gold);
  border-bottom: 1px solid var(--alwael-gold);
  content: "";
  transform: rotate(45deg);
}

.hero.hero--continuation-cue-visible[data-state="ENDED_POSTER"] .hero__continuation-hint {
  opacity: 0.58;
}

.hero.hero--continuation-cue-visible[data-state="ENDED_POSTER"] .hero__continuation-hint span {
  animation: hero-continuation-breath 4.6s cubic-bezier(0.22, 0.72, 0.22, 1) 260ms infinite;
}

@keyframes hero-continuation-breath {
  0%, 28%, 100% {
    opacity: 0.62;
    transform: translate(-50%, 0);
  }

  13% {
    opacity: 0.88;
    transform: translate(-50%, 5px);
  }
}

.section__continuation-cue {
  position: fixed;
  z-index: 18;
  bottom: max(30px, calc(22px + env(safe-area-inset-bottom)));
  left: 50%;
  width: 14px;
  height: 30px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 520ms cubic-bezier(0.22, 0.72, 0.22, 1);
}

.section__continuation-cue.is-visible {
  opacity: 0.58;
}

.section__continuation-cue span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 21px;
  background: var(--alwael-gold);
  opacity: 0.68;
  transform: translateX(-50%);
}

.section__continuation-cue span::after {
  position: absolute;
  right: -3px;
  bottom: -5px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--alwael-gold);
  border-bottom: 1px solid var(--alwael-gold);
  content: "";
  transform: rotate(45deg);
}

.section__continuation-cue.is-visible span {
  animation: section-continuation-breath 5.4s cubic-bezier(0.22, 0.72, 0.22, 1) 320ms infinite;
}

@keyframes section-continuation-breath {
  0%, 30%, 100% { opacity: 0.62; transform: translate(-50%, 0); }
  14% { opacity: 0.88; transform: translate(-50%, 5px); }
}

.name-layout {
  display: block;
}

.name-copy {
  position: relative;
  z-index: 2;
}

.name-section__ibex {
  top: 3%;
  right: clamp(26px, 5.5vw, 126px);
  width: min(54vw, 900px);
  height: 91%;
  overflow: visible;
  opacity: 1;
  -webkit-mask-image: radial-gradient(ellipse at 48% 43%, #000 0 46%, transparent 78%);
  mask-image: radial-gradient(ellipse at 48% 43%, #000 0 46%, transparent 78%);
}

.name-section__ibex img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.065;
  transform: scale(1.62) translate(2%, 1%);
  transform-origin: 32% 36%;
}

.name-section__ibex::before,
.name-section__ibex::after {
  position: absolute;
  inset: 0;
  background: url("media/brand/ALWAEL_OFFICIAL_IBEX_GOLD_LOCK.png") center / contain no-repeat;
  filter: blur(1.5px) brightness(1.45) saturate(1.04);
  opacity: 0;
  mix-blend-mode: screen;
  transform: scale(1.62) translate(2%, 1%);
  transform-origin: 32% 36%;
  content: "";
}

.name-section__ibex::before {
  -webkit-mask-image:
    radial-gradient(ellipse at 33% 18%, #000 0 5%, transparent 14%),
    radial-gradient(ellipse at 45% 35%, #000 0 4%, transparent 12%);
  mask-image:
    radial-gradient(ellipse at 33% 18%, #000 0 5%, transparent 14%),
    radial-gradient(ellipse at 45% 35%, #000 0 4%, transparent 12%);
}

.name-section__ibex::after {
  -webkit-mask-image:
    radial-gradient(ellipse at 38% 27%, #000 0 4%, transparent 12%),
    radial-gradient(ellipse at 37% 57%, #000 0 3%, transparent 11%);
  mask-image:
    radial-gradient(ellipse at 38% 27%, #000 0 4%, transparent 12%),
    radial-gradient(ellipse at 37% 57%, #000 0 3%, transparent 11%);
}

.name-section.is-active .name-section__ibex::before {
  animation: metallic-memory-fragments-a 2.65s cubic-bezier(0.18, 0.7, 0.2, 1) 120ms both;
}

.name-section.is-active .name-section__ibex::after {
  animation: metallic-memory-fragments-b 2.65s cubic-bezier(0.18, 0.7, 0.2, 1) 420ms both;
}

@keyframes metallic-memory-fragments-a {
  0%, 9% { opacity: 0; filter: blur(3px) brightness(1.2) saturate(0.82); }
  31% { opacity: 0.34; filter: blur(0.8px) brightness(1.62) saturate(1.14); }
  53% { opacity: 0.1; filter: blur(2.4px) brightness(1.28) saturate(0.9); }
  100% { opacity: 0; filter: blur(3px) brightness(1.2) saturate(0.82); }
}

@keyframes metallic-memory-fragments-b {
  0%, 18% { opacity: 0; filter: blur(3px) brightness(1.2) saturate(0.82); }
  48% { opacity: 0.29; filter: blur(0.9px) brightness(1.56) saturate(1.1); }
  72% { opacity: 0.09; filter: blur(2.5px) brightness(1.26) saturate(0.88); }
  100% { opacity: 0; filter: blur(3px) brightness(1.2) saturate(0.82); }
}

.value-row {
  grid-template-columns: 1fr;
}

.value-row__label {
  padding-left: clamp(0px, 2.5vw, 34px);
  color: rgba(245, 243, 236, 0.88);
}

.character-section.is-active .value-row__label {
  animation: value-prestige-activation 1s cubic-bezier(0.2, 0.72, 0.22, 1) var(--activation-delay) both;
}

@keyframes value-prestige-activation {
  0% { color: rgba(245, 243, 236, 0.9); }
  43% { color: rgba(228, 192, 84, 0.98); }
  100% { color: rgba(245, 243, 236, 0.92); }
}

.intelligence-layer {
  position: absolute;
  inset: 7% 3% 5%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 45%, transparent 82%);
  mask-image: radial-gradient(ellipse at center, #000 0 45%, transparent 82%);
}

.intelligence-layer::before,
.intelligence-layer::after {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  content: "";
}

.intelligence-layer::before {
  right: 20%;
  bottom: 15%;
  left: 16%;
  height: 22%;
  border-bottom: 1px solid rgba(125, 132, 158, 0.38);
  border-radius: 50%;
  transform: rotate(-4deg);
}

.intelligence-layer::after {
  top: 41%;
  left: 48%;
  width: 7%;
  height: 18%;
  border: 1px solid rgba(120, 127, 155, 0.3);
  border-width: 1px 0 0 1px;
  transform: skewY(-12deg);
}

.intelligence-city {
  position: absolute;
  bottom: 10%;
  width: 34%;
  height: 42%;
  opacity: 0.052;
}

.intelligence-city--heritage {
  left: 4%;
}

.intelligence-city--future {
  right: 3%;
}

.intelligence-building {
  position: absolute;
  bottom: 0;
  display: block;
  background: rgba(112, 120, 151, 0.58);
  box-shadow: inset 0 0 0 1px rgba(170, 173, 192, 0.08);
}

.intelligence-city--heritage .intelligence-building {
  border-radius: 42% 42% 2px 2px;
}

.intelligence-building--h1 { left: 4%; width: 19%; height: 42%; }
.intelligence-building--h2 { left: 22%; width: 23%; height: 62%; border-radius: 50% 50% 3px 3px; }
.intelligence-building--h3 { left: 45%; width: 14%; height: 36%; }
.intelligence-building--h4 { left: 59%; width: 24%; height: 54%; border-radius: 48% 48% 2px 2px; }
.intelligence-building--h5 { left: 81%; width: 15%; height: 30%; }

.intelligence-city--future .intelligence-building {
  border-radius: 1px;
  background: rgba(104, 114, 148, 0.52);
  clip-path: polygon(18% 0, 100% 8%, 100% 100%, 0 100%);
}

.intelligence-building--f1 { left: 3%; width: 13%; height: 38%; }
.intelligence-building--f2 { left: 18%; width: 17%; height: 68%; }
.intelligence-building--f3 { left: 39%; width: 12%; height: 90%; }
.intelligence-building--f4 { left: 55%; width: 19%; height: 57%; }
.intelligence-building--f5 { left: 79%; width: 15%; height: 78%; }

.intelligence-light {
  position: absolute;
  display: block;
  width: 62%;
  height: 54%;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0;
  mix-blend-mode: screen;
}

.intelligence-light--gold {
  top: 12%;
  left: 24%;
  width: 46%;
  height: 38%;
  background:
    radial-gradient(ellipse at 18% 62%, rgba(228, 192, 84, 0.2), rgba(228, 192, 84, 0.025) 25%, transparent 48%),
    radial-gradient(ellipse at 52% 48%, rgba(228, 192, 84, 0.14), rgba(228, 192, 84, 0.02) 24%, transparent 46%),
    radial-gradient(ellipse at 88% 35%, rgba(228, 192, 84, 0.17), rgba(228, 192, 84, 0.02) 24%, transparent 48%);
}

.intelligence-light--green {
  right: 15%;
  bottom: 14%;
  width: 30%;
  height: 28%;
  background: radial-gradient(ellipse, rgba(91, 111, 102, 0.045), rgba(91, 111, 102, 0.008) 38%, transparent 68%);
}

.selective-section.is-active .intelligence-city--heritage {
  animation: intelligence-heritage-discover 3.15s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.selective-section.is-active .intelligence-city--future {
  animation: intelligence-future-discover 3.15s cubic-bezier(0.2, 0.72, 0.2, 1) 300ms both;
}

.selective-section.is-active .intelligence-light--gold {
  animation: intelligence-light-gold 3.35s cubic-bezier(0.17, 0.72, 0.2, 1) both;
}

.selective-section.is-active .intelligence-light--green {
  animation: intelligence-light-green 3s cubic-bezier(0.17, 0.72, 0.2, 1) 420ms both;
}

.selective-section.is-active .intelligence-layer::before {
  animation: intelligence-path-memory 3.2s cubic-bezier(0.2, 0.72, 0.2, 1) 180ms both;
}

.selective-section.is-active .intelligence-layer::after {
  animation: intelligence-transition-memory 3.05s cubic-bezier(0.2, 0.72, 0.2, 1) 520ms both;
}

@keyframes intelligence-heritage-discover {
  0%, 8% { opacity: 0.05; filter: blur(1.15px); }
  35% { opacity: 0.21; filter: blur(0.1px); }
  62% { opacity: 0.095; filter: blur(0.35px); }
  100% { opacity: 0.052; filter: blur(0.8px); }
}

@keyframes intelligence-future-discover {
  0%, 12% { opacity: 0.048; filter: blur(1.2px); }
  49% { opacity: 0.19; filter: blur(0.08px); }
  70% { opacity: 0.082; filter: blur(0.4px); }
  100% { opacity: 0.05; filter: blur(0.85px); }
}

@keyframes intelligence-light-gold {
  0%, 8% { opacity: 0; transform: scale(0.9); }
  29% { opacity: 0.36; transform: scale(1.02); }
  48% { opacity: 0.14; transform: scale(0.97); }
  62% { opacity: 0.27; transform: scale(1.01); }
  100% { opacity: 0; transform: scale(0.93); }
}

@keyframes intelligence-light-green {
  0%, 22% { opacity: 0; transform: scale(0.9); }
  51% { opacity: 0.055; transform: scale(1.01); }
  72% { opacity: 0.014; transform: scale(0.96); }
  100% { opacity: 0; transform: scale(0.92); }
}

@keyframes intelligence-path-memory {
  0%, 12% { opacity: 0.03; }
  43% { opacity: 0.13; }
  67% { opacity: 0.065; }
  100% { opacity: 0.035; }
}

@keyframes intelligence-transition-memory {
  0%, 18% { opacity: 0.025; }
  53% { opacity: 0.12; }
  74% { opacity: 0.052; }
  100% { opacity: 0.03; }
}

.selection-field {
  opacity: 0.22;
}

.access-section .secondary-copy {
  color: rgba(245, 243, 236, 0.72);
}

.access-section.is-active .secondary-copy {
  animation: invitation-emphasis 1.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes invitation-emphasis {
  0% { color: rgba(245, 243, 236, 0.72); }
  44% { color: rgba(228, 192, 84, 0.96); }
  100% { color: rgba(245, 243, 236, 0.72); }
}

.info-dialog__eyebrow {
  margin: 0 0 18px !important;
  color: var(--alwael-gold) !important;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.info-dialog[data-notice="privacy"] .access-dialog__rule {
  width: 48px;
}

.footer-link--button {
  text-align: left;
}

@media (max-width: 900px) {
  .name-section__ibex {
    top: 1%;
    right: -27%;
    width: 108%;
    height: 58%;
    opacity: 1;
    -webkit-mask-image: radial-gradient(ellipse at 46% 43%, #000 0 42%, transparent 74%);
    mask-image: radial-gradient(ellipse at 46% 43%, #000 0 42%, transparent 74%);
  }

  .name-section__ibex img,
  .name-section__ibex::before,
  .name-section__ibex::after {
    transform: scale(1.5) translate(1%, 0);
  }

  .name-section__ibex img {
    opacity: 0.07;
  }

  .intelligence-layer {
    inset: 5% -18% 4%;
    opacity: 0.62;
  }

  .intelligence-city {
    width: 42%;
    height: 34%;
  }
}

@media (max-width: 600px) {
  body::after {
    opacity: 0.22;
  }

  .hero__continuation-hint {
    bottom: max(24px, calc(18px + env(safe-area-inset-bottom)));
  }

  .name-section__mountain {
    inset: 0 -34% auto -6%;
    width: 140%;
    height: 58%;
  }

  .value-row {
    grid-template-columns: 1fr;
  }

  .value-row__label {
    padding-left: 0;
  }

  .intelligence-city--heritage {
    left: 1%;
  }

  .intelligence-city--future {
    right: 0;
  }

  .selection-field {
    opacity: 0.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__continuation-hint,
  .name-section__ibex,
  .name-section__ibex::before,
  .name-section__ibex::after,
  .character-section .value-row__label,
  .intelligence-city,
  .intelligence-layer::before,
  .intelligence-layer::after,
  .intelligence-light,
  .access-section .secondary-copy {
    animation: none !important;
    transition: none !important;
  }

  .section__continuation-cue.is-visible span,
  .hero[data-autoplay-mode="reduced-motion"] .hero__continuation-hint span {
    animation: none !important;
  }

  .hero[data-autoplay-mode="reduced-motion"][data-state="IDLE_POSTER"] .hero__continuation-hint {
    opacity: 0.58;
  }

  .name-section__ibex {
    opacity: 1;
  }

  .name-section__ibex img {
    opacity: 0.065;
  }

  .intelligence-city {
    opacity: 0.052;
    filter: blur(0.8px);
  }

  .intelligence-light {
    display: none;
  }
}

/* v10.4 — portrait-phone content-driven section rhythm. */
@media (max-width: 600px) and (orientation: portrait) {
  .journey-section,
  .name-section,
  .access-section {
    min-height: auto;
  }

  .journey-section {
    padding-block: 48px;
  }

  .access-section {
    padding-bottom: max(48px, calc(40px + env(safe-area-inset-bottom)));
  }
}

@media (max-width: 380px) and (orientation: portrait) {
  .journey-section {
    padding-block: 44px;
  }

  .access-section {
    padding-bottom: max(44px, calc(36px + env(safe-area-inset-bottom)));
  }
}

/* v10.5 — compact editorial mobile rhythm and prose alignment. */
@media (max-width: 600px) and (orientation: portrait) {
  .journey-section {
    padding-block: 27px;
  }

  .access-section {
    padding-bottom: max(27px, calc(19px + env(safe-area-inset-bottom)));
  }

  .site-footer {
    padding-block: 35px max(48px, calc(40px + env(safe-area-inset-bottom)));
  }

  .character-intro__body,
  .selective-copy .lead-copy,
  .access-body,
  .info-dialog__body p {
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }

  .name-copy__body .lead-copy,
  .name-section .secondary-copy,
  .selective-copy .closing-copy,
  .access-section .secondary-copy {
    text-align: left;
  }
}

@media (max-width: 380px) and (orientation: portrait) {
  .journey-section {
    padding-block: 24px;
  }

  .access-section {
    padding-bottom: max(24px, calc(16px + env(safe-area-inset-bottom)));
  }

  .site-footer {
    padding-top: 33px;
  }
}

@media (min-width: 901px) and (max-height: 900px) {
  .character-section {
    min-height: 100svh;
    padding-block: clamp(56px, 7svh, 68px);
  }

  .character-layout {
    align-items: center;
    gap: clamp(52px, 6vw, 92px);
  }

  .character-section .section-title {
    font-size: clamp(3.008rem, 4.7vw, 4.512rem);
  }

  .character-intro__body {
    margin-top: clamp(26px, 3.8svh, 36px);
    line-height: 1.55;
  }

  .character-section .value-row {
    min-height: clamp(96px, 13svh, 116px);
  }

  .character-section .value-row__label {
    font-size: clamp(2.209rem, 3.76vw, 3.76rem);
  }
}

@media (min-width: 901px) and (max-height: 790px) {
  .character-section {
    padding-block: clamp(48px, 7svh, 56px);
  }

  .character-section .section-title {
    font-size: clamp(2.82rem, 4.324vw, 3.901rem);
  }

  .character-intro__body {
    margin-top: clamp(20px, 3.8svh, 30px);
    line-height: 1.5;
  }

  .character-section .value-row {
    min-height: clamp(84px, 13svh, 104px);
  }
}

@media (max-width: 520px) {
  .access-dialog__inner {
    padding: 30px 24px;
  }

  .access-code-form button {
    width: 100%;
    font-size: 0.63rem;
    letter-spacing: 0.13em;
  }
}

/* v05 — one-screen Selective composition and scheduled living-motion materials. */
@media (min-width: 901px) {
  .selective-section {
    min-height: 100svh;
    padding-block: clamp(48px, 6.2vh, 72px);
  }

  .selective-layout {
    grid-template-columns: minmax(0, 1.62fr) minmax(280px, 0.72fr);
    align-items: center;
    gap: clamp(52px, 7vw, 118px);
  }

  .selective-heading__primary,
  .selective-heading__continuation {
    max-width: 15.5ch;
    font-size: clamp(3.008rem, min(4.7vw, 6.768vh), 5.264rem);
    line-height: 0.91;
  }

  .selective-heading__continuation {
    margin-top: 0.18em;
  }

  .selective-copy {
    align-self: center;
    padding-bottom: 0;
  }

  .selective-copy .lead-copy {
    font-size: clamp(1rem, 1.6vh, 1.23rem);
    line-height: 1.58;
  }

  .selective-copy .closing-copy {
    margin-top: clamp(18px, 2.8vh, 30px);
    font-size: clamp(1.35rem, 2.25vh, 1.95rem);
  }

  .access-section {
    min-height: 100svh;
    padding-block: clamp(50px, 6.5vh, 72px);
  }

  .access-body {
    margin-top: clamp(28px, 4vh, 42px);
  }

  .access-button {
    margin-top: clamp(30px, 4.5vh, 48px);
  }
}

@media (min-width: 901px) and (max-height: 799px) {
  .selective-section {
    padding-block: 30px;
  }

  .selective-layout {
    gap: 46px;
  }

  .selective-heading .eyebrow {
    margin-bottom: 17px;
  }

  .selective-heading__primary,
  .selective-heading__continuation {
    font-size: clamp(2.491rem, 5.875vh, 3.008rem);
    line-height: 0.9;
  }

  .selective-copy .lead-copy {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .selective-copy .closing-copy {
    margin-top: 16px;
    font-size: 1.27rem;
  }

  .access-section {
    padding-block: 30px;
  }

  .access-section .eyebrow {
    margin-bottom: 18px;
  }

  .access-section .section-title {
    font-size: clamp(2.538rem, 5.828vh, 3.055rem);
    line-height: 0.92;
  }

  .access-body {
    margin-top: 24px;
  }

  .access-button {
    min-height: 48px;
    margin-top: 26px;
  }
}

.name-section__ibex::before {
  -webkit-mask-image:
    radial-gradient(ellipse at 33% 18%, #000 0 5%, transparent 14%),
    radial-gradient(ellipse at 45% 35%, #000 0 4%, transparent 12%);
  mask-image:
    radial-gradient(ellipse at 33% 18%, #000 0 5%, transparent 14%),
    radial-gradient(ellipse at 45% 35%, #000 0 4%, transparent 12%);
}

.name-section__ibex::after {
  -webkit-mask-image: radial-gradient(ellipse at 37% 57%, #000 0 3.5%, transparent 11%);
  mask-image: radial-gradient(ellipse at 37% 57%, #000 0 3.5%, transparent 11%);
}

.name-section[data-memory-variant="2"] .name-section__ibex::before {
  -webkit-mask-image:
    radial-gradient(ellipse at 29% 31%, #000 0 4.5%, transparent 13%),
    radial-gradient(ellipse at 48% 18%, #000 0 3.5%, transparent 11%);
  mask-image:
    radial-gradient(ellipse at 29% 31%, #000 0 4.5%, transparent 13%),
    radial-gradient(ellipse at 48% 18%, #000 0 3.5%, transparent 11%);
}

.name-section[data-memory-variant="2"] .name-section__ibex::after {
  -webkit-mask-image: radial-gradient(ellipse at 42% 62%, #000 0 4%, transparent 12%);
  mask-image: radial-gradient(ellipse at 42% 62%, #000 0 4%, transparent 12%);
}

.name-section[data-memory-variant="3"] .name-section__ibex::before {
  -webkit-mask-image:
    radial-gradient(ellipse at 39% 23%, #000 0 4.5%, transparent 13%),
    radial-gradient(ellipse at 31% 51%, #000 0 3%, transparent 10%);
  mask-image:
    radial-gradient(ellipse at 39% 23%, #000 0 4.5%, transparent 13%),
    radial-gradient(ellipse at 31% 51%, #000 0 3%, transparent 10%);
}

.name-section[data-memory-variant="3"] .name-section__ibex::after {
  -webkit-mask-image: radial-gradient(ellipse at 50% 44%, #000 0 3.5%, transparent 11%);
  mask-image: radial-gradient(ellipse at 50% 44%, #000 0 3.5%, transparent 11%);
}

.name-section.is-active .name-section__ibex::before {
  animation: metallic-memory-fragments-v05-a 2.8s cubic-bezier(0.18, 0.7, 0.2, 1) 80ms both;
}

.name-section.is-active .name-section__ibex::after {
  animation: metallic-memory-fragments-v05-b 2.8s cubic-bezier(0.18, 0.7, 0.2, 1) 360ms both;
}

@keyframes metallic-memory-fragments-v05-a {
  0%, 8% { opacity: 0; filter: blur(3px) brightness(1.2) saturate(0.82); }
  34% { opacity: 0.21; filter: blur(0.85px) brightness(1.58) saturate(1.1); }
  59% { opacity: 0.075; filter: blur(2.3px) brightness(1.26) saturate(0.9); }
  100% { opacity: 0; filter: blur(3px) brightness(1.2) saturate(0.82); }
}

@keyframes metallic-memory-fragments-v05-b {
  0%, 18% { opacity: 0; filter: blur(3px) brightness(1.2) saturate(0.82); }
  49% { opacity: 0.18; filter: blur(0.9px) brightness(1.52) saturate(1.08); }
  73% { opacity: 0.06; filter: blur(2.5px) brightness(1.24) saturate(0.88); }
  100% { opacity: 0; filter: blur(3px) brightness(1.2) saturate(0.82); }
}

.intelligence-layer {
  inset: 4% 1.5% 3%;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 54%, transparent 91%);
  mask-image: radial-gradient(ellipse at center, #000 0 54%, transparent 91%);
}

.intelligence-layer::before {
  right: 18%;
  bottom: 12%;
  left: 12%;
  height: 26%;
  opacity: 0.055;
}

.intelligence-layer::after {
  top: 37%;
  left: 47%;
  width: 10%;
  height: 25%;
  opacity: 0.05;
}

.intelligence-city {
  bottom: 8%;
  width: 39%;
  height: 46%;
  opacity: 0.09;
  filter: blur(0.55px);
}

.intelligence-city--heritage { left: 1.5%; }
.intelligence-city--future { right: 1%; }

.intelligence-building {
  background: rgba(91, 101, 137, 0.8);
  box-shadow: inset 0 0 0 1px rgba(177, 181, 202, 0.12);
}

.intelligence-city--heritage .intelligence-building {
  border-radius: 0;
  clip-path: polygon(0 18%, 12% 18%, 12% 8%, 28% 8%, 28% 0, 70% 0, 70% 8%, 88% 8%, 88% 18%, 100% 18%, 100% 100%, 0 100%);
}

.intelligence-building--h1 { left: 0; width: 14%; height: 34%; }
.intelligence-building--h2 { left: 12%; width: 18%; height: 54%; clip-path: polygon(0 23%, 16% 23%, 24% 9%, 38% 2%, 50% 0, 62% 2%, 76% 9%, 84% 23%, 100% 23%, 100% 100%, 0 100%); }
.intelligence-building--h3 { left: 29%; width: 8%; height: 76%; clip-path: polygon(40% 0, 60% 0, 67% 20%, 84% 24%, 84% 100%, 16% 100%, 16% 24%, 33% 20%); }
.intelligence-building--h4 { left: 36%; width: 17%; height: 42%; clip-path: polygon(0 22%, 18% 22%, 18% 12%, 42% 12%, 50% 0, 58% 12%, 82% 12%, 82% 22%, 100% 22%, 100% 100%, 0 100%); }
.intelligence-building--h5 { left: 51%; width: 13%; height: 31%; }
.intelligence-building--h6 { left: 62%; width: 18%; height: 59%; clip-path: polygon(0 28%, 12% 28%, 20% 14%, 34% 5%, 50% 0, 66% 5%, 80% 14%, 88% 28%, 100% 28%, 100% 100%, 0 100%); }
.intelligence-building--h7 { left: 79%; width: 12%; height: 39%; }
.intelligence-building--h8 { left: 90%; width: 7%; height: 66%; clip-path: polygon(36% 0, 64% 0, 64% 15%, 76% 18%, 76% 100%, 24% 100%, 24% 18%, 36% 15%); }

.intelligence-city--future .intelligence-building {
  background: rgba(82, 96, 134, 0.76);
  box-shadow: inset 0 0 0 1px rgba(159, 172, 198, 0.12);
}

.intelligence-building--f1 { left: 0; width: 10%; height: 39%; clip-path: polygon(35% 0, 100% 12%, 82% 100%, 0 100%); }
.intelligence-building--f2 { left: 11%; width: 15%; height: 65%; clip-path: polygon(8% 8%, 78% 0, 100% 100%, 0 100%); }
.intelligence-building--f3 { left: 27%; width: 9%; height: 88%; clip-path: polygon(45% 0, 73% 6%, 100% 100%, 0 100%, 28% 7%); }
.intelligence-building--f4 { left: 38%; width: 16%; height: 54%; clip-path: polygon(17% 0, 100% 16%, 86% 100%, 0 100%); }
.intelligence-building--f5 { left: 55%; width: 11%; height: 78%; clip-path: polygon(0 12%, 67% 0, 100% 100%, 8% 100%); }
.intelligence-building--f6 { left: 67%; width: 14%; height: 48%; clip-path: polygon(30% 0, 100% 6%, 78% 100%, 0 100%); }
.intelligence-building--f7 { left: 81%; width: 8%; height: 71%; clip-path: polygon(15% 5%, 72% 0, 100% 100%, 0 100%); }
.intelligence-building--f8 { left: 90%; width: 9%; height: 35%; clip-path: polygon(0 18%, 100% 0, 84% 100%, 10% 100%); }

.intelligence-paths {
  position: absolute;
  inset: 17% 10% 9%;
  z-index: 2;
  opacity: 0.075;
}

.intelligence-path,
.intelligence-node {
  position: absolute;
  display: block;
}

.intelligence-path {
  border: 1px solid rgba(104, 115, 151, 0.65);
  border-top-color: transparent;
}

.intelligence-path--heritage {
  bottom: 10%;
  left: 2%;
  width: 39%;
  height: 21%;
  border-right-color: transparent;
  border-radius: 0 0 0 56%;
  transform: rotate(3deg);
}

.intelligence-path--bridge {
  bottom: 21%;
  left: 38%;
  width: 25%;
  height: 15%;
  border-right-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-8deg);
}

.intelligence-path--future {
  right: 0;
  bottom: 15%;
  width: 39%;
  height: 29%;
  border-left-color: transparent;
  border-radius: 0 0 52% 0;
  transform: rotate(-4deg);
}

.intelligence-node {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(119, 134, 165, 0.8);
  box-shadow: 0 0 11px rgba(119, 134, 165, 0.22);
}

.intelligence-node--01 { bottom: 22%; left: 37%; }
.intelligence-node--02 { bottom: 29%; left: 51%; }
.intelligence-node--03 { right: 30%; bottom: 27%; }

.intelligence-light--gold {
  top: 13%;
  left: 9%;
  width: 78%;
  height: 58%;
  background:
    radial-gradient(ellipse at 13% 68%, rgba(228, 192, 84, 0.2), rgba(228, 192, 84, 0.022) 19%, transparent 39%),
    radial-gradient(ellipse at 43% 48%, rgba(228, 192, 84, 0.15), rgba(228, 192, 84, 0.018) 17%, transparent 35%),
    radial-gradient(ellipse at 76% 36%, rgba(228, 192, 84, 0.19), rgba(228, 192, 84, 0.02) 18%, transparent 37%),
    radial-gradient(ellipse at 91% 66%, rgba(228, 192, 84, 0.13), transparent 28%);
}

.intelligence-light--green {
  right: 8%;
  bottom: 12%;
  width: 23%;
  height: 22%;
  background:
    radial-gradient(circle at 31% 40%, rgba(80, 128, 105, 0.22) 0 1.5%, transparent 4%),
    radial-gradient(circle at 68% 57%, rgba(80, 128, 105, 0.18) 0 1.2%, transparent 3.5%),
    radial-gradient(ellipse, rgba(80, 128, 105, 0.04), transparent 61%);
}

.selective-section.is-active .intelligence-city--heritage {
  animation: intelligence-heritage-v05 3.8s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.selective-section.is-active .intelligence-city--future {
  animation: intelligence-future-v05 3.8s cubic-bezier(0.2, 0.72, 0.2, 1) 260ms both;
}

.selective-section.is-active .intelligence-paths {
  animation: intelligence-paths-v05 3.8s cubic-bezier(0.2, 0.72, 0.2, 1) 160ms both;
}

.selective-section.is-active .intelligence-light--gold {
  animation: intelligence-gold-v05 3.8s cubic-bezier(0.17, 0.72, 0.2, 1) both;
}

.selective-section.is-active .intelligence-light--green {
  animation: intelligence-green-v05 3.6s cubic-bezier(0.17, 0.72, 0.2, 1) 380ms both;
}

.selective-section.is-active .intelligence-city--heritage .intelligence-building {
  animation: intelligence-city-gold-v05 3.8s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.selective-section.is-active .intelligence-city--future .intelligence-building {
  animation: intelligence-city-gold-future-v05 3.8s cubic-bezier(0.2, 0.72, 0.2, 1) 260ms both;
}

.selective-section.is-active .intelligence-path {
  animation: intelligence-path-gold-v05 3.8s cubic-bezier(0.2, 0.72, 0.2, 1) 160ms both;
}

.selective-section.is-active .intelligence-node--02,
.selective-section.is-active .intelligence-node--03 {
  animation: intelligence-node-green-v05 3.6s cubic-bezier(0.2, 0.72, 0.2, 1) 420ms both;
}

@keyframes intelligence-heritage-v05 {
  0%, 7% { opacity: 0.09; filter: blur(0.55px); }
  34% { opacity: 0.26; filter: blur(0.05px); }
  63% { opacity: 0.14; filter: blur(0.25px); }
  100% { opacity: 0.09; filter: blur(0.55px); }
}

@keyframes intelligence-future-v05 {
  0%, 11% { opacity: 0.085; filter: blur(0.6px); }
  48% { opacity: 0.235; filter: blur(0.04px); }
  71% { opacity: 0.125; filter: blur(0.28px); }
  100% { opacity: 0.085; filter: blur(0.6px); }
}

@keyframes intelligence-paths-v05 {
  0%, 9% { opacity: 0.075; }
  42% { opacity: 0.22; }
  70% { opacity: 0.115; }
  100% { opacity: 0.075; }
}

@keyframes intelligence-gold-v05 {
  0%, 7% { opacity: 0; transform: scale(0.92); }
  31% { opacity: 0.46; transform: scale(1.015); }
  52% { opacity: 0.16; transform: scale(0.98); }
  68% { opacity: 0.3; transform: scale(1.005); }
  100% { opacity: 0; transform: scale(0.94); }
}

@keyframes intelligence-green-v05 {
  0%, 24% { opacity: 0; transform: scale(0.93); }
  52% { opacity: 0.05; transform: scale(1.01); }
  73% { opacity: 0.014; transform: scale(0.97); }
  100% { opacity: 0; transform: scale(0.94); }
}

@keyframes intelligence-city-gold-v05 {
  0%, 9% {
    background-color: rgba(91, 101, 137, 0.8);
    box-shadow: inset 0 0 0 1px rgba(177, 181, 202, 0.12);
  }
  38% {
    background-color: rgba(185, 153, 70, 0.88);
    box-shadow: inset 0 0 0 1px rgba(232, 204, 119, 0.34), 0 0 12px rgba(228, 192, 84, 0.08);
  }
  68% {
    background-color: rgba(122, 112, 116, 0.82);
    box-shadow: inset 0 0 0 1px rgba(200, 183, 139, 0.16);
  }
  100% {
    background-color: rgba(91, 101, 137, 0.8);
    box-shadow: inset 0 0 0 1px rgba(177, 181, 202, 0.12);
  }
}

@keyframes intelligence-path-gold-v05 {
  0%, 11%, 100% { border-color: rgba(104, 115, 151, 0.65); border-top-color: transparent; }
  42% { border-color: rgba(228, 192, 84, 0.72); border-top-color: transparent; }
  70% { border-color: rgba(148, 137, 126, 0.66); border-top-color: transparent; }
}

@keyframes intelligence-city-gold-future-v05 {
  0%, 9% {
    background-color: rgba(82, 96, 134, 0.76);
    box-shadow: inset 0 0 0 1px rgba(159, 172, 198, 0.12);
  }
  38% {
    background-color: rgba(181, 151, 73, 0.86);
    box-shadow: inset 0 0 0 1px rgba(232, 204, 119, 0.32), 0 0 12px rgba(228, 192, 84, 0.075);
  }
  68% {
    background-color: rgba(116, 110, 118, 0.79);
    box-shadow: inset 0 0 0 1px rgba(192, 181, 150, 0.15);
  }
  100% {
    background-color: rgba(82, 96, 134, 0.76);
    box-shadow: inset 0 0 0 1px rgba(159, 172, 198, 0.12);
  }
}

@keyframes intelligence-node-green-v05 {
  0%, 22%, 100% { background-color: rgba(119, 134, 165, 0.8); box-shadow: 0 0 11px rgba(119, 134, 165, 0.22); }
  52% { background-color: rgba(91, 139, 111, 0.96); box-shadow: 0 0 13px rgba(91, 139, 111, 0.38); }
  72% { background-color: rgba(100, 130, 120, 0.84); box-shadow: 0 0 10px rgba(91, 139, 111, 0.18); }
}

[data-motion-debug-panel] {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 50;
  display: grid;
  min-width: 220px;
  gap: 4px;
  padding: 11px 13px;
  border: 1px solid rgba(228, 192, 84, 0.32);
  color: rgba(245, 243, 236, 0.72);
  background: rgba(6, 6, 23, 0.92);
  font: 10px/1.4 Arial, sans-serif;
  letter-spacing: 0.11em;
  pointer-events: none;
}

[data-motion-debug-panel] span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

[data-motion-debug-panel] b {
  color: var(--alwael-gold);
  font-weight: 600;
}

@media (max-width: 900px) {
  .selective-section {
    min-height: auto;
  }

  .intelligence-layer {
    inset: 4% -15% 3%;
    opacity: 0.66;
  }

  .intelligence-city {
    width: 44%;
    height: 35%;
  }

  .intelligence-paths {
    inset-inline: 6%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .name-section__ibex::before,
  .name-section__ibex::after,
  .character-section .value-row__label,
  .intelligence-city,
  .intelligence-layer::before,
  .intelligence-layer::after,
  .intelligence-paths,
  .intelligence-building,
  .intelligence-path,
  .intelligence-node,
  .intelligence-light,
  .access-section .secondary-copy {
    animation: none !important;
    transition: none !important;
  }

  .intelligence-city {
    opacity: 0.09;
    filter: blur(0.55px);
  }

  .intelligence-paths {
    opacity: 0.075;
  }
}

/* v06 — refined dual-world architectural residue for SELECTIVE. */
.selective-section {
  --discovery-drift-x: 0%;
  --discovery-drift-y: 0%;
}

.selective-section[data-discovery-variant="2"] {
  --discovery-drift-x: 2.2%;
  --discovery-drift-y: -1.2%;
}

.selective-section[data-discovery-variant="3"] {
  --discovery-drift-x: -1.8%;
  --discovery-drift-y: 1.1%;
}

.intelligence-layer {
  inset: 2% -0.5% 1.5%;
  overflow: hidden;
  opacity: 1;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 17%, #000 91%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 17%, #000 91%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.intelligence-layer::before {
  right: 6%;
  bottom: 7.5%;
  left: 5%;
  height: 24%;
  border: 1px solid transparent;
  border-bottom-color: rgba(93, 108, 145, 0.32);
  border-radius: 0 0 50% 50%;
  opacity: 0.055;
  transform: rotate(-1.2deg);
}

.intelligence-layer::after {
  top: 29%;
  left: 43%;
  width: 17%;
  height: 33%;
  border: 1px solid rgba(99, 113, 150, 0.25);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 58% 0 0 0;
  opacity: 0.045;
  transform: rotate(24deg) skewY(-7deg);
}

.intelligence-city {
  bottom: 4.5%;
  width: 44%;
  height: 58%;
  opacity: 0.07;
  filter: blur(0.35px) saturate(0.72);
  transform-origin: 50% 100%;
}

.intelligence-city--heritage {
  left: -1%;
  background: radial-gradient(ellipse at 43% 100%, rgba(47, 59, 98, 0.24), transparent 64%);
}

.intelligence-city--future {
  right: -0.5%;
  width: 42%;
  height: 60%;
  background: radial-gradient(ellipse at 58% 100%, rgba(42, 59, 95, 0.22), transparent 64%);
}

.intelligence-building {
  overflow: hidden;
  border: 0;
  background: linear-gradient(180deg, rgba(78, 91, 127, 0.82), rgba(50, 62, 99, 0.7));
  box-shadow:
    inset 1px 0 rgba(160, 170, 197, 0.1),
    inset -1px 0 rgba(22, 29, 61, 0.24);
  transform-origin: 50% 100%;
}

.intelligence-building::after {
  position: absolute;
  inset: 18% 12% 0;
  background: repeating-linear-gradient(90deg, transparent 0 17%, rgba(172, 179, 199, 0.12) 17.5% 18.2%, transparent 18.7% 34%);
  opacity: 0.36;
  content: "";
}

.intelligence-city--heritage .intelligence-building {
  border-radius: 0;
  background: linear-gradient(180deg, rgba(78, 88, 121, 0.8), rgba(48, 58, 91, 0.72));
}

.intelligence-city--heritage .intelligence-building::after {
  inset: 34% 15% 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 24%, rgba(181, 180, 188, 0.1) 24.5% 26%, transparent 26.5% 50%),
    linear-gradient(180deg, transparent 0 62%, rgba(23, 30, 61, 0.18) 63% 65%, transparent 66%);
  opacity: 0.3;
}

.intelligence-building--h1 {
  left: 1%;
  width: 12%;
  height: 29%;
  clip-path: polygon(0 24%, 16% 24%, 16% 16%, 42% 16%, 42% 7%, 72% 7%, 72% 15%, 100% 15%, 100% 100%, 0 100%);
}

.intelligence-city--heritage .intelligence-building--h2 {
  left: 13.5%;
  width: 16%;
  height: 51%;
  border-radius: 50% 50% 1px 1px / 27% 27% 1px 1px;
  clip-path: none;
}

.intelligence-building--h3 {
  left: 31.5%;
  width: 5%;
  height: 78%;
  clip-path: polygon(46% 0, 54% 0, 58% 10%, 70% 14%, 72% 20%, 90% 23%, 90% 28%, 72% 31%, 70% 100%, 30% 100%, 28% 31%, 10% 28%, 10% 23%, 28% 20%, 30% 14%, 42% 10%);
}

.intelligence-building--h4 {
  left: 38%;
  width: 13%;
  height: 36%;
  clip-path: polygon(0 25%, 21% 25%, 21% 16%, 48% 16%, 48% 8%, 76% 8%, 76% 17%, 100% 17%, 100% 100%, 0 100%);
}

.intelligence-building--h5 {
  left: 52%;
  width: 10%;
  height: 27%;
  clip-path: polygon(0 18%, 22% 18%, 22% 8%, 78% 8%, 78% 18%, 100% 18%, 100% 100%, 0 100%);
}

.intelligence-city--heritage .intelligence-building--h6 {
  left: 64%;
  width: 17%;
  height: 55%;
  border-radius: 50% 50% 1px 1px / 25% 25% 1px 1px;
  clip-path: none;
}

.intelligence-building--h7 {
  left: 83%;
  width: 9%;
  height: 34%;
  clip-path: polygon(0 22%, 15% 22%, 15% 12%, 35% 12%, 35% 5%, 65% 5%, 65% 12%, 85% 12%, 85% 22%, 100% 22%, 100% 100%, 0 100%);
}

.intelligence-building--h8 {
  left: 94%;
  width: 4%;
  height: 63%;
  clip-path: polygon(44% 0, 56% 0, 58% 12%, 72% 17%, 73% 23%, 86% 27%, 86% 31%, 68% 34%, 65% 100%, 35% 100%, 32% 34%, 14% 31%, 14% 27%, 27% 23%, 28% 17%, 42% 12%);
}

.intelligence-city--future .intelligence-building {
  border-radius: 0;
  background: linear-gradient(180deg, rgba(71, 89, 126, 0.78), rgba(42, 56, 92, 0.7));
  box-shadow:
    inset 1px 0 rgba(151, 169, 198, 0.13),
    inset -1px 0 rgba(20, 27, 58, 0.22);
}

.intelligence-city--future .intelligence-building::after {
  inset: 12% 18% 0;
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(171, 187, 210, 0.15) 45% 47%, transparent 48%),
    linear-gradient(180deg, transparent 0 18%, rgba(171, 187, 210, 0.08) 19% 20%, transparent 21% 43%, rgba(171, 187, 210, 0.07) 44% 45%, transparent 46%);
  opacity: 0.44;
}

.intelligence-building--f1 {
  left: 1%;
  width: 8%;
  height: 31%;
  clip-path: polygon(24% 10%, 86% 0, 100% 100%, 0 100%);
  transform: skewX(-2deg);
}

.intelligence-building--f2 {
  left: 12%;
  width: 10%;
  height: 59%;
  clip-path: polygon(10% 9%, 36% 3%, 50% 0, 64% 3%, 90% 9%, 78% 100%, 0 100%);
}

.intelligence-building--f3 {
  left: 26%;
  width: 5.5%;
  height: 92%;
  clip-path: polygon(47% 0, 62% 3%, 76% 18%, 100% 100%, 0 100%, 29% 17%);
}

.intelligence-building--f4 {
  left: 35%;
  width: 10.5%;
  height: 51%;
  clip-path: polygon(8% 12%, 72% 0, 100% 15%, 84% 100%, 0 100%);
}

.intelligence-building--f5 {
  left: 50%;
  width: 7%;
  height: 77%;
  clip-path: polygon(0 15%, 61% 0, 83% 7%, 100% 100%, 10% 100%);
}

.intelligence-building--f6 {
  left: 62%;
  width: 10%;
  height: 44%;
  border-radius: 46% 12% 0 0 / 12% 8% 0 0;
  clip-path: polygon(20% 4%, 78% 0, 100% 12%, 81% 100%, 0 100%);
}

.intelligence-building--f7 {
  left: 77%;
  width: 5%;
  height: 68%;
  clip-path: polygon(18% 7%, 49% 0, 76% 9%, 100% 100%, 0 100%);
}

.intelligence-building--f8 {
  left: 87%;
  width: 8%;
  height: 30%;
  clip-path: polygon(0 22%, 74% 0, 100% 14%, 86% 100%, 7% 100%);
}

.intelligence-paths {
  inset: 14% 7% 7%;
  z-index: 3;
  opacity: 0.05;
}

.intelligence-path {
  border: 0;
  border-bottom: 1px solid rgba(98, 114, 152, 0.7);
  box-shadow: 0 7px 18px rgba(46, 61, 99, 0.08);
}

.intelligence-path--heritage {
  bottom: 10%;
  left: 1%;
  width: 44%;
  height: 26%;
  border-radius: 0 0 0 72%;
  transform: rotate(2deg);
}

.intelligence-path--bridge {
  bottom: 22%;
  left: 37%;
  width: 28%;
  height: 18%;
  border-radius: 50%;
  transform: rotate(-6deg);
}

.intelligence-path--future {
  right: 0;
  bottom: 13%;
  width: 43%;
  height: 31%;
  border-radius: 0 0 62% 0;
  transform: rotate(-3deg);
}

.intelligence-orbit {
  position: absolute;
  display: block;
  border: 1px solid rgba(104, 121, 157, 0.42);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.intelligence-orbit--01 {
  display: none;
}

.intelligence-orbit--02 {
  right: 20%;
  bottom: 20%;
  width: 21%;
  height: 24%;
  transform: rotate(-18deg);
}

.intelligence-node {
  width: 3px;
  height: 3px;
  background: rgba(123, 141, 174, 0.84);
  box-shadow: 0 0 12px rgba(123, 141, 174, 0.18);
}

.intelligence-node--01 { bottom: 24%; left: 39%; }
.intelligence-node--02 { bottom: 31%; left: 52%; }
.intelligence-node--03 { right: 28%; bottom: 28%; }

.intelligence-light {
  filter: blur(62px);
  mix-blend-mode: screen;
}

.intelligence-light--gold {
  top: 10%;
  left: 7%;
  width: 84%;
  height: 64%;
  background:
    radial-gradient(ellipse at 13% 69%, rgba(228, 192, 84, 0.26), rgba(228, 192, 84, 0.032) 17%, transparent 36%),
    radial-gradient(ellipse at 38% 49%, rgba(228, 192, 84, 0.18), rgba(228, 192, 84, 0.024) 15%, transparent 33%),
    radial-gradient(ellipse at 69% 36%, rgba(228, 192, 84, 0.23), rgba(228, 192, 84, 0.026) 17%, transparent 35%),
    radial-gradient(ellipse at 91% 67%, rgba(228, 192, 84, 0.18), rgba(228, 192, 84, 0.018) 15%, transparent 32%);
}

.intelligence-light--green {
  right: 7%;
  bottom: 10%;
  width: 25%;
  height: 24%;
  filter: blur(40px);
  background:
    radial-gradient(circle at 28% 42%, rgba(79, 133, 106, 0.25) 0 1.3%, transparent 4%),
    radial-gradient(circle at 69% 57%, rgba(79, 133, 106, 0.2) 0 1%, transparent 3.5%),
    radial-gradient(ellipse, rgba(79, 133, 106, 0.045), transparent 62%);
}

.selective-section.is-active .intelligence-city--heritage {
  animation: intelligence-heritage-v06 3.8s cubic-bezier(0.19, 0.72, 0.2, 1) both;
}

.selective-section.is-active .intelligence-city--future {
  animation: intelligence-future-v06 3.8s cubic-bezier(0.19, 0.72, 0.2, 1) 220ms both;
}

.selective-section.is-active .intelligence-paths {
  animation: intelligence-paths-v06 3.7s cubic-bezier(0.19, 0.72, 0.2, 1) 120ms both;
}

.selective-section.is-active .intelligence-layer::before {
  animation: intelligence-horizon-v06 3.65s cubic-bezier(0.19, 0.72, 0.2, 1) 130ms both;
}

.selective-section.is-active .intelligence-layer::after {
  animation: intelligence-arc-v06 3.55s cubic-bezier(0.19, 0.72, 0.2, 1) 260ms both;
}

.selective-section.is-active .intelligence-light--gold {
  animation: intelligence-gold-v06 3.7s cubic-bezier(0.16, 0.7, 0.2, 1) both;
}

.selective-section.is-active .intelligence-light--green {
  animation: intelligence-green-v06 3.45s cubic-bezier(0.16, 0.7, 0.2, 1) 360ms both;
}

.selective-section.is-active .intelligence-city--heritage .intelligence-building {
  animation: intelligence-material-heritage-v06 3.55s cubic-bezier(0.19, 0.72, 0.2, 1) var(--city-delay, 0ms) both;
}

.selective-section.is-active .intelligence-city--future .intelligence-building {
  animation: intelligence-material-future-v06 3.45s cubic-bezier(0.19, 0.72, 0.2, 1) var(--city-delay, 0ms) both;
}

.intelligence-building:nth-child(2) { --city-delay: 45ms; }
.intelligence-building:nth-child(3) { --city-delay: 90ms; }
.intelligence-building:nth-child(4) { --city-delay: 125ms; }
.intelligence-building:nth-child(5) { --city-delay: 70ms; }
.intelligence-building:nth-child(6) { --city-delay: 150ms; }
.intelligence-building:nth-child(7) { --city-delay: 105ms; }
.intelligence-building:nth-child(8) { --city-delay: 165ms; }

.selective-section.is-active .intelligence-path {
  animation: intelligence-path-material-v06 3.55s cubic-bezier(0.19, 0.72, 0.2, 1) 130ms both;
}

.selective-section.is-active .intelligence-orbit {
  animation: intelligence-orbit-material-v06 3.55s cubic-bezier(0.19, 0.72, 0.2, 1) 130ms both;
}

.selective-section.is-active .intelligence-node--02,
.selective-section.is-active .intelligence-node--03 {
  animation: intelligence-node-green-v06 3.4s cubic-bezier(0.19, 0.72, 0.2, 1) 400ms both;
}

@keyframes intelligence-heritage-v06 {
  0%, 8%, 100% { opacity: 0.07; filter: blur(0.35px) saturate(0.72); transform: scale(0.999); }
  34% { opacity: 0.3; filter: blur(0.02px) saturate(0.96); transform: scale(1); }
  62% { opacity: 0.165; filter: blur(0.16px) saturate(0.84); }
}

@keyframes intelligence-future-v06 {
  0%, 11%, 100% { opacity: 0.068; filter: blur(0.38px) saturate(0.72); transform: scale(0.999); }
  49% { opacity: 0.285; filter: blur(0.01px) saturate(0.96); transform: scale(1); }
  72% { opacity: 0.15; filter: blur(0.18px) saturate(0.84); }
}

@keyframes intelligence-paths-v06 {
  0%, 10%, 100% { opacity: 0.05; }
  43% { opacity: 0.185; }
  70% { opacity: 0.095; }
}

@keyframes intelligence-horizon-v06 {
  0%, 12%, 100% { opacity: 0.045; }
  45% { opacity: 0.15; }
  72% { opacity: 0.07; }
}

@keyframes intelligence-arc-v06 {
  0%, 18%, 100% { opacity: 0.04; }
  52% { opacity: 0.14; }
  75% { opacity: 0.06; }
}

@keyframes intelligence-gold-v06 {
  0%, 7%, 100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.93);
  }
  30% {
    opacity: 0.48;
    transform: translate(calc(var(--discovery-drift-x) * 0.55), calc(var(--discovery-drift-y) * 0.55)) scale(1.015);
  }
  51% {
    opacity: 0.2;
    transform: translate(var(--discovery-drift-x), var(--discovery-drift-y)) scale(0.99);
  }
  68% {
    opacity: 0.33;
    transform: translate(calc(var(--discovery-drift-x) * -0.35), calc(var(--discovery-drift-y) * -0.35)) scale(1.005);
  }
}

@keyframes intelligence-green-v06 {
  0%, 25%, 100% { opacity: 0; transform: scale(0.94); }
  54% { opacity: 0.052; transform: scale(1.01); }
  74% { opacity: 0.015; transform: scale(0.97); }
}

@keyframes intelligence-material-heritage-v06 {
  0%, 10%, 100% {
    background-color: rgba(64, 76, 109, 0.78);
    box-shadow: inset 1px 0 rgba(160, 170, 197, 0.1), inset -1px 0 rgba(22, 29, 61, 0.24);
  }
  39% {
    background-color: rgba(177, 148, 77, 0.86);
    box-shadow: inset 1px 0 rgba(237, 210, 134, 0.26), inset -1px 0 rgba(81, 66, 46, 0.22), 0 0 14px rgba(228, 192, 84, 0.07);
  }
  69% {
    background-color: rgba(107, 101, 103, 0.78);
  }
}

@keyframes intelligence-material-future-v06 {
  0%, 11%, 100% {
    background-color: rgba(58, 75, 111, 0.76);
    box-shadow: inset 1px 0 rgba(151, 169, 198, 0.13), inset -1px 0 rgba(20, 27, 58, 0.22);
  }
  48% {
    background-color: rgba(169, 145, 83, 0.82);
    box-shadow: inset 1px 0 rgba(231, 207, 143, 0.24), inset -1px 0 rgba(72, 66, 55, 0.2), 0 0 14px rgba(228, 192, 84, 0.065);
  }
  71% {
    background-color: rgba(97, 99, 108, 0.76);
  }
}

@keyframes intelligence-path-material-v06 {
  0%, 12%, 100% { border-bottom-color: rgba(98, 114, 152, 0.48); }
  45% { border-bottom-color: rgba(228, 192, 84, 0.66); }
  72% { border-bottom-color: rgba(146, 139, 130, 0.5); }
}

@keyframes intelligence-orbit-material-v06 {
  0%, 12%, 100% { border-top-color: rgba(98, 114, 152, 0.4); border-left-color: rgba(98, 114, 152, 0.4); }
  45% { border-top-color: rgba(228, 192, 84, 0.58); border-left-color: rgba(228, 192, 84, 0.58); }
  72% { border-top-color: rgba(146, 139, 130, 0.44); border-left-color: rgba(146, 139, 130, 0.44); }
}

@keyframes intelligence-node-green-v06 {
  0%, 24%, 100% { background-color: rgba(123, 141, 174, 0.84); box-shadow: 0 0 12px rgba(123, 141, 174, 0.18); }
  54% { background-color: rgba(84, 141, 110, 0.96); box-shadow: 0 0 14px rgba(84, 141, 110, 0.38); }
  74% { background-color: rgba(101, 132, 120, 0.84); box-shadow: 0 0 10px rgba(84, 141, 110, 0.18); }
}

@media (min-width: 2200px) {
  .intelligence-city {
    width: 42%;
  }

  .intelligence-city--heritage { left: 0.5%; }
  .intelligence-city--future { right: 0.5%; }
}

@media (max-width: 900px) {
  .intelligence-layer {
    inset: 4% -26% 2%;
    opacity: 0.7;
  }

  .intelligence-city {
    bottom: 5%;
    width: 47%;
    height: 36%;
  }

  .intelligence-paths {
    inset: 15% 4% 6%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intelligence-layer::before,
  .intelligence-layer::after,
  .intelligence-city,
  .intelligence-building,
  .intelligence-paths,
  .intelligence-path,
  .intelligence-orbit,
  .intelligence-node,
  .intelligence-light {
    animation: none !important;
    transition: none !important;
  }

  .intelligence-city {
    opacity: 0.07;
    filter: blur(0.35px) saturate(0.72);
  }

  .intelligence-paths {
    opacity: 0.05;
  }

  .intelligence-light {
    display: none;
  }
}

/* v10.9 — second display-scale refinement relative to the approved v10.8 baseline. */
@media (min-width: 901px) {
  .display-title {
    font-size: clamp(3.6378rem, 9.306vw, 8.46rem);
  }

  .section-title {
    font-size: clamp(2.2842rem, 4.9068vw, 4.8645rem);
  }

  .value-row__label {
    font-size: clamp(1.9881rem, 3.6801vw, 4.1454rem);
  }

  .selective-heading__primary,
  .selective-heading__continuation {
    font-size: clamp(2.7072rem, min(4.23vw, 6.0912vh), 4.7376rem);
  }
}

@media (min-width: 901px) and (max-height: 900px) {
  .character-section .section-title {
    font-size: clamp(2.7072rem, 4.23vw, 4.0608rem);
  }

  .character-section .value-row__label {
    font-size: clamp(1.9881rem, 3.384vw, 3.384rem);
  }
}

@media (min-width: 901px) and (max-height: 790px) {
  .character-section .section-title {
    font-size: clamp(2.538rem, 3.8916vw, 3.5109rem);
  }
}

@media (min-width: 901px) and (max-height: 799px) {
  .selective-heading__primary,
  .selective-heading__continuation {
    font-size: clamp(2.2419rem, 5.2875vh, 2.7072rem);
  }

  .access-section .section-title {
    font-size: clamp(2.2842rem, 5.2452vh, 2.7495rem);
  }
}

@media (max-width: 600px) {
  .display-title {
    max-width: 100%;
    font-size: clamp(3.0832rem, 17.7284vw, 4.77896rem);
    white-space: nowrap;
  }

  .section-title {
    font-size: clamp(1.88846rem, 9.2496vw, 3.0832rem);
  }

  .value-row__label {
    font-size: clamp(1.5416rem, 8.0934vw, 2.38948rem);
  }

}
