/* ══════════════════════════════════════════
   STEFAN'S WEBDESIGN · Editorial Dark
   ══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:    #080808;
  --bg2:   #0f0f0f;
  --bg3:   #161616;
  --line:  rgba(255,255,255,.08);
  --muted: rgba(255,255,255,.38);
  --dim:   rgba(255,255,255,.18);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Geist', 'Inter', system-ui, sans-serif;
  /* Custom easings — Emil's strong curves, not the weak built-ins */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

html { font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(255,255,255,.12); }
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #333; }

/* ── NAV ─────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: flex-end;
  align-items: center; padding: 0 4vw; height: 68px;
  transition: background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  /* Solid-ish bg instead of backdrop-blur — blur on a fixed element
     re-samples the whole page every scroll frame and tanks FPS. */
  background: rgba(8,8,8,.92);
  border-color: var(--line);
}
.nav-links {
  display: flex; align-items: center; gap: 2.6rem;
}
.nav-links a {
  font-family: var(--serif);
  font-size: 1rem; font-weight: 400;
  letter-spacing: .04em;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: color .25s;
  /* Multi-layer shadow for readability over any background */
  text-shadow:
    0 1px 2px rgba(0,0,0,.85),
    0 0 14px rgba(0,0,0,.55);
}
.nav-links a::after {
  content: ''; position: absolute;
  left: 0; bottom: -4px; height: 1px; width: 0;
  background: rgba(255,255,255,.55);
  transition: width 240ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover { color: #fff; }
  .nav-links a:hover::after { width: 100%; }
}

/* ── HERO — single video, scroll-scrubbed ── */
#hero {
  position: relative;
  width: 100%; height: 100dvh;
  overflow: hidden;
  background: #000;
}

/* Canvas covers the entire hero — frames render here */
#flyCanvas {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  display: block;
  pointer-events: none;
}

/* Black out — final transition */
#blackOut {
  position: absolute; inset: 0; z-index: 2;
  background: #000; opacity: 0; pointer-events: none;
}

/* Hero copy — overlaid at bottom of screen */
#heroCopy {
  position: absolute; bottom: 8vh; left: 0; right: 0; z-index: 3;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.4rem;
}
.hero-eyebrow {
  display: inline-block;
  padding: 8px 22px; border-radius: 100px;
  background: rgba(0,0,0,.78);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.1),
    inset 0 -1px 0 rgba(0,0,0,.3);
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  font-weight: 400;
}
.hero-btns { display: flex; gap: .9rem; }
.hero-btns .btn-noir { min-width: 150px; justify-content: center; }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 2.2rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
}
.scroll-cue div {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: shP 2.5s ease-in-out infinite;
}
@keyframes shP {
  0%,100% { opacity:.3; transform:scaleY(1); transform-origin:top; }
  50% { opacity:1; }
}

/* ── BUTTONS ─────────────────────────────── */
.btn-noir {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 100px;
  background: rgba(0,0,0,.82);
  color: rgba(255,255,255,.95);
  font-family: var(--sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .06em; text-decoration: none; cursor: pointer;
  border: 1px solid rgba(255,255,255,.12);
  /* Liquid Glass: outer shadow + inner refraction border */
  box-shadow:
    0 8px 28px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.1),
    inset 0 -1px 0 rgba(0,0,0,.4);
  transition:
    background 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    transform 160ms var(--ease-out);
}
.btn-noir:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .btn-noir:hover {
    background: #000;
    border-color: rgba(255,255,255,.28);
    transform: translateY(-1px);
  }
}

.btn-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px; border-radius: 100px;
  background: #fff; color: #000;
  font-family: var(--sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .04em; text-decoration: none; cursor: pointer;
  border: 1px solid #fff;
  transition:
    background 220ms var(--ease-out),
    color 220ms var(--ease-out),
    transform 160ms var(--ease-out);
}
.btn-pill:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .btn-pill:hover { background: transparent; color: #fff; }
}

.btn-pill-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px; border-radius: 100px;
  background: transparent; color: rgba(255,255,255,.65);
  font-family: var(--sans); font-size: .78rem; font-weight: 400;
  letter-spacing: .04em; text-decoration: none; cursor: pointer;
  border: 1px solid rgba(255,255,255,.25);
  transition:
    border-color 220ms var(--ease-out),
    color 220ms var(--ease-out),
    transform 160ms var(--ease-out);
}
.btn-pill-ghost:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .btn-pill-ghost:hover { border-color: #fff; color: #fff; }
}

