/* ==========================================================================
   OEDER INVEST — SPLITSCREEN CHOICE PAGE v1
   Premium cinematic entry with strict left/right zones + page transitions
   ========================================================================== */

:root {
  --ink-deep: #0A0A0B;
  --ink-soft: #0E0E10;
  --ink-line: rgba(245, 242, 236, 0.08);
  --paper: #F5F2EC;
  --paper-mute: rgba(245, 242, 236, 0.55);
  --paper-dim: rgba(245, 242, 236, 0.3);
  --gold: #C9A961;
  --gold-deep: #9D7E3B;
  --crown-green: #006039;
  --crown-green-mid: #0E7A4A;
  --crown-green-bright: #1FA163;
  --bordeaux: #9B2A28;
  --bordeaux-deep: #7B1818;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter Tight', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-premium: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-dramatic: cubic-bezier(0.83, 0, 0.17, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ink-deep);
  color: var(--paper);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* LOADER */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0s 0.6s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-content { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.loader-brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 500;
  font-size: 28px; color: var(--paper); letter-spacing: 0.02em;
}
.loader-word { display: inline-block; }
.loader-divider { display: inline-block; width: 1px; height: 0.78em; background: var(--gold); }
.loader-bar { width: 120px; height: 1px; background: rgba(245,242,236,0.1); overflow: hidden; }
.loader-fill { width: 0; height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); animation: loaderFill 1.4s var(--ease-premium) forwards; }
@keyframes loaderFill { to { width: 100%; } }

/* ==========================================================================
   PAGE TRANSITION — Pixeldust Canvas + Subtle Dark Veil
   ========================================================================== */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}
.page-transition.is-active {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

/* Dark vignette: very subtle, just slightly darkens the screen */
.pt-veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ox, 50%) var(--oy, 50%),
    transparent 0%,
    rgba(10, 10, 11, 0.3) 50%,
    rgba(10, 10, 11, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-premium);
}
.page-transition.is-active .pt-veil {
  opacity: 1;
}

/* Canvas for pixeldust particles */
.pt-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Loading-pulse: tiny gold ring grows from click origin */
.pt-pulse {
  position: absolute;
  top: var(--oy, 50%);
  left: var(--ox, 50%);
  width: 0;
  height: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  box-shadow: 0 0 30px rgba(201, 169, 97, 0.4);
}
.page-transition.is-active .pt-pulse {
  animation: ptPulse 1.1s var(--ease-dramatic) forwards;
}
@keyframes ptPulse {
  0% {
    width: 0; height: 0;
    opacity: 1;
    border-width: 2px;
  }
  100% {
    width: 220vmax; height: 220vmax;
    opacity: 0;
    border-width: 0;
  }
}

/* CHOICE LAYOUT */
.choice {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.choice-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  pointer-events: none;
}
.choice-nav > * { pointer-events: auto; }

.brand-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; letter-spacing: 0.02em; line-height: 1;
  color: var(--paper);
}
.brand-word { display: inline-block; }
.brand-divider { display: inline-block; width: 1px; height: 0.78em; background: var(--gold); }

.choice-portal-link {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.25em;
  color: var(--paper-mute); text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--ink-line); border-radius: 24px;
  transition: all 0.3s var(--ease);
}
.choice-portal-link:hover { color: var(--gold); border-color: rgba(201,169,97,0.4); }

