:root {
  --bg: #090504;
  --bg-soft: #1a0e08;
  --surface: rgba(22, 12, 8, 0.72);
  --surface-strong: rgba(17, 10, 7, 0.9);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 166, 92, 0.32);
  --text: #f9f1e7;
  --muted: rgba(244, 226, 205, 0.7);
  --accent: #ff9a4a;
  --content: 1240px;
  --content-wide: 1440px;
  --radius: 26px;
  --shadow: 0 40px 120px rgba(0, 0, 0, 0.38);
  --scroll-progress: 0;
  --pointer-x: 0.5;
  --pointer-y: 0.5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 126, 40, 0.26), transparent 24%),
    radial-gradient(circle at 74% 16%, rgba(255, 112, 26, 0.18), transparent 28%),
    radial-gradient(circle at 50% 68%, rgba(255, 173, 94, 0.08), transparent 36%),
    linear-gradient(180deg, #1d0f08 0%, #090504 34%, #050303 100%);
  font-family: "IBM Plex Sans", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent);
  opacity: calc(0.48 - (var(--scroll-progress) * 0.12));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 4px);
  opacity: 0.16;
  mix-blend-mode: soft-light;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.particle-field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.52;
}

.page-shell {
  position: relative;
  z-index: 1;
  overflow: clip;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(2, 5, 12, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar--overlay {
  background: rgba(2, 5, 12, 0.24);
}

.topbar__inner,
.page-head,
.footer__inner,
.section-block {
  width: min(calc(100% - 36px), var(--content));
  margin: 0 auto;
}

.topbar__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand__mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.36rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand__sub {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav__link {
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav__link:hover,
.nav__link.is-current {
  color: var(--text);
}

.lang-switcher {
  display: inline-flex;
  gap: 8px;
}

.lang-switcher button {
  min-width: 52px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.lang-switcher button.is-active {
  color: var(--text);
  background: rgba(255, 154, 74, 0.12);
  border-color: rgba(255, 154, 74, 0.36);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 184, 126, 0.92);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #160903;
  background: linear-gradient(135deg, #fff4e8 0%, #ffd1a4 52%, #ff9a4a 100%);
  box-shadow: 0 18px 44px rgba(255, 154, 74, 0.18);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.landing-main {
  position: relative;
}

.full-bleed-hero {
  --hero-progress: 0;
  position: relative;
  min-height: 150vh;
  padding: 14vh 0 12vh;
  overflow: clip;
}

.hero-composition {
  position: relative;
  width: min(calc(100% - 40px), var(--content-wide));
  min-height: 122vh;
  margin: 0 auto;
}

.hero-aura,
.hero-grid-plane,
.hero-core,
.hero-signalcloud,
.hero-copy {
  position: absolute;
}

.hero-aura {
  border-radius: 999px;
  filter: blur(64px);
  mix-blend-mode: screen;
}

.hero-aura--one {
  width: 48vw;
  height: 48vw;
  top: 0;
  left: -10vw;
  background: radial-gradient(circle, rgba(140, 200, 255, 0.3), transparent 68%);
  animation: auraDrift 18s ease-in-out infinite;
}

.hero-aura--two {
  width: 40vw;
  height: 40vw;
  top: 10vh;
  right: -8vw;
  background: radial-gradient(circle, rgba(140, 200, 255, 0.18), transparent 68%);
  animation: auraDrift 22s ease-in-out infinite reverse;
}

.hero-aura--three {
  width: 32vw;
  height: 32vw;
  bottom: 8vh;
  left: 32vw;
  background: radial-gradient(circle, rgba(140, 200, 255, 0.14), transparent 72%);
  animation: auraPulse 16s ease-in-out infinite;
}

.hero-grid-plane {
  inset: auto -10% 0;
  height: 62vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 10%, rgba(0, 0, 0, 1), transparent 76%);
  opacity: 0.34;
  transform: perspective(1200px) rotateX(76deg) translateY(calc(10vh - (var(--hero-progress) * 10vh))) scale(2.2);
  transform-origin: center top;
}

.hero-core {
  top: 8vh;
  right: 4vw;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translate3d(calc((var(--pointer-x) - 0.5) * 50px), calc((var(--pointer-y) - 0.5) * 36px), 0) rotate(calc(var(--hero-progress) * 30deg));
}

.hero-core__ring,
.hero-core__beam {
  position: absolute;
}

.hero-core__ring {
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-core__ring--mid {
  inset: 12%;
}

.hero-core__ring--inner {
  inset: 24%;
  box-shadow: inset 0 0 80px rgba(140, 200, 255, 0.14), 0 0 100px rgba(140, 200, 255, 0.12);
}

.hero-core::before {
  content: "";
  position: absolute;
  inset: 33%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(247, 251, 255, 0.96) 0%, rgba(140, 200, 255, 0.8) 30%, rgba(140, 200, 255, 0.12) 56%, transparent 72%);
  filter: blur(8px);
}

.hero-core__beam {
  width: 110%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.76), transparent);
  opacity: 0.52;
  transform-origin: center;
}

.hero-core__beam--a {
  transform: rotate(12deg);
}

.hero-core__beam--b {
  transform: rotate(64deg);
}

.hero-core__beam--c {
  transform: rotate(132deg);
}

.hero-copy {
  left: 0;
  right: 0;
  bottom: 14vh;
  z-index: 2;
  width: min(calc(100% - 24px), 1120px);
  margin: 0 auto;
  display: grid;
  gap: 22px;
  opacity: 0;
  transform: translate3d(0, 32px, 0) scale(0.98);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 900ms ease;
}

body.is-ready .hero-copy {
  opacity: 1;
  transform: translate3d(0, calc(var(--hero-progress) * -32px), 0) scale(1);
}

.hero-title,
.page-head h1,
.post-article h1,
.post-article h2,
.profile-stage h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.07em;
}

.hero-title--landing {
  display: grid;
  gap: 4px;
  font-size: clamp(4.4rem, 12vw, 10rem);
  line-height: 0.88;
  max-width: 9ch;
}

.hero-title--landing span:last-child {
  color: transparent;
  background: linear-gradient(90deg, #eff6ff 0%, #c6e2ff 42%, #8cc8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-minimal {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-signalcloud {
  inset: 0;
  pointer-events: none;
}

.hero-signalcloud span {
  position: absolute;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(0.76rem, 1vw, 1rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
}

.hero-signalcloud span:nth-child(1) {
  top: 11vh;
  left: 8vw;
}

.hero-signalcloud span:nth-child(2) {
  top: 22vh;
  right: 10vw;
}

.hero-signalcloud span:nth-child(3) {
  bottom: 28vh;
  left: 10vw;
}

.hero-signalcloud span:nth-child(4) {
  bottom: 18vh;
  right: 18vw;
}

.hero-signalcloud span:nth-child(5) {
  top: 48vh;
  left: 54vw;
}

.support-scene {
  --support-progress: 0;
  position: relative;
  min-height: 180vh;
  margin-top: -18vh;
}

.support-scene__sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: clip;
}

.support-scene__viewport {
  position: relative;
  width: min(100vw, 1520px);
  height: 100vh;
}

.support-scene__halo,
.support-scene__beam,
.support-scene__disc,
.support-scene__pulse,
.support-scene__caption {
  position: absolute;
}

.support-scene__halo {
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
}

.support-scene__halo--one {
  width: 42vw;
  height: 42vw;
  top: 20vh;
  left: 8vw;
  background: radial-gradient(circle, rgba(140, 200, 255, 0.22), transparent 70%);
}

.support-scene__halo--two {
  width: 36vw;
  height: 36vw;
  right: 6vw;
  bottom: 14vh;
  background: radial-gradient(circle, rgba(140, 200, 255, 0.16), transparent 72%);
}

.support-scene__beam {
  inset: 50% auto auto 50%;
  width: min(76vw, 1000px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.88), transparent);
  opacity: calc(0.24 + (var(--support-progress) * 0.38));
  transform-origin: center;
}

.support-scene__beam--a {
  transform: translate(-50%, -50%) rotate(calc(26deg + (var(--support-progress) * 42deg)));
}

.support-scene__beam--b {
  transform: translate(-50%, -50%) rotate(calc(118deg - (var(--support-progress) * 30deg)));
}

.support-scene__disc {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) scale(calc(0.9 + (var(--support-progress) * 0.22)));
}

.support-scene__disc--outer {
  width: min(72vw, 960px);
  height: min(72vw, 960px);
}

.support-scene__disc--mid {
  width: min(48vw, 660px);
  height: min(48vw, 660px);
}

.support-scene__disc--inner {
  width: min(22vw, 280px);
  height: min(22vw, 280px);
  box-shadow: inset 0 0 110px rgba(140, 200, 255, 0.12), 0 0 120px rgba(140, 200, 255, 0.12);
}

.support-scene__pulse {
  inset: 50% auto auto 50%;
  width: min(18vw, 240px);
  height: min(18vw, 240px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 251, 255, 0.95), rgba(140, 200, 255, 0.74) 34%, rgba(140, 200, 255, 0.08) 62%, transparent 72%);
  transform: translate(-50%, -50%) scale(calc(0.84 + (var(--support-progress) * 0.24)));
  filter: blur(6px);
}

