/* ============================================================
   Panovo — panovo.myn.to
   Design language: Apple HIG × Minimalism × Glassmorphism × Bento
   8pt spacing grid · 12-column layout · mobile-first
   ============================================================ */

:root {
  /* Brand palette (derived from the app: teal #2AB8C6, mesh-gradient sky) */
  --paper: #f6fafb;
  --paper-2: #eef5f7;
  --ink: #0c2228;
  --ink-2: #43626b;
  --teal: #0e98a6;        /* accessible teal for text/links on light bg */
  --teal-deep: #0a7280;
  --teal-bright: #2ab8c6; /* the app's hotspot teal — fills, glows */
  --amber: #e8a13d;       /* horizon glint — small accents only */
  --indigo: #5560a4;
  --dark: #08181d;
  --dark-2: #0c2228;
  --on-dark: #e8f4f6;
  --on-dark-2: #9dbcc4;

  --stroke: rgba(12, 34, 40, 0.1);
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --shadow-soft: 0 2px 8px rgba(12, 34, 40, 0.05), 0 12px 40px rgba(12, 34, 40, 0.07);
  --shadow-lift: 0 4px 12px rgba(12, 34, 40, 0.08), 0 24px 64px rgba(12, 34, 40, 0.12);

  /* 8pt spacing scale */
  --s1: 0.5rem;  /* 8 */
  --s2: 1rem;    /* 16 */
  --s3: 1.5rem;  /* 24 */
  --s4: 2rem;    /* 32 */
  --s5: 3rem;    /* 48 */
  --s6: 4rem;    /* 64 */
  --s7: 6rem;    /* 96 */
  --s8: 8rem;    /* 128 */

  --radius: 1.5rem;       /* 24 — iOS-continuous-ish tiles */
  --radius-sm: 1rem;
  --pill: 999px;

  --container: 75rem;     /* 1200 */

  /* Apple HIG: the system stack IS the brand (and GDPR-safe: zero font CDNs) */
  --font-ui: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
             "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}

/* ---------- Reset / base ---------- */

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.0625rem; /* 17 — iOS body */
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, canvas { display: block; max-width: 100%; }

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(42, 184, 198, 0.28); }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.12;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

.skip-link {
  position: absolute;
  left: -999px;
  top: var(--s1);
  z-index: 100;
  padding: var(--s1) var(--s2);
  background: var(--ink);
  color: #fff;
  border-radius: var(--pill);
}
.skip-link:focus { left: var(--s1); }