.choice-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  text-align: center;
  pointer-events: none;
  width: 100%;
  max-width: 700px;
  padding: 0 24px;
  animation: choiceCenterIn 1s var(--ease-premium) 0.4s both;
}
@keyframes choiceCenterIn {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 20px)); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
.choice-eyebrow {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.35em; color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px; padding: 6px 14px;
  background: rgba(10,10,11,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,97,0.25);
  border-radius: 20px;
}
.choice-question {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 7vw, 96px); line-height: 1;
  color: var(--paper); letter-spacing: -0.015em;
  text-shadow: 0 0 40px rgba(10,10,11,0.9), 0 0 80px rgba(10,10,11,0.7);
}
.choice-question em {
  font-style: italic; font-weight: 300;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.choice-sub {
  font-size: 16px; color: var(--paper-mute);
  margin-top: 20px;
  text-shadow: 0 0 20px rgba(10,10,11,0.9);
}

/* THE SPLIT — strict zones */
.split {
  position: relative; flex: 1;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
}
.half {
  position: relative; flex: 1;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 80px 64px 120px;
  cursor: pointer;
  overflow: hidden;
  transition: flex 0.8s var(--ease-premium), filter 0.5s var(--ease);
  z-index: 1;
}
.split:hover .half:not(:hover) {
  flex: 0.55;
  filter: brightness(0.45) saturate(0.7);
}
.split:hover .half:hover {
  flex: 1.45;
  z-index: 5;
}

.half-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

/* ============================================
   INVEST BRAND VISUALS — Folio + Vault + Starfield
   ============================================ */

/* LEFT — Investor Search */
.half-bg-search {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0, 96, 57, 0.18), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 169, 97, 0.06), transparent 50%),
    linear-gradient(135deg, var(--ink-deep) 0%, #081210 100%);
}
.search-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 96, 57, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 96, 57, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.45;
  mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 75%);
}
.search-glow {
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 30%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 96, 57, 0.28), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  transition: all 0.8s var(--ease);
}
.half-left:hover .search-glow {
  background: radial-gradient(circle, rgba(0, 96, 57, 0.42), transparent 65%);
  transform: translate(-50%, -50%) scale(1.15);
}