.support-scene__caption {
  left: 8vw;
  bottom: 10vh;
  width: min(520px, calc(100% - 48px));
  display: grid;
  gap: 16px;
  opacity: calc(0.4 + (var(--support-progress) * 0.7));
  transform: translateY(calc(42px - (var(--support-progress) * 42px)));
}

.support-scene__caption h2,
.proof-band__inner h2,
.final-cta__copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.support-scene__caption p {
  margin: 0;
  max-width: 30rem;
  color: var(--muted);
  line-height: 1.8;
}

.detail-sequence {
  --detail-progress: 0;
  position: relative;
  min-height: 290vh;
}

.detail-sequence__sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  width: min(calc(100% - 40px), 1360px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 36px;
}

.detail-sequence__visual {
  position: relative;
  min-height: 80vh;
  display: grid;
  place-items: center;
}

.detail-sequence__visual-shell {
  position: relative;
  width: min(54vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate3d(calc((var(--pointer-x) - 0.5) * 40px), calc((var(--pointer-y) - 0.5) * 28px), 0) rotate(calc(var(--detail-progress) * 150deg));
}

.detail-sequence__visual-shell::before,
.detail-sequence__visual-shell::after,
.detail-sequence__orb,
.detail-sequence__glyph,
.detail-sequence__line {
  position: absolute;
}

.detail-sequence__visual-shell::before {
  content: "";
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-sequence__visual-shell::after {
  content: "";
  inset: 16%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-sequence__orb {
  inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 251, 255, 0.96), rgba(140, 200, 255, 0.72) 28%, rgba(140, 200, 255, 0.08) 54%, transparent 70%);
  box-shadow: 0 0 120px rgba(140, 200, 255, 0.18);
  transform: scale(calc(0.84 + (var(--detail-progress) * 0.26)));
}

.detail-sequence__glyph {
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 700;
  letter-spacing: -0.12em;
  color: rgba(255, 255, 255, 0.1);
}

.detail-sequence__line {
  inset: 50% auto auto 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
  opacity: 0.5;
}

.detail-sequence__line--x {
  width: 128%;
  height: 1px;
  transform: translate(-50%, -50%) rotate(0deg);
}

.detail-sequence__line--y {
  width: 128%;
  height: 1px;
  transform: translate(-50%, -50%) rotate(60deg);
}

.detail-sequence__line--z {
  width: 128%;
  height: 1px;
  transform: translate(-50%, -50%) rotate(120deg);
}

.detail-sequence__stack {
  display: grid;
  gap: 26px;
  align-content: center;
}

.detail-phase {
  --phase-amount: 0;
  position: relative;
  padding-left: 72px;
  opacity: calc(0.18 + (var(--phase-amount) * 0.82));
  transform: translateY(calc(40px - (var(--phase-amount) * 44px)));
  transition: opacity 220ms ease, transform 220ms ease;
}

.detail-phase::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(140, 200, 255, 0.44), rgba(255, 255, 255, 0.08));
  opacity: calc(0.2 + (var(--phase-amount) * 0.8));
}