/* ---------- Layout primitives ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s2);
}
@media (min-width: 40em)  { .container { padding-inline: var(--s3); } }
@media (min-width: 64em)  { .container { padding-inline: var(--s4); } }

.section { padding-block: var(--s6); }
@media (min-width: 56.25em) { .section { padding-block: var(--s7); } }

.section-head { max-width: 44rem; margin-bottom: var(--s4); }
@media (min-width: 56.25em) { .section-head { margin-bottom: var(--s5); } }

.section-head h2 {
  font-size: clamp(1.75rem, 1.2rem + 2.4vw, 2.75rem);
  margin-block: var(--s1) 0;
}
.section-head p { margin-top: var(--s2); color: var(--ink-2); font-size: 1.125rem; }

/* EXIF-style eyebrow — camera-metadata vernacular */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--pill);
  border: 1px solid transparent;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 24px rgba(12, 34, 40, 0.25);
}
.btn-primary:hover { background: #16333b; }

.btn-glass {
  background: var(--glass);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.btn-appstore { padding: 0.875rem 1.375rem; }
.btn-appstore svg { flex: none; }
.btn-appstore .two-line { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.btn-appstore .two-line small { font-size: 0.6875rem; font-weight: 500; opacity: 0.75; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-block: var(--s1);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header .bar {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.5rem 0.75rem 0.5rem 1rem;
  border-radius: var(--pill);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  box-shadow: var(--shadow-soft);
}
.site-header.is-scrolled .bar { background: var(--glass-strong); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand svg { width: 1.75rem; height: 1.75rem; }

.site-nav { display: none; margin-inline: auto; }
.site-nav a {
  padding: 0.5rem 0.875rem;
  border-radius: var(--pill);
  color: var(--ink-2);
  font-size: 0.9375rem;
  font-weight: 500;
}
.site-nav a:hover { color: var(--ink); background: rgba(12, 34, 40, 0.05); text-decoration: none; }

.header-actions { display: flex; align-items: center; gap: var(--s1); margin-left: auto; }

.lang-switch {
  display: inline-flex;
  padding: 0.25rem;
  border-radius: var(--pill);
  background: rgba(12, 34, 40, 0.06);
  font-size: 0.8125rem;
  font-weight: 600;
}
.lang-switch a, .lang-switch span {
  padding: 0.25rem 0.625rem;
  border-radius: var(--pill);
  color: var(--ink-2);
}
.lang-switch [aria-current] { background: #fff; color: var(--ink); box-shadow: 0 1px 4px rgba(12, 34, 40, 0.12); }
.lang-switch a:hover { text-decoration: none; color: var(--ink); }

.header-cta { padding: 0.5rem 1.125rem; font-size: 0.9375rem; }

@media (min-width: 56.25em) {
  .site-nav { display: flex; }
  .header-actions { margin-left: 0; }
}

/* ---------- Hero (full-bleed interactive panorama) ---------- */

.hero {
  position: relative;
  min-height: max(37.5rem, 92svh);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: calc(-1 * (3.5rem + var(--s2))); /* pull under sticky header */
  overflow: hidden;
  isolation: isolate;
  cursor: grab;
}
.hero.is-dragging { cursor: grabbing; }

.hero-pano {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  /* static fallback if WebGL is unavailable */
  background:
    radial-gradient(120% 70% at 70% 88%, rgba(232, 161, 61, 0.35), transparent 60%),
    linear-gradient(to bottom, #dcecf4 0%, #cfe9ee 38%, #9fd6dd 52%, #2a8f9e 53%, #0e6a78 78%, #0a4a56 100%);
}

.hero-pano canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  padding-block: var(--s6) var(--s5);
}

.hero-card {
  max-width: 41rem;
  padding: var(--s4);
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  box-shadow: var(--shadow-lift);
}

.hero-card h1 {
  font-size: clamp(2.125rem, 1.3rem + 3.8vw, 3.75rem);
  margin-block: var(--s2) 0;
}
.hero-card .lede {
  margin-top: var(--s2);
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  color: var(--ink-2);
  max-width: 36rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s3); }

.drag-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--s3);
  padding: 0.375rem 0.875rem;
  border-radius: var(--pill);
  background: rgba(12, 34, 40, 0.55);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  user-select: none;
}
.drag-hint svg { width: 1rem; height: 1rem; }

@media (min-width: 56.25em) {
  .hero-content { padding-block: var(--s8) var(--s7); }
  .hero-card { padding: var(--s5); }
}

/* ---------- Stats strip ---------- */

.stats { padding-block: var(--s5); border-bottom: 1px solid var(--stroke); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3) var(--s2);
}
@media (min-width: 56.25em) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat .num {
  font-size: clamp(1.75rem, 1.3rem + 2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--teal-deep);
}
.stat .num sup { font-size: 0.45em; color: var(--ink-2); font-weight: 500; }
.stat .lbl { margin-top: 0.25rem; font-size: 0.9375rem; color: var(--ink-2); }

.stats .fineprint {
  margin-top: var(--s3);
  font-size: 0.75rem;
  color: var(--ink-2);
  opacity: 0.8;
}

/* ---------- Steps (a real sequence → numbered) ---------- */

.steps {
  display: grid;
  gap: var(--s2);
  counter-reset: step;
}
@media (min-width: 40em)    { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 56.25em) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  counter-increment: step;
  padding: var(--s3);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}
.step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--s2);
  box-shadow: 0 4px 12px rgba(42, 184, 198, 0.4);
}
.step h3 { font-size: 1.1875rem; }
.step p { margin-top: 0.5rem; color: var(--ink-2); font-size: 0.9375rem; }

/* ---------- Bento grid ---------- */

.bento {
  display: grid;
  gap: var(--s2);
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 40em)    { .bento { grid-template-columns: repeat(6, 1fr); } }
@media (min-width: 56.25em) { .bento { grid-template-columns: repeat(12, 1fr); } }