.btn-pill-light { background: #fff; color: #000; border-color: #fff; }
@media (hover: hover) and (pointer: fine) {
  .btn-pill-light:hover { background: transparent; color: #fff; }
}

/* ── ABOUT ───────────────────────────────── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100dvh;
  align-items: center;
  background: var(--bg2);
  overflow: hidden;
}

/* Giant SWD lettermark — left side, like the reference */
.about-mark-wrap {
  display: flex; flex-direction: column;
  align-items: flex-start;
  padding: 60px 0 60px 5vw;
  gap: 18px;
  will-change: transform;
}
.about-mark {
  display: flex; align-items: flex-end;
  line-height: .85;
  user-select: none;
}
.about-mark-caption {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  letter-spacing: .03em;
  color: rgba(255,255,255,.62);
  padding-left: 6px;
}
.about-mark span {
  font-family: var(--serif);
  font-weight: 300;
  color: rgba(255,255,255,.92);
  display: inline-block;
  line-height: .85;
}
.am-s { font-size: clamp(110px, 15vw, 210px); margin-right: -.04em; }
.am-w { font-size: clamp(75px,  10vw, 135px); margin-bottom: .05em; }
.am-d { font-size: clamp(110px, 15vw, 210px); margin-left: -.04em; }

.about-text {
  padding: 80px 5vw 80px 4vw;
  max-width: 520px;
}

.section-label {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 1.2rem; display: block;
}
.about-h {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.1; color: #fff;
  margin-bottom: 1.8rem;
}
.about-p {
  font-size: .95rem; font-weight: 300;
  color: var(--muted); line-height: 1.9;
  margin-bottom: 1rem;
}
.about-stats {
  display: flex; gap: 2.5rem;
  margin: 2.5rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--serif);
  font-size: 2.8rem; font-weight: 300;
  color: #fff; line-height: 1;
}
.stat-label {
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dim); margin-top: 6px;
}

/* ── LEISTUNGEN ──────────────────────────── */
#leistungen { background: var(--bg); padding: 120px 5vw; }
.section-head { margin-bottom: 60px; }
.sec-h {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 300; line-height: 1.1; color: #fff;
}
/* ── Package cards — video hero style ────── */
.pkg-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg3);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .4s cubic-bezier(.4,0,.2,1),
              border-color .4s cubic-bezier(.4,0,.2,1),
              box-shadow .4s cubic-bezier(.4,0,.2,1);
}
.pkg-card:hover {
  transform: scale(1.02);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 30px 80px rgba(0,0,0,.5),
              0 0 0 1px rgba(255,255,255,.12);
}
.pkg-premium:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,.6),
              0 0 0 1px rgba(255,255,255,.25),
              0 0 60px rgba(255,255,255,.05);
}
.pkg-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}
.pkg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(.92) saturate(1.05);
  transition: filter .4s cubic-bezier(.4,0,.2,1),
              transform .8s cubic-bezier(.4,0,.2,1);
}
.pkg-card:hover .pkg-img {
  filter: brightness(1.05) saturate(1.15);
  transform: scale(1.04);
}
.pkg-badge {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(255,255,255,.95);
  color: #000;
  font-size: .6rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
}
.pkg-content {
  padding: 22px 26px 28px;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 6px;
}
.pkg-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1;
  color: #fff;
  letter-spacing: .04em;
}
.pkg-tagline {
  font-family: var(--serif);
  font-style: italic; font-weight: 300;
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  color: rgba(255,255,255,.7);
  margin-bottom: 18px;
}
.pkg-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 22px; border-radius: 100px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-family: var(--sans);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .06em;
  transition: background .25s, border-color .25s;
}
.pkg-card:hover .pkg-cta {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
}
.pkg-cta .arr {
  display: inline-block;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.pkg-card:hover .pkg-cta .arr { transform: translateX(4px); }

/* ── Vergleichstabelle ───────────────────── */
#vergleich {
  background: var(--bg);
  padding: 100px 5vw 130px;
}
.cmp-wrap {
  max-width: 880px; margin: 0 auto;
  border-top: 1px solid var(--line);
}
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
}
.cmp-table thead th {
  text-align: left;
  padding: 22px 16px;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--dim);
  border-bottom: 1px solid var(--line);
}
.cmp-table thead .cmp-col { text-align: center; }
.cmp-table thead .cmp-col-premium { color: rgba(255,255,255,.85); }
.cmp-table tbody td {
  padding: 18px 16px;
  font-size: .92rem;
  border-bottom: 1px solid var(--line);
}
.cmp-table tbody td:first-child {
  color: rgba(255,255,255,.85);
  font-weight: 400;
}
.cmp-table tbody td:not(:first-child) {
  text-align: center;
  font-size: 1.05rem;
}
.cmp-table .ok { color: rgba(255,255,255,.92); }
.cmp-table .no { color: rgba(255,255,255,.18); }
.cmp-table tbody tr:hover td { background: rgba(255,255,255,.02); }