.detail-phase__index {
  position: absolute;
  left: 0;
  top: -0.2rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  color: rgba(140, 200, 255, 0.9);
  letter-spacing: 0.18em;
}

.detail-phase__copy {
  display: grid;
  gap: 10px;
}

.detail-phase__tag,
.feature-card__meta,
.blog-card__meta,
.post-meta {
  color: rgba(140, 200, 255, 0.92);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.detail-phase__copy h2,
.blog-card h3,
.contact-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.detail-phase__copy p,
.feature-card p,
.blog-card p,
.contact-card p,
.post-article p,
.post-article li,
.profile-stage p,
.footer__inner p,
.page-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.proof-band {
  position: relative;
  padding: 12vh 0 16vh;
}

.proof-band__inner {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.proof-band__rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-band__item {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 200px;
  padding: 28px 22px;
  align-content: end;
  overflow: hidden;
  transition: transform 260ms ease, background 260ms ease;
}

.proof-band__item + .proof-band__item {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-band__item::before {
  content: "";
  position: absolute;
  inset: auto -10% -28% 10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 200, 255, 0.16), transparent 70%);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 260ms ease, transform 260ms ease;
}

.proof-band__item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.025);
}

.proof-band__item:hover::before {
  opacity: 1;
  transform: scale(1);
}

.proof-band__value {
  position: relative;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.14);
}