.tile {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  padding: var(--s3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}
.tile h3 { font-size: 1.25rem; }
.tile p { color: var(--ink-2); font-size: 0.9688rem; }
.tile .tile-kicker {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

@media (min-width: 40em) {
  .tile        { grid-column: span 3; }
  .tile.wide   { grid-column: span 6; }
}
@media (min-width: 56.25em) {
  .tile        { grid-column: span 4; }
  .tile.wide   { grid-column: span 8; }
  .tile.half   { grid-column: span 6; }
  .tile.third  { grid-column: span 4; }
}

.tile.feature-hero {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(42, 184, 198, 0.16), transparent 55%),
    rgba(255, 255, 255, 0.72);
}
.tile.feature-hero .mock { margin-top: var(--s2); }

.tile.dark-tile {
  background:
    radial-gradient(100% 140% at 0% 100%, rgba(42, 184, 198, 0.25), transparent 60%),
    var(--dark-2);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--on-dark);
}
.tile.dark-tile h3 { color: var(--on-dark); }
.tile.dark-tile p { color: var(--on-dark-2); }
.tile.dark-tile .tile-kicker { color: var(--teal-bright); }

/* export file listing inside a tile */
.filelist {
  margin-top: var(--s2);
  border-radius: var(--radius-sm);
  background: rgba(8, 24, 29, 0.85);
  color: #bfe8ee;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.9;
  padding: var(--s2) var(--s3);
}
.filelist span { color: #6fa3ac; }

/* ---------- Audiences ---------- */

.audience-lead {
  display: grid;
  gap: var(--s2);
  margin-bottom: var(--s4);
}
@media (min-width: 56.25em) { .audience-lead { grid-template-columns: 1fr 1fr; gap: var(--s3); } }

.audience-lead .panel {
  padding: var(--s3);
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.audience-lead .panel h3 { font-size: 1.375rem; margin-top: var(--s1); }
.audience-lead .panel p { margin-top: var(--s1); color: var(--ink-2); }

.camera-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--s2); }
.chip {
  padding: 0.375rem 0.875rem;
  border-radius: var(--pill);
  background: var(--paper-2);
  border: 1px solid var(--stroke);
  font-size: 0.8438rem;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
}

.audience-grid {
  display: grid;
  gap: var(--s2);
  grid-template-columns: 1fr;
}
@media (min-width: 40em)    { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 56.25em) { .audience-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 75em)    { .audience-grid { grid-template-columns: repeat(4, 1fr); } }

.audience {
  padding: var(--s3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.audience:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.audience .icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, rgba(42, 184, 198, 0.18), rgba(85, 96, 164, 0.14));
  color: var(--teal-deep);
  margin-bottom: var(--s2);
}
.audience .icon svg { width: 1.5rem; height: 1.5rem; }
.audience h3 { font-size: 1.0625rem; }
.audience p { margin-top: 0.375rem; font-size: 0.9063rem; color: var(--ink-2); }

/* ---------- Privacy band (full-bleed dark) ---------- */

.privacy {
  background:
    radial-gradient(80% 100% at 85% 0%, rgba(42, 184, 198, 0.18), transparent 55%),
    radial-gradient(60% 80% at 10% 100%, rgba(85, 96, 164, 0.2), transparent 60%),
    var(--dark);
  color: var(--on-dark);
}
.privacy .section-head h2 { color: var(--on-dark); }
.privacy .section-head p { color: var(--on-dark-2); }
.privacy .eyebrow { color: var(--teal-bright); }

.privacy-grid { display: grid; gap: var(--s2); }
@media (min-width: 40em)    { .privacy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 56.25em) { .privacy-grid { grid-template-columns: repeat(4, 1fr); } }