/* ── PROZESS ─────────────────────────────── */
#prozess { background: var(--bg2); padding: 120px 5vw; }
.steps {
  max-width: 1100px;
  display: grid; grid-template-columns: repeat(4,1fr);
  margin-top: 60px;
  border-top: 1px solid var(--line);
}
.step { padding: 36px 28px 0; border-left: 1px solid var(--line); }
.step:first-child { border-left: none; padding-left: 0; }
.step-n {
  display: block; font-size: .62rem; font-weight: 500;
  letter-spacing: .18em; color: var(--dim); margin-bottom: 1.2rem;
}
.step h4 {
  font-family: var(--serif); font-size: 1.3rem;
  font-weight: 400; color: #fff; margin-bottom: .7rem;
}
.step p { font-size: .85rem; font-weight: 300; color: var(--muted); line-height: 1.8; }

/* ── KONTAKT ─────────────────────────────── */
#kontakt { background: var(--bg); padding: 120px 5vw; }
.kontakt-wrap {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 6vw; align-items: start;
}
.kontakt-left { padding-top: 8px; }
.k-sub {
  font-size: .95rem; font-weight: 300; color: var(--muted);
  line-height: 1.85; margin: 1.5rem 0 2rem; max-width: 360px;
}
.k-email {
  display: inline-block; font-family: var(--serif);
  font-size: 1.05rem; color: rgba(255,255,255,.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
@media (hover: hover) and (pointer: fine) {
  .k-email:hover { color: #fff; border-color: rgba(255,255,255,.35); }
}
.kontakt-form { display: flex; flex-direction: column; gap: 1.2rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-g { display: flex; flex-direction: column; gap: 6px; }
.f-g label {
  font-size: .62rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dim);
}
.f-g input, .f-g select, .f-g textarea {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line); border-radius: 2px;
  padding: 12px 14px; color: #fff;
  font-family: var(--sans); font-size: .9rem; font-weight: 300;
  outline: none; width: 100%; transition: border-color .2s;
}
.f-g input::placeholder, .f-g textarea::placeholder { color: var(--dim); }
.f-g select { color: var(--muted); }
.f-g select option { background: #111; }
.f-g input:focus, .f-g select:focus, .f-g textarea:focus {
  border-color: rgba(255,255,255,.25);
}
.f-g textarea { resize: vertical; min-height: 110px; }
.send-btn { align-self: flex-start; }

/* ── FOOTER ──────────────────────────────── */
footer { background: var(--bg2); border-top: 1px solid var(--line); padding: 32px 5vw; }
.ft {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.ft-logo { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: #fff; }
.ft-c { font-size: .75rem; color: var(--dim); }
.ft-links { display: flex; gap: 1.4rem; }
.ft-links a { font-size: .75rem; color: var(--dim); text-decoration: none; transition: color .2s; }
@media (hover: hover) and (pointer: fine) {
  .ft-links a:hover { color: var(--muted); }
}

/* ── Reduced motion (accessibility) ──────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .15s !important;
    scroll-behavior: auto !important;
  }
  .scroll-cue div { animation: none !important; }
}

/* ── REVEAL ──────────────────────────────── */
.will-reveal { opacity: 0; transform: translateY(24px); }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  #about { grid-template-columns: 1fr; }
  .about-mark-wrap { padding: 50px 5vw 0; align-items: center; }
  .about-text { padding: 40px 5vw 60px; }
  .pkg-cards { grid-template-columns: 1fr; gap: 18px; }
  .steps { grid-template-columns: 1fr 1fr; border-top: none; }
  .step { border: none; padding-left: 0; padding-bottom: 28px; }
  .kontakt-wrap { grid-template-columns: 1fr; }
  .cmp-table thead th, .cmp-table tbody td { padding: 14px 8px; font-size: .85rem; }
}
@media (max-width: 600px) {
  .nav-left { display: none; }
  .f-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .ft { flex-direction: column; text-align: center; }
}

/* ── Mobile fine-tuning ──────────────────── */
@media (max-width: 600px) {
  #nav { padding: 0 5vw; height: 58px; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: .88rem; }

  /* Shorter hero on mobile so cover-crop keeps SWD centered & large */
  #hero { height: 70vh; }
  #heroCopy { bottom: 6vh; gap: 1rem; padding: 0 6vw; }
  .hero-eyebrow { font-size: .62rem; padding: 7px 16px; letter-spacing: .14em; }
  .hero-btns { flex-wrap: wrap; justify-content: center; gap: .6rem; }
  .btn-noir { padding: 11px 22px; font-size: .72rem; }
  .scroll-cue { bottom: 1.4rem; }
  .scroll-cue div { height: 38px; }

  /* Section spacing */
  #leistungen, #prozess, #kontakt { padding: 80px 5vw; }
  #vergleich { padding: 70px 5vw 90px; }
  .section-head { margin-bottom: 40px; }

  /* About */
  .about-mark-wrap { padding: 40px 5vw 0; gap: 12px; }
  .about-text { padding: 30px 5vw 50px; }
  .about-stats { gap: 1.5rem; margin: 2rem 0; padding-top: 1.5rem; }
  .stat-num { font-size: 2.2rem; }

  /* Package cards */
  .pkg-content { padding: 18px 20px 22px; }
  .pkg-title { font-size: 1.9rem; }

  /* Comparison table — keep readable */
  .cmp-table thead th,
  .cmp-table tbody td { padding: 12px 6px; font-size: .78rem; }
  .cmp-table tbody td:not(:first-child) { font-size: .95rem; }
}

/* =========================================================
   Legal pages — Impressum, Datenschutz, AGB
   Noir & editorial, matching the main site's register.
   ========================================================= */
.legal-page {
  min-height: 100vh;
  background: radial-gradient(ellipse at top, #15110d 0%, #0a0807 60%, #050403 100%);
  color: #d8d2c4;
  font-family: 'Geist', -apple-system, sans-serif;
  padding: 56px 24px 120px;
  position: relative;
  overflow: hidden;
}
.legal-page::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(201,168,76,0.06), transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(201,168,76,0.04), transparent 45%);
  pointer-events: none;
}
.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 80px;
  color: #8a8378;
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color .3s ease, gap .3s ease;
}
.legal-back:hover { color: #c9a84c; gap: 14px; }

.legal-eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 0 0 24px;
  font-weight: 500;
}
.legal-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.025em;
  color: #f5efe3;
  margin: 0 0 28px;
}
.legal-rule {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, #c9a84c, transparent);
  margin: 0 0 64px;
  border: 0;
}

.legal-section { margin: 0 0 56px; }
.legal-section:last-child { margin-bottom: 0; }

.legal-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  font-style: italic;
  color: #f5efe3;
  margin: 0 0 18px;
  letter-spacing: -.01em;
}
.legal-label {
  display: block;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #8a8378;
  margin: 0 0 10px;
  font-weight: 500;
}