.proof-band__label {
  position: relative;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.final-cta {
  position: relative;
  min-height: 110vh;
  display: grid;
  place-items: center;
  padding: 14vh 0 18vh;
  overflow: clip;
}

.final-cta__halo,
.final-cta__copy {
  position: absolute;
}

.final-cta__halo {
  inset: auto;
  width: min(92vw, 1120px);
  height: min(92vw, 1120px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(140, 200, 255, 0.18), transparent 44%),
    radial-gradient(circle, rgba(140, 200, 255, 0.09), transparent 62%);
  filter: blur(26px);
}

.final-cta__copy {
  position: relative;
  width: min(calc(100% - 40px), 880px);
  display: grid;
  gap: 22px;
  text-align: center;
  justify-items: center;
}

.final-cta .hero-minimal {
  max-width: 40rem;
}

.footer {
  padding: 24px 0 64px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.page-head,
.post-wrap,
.section-block,
.blog-grid,
.contact-grid,
.profile-stage {
  width: min(calc(100% - 36px), var(--content));
  margin: 0 auto;
}

.page-head {
  padding: 96px 0 30px;
}

.page-head h1,
.profile-stage h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.92;
  max-width: 11ch;
}

.lead {
  max-width: 40rem;
}

.section {
  padding-bottom: 74px;
}

.blog-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card,
.blog-card,
.contact-card,
.post-article,
.profile-stage {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(7, 16, 31, 0.82), rgba(4, 10, 20, 0.94));
  box-shadow: var(--shadow);
}

.feature-card,
.blog-card,
.contact-card,
.post-article,
.profile-stage {
  padding: 28px;
}

.feature-card {
  display: block;
}

.feature-card__meta,
.blog-card__meta,
.post-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.feature-card h3 {
  margin: 18px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.blog-card h3,
.contact-card h3 {
  margin: 18px 0 12px;
}

.post-wrap {
  padding: 32px 0 72px;
}

.post-article h1 {
  margin: 18px 0 24px;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.94;
}

.post-article h2 {
  margin: 28px 0 12px;
  font-size: 1.7rem;
}

.post-article ul {
  padding-left: 22px;
}

.profile-stage {
  margin: 48px auto 90px;
  width: min(calc(100% - 36px), 760px);
}

.text-link,
.profile-note,
.empty-state {
  color: rgba(140, 200, 255, 0.94);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 700;
}

@keyframes auraDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -24px, 0) scale(1.06);
  }
}

@keyframes auraPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .topbar__inner,
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-sequence__sticky,
  .blog-grid,
  .contact-grid,
  .proof-band__rail {
    grid-template-columns: 1fr;
  }

  .detail-sequence__visual {
    min-height: 52vh;
  }

  .detail-sequence__visual-shell {
    width: min(78vw, 560px);
  }

  .proof-band__item + .proof-band__item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 720px) {
  .topbar__inner,
  .page-head,
  .footer__inner,
  .section-block,
  .blog-grid,
  .contact-grid,
  .post-wrap,
  .profile-stage {
    width: min(calc(100% - 24px), var(--content));
  }

  .hero-copy {
    bottom: 8vh;
  }

  .hero-title--landing {
    font-size: clamp(3.4rem, 15vw, 5.6rem);
  }

  .hero-core {
    top: 18vh;
    left: 50%;
    right: auto;
    width: min(84vw, 520px);
    transform: translate3d(-50%, 0, 0);
  }

  .hero-signalcloud span:nth-child(5) {
    left: auto;
    right: 8vw;
    top: 58vh;
  }

  .support-scene__caption {
    left: 24px;
    right: 24px;
    width: auto;
  }

  .detail-phase {
    padding-left: 56px;
  }

  .detail-phase::before {
    left: 18px;
  }

  .detail-phase__index {
    font-size: 0.88rem;
  }

  .feature-card,
  .blog-card,
  .contact-card,
  .post-article,
  .profile-stage {
    padding: 22px;
  }
}

.landing-main--amber {
  --stage-progress: 0;
  position: relative;
}

.landing-main--amber .full-bleed-hero {
  min-height: 175vh;
  padding: 0;
  overflow: clip;
}

.portal-hero {
  --portal-progress: 0;
  position: relative;
}

.portal-hero__layout {
  width: min(calc(100% - 28px), 1520px);
  min-height: 165vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: 0;
}

.portal-hero__scene,
.portal-hero__aside {
  position: relative;
  min-height: 100vh;
}