.privacy-item {
  padding: var(--s3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.privacy-item h3 { font-size: 1.0625rem; color: var(--on-dark); }
.privacy-item p { margin-top: 0.375rem; font-size: 0.9063rem; color: var(--on-dark-2); }
.privacy-item .icon { color: var(--teal-bright); margin-bottom: var(--s1); }
.privacy-item .icon svg { width: 1.5rem; height: 1.5rem; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 50rem; display: grid; gap: var(--s1); }

.faq-list details {
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  padding: var(--s2) var(--s3);
  font-weight: 600;
  font-size: 1.0313rem;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  flex: none;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--teal-deep);
  font-weight: 500;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details > div {
  padding: 0 var(--s3) var(--s3);
  color: var(--ink-2);
  font-size: 0.9688rem;
}

/* ---------- Final CTA ---------- */

.cta-final { text-align: center; }
.cta-final .inner {
  padding: var(--s5) var(--s3);
  border-radius: calc(var(--radius) * 1.25);
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(42, 184, 198, 0.14), transparent 60%),
    #fff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-lift);
}
.cta-final h2 { font-size: clamp(1.75rem, 1.2rem + 2.6vw, 2.75rem); }
.cta-final p { margin: var(--s2) auto 0; max-width: 34rem; color: var(--ink-2); font-size: 1.125rem; }
.cta-final .hero-ctas { justify-content: center; }

/* ---------- Footer ---------- */

.site-footer {
  padding-block: var(--s5);
  border-top: 1px solid var(--stroke);
  font-size: 0.875rem;
  color: var(--ink-2);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s2) var(--s4);
}
.footer-grid .brand { font-size: 1rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: var(--s2); margin-left: auto; }
.footer-links a { color: var(--ink-2); }
.footer-links a:hover { color: var(--ink); }
.footer-note { margin-top: var(--s3); font-size: 0.8125rem; opacity: 0.85; }

/* ---------- Legal pages ---------- */

.legal { max-width: 46rem; padding-block: var(--s5) var(--s7); }
.legal h1 { font-size: clamp(1.875rem, 1.4rem + 2vw, 2.5rem); margin-bottom: var(--s3); }
.legal h2 { font-size: 1.25rem; margin: var(--s4) 0 var(--s1); }
.legal p { margin-bottom: var(--s2); color: var(--ink-2); }
.legal p strong { color: var(--ink); }
.legal address { font-style: normal; color: var(--ink-2); line-height: 1.7; }

/* ---------- Scroll reveal ---------- */

.reveal { opacity: 0; transform: translateY(1rem); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .btn, .audience { transition: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .hero-pano, .drag-hint { display: none; }
}

/* ---------- Musterrundgang (eingebetteter Tour-Export) ---------- */

.tour-frame {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: var(--radius); background: var(--dark); box-shadow: var(--shadow-lift);
}
.tour-poster { width: 100%; height: 100%; object-fit: cover; display: block; }
.tour-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; background: var(--dark); }
.tour-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(8, 24, 29, 0.15), rgba(8, 24, 29, 0.45));
}
.tour-overlay .btn { font-size: 1.0625rem; padding: 0.875rem 1.75rem; box-shadow: var(--shadow-lift); }
.tour-fs { position: absolute; right: var(--s2); top: var(--s2); z-index: 3; }
.tour-frame:fullscreen { border-radius: 0; aspect-ratio: auto; }
.tour-frame:fullscreen .tour-fs { display: none; }

/* ---------- App Screens (Blätter-Galerie) ---------- */

.screens { position: relative; }
.screens-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  background: #fff; border: 1px solid var(--stroke); color: var(--teal-deep);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.12s ease;
}
.screens-arrow[data-screens-prev] { left: 0; }
.screens-arrow[data-screens-next] { right: 0; }
.screens-arrow:hover { box-shadow: var(--shadow-lift); }
.screens-arrow svg { width: 1.5rem; height: 1.5rem; }
.screens-stage { margin: 0; text-align: center; padding-inline: 4.5rem; }
.screens-stage img {
  height: min(84vh, 48rem); max-width: 100%; width: auto;
  margin-inline: auto;
  border-radius: 1.5rem; border: 1px solid var(--stroke);
  box-shadow: var(--shadow-lift); background: #fff;
  touch-action: pan-y; user-select: none; -webkit-user-drag: none;
  transition: opacity 0.18s ease;
}
.screens-stage img.is-switching { opacity: 0; }
.screens-stage figcaption {
  margin-top: var(--s2); display: flex; align-items: center; justify-content: center;
  gap: 0.6rem; flex-wrap: wrap; color: var(--ink-2); font-size: 0.9375rem;
}
.screens-step {
  flex: none; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.02em;
  color: var(--teal-deep); background: rgba(42, 184, 198, 0.14);
  padding: 0.2rem 0.6rem; border-radius: var(--pill);
}
@media (max-width: 40em) {
  .screens-arrow { width: 2.75rem; height: 2.75rem; }
  .screens-stage { padding-inline: 3.25rem; }
  .screens-stage img { height: min(72vh, 34rem); }
}
