:root {
  color-scheme: dark;
  --vr-bg: #080708;
  --vr-bg-soft: #100c0e;
  --vr-panel: rgba(28, 20, 23, 0.78);
  --vr-ink: #f3eeea;
  --vr-muted: #aaa09f;
  --vr-faint: #776e6e;
  --vr-line: rgba(243, 238, 234, 0.16);
  --vr-line-strong: rgba(243, 238, 234, 0.34);
  --vr-wine: #5d202c;
  --vr-wine-bright: #8f394a;
  --vr-black: #0b0809;
  --vr-max: 1240px;
  --vr-reading: 760px;
  --vr-serif: Georgia, "Times New Roman", Times, serif;
  --vr-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --vr-ease: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }
html { background: var(--vr-bg); scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 12%, rgba(93, 32, 44, .15), transparent 35rem),
    radial-gradient(circle at 0% 100%, rgba(81, 42, 48, .09), transparent 36rem),
    var(--vr-bg);
  color: var(--vr-ink);
  font-family: var(--vr-sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

[hidden] { display: none !important; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid rgba(243, 238, 234, .94);
  outline-offset: 4px;
}

.vr-page {
  width: min(100%, 1600px);
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  overflow: clip;
}

.vr-topbar {
  width: min(calc(100% - 48px), var(--vr-max));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--vr-line);
}

.vr-wordmark,
.vr-home-mark {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .32em;
  line-height: 1;
  text-transform: uppercase;
}

.vr-wordmark { text-decoration: none; min-height: 48px; display: inline-flex; align-items: center; }
.vr-context { color: var(--vr-faint); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }

.vr-footer {
  width: min(calc(100% - 48px), var(--vr-max));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--vr-line);
  color: var(--vr-faint);
  font-size: 12px;
}