.portal-hero__scene {
  overflow: clip;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 218, 178, 0.3), transparent 20%),
    linear-gradient(180deg, rgba(255, 122, 34, 0.92) 0%, rgba(240, 92, 16, 0.94) 30%, rgba(104, 26, 8, 0.84) 78%, rgba(8, 5, 4, 0) 100%);
}

.portal-hero__scene::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34vh;
  background: linear-gradient(180deg, transparent, rgba(4, 3, 3, 0.96));
}

.portal-hero__door,
.portal-hero__stairs,
.portal-hero__fog,
.portal-hero__figure,
.portal-hero__copy {
  position: absolute;
}

.portal-hero__door {
  top: 0;
  left: 50%;
  width: clamp(120px, 14vw, 220px);
  height: 22vh;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 1) 0%, rgba(255, 245, 225, 0.98) 56%, rgba(255, 210, 158, 0.9) 100%);
  box-shadow: 0 0 90px rgba(255, 235, 210, 0.6);
}

.portal-hero__stairs {
  left: 50%;
  bottom: 20vh;
  width: min(64vw, 760px);
  height: 88vh;
  transform: translateX(-50%) perspective(1200px) rotateX(67deg) scaleY(1.2);
  transform-origin: center bottom;
  background:
    repeating-linear-gradient(180deg, rgba(255, 188, 127, 0.28) 0 2px, transparent 2px 26px),
    linear-gradient(180deg, rgba(255, 151, 74, 0.22) 0%, rgba(193, 61, 14, 0.48) 72%, rgba(56, 12, 3, 0.2) 100%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 20px 80px rgba(255, 99, 29, 0.2));
}

.portal-hero__fog {
  top: 16vh;
  width: 28vw;
  height: 22vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 225, 212, 0.9), rgba(244, 225, 212, 0.18) 42%, transparent 72%);
  filter: blur(26px);
  opacity: 0.74;
  mix-blend-mode: screen;
}

.portal-hero__fog--left {
  left: -6vw;
  animation: amberFog 18s ease-in-out infinite;
}

.portal-hero__fog--right {
  right: -8vw;
  top: 22vh;
  animation: amberFog 22s ease-in-out infinite reverse;
}

.portal-hero__figure {
  left: 50%;
  bottom: 39vh;
  width: 42px;
  height: 112px;
  transform: translateX(calc(-50% + ((var(--pointer-x) - 0.5) * 16px)));
  background: linear-gradient(180deg, rgba(74, 25, 8, 0.3), rgba(33, 10, 3, 0.96));
  border-radius: 20px 20px 12px 12px;
  box-shadow: 0 10px 30px rgba(20, 4, 1, 0.35);
}

.portal-hero__figure::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -20px;
  width: 24px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(44, 13, 4, 0.92);
}

.portal-hero__copy {
  left: 24px;
  right: 24px;
  bottom: 18vh;
  z-index: 2;
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.hero-title--editorial {
  display: grid;
  gap: 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.6rem, 10vw, 8.2rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.05em;
  max-width: 7.5ch;
}

.hero-title--editorial span:last-child {
  color: rgba(255, 247, 238, 0.98);
}

.portal-hero .hero-minimal {
  max-width: 28rem;
  color: rgba(255, 238, 221, 0.92);
}

.portal-hero__aside {
  padding: 12vh 4vw 12vh 4vw;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 111, 31, 0.52), transparent 34%),
    radial-gradient(circle at 64% 68%, rgba(255, 146, 52, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(23, 11, 7, 0.92), rgba(5, 4, 4, 0.98));
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portal-hero__intro,
.portal-hero__editorial {
  display: grid;
  gap: 10px;
}

.portal-hero__label,
.portal-hero__kicker,
.editorial-quote__rail,
.device-gallery__meta {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 220, 194, 0.82);
}