.legal-page p {
  line-height: 1.75;
  font-size: 1rem;
  color: #b8b1a3;
  margin: 0 0 14px;
  font-weight: 300;
}
.legal-page p strong { color: #e8e1d2; font-weight: 500; }

.legal-page a {
  color: #c9a84c;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 1px;
  transition: border-color .3s ease, color .3s ease;
}
.legal-page a:hover { color: #e0c068; border-bottom-color: #e0c068; }

.legal-address {
  font-size: 1rem;
  line-height: 1.85;
  color: #d8d2c4;
  font-weight: 300;
}
.legal-address strong { color: #f5efe3; font-weight: 500; }

@media (max-width: 640px) {
  .legal-page { padding: 40px 20px 80px; }
  .legal-back { margin-bottom: 48px; }
  .legal-rule { margin-bottom: 48px; }
  .legal-section { margin-bottom: 44px; }
}


/* ── PRELOADER ───────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #080808;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s var(--ease-out), visibility .8s var(--ease-out);
}
#preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
body.is-loading { overflow: hidden; height: 100vh; }
.pl-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 32px; padding: 0 24px; width: min(420px, 86vw);
}
.pl-logo {
  width: 100%; max-width: 280px; height: auto;
  opacity: 0; animation: plFade 1.2s var(--ease-out) .1s forwards;
  filter: drop-shadow(0 0 24px rgba(201,168,76,.15));
}
.pl-bar {
  width: 100%; height: 1px; background: rgba(255,255,255,.08);
  overflow: hidden; opacity: 0;
  animation: plFade 1s var(--ease-out) .5s forwards;
}
.pl-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #c9a84c, #e8c878);
  transition: width .3s var(--ease-out);
}
.pl-pct {
  font-family: var(--sans); font-size: 11px; letter-spacing: .25em;
  color: rgba(255,255,255,.4); text-transform: uppercase;
  opacity: 0; animation: plFade 1s var(--ease-out) .5s forwards;
}
@keyframes plFade { to { opacity: 1; } }
