:root {
  --bg: #0d1114;
  --panel: #151b1f;
  --panel-2: #1d252a;
  --ink: #f5f3ee;
  --muted: #aeb7bb;
  --line: rgba(255,255,255,.14);
  --accent: #d6a84f;
  --accent-2: #7dc4b8;
  --danger: #ee6b5d;
  --shadow: 0 24px 70px rgba(0,0,0,.38);
  --radius: 10px;
  font-family: "Aptos", "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 12%, rgba(214,168,79,.18), transparent 28rem),
    radial-gradient(circle at 12% 28%, rgba(125,196,184,.12), transparent 26rem),
    linear-gradient(135deg, #0a0d0f 0%, #14191d 46%, #0c1013 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(15,20,23,.82);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  position: sticky;
  top: 12px;
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.brand img { width: 42px; height: 42px; border-radius: 8px; background: #f7f4ed; padding: 7px; }
.brand small { display: block; color: var(--muted); font-size: .68rem; letter-spacing: .22em; margin-top: 2px; }
nav { display: flex; align-items: center; gap: 8px; }
nav a, .btn {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
nav a:hover, .btn:hover { transform: translateY(-2px); border-color: rgba(214,168,79,.55); }
.page-shell { width: min(1180px, calc(100% - 32px)); margin: 28px auto 64px; }
.hero-split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
  min-height: 520px;
}
.hero-copy, .hero-terminal, .api-window, .endpoint-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(29,37,42,.96), rgba(13,17,20,.96));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-copy { padding: clamp(28px, 5vw, 58px); display: flex; flex-direction: column; justify-content: center; }
.badge {
  width: fit-content;
  border: 1px solid rgba(214,168,79,.44);
  color: #ffe2a3;
  background: rgba(214,168,79,.09);
  border-radius: 999px;
  padding: 8px 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 900;
}
h1 { margin: 18px 0 16px; font-size: clamp(2.7rem, 7vw, 6.2rem); line-height: .9; letter-spacing: -.075em; }
.lead { max-width: 650px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.7; margin: 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; }
.btn.primary { background: var(--accent); color: #111; border-color: var(--accent); }
.btn.secondary { background: rgba(255,255,255,.04); color: var(--ink); }
.metrics { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; }
.metrics span { color: var(--accent-2); border: 1px solid rgba(125,196,184,.28); background: rgba(125,196,184,.06); border-radius: 999px; padding: 8px 10px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .8rem; }
.hero-terminal { overflow: hidden; display: flex; flex-direction: column; }
.terminal-top, .window-chrome { display: flex; align-items: center; gap: 8px; padding: 14px 16px; border-bottom: 1px solid var(--line); color: var(--muted); }
.terminal-top span, .dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; background: var(--danger); }
.terminal-top span:nth-child(2), .dot.amber { background: var(--accent); }
.terminal-top span:nth-child(3), .dot.green { background: var(--accent-2); }
.terminal-top strong { margin-left: auto; font-size: .82rem; letter-spacing: .08em; }
pre { margin: 0; padding: clamp(18px, 4vw, 36px); white-space: pre-wrap; word-break: break-word; color: #d8fff8; font: 500 clamp(.82rem, 1.4vw, 1.02rem)/1.75 ui-monospace, SFMono-Regular, Menlo, monospace; }
.window-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
.api-window { overflow: hidden; }
.window-chrome b { margin-left: 8px; }
.window-chrome em { margin-left: auto; color: var(--accent-2); font-style: normal; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.window-copy { color: var(--muted); line-height: 1.6; padding: 18px 20px 0; margin: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 20px; }
label { color: #dfe4e2; font-weight: 800; display: grid; gap: 8px; }
.wide { grid-column: 1 / -1; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
  outline: none;
}
textarea { min-height: 94px; resize: vertical; }
input:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(214,168,79,.13); }
.output { display: none; margin: 0 20px 20px; padding: 14px; border: 1px solid rgba(125,196,184,.34); border-radius: 8px; background: rgba(125,196,184,.08); color: var(--ink); }
.output.show { display: block; }
.output a { color: #bffbf1; text-decoration: underline; }
.error { color: #ffafa6; }
.code-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 20px; }
.code-form input { font-size: 1.45rem; font-weight: 900; letter-spacing: .16em; }
.viewer { margin: 0 20px 20px; min-height: 320px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: rgba(255,255,255,.035); }
.empty { height: 320px; display: grid; place-items: center; align-content: center; color: var(--muted); text-align: center; }
.empty strong { color: var(--accent); font-size: 3rem; letter-spacing: .18em; }
.viewer-meta { padding: 18px; border-bottom: 1px solid var(--line); display: grid; gap: 8px; }
.viewer-meta p { color: var(--muted); margin: 0; }
.viewer-frame { width: 100%; min-height: 430px; border: 0; background: white; }
body.document-redirect-active { overflow: hidden; }
.document-redirect-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 6vw, 72px);
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 44%, rgba(214,168,79,.24), transparent 21rem),
    radial-gradient(circle at 24% 22%, rgba(125,196,184,.14), transparent 19rem),
    linear-gradient(145deg, #070a0c 0%, #10161a 54%, #090c0f 100%);
  overflow: hidden;
}
.document-redirect-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
  opacity: .42;
  animation: redirectGridDrift 8s linear infinite;
}
.document-redirect-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  display: grid;
  justify-items: center;
  gap: clamp(12px, 2.2vw, 18px);
  text-align: center;
}
.document-redirect-content img {
  width: clamp(64px, 10vw, 96px);
  height: clamp(64px, 10vw, 96px);
  border-radius: 0;
  background: #f4efe4;
  padding: 12px;
  box-shadow: 0 22px 60px rgba(0,0,0,.36);
}
.document-redirect-content span {
  color: var(--accent);
  font-size: clamp(.76rem, 1.4vw, .92rem);
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.document-redirect-content h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.6rem, 8vw, 6.2rem);
  line-height: .9;
  letter-spacing: -.06em;
}
.document-redirect-content p {
  max-width: 680px;
  margin: 0;
  color: rgba(245,243,238,.76);
  font-size: clamp(1rem, 2vw, 1.24rem);
}
.document-redirect-content strong {
  color: var(--accent-2);
  font-size: .86rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  animation: redirectStatusPulse 1.2s ease-in-out infinite;
}
.document-redirect-progress {
  width: min(520px, 84vw);
  height: 9px;
  border: 1px solid rgba(214,168,79,.32);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
}
.document-redirect-progress i {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  animation: redirectSweep 3.35s ease-in-out forwards;
}
.endpoint-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 22px; }
.endpoint-card { padding: 24px; min-height: 250px; }
.endpoint-card span { color: var(--accent); font-weight: 900; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; }
.endpoint-card h2 { margin: 12px 0; font-size: clamp(1.6rem, 2.4vw, 2.2rem); letter-spacing: -.04em; }
.endpoint-card p { color: var(--muted); line-height: 1.65; }
.endpoint-card code { display: block; margin-top: 9px; color: #d8fff8; border: 1px solid rgba(125,196,184,.22); background: rgba(125,196,184,.06); border-radius: 8px; padding: 10px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.site-footer { width: min(1180px, calc(100% - 32px)); margin: 0 auto 28px; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; color: var(--muted); display: flex; justify-content: space-between; gap: 16px; background: rgba(15,20,23,.78); }
.site-footer p { margin: 0; }
.site-footer a { margin-left: 14px; color: var(--ink); }
@media (max-width: 900px) {
  .site-header, .site-footer { align-items: flex-start; flex-direction: column; }
  nav { width: 100%; justify-content: space-between; }
  nav a { flex: 1; text-align: center; padding-inline: 10px; }
  .hero-split, .window-grid, .endpoint-grid { grid-template-columns: 1fr; }
  .hero-split { min-height: auto; }
  .hero-terminal { order: -1; }
  .form-grid, .code-form { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .site-header, .page-shell, .site-footer { width: min(100% - 18px, 1180px); }
  .brand small { letter-spacing: .1em; }
  h1 { font-size: clamp(2.35rem, 15vw, 4.2rem); }
  .hero-copy { padding: 24px; }
  pre { font-size: .75rem; }
  .metrics span { width: 100%; }
}
nav a[aria-current="page"] { border-color: rgba(214,168,79,.72); color: #ffe2a3; background: rgba(214,168,79,.1); }
.narrow { max-width: 760px; }
.hero-split.compact { min-height: 430px; }
.form-grid.single { grid-template-columns: 1fr; }
.auth-window { margin-top: 48px; }
.text-link { display: inline-flex; margin-top: 14px; color: #d8fff8; font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }
.plan h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
.plan.featured { border-color: rgba(214,168,79,.6); background: linear-gradient(145deg, rgba(58,43,18,.98), rgba(18,22,23,.98)); }
.session-panel, .list-panel { margin-top: 18px; border: 1px solid var(--line); border-radius: 8px; padding: 16px; background: rgba(255,255,255,.045); color: var(--muted); line-height: 1.55; }
.session-panel strong, .list-panel strong { color: var(--ink); }
.list-item { display: grid; gap: 8px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.list-item:last-child { border-bottom: 0; }
.list-item code { color: #d8fff8; word-break: break-word; }
.dashboard-create { margin-top: 22px; }
@media (max-width: 900px) { .site-header nav { overflow-x: auto; justify-content: flex-start; } .site-header nav a { flex: 0 0 auto; } }
.access-home-body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(214,168,79,.2), transparent 24rem),
    radial-gradient(circle at 14% 72%, rgba(125,196,184,.14), transparent 26rem),
    linear-gradient(145deg, #090c0e 0%, #12181c 52%, #0b0e10 100%);
}
.access-header, .access-footer { max-width: 1160px; }
.access-scene {
  width: min(1160px, calc(100% - 32px));
  margin: clamp(26px, 6vh, 72px) auto 48px;
  min-height: calc(100vh - 210px);
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(320px, 1.12fr);
  gap: 24px;
  align-items: stretch;
}
.access-card, .access-art {
  position: relative;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.access-card {
  background: linear-gradient(155deg, rgba(29,37,42,.98), rgba(11,15,18,.98));
}
.access-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 86%);
}
.access-card-inner {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: clamp(26px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.access-card h1 {
  max-width: 620px;
  margin: 18px 0 16px;
  font-size: clamp(3.1rem, 8vw, 7rem);
}
.home-code-form {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}
.home-code-form label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
}
.home-code-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(214,168,79,.34);
  border-radius: 10px;
  background: rgba(255,255,255,.05);
}
.home-code-row input {
  border: 0;
  box-shadow: none;
  background: transparent;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 950;
  letter-spacing: .18em;
  padding: 8px 10px;
}
.home-code-row input:focus { box-shadow: none; }
.home-viewer {
  margin-top: 22px;
  min-height: 190px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.035);
  overflow: hidden;
}
.access-empty {
  min-height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  color: var(--muted);
}
.access-empty strong {
  color: var(--accent-2);
  letter-spacing: .22em;
}
.access-art {
  background:
    radial-gradient(circle at 50% 48%, rgba(214,168,79,.22), transparent 18rem),
    linear-gradient(155deg, rgba(255,255,255,.12), rgba(255,255,255,.03)),
    #141a1e;
  display: grid;
  place-items: center;
}
.art-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.orbit-one { width: 78%; aspect-ratio: 1; }
.orbit-two { width: 54%; aspect-ratio: 1; border-color: rgba(214,168,79,.3); transform: rotate(24deg); }
.art-core {
  position: relative;
  width: min(360px, 62vw);
  aspect-ratio: 1;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(145deg, rgba(8,12,14,.78), rgba(255,255,255,.06));
  box-shadow: 0 34px 90px rgba(0,0,0,.45);
  display: grid;
  place-items: center;
}
.core-mark {
  width: 116px;
  height: 116px;
  border-radius: 14px;
  background: #f4efe4;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 50px rgba(0,0,0,.34);
}
.core-mark img { width: 72px; height: 72px; }
.core-lines {
  position: absolute;
  inset: auto 34px 34px;
  display: grid;
  gap: 9px;
}
.core-lines i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(125,196,184,.9), rgba(214,168,79,.78), transparent);
}
.core-lines i:nth-child(2) { width: 72%; }
.core-lines i:nth-child(3) { width: 52%; }
.core-lines i:nth-child(4) { width: 84%; }
.art-panel {
  position: absolute;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(8,12,14,.72);
  backdrop-filter: blur(16px);
  padding: 16px;
  min-width: 190px;
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
}
.art-panel span { color: var(--accent); font-weight: 950; letter-spacing: .18em; font-size: .72rem; }
.art-panel strong { display: block; margin-top: 8px; }
.art-panel small { color: var(--muted); }
.panel-a { top: 11%; left: 8%; }
.panel-b { right: 8%; bottom: 16%; }
.art-ribbon {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 7%;
  border: 1px solid rgba(125,196,184,.28);
  border-radius: 10px;
  background: rgba(125,196,184,.08);
  color: #d8fff8;
  padding: 14px;
  text-align: center;
  font-weight: 850;
}
.access-card .viewer-meta { border-bottom-color: rgba(255,255,255,.12); }
.access-card .viewer-frame { min-height: 360px; }
@media (max-width: 940px) {
  .access-scene { grid-template-columns: 1fr; }
  .access-card, .access-art { min-height: auto; }
  .access-art { min-height: 460px; order: -1; }
}
@media (max-width: 560px) {
  .access-scene { width: min(100% - 18px, 1160px); margin-top: 16px; }
  .home-code-row { grid-template-columns: 1fr; }
  .home-code-row .btn { width: 100%; }
  .access-card-inner { padding: 22px; }
  .access-card h1 { font-size: clamp(2.7rem, 15vw, 4.3rem); }
  .art-panel { position: relative; inset: auto; min-width: 0; width: calc(100% - 42px); margin: 10px 0; }
  .access-art { display: flex; flex-direction: column; justify-content: center; gap: 10px; padding: 24px 0 86px; }
  .art-core { width: min(280px, 76vw); }
}

/* Access home shape pass: tighter proportions, less oversized typography, cleaner composition. */
.access-home-body .access-scene {
  width: min(1080px, calc(100% - 36px));
  min-height: auto;
  margin: clamp(18px, 4vh, 46px) auto 34px;
  grid-template-columns: minmax(330px, .96fr) minmax(300px, .88fr);
  gap: 18px;
}
.access-home-body .access-card,
.access-home-body .access-art {
  min-height: clamp(430px, 62vh, 560px);
  border-radius: 10px;
}
.access-home-body .access-card-inner {
  padding: clamp(24px, 4vw, 42px);
  justify-content: center;
}
.access-home-body .badge {
  font-size: .68rem;
  padding: 7px 10px;
}
.access-home-body .access-card h1 {
  max-width: 520px;
  margin: 16px 0 14px;
  font-size: clamp(2.35rem, 5.2vw, 4.75rem);
  line-height: .94;
  letter-spacing: -.065em;
}
.access-home-body .lead {
  max-width: 560px;
  font-size: clamp(.98rem, 1.55vw, 1.14rem);
  line-height: 1.58;
}
.access-home-body .home-code-form {
  margin-top: 24px;
  gap: 10px;
}
.access-home-body .home-code-row {
  padding: 8px;
  border-radius: 9px;
  grid-template-columns: minmax(0, 1fr) auto;
}
.access-home-body .home-code-row input {
  font-size: clamp(1.45rem, 3.8vw, 2.25rem);
  letter-spacing: .14em;
  padding: 8px 10px;
}
.access-home-body .home-code-row .btn {
  min-width: 108px;
  padding: 12px 18px;
}
.access-home-body .home-viewer {
  margin-top: 18px;
  min-height: 156px;
  border-radius: 9px;
}
.access-home-body .access-empty {
  min-height: 156px;
}
.access-home-body .access-empty strong {
  font-size: .88rem;
}
.access-home-body .access-empty p {
  margin: 8px 0 0;
}
.access-home-body .access-art {
  min-height: clamp(430px, 62vh, 560px);
}
.access-home-body .art-core {
  width: min(270px, 44vw);
  border-radius: 10px;
}
.access-home-body .core-mark {
  width: 92px;
  height: 92px;
  border-radius: 12px;
}
.access-home-body .core-mark img {
  width: 58px;
  height: 58px;
}
.access-home-body .core-lines {
  inset: auto 28px 28px;
  gap: 7px;
}
.access-home-body .core-lines i {
  height: 6px;
}
.access-home-body .art-panel {
  min-width: 168px;
  padding: 13px;
  border-radius: 9px;
}
.access-home-body .art-panel strong {
  font-size: .95rem;
}
.access-home-body .art-panel small {
  font-size: .78rem;
}
.access-home-body .panel-a {
  top: 10%;
  left: 7%;
}
.access-home-body .panel-b {
  right: 7%;
  bottom: 17%;
}
.access-home-body .art-ribbon {
  left: 7%;
  right: 7%;
  bottom: 7%;
  padding: 12px;
  border-radius: 9px;
  font-size: .9rem;
}
.access-home-body .site-header {
  margin-top: 14px;
  padding: 12px;
}
.access-home-body .brand img {
  width: 38px;
  height: 38px;
}
.access-home-body nav a {
  padding: 10px 13px;
}
.access-home-body .site-footer {
  margin-bottom: 18px;
  padding: 15px;
}
@media (max-width: 940px) {
  .access-home-body .access-scene {
    width: min(100% - 24px, 720px);
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .access-home-body .access-art {
    order: -1;
    min-height: 320px;
  }
  .access-home-body .art-core {
    width: min(220px, 50vw);
  }
  .access-home-body .art-panel {
    min-width: 150px;
  }
}
@media (max-width: 560px) {
  .access-home-body .access-scene {
    width: min(100% - 16px, 720px);
    margin-top: 12px;
  }
  .access-home-body .site-header,
  .access-home-body .site-footer {
    width: min(100% - 16px, 1160px);
  }
  .access-home-body .access-card,
  .access-home-body .access-art {
    min-height: auto;
  }
  .access-home-body .access-card-inner {
    padding: 20px;
  }
  .access-home-body .access-card h1 {
    font-size: clamp(2.05rem, 11.5vw, 3.25rem);
    letter-spacing: -.055em;
  }
  .access-home-body .lead {
    font-size: .98rem;
  }
  .access-home-body .home-code-row {
    grid-template-columns: 1fr;
  }
  .access-home-body .home-code-row input {
    text-align: center;
    font-size: clamp(1.75rem, 11vw, 2.35rem);
  }
  .access-home-body .access-art {
    min-height: 330px;
    padding: 18px 0 70px;
  }
  .access-home-body .art-core {
    width: min(190px, 58vw);
  }
  .access-home-body .art-panel {
    display: none;
  }
  .access-home-body .art-ribbon {
    font-size: .78rem;
    padding: 10px;
  }
}

/* Animated access art polish. */
.access-home-body nav a[aria-current="page"] {
  border-color: rgba(214,168,79,.74);
  background: rgba(214,168,79,.1);
  color: #ffe2a3;
}
.access-home-body .kinetic-art {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 42%, rgba(214,168,79,.24), transparent 15rem),
    radial-gradient(circle at 58% 58%, rgba(125,196,184,.16), transparent 20rem),
    linear-gradient(150deg, rgba(255,255,255,.1), rgba(255,255,255,.025)),
    #11171b;
}
.art-ambient {
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 0deg, transparent, rgba(214,168,79,.26), transparent, rgba(125,196,184,.22), transparent);
  filter: blur(34px);
  opacity: .72;
  animation: obeilSpin 18s linear infinite;
  z-index: -2;
}
.art-blueprint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 48%, rgba(214,168,79,.18) 49% 50%, transparent 51% 100%);
  background-size: 38px 38px, 38px 38px, 180px 180px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,.95), transparent 76%);
  opacity: .72;
  animation: obeilGridDrift 11s ease-in-out infinite alternate;
  z-index: -1;
}
.art-beam {
  position: absolute;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(216,255,248,.78), transparent);
  transform-origin: center;
  opacity: .72;
}
.beam-a { top: 33%; transform: rotate(-22deg); animation: obeilBeamA 5.8s ease-in-out infinite; }
.beam-b { bottom: 31%; transform: rotate(18deg); animation: obeilBeamB 7s ease-in-out infinite; }
.art-document-stack {
  position: absolute;
  left: 11%;
  bottom: 14%;
  width: min(210px, 34%);
  height: 240px;
  transform: rotate(-7deg);
}
.sheet {
  position: absolute;
  width: 138px;
  height: 184px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(244,239,228,.96), rgba(185,196,196,.88));
  box-shadow: 0 18px 55px rgba(0,0,0,.28);
  padding: 26px 18px;
}
.sheet i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(20,28,32,.22);
  margin-bottom: 12px;
}
.sheet i:nth-child(2) { width: 72%; }
.sheet i:nth-child(3) { width: 48%; }
.sheet-one { left: 0; bottom: 0; animation: obeilFloatOne 5.2s ease-in-out infinite; }
.sheet-two { left: 38px; bottom: 30px; transform: rotate(7deg); animation: obeilFloatTwo 5.8s ease-in-out infinite; }
.sheet-three { left: 76px; bottom: 60px; transform: rotate(14deg); animation: obeilFloatThree 6.4s ease-in-out infinite; }
.art-lock-ring {
  position: relative;
  width: min(310px, 46vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 50px rgba(125,196,184,.08), 0 35px 90px rgba(0,0,0,.38);
}
.art-lock-ring::before,
.art-lock-ring::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(214,168,79,.34);
  border-radius: 50%;
  animation: obeilSpin 24s linear infinite reverse;
}
.art-lock-ring::after {
  inset: 25%;
  border-color: rgba(125,196,184,.32);
  animation-duration: 16s;
  animation-direction: normal;
}
.art-lock-ring > span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8fff8;
  box-shadow: 0 0 28px rgba(216,255,248,.8);
}
.art-lock-ring > span:nth-child(1) { top: 7%; left: 48%; animation: obeilPulse 2.4s ease-in-out infinite; }
.art-lock-ring > span:nth-child(2) { right: 9%; top: 49%; animation: obeilPulse 2.4s ease-in-out .4s infinite; }
.art-lock-ring > span:nth-child(3) { bottom: 8%; left: 48%; animation: obeilPulse 2.4s ease-in-out .8s infinite; }
.art-lock-ring > span:nth-child(4) { left: 9%; top: 49%; animation: obeilPulse 2.4s ease-in-out 1.2s infinite; }
.lock-core {
  position: relative;
  width: 112px;
  height: 112px;
  border-radius: 18px;
  background: linear-gradient(145deg, #f6f1e8, #ccd5d2);
  display: grid;
  place-items: center;
  box-shadow: 0 22px 70px rgba(0,0,0,.42);
  animation: obeilCoreFloat 4.5s ease-in-out infinite;
  z-index: 2;
}
.lock-core img { width: 70px; height: 70px; }
.art-data-card {
  position: absolute;
  min-width: 156px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(8,12,14,.68);
  backdrop-filter: blur(18px);
  padding: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
}
.art-data-card b { color: #ffe2a3; letter-spacing: .12em; }
.art-data-card small { display: block; color: var(--muted); margin-top: 4px; }
.card-left { top: 13%; left: 9%; animation: obeilCardFloat 5.5s ease-in-out infinite; }
.card-right { right: 8%; bottom: 16%; animation: obeilCardFloat 6.3s ease-in-out .8s infinite; }
.art-caption {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 7%;
  border: 1px solid rgba(125,196,184,.3);
  border-radius: 10px;
  background: rgba(125,196,184,.09);
  color: #d8fff8;
  padding: 12px;
  text-align: center;
  font-weight: 850;
  text-transform: lowercase;
}
@keyframes obeilSpin { to { transform: rotate(360deg); } }
@keyframes obeilGridDrift { from { background-position: 0 0, 0 0, 0 0; } to { background-position: 22px -18px, -16px 24px, 60px -40px; } }
@keyframes obeilBeamA { 0%, 100% { transform: translateX(-8%) rotate(-22deg); opacity: .36; } 50% { transform: translateX(12%) rotate(-22deg); opacity: .86; } }
@keyframes obeilBeamB { 0%, 100% { transform: translateX(12%) rotate(18deg); opacity: .32; } 50% { transform: translateX(-10%) rotate(18deg); opacity: .78; } }
@keyframes obeilFloatOne { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
@keyframes obeilFloatTwo { 0%, 100% { transform: translateY(0) rotate(7deg); } 50% { transform: translateY(-17px) rotate(10deg); } }
@keyframes obeilFloatThree { 0%, 100% { transform: translateY(0) rotate(14deg); } 50% { transform: translateY(-22px) rotate(10deg); } }
@keyframes obeilPulse { 0%, 100% { transform: scale(.72); opacity: .55; } 50% { transform: scale(1.28); opacity: 1; } }
@keyframes obeilCoreFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes obeilCardFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) {
  .art-ambient,
  .art-blueprint,
  .art-beam,
  .sheet,
  .art-lock-ring::before,
  .art-lock-ring::after,
  .art-lock-ring > span,
  .lock-core,
  .art-data-card { animation: none !important; }
}
@media (max-width: 940px) {
  .art-document-stack { width: 170px; height: 190px; left: 7%; bottom: 12%; }
  .sheet { width: 108px; height: 144px; }
  .art-lock-ring { width: min(230px, 52vw); }
  .lock-core { width: 88px; height: 88px; }
  .lock-core img { width: 56px; height: 56px; }
}
@media (max-width: 560px) {
  .art-document-stack { display: none; }
  .art-lock-ring { width: min(215px, 68vw); }
  .art-data-card { display: none; }
  .art-caption { font-size: .78rem; }
}

/* Global typography normalization: standard readable titles instead of oversized display scale. */
body {
  font-size: 16px;
}
h1,
.access-home-body .access-card h1,
.hero-copy h1,
.page-shell h1 {
  font-size: clamp(2rem, 4vw, 3.75rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -.042em !important;
  max-width: 680px;
}
h2,
.endpoint-card h2,
.page-shell h2 {
  font-size: clamp(1.35rem, 2.1vw, 2rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -.025em !important;
}
h3,
.page-shell h3 {
  font-size: clamp(1.05rem, 1.55vw, 1.35rem) !important;
  line-height: 1.2 !important;
}
.lead,
.access-home-body .lead,
.hero-copy .lead {
  font-size: clamp(.98rem, 1.35vw, 1.12rem) !important;
  line-height: 1.6 !important;
}
.badge,
.endpoint-card span,
.home-code-form label {
  font-size: .68rem !important;
}
.access-home-body .access-card-inner,
.hero-copy {
  padding: clamp(22px, 3.6vw, 38px) !important;
}
.access-home-body .access-scene,
.page-shell {
  width: min(1040px, calc(100% - 36px)) !important;
}
.access-home-body .access-card,
.access-home-body .access-art {
  min-height: clamp(390px, 55vh, 500px) !important;
}
.hero-split {
  min-height: 440px !important;
}
.endpoint-card {
  min-height: 220px;
  padding: 22px;
}
.plan h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem) !important;
}
.home-code-row input,
.code-form input {
  font-size: clamp(1.35rem, 3vw, 2rem) !important;
}
.empty strong {
  font-size: clamp(1.5rem, 3vw, 2.5rem) !important;
}
@media (max-width: 560px) {
  h1,
  .access-home-body .access-card h1,
  .hero-copy h1,
  .page-shell h1 {
    font-size: clamp(1.85rem, 9vw, 2.75rem) !important;
    line-height: 1.06 !important;
  }
  h2,
  .endpoint-card h2,
  .page-shell h2 {
    font-size: clamp(1.25rem, 6vw, 1.75rem) !important;
  }
  .lead,
  .access-home-body .lead,
  .hero-copy .lead {
    font-size: .96rem !important;
  }
  .access-home-body .access-card-inner,
  .hero-copy {
    padding: 20px !important;
  }
}

/* Mobile navigation and final responsive polish. */
.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}
.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}
.site-header.nav-open .mobile-menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.nav-open .mobile-menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .mobile-menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.site-header nav a {
  white-space: nowrap;
}
.btn,
nav a {
  min-height: 40px;
}
input,
textarea,
button,
.btn,
nav a {
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 760px) {
  .site-header,
  .access-home-body .site-header {
    display: grid !important;
    grid-template-columns: 1fr auto;
    align-items: center !important;
    gap: 10px;
    padding: 10px !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .site-header nav {
    grid-column: 1 / -1;
    width: 100%;
    display: none !important;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
    overflow: visible !important;
  }
  .site-header.nav-open nav {
    display: grid !important;
  }
  .site-header nav a,
  .access-home-body nav a {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    padding: 11px 12px;
    flex: none;
  }
  .brand {
    min-width: 0;
  }
  .brand span {
    min-width: 0;
  }
  .brand small {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .access-home-body .access-scene {
    grid-template-columns: 1fr !important;
    width: min(100% - 16px, 680px) !important;
    margin-top: 12px !important;
    gap: 12px !important;
  }
  .access-home-body .access-card {
    order: 1 !important;
  }
  .access-home-body .access-art {
    order: 2 !important;
    min-height: 260px !important;
  }
  .access-home-body .access-card-inner {
    padding: 18px !important;
  }
  .access-home-body .access-card h1 {
    margin-top: 12px !important;
    margin-bottom: 10px !important;
  }
  .access-home-body .home-code-form {
    margin-top: 18px !important;
  }
  .access-home-body .home-viewer {
    min-height: 130px !important;
    margin-top: 14px !important;
  }
  .access-home-body .access-empty {
    min-height: 130px !important;
  }
  .window-grid,
  .endpoint-grid,
  .hero-split {
    gap: 14px !important;
  }
  .form-grid {
    grid-template-columns: 1fr !important;
    padding: 16px !important;
  }
  .code-form {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 420px) {
  .brand img {
    width: 34px !important;
    height: 34px !important;
  }
  .brand {
    gap: 9px;
  }
  .brand span {
    font-size: .9rem;
  }
  .brand small {
    font-size: .58rem;
    letter-spacing: .12em;
    max-width: 150px;
  }
  .mobile-menu-toggle {
    width: 40px;
    height: 38px;
  }
  .access-home-body .home-code-row input {
    font-size: clamp(1.45rem, 9vw, 1.95rem) !important;
  }
  .access-home-body .home-code-row .btn {
    width: 100%;
  }
  .art-caption {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
  }
}

/* Header uniformity and access-code input cleanup. */
.site-header,
.access-home-body .site-header,
.access-header {
  width: min(1080px, calc(100% - 36px)) !important;
  margin: 14px auto 0 !important;
  min-height: 68px;
  border-radius: 10px !important;
}
.site-header .brand small,
.access-header .brand small {
  color: var(--muted);
  letter-spacing: .18em;
}
.site-header nav,
.access-header nav {
  align-items: center;
  gap: 7px;
}
.site-header nav a,
.access-header nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 12px;
  font-size: .95rem;
  border-radius: 8px;
}
.site-header nav a[aria-current="page"],
.access-header nav a[aria-current="page"] {
  border-color: rgba(214,168,79,.72);
  background: rgba(214,168,79,.1);
  color: #ffe2a3;
}
.home-code-row input::placeholder {
  color: transparent;
}
.input-help {
  grid-column: 1 / -1;
  margin: -2px 4px 2px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.35;
}
.access-home-body .home-code-row {
  align-items: center;
}
@media (min-width: 761px) {
  .site-header,
  .access-home-body .site-header,
  .access-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .site-header nav,
  .access-header nav {
    display: flex !important;
  }
}
@media (max-width: 760px) {
  .site-header,
  .access-home-body .site-header,
  .access-header {
    width: min(100% - 16px, 1080px) !important;
    min-height: 0;
  }
  .site-header nav a,
  .access-header nav a {
    justify-content: flex-start;
    font-size: .98rem;
  }
  .input-help {
    text-align: center;
  }
}

/* Access-code input visibility fix: empty input is still clearly visible without placeholder text. */
.access-home-body .home-code-row {
  background: rgba(246,241,232,.96) !important;
  border: 2px solid rgba(214,168,79,.75) !important;
  box-shadow: inset 0 0 0 1px rgba(17,17,17,.08), 0 16px 40px rgba(0,0,0,.22);
}
.access-home-body .home-code-row input {
  color: #101518 !important;
  caret-color: #101518 !important;
  background: rgba(255,255,255,.7) !important;
  border: 1px solid rgba(16,21,24,.18) !important;
  border-radius: 7px !important;
  min-height: 58px;
}
.access-home-body .home-code-row input:focus {
  border-color: rgba(13,17,20,.62) !important;
  box-shadow: 0 0 0 3px rgba(214,168,79,.28) !important;
}
.access-home-body .home-code-row input::placeholder {
  color: transparent !important;
}
.access-home-body .home-code-form label {
  color: #ffe2a3 !important;
  display: block !important;
}
.access-home-body .input-help {
  color: rgba(16,21,24,.72) !important;
  font-weight: 700;
}
@media (max-width: 560px) {
  .access-home-body .home-code-row input {
    min-height: 54px;
  }
}

/* Public nav cleanup: keep the compact header focused while footer carries the full page map. */
.site-header nav,
.access-header nav {
  justify-content: flex-end;
}
.access-home-body .access-scene {
  margin-bottom: clamp(18px, 4vh, 40px) !important;
}
@media (max-width: 760px) {
  .site-header nav,
  .access-header nav {
    justify-content: stretch;
  }
}

/* Dark floating-label access-code field. */
.access-home-body .home-code-row.floating-code-field {
  background: rgba(8,12,14,.72) !important;
  border: 1px solid rgba(214,168,79,.42) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.045), 0 16px 40px rgba(0,0,0,.24) !important;
  align-items: stretch;
}
.code-input-shell {
  position: relative;
  min-width: 0;
}
.access-home-body .home-code-row .code-input-shell input {
  width: 100%;
  min-height: 62px;
  padding: 22px 14px 8px !important;
  color: var(--ink) !important;
  caret-color: var(--accent) !important;
  background: rgba(13,17,20,.92) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 8px !important;
  letter-spacing: .14em;
}
.access-home-body .home-code-row .code-input-shell input:focus {
  border-color: rgba(214,168,79,.78) !important;
  box-shadow: 0 0 0 3px rgba(214,168,79,.16) !important;
  outline: none;
}
.floating-code-label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(245,243,238,.62) !important;
  font-size: .98rem !important;
  font-weight: 850;
  letter-spacing: .06em !important;
  text-transform: none !important;
  pointer-events: none;
  transition: top .18s ease, transform .18s ease, font-size .18s ease, color .18s ease, letter-spacing .18s ease;
}
.code-input-shell:focus-within .floating-code-label,
.code-input-shell.has-value .floating-code-label {
  top: 10px;
  transform: translateY(0);
  color: #ffe2a3 !important;
  font-size: .66rem !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
}
.access-home-body .input-help {
  color: rgba(245,243,238,.58) !important;
  font-weight: 650;
}
@media (max-width: 560px) {
  .access-home-body .home-code-row .code-input-shell input {
    min-height: 58px;
    text-align: center;
    padding-top: 22px !important;
  }
  .floating-code-label {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .code-input-shell:focus-within .floating-code-label,
  .code-input-shell.has-value .floating-code-label {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Access code field refinement: improves the floating label/input scale after live restore. */
.floating-code-field .code-input-shell {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 88px;
  border: 1px solid rgba(214,168,79,.34);
  border-radius: 8px;
  background: rgba(5,8,10,.62);
}

.floating-code-field .code-input-shell input {
  min-height: 86px;
  padding: 30px 16px 12px;
  color: var(--ink);
  font-size: clamp(2rem, 5.4vw, 3.45rem);
  letter-spacing: .14em;
  line-height: 1;
}

.floating-code-field .floating-code-label {
  position: absolute;
  top: 13px;
  left: 16px;
  z-index: 2;
  color: #ffe2a3;
  font-size: clamp(.98rem, 1.6vw, 1.16rem);
  font-weight: 950;
  letter-spacing: .12em;
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
  transform-origin: left top;
  transition: transform .18s ease, color .18s ease, opacity .18s ease;
}

.floating-code-field .code-input-shell:focus-within {
  border-color: rgba(214,168,79,.78);
  box-shadow: 0 0 0 4px rgba(214,168,79,.12);
}

.floating-code-field .code-input-shell input:focus + .floating-code-label,
.floating-code-field .code-input-shell input:valid + .floating-code-label {
  color: var(--accent);
  transform: translateY(-3px) scale(.86);
}

@media (max-width: 760px) {
  .access-card h1 {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
    line-height: .98;
  }

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

  .floating-code-field .code-input-shell {
    min-height: 76px;
  }

  .floating-code-field .code-input-shell input {
    min-height: 74px;
    padding-top: 28px;
    font-size: clamp(1.55rem, 10vw, 2.35rem);
  }

  .floating-code-field .floating-code-label {
    font-size: .9rem;
  }
}

/* Obeil home compact layout: shortens the two main panels and keeps old asset paths usable. */
.access-scene {
  min-height: auto;
  margin: clamp(18px, 4vh, 44px) auto 36px;
  align-items: start;
}

.access-card,
.access-art {
  min-height: clamp(430px, 66vh, 540px);
}

.access-card-inner {
  padding: clamp(22px, 4vw, 42px);
  justify-content: center;
}

.access-card h1 {
  max-width: 560px;
  font-size: clamp(2.35rem, 5.8vw, 4.9rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.access-card .lead {
  max-width: 560px;
  font-size: clamp(.98rem, 1.55vw, 1.14rem);
  line-height: 1.58;
}

.home-code-form {
  margin-top: 22px;
}

.home-viewer,
.access-empty {
  min-height: 142px;
}

.access-art .art-caption {
  bottom: 22px;
}

@media (max-width: 900px) {
  .access-scene {
    gap: 16px;
    margin-top: 16px;
  }

  .access-card,
  .access-art {
    min-height: auto;
  }

  .access-art {
    min-height: 330px;
  }
}

@media (max-width: 560px) {
  .access-scene {
    width: min(100% - 18px, 1160px);
  }

  .access-card-inner {
    padding: 20px;
  }

  .access-card h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .access-art {
    min-height: 280px;
  }
}

/* Compact access hero panels: reduces oversized card/art vertical height on the Obeil landing page. */
.access-home-body .access-scene {
  min-height: auto;
  align-items: start;
  margin-top: clamp(18px, 4vh, 44px);
  margin-bottom: 34px;
}

.access-home-body .access-card,
.access-home-body .access-art {
  min-height: clamp(420px, 58vh, 520px);
}

.access-home-body .access-card-inner {
  min-height: auto;
  justify-content: flex-start;
  padding: clamp(22px, 3.8vw, 42px);
}

.access-home-body .access-card h1 {
  max-width: 560px;
  margin-block: 14px 12px;
  font-size: clamp(2.35rem, 5.4vw, 4.8rem);
  line-height: .95;
}

.access-home-body .access-card .lead {
  max-width: 560px;
  font-size: clamp(.98rem, 1.35vw, 1.12rem);
  line-height: 1.55;
}

.access-home-body .home-code-form {
  margin-top: 22px;
}

.access-home-body .home-viewer {
  min-height: 132px;
  margin-top: 16px;
}

.access-home-body .access-empty {
  min-height: 132px;
}

.access-home-body .access-art {
  padding-block: 22px 58px;
  max-height: 520px;
}

@media (max-width: 900px) {
  .access-home-body .access-scene {
    gap: 16px;
  }

  .access-home-body .access-card,
  .access-home-body .access-art {
    min-height: auto;
  }

  .access-home-body .access-art {
    min-height: 360px;
    max-height: none;
    padding-block: 18px 48px;
  }
}

@media (max-width: 560px) {
  .access-home-body .access-scene {
    margin-top: 12px;
  }

  .access-home-body .access-card-inner {
    padding: 18px;
  }

  .access-home-body .access-card h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .access-home-body .access-art {
    min-height: 300px;
  }
}

/* Shared-header release: result panel stays hidden until a valid access code loads. */
.access-result-panel {
  margin-top: 16px;
  min-height: 132px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
  overflow: hidden;
}

.access-result-panel[hidden] {
  display: none;
}

/* Central landing panels: vertically centers the two Obeil home sections and hides art on small screens. */
.access-home-body .access-scene {
  min-height: calc(100vh - 150px);
  align-items: center;
  margin-top: 18px;
  margin-bottom: 28px;
}

.access-home-body .access-card,
.access-home-body .access-art {
  align-self: center;
}

.access-home-body .access-card-inner {
  justify-content: center;
}

@media (max-width: 900px) {
  .access-home-body .access-scene {
    min-height: auto;
    align-items: stretch;
    margin-top: 14px;
  }
}

@media (max-width: 760px) {
  .access-home-body .access-art {
    display: none;
  }

  .access-home-body .access-scene {
    grid-template-columns: 1fr;
  }
}

/* Access-code form layout: aligns field, button, and helper text into a tighter control group. */
.access-home-body .home-code-row {
  grid-template-columns: minmax(0, 1fr) 132px;
  align-items: stretch;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
}

.access-home-body .home-code-row .code-input-shell {
  grid-column: 1;
}

.access-home-body .home-code-row .btn {
  grid-column: 2;
  min-height: 88px;
  width: 100%;
  border-radius: 8px;
  font-size: 1.05rem;
  letter-spacing: .03em;
}

.access-home-body .home-code-row .input-help {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: rgba(245,243,238,.68);
  font-size: .9rem;
  line-height: 1.4;
}

.access-home-body .floating-code-field .code-input-shell {
  min-height: 88px;
}

.access-home-body .floating-code-field .code-input-shell input {
  min-height: 86px;
  padding-right: 18px;
}

@media (max-width: 760px) {
  .access-home-body .home-code-row {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .access-home-body .home-code-row .code-input-shell,
  .access-home-body .home-code-row .btn,
  .access-home-body .home-code-row .input-help {
    grid-column: 1;
  }

  .access-home-body .home-code-row .btn {
    min-height: 54px;
  }

  .access-home-body .home-code-row .input-help {
    text-align: center;
    font-size: .86rem;
  }
}

/* Mobile access-card centering: keeps the access-code window centered after the art panel is hidden. */
@media (max-width: 760px) {
  .access-home-body {
    min-height: 100vh;
  }

  .access-home-body .access-scene {
    min-height: calc(100vh - 126px);
    display: grid;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 18px;
  }

  .access-home-body .access-card {
    align-self: center;
  }

  .access-home-body .access-card-inner {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .access-home-body .access-scene {
    min-height: calc(100vh - 112px);
    width: min(100% - 14px, 1160px);
  }
}

/* Access-code control reset: fixes oversized floating-field/button layout on the Obeil home page. */
.access-home-body .home-code-form {
  width: 100%;
  max-width: 760px;
  margin-top: 20px;
}

.access-home-body .home-code-row.floating-code-field {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 132px !important;
  grid-template-areas:
    "field button"
    "help help";
  gap: 10px 12px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.access-home-body .home-code-row.floating-code-field .code-input-shell {
  grid-area: field;
  height: 64px !important;
  min-height: 64px !important;
  border: 1px solid rgba(214,168,79,.56) !important;
  border-radius: 8px !important;
  background: #080d0f !important;
  box-shadow: none !important;
  overflow: hidden;
}

.access-home-body .home-code-row.floating-code-field .code-input-shell:focus-within {
  border-color: rgba(214,168,79,.86) !important;
  box-shadow: 0 0 0 3px rgba(214,168,79,.12) !important;
}

.access-home-body .home-code-row.floating-code-field #homeAccessCode {
  height: 62px !important;
  min-height: 62px !important;
  padding: 25px 16px 8px !important;
  font-size: clamp(1.25rem, 3vw, 1.9rem) !important;
  line-height: 1 !important;
  letter-spacing: .12em !important;
}

.access-home-body .home-code-row.floating-code-field .floating-code-label {
  top: 11px !important;
  left: 16px !important;
  font-size: .78rem !important;
  line-height: 1 !important;
  letter-spacing: .12em !important;
  color: #ffe2a3 !important;
}

.access-home-body .home-code-row.floating-code-field .btn {
  grid-area: button;
  height: 64px !important;
  min-height: 64px !important;
  padding: 0 18px !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  line-height: 1 !important;
}

.access-home-body .home-code-row.floating-code-field .input-help {
  grid-area: help;
  margin: 0 0 0 2px !important;
  color: rgba(245,243,238,.62) !important;
  font-size: .84rem !important;
  font-weight: 650 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 760px) {
  .access-home-body .home-code-form {
    max-width: 420px;
    margin-inline: auto;
  }

  .access-home-body .home-code-row.floating-code-field {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "field"
      "button"
      "help";
    gap: 9px !important;
  }

  .access-home-body .home-code-row.floating-code-field .code-input-shell {
    height: 60px !important;
    min-height: 60px !important;
  }

  .access-home-body .home-code-row.floating-code-field #homeAccessCode {
    height: 58px !important;
    min-height: 58px !important;
    padding-top: 24px !important;
    font-size: 1.28rem !important;
  }

  .access-home-body .home-code-row.floating-code-field .btn {
    height: 52px !important;
    min-height: 52px !important;
  }

  .access-home-body .home-code-row.floating-code-field .input-help {
    margin-left: 0 !important;
    text-align: center;
    font-size: .8rem !important;
  }
}

/* Access-code focus cleanup: removes stacked glow/highlight artifacts on the input. */
.access-home-body .home-code-row.floating-code-field .code-input-shell,
.access-home-body .home-code-row.floating-code-field .code-input-shell:focus,
.access-home-body .home-code-row.floating-code-field .code-input-shell:focus-within {
  outline: none !important;
  box-shadow: none !important;
}

.access-home-body .home-code-row.floating-code-field .code-input-shell:focus-within {
  border-color: rgba(214,168,79,.9) !important;
  background: #070b0d !important;
}

.access-home-body .home-code-row.floating-code-field #homeAccessCode,
.access-home-body .home-code-row.floating-code-field #homeAccessCode:focus,
.access-home-body .home-code-row.floating-code-field #homeAccessCode:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.access-home-body .home-code-row.floating-code-field .btn:focus,
.access-home-body .home-code-row.floating-code-field .btn:focus-visible {
  outline: 2px solid rgba(255,226,163,.72);
  outline-offset: 2px;
  box-shadow: none !important;
}

/* Shared footer and supporting page layouts. */
.site-footer,
.access-footer {
  display: block !important;
  width: min(1080px, calc(100% - 36px)) !important;
  margin: 0 auto 24px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--muted);
}

.site-footer a {
  margin-left: 0;
}

.site-footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, .86fr) minmax(0, 1.45fr);
  gap: clamp(22px, 4vw, 44px);
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    rgba(12,16,18,.88);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}

.footer-brand-panel {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  padding: 7px;
  border-radius: 8px;
  background: #f7f4ed;
}

.footer-brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .18em;
}

.footer-brand-panel p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer-contact-link {
  width: fit-content;
  color: #ffe2a3 !important;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.footer-nav-group {
  display: grid;
  gap: 9px;
}

.footer-nav-group h2 {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: .72rem !important;
  line-height: 1.2 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase;
}

.footer-nav-group a {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
  opacity: .88;
  transition: color .18s ease, opacity .18s ease, transform .18s ease;
}

.footer-nav-group a:hover {
  color: #ffe2a3;
  opacity: 1;
  transform: translateX(2px);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(245,243,238,.64);
  font-size: .88rem;
}

.footer-bottom p {
  margin: 0;
}

.content-band {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(29,37,42,.94), rgba(13,17,20,.94));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.content-band-inner {
  padding: clamp(22px, 4vw, 36px);
}

.content-band h2,
.content-band h3 {
  margin-top: 0;
}

.content-band p,
.content-band li {
  color: var(--muted);
  line-height: 1.7;
}

.content-band ul {
  margin: 0;
  padding-left: 20px;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: 22px;
  align-items: stretch;
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
}

.contact-card h3 {
  margin: 0;
  color: var(--ink);
}

.contact-card a {
  color: #d8fff8;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.detail-list div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list div:last-child {
  border-bottom: 0;
}

.detail-list dt {
  color: var(--accent);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .site-footer-shell,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-footer,
  .access-footer {
    width: min(100% - 16px, 1080px) !important;
  }

  .site-footer-shell {
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Normal header/footer chrome: flat full-width bands, no floating rounded container effect. */
.site-header,
.access-home-body .site-header,
.access-header {
  width: 100% !important;
  max-width: none !important;
  min-height: 64px !important;
  margin: 0 !important;
  padding: 14px max(18px, calc((100% - 1080px) / 2)) !important;
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: rgba(13,17,20,.96) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  top: 0 !important;
}

.site-header .brand img,
.access-header .brand img {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.site-header nav,
.access-header nav {
  gap: 18px !important;
}

.site-header nav a,
.access-header nav a,
.access-home-body nav a {
  min-height: 0 !important;
  padding: 7px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: inset 0 -2px 0 transparent;
  transform: none !important;
}

.site-header nav a:hover,
.access-header nav a:hover,
.access-home-body nav a:hover {
  color: #ffe2a3;
  box-shadow: inset 0 -2px 0 rgba(214,168,79,.7);
  transform: none !important;
}

.site-header nav a[aria-current="page"],
.access-header nav a[aria-current="page"],
.access-home-body nav a[aria-current="page"] {
  color: #ffe2a3 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: inset 0 -2px 0 rgba(214,168,79,.9);
}

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.language-picker select {
  width: auto;
  min-width: 62px;
  min-height: 32px;
  border: 1px solid rgba(214,168,79,.38);
  border-radius: 0;
  background: #0d1114;
  color: #ffe2a3;
  padding: 5px 26px 5px 8px;
  font: inherit;
  letter-spacing: 0;
  outline: none;
}

.language-picker select:focus {
  border-color: rgba(214,168,79,.82);
  box-shadow: 0 0 0 3px rgba(214,168,79,.16);
}

.site-header,
.site-header *,
.access-header,
.access-header *,
.mobile-menu-toggle {
  animation: none !important;
  opacity: 1 !important;
  translate: 0 0 !important;
}

.site-footer,
.access-footer {
  width: 100% !important;
  max-width: none !important;
  margin: 48px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-top: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: rgba(13,17,20,.96) !important;
  box-shadow: none !important;
}

.site-footer-shell {
  width: min(1080px, calc(100% - 36px)) !important;
  margin: 0 auto !important;
  padding: 34px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.footer-brand img {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.footer-nav-group a:hover {
  transform: none !important;
}

.mobile-menu-toggle {
  border-radius: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 760px) {
  .site-header,
  .access-home-body .site-header,
  .access-header {
    width: 100% !important;
    padding: 12px 16px !important;
  }

  .site-header nav,
  .access-header nav {
    gap: 8px !important;
  }

  .site-header nav a,
  .access-header nav a,
  .access-home-body nav a {
    padding: 10px 0 !important;
  }

  .language-picker {
    width: 100%;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .language-picker select {
    min-width: 88px;
  }
}

/* First-load reveal motion for visible Obeil UI elements across all pages. */
@keyframes obeilFirstLoadReveal {
  from {
    opacity: 0;
    translate: 0 16px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  :where(
    .access-card,
    .access-card-inner > *,
    .home-code-row > *,
    .access-art,
    .access-art > *,
    .page-shell > *,
    .hero-copy > *,
    .hero-actions > *,
    .hero-terminal,
    .hero-terminal > *,
    .visual-card,
    .visual-card > *,
    .api-window,
    .api-window > *,
    .endpoint-grid > *,
    .window-grid > *,
    .content-band,
    .content-band-inner > *,
    .form-grid > *,
    .detail-list > *,
    .site-footer,
    .footer-brand-panel,
    .footer-brand-panel > *,
    .footer-nav-group,
    .footer-nav-group > *,
    .footer-bottom > *
  ) {
    --obeil-reveal-order: 0;
    animation: obeilFirstLoadReveal .68s cubic-bezier(.16, 1, .3, 1) both;
    animation-delay: calc(var(--obeil-reveal-order) * 60ms);
    will-change: opacity, translate;
  }

  .access-card,
  .access-art,
  .page-shell > :nth-child(1) { --obeil-reveal-order: 2; }
  .visual-card { --obeil-reveal-order: 4; }
  .page-shell > :nth-child(2),
  .content-band { --obeil-reveal-order: 5; }
  .page-shell > :nth-child(3) { --obeil-reveal-order: 7; }

  :where(
    .access-card-inner,
    .home-code-row,
    .hero-copy,
    .hero-actions,
    .hero-terminal,
    .visual-card,
    .api-window,
    .content-band-inner,
    .form-grid,
    .detail-list,
    .footer-brand-panel,
    .footer-nav-group,
    .footer-bottom
  ) > :nth-child(1) { --obeil-reveal-order: 3; }

  :where(
    .access-card-inner,
    .home-code-row,
    .hero-copy,
    .hero-actions,
    .hero-terminal,
    .visual-card,
    .api-window,
    .content-band-inner,
    .form-grid,
    .detail-list,
    .footer-brand-panel,
    .footer-nav-group,
    .footer-bottom
  ) > :nth-child(2) { --obeil-reveal-order: 4; }

  :where(
    .access-card-inner,
    .home-code-row,
    .hero-copy,
    .hero-actions,
    .hero-terminal,
    .visual-card,
    .api-window,
    .content-band-inner,
    .form-grid,
    .detail-list,
    .footer-brand-panel,
    .footer-nav-group,
    .footer-bottom
  ) > :nth-child(3) { --obeil-reveal-order: 5; }

  :where(
    .access-card-inner,
    .home-code-row,
    .hero-copy,
    .hero-actions,
    .hero-terminal,
    .visual-card,
    .api-window,
    .content-band-inner,
    .form-grid,
    .detail-list,
    .footer-brand-panel,
    .footer-nav-group,
    .footer-bottom
  ) > :nth-child(4) { --obeil-reveal-order: 6; }

  :where(
    .access-card-inner,
    .home-code-row,
    .hero-copy,
    .hero-actions,
    .hero-terminal,
    .visual-card,
    .api-window,
    .content-band-inner,
    .form-grid,
    .detail-list,
    .footer-brand-panel,
    .footer-nav-group,
    .footer-bottom
  ) > :nth-child(5) { --obeil-reveal-order: 7; }

  :where(
    .access-card-inner,
    .home-code-row,
    .hero-copy,
    .hero-actions,
    .hero-terminal,
    .visual-card,
    .api-window,
    .content-band-inner,
    .form-grid,
    .detail-list,
    .footer-brand-panel,
    .footer-nav-group,
    .footer-bottom
  ) > :nth-child(n+6) { --obeil-reveal-order: 8; }

  .access-art > :nth-child(1) { --obeil-reveal-order: 3; }
  .access-art > :nth-child(2) { --obeil-reveal-order: 4; }
  .access-art > :nth-child(3) { --obeil-reveal-order: 5; }
  .access-art > :nth-child(4) { --obeil-reveal-order: 6; }
  .access-art > :nth-child(5) { --obeil-reveal-order: 7; }
  .access-art > :nth-child(n+6) { --obeil-reveal-order: 8; }

  .endpoint-grid > :nth-child(1),
  .window-grid > :nth-child(1),
  .footer-brand-panel { --obeil-reveal-order: 5; }
  .endpoint-grid > :nth-child(2),
  .window-grid > :nth-child(2),
  .footer-nav-group:nth-child(1) { --obeil-reveal-order: 6; }
  .endpoint-grid > :nth-child(3),
  .window-grid > :nth-child(3),
  .footer-nav-group:nth-child(2) { --obeil-reveal-order: 7; }
  .endpoint-grid > :nth-child(4),
  .footer-nav-group:nth-child(3) { --obeil-reveal-order: 8; }
  .endpoint-grid > :nth-child(5),
  .footer-nav-group:nth-child(4) { --obeil-reveal-order: 9; }
  .endpoint-grid > :nth-child(n+6),
  .site-footer,
  .footer-bottom { --obeil-reveal-order: 10; }
}

@media (prefers-reduced-motion: reduce) {
  :where(
    .site-header,
    .site-header .brand,
    .site-header nav a,
    .mobile-menu-toggle,
    .access-card,
    .access-card-inner > *,
    .home-code-row > *,
    .access-art,
    .access-art > *,
    .page-shell > *,
    .hero-copy > *,
    .hero-actions > *,
    .hero-terminal,
    .hero-terminal > *,
    .visual-card,
    .visual-card > *,
    .api-window,
    .api-window > *,
    .endpoint-grid > *,
    .window-grid > *,
    .content-band,
    .content-band-inner > *,
    .form-grid > *,
    .detail-list > *,
    .site-footer,
    .footer-brand-panel,
    .footer-brand-panel > *,
    .footer-nav-group,
    .footer-nav-group > *,
    .footer-bottom > *
  ) {
    animation: none !important;
    opacity: 1 !important;
    translate: 0 0 !important;
    will-change: auto !important;
  }
}

/* Access-code input repair: restores a clear focus state after the reset rules. */
.access-home-body .home-code-row.floating-code-field .code-input-shell {
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.access-home-body .home-code-row.floating-code-field .code-input-shell:focus-within {
  border-color: rgba(255,226,163,.96) !important;
  background: #05090b !important;
  box-shadow:
    0 0 0 3px rgba(214,168,79,.24),
    0 14px 34px rgba(0,0,0,.34) !important;
}

.access-home-body .home-code-row.floating-code-field #homeAccessCode {
  border: 0 !important;
  background: transparent !important;
}

.access-home-body .home-code-row.floating-code-field #homeAccessCode:focus,
.access-home-body .home-code-row.floating-code-field #homeAccessCode:focus-visible {
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

.access-home-body .home-code-row.floating-code-field .code-input-shell:focus-within .floating-code-label,
.access-home-body .home-code-row.floating-code-field .code-input-shell.has-value .floating-code-label {
  color: #fff1c8 !important;
  top: 11px !important;
  left: 16px !important;
  font-size: .72rem !important;
  transform: none !important;
}

/* Access-code label spacing: keeps the empty label padded and centered until focus/value state. */
.access-home-body .home-code-row.floating-code-field .floating-code-label {
  top: 50% !important;
  left: 28px !important;
  max-width: calc(100% - 56px);
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffe2a3 !important;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem) !important;
  transform: translateY(-50%) !important;
  transform-origin: left center;
  transition: color .18s ease, font-size .18s ease, left .18s ease, top .18s ease, transform .18s ease;
}

.access-home-body .home-code-row.floating-code-field #homeAccessCode {
  padding: 16px 28px 10px !important;
}

.access-home-body .home-code-row.floating-code-field .code-input-shell:focus-within #homeAccessCode,
.access-home-body .home-code-row.floating-code-field .code-input-shell.has-value #homeAccessCode {
  padding: 25px 16px 8px !important;
}

@media (max-width: 760px) {
  .access-home-body .home-code-row.floating-code-field .code-input-shell {
    height: 64px !important;
    min-height: 64px !important;
  }

  .access-home-body .home-code-row.floating-code-field .floating-code-label {
    top: 9px !important;
    left: 14px !important;
    max-width: calc(100% - 28px);
    padding-right: 6px;
    background: #080d0f;
    font-size: .7rem !important;
    line-height: 1.1 !important;
    text-align: left;
    white-space: nowrap;
    transform: none !important;
    transform-origin: left center;
  }

  .access-home-body .home-code-row.floating-code-field .code-input-shell:focus-within .floating-code-label,
  .access-home-body .home-code-row.floating-code-field .code-input-shell.has-value .floating-code-label {
    top: 9px !important;
    left: 14px !important;
    font-size: .7rem !important;
    transform: none !important;
  }

  .access-home-body .home-code-row.floating-code-field #homeAccessCode {
    height: 62px !important;
    min-height: 62px !important;
    padding: 25px 14px 8px !important;
    font-size: clamp(1.1rem, 6vw, 1.45rem) !important;
    letter-spacing: .14em !important;
    text-align: center;
  }

  .access-home-body .home-code-row.floating-code-field .code-input-shell:focus-within #homeAccessCode,
  .access-home-body .home-code-row.floating-code-field .code-input-shell.has-value #homeAccessCode {
    padding: 25px 14px 8px !important;
  }

  html[dir="rtl"] .access-home-body .home-code-row.floating-code-field .floating-code-label,
  html[dir="rtl"] .access-home-body .home-code-row.floating-code-field .code-input-shell:focus-within .floating-code-label,
  html[dir="rtl"] .access-home-body .home-code-row.floating-code-field .code-input-shell.has-value .floating-code-label {
    right: 14px !important;
    left: auto !important;
    padding-right: 0;
    padding-left: 6px;
    text-align: right;
    transform: none !important;
    transform-origin: right center;
  }
}

@media (max-width: 380px) {
  .access-home-body .home-code-row.floating-code-field .floating-code-label,
  .access-home-body .home-code-row.floating-code-field .code-input-shell:focus-within .floating-code-label,
  .access-home-body .home-code-row.floating-code-field .code-input-shell.has-value .floating-code-label {
    font-size: .64rem !important;
    letter-spacing: .1em !important;
  }

  .access-home-body .home-code-row.floating-code-field #homeAccessCode {
    font-size: 1.08rem !important;
    letter-spacing: .11em !important;
  }
}

/* Final mobile guard: prevents inherited centered-label rules from clipping the access-code label. */
@media (max-width: 760px) {
  .access-home-body .home-code-row.floating-code-field .code-input-shell > .floating-code-label {
    position: absolute !important;
    inset-block-start: 9px !important;
    inset-inline-start: 14px !important;
    inset-inline-end: auto !important;
    width: auto !important;
    max-width: calc(100% - 28px) !important;
    min-width: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    padding: 0 6px 0 0 !important;
    text-align: start !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    transform: none !important;
  }

  .access-home-body .home-code-row.floating-code-field .code-input-shell:focus-within > .floating-code-label,
  .access-home-body .home-code-row.floating-code-field .code-input-shell.has-value > .floating-code-label {
    inset-block-start: 9px !important;
    inset-inline-start: 14px !important;
    transform: none !important;
  }
}

/* Page-specific imagery: gives support pages distinct real-world visual context. */
.visual-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101619;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.visual-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(.98) contrast(1.04);
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,8,10,0) 36%, rgba(5,8,10,.86) 100%),
    linear-gradient(90deg, rgba(5,8,10,.34), rgba(5,8,10,0) 48%);
  z-index: 1;
}