.portal-hero__series {
  justify-self: end;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.portal-hero__editorial {
  align-self: center;
  width: min(420px, 100%);
}

.portal-hero__kicker {
  color: rgba(255, 228, 206, 0.9);
}

.portal-hero__editorial p {
  margin: 0;
  max-width: 18rem;
  color: rgba(255, 222, 198, 0.7);
  line-height: 1.8;
}

.landing-main--amber .support-scene {
  min-height: 126vh;
  padding: 8vh 0 16vh;
}

.editorial-quote__layout {
  width: min(calc(100% - 28px), 1520px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 34px;
  align-items: start;
}

.editorial-quote__rail {
  display: grid;
  gap: 18px;
  align-content: start;
  padding-top: 12vh;
}

.editorial-quote__index {
  margin-bottom: 26px;
}

.editorial-quote__copy {
  display: grid;
  gap: 18px;
  padding-top: 10vh;
}

.editorial-quote__copy h2 {
  margin: 0;
  max-width: 11ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.editorial-quote__lede,
.editorial-quote__statement {
  margin: 0;
  max-width: 34rem;
}

.editorial-quote__statement {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.94;
  color: rgba(249, 236, 220, 0.94);
}

.editorial-quote__window {
  position: relative;
  min-height: 82vh;
  border-radius: 0 0 220px 220px;
  overflow: clip;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 176, 94, 0.76), transparent 24%),
    linear-gradient(180deg, rgba(33, 19, 13, 0.92), rgba(9, 6, 5, 0.98));
  box-shadow: var(--shadow);
}

.editorial-quote__arch,
.editorial-quote__water,
.editorial-quote__reflection {
  position: absolute;
}

.editorial-quote__arch {
  right: 12%;
  bottom: 18%;
  width: 44%;
  height: 56%;
  border-radius: 140px 140px 0 0;
  background: linear-gradient(180deg, rgba(255, 177, 99, 0.96), rgba(255, 119, 36, 0.82));
  box-shadow: 0 0 80px rgba(255, 126, 39, 0.34);
}

.editorial-quote__water {
  inset: auto 0 0;
  height: 36%;
  background:
    linear-gradient(180deg, rgba(15, 10, 9, 0.04), rgba(5, 4, 4, 0.92)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 6px);
}

.editorial-quote__reflection {
  right: 17%;
  bottom: -4%;
  width: 32%;
  height: 28%;
  background: linear-gradient(180deg, rgba(255, 155, 71, 0.34), transparent 74%);
  filter: blur(14px);
  transform: scaleY(-1);
  opacity: 0.7;
}

.landing-main--amber .detail-sequence {
  min-height: 245vh;
}

.detail-sequence__sticky--editorial {
  width: min(calc(100% - 28px), 1520px);
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.08fr);
  gap: 40px;
}

.device-gallery {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transform: translateY(calc(var(--detail-progress) * -28px));
}

.device-gallery__phone {
  position: relative;
  width: clamp(220px, 18vw, 300px);
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(7, 6, 6, 0.96), rgba(18, 11, 8, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  padding: 14px;
  transition: transform 280ms ease;
}

.device-gallery__phone--left {
  height: 560px;
  transform: translateY(calc(-20px + (var(--detail-progress) * 12px)));
}

.device-gallery__phone--center {
  height: 660px;
  transform: translateY(calc(28px - (var(--detail-progress) * 16px)));
}

.device-gallery__phone--right {
  height: 590px;
  transform: translateY(calc(-10px + (var(--detail-progress) * 18px)));
}

.device-gallery__phone:hover {
  transform: translateY(-10px);
}

.device-gallery__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 96px;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #070707;
  z-index: 2;
}

.device-gallery__screen {
  position: relative;
  height: 100%;
  border-radius: 30px;
  overflow: clip;
  padding: 26px 22px 24px;
  display: grid;
  align-content: start;
  gap: 16px;
  color: rgba(255, 245, 233, 0.96);
}

.device-gallery__screen--portal {
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 206, 154, 0.32), transparent 18%),
    linear-gradient(180deg, rgba(255, 126, 32, 0.96), rgba(171, 52, 16, 0.86) 46%, rgba(17, 10, 7, 0.94) 100%);
}

.device-gallery__screen--text,
.device-gallery__screen--arch {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 124, 39, 0.42), transparent 24%),
    linear-gradient(180deg, rgba(19, 12, 9, 0.94), rgba(8, 5, 5, 0.98));
}

.device-gallery__brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
}

.device-gallery__mini-door {
  width: 100%;
  height: 220px;
  margin-top: 20px;
  border-radius: 160px 160px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.96), rgba(255, 167, 83, 0.92) 36%, rgba(192, 63, 18, 0.82) 72%, transparent 100%);
  box-shadow: inset 0 -80px 80px rgba(37, 11, 3, 0.4), 0 0 80px rgba(255, 122, 33, 0.16);
}

.device-gallery__title,
.device-gallery__essay,
.device-gallery__caption {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
}

.device-gallery__title {
  font-size: 3rem;
  max-width: 8ch;
}

.device-gallery__essay {
  margin-top: auto;
  font-size: 2.4rem;
}

.device-gallery__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.92);
  color: #180902;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.1rem;
}

.device-gallery__archway {
  height: 250px;
  margin-top: 22px;
  border-radius: 180px 180px 0 0;
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 213, 160, 0.36), transparent 16%),
    linear-gradient(180deg, rgba(255, 174, 94, 0.88), rgba(255, 112, 34, 0.78) 42%, rgba(12, 7, 5, 0.96) 100%);
}