/* RIGHT — Partner Login */
.half-bg-partner {
  background:
    radial-gradient(ellipse at 70% 40%, rgba(15, 25, 50, 0.55), transparent 70%),
    linear-gradient(135deg, #050608 0%, #0A0A0B 100%);
}
.starfield {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.partner-glow {
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; left: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 169, 97, 0.10), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  transition: all 0.8s var(--ease);
}
.half-right:hover .partner-glow {
  background: radial-gradient(circle, rgba(201, 169, 97, 0.20), transparent 70%);
  transform: translate(-50%, -50%) scale(1.15);
}

/* HOVER ZONES — strict, never overlap center text */
.half-visual {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.half-visual-search {
  left: 4%;
  transform: translateY(-50%) translateX(-30px);
}
.half-visual-partner {
  right: 4%;
  transform: translateY(-50%) translateX(30px);
}
.half-left:hover .half-visual-search,
.half-right:hover .half-visual-partner {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ============= FOLIO (left) ============= */
.folio {
  position: relative;
  width: 320px;
  max-width: 100%;
  background: linear-gradient(180deg, #F5F2EC 0%, #EDE8DC 100%);
  color: #181818;
  border-radius: 2px;
  padding: 26px 28px 28px;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.7),
    0 12px 24px -8px rgba(0, 96, 57, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: rotate(-2deg);
  transition: transform 0.6s var(--ease-premium);
}
.half-left:hover .folio {
  transform: rotate(-1deg) translateY(-4px);
}
.folio-header {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #5A5A5A;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.folio-stamp {
  color: var(--crown-green);
  font-weight: 600;
  letter-spacing: 0.4em;
}
.folio-body { display: flex; flex-direction: column; gap: 8px; }
.folio-eyebrow {
  height: 3px; width: 40px;
  background: var(--gold-deep);
  margin-bottom: 6px;
}
.folio-title-1 { height: 12px; width: 85%; background: #181818; border-radius: 1px; }
.folio-title-2 { height: 12px; width: 60%; background: linear-gradient(90deg, #181818, var(--crown-green)); border-radius: 1px; }
.folio-meta { display: flex; flex-direction: column; gap: 4px; margin-top: 10px; }
.folio-meta-row { height: 4px; width: 100%; background: rgba(0,0,0,0.18); border-radius: 1px; }
.folio-meta-row.short { width: 65%; }
.folio-divider { height: 1px; background: rgba(0,0,0,0.12); margin: 14px 0 12px; }
.folio-stats { display: flex; gap: 20px; }
.folio-stat { display: flex; flex-direction: column; gap: 2px; }
.folio-stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--crown-green);
  letter-spacing: -0.01em;
}
.folio-stat-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.3em;
  color: #5A5A5A;
  text-transform: uppercase;
}
.folio-seal {
  position: absolute;
  right: 22px; bottom: 22px;
  color: var(--gold-deep);
  opacity: 0.55;
  font-style: italic;
}
.folio-stack {
  position: absolute;
  width: 320px;
  height: 220px;
  background: linear-gradient(180deg, #ECE7DA, #DDD8CB);
  border-radius: 2px;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.5);
  z-index: -1;
}
.folio-stack-1 {
  top: 14px; left: 14px;
  transform: rotate(3deg);
  opacity: 0.85;
}
.folio-stack-2 {
  top: 26px; left: 26px;
  transform: rotate(6deg);
  opacity: 0.55;
}

/* ============= VAULT (right) ============= */
.vault {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
}
.vault-ring {
  position: absolute;
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: 50%;
  animation: vaultRing 6s linear infinite;
}
.vault-ring-outer {
  width: 220px; height: 220px;
  border-color: rgba(201, 169, 97, 0.35);
}
.vault-ring-inner {
  width: 160px; height: 160px;
  border-color: rgba(201, 169, 97, 0.55);
  animation-direction: reverse;
  animation-duration: 8s;
}
.vault-ring::before,
.vault-ring::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
}
.vault-ring-outer::before { top: -3px; left: 50%; transform: translateX(-50%); }
.vault-ring-outer::after { bottom: -3px; left: 50%; transform: translateX(-50%); }
.vault-ring-inner::before { top: 50%; left: -3px; transform: translateY(-50%); }
.vault-ring-inner::after { top: 50%; right: -3px; transform: translateY(-50%); }
@keyframes vaultRing {
  to { transform: rotate(360deg); }
}
.vault-lock {
  position: relative;
  width: 80px; height: 80px;
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.12), rgba(201, 169, 97, 0.04));
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  box-shadow:
    0 0 30px rgba(201, 169, 97, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 2;
}
.vault-pulse {
  position: absolute;
  width: 100px; height: 100px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: vaultPulse 2.4s ease-out infinite;
}
@keyframes vaultPulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============= LOGIN PREVIEW (right) ============= */
.login-preview {
  text-align: center;
  display: flex; flex-direction: column; gap: 14px;
  align-items: center;
}
.login-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}
.login-field {
  width: 240px;
  padding: 14px 16px;
  background: rgba(245, 242, 236, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: 2px;
  display: flex; justify-content: center;
}
.login-dots { display: flex; gap: 8px; }
.login-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 169, 97, 0.6);
  animation: loginDot 1.6s ease-in-out infinite;
}
.login-dots span:nth-child(1) { animation-delay: 0s; }
.login-dots span:nth-child(2) { animation-delay: 0.15s; }
.login-dots span:nth-child(3) { animation-delay: 0.3s; }
.login-dots span:nth-child(4) { animation-delay: 0.45s; }
.login-dots span:nth-child(5) { animation-delay: 0.6s; }
.login-dots span:nth-child(6) { animation-delay: 0.75s; }
@keyframes loginDot {
  0%, 100% { opacity: 0.3; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1); }
}
.login-hint {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--paper-dim);
  text-transform: uppercase;
}

/* HOVER STATE ON HALVES — half titles use Invest accent on left */
.half-left .half-num,
.half-left .half-meta { color: var(--gold); }
.half-left .half-cta { color: var(--paper); }
.half-left:hover .half-cta { color: var(--crown-green-bright); }

.half-right .half-num,
.half-right .half-meta { color: var(--gold); }
.half-right .half-cta { color: var(--paper); }
.half-right:hover .half-cta { color: var(--gold); }