.vr-footer nav { display: flex; flex-wrap: wrap; gap: 22px; }
.vr-footer a { min-height: 44px; display: inline-flex; align-items: center; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.vr-kicker {
  margin: 0 0 18px;
  color: var(--vr-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { font-family: var(--vr-serif); font-weight: 400; }
h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(3.25rem, 8vw, 8.5rem);
  line-height: .94;
  letter-spacing: -.055em;
}

h2 { margin: 0 0 14px; font-size: clamp(1.9rem, 4vw, 3.35rem); line-height: 1.05; letter-spacing: -.035em; }
.vr-lead { max-width: 720px; margin: 30px 0 0; color: var(--vr-muted); font-family: var(--vr-serif); font-size: clamp(1.25rem, 2.4vw, 1.75rem); line-height: 1.52; }

.vr-primary,
.vr-secondary,
.vr-danger,
.vr-enter,
.vr-sound,
.vr-text-link {
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 20px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .14em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .25s var(--vr-ease), color .25s var(--vr-ease), border-color .25s var(--vr-ease), transform .25s var(--vr-ease);
}

.vr-primary { background: var(--vr-ink); color: var(--vr-black); border-color: var(--vr-ink); }
.vr-primary:hover { background: #fff; border-color: #fff; transform: translateY(-2px); }
.vr-secondary { background: transparent; color: var(--vr-ink); border-color: var(--vr-line-strong); }
.vr-secondary:hover { border-color: var(--vr-ink); background: rgba(243, 238, 234, .06); }
.vr-danger { background: transparent; color: #efb3bd; border-color: rgba(239, 179, 189, .42); }
.vr-danger:hover { background: rgba(143, 57, 74, .16); border-color: #efb3bd; }
.vr-primary:disabled, .vr-secondary:disabled, .vr-danger:disabled { cursor: wait; opacity: .55; }

/* Home: one dominant vector. */
.vr-page.vr-mode-home { min-height: 100svh; display: grid; grid-template-rows: 1fr auto; }
.vr-home {
  width: min(calc(100% - 48px), 1320px);
  min-height: calc(100svh - 84px);
  margin: 0 auto;
  padding: clamp(56px, 10vh, 130px) 0 54px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.vr-home::after {
  content: "";
  position: absolute;
  width: min(48vw, 680px);
  height: min(70vh, 860px);
  right: -10vw;
  top: -12vh;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(116, 42, 56, .2), rgba(28, 15, 19, .04) 55%, transparent 72%);
  filter: blur(16px);
  pointer-events: none;
}

.vr-home-mark { margin-bottom: clamp(42px, 7vh, 88px); position: relative; z-index: 1; }
.vr-home h1 { max-width: 1120px; position: relative; z-index: 1; }
.vr-enter {
  margin-top: clamp(48px, 8vh, 90px);
  padding: 14px 0;
  border-bottom-color: var(--vr-line-strong);
  position: relative;
  z-index: 1;
}
.vr-enter span { font-size: 18px; transition: transform .25s var(--vr-ease); }
.vr-enter:hover { border-bottom-color: var(--vr-ink); }
.vr-enter:hover span { transform: translateX(7px); }
.vr-entry-note { max-width: 560px; margin: 24px 0 0; color: var(--vr-faint); font-size: 12px; line-height: 1.65; position: relative; z-index: 1; }

/* Threshold: the fragment is the event, not a description of it. */
.vr-threshold {
  width: min(calc(100% - 48px), var(--vr-max));
  min-height: calc(100svh - 172px);
  margin: 0 auto;
  padding: clamp(38px, 7vh, 82px) 0;
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(360px, 1.14fr);
  align-items: center;
  gap: clamp(50px, 8vw, 118px);
}

.vr-perceptual { position: relative; width: 100%; }
.vr-perceptual-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, #0c0809, #1a1013 52%, #090607);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .44);
  isolation: isolate;
}

.vr-perceptual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 67% 42%, rgba(255, 227, 214, .17), transparent 4%),
    radial-gradient(ellipse at 54% 48%, rgba(111, 39, 51, .34), transparent 24%),
    linear-gradient(96deg, transparent 25%, rgba(237, 204, 190, .06) 50%, transparent 64%);
}

.vr-curtain {
  position: absolute;
  inset-block: -8%;
  width: 72%;
  z-index: 2;
  background: linear-gradient(100deg, #090607 2%, #2a151a 36%, #11090b 72%, #070506 100%);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .8));
}

.vr-curtain-a { left: -36%; transform: rotate(4deg); animation: vr-curtain-a 8s var(--vr-ease) infinite alternate; }
.vr-curtain-b { right: -44%; transform: rotate(-5deg); animation: vr-curtain-b 9s var(--vr-ease) .6s infinite alternate; }
.vr-light-slit {
  position: absolute;
  z-index: 1;
  width: 3.5%;
  height: 82%;
  left: 57%;
  top: 7%;
  transform: rotate(7deg);
  background: linear-gradient(to bottom, transparent, rgba(255, 225, 208, .35) 21%, rgba(226, 160, 145, .46) 48%, transparent 88%);
  filter: blur(9px);
  animation: vr-light 6.4s var(--vr-ease) infinite alternate;
}
.vr-glint {
  position: absolute;
  z-index: 4;
  width: 8px;
  height: 8px;
  left: 59%;
  top: 41%;
  border-radius: 50%;
  background: rgba(255, 240, 229, .9);
  box-shadow: 0 0 11px 4px rgba(245, 198, 181, .42);
  animation: vr-glint 7s ease-in-out infinite;
}

@keyframes vr-curtain-a { from { transform: translateX(-1%) rotate(4deg) scaleX(1); } to { transform: translateX(8%) rotate(2deg) scaleX(.96); } }
@keyframes vr-curtain-b { from { transform: translateX(0) rotate(-5deg); } to { transform: translateX(-8%) rotate(-3deg); } }
@keyframes vr-light { from { opacity: .34; transform: translateX(-12px) rotate(7deg) scaleY(.93); } to { opacity: .9; transform: translateX(8px) rotate(5deg) scaleY(1.02); } }
@keyframes vr-glint { 0%, 37%, 100% { opacity: .08; transform: scale(.5); } 48%, 58% { opacity: .95; transform: scale(1); } }

.vr-sound { margin-top: 16px; padding-inline: 0; color: var(--vr-muted); background: transparent; border-bottom-color: var(--vr-line); }
.vr-sound span { color: var(--vr-faint); }
.vr-threshold-question { opacity: 1; transform: none; }
.vr-threshold-question h1 { font-size: clamp(3.1rem, 6.6vw, 7.3rem); }
@keyframes vr-question-in { to { opacity: 1; transform: none; } }

.vr-choice-list { margin-top: clamp(42px, 7vh, 74px); border-top: 1px solid var(--vr-line); }
.vr-choice-list a {
  min-height: 76px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--vr-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  text-decoration: none;
  transition: padding .28s var(--vr-ease), color .28s var(--vr-ease), border-color .28s var(--vr-ease);
}
.vr-choice-list a:hover { padding-left: 14px; border-bottom-color: var(--vr-line-strong); }
.vr-choice-list span { font-family: var(--vr-serif); font-size: clamp(1.55rem, 2.4vw, 2.25rem); }
.vr-choice-list small { color: var(--vr-faint); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }

/* Fragment and boundary. */
.vr-fragment {
  width: min(calc(100% - 48px), var(--vr-max));
  min-height: calc(100svh - 172px);
  margin: 0 auto;
  padding: clamp(46px, 8vh, 96px) 0;
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(380px, 1.25fr);
  align-items: center;
  gap: clamp(52px, 9vw, 130px);
}

.vr-fragment-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 53% 37%, rgba(243, 205, 189, .19), transparent 8%),
    radial-gradient(ellipse at 50% 46%, rgba(116, 42, 56, .38), transparent 28%),
    linear-gradient(140deg, #110a0c, #261318 46%, #080506 80%);
  box-shadow: 0 38px 100px rgba(0, 0, 0, .45);
}
.vr-fragment-image::before,
.vr-fragment-image::after {
  content: "";
  position: absolute;
  width: 72%;
  height: 130%;
  top: -15%;
  background: linear-gradient(98deg, #090607, #241217 46%, #0b0708 90%);
}
.vr-fragment-image::before { left: -42%; transform: rotate(6deg); }
.vr-fragment-image::after { right: -49%; transform: rotate(-5deg); }
.vr-fragment-image span {
  position: absolute;
  width: 14px;
  height: 5px;
  left: 57%;
  top: 36%;
  z-index: 4;
  border-radius: 50%;
  background: rgba(255, 235, 223, .66);
  box-shadow: 0 0 14px rgba(255, 215, 197, .45);
}
.vr-fragment-image i { position: absolute; inset: auto 14% 15% 23%; height: 1px; z-index: 4; background: linear-gradient(90deg, transparent, rgba(243, 238, 234, .25), transparent); }
.vr-fragment h1 { font-size: clamp(3.2rem, 7vw, 7.8rem); }
.vr-boundary-actions { margin-top: 52px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.vr-boundary-actions > * { min-width: 158px; }

.vr-end {
  width: min(calc(100% - 48px), var(--vr-reading));
  min-height: calc(100svh - 172px);
  margin: 0 auto;
  padding: clamp(74px, 16vh, 180px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.vr-end h1 { font-size: clamp(3.5rem, 8vw, 7.8rem); }
.vr-text-link { margin-top: 52px; padding-inline: 0; border-bottom-color: var(--vr-line); color: var(--vr-muted); }

/* Separated utility worlds. */
.vr-utility-main,
.vr-form-main,
.vr-legal {
  width: min(calc(100% - 48px), var(--vr-max));
  min-height: calc(100svh - 172px);
  margin: 0 auto;
  padding: clamp(58px, 10vh, 120px) 0;
}

.vr-utility-main h1,
.vr-form-main > h1,
.vr-legal > h1 { font-size: clamp(3.2rem, 7.2vw, 7.6rem); }

.vr-way-grid {
  margin-top: clamp(52px, 9vh, 96px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--vr-line);
  border-left: 1px solid var(--vr-line);
}
.vr-way-grid a {
  min-height: 230px;
  padding: 34px;
  border-right: 1px solid var(--vr-line);
  border-bottom: 1px solid var(--vr-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: background .28s var(--vr-ease), transform .28s var(--vr-ease);
}
.vr-way-grid a:hover { background: rgba(243, 238, 234, .045); transform: translateY(-3px); }
.vr-way-grid strong { font-family: var(--vr-serif); font-size: clamp(1.7rem, 3vw, 2.7rem); font-weight: 400; line-height: 1.05; }
.vr-way-grid span { max-width: 320px; color: var(--vr-muted); }

/* Forms: operational clarity. */
.vr-form-main { max-width: 1040px; }
.vr-form-main > .vr-lead { max-width: 850px; }
.vr-card {
  margin-top: clamp(44px, 8vh, 80px);
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid var(--vr-line);
  background: linear-gradient(145deg, rgba(34, 24, 27, .72), rgba(12, 9, 10, .78));
  backdrop-filter: blur(14px);
}
.vr-gated-form { display: grid; gap: 28px; }
.vr-direct-gate {
  margin-top: 44px;
  padding: 24px 0;
  border-top: 1px solid var(--vr-line);
  border-bottom: 1px solid var(--vr-line);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.vr-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.vr-card label:not(.vr-check) { display: grid; gap: 9px; color: var(--vr-ink); font-size: 13px; font-weight: 700; letter-spacing: .04em; }
.vr-card label span { color: var(--vr-faint); font-size: 12px; font-weight: 500; }
.vr-card input:not([type]),
.vr-card input[type="text"],
.vr-card input[type="email"],
.vr-card textarea,
.vr-card select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--vr-line-strong);
  border-radius: 0;
  background: rgba(4, 3, 3, .58);
  color: var(--vr-ink);
  padding: 13px 14px;
  caret-color: var(--vr-ink);
  transition: border-color .2s ease, background .2s ease;
}
.vr-card textarea { min-height: 180px; resize: vertical; line-height: 1.55; }
.vr-card input:hover, .vr-card textarea:hover { border-color: rgba(243, 238, 234, .54); }
.vr-card input:focus, .vr-card textarea:focus { border-color: var(--vr-ink); background: rgba(4, 3, 3, .82); }
.vr-card input::placeholder, .vr-card textarea::placeholder { color: #6f6667; opacity: 1; }

.vr-check {
  min-height: 48px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  color: var(--vr-muted);
  cursor: pointer;
}
.vr-check input { width: 22px; height: 22px; margin: 2px 0 0; accent-color: var(--vr-ink); }
.vr-check span { font-size: 14px !important; line-height: 1.55; }
.vr-form-note { margin: -8px 0 0; color: var(--vr-faint); font-size: 12px; }
.vr-gated-form > .vr-primary { justify-self: start; min-width: 220px; }
.vr-writing-control { padding: 22px 0; border-top: 1px solid var(--vr-line); border-bottom: 1px solid var(--vr-line); display: grid; gap: 9px; }
.vr-invitation-step { display: grid; gap: 28px; }
.vr-invitation-step[hidden] { display: none !important; }
.vr-invitation-step h2 { max-width: 760px; margin-bottom: 4px; }
.vr-step-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 4px; }
.vr-step-actions .vr-primary { min-width: 220px; }
.vr-step-actions .vr-text-link { margin-top: 0; padding-inline: 0; color: var(--vr-muted); background: transparent; }
.vr-hp { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.vr-status {
  margin-top: 32px;
  padding: 18px 20px;
  border: 1px solid var(--vr-line-strong);
  background: rgba(243, 238, 234, .05);
  color: var(--vr-muted);
}
.vr-status strong { color: var(--vr-ink); }
.vr-status ul { margin: 8px 0 0; padding-left: 20px; }
.vr-status-error { border-color: rgba(239, 179, 189, .42); color: #edc2c8; }
.vr-success { max-width: 760px; }
.vr-success p { color: var(--vr-muted); }

.vr-data-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.vr-data-grid .vr-card { margin-top: 54px; }
.vr-manage-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.vr-data-summary dl { margin: 0; display: grid; grid-template-columns: minmax(150px, .4fr) minmax(0, 1fr); }
.vr-data-summary dt, .vr-data-summary dd { margin: 0; padding: 13px 0; border-bottom: 1px solid var(--vr-line); }
.vr-data-summary dt { color: var(--vr-faint); }
.vr-inline-status { min-height: 1.6em; color: var(--vr-muted); }

/* Legal rail: same family, quieter utility mode. */
.vr-legal { max-width: 920px; }
.vr-legal > h1 { max-width: 820px; }
.vr-legal-meta { margin: 24px 0 62px; color: var(--vr-faint); font-size: 12px; }
.vr-legal section { padding: 32px 0; border-top: 1px solid var(--vr-line); }
.vr-legal section:last-of-type { border-bottom: 1px solid var(--vr-line); }
.vr-legal section h2 { max-width: 720px; font-size: clamp(1.55rem, 3vw, 2.25rem); }
.vr-legal section p, .vr-legal section li { max-width: 820px; color: var(--vr-muted); line-height: 1.75; }
.vr-legal a { text-underline-offset: 4px; }

@media (max-width: 900px) {
  .vr-threshold, .vr-fragment { grid-template-columns: 1fr; gap: 54px; }
  .vr-perceptual-frame { max-height: 64svh; aspect-ratio: 4 / 4.6; }
  .vr-fragment-image { max-width: 620px; max-height: 62svh; aspect-ratio: 4 / 4.8; }
  .vr-way-grid { grid-template-columns: 1fr; }
  .vr-way-grid a { min-height: 190px; }
  .vr-data-grid { grid-template-columns: 1fr; }
  .vr-data-grid .vr-card + .vr-card { margin-top: 0; }
}

@media (max-width: 640px) {
  .vr-topbar, .vr-footer, .vr-home, .vr-threshold, .vr-fragment, .vr-end, .vr-utility-main, .vr-form-main, .vr-legal { width: min(calc(100% - 32px), var(--vr-max)); }
  .vr-topbar { min-height: 72px; }
  .vr-footer { min-height: 116px; padding: 24px 0; align-items: flex-start; flex-direction: column; gap: 10px; }
  .vr-footer nav { gap: 16px; }
  .vr-home { min-height: calc(100svh - 116px); padding-top: 42px; }
  h1 { font-size: clamp(3rem, 16vw, 5.6rem); }
  .vr-home h1 { font-size: clamp(3.6rem, 18vw, 6.4rem); }
  .vr-threshold, .vr-fragment { min-height: auto; padding: 36px 0 64px; }
  .vr-perceptual-frame { max-height: 58svh; }
  .vr-threshold-question h1, .vr-fragment h1, .vr-form-main > h1, .vr-utility-main h1, .vr-legal > h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .vr-field-grid { grid-template-columns: 1fr; }
  .vr-direct-gate { align-items: stretch; flex-direction: column; }
  .vr-direct-gate .vr-primary { width: 100%; }
  .vr-boundary-actions { align-items: stretch; flex-direction: column; }
  .vr-boundary-actions > * { width: 100%; }
  .vr-card { padding: 24px 18px; }
  .vr-gated-form > .vr-primary { width: 100%; }
  .vr-step-actions { align-items: stretch; flex-direction: column; }
  .vr-step-actions > * { width: 100%; }
  .vr-data-summary dl { grid-template-columns: 1fr; }
  .vr-data-summary dt { padding-bottom: 2px; border-bottom: 0; }
  .vr-data-summary dd { padding-top: 2px; }
  .vr-manage-actions > * { width: 100%; }
}

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

/* Golden State 1.1.3 · Attention campaign BLICK 01. */
.vr-blick01-frame::before { display: none; }
.vr-threshold-poster,
.vr-threshold-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vr-threshold-poster { z-index: 0; }
.vr-threshold-video {
  z-index: 1;
  opacity: .96;
  filter: saturate(.82) contrast(1.04);
}
.vr-video-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 7, 8, .08), transparent 32%, rgba(8, 7, 8, .22)),
    radial-gradient(ellipse at 60% 36%, transparent 0, rgba(8, 7, 8, .08) 48%, rgba(8, 7, 8, .38) 100%);
}
.vr-threshold-question h1 {
  max-width: 760px;
  font-size: clamp(2.9rem, 5.5vw, 6.15rem);
}
.vr-blick01-still::before,
.vr-blick01-still::after,
.vr-blick01-still span,
.vr-blick01-still i { display: none; }
.vr-blick01-still img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.05);
}
.vr-boundary-question {
  margin: clamp(34px, 6vh, 62px) 0 0;
  color: var(--vr-ink);
  font-family: var(--vr-serif);
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  line-height: 1.25;
}
.vr-boundary-question + .vr-boundary-actions { margin-top: 28px; }
.vr-invitation-main { max-width: 920px; }
.vr-invitation-main .vr-card { max-width: 820px; }
.vr-invitation-main .vr-gated-form > .vr-primary { margin-top: 4px; }

@media (max-width: 640px) {
  .vr-threshold-question h1 { font-size: clamp(2.72rem, 12.2vw, 4.55rem); }
  .vr-boundary-question { font-size: clamp(1.45rem, 7vw, 2rem); }
}

@media (prefers-reduced-motion: reduce) {
  .vr-threshold-video { display: none; }
}

/* ==============================================================
   PRESENCE-01 · human presence, breath-led motion and directed gaze
   Public experience only. The private Veil Learning Suite has its
   own plugin, namespace, capability and wp-admin surface.
   ============================================================== */

.vr-mode-home .vr-home::after { display: none; }

.vr-home {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.vr-home-copy {
  width: min(58%, 760px);
  position: relative;
  z-index: 4;
}

.vr-home-presence {
  position: absolute;
  z-index: 0;
  inset: -5% -3% -4% auto;
  width: min(64vw, 920px);
  overflow: hidden;
  pointer-events: none;
  opacity: .82;
}

.vr-home-presence::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, #080708 0%, rgba(8, 7, 8, .96) 8%, rgba(8, 7, 8, .52) 34%, rgba(8, 7, 8, .02) 66%),
    linear-gradient(0deg, #080708 0%, rgba(8, 7, 8, .72) 14%, transparent 42%),
    linear-gradient(180deg, rgba(8, 7, 8, .2), transparent 35%);
}

.vr-home-presence img,
.vr-human-frame .vr-presence-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform-origin: 52% 36%;
  will-change: transform, filter;
  animation: vr-presence-breathe 6.2s cubic-bezier(.45,0,.25,1) infinite alternate;
}

.vr-breath-light {
  position: absolute;
  z-index: 3;
  inset: 4% -8% 18% 10%;
  pointer-events: none;
  background: radial-gradient(ellipse at 58% 37%, rgba(206, 117, 90, .12), rgba(113, 41, 51, .045) 34%, transparent 66%);
  mix-blend-mode: screen;
  filter: blur(8px);
  animation: vr-breath-light 5.2s ease-in-out infinite;
}

.vr-veil-motion {
  position: absolute;
  z-index: 4;
  width: 58%;
  height: 115%;
  right: -34%;
  top: -8%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 4%, rgba(82, 24, 37, .10) 34%, rgba(134, 45, 60, .17) 52%, rgba(14, 8, 10, .02) 72%, transparent 92%);
  filter: blur(20px);
  transform: rotate(-6deg);
  animation: vr-veil-breathe 8.4s var(--vr-ease) infinite alternate;
}

@keyframes vr-presence-breathe {
  0%   { transform: scale(1.015) translate3d(0, .15%, 0); filter: brightness(.94) saturate(.91); }
  48%  { transform: scale(1.026) translate3d(-.12%, -.18%, 0); filter: brightness(1) saturate(.96); }
  100% { transform: scale(1.038) translate3d(-.25%, -.34%, 0); filter: brightness(.97) saturate(.94); }
}

@keyframes vr-breath-light {
  0%, 100% { opacity: .32; transform: scale(.985); }
  42%      { opacity: .78; transform: scale(1.018); }
  68%      { opacity: .48; transform: scale(1.006); }
}

@keyframes vr-veil-breathe {
  from { opacity: .28; transform: translateX(0) rotate(-6deg) scaleX(.96); }
  to   { opacity: .72; transform: translateX(-9%) rotate(-4deg) scaleX(1.04); }
}

.vr-human-frame {
  position: relative;
  isolation: isolate;
  background: #080607;
  overflow: hidden;
  box-shadow: 0 36px 100px rgba(0, 0, 0, .5);
}

.vr-human-frame::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6,5,6,.02) 0%, rgba(6,5,6,.05) 55%, rgba(6,5,6,.78) 100%),
    linear-gradient(90deg, rgba(6,5,6,.16), transparent 28%, transparent 72%, rgba(6,5,6,.18));
}