.visual-card-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.visual-card-overlay span {
  width: fit-content;
  color: #ffe2a3;
  border: 1px solid rgba(255,226,163,.36);
  background: rgba(8,12,14,.58);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.visual-card-overlay strong {
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.visual-card-overlay p {
  max-width: 520px;
  margin: 0;
  color: rgba(245,243,238,.78);
  line-height: 1.55;
}

.visual-card-metrics {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.visual-card-metrics b {
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(5,8,10,.52);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(245,243,238,.9);
  font-size: .76rem;
  letter-spacing: .06em;
}

.visual-card.project {
  border-color: rgba(214,168,79,.28);
}

.visual-card.team {
  border-color: rgba(125,196,184,.28);
}

.visual-card.secure {
  border-color: rgba(255,226,163,.32);
}

.visual-card.secure::after {
  background:
    radial-gradient(circle at 76% 24%, rgba(214,168,79,.24), transparent 18rem),
    linear-gradient(180deg, rgba(5,8,10,0) 30%, rgba(5,8,10,.88) 100%);
}

.layout-code,
.layout-contact,
.layout-resource {
  grid-template-columns: 1.05fr .95fr;
}

.layout-code .visual-card,
.layout-contact .visual-card,
.layout-resource .visual-card {
  order: -1;
}

.layout-feature .visual-card {
  min-height: 500px;
}

.visual-card.product,
.visual-card.dashboard {
  border-color: rgba(125,196,184,.28);
}

.visual-card.code,
.visual-card.support,
.visual-card.plan,
.visual-card.guide {
  border-color: rgba(255,226,163,.28);
}

.visual-card.product::after {
  background:
    radial-gradient(circle at 22% 28%, rgba(125,196,184,.2), transparent 18rem),
    linear-gradient(180deg, rgba(5,8,10,0) 30%, rgba(5,8,10,.86) 100%);
}

.visual-card.code::after {
  background:
    radial-gradient(circle at 70% 22%, rgba(125,196,184,.2), transparent 20rem),
    linear-gradient(180deg, rgba(5,8,10,.08) 20%, rgba(5,8,10,.9) 100%);
}

.visual-card.support::after,
.visual-card.plan::after,
.visual-card.guide::after,
.visual-card.dashboard::after {
  background:
    radial-gradient(circle at 18% 18%, rgba(214,168,79,.18), transparent 18rem),
    linear-gradient(180deg, rgba(5,8,10,0) 34%, rgba(5,8,10,.9) 100%);
}

.key-created {
  border: 1px solid rgba(214,168,79,.42);
  border-radius: 8px;
  background: rgba(214,168,79,.08);
  padding: 14px;
}

.key-created small {
  color: var(--muted);
}

.security-art-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(125,196,184,.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 52% 42%, rgba(125,196,184,.22), transparent 15rem),
    linear-gradient(145deg, rgba(18,28,32,.98), rgba(6,10,12,.98));
  box-shadow: var(--shadow);
}

.security-art-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .55;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.security-art-grid span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d8fff8;
  box-shadow: 0 0 24px rgba(216,255,248,.75);
}

.security-art-grid span:nth-child(1) { top: 18%; left: 20%; }
.security-art-grid span:nth-child(2) { top: 22%; right: 22%; }
.security-art-grid span:nth-child(3) { bottom: 34%; left: 26%; }
.security-art-grid span:nth-child(4) { right: 26%; bottom: 28%; }

.security-art-lock {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background: linear-gradient(145deg, #f6f1e8, #cdd8d6);
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
  translate: -50% -50%;
}

.security-art-lock img {
  width: 78px;
  height: 78px;
  border-radius: 0;
}

.security-route-card {
  position: absolute;
  min-width: 158px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(8,12,14,.72);
  backdrop-filter: blur(14px);
  padding: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}

.security-route-card b {
  color: #ffe2a3;
  letter-spacing: .12em;
}

.security-route-card span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.route-one { top: 13%; left: 7%; }
.route-two { top: 20%; right: 7%; }
.route-three { left: 10%; bottom: 24%; }

.security-art-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 8px;
}

.security-art-copy span {
  width: fit-content;
  color: #ffe2a3;
  border: 1px solid rgba(255,226,163,.36);
  background: rgba(8,12,14,.58);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.security-art-copy strong {
  max-width: 520px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.06;
}

.security-art-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(245,243,238,.78);
}

@media (prefers-reduced-motion: no-preference) {
  .security-art-grid {
    animation: obeilGridDrift 11s ease-in-out infinite alternate;
  }

  .security-art-lock {
    animation: obeilCoreFloat 4.6s ease-in-out infinite;
  }

  .route-one,
  .route-three {
    animation: obeilCardFloat 5.7s ease-in-out infinite;
  }

  .route-two {
    animation: obeilCardFloat 6.2s ease-in-out .5s infinite;
  }
}

.access-art-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
  filter: saturate(.95) contrast(1.06);
  z-index: 0;
}