/* Choice-footnote */
.choice-footnote {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--paper-dim);
  text-transform: uppercase;
  display: flex;
  gap: 12px;
  align-items: center;
  pointer-events: none;
}
.footnote-sep { color: var(--gold-deep); }

/* HALF LABEL */
.half-label {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; gap: 14px;
  max-width: 380px;
  transition: transform 0.6s var(--ease-premium);
}
.half-left .half-label { align-items: flex-start; text-align: left; }
.half-right .half-label { align-items: flex-end; text-align: right; margin-left: auto; }
.half-num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.4em; color: var(--gold);
}
.half-meta {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.3em; color: var(--paper-mute);
  text-transform: uppercase;
}
.half-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px); line-height: 1;
  color: var(--paper); letter-spacing: -0.01em;
  margin-top: 8px;
}
.half-title em { font-style: italic; font-weight: 300; }
.half-left .half-title em {
  background: linear-gradient(135deg, var(--crown-green-bright), var(--crown-green));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.half-right .half-title em {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.half-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.3em; color: var(--paper);
  text-transform: uppercase; margin-top: 16px;
  padding: 12px 0; opacity: 0.5;
  transition: all 0.4s var(--ease);
}
.half:hover .half-cta { opacity: 1; }
.cta-arrow { transition: transform 0.4s var(--ease); }
.half:hover .cta-arrow { transform: translateX(8px); }

/* DIVIDER */
.split-divider {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  z-index: 4;
  pointer-events: none;
  transform: translateX(-50%);
  transition: left 0.7s var(--ease-premium);
}
.divider-line {
  position: absolute; inset: 0; width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
}
.divider-diamond {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 10px rgba(201,169,97,0.5));
  transition: transform 0.6s var(--ease-premium);
}
.split:hover .divider-diamond { transform: translate(-50%, -50%) rotate(90deg) scale(1.2); }
.divider-or {
  position: absolute; bottom: 38%; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.5em; color: var(--gold);
  background: var(--ink-deep); padding: 4px 10px;
}
.split.hover-left .split-divider { left: 58%; }
.split.hover-right .split-divider { left: 42%; }

/* BEIDES PILL */
.choice-both {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(10,10,11,0.9), rgba(20,8,10,0.95));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,97,0.3);
  border-radius: 40px;
  transition: all 0.4s var(--ease);
  animation: choiceBothIn 1s var(--ease-premium) 1s both;
}
@keyframes choiceBothIn {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.choice-both:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(20,12,6,0.95), rgba(30,16,8,0.98));
  box-shadow: 0 0 0 4px rgba(201,169,97,0.1), 0 0 40px rgba(201,169,97,0.3);
  transform: translateX(-50%) translateY(-2px);
}
.both-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--ink-deep);
}
.both-text {
  font-family: var(--font-display); font-size: 17px;
  color: var(--paper);
}
.both-text em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.both-meta {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.25em; color: var(--paper-mute);
  padding-left: 14px;
  border-left: 1px solid var(--ink-line);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .choice-nav { padding: 20px 24px; }
  .half { padding: 60px 32px 100px; }
  .half-visual-search { width: 42%; left: 4%; max-width: 360px; }
  .half-visual-partner { width: 32%; right: 6%; max-width: 280px; }
  .folio { width: 280px; padding: 22px; }
  .folio-stack { width: 280px; height: 200px; }
}

