/* Demo-Portal Jamatu (JO-3292). Farben und Typografie wie im Design-Canvas. */
:root {
  --bg: #F8F4F7; --surface: #FFFFFF; --ink: #2A1422; --muted: #5A4854; --faint: #6B5A66;
  --line: #E7DCE3; --field: #F8F4F7; --field-line: #D9C9D3; --eyebrow: #8E1260;
  --logo-text: #52595a; --sel: #F6E9F1; --chip: #2A1422; --chip-ink: #FFFFFF; --icon: #8E1260;
  --btn: #4B0B35; --jbubble: #F3EDF1; --jchip: #A34100; --shadow: 0 18px 48px rgba(42, 20, 34, 0.18);
  --jgrad: linear-gradient(135deg, #FF6900 0%, #CC5200 60%, #943900 100%);
  --font: "IBM Plex Sans", "Helvetica Neue", system-ui, sans-serif;
  --display: "Sora", "IBM Plex Sans", system-ui, sans-serif;
  color-scheme: light;
}
:root[data-resolved="dark"] {
  --bg: #0A0608; --surface: #22121C; --ink: #F4ECF1; --muted: #D2C1CB; --faint: #AD99A5;
  --line: #3A2432; --field: #1B0D16; --field-line: #4E3343; --eyebrow: #F28BC6;
  --logo-text: #EDE5EA; --sel: #3A1830; --chip: #F4ECF1; --chip-ink: #160A12; --icon: #F28BC6;
  --btn: #C7197D; --jbubble: #1E1219; --jchip: #FF9A55; --shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
  color-scheme: dark;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; }
body { background: var(--bg); color: var(--ink); font: 16px/1.55 var(--font); -webkit-font-smoothing: antialiased; }
a { color: var(--eyebrow); }
h1, h2, h3 { font-family: var(--display); font-weight: 600; margin: 0; text-wrap: balance; color: var(--ink); }
p { margin: 0; }
button { font: inherit; }
code { font-family: ui-monospace, Menlo, monospace; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--eyebrow); }
.muted { color: var(--muted); }
.faint { color: var(--faint); }
:focus-visible { outline: 2px solid #C7197D; outline-offset: 2px; }
.only-dark { display: none !important; }
:root[data-resolved="dark"] .only-dark { display: block !important; }
:root[data-resolved="dark"] .only-light { display: none !important; }

/* Kopfzeile */
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 48px 8px; }
.topbar .brand { display: flex; align-items: center; gap: 18px; min-width: 0; }
.topbar .brand .divider { width: 1px; height: 24px; background: var(--line); }
.topbar .typename { font-size: 14px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.controls { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.select { position: relative; display: flex; align-items: center; }
.select > .ico { position: absolute; left: 11px; display: flex; color: var(--ink); pointer-events: none; }
.select > .chev { position: absolute; right: 11px; display: flex; color: var(--faint); pointer-events: none; }
.select select { appearance: none; -webkit-appearance: none; height: 40px; padding: 0 32px 0 35px; font: 600 13px var(--font); color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.keybtn { display: flex; align-items: center; gap: 6px; height: 40px; padding: 0 14px; font: 600 13px var(--font); color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.logo-word { display: block; }
.logo-word .letter path { fill: var(--logo-text); }
.logo-icon { display: block; }

/* Knöpfe */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 22px; font: 600 15px var(--display); color: #FFFFFF; background: var(--btn); border: 0; border-radius: 10px; text-decoration: none; cursor: pointer; }
.btn:hover { filter: brightness(1.12); }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; filter: none; }
.btn-ghost { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 22px; font: 600 15px var(--font); color: var(--ink); background: transparent; border: 1px solid var(--field-line); border-radius: 10px; text-decoration: none; cursor: pointer; }

/* Einstieg */
.start { min-height: 100vh; display: flex; flex-direction: column; }
.start main { flex-grow: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 36px; padding: 24px; }
.start .hero { display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 640px; text-align: center; }
.start h1 { font-size: 44px; line-height: 1.12; letter-spacing: -0.01em; }
.start .lead { font-size: 18px; color: var(--muted); }
.login { display: flex; flex-direction: column; gap: 10px; width: 460px; max-width: 100%; padding: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; }
.login label { font-size: 14px; font-weight: 600; }
.login .row { display: flex; gap: 8px; }
.login input { flex-grow: 1; min-width: 0; height: 48px; padding: 0 14px; font: 15px var(--font); color: var(--ink); background: var(--field); border: 1px solid var(--field-line); border-radius: 10px; }
.login .error { color: #C7197D; font-weight: 600; font-size: 14px; }
.login .hint { font-size: 13px; color: var(--faint); }
.products { list-style: none; margin: 0 auto 32px; padding: 0 24px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; max-width: 640px; width: 100%; }
.products li { display: flex; gap: 10px; align-items: flex-start; }
.products .dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.products b { display: block; font-size: 15px; }
.products span { font-size: 14px; color: var(--faint); }

/* Logo-Animation (nur Einstieg) */
.intro .logo-word .dot { transform-box: fill-box; transform-origin: center; opacity: 0; animation: dotPop .55s cubic-bezier(.2,.9,.3,1.4) forwards; }
.intro .logo-word .dots { transform-box: fill-box; transform-origin: center; animation: orbit 1.5s cubic-bezier(.5,0,.2,1) .1s both; }
.intro .logo-word .letter { opacity: 0; transform-box: fill-box; animation: letterUp .5s ease-out forwards; }
.intro .reveal { opacity: 0; animation: fadeUp .7s ease-out forwards; }
.intro .r1 { animation-delay: 2s; } .intro .r2 { animation-delay: 2.2s; } .intro .r3 { animation-delay: 2.4s; }
@keyframes dotPop { 0% { opacity: 0; transform: scale(0); } 100% { opacity: 1; transform: scale(1); } }
@keyframes orbit { 0% { transform: rotate(-200deg); } 100% { transform: rotate(0); } }
@keyframes letterUp { 0% { opacity: 0; transform: translateY(14px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { 0% { opacity: 0; transform: translateY(10px); } 100% { opacity: 1; transform: translateY(0); } }

/* Betriebstyp */
.page { max-width: 1180px; margin: 0 auto; padding: 16px 48px 48px; }
.types-head { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 28px; }
.types-head h1 { font-size: 40px; line-height: 1.12; }
.types-head p { font-size: 18px; color: var(--muted); max-width: 640px; }
.tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.tile { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; min-height: 168px; padding: 20px; text-align: left; color: var(--ink); background: var(--surface); border: 2px solid var(--line); border-radius: 16px; cursor: pointer; }
.tile:hover { border-color: var(--faint); }
.tile[aria-pressed="true"] { border-color: var(--btn); background: var(--sel); }
.tile .ti { display: flex; color: var(--icon); }
.tile b { font: 600 18px var(--display); }
.tile span { font-size: 14px; line-height: 1.45; color: var(--faint); }
.tile .check { position: absolute; top: 14px; right: 14px; width: 26px; height: 26px; border-radius: 50%; background: var(--btn); color: #FFFFFF; display: none; align-items: center; justify-content: center; }
.tile[aria-pressed="true"] .check { display: flex; }
.types-foot { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-top: 20px; margin-top: 24px; border-top: 1px solid var(--line); font-size: 14px; color: var(--faint); }

/* Journey */
.journey { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 48px; padding: 12px 48px 64px; max-width: 1440px; margin: 0 auto; }
.route { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 16px; align-self: start; }
.route ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.route a { display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: 12px; border: 1px solid var(--line); text-decoration: none; color: var(--ink); }
.route a[aria-current="step"] { background: var(--sel); border-color: var(--btn); }
.route .num { width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; color: #FFFFFF; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.route .lbl { display: flex; flex-direction: column; gap: 2px; }
.route .lbl b { font-size: 15px; }
.route .lbl span { font-size: 13px; color: var(--faint); }
.route .state { margin-left: auto; font-size: 12px; font-weight: 600; color: var(--faint); }
.route a[aria-current="step"] .state { color: var(--eyebrow); }
.progress { display: none; flex-direction: column; gap: 6px; }
.progress .bars { display: flex; gap: 6px; }
.progress .bars a { flex-grow: 1; display: flex; align-items: center; min-height: 24px; }
.progress .bars span { width: 100%; height: 4px; border-radius: 2px; background: var(--line); }
.progress .bars .on span { background: var(--btn); }
.progress small { font-size: 12.5px; color: var(--faint); }
.content { display: flex; flex-direction: column; gap: 22px; max-width: 900px; min-width: 0; }
.hero-row { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 32px; align-items: start; }
.hero-text { display: flex; flex-direction: column; gap: 12px; }
.hero-text h1 { font-size: 38px; line-height: 1.12; letter-spacing: -0.01em; }
.hero-text p { font-size: 17px; color: var(--muted); }
.lead-m { display: none; }
.shot { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--surface); height: 230px; }
.shot img { display: block; width: 100%; height: 100%; object-fit: cover; }
.phone { display: flex; justify-content: center; }
.phone .frame { width: 190px; height: 400px; border: 8px solid var(--chip); border-radius: 30px; overflow: hidden; background: #000000; box-shadow: var(--shadow); }
.phone .frame img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.card { display: flex; flex-direction: column; gap: 6px; padding: 16px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); }
.card b { font: 600 16px var(--display); }
.card span { font-size: 14px; line-height: 1.5; color: var(--muted); }
.panel { display: flex; flex-direction: column; gap: 14px; padding: 20px; border-radius: 16px; border: 1px solid var(--line); background: var(--surface); }
.panel h2 { font-size: 18px; }
.steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; counter-reset: s; }
.steps li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.steps li::before { counter-increment: s; content: counter(s); width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; border: 2px solid var(--btn); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.creds { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 13px; color: var(--faint); }
.creds code { font-size: 13px; color: var(--ink); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 6px; min-height: 36px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); font-size: 13px; font-weight: 600; text-decoration: none; }
.cta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.qr { display: flex; flex-direction: column; gap: 12px; padding: 20px; border-radius: 16px; background: var(--sel); }
.qr h2 { font-size: 18px; }
.qr .grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.qr .tile-qr { display: flex; gap: 14px; align-items: center; padding: 12px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); }
.qr img { width: 120px; height: 120px; border-radius: 8px; background: #FFFFFF; flex-shrink: 0; }
.qr b { display: block; font: 600 16px var(--display); }
.qr span { font-size: 14px; color: var(--muted); }
.web { display: flex; flex-direction: column; gap: 12px; }
.web h2 { font-size: 18px; }
.web .wcard { display: flex; flex-direction: column; border-radius: 14px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); }
.web .wcard img { display: block; width: 100%; height: 150px; object-fit: cover; background: #1B1B2B; }
.web .wbody { display: flex; flex-direction: column; gap: 8px; padding: 14px 16px 16px; font-size: 13.5px; line-height: 1.45; }
.web .wbody b.t { font: 600 16px var(--display); }
.web .wbody .muted strong { color: var(--ink); }
.web .links { display: flex; flex-wrap: wrap; gap: 8px 16px; padding-top: 4px; font-size: 14px; font-weight: 600; }

/* Beispiel-Website */
.site { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: 48px; padding: 12px 48px 48px; max-width: 1440px; margin: 0 auto; }
.site .side { display: flex; flex-direction: column; gap: 16px; }
.site h1 { font-size: 34px; line-height: 1.15; }
.facts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.facts li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.facts li::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--btn); margin-top: 8px; flex-shrink: 0; }
.browser { display: flex; flex-direction: column; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: #FFFFFF; min-height: 640px; }
.browser .bar { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: #ECEAEB; border-bottom: 1px solid #DAD6D8; }
.browser .lights { display: flex; gap: 6px; }
.browser .lights i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.browser .url { flex-grow: 1; height: 26px; border-radius: 7px; background: #FFFFFF; display: flex; align-items: center; padding: 0 12px; font-size: 13px; color: #5C5357; }
.browser .sitehead { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 28px; background: #FFFFFF; border-bottom: 1px solid #EEE9EB; }
.browser .sitehead b { font: 700 17px var(--display); color: #1F1A1D; }
.browser nav { display: flex; gap: 22px; flex-wrap: wrap; }
.browser nav span { font-size: 14px; color: #5C5357; padding-bottom: 4px; border-bottom: 2px solid transparent; }
.browser nav span.on { color: #1F1A1D; font-weight: 700; border-color: #C2411F; }
.browser .embed { position: relative; flex-grow: 1; background: #11111B; }
.browser .embed img { display: block; width: 100%; height: 100%; min-height: 540px; object-fit: cover; object-position: top; }
.browser .tag { position: absolute; top: 12px; right: 12px; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,0.92); font-size: 12px; font-weight: 600; color: #1F1A1D; }

/* Zugänge-Panel */
.z-backdrop { position: fixed; inset: 0; background: rgba(10, 6, 8, 0.45); z-index: 40; }
.z-panel { position: fixed; top: 0; right: 0; bottom: 0; width: 440px; max-width: 100%; z-index: 41; display: flex; flex-direction: column; background: var(--bg); box-shadow: var(--shadow); }
.z-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 16px 12px 20px; border-bottom: 1px solid var(--line); }
.z-head b { display: block; font: 600 20px var(--display); }
.z-body { flex-grow: 1; min-height: 0; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; padding: 16px; }
.z-sec { display: flex; flex-direction: column; padding: 14px 16px 6px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); }
.z-sec h3 { display: flex; align-items: center; gap: 8px; font-size: 16px; margin-bottom: 8px; }
.z-sec h3 i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.z-row, .z-link { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 0; border-top: 1px solid var(--line); text-decoration: none; }
.z-row small, .z-link small { display: block; font-size: 12.5px; color: var(--faint); }
.z-row code { font-size: 14px; color: var(--ink); word-break: break-all; }
.z-link b { font-size: 14px; color: var(--ink); }
.z-row button { flex-shrink: 0; min-width: 88px; height: 36px; font: 600 13px var(--font); color: var(--ink); background: var(--field); border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
.iconbtn { width: 44px; height: 44px; border: 0; border-radius: 10px; background: transparent; color: var(--ink); display: flex; align-items: center; justify-content: center; cursor: pointer; }

/* Jonida */
.j-avatar { flex-shrink: 0; border-radius: 50%; background: var(--jgrad); display: flex; align-items: center; justify-content: center; }
.j-avatar svg { overflow: visible; }
.jstar { fill: #FFFFFF; transform-box: fill-box; transform-origin: center; animation: jTwinkle 3.6s ease-in-out infinite; }
.jstar.s1 { animation-duration: 4.4s; animation-delay: .9s; }
.jstar.s2 { animation-delay: 1.8s; }
@keyframes jTwinkle { 0%, 100% { opacity: .5; transform: scale(.88); } 50% { opacity: 1; transform: scale(1.08); } }
.j-launch { position: fixed; right: 24px; bottom: 24px; z-index: 30; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.j-fab { position: relative; width: 60px; height: 60px; padding: 0; border: 0; border-radius: 50%; background: transparent; box-shadow: var(--shadow); cursor: pointer; }
.j-fab .badge { position: absolute; top: 2px; right: 2px; width: 12px; height: 12px; border-radius: 50%; background: #FF6900; border: 2px solid var(--bg); }
.j-bubble { position: relative; max-width: 290px; padding: 14px 44px 14px 14px; border-radius: 18px 18px 4px 18px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); font-size: 14px; line-height: 1.45; }
.j-bubble .x { position: absolute; top: 4px; right: 4px; width: 36px; height: 36px; }
.j-panel { position: fixed; right: 24px; bottom: 24px; z-index: 31; width: 380px; height: 560px; max-height: calc(100vh - 48px); display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.j-head { display: flex; align-items: center; gap: 12px; padding: 14px 14px 14px 16px; border-bottom: 1px solid var(--line); }
.j-head b { display: block; font: 600 16px var(--display); }
.j-head small { font-size: 12.5px; color: var(--faint); }
.j-msgs { flex-grow: 1; min-height: 0; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; padding: 16px; }
.j-msg { max-width: 88%; padding: 10px 14px; font-size: 14px; line-height: 1.5; white-space: pre-line; }
.j-msg.j { align-self: flex-start; border-radius: 16px 16px 16px 4px; background: var(--jbubble); }
.j-msg.u { align-self: flex-end; border-radius: 16px 16px 4px 16px; background: var(--btn); color: #FFFFFF; }
.j-typing { align-self: flex-start; display: flex; gap: 4px; padding: 12px 14px; border-radius: 16px 16px 16px 4px; background: var(--jbubble); }
.j-typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--faint); animation: jBounce 1.2s ease-in-out infinite; }
.j-typing i:nth-child(2) { animation-delay: .15s; } .j-typing i:nth-child(3) { animation-delay: .3s; }
@keyframes jBounce { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }
.j-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.j-chips button { min-height: 36px; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); color: var(--jchip); font: 600 13px var(--font); cursor: pointer; text-align: left; }
.j-form { display: flex; gap: 8px; align-items: center; padding: 12px; border-top: 1px solid var(--line); }
.j-form input { flex-grow: 1; min-width: 0; height: 44px; padding: 0 14px; font: 14px var(--font); color: var(--ink); background: var(--field); border: 1px solid var(--field-line); border-radius: 22px; }
.j-send { width: 44px; height: 44px; flex-shrink: 0; border: 0; border-radius: 50%; background: var(--jgrad); color: #FFFFFF; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.j-note { margin: 0; padding: 0 16px 12px; font-size: 11.5px; color: var(--faint); }

@media (max-width: 900px) {
  .topbar { padding: 16px 16px 4px; }
  .topbar .keybtn span, .topbar .brand .divider, .topbar .typename { display: none; }
  .keybtn { padding: 0 11px; }
  .start h1 { font-size: 28px; }
  .start main { align-items: stretch; justify-content: flex-start; gap: 24px; padding: 16px 20px; }
  .start .hero { align-items: flex-start; text-align: left; }
  .start .lead { font-size: 16px; }
  .login .row { flex-direction: column; }
  .products { grid-template-columns: 1fr; padding: 0 20px 110px; gap: 12px; }
  .page { padding: 8px 16px 110px; }
  .types-head h1 { font-size: 26px; }
  .types-head p { display: none; }
  .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .tile { min-height: 150px; padding: 14px; }
  .tile b { font-size: 15px; } .tile span { font-size: 12.5px; }
  .types-foot { flex-direction: column; align-items: stretch; padding-right: 0; }
  .types-foot .btn { width: 100%; }
  .journey { grid-template-columns: 1fr; gap: 16px; padding: 8px 16px 110px; }
  .route { display: none; }
  .progress { display: flex; }
  .hero-row { grid-template-columns: 1fr; gap: 16px; }
  .hero-text h1 { font-size: 26px; }
  .lead-d { display: none; } .lead-m { display: block; }
  .shot { height: 210px; }
  .phone .frame { width: 100%; height: 210px; border-width: 1px; border-color: var(--line); border-radius: 14px; }
  .cards, .web .grid { grid-template-columns: 1fr !important; }
  .qr, .web .example { display: none !important; }
  .cta { flex-direction: column; align-items: stretch; }
  .site { grid-template-columns: 1fr; padding: 8px 16px 110px; gap: 24px; }
  .browser { min-height: 0; }
  .j-launch { right: 16px; bottom: 16px; }
  .j-panel { inset: 40px 0 0 0; width: auto; height: auto; max-height: none; border-radius: 20px 20px 0 0; right: 0; bottom: 0; }
  .z-panel { top: 40px; width: 100%; border-radius: 20px 20px 0 0; overflow: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .intro .logo-word .dot, .intro .logo-word .letter, .intro .logo-word .dots, .intro .reveal, .jstar, .j-typing i { animation: none; opacity: 1; }
}
.brand > a { display: flex; }
.brand > a.only-mobile { display: none; }
@media (max-width: 900px) { .brand > a.only-desktop { display: none; } .brand > a.only-mobile { display: flex; } }
.j-link { display: block; margin-top: 8px; font-weight: 600; }
h1[tabindex="-1"]:focus { outline: none; }
#view img { cursor: zoom-in; }
.zoom { position: fixed; inset: 0; z-index: 60; display: flex; align-items: center; justify-content: center; padding: 56px 16px 16px; background: rgba(10, 6, 8, 0.86); cursor: zoom-out; }
.zoom img { display: block; max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; border-radius: 12px; background: #FFFFFF; box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5); }
.zoom-close { position: absolute; top: 8px; right: 8px; color: #FFFFFF; }
.zoom-close:hover { background: rgba(255, 255, 255, 0.12); }
.linkbtn { padding: 0; border: 0; background: none; font: inherit; color: var(--eyebrow); text-decoration: underline; cursor: pointer; }
.login input#code { letter-spacing: 0.3em; font-family: ui-monospace, Menlo, monospace; font-size: 18px; }