.access-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 58% 46%, rgba(13,17,20,.08), rgba(13,17,20,.72) 68%),
    linear-gradient(180deg, rgba(13,17,20,.18), rgba(13,17,20,.74));
  pointer-events: none;
  z-index: 0;
}

.access-art .art-beam,
.access-art .art-document-stack,
.access-art .art-lock-ring,
.access-art .art-data-card,
.access-art .art-caption {
  z-index: 2;
}

@keyframes redirectSweep {
  from { transform: translateX(-105%); }
  to { transform: translateX(145%); }
}

@keyframes redirectStatusPulse {
  0%, 100% { opacity: .68; }
  50% { opacity: 1; }
}

@keyframes redirectGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 72px 72px, 72px 72px; }
}

@media (max-width: 900px) {
  .visual-card {
    min-height: 360px;
  }

  .layout-code,
  .layout-contact,
  .layout-resource {
    grid-template-columns: 1fr;
  }

  .layout-code .visual-card,
  .layout-contact .visual-card,
  .layout-resource .visual-card {
    order: 0;
  }

  .security-art-panel {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .visual-card {
    min-height: 300px;
  }

  .visual-card-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .visual-card-overlay strong {
    font-size: 1.35rem;
  }

  .security-art-panel {
    min-height: 330px;
  }

  .security-route-card {
    display: none;
  }
}

/* ============================================================
   COOL GREY / WHITE THEME (20260524)
   Inverts the dark surface palette to a clean white site with
   cool-grey panels, while preserving layout, typography, motion,
   and the gold/teal brand accents. Functionality is untouched.
   ============================================================ */
:root {
  --bg: #ffffff;
  --panel: #f3f4f6;
  --panel-2: #e5e7eb;
  --ink: #111827;
  --muted: #6b7280;
  --line: rgba(17, 24, 39, .10);
  --accent: #d6a84f;
  --accent-2: #0f766e;
  --danger: #b91c1c;
  --shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

html,
body,
body.access-home-body {
  background: #ffffff !important;
  color: var(--ink);
}

a { color: inherit; }

/* Body radial-gradient washes -> soft cool-grey washes (or none). */
body {
  background:
    radial-gradient(circle at 82% 12%, rgba(214, 168, 79, .06), transparent 28rem),
    radial-gradient(circle at 12% 28%, rgba(15, 118, 110, .05), transparent 26rem),
    #ffffff !important;
}
.access-home-body {
  background:
    radial-gradient(circle at 82% 18%, rgba(214, 168, 79, .07), transparent 24rem),
    radial-gradient(circle at 14% 72%, rgba(15, 118, 110, .05), transparent 26rem),
    #ffffff !important;
}

/* ---------- Header ---------- */
.site-header,
.access-home-body .site-header,
.access-header {
  background: #ffffff !important;
  border-bottom: 1px solid var(--line) !important;
  color: var(--ink) !important;
}
.site-header .brand,
.access-header .brand,
.site-header .brand span,
.access-header .brand span { color: var(--ink) !important; }
.brand img,
.footer-brand img { background: #f4efe4; }
.brand small,
.footer-brand small,
.site-header .brand small,
.access-header .brand small { color: var(--muted) !important; }

.site-header nav a,
.access-header nav a,
.access-home-body nav a { color: var(--ink) !important; }
.site-header nav a:hover,
.access-header nav a:hover,
.access-home-body nav a:hover { color: #8a6a2a !important; box-shadow: inset 0 -2px 0 rgba(214, 168, 79, .8) !important; }
.site-header nav a[aria-current="page"],
.access-header nav a[aria-current="page"],
.access-home-body nav a[aria-current="page"] { color: #8a6a2a !important; box-shadow: inset 0 -2px 0 rgba(214, 168, 79, .95) !important; background: transparent !important; }

.mobile-menu-toggle {
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  color: var(--ink) !important;
}

/* Language picker (was dark) */
.language-picker { color: var(--muted) !important; }
.language-picker select {
  background: #ffffff !important;
  color: var(--ink) !important;
  border: 1px solid rgba(214, 168, 79, .55) !important;
}
.language-picker select:focus {
  border-color: rgba(214, 168, 79, .85) !important;
  box-shadow: 0 0 0 3px rgba(214, 168, 79, .18) !important;
}

/* ---------- Cards / panels ---------- */
.hero-copy,
.hero-terminal,
.api-window,
.endpoint-card,
.content-band,
.access-card,
.access-art,
.access-home-body .access-card,
.access-home-body .access-art,
.session-panel,
.list-panel,
.contact-card,
.visual-card,
.security-art-panel {
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  color: var(--ink) !important;
  box-shadow: var(--shadow) !important;
}

.access-card {
  background:
    linear-gradient(155deg, #ffffff, #f8fafc) !important;
}
.access-card::before {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, .04) 1px, transparent 1px),
    linear-gradient(rgba(17, 24, 39, .035) 1px, transparent 1px) !important;
}

.access-art,
.access-home-body .access-art {
  background:
    radial-gradient(circle at 50% 48%, rgba(214, 168, 79, .14), transparent 18rem),
    linear-gradient(155deg, #f8fafc, #eef2f7) !important;
}
.access-home-body .kinetic-art {
  background:
    radial-gradient(circle at 50% 42%, rgba(214, 168, 79, .15), transparent 15rem),
    radial-gradient(circle at 58% 58%, rgba(15, 118, 110, .10), transparent 20rem),
    linear-gradient(150deg, #f8fafc, #eef2f7) !important;
}

.content-band {
  background: #ffffff !important;
}

/* Plan card (pricing) */
.plan.featured {
  background: linear-gradient(145deg, #fff7e6, #ffffff) !important;
  border-color: rgba(214, 168, 79, .6) !important;
}

/* ---------- Typography on white ---------- */
h1, h2, h3, h4, h5, h6 { color: var(--ink); }
.lead,
.page-shell p,
.hero-copy .lead,
.access-card .lead,
.endpoint-card p,
.content-band p,
.content-band li,
.detail-list dd,
.session-panel,
.list-panel,
.viewer-meta p,
.empty,
.access-empty,
.footer-brand-panel p { color: var(--muted) !important; }

.session-panel strong,
.list-panel strong,
.contact-card h3 { color: var(--ink) !important; }

/* Badges */
.badge {
  border: 1px solid rgba(214, 168, 79, .55);
  color: #8a6a2a;
  background: rgba(214, 168, 79, .10);
}

.metrics span {
  color: #0f766e;
  border: 1px solid rgba(15, 118, 110, .28);
  background: rgba(15, 118, 110, .06);
}

/* Endpoint card label + code block */
.endpoint-card span { color: #8a6a2a; }
.endpoint-card code {
  color: #0f766e;
  border: 1px solid rgba(15, 118, 110, .22);
  background: rgba(15, 118, 110, .06);
}

/* Detail list */
.detail-list dt { color: #8a6a2a; }
.detail-list div { border-bottom: 1px solid var(--line); }

/* ---------- Buttons ---------- */
.btn.primary {
  background: var(--accent);
  color: #1a1208;
  border-color: var(--accent);
}
.btn.secondary {
  background: #f3f4f6;
  color: var(--ink);
  border: 1px solid var(--line);
}
nav a, .btn { border-color: var(--line); }
nav a:hover, .btn:hover { border-color: rgba(214, 168, 79, .55); }

/* ---------- Inputs / forms ---------- */
input, textarea, select {
  background: #ffffff !important;
  color: var(--ink) !important;
  border: 1px solid var(--line) !important;
}
input::placeholder, textarea::placeholder { color: rgba(17, 24, 39, .45); }
input:focus, textarea:focus, select:focus {
  border-color: rgba(214, 168, 79, .75) !important;
  box-shadow: 0 0 0 3px rgba(214, 168, 79, .18) !important;
  outline: none;
}
label { color: var(--ink); }

/* Form-grid + code-form sit on white panel */
.form-grid, .code-form { background: transparent; }
.output {
  border: 1px solid rgba(15, 118, 110, .34);
  background: rgba(15, 118, 110, .06);
  color: var(--ink);
}
.output a { color: #0f766e; }
.error { color: #b91c1c; }

/* Viewer panel */
.viewer { background: #f9fafb; border: 1px solid var(--line); }
.viewer-meta { border-bottom: 1px solid var(--line); }
.viewer-frame { background: #ffffff; }
.empty strong { color: #8a6a2a; }

/* Result panel (home access result) */
.access-result-panel {
  border: 1px solid var(--line);
  background: #f9fafb;
}

/* ---------- Home access-code field (the dark floating one) ---------- */
.access-home-body .home-code-row.floating-code-field .code-input-shell,
.access-home-body .home-code-row.floating-code-field .code-input-shell:focus,
.access-home-body .home-code-row.floating-code-field .code-input-shell:focus-within {
  background: #ffffff !important;
  border: 1px solid rgba(214, 168, 79, .55) !important;
  box-shadow: none !important;
}
.access-home-body .home-code-row.floating-code-field .code-input-shell:focus-within {
  border-color: rgba(214, 168, 79, .9) !important;
  box-shadow: 0 0 0 3px rgba(214, 168, 79, .18) !important;
  background: #ffffff !important;
}
.access-home-body .home-code-row.floating-code-field #homeAccessCode {
  background: transparent !important;
  color: var(--ink) !important;
  caret-color: var(--accent) !important;
  border: 0 !important;
}
.access-home-body .home-code-row.floating-code-field .floating-code-label,
.access-home-body .home-code-row.floating-code-field .code-input-shell:focus-within .floating-code-label,
.access-home-body .home-code-row.floating-code-field .code-input-shell.has-value .floating-code-label {
  color: #8a6a2a !important;
}
.access-home-body .input-help,
.access-home-body .home-code-row.floating-code-field .input-help {
  color: var(--muted) !important;
}
/* Mobile floating-label "chip" background was dark */
@media (max-width: 760px) {
  .access-home-body .home-code-row.floating-code-field .floating-code-label {
    background: #ffffff !important;
  }
}

/* ---------- Footer ---------- */
.site-footer,
.access-footer {
  background: #ffffff !important;
  border-top: 1px solid var(--line) !important;
  color: var(--muted) !important;
}
.site-footer-shell {
  background: transparent !important;
}
.footer-brand,
.footer-brand span { color: var(--ink); }
.footer-nav-group h2 { color: #8a6a2a; }
.footer-nav-group a { color: var(--ink); }
.footer-nav-group a:hover { color: #8a6a2a; }
.footer-contact-link { color: #8a6a2a !important; }
.footer-bottom { color: var(--muted); border-top: 1px solid var(--line); }

/* ---------- Decorative art tweaks (kinetic art, sheets, lock ring) ---------- */
.art-ambient {
  background: conic-gradient(from 0deg, transparent, rgba(214, 168, 79, .20), transparent, rgba(15, 118, 110, .18), transparent) !important;
  opacity: .55 !important;
}
.art-blueprint {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, .06) 1px, transparent 1px),
    linear-gradient(rgba(17, 24, 39, .05) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 48%, rgba(214, 168, 79, .20) 49% 50%, transparent 51% 100%) !important;
}
.art-beam {
  background: linear-gradient(90deg, transparent, rgba(15, 118, 110, .55), transparent) !important;
}
.sheet {
  border: 1px solid rgba(17, 24, 39, .14) !important;
  background: linear-gradient(160deg, #ffffff, #eef2f7) !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .12) !important;
}
.sheet i { background: rgba(17, 24, 39, .18) !important; }

.art-lock-ring {
  border: 1px solid rgba(17, 24, 39, .14) !important;
  box-shadow: inset 0 0 50px rgba(15, 118, 110, .06), 0 30px 70px rgba(15, 23, 42, .12) !important;
}
.art-lock-ring::before {
  border: 1px dashed rgba(214, 168, 79, .45) !important;
}
.art-lock-ring::after {
  border-color: rgba(15, 118, 110, .35) !important;
}
.art-lock-ring > span {
  background: #0f766e !important;
  box-shadow: 0 0 18px rgba(15, 118, 110, .55) !important;
}
.lock-core {
  background: linear-gradient(145deg, #ffffff, #e2e8f0) !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .18) !important;
}

.art-data-card {
  border: 1px solid var(--line) !important;
  background: rgba(255, 255, 255, .92) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, .10) !important;
}
.art-data-card b { color: #8a6a2a !important; }
.art-data-card small { color: var(--muted) !important; }

.art-caption {
  border: 1px solid rgba(15, 118, 110, .35) !important;
  background: rgba(15, 118, 110, .08) !important;
  color: #0f766e !important;
}

.art-panel {
  border: 1px solid var(--line) !important;
  background: rgba(255, 255, 255, .92) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, .10) !important;
}
.art-panel span { color: #8a6a2a !important; }
.art-panel small { color: var(--muted) !important; }
.art-ribbon {
  border: 1px solid rgba(15, 118, 110, .35) !important;
  background: rgba(15, 118, 110, .08) !important;
  color: #0f766e !important;
}
.core-mark { background: #f4efe4 !important; box-shadow: 0 14px 36px rgba(15, 23, 42, .14) !important; }

/* The access-art has a dark scrim overlay (.access-art::after) — soften it for white background */
.access-art::after {
  background:
    radial-gradient(circle at 58% 46%, rgba(255, 255, 255, 0), rgba(255, 255, 255, .32) 68%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .28)) !important;
}
.access-art-photo {
  opacity: .55 !important;
}

/* ---------- Visual cards (about/features/etc photo cards) ---------- */
.visual-card { background: #f3f4f6 !important; }
.visual-card::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 36%, rgba(255, 255, 255, .82) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, .26), rgba(255, 255, 255, 0) 48%) !important;
}
.visual-card.secure::after {
  background:
    radial-gradient(circle at 76% 24%, rgba(214, 168, 79, .18), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, .88) 100%) !important;
}
.visual-card.product::after,
.visual-card.dashboard::after {
  background:
    radial-gradient(circle at 22% 28%, rgba(15, 118, 110, .15), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, .86) 100%) !important;
}
.visual-card.code::after {
  background:
    radial-gradient(circle at 70% 22%, rgba(15, 118, 110, .15), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, .08) 20%, rgba(255, 255, 255, .9) 100%) !important;
}
.visual-card.support::after,
.visual-card.plan::after,
.visual-card.guide::after {
  background:
    radial-gradient(circle at 18% 18%, rgba(214, 168, 79, .15), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, .9) 100%) !important;
}
.visual-card-overlay span {
  color: #8a6a2a;
  border: 1px solid rgba(214, 168, 79, .45);
  background: rgba(255, 255, 255, .92);
}
.visual-card-overlay strong { color: var(--ink); }
.visual-card-overlay p { color: var(--muted); }
.visual-card-metrics b {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
}

/* ---------- Security art panel ---------- */
.security-art-panel {
  background:
    radial-gradient(circle at 52% 42%, rgba(15, 118, 110, .15), transparent 15rem),
    linear-gradient(145deg, #f8fafc, #eef2f7) !important;
  border: 1px solid rgba(15, 118, 110, .25) !important;
}
.security-art-grid {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, .05) 1px, transparent 1px),
    linear-gradient(rgba(17, 24, 39, .045) 1px, transparent 1px) !important;
}
.security-art-grid span {
  background: #0f766e !important;
  box-shadow: 0 0 18px rgba(15, 118, 110, .5) !important;
}
.security-art-lock {
  background: linear-gradient(145deg, #ffffff, #e2e8f0) !important;
  box-shadow: 0 22px 60px rgba(15, 23, 42, .18) !important;
  border: 1px solid var(--line) !important;
}
.security-route-card {
  border: 1px solid var(--line) !important;
  background: rgba(255, 255, 255, .92) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .10) !important;
}
.security-route-card b { color: #8a6a2a !important; }
.security-route-card span { color: var(--muted) !important; }
.security-art-copy span {
  color: #8a6a2a;
  border: 1px solid rgba(214, 168, 79, .45);
  background: rgba(255, 255, 255, .92);
}
.security-art-copy strong { color: var(--ink); }
.security-art-copy p { color: var(--muted); }

/* ---------- Text links / utility ---------- */
.text-link { color: #0f766e; }
.list-item code { color: #0f766e; }
.list-item { border-bottom: 1px solid var(--line); }

/* Code/pre on white */
pre {
  color: #0f766e;
  background: #f9fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

/* Terminal chrome dots stay colourful, but the rest of the bar fits white */
.terminal-top, .window-chrome {
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  background: #f9fafb;
}

/* Key-created highlight */
.key-created {
  border: 1px solid rgba(214, 168, 79, .45);
  background: rgba(214, 168, 79, .08);
}
.key-created small { color: var(--muted); }

/* Document-redirect overlay (for /end redirect screen) — light variant */
.document-redirect-overlay {
  background:
    radial-gradient(circle at 50% 44%, rgba(214, 168, 79, .14), transparent 21rem),
    radial-gradient(circle at 24% 22%, rgba(15, 118, 110, .10), transparent 19rem),
    #ffffff !important;
  color: var(--ink) !important;
}
.document-redirect-grid {
  background-image:
    linear-gradient(rgba(17, 24, 39, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, .06) 1px, transparent 1px) !important;
}
.document-redirect-content span { color: #8a6a2a !important; }
.document-redirect-content h2 { color: var(--ink) !important; }
.document-redirect-content p { color: var(--muted) !important; }
.document-redirect-content strong { color: #0f766e !important; }
.document-redirect-progress {
  border: 1px solid rgba(214, 168, 79, .35) !important;
  background: rgba(17, 24, 39, .06) !important;
}

/* ===== End cool grey / white theme ===== */

/* ============================================================
   HEADER v2 (20260524): single-row, brand left, nav centered,
   actions right with Login as a primary pill. Mobile collapses
   into the existing hamburger drawer with actions appended.
   ============================================================ */
.site-header,
.access-home-body .site-header,
.access-header {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  column-gap: 24px !important;
  padding: 12px max(20px, calc((100% - 1120px) / 2)) !important;
  min-height: 64px !important;
}

.site-header .brand,
.access-header .brand { grid-column: 1; }

.site-header nav,
.access-header nav {
  grid-column: 2 !important;
  justify-self: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  flex-wrap: wrap;
}

.header-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

/* Brand polish: keep on a single visual line */
.brand { gap: 11px !important; }
.brand img { width: 38px; height: 38px; }
.brand span { font-size: .98rem; line-height: 1.1; }
.brand small {
  display: inline-block !important;
  margin: 0 0 0 8px !important;
  padding-left: 10px;
  border-left: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: .62rem !important;
  font-weight: 700;
  letter-spacing: .18em;
  vertical-align: middle;
  text-transform: uppercase;
}

/* Centered nav links */
.site-header nav a,
.access-header nav a,
.access-home-body nav a {
  padding: 8px 12px !important;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  transition: color .18s ease, background .18s ease;
}
.site-header nav a:hover,
.access-header nav a:hover,
.access-home-body nav a:hover {
  color: #8a6a2a !important;
  background: rgba(214, 168, 79, .08) !important;
  box-shadow: none !important;
}
.site-header nav a[aria-current="page"],
.access-header nav a[aria-current="page"],
.access-home-body nav a[aria-current="page"] {
  color: #8a6a2a !important;
  background: rgba(214, 168, 79, .12) !important;
  box-shadow: inset 0 -2px 0 rgba(214, 168, 79, .9) !important;
}

/* Login pill */
.header-actions .nav-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #1a1208;
  border: 1px solid var(--accent);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .02em;
  box-shadow: 0 8px 20px rgba(214, 168, 79, .25);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.header-actions .nav-login:hover {
  background: #c79a3f;
  box-shadow: 0 10px 24px rgba(214, 168, 79, .35);
  transform: translateY(-1px);
}

/* Compact language picker */
.header-actions .language-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted) !important;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.header-actions .language-picker > span {
  display: none; /* "Language" label is implied by the dropdown */
}
.header-actions .language-picker select {
  min-height: 36px;
  min-width: 72px;
  padding: 6px 28px 6px 10px;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: var(--ink) !important;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
}

/* Hamburger sits in column 3 only on mobile */
.mobile-menu-toggle {
  grid-column: 3;
  justify-self: end;
  display: none;
  width: 42px;
  height: 40px;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: var(--ink) !important;
}

/* ---------- Mobile (collapses below 1100px) ---------- */
@media (max-width: 1100px) {
  .site-header,
  .access-home-body .site-header,
  .access-header {
    grid-template-columns: auto 1fr auto !important;
    column-gap: 12px !important;
    padding: 10px 16px !important;
  }
  .site-header nav,
  .access-header nav {
    grid-column: 1 / -1 !important;
    justify-self: stretch !important;
    display: none !important;
    flex-direction: column;
    align-items: stretch !important;
    gap: 4px !important;
    padding: 10px 4px 6px !important;
    border-top: 1px solid var(--line);
    margin-top: 8px;
  }
  .header-actions {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 6px 4px 4px;
    border-top: 1px solid var(--line);
  }
  .header-actions .language-picker {
    justify-content: space-between;
  }
  .header-actions .language-picker > span {
    display: inline;
  }
  .header-actions .nav-login { width: 100%; }

  .mobile-menu-toggle { display: inline-flex !important; }

  .site-header.nav-open nav,
  .access-home-body .site-header.nav-open nav,
  .access-header.nav-open nav { display: flex !important; }
  .site-header.nav-open .header-actions,
  .access-home-body .site-header.nav-open .header-actions,
  .access-header.nav-open .header-actions { display: flex !important; }

  .site-header nav a,
  .access-header nav a,
  .access-home-body nav a {
    width: 100%;
    justify-content: flex-start !important;
    text-align: left;
    padding: 12px 12px !important;
    border-radius: 8px !important;
  }

  .brand small {
    margin-left: 6px !important;
    padding-left: 8px;
    font-size: .58rem !important;
  }
}

@media (max-width: 460px) {
  .brand small {
    display: none !important; /* "Document Access" hidden on narrow screens */
  }
  .brand img { width: 34px; height: 34px; }
}
/* ===== End HEADER v2 ===== */

/* ============================================================
   DEPTH PASS (20260524): card elevation + hover lift
   ============================================================ */
:root {
  --shadow-sm: 0 6px 16px rgba(15, 23, 42, .06), 0 2px 4px rgba(15, 23, 42, .04);
  --shadow-md: 0 14px 32px rgba(15, 23, 42, .10), 0 4px 10px rgba(15, 23, 42, .05);
  --shadow-lg: 0 26px 60px rgba(15, 23, 42, .14), 0 10px 20px rgba(15, 23, 42, .06);
  --line-strong: rgba(17, 24, 39, .14);
}

.hero-copy,
.hero-terminal,
.api-window,
.endpoint-card,
.content-band,
.access-card,
.access-art,
.access-home-body .access-card,
.access-home-body .access-art,
.session-panel,
.list-panel,
.contact-card,
.visual-card,
.security-art-panel,
.plan {
  border: 1px solid var(--line-strong) !important;
  border-radius: 14px !important;
  box-shadow: var(--shadow-md) !important;
  transition: transform .28s cubic-bezier(.16,1,.3,1),
              box-shadow .28s cubic-bezier(.16,1,.3,1),
              border-color .28s ease;
}

/* Hover lift on the cards that aren't full-bleed hero anchors */
.endpoint-card,
.visual-card,
.contact-card,
.plan,
.api-window {
  cursor: default;
}
.endpoint-card:hover,
.visual-card:hover,
.contact-card:hover,
.plan:hover,
.api-window:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(214, 168, 79, .35) !important;
}

/* Subtle inner accent strip on featured plan */
.plan.featured {
  position: relative;
  border-color: rgba(214, 168, 79, .55) !important;
  box-shadow: 0 30px 70px rgba(214, 168, 79, .18), 0 10px 24px rgba(15, 23, 42, .08) !important;
}
.plan.featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #0f766e);
  border-radius: 14px 14px 0 0;
}

/* Endpoint card label dot */
.endpoint-card { position: relative; }
.endpoint-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(214, 168, 79, .6);
  opacity: .7;
}

/* Section background depth: alternating soft tints between page sections */
.page-shell > section + section,
.page-shell > article + section {
  position: relative;
}
.page-shell {
  position: relative;
}
.page-shell::before {
  content: "";
  position: absolute;
  inset: 0 -10% -10% 50%;
  background: radial-gradient(circle at 60% 40%, rgba(15, 118, 110, .05), transparent 30rem);
  z-index: -1;
  pointer-events: none;
}

/* Soften body washes a touch more so cards have something to sit on */
body {
  background:
    radial-gradient(circle at 78% 8%, rgba(214, 168, 79, .09), transparent 30rem),
    radial-gradient(circle at 8% 32%, rgba(15, 118, 110, .07), transparent 30rem),
    linear-gradient(180deg, #fafbfc 0%, #ffffff 30%, #ffffff 70%, #f7f8fa 100%) !important;
}
.access-home-body {
  background:
    radial-gradient(circle at 82% 14%, rgba(214, 168, 79, .12), transparent 26rem),
    radial-gradient(circle at 12% 76%, rgba(15, 118, 110, .08), transparent 28rem),
    linear-gradient(180deg, #fbfcfd 0%, #ffffff 50%, #f6f7f9 100%) !important;
}

/* Brighter kinetic art (was washed out by white background overrides) */
.access-art-photo { opacity: .42 !important; }
.access-art::after {
  background:
    radial-gradient(circle at 58% 46%, rgba(255, 255, 255, 0), rgba(255, 255, 255, .12) 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .14)) !important;
}

/* ===== End DEPTH PASS ===== */

/* ============================================================
   BRANDED LOADER (20260524)
   Full-screen overlay shown on first paint of every page,
   removed by JS after window.load + a minimum reveal time.
   ============================================================ */
.obeil-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(214, 168, 79, .12), transparent 22rem),
    radial-gradient(circle at 50% 70%, rgba(15, 118, 110, .10), transparent 24rem),
    #ffffff;
  opacity: 1;
  transition: opacity .55s ease;
  pointer-events: all;
}
body.is-loaded .obeil-loader {
  opacity: 0;
  pointer-events: none;
}
body.obeil-loader-gone .obeil-loader {
  display: none !important;
}

.obeil-loader-stage {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.obeil-loader-ring {
  position: relative;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
}

.obeil-loader-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  pointer-events: none;
}
.obeil-loader-orbit--outer {
  border-top-color: rgba(214, 168, 79, .9);
  border-right-color: rgba(214, 168, 79, .35);
  animation: obeilLoaderSpin 1.6s linear infinite;
}
.obeil-loader-orbit--inner {
  inset: 14px;
  border-top-color: rgba(15, 118, 110, .85);
  border-left-color: rgba(15, 118, 110, .25);
  animation: obeilLoaderSpin 2.2s linear infinite reverse;
}

.obeil-loader-spark {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d6a84f;
  box-shadow: 0 0 18px rgba(214, 168, 79, .75);
  opacity: .85;
}
.obeil-loader-spark--a { top: -3px; left: calc(50% - 5px); animation: obeilLoaderPulse 1.8s ease-in-out infinite; }
.obeil-loader-spark--b { right: -3px; top: calc(50% - 5px); background: #0f766e; box-shadow: 0 0 18px rgba(15, 118, 110, .65); animation: obeilLoaderPulse 1.8s ease-in-out .45s infinite; }
.obeil-loader-spark--c { bottom: -3px; left: calc(50% - 5px); animation: obeilLoaderPulse 1.8s ease-in-out .9s infinite; }

.obeil-loader-core {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #eef2f7);
  box-shadow: 0 16px 36px rgba(15, 23, 42, .14), inset 0 0 0 1px rgba(17, 24, 39, .06);
  display: grid;
  place-items: center;
  animation: obeilLoaderCoreFloat 2.4s ease-in-out infinite;
}
.obeil-loader-core img {
  width: 46px;
  height: 46px;
}

.obeil-loader-bar {
  width: 220px;
  height: 4px;
  border-radius: 999px;
  background: rgba(17, 24, 39, .08);
  overflow: hidden;
}
.obeil-loader-bar i {
  display: block;
  width: 36%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--accent), #0f766e, transparent);
  animation: obeilLoaderSweep 1.4s cubic-bezier(.6,.05,.4,.95) infinite;
}

.obeil-loader-label {
  margin: 0;
  font-weight: 950;
  font-size: 1.05rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #111827;
}
.obeil-loader-label span {
  display: block;
  margin-top: 6px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: #6b7280;
}

@keyframes obeilLoaderSpin { to { transform: rotate(360deg); } }
@keyframes obeilLoaderPulse {
  0%, 100% { opacity: .35; transform: scale(.78); }
  50% { opacity: 1; transform: scale(1.18); }
}
@keyframes obeilLoaderCoreFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes obeilLoaderSweep {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(310%); }
}

/* Prevent scroll while loader is visible */
body:not(.is-loaded) { overflow: hidden; }

/* ============================================================
   ARTISTIC BACKGROUND (20260524)
   Replaces flat-white body bg with a soft mesh gradient, a
   subtle SVG grain layer, and two slow-drifting accent orbs.
   Sits behind everything (z-index: -1), no pointer impact.
   ============================================================ */
html, body { position: relative; }
html { background: transparent !important; }

body,
.access-home-body {
  background:
    radial-gradient(1400px 1100px at  8% -10%, rgba(214, 168, 79, .42), transparent 60%),
    radial-gradient(1300px 1000px at 100% 12%, rgba( 15, 118, 110, .32), transparent 60%),
    radial-gradient(1500px 1200px at 78% 102%, rgba(184, 134, 211, .26), transparent 60%),
    radial-gradient(1200px 1000px at -5% 78%, rgba(214, 168, 79, .26), transparent 60%),
    radial-gradient(1100px  900px at 50%  55%, rgba(255, 245, 220, .55), transparent 70%),
    linear-gradient(160deg, #f1ebd9 0%, #f5efe1 28%, #efe8d4 54%, #ebe5d2 78%, #e6dfc8 100%) !important;
  background-attachment: fixed !important;
}

/* SVG grain — visible film texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .55;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.06  0 0 0 0 0.08  0 0 0 0 0.10  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  mix-blend-mode: multiply;
}

/* Soft drifting blobs — gold + teal, bigger + brighter so they actually read */
body::after {
  content: "";
  position: fixed;
  inset: -15%;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(620px 540px at 22% 28%, rgba(214, 168, 79, .55), transparent 65%),
    radial-gradient(720px 600px at 78% 72%, rgba( 15, 118, 110, .42), transparent 65%),
    radial-gradient(520px 460px at 50% 50%, rgba(184, 134, 211, .28), transparent 70%);
  filter: blur(28px);
  animation: obeilBgDrift 26s ease-in-out infinite alternate;
  opacity: 1;
}

@keyframes obeilBgDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(2.5%, -1.5%, 0) scale(1.05); }
  100% { transform: translate3d(-2%, 1.5%, 0) scale(.98); }
}

/* Faint blueprint corner grid in the top-right — on-brand artistic accent */
.site-header + main::before,
.site-header + .access-scene::before {
  content: "";
  position: fixed;
  top: 80px;
  right: -120px;
  width: 520px;
  height: 520px;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 24, 39, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, .055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 70%);
  opacity: .55;
  transform: rotate(-2deg);
}

@media (prefers-reduced-motion: reduce) {
  body::after { animation: none !important; }
}

/* Ensure foreground stays above the artistic layers */
.site-header,
main,
.access-scene,
.page-shell,
.site-footer,
.access-footer { position: relative; z-index: 0; }
/* ===== End ARTISTIC BACKGROUND ===== */

@media (prefers-reduced-motion: reduce) {
  .obeil-loader-orbit,
  .obeil-loader-spark,
  .obeil-loader-core,
  .obeil-loader-bar i {
    animation: none !important;
  }
}
/* ===== End BRANDED LOADER ===== */