@media (max-width: 768px) {
  /* Container: lock to viewport, no scroll */
  html, body {
    overflow-x: hidden;
  }
  .choice {
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }
  .choice-nav { padding: 20px 22px; }
  .choice-portal-link { font-size: 9px; padding: 8px 14px; letter-spacing: 0.2em; }

  /* Question: ABSOLUTELY centered on the divider line */
  .choice-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 480px;
    padding: 0 28px;
    z-index: 50;
    pointer-events: none;
    text-align: center;
  }
  /* Eyebrow "PREMIUM WEB & APP DEVELOPMENT" hidden on mobile */
  .choice-eyebrow { display: none; }
  .choice-question {
    font-size: clamp(28px, 7.5vw, 40px);
    line-height: 1.05;
  }
  .choice-sub {
    font-size: 12px;
    margin-top: 14px;
    opacity: 0.6;
  }

  /* Split: vertical stack */
  .split {
    flex-direction: column;
    min-height: 100vh;
    height: 100vh;
    width: 100%;
  }
  .half {
    flex: 1 1 50%;
    min-height: 0;
    width: 100%;
    padding: 100px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    overflow: hidden;
    position: relative;
  }
  .half-left {
    padding: 110px 28px 110px;
    justify-content: flex-start !important;
  }
  .half-right {
    padding: 110px 28px 130px;
    justify-content: flex-end !important;
  }
  .split:hover .half:not(:hover) { flex: 1 1 50%; filter: none; }
  .split:hover .half:hover { flex: 1 1 50%; }

  /* Common label styles */
  .half-label {
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 100%;
    gap: 12px;
    width: 100%;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
  }
  .half-left .half-label,
  .half-right .half-label {
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  /* WEBSITE HALF (top) — natural order: 01 → meta → title */
  .half-left .half-num { order: 1; }
  .half-left .half-meta { order: 2; }
  .half-left .half-title { order: 3; }

  /* APP HALF (bottom) — REVERSED order: title FIRST, then meta, then number */
  .half-right .half-title { order: 1; }
  .half-right .half-meta { order: 2; }
  .half-right .half-num { order: 3; }

  /* Typography */
  .half-num {
    font-size: 12px;
    letter-spacing: 0.5em;
    opacity: 0.9;
  }
  .half-meta {
    font-size: 9px;
    letter-spacing: 0.35em;
    opacity: 0.55;
  }
  .half-title {
    font-size: clamp(30px, 7.5vw, 40px);
    line-height: 1.08;
    margin-top: 0;
    letter-spacing: -0.01em;
  }

  /* CTA "Pfad öffnen" — HIDDEN on mobile, not needed since whole half is clickable */
  .half-cta { display: none !important; }

  /* Visuals HIDDEN on mobile */
  .half-visual { display: none !important; }
  .web-code-stream { display: none !important; }

  /* Choice-Footnote auf Mobile dezent zentrieren */
  .choice-footnote {
    bottom: 16px;
    font-size: 8px;
    letter-spacing: 0.18em;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: calc(100% - 40px);
    text-align: center;
  }

  /* Divider line — exact middle */
  .split-divider {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
    z-index: 4;
  }
  .divider-line {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--gold) 35%, var(--gold) 65%, transparent 95%);
    opacity: 0.35;
  }
  .divider-diamond { display: none; }
  .divider-or { display: none; }
  .split.hover-left .split-divider,
  .split.hover-right .split-divider { left: 0; top: 50%; }

  /* "Ich brauche beides" — comfortable distance from bottom */
  .choice-both {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 60;
    padding: 12px 20px;
    gap: 12px;
    max-width: calc(100% - 40px);
  }
  .choice-both:hover { transform: translateX(-50%) translateY(-2px); }
  .both-text { font-size: 13px; }
  .both-meta { font-size: 8px; padding-left: 12px; letter-spacing: 0.22em; }
}

@media (max-width: 480px) {
  .choice-question { font-size: clamp(26px, 8vw, 34px); }
  .choice-sub { font-size: 11px; }
  .half-title { font-size: clamp(26px, 7.5vw, 32px); }
  .both-meta { display: none; }
  .both-text { font-size: 12px; }
  .half-left { padding: 100px 24px 100px; }
  .half-right { padding: 100px 24px 120px; }
}

/* Brand logo as link in splitscreen nav */
.brand-logo-link {
  text-decoration: none;
  color: var(--paper);
  transition: opacity 0.3s var(--ease);
}
.brand-logo-link:hover { opacity: 0.75; }