.vr-perceptual-frame.vr-human-frame::before { display: none; }
.vr-human-frame .vr-breath-light { inset: 0; z-index: 3; }
.vr-human-frame .vr-veil-motion { z-index: 4; }

.vr-presence-copy {
  position: relative;
  z-index: 3;
  transition: opacity .42s var(--vr-ease), transform .42s var(--vr-ease);
}

.vr-presence-copy .vr-boundary-question {
  margin: clamp(28px, 5vh, 54px) 0 0;
  max-width: 620px;
  color: var(--vr-muted);
  font-family: var(--vr-serif);
  font-size: clamp(1.4rem, 2.7vw, 2.15rem);
  line-height: 1.3;
}

.vr-presence-experience .vr-boundary-actions { margin-top: 30px; }
.vr-presence-experience .vr-secondary { color: var(--vr-muted); }
.vr-human-frame-close .vr-presence-image { transform-origin: 50% 26%; animation-duration: 5.5s; }

html.vr-transition-closer .vr-human-frame .vr-presence-image {
  transform: scale(1.075) translate3d(0, -1%, 0) !important;
  filter: brightness(.86) saturate(.94);
  transition: transform .42s var(--vr-ease), filter .42s var(--vr-ease);
}
html.vr-transition-closer .vr-presence-copy { opacity: .42; transform: translateY(5px); }
html.vr-transition-closer .vr-breath-light { opacity: .92; transform: scale(1.06); transition: opacity .42s ease, transform .42s ease; }