.device-gallery__caption {
  font-size: 2rem;
  max-width: 9ch;
}

.landing-main--amber .detail-phase::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 145, 58, 0.54), rgba(255, 255, 255, 0.08));
}

.landing-main--amber .detail-phase__index,
.landing-main--amber .detail-phase__tag {
  color: rgba(255, 189, 134, 0.92);
}

.landing-main--amber .detail-phase__copy h2,
.landing-main--amber .proof-band__inner h2,
.landing-main--amber .final-cta__copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}

.landing-main--amber .proof-band {
  padding-top: 6vh;
}

.landing-main--amber .proof-band__item::before {
  background: radial-gradient(circle, rgba(255, 149, 63, 0.24), transparent 70%);
}

.landing-main--amber .proof-band__value,
.landing-main--amber .proof-band__label {
  font-family: "Cormorant Garamond", serif;
}

.landing-main--amber .proof-band__value {
  color: rgba(255, 248, 240, 0.18);
}

.landing-main--amber .proof-band__label {
  font-size: 1.5rem;
}

.landing-main--amber .final-cta__halo {
  background:
    radial-gradient(circle, rgba(255, 139, 50, 0.28), transparent 42%),
    radial-gradient(circle, rgba(255, 190, 120, 0.12), transparent 62%);
}

.landing-main--amber .final-cta__copy {
  max-width: 920px;
}

@keyframes amberFog {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(22px, -14px, 0) scale(1.08);
  }
}

@media (max-width: 1180px) {
  .portal-hero__layout,
  .editorial-quote__layout,
  .detail-sequence__sticky--editorial {
    grid-template-columns: 1fr;
  }

  .portal-hero__aside {
    min-height: auto;
    padding: 40px 24px 56px;
    gap: 24px;
  }

  .editorial-quote__layout {
    gap: 24px;
  }

  .editorial-quote__rail {
    grid-auto-flow: column;
    justify-content: flex-start;
    padding-top: 0;
  }

  .editorial-quote__window {
    min-height: 62vh;
  }

  .device-gallery {
    min-height: auto;
    padding: 26px 0 0;
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .portal-hero__layout,
  .editorial-quote__layout,
  .detail-sequence__sticky--editorial {
    width: min(calc(100% - 16px), 1520px);
  }

  .portal-hero__layout {
    min-height: auto;
  }

  .portal-hero__scene {
    min-height: 92vh;
  }

  .portal-hero__door {
    height: 14vh;
  }

  .portal-hero__stairs {
    width: 90vw;
    bottom: 18vh;
  }

  .portal-hero__copy {
    left: 16px;
    right: 16px;
    bottom: 12vh;
  }

  .hero-title--editorial {
    font-size: clamp(3.6rem, 16vw, 5.4rem);
  }

  .editorial-quote__copy h2,
  .editorial-quote__statement,
  .landing-main--amber .proof-band__inner h2,
  .landing-main--amber .final-cta__copy h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .device-gallery__phone {
    width: min(82vw, 320px);
  }
}

.topbar--integrated {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.topbar__inner--integrated {
  width: min(calc(100% - 28px), 1520px);
  min-height: 72px;
  padding-top: 12px;
  align-items: flex-start;
}

.nav--integrated {
  gap: 12px;
}

.nav__link--integrated {
  padding: 8px 0;
  color: rgba(250, 235, 220, 0.76);
}

.lang-toggle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(250, 235, 220, 0.92);
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.lang-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 160, 90, 0.42);
  background: rgba(255, 160, 90, 0.08);
}

.landing-main--amber .portal-hero__scene {
  min-height: 118vh;
}

.landing-main--amber .portal-hero__copy {
  max-width: 720px;
}

.landing-main--amber .portal-hero__chant {
  position: absolute;
  top: 18vh;
  right: 18px;
  display: grid;
  gap: 16px;
  font-size: 0.76rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 234, 219, 0.34);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.landing-main--amber .portal-hero__aside {
  justify-content: flex-start;
  gap: 18vh;
}

.landing-main--amber .editorial-quote__layout {
  grid-template-columns: 140px minmax(0, 0.9fr) minmax(320px, 0.96fr);
}

.lexicon-altar {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr)) minmax(200px, 1.05fr);
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 124, 39, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(15, 11, 9, 0.94), rgba(7, 5, 5, 0.98));
  box-shadow: var(--shadow);
  overflow: clip;
}