.vr-sound {
  min-height: 44px;
  margin-top: 14px;
  opacity: .72;
}
.vr-sound[aria-pressed="true"] { opacity: 1; }
.vr-sound[aria-pressed="true"]::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px rgba(243, 238, 234, .42);
}

.vr-invitation-form { display: grid; gap: 28px; }

@media (max-width: 900px) {
  .vr-home-copy { width: min(72%, 680px); }
  .vr-home-presence { width: min(78vw, 720px); right: -12vw; opacity: .76; }
}

@media (max-width: 640px) {
  .vr-mode-home .vr-home {
    min-height: calc(100svh - 116px);
    padding-top: 34px;
    padding-bottom: 44px;
    justify-content: flex-end;
  }
  .vr-home-copy { width: 100%; }
  .vr-home-presence {
    inset: 0 -24% auto -8%;
    width: 132%;
    height: 76svh;
    opacity: .77;
  }
  .vr-home-presence::before {
    background:
      linear-gradient(0deg, #080708 0%, rgba(8,7,8,.96) 13%, rgba(8,7,8,.46) 42%, rgba(8,7,8,.06) 70%),
      linear-gradient(90deg, rgba(8,7,8,.22), transparent 46%, rgba(8,7,8,.08));
  }
  .vr-home-mark { margin-bottom: 28px; }
  .vr-home h1 { max-width: 7.1ch; font-size: clamp(3.45rem, 17vw, 5.8rem); }
  .vr-enter { margin-top: 38px; }

  .vr-threshold, .vr-fragment { gap: 38px; }
  .vr-perceptual-frame { aspect-ratio: 4 / 5.4; max-height: 56svh; }
  .vr-fragment-image { aspect-ratio: 4 / 5.25; max-height: 54svh; }
  .vr-threshold-question h1, .vr-fragment h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .vr-presence-copy .vr-boundary-question { margin-top: 24px; font-size: clamp(1.42rem, 6vw, 1.85rem); }
  .vr-presence-experience .vr-boundary-actions { margin-top: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .vr-home-presence img,
  .vr-human-frame .vr-presence-image,
  .vr-breath-light,
  .vr-veil-motion { animation: none !important; transform: none !important; }
  html.vr-transition-closer .vr-human-frame .vr-presence-image { transform: none !important; }
}

/* The first screen only hints at the person; the threshold reveals him. */
.vr-home-presence img {
  opacity: .78;
  animation-name: vr-home-presence-breathe;
}
@keyframes vr-home-presence-breathe {
  0%   { transform: scale(1.008) translate3d(0,.18%,0); filter: brightness(.68) saturate(.78) contrast(1.02); }
  48%  { transform: scale(1.018) translate3d(-.1%,-.1%,0); filter: brightness(.76) saturate(.84) contrast(1.03); }
  100% { transform: scale(1.026) translate3d(-.18%,-.24%,0); filter: brightness(.72) saturate(.82) contrast(1.03); }
}