.lexicon-altar__column,
.lexicon-altar__chamber {
  position: relative;
  padding: 28px 22px;
}

.lexicon-altar__column {
  display: grid;
  align-content: start;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.lexicon-altar__label {
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 199, 155, 0.82);
}

.lexicon-altar__item {
  display: grid;
  gap: 4px;
}

.lexicon-altar__glyph {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  line-height: 0.9;
  letter-spacing: 0.08em;
  color: rgba(248, 236, 223, 0.96);
}

.lexicon-altar__gloss {
  font-size: 0.88rem;
  color: rgba(248, 236, 223, 0.56);
}

.lexicon-altar__chamber {
  display: grid;
  align-content: end;
}

.lexicon-altar__arch,
.lexicon-altar__water,
.lexicon-altar__reflection {
  position: absolute;
}

.lexicon-altar__arch {
  right: 16%;
  bottom: 24%;
  width: 44%;
  height: 46%;
  border-radius: 160px 160px 0 0;
  background: linear-gradient(180deg, rgba(255, 191, 123, 0.9), rgba(255, 118, 40, 0.84));
  box-shadow: 0 0 90px rgba(255, 122, 38, 0.28);
}

.lexicon-altar__water {
  inset: auto 0 0;
  height: 34%;
  background:
    linear-gradient(180deg, rgba(16, 13, 12, 0.02), rgba(6, 4, 4, 0.96)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 6px);
}

.lexicon-altar__reflection {
  right: 20%;
  bottom: -5%;
  width: 28%;
  height: 24%;
  background: linear-gradient(180deg, rgba(255, 146, 66, 0.32), transparent 74%);
  transform: scaleY(-1);
  filter: blur(14px);
}

.artifact-gallery {
  position: relative;
  min-height: 84vh;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) minmax(0, 0.74fr);
  gap: 22px;
  align-items: end;
}

.artifact-gallery__slab {
  position: relative;
  min-height: 440px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 128, 40, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(15, 10, 9, 0.94), rgba(7, 5, 5, 0.98));
  box-shadow: var(--shadow);
  overflow: clip;
  display: grid;
  align-content: space-between;
}

.artifact-gallery__meta {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 206, 162, 0.82);
}

.artifact-gallery__slab--portal {
  min-height: 540px;
}

.artifact-gallery__slab--script {
  min-height: 620px;
}

.artifact-gallery__slab--archive {
  min-height: 480px;
}

.artifact-gallery__door {
  width: 56%;
  height: 56%;
  justify-self: center;
  align-self: center;
  border-radius: 180px 180px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 249, 240, 0.96), rgba(255, 175, 95, 0.9) 36%, rgba(161, 53, 18, 0.76) 72%, rgba(12, 7, 5, 0.96) 100%);
  box-shadow: 0 0 90px rgba(255, 123, 39, 0.22);
}

.artifact-gallery__script {
  display: grid;
  gap: 16px;
  justify-items: start;
  align-content: center;
  min-height: 360px;
}

.artifact-gallery__script span {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  line-height: 0.88;
  color: rgba(248, 235, 221, 0.94);
}

.artifact-gallery__halo {
  align-self: center;
  justify-self: center;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 186, 110, 0.68), rgba(255, 116, 39, 0.26) 36%, transparent 72%);
  filter: blur(8px);
}

.artifact-gallery__caption,
.artifact-gallery__essay {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 0.96;
  max-width: 10ch;
}

.artifact-gallery__essay {
  max-width: 12ch;
  align-self: end;
}

.landing-main--amber .proof-band__rail {
  margin-top: 12px;
}

@media (max-width: 1180px) {
  .topbar__inner--integrated {
    width: min(calc(100% - 20px), 1520px);
  }

  .landing-main--amber .editorial-quote__layout,
  .artifact-gallery {
    grid-template-columns: 1fr;
  }

  .lexicon-altar {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .lexicon-altar__chamber {
    grid-column: span 2;
    min-height: 340px;
  }
}

@media (max-width: 720px) {
  .topbar--integrated {
    padding-top: 6px;
  }

  .topbar__inner--integrated {
    width: min(calc(100% - 14px), 1520px);
  }

  .nav--integrated {
    gap: 10px;
  }

  .nav__link--integrated {
    font-size: 0.88rem;
  }

  .landing-main--amber .portal-hero__chant {
    display: none;
  }

  .lexicon-altar {
    grid-template-columns: 1fr;
  }

  .lexicon-altar__column {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .lexicon-altar__chamber {
    grid-column: auto;
    min-height: 260px;
  }

  .artifact-gallery__slab {
    min-height: 320px;
  }
}
