/* ----------------------------------------------------------
   ProScola AI — site v1
   Tokens map to 2023 Mini Style Guide; accent is Warm Machine.
   ---------------------------------------------------------- */

@font-face {
  font-family: "Lexend";
  src: url("fonts/lexend/lexend-variable.woff2") format("woff2-variations"),
       url("fonts/lexend/lexend-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;

  /* Brand — locked to style guide (fallback values; see light-dark() block below) */
  --pr-ink: #22215F;
  --pr-paper: #FFFFFF;
  --pr-paper-tint: #FAFAFE;
  --pr-paper-tint-lavender: #F5F4FF;
  --pr-lavender: #DFDEFF;
  --pr-muted: #6E6E85;
  --pr-hairline: #E8E8F2;

  --pr-ring-orange: #EF964A;
  --pr-ring-orange-light: #EFB94A;
  --pr-ring-coral: #E6454A;
  --pr-ring-coral-light: #E66F4A;
  --pr-ring-green: #58C20F;
  --pr-ring-green-light: #A1D950;
  --pr-ring-teal: #00AACE;
  --pr-ring-teal-light: #65CEBD;

  /* Accent — Warm Machine (owner-approved 2026-04-23) */
  --pr-accent: #C2410C;
  --pr-accent-hover: #9A340A;
  --pr-accent-ring: rgba(194, 65, 12, 0.15);

  /* Type */
  --pr-font: "Lexend", system-ui, -apple-system, Segoe UI, sans-serif;

  /* Type scale — 1.25 modular (14 · 17 · 21 · 27 · 34 · 42 · 53) */
  --text-xs: 14px;
  --text-sm: 17px;
  --text-md: 21px;
  --text-lg: 27px;
  --text-xl: 34px;
  --text-2xl: 42px;
  --text-3xl: 53px;

  /* Spacing scale — 8pt base */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  /* Shape + motion */
  --pr-radius: 8px;
  --pr-radius-lg: 16px;
  --pr-shadow-sm: 0 1px 2px rgba(34, 33, 95, 0.06);
  --pr-shadow-md: 0 8px 24px rgba(34, 33, 95, 0.08);
  --pr-shadow-lg: 0 14px 34px rgba(34, 33, 95, 0.12);
  --pr-transition: 320ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --pr-container: 1200px;
  --pr-gutter: clamp(20px, 4vw, 40px);
}

/* Dark-mode-ready tokens. Activates automatically if color-scheme is changed
   to "light dark" at :root. For now color-scheme is light, so these resolve
   to the light values only. Modern browsers only; falls through to the
   single-value tokens above on older browsers. */
@supports (color: light-dark(#000, #FFF)) {
  :root {
    --pr-ink: light-dark(#22215F, #F5F5F7);
    --pr-paper: light-dark(#FFFFFF, #0E0D28);
    --pr-paper-tint: light-dark(#FAFAFE, #151333);
    --pr-paper-tint-lavender: light-dark(#F5F4FF, #1B1A40);
    --pr-lavender: light-dark(#DFDEFF, #201F42);
    --pr-muted: light-dark(#6E6E85, #9A9AB8);
    --pr-hairline: light-dark(#E8E8F2, #2A2A4A);
  }
}

/* ----- reset / base ------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--pr-font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--pr-ink);
  background: var(--pr-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--pr-accent); text-decoration: none; }
a:hover { color: var(--pr-accent-hover); }
button { font: inherit; cursor: pointer; }

/* ----- focus ring (global, shadcn-style ring) ----------- */
:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--pr-paper), 0 0 0 4px var(--pr-accent);
  border-radius: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--pr-ink);
  color: var(--pr-paper);
  padding: 12px 16px;
  border-radius: var(--pr-radius);
  z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

.container {
  max-width: var(--pr-container);
  margin: 0 auto;
  padding-inline: var(--pr-gutter);
}

/* ----- header ------------------------------------------- */
.site-header {
  padding: 14px 0;
  border-bottom: 1px solid var(--pr-hairline);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
body { padding-top: 84px; }
@media (max-width: 720px) { body { padding-top: 70px; } }
.site-header .container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.logo img { height: 52px; width: auto; }
.site-nav {
  display: flex;
  gap: 22px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}
.site-nav a {
  color: var(--pr-ink);
  text-decoration: none;
  transition: color var(--pr-transition);
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--pr-accent); }
.header-cluster {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  margin: 0 auto;
}
.header-klapp {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  transition: transform var(--pr-transition);
}
.header-klapp img { height: 50px; width: auto; border-radius: 50%; }
.header-klapp:hover { transform: translateY(-1px); }
.locale-toggle {
  position: absolute;
  right: var(--pr-gutter);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pr-muted);
}
.locale-toggle a {
  color: var(--pr-muted);
  text-decoration: none;
  transition: color var(--pr-transition);
  padding: 4px 2px;
}
.locale-toggle a[aria-current="page"] { color: var(--pr-ink); }
.locale-toggle a:hover,
.locale-toggle a:focus-visible { color: var(--pr-accent); }

/* ----- nav toggle (hamburger, mobile only) -------------- */
.nav-toggle {
  display: none;
  position: relative;
  width: 36px;
  height: 36px;
  padding: 0;
  margin-left: 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle .bar {
  display: block;
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--pr-ink);
  border-radius: 1px;
  transition: top 200ms ease, transform 200ms ease, opacity 150ms ease;
}
.nav-toggle .bar:nth-child(1) { top: 11px; }
.nav-toggle .bar:nth-child(2) { top: 17px; }
.nav-toggle .bar:nth-child(3) { top: 23px; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { top: 17px; transform: rotate(-45deg); }

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .header-cluster { margin: 0; }
  .header-klapp { display: none; }
  .locale-toggle { position: static; transform: none; margin-left: auto; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 20px 24px 24px;
    gap: 16px;
    background: var(--pr-paper);
    border-bottom: 1px solid var(--pr-hairline);
    box-shadow: var(--pr-shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 220ms ease, opacity 180ms ease, visibility 180ms;
    z-index: 9;
  }
  .site-nav a {
    font-size: 17px;
    padding: 6px 0;
  }
  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  body.nav-open { overflow: hidden; }
}

/* ----- hero --------------------------------------------- */
.hero {
  padding: clamp(48px, 7vw, 80px) 0 clamp(40px, 5vw, 64px);
  background: var(--pr-paper);
}
.hero .img-slot,
#scolets .img-slot {
  border-radius: var(--pr-radius-lg);
  box-shadow: none;
  outline: none;
  overflow: hidden;
  background: transparent;
}
.hero .img-slot img {
  display: block;
  width: 100%;
  height: auto;
}

/* Homepage block rhythm — alternating white / dilute lavender surface.
   The lavender cousin (#F5F4FF) is ProScola's brand surface; logo lavender
   (#DFDEFF) stays unique to the mark. See proscola-logo-strategy memory. */
body.home .eos-hero         { background: var(--pr-paper); }
body.home .time-math        { background: var(--pr-paper-tint-lavender); }
body.home .report-assistant { background: var(--pr-paper-tint-lavender); } /* HUB360 family with time-math */
body.home .creative-example { background: var(--pr-paper); }
body.home .manifesto        { background: var(--pr-paper-tint-lavender); }
body.home .product-glimpse  { background: var(--pr-paper); }
body.home .pricing-preview  { background: var(--pr-paper-tint-lavender); }
body.home .partnership      { background: var(--pr-paper); }
body.home .faq              { background: var(--pr-paper-tint-lavender); }
body.home .closing-cta      { background: var(--pr-paper); }
/* Legacy aliases kept so /produkt etc. continue to work. */
body.home .hero            { background: var(--pr-paper); }
body.home .unification     { background: var(--pr-paper); }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}
.hero-copy .eyebrow {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--pr-accent);
  letter-spacing: 0;
}
.hero-copy h1 {
  font-family: var(--pr-font);
  font-weight: 600;
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--pr-ink);
  margin: 0 0 20px;
}
.hero-copy .audience-note {
  margin: 20px 0 0;
  font-size: 14px;
  color: var(--pr-muted);
}
.hero-copy h1 .line { display: block; }
@media (max-width: 480px) {
  .hero-copy h1 .line { display: inline; }
}
.hero-copy .subline {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.45;
  font-weight: 500;
  color: var(--pr-ink);
  opacity: 0.78;
  margin: 0 0 36px;
  max-width: 40ch;
}
.hero-copy .subline .line { display: block; }
@media (max-width: 480px) {
  .hero-copy .subline .line { display: inline; }
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
/* ----- img-slot + placeholder overlay -------------------- */
/* .is-placeholder must not appear in production HTML (launch gate). */
.img-slot {
  position: relative;
  display: block;
  border-radius: var(--pr-radius-lg);
  overflow: hidden;
  box-shadow: var(--pr-shadow-md);
  outline: 1px solid rgba(34, 33, 95, 0.08);
  outline-offset: -1px;
}
.img-slot img {
  display: block;
  width: 100%;
  height: auto;
}
.img-slot.is-placeholder::after {
  content: "PLACEHOLDER · " attr(data-slot);
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  font-family: var(--pr-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(194, 65, 12, 0.94);
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
}

/* ----- principle line (homepage human-led-AI claim) ------ */
.principle-line {
  font-family: var(--pr-font);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--pr-ink);
  text-align: center;
  margin: 0 auto 48px;
  max-width: 720px;
}

/* ----- product page hierarchy line (Kurs › Lernpfad › Scolet) ---- */
.hierarchy-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 12px;
  text-align: center;
  margin: 56px auto 80px;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--pr-muted);
}
.hierarchy-line strong {
  font-size: 18px;
  font-weight: 600;
  color: var(--pr-ink);
  letter-spacing: 0.005em;
}
.hierarchy-arrow {
  font-size: 22px;
  color: rgba(34, 33, 95, 0.32);
  font-weight: 300;
}
.hierarchy-note {
  display: block;
  width: 100%;
  margin-top: 12px;
  font-size: 14px;
  color: var(--pr-muted);
}

/* ----- method-section (10 pedagogical approaches) -------- */
.method-section {
  margin: 64px 0;
}
.method-section > .module-tag,
.method-section > #method-title { text-align: center; }
.method-section h2 {
  margin: 8px 0 12px;
}
.method-intro {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--pr-muted);
  margin: 0 auto 40px;
  text-align: center;
}
.method-banner {
  margin: 8px 0 56px;
  border-radius: var(--pr-radius-lg);
  overflow: hidden;
  box-shadow: var(--pr-shadow-md);
  outline: 1px solid rgba(34, 33, 95, 0.06);
  outline-offset: -1px;
}
.method-banner img {
  display: block;
  width: 100%;
  height: auto;
}
.method-figure {
  margin: 8px auto 32px;
  max-width: 920px;
  border-radius: var(--pr-radius-lg);
  overflow: hidden;
  box-shadow: var(--pr-shadow-md);
  outline: 1px solid rgba(34, 33, 95, 0.08);
  outline-offset: -1px;
  background: #fff;
}
.method-figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== Pedagogical-approach flip cards ===== */
.approach-picker {
  margin: clamp(8px, 2vw, 20px) 0 28px;
}
.approach-picker-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: clamp(18px, 2.2vw, 26px);
}
.approach-picker-head h3 {
  margin: 0;
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--pr-ink);
}
.approach-picker-head .approach-hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--text-xs);
  color: var(--pr-muted);
  white-space: nowrap;
}
.approach-picker-head .approach-hint svg { width: 15px; height: 15px; opacity: 0.8; }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.approach-card {
  position: relative;
  display: block;
  width: 100%;
  height: 204px;
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  text-align: left;
  font: inherit;
  cursor: pointer;
  perspective: 1600px;
  border-radius: var(--pr-radius-lg);
}
.approach-card:focus-visible { outline: 2px solid var(--pr-accent); outline-offset: 3px; }
.approach-card-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.34, 1.2, 0.4, 1);
}
.approach-card:hover .approach-card-inner,
.approach-card.is-flipped .approach-card-inner {
  transform: rotateY(180deg);
}
.approach-face {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  border: 1px solid var(--pr-hairline);
  border-radius: var(--pr-radius-lg);
  background: var(--pr-paper);
  box-shadow: var(--pr-shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--pr-transition);
}
.approach-card:hover .approach-face { box-shadow: var(--pr-shadow-md); }

/* --- front --- */
.approach-front { justify-content: center; align-items: center; }
.approach-front::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c, var(--pr-accent));
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--c, var(--pr-accent)) 14%, transparent);
}
/* Repeating ProScola logo palette across the grid */
.approach-card:nth-child(8n+1) { --c: #00AACE; }
.approach-card:nth-child(8n+2) { --c: #58C20F; }
.approach-card:nth-child(8n+3) { --c: #EF964A; }
.approach-card:nth-child(8n+4) { --c: #E6454A; }
.approach-card:nth-child(8n+5) { --c: #65CEBD; }
.approach-card:nth-child(8n+6) { --c: #A1D950; }
.approach-card:nth-child(8n+7) { --c: #EFB94A; }
.approach-card:nth-child(8n+8) { --c: #E66F4A; }
.approach-kicker {
  position: absolute;
  top: 22px;
  left: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pr-accent);
}
.approach-title {
  position: relative;
  font-size: 21px;
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--pr-ink);
  text-align: center;
  padding: 0 6px;
  text-wrap: balance;
}
.approach-cue {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pr-hairline);
  border-radius: 50%;
  color: var(--pr-muted);
  background: var(--pr-paper);
  transition: transform var(--pr-transition), color var(--pr-transition), border-color var(--pr-transition);
}
.approach-cue svg { width: 16px; height: 16px; }
.approach-card:hover .approach-cue {
  color: var(--c, var(--pr-accent));
  border-color: var(--c, var(--pr-accent));
  transform: rotate(-45deg);
}

/* --- back --- */
.approach-back {
  transform: rotateY(180deg);
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 11px;
  background: var(--pr-ink);
  border-color: var(--pr-ink);
}
.approach-back-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c, #B9B8E8);
}
.approach-back-text {
  font-size: 14.5px;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.92);
}

/* --- feature card (Arts · Crafts · Tech · Sports) --- */
.approach-card--feature .approach-front {
  background: var(--pr-paper-tint-lavender);
  border-color: var(--pr-lavender);
}
.approach-card.approach-card--feature { --c: var(--pr-accent); }
.approach-card--feature .approach-front::before { display: none; }
.approach-card--feature .approach-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pr-accent);
}
.approach-card--feature .approach-kicker svg { width: 15px; height: 15px; }
.approach-card--feature .approach-cue { border-color: var(--pr-lavender); }
.approach-card--feature .approach-back {
  background: var(--pr-accent);
  border-color: var(--pr-accent);
}
.approach-card--feature .approach-back-label { color: rgba(255, 255, 255, 0.78); }

@media (max-width: 560px) {
  .approach-grid { grid-template-columns: 1fr; }
  .approach-card { height: 168px; }
  .approach-front::after { font-size: 64px; }
  .approach-picker-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .approach-card-inner { transition: none; }
  .approach-card:hover .approach-cue { transform: none; }
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 56px;
  margin-bottom: 32px;
}
.method-row {
  border-top: 1px solid rgba(34, 33, 95, 0.12);
  padding-top: 16px;
}
.method-row h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--pr-ink);
  margin: 0 0 6px;
  line-height: 1.3;
}
.method-row p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--pr-muted);
  margin: 0;
}
.method-note {
  font-size: 14px;
  color: var(--pr-muted);
}
.method-note a {
  color: var(--pr-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 720px) {
  .method-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* ----- scolet-types (12-type subsection inside ScoLets) -- */
.scolet-types {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(34, 33, 95, 0.08);
}
.scolet-types h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--pr-ink);
  margin: 0 0 28px;
  letter-spacing: -0.005em;
}
.scolet-types-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 40px;
}
/* image-card variant — replaces the 12-card text grid with two reference screenshots */
.scolet-types-grid-images {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.scolet-image-card {
  margin: 0;
  border-radius: var(--pr-radius-lg);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(34, 33, 95, 0.06);
}
.scolet-image-card img {
  width: 100%;
  height: auto;
  display: block;
}
.scolet-types-grid-images .scolet-row-more {
  grid-column: 1 / -1;
  background: #FFFFFF;
  border: 1px solid rgba(34, 33, 95, 0.06);
  border-radius: var(--pr-radius);
  padding: 22px 26px;
}
@media (max-width: 720px) {
  .scolet-types-grid-images { grid-template-columns: 1fr; }
}
.scolet-row h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--pr-ink);
  margin: 0 0 4px;
  line-height: 1.3;
}
.scolet-row p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--pr-muted);
  margin: 0;
}
@media (max-width: 880px) {
  .scolet-types-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 32px; }
}
@media (max-width: 520px) {
  .scolet-types-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ----- hero trust credentials (flags + Lehrplan/Pilotschule line) ---- */
.trust-credentials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: clamp(32px, 5vw, 48px);
}
.trust-flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.trust-flags .footer-flag       { height: 70px; }
.trust-flags .footer-flag-basel { height: 75px; }
.trust-flags .footer-flag-swiss { height: 65px; }
.trust-line {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pr-muted);
  opacity: 0.85;
}

/* ----- footer credentials (flags + Lehrplan 21 stamp) --- */
.footer-credentials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}
.footer-flag {
  display: block;
  height: 28px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(34, 33, 95, 0.08));
}
.footer-flag-basel { height: 30px; }
.footer-flag-swiss { height: 26px; }
.footer-stamp {
  margin: 8px 0 0;
  text-align: center;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pr-muted);
  opacity: 0.75;
}

/* ----- module tagline (italic accent line under H2) ----- */
.module-tagline {
  font-style: italic;
  font-size: 17px;
  color: var(--pr-muted);
  margin: -8px 0 16px;
  letter-spacing: 0.005em;
}

/* ----- module figure (secondary image inside a module) -- */
.module-figure {
  margin: 56px 0 0;
  padding: 0;
}
.module-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--pr-radius-lg);
  box-shadow: var(--pr-shadow-md);
  outline: 1px solid rgba(34, 33, 95, 0.06);
  outline-offset: -1px;
}
.module-figure figcaption {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--pr-muted);
  text-align: center;
}

/* ----- pillars-section (Five Pillars on produkt) -------- */
.pillars-section {
  margin: 64px 0;
}
.pillars-section h2 {
  margin: 8px 0 12px;
}
.pillars-intro {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--pr-muted);
  margin: 0 0 48px;
}
.pillars-stance {
  margin: 16px 0 40px;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--pr-ink);
  max-width: 720px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}
.pillar-card {
  position: relative;
  padding: 24px 20px 22px;
  border-radius: var(--pr-radius);
  background: #FFFFFF;
  border: 1px solid rgba(34, 33, 95, 0.08);
  transition: transform var(--pr-transition), box-shadow var(--pr-transition), border-color var(--pr-transition);
}
.pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pr-shadow-md);
  border-color: var(--pillar-accent);
}
.pillar-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pillar-accent);
  margin-bottom: 14px;
}
.pillar-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--pr-ink);
  line-height: 1.3;
  margin: 0 0 8px;
}
.pillar-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--pr-muted);
  margin: 0;
}
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 460px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ----- problem-shift (homepage) ------------------------- */
.problem-shift {
  padding: clamp(60px, 7vw, 96px) 0;
  background: var(--pr-paper);
}
.problem-shift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
}
.ps-outcomes-top {
  margin: 0 0 48px !important;
}
.ps-col {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid rgba(34, 33, 95, 0.12);
}
.ps-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.ps-eyebrow-problem { color: #E6454A; }
.ps-eyebrow-shift { color: #58C20F; }
.ps-statement {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.45;
  color: var(--pr-ink);
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.ps-outcomes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 36px;
}
.ps-outcomes li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--pr-ink);
}
.ps-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 720px) {
  .problem-shift-grid { grid-template-columns: 1fr; gap: 28px; }
  .ps-outcomes { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ----- product-module text-only variant (no spacer) ---- */
.product-module-text {
  max-width: 780px;
}
.product-module-text h2 {
  margin: 8px 0 14px;
}
.product-module-text > p {
  margin: 0 0 18px;
}
.product-module-text ul {
  margin: 0;
  padding-left: 20px;
}

/* ----- hub360 list with brand-colour dots ---------------- */
.hub360-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 32px;
}
.hub360-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: var(--pr-ink);
}
.hub360-list .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .hub360-list { grid-template-columns: 1fr; }
}

/* ----- demo-outline (3-bullet outline under each demo video slot) ---- */
.demo-outline {
  list-style: none;
  padding: 0;
  margin: 32px auto 0;
  max-width: 720px;
  display: grid;
  gap: 12px;
}
.demo-outline li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--pr-ink);
}
.demo-outline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 1px;
  background: rgba(34, 33, 95, 0.3);
}

/* ----- empty image spacer (awaiting real product screenshot) ---- */
.img-spacer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 28px;
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: var(--pr-radius-lg);
  background: repeating-linear-gradient(
    135deg,
    rgba(34, 33, 95, 0.03),
    rgba(34, 33, 95, 0.03) 10px,
    rgba(34, 33, 95, 0.06) 10px,
    rgba(34, 33, 95, 0.06) 20px
  );
  border: 2px dashed rgba(34, 33, 95, 0.22);
  color: rgba(34, 33, 95, 0.7);
}
.img-spacer .spacer-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(194, 65, 12, 0.9);
}
.img-spacer .spacer-label {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 320px;
}
.img-spacer .spacer-meta {
  font-size: 12px;
  color: rgba(34, 33, 95, 0.55);
}

/* ----- buttons ------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-weight: 500;
  font-size: 16px;
  border-radius: var(--pr-radius);
  border: 1px solid transparent;
  transition: background var(--pr-transition), color var(--pr-transition),
              border-color var(--pr-transition), transform var(--pr-transition),
              box-shadow var(--pr-transition);
  text-decoration: none;
  position: relative;
}
.btn-primary {
  background: var(--pr-accent);
  color: var(--pr-paper);
}
.btn-primary::after {
  content: "→";
  display: inline-block;
  margin-left: 2px;
  transition: transform var(--pr-transition);
}
.btn-primary:hover {
  background: var(--pr-accent-hover);
  color: var(--pr-paper);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(194, 65, 12, 0.24);
}
.btn-primary:hover::after { transform: translateX(4px); }
.btn-primary:focus-visible {
  background: var(--pr-accent-hover);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 2px var(--pr-paper),
    0 0 0 4px var(--pr-accent),
    0 10px 24px rgba(194, 65, 12, 0.24);
}
.btn-secondary {
  background: transparent;
  color: var(--pr-ink);
  border-color: var(--pr-hairline);
}
.btn-secondary:hover {
  border-color: var(--pr-ink);
  color: var(--pr-ink);
  transform: translateY(-2px);
}
/* ----- Demo CTA: ProScola-green gradient (Demo buchen / Book a Demo) ----- */
.btn-demo {
  background: linear-gradient(135deg, #6BCF1C 0%, #58C20F 45%, #3E9C08 100%);
  color: #FFFFFF;
  border-color: transparent;
}
.btn-demo::after {
  content: "→";
  display: inline-block;
  margin-left: 2px;
  transition: transform var(--pr-transition);
}
.btn-demo:hover {
  background: linear-gradient(135deg, #5FC614 0%, #4DB30C 45%, #348908 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(88, 194, 15, 0.30);
}
.btn-demo:hover::after { transform: translateX(4px); }
.btn-demo:focus-visible {
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 2px var(--pr-paper),
    0 0 0 4px #58C20F,
    0 10px 24px rgba(88, 194, 15, 0.30);
}

/* ----- Klapp login lockup (big badge coin + blue pill behind) -----
   The round Klapp logo is the dominant element; a Klapp-blue "einloggen"
   pill sits behind it, offset right, overlapped by the coin. Whole <a> clicks. */
.btn-klapp {
  display: inline-flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  isolation: isolate;
  transition: transform var(--pr-transition);
}
.btn-klapp .klapp-badge {
  width: 82px;
  height: 82px;
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  filter: drop-shadow(0 4px 9px rgba(0, 56, 84, 0.30));
}
.btn-klapp .klapp-pill {
  display: inline-flex;
  align-items: center;
  height: 58px;
  margin-left: -30px;
  padding: 0 34px 0 44px;
  background: #00A0E4;
  border-radius: 999px;
  box-shadow: 0 9px 22px rgba(0, 160, 228, 0.40);
  position: relative;
  z-index: 1;
  transition: background var(--pr-transition), box-shadow var(--pr-transition);
}
.btn-klapp .klapp-login {
  font-family: var(--pr-font);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.005em;
  color: #FFFFFF;
  white-space: nowrap;
}
.btn-klapp:hover { transform: translateY(-2px); }
.btn-klapp:hover .klapp-pill {
  background: #0090CE;
  box-shadow: 0 13px 30px rgba(0, 160, 228, 0.48);
}
.btn-klapp:focus-visible { outline: none; }
.btn-klapp:focus-visible .klapp-pill {
  box-shadow: 0 0 0 2px var(--pr-paper), 0 0 0 4px #00A0E4,
              0 10px 24px rgba(0, 160, 228, 0.30);
}
.btn-klapp.btn-klapp-large .klapp-badge { width: 94px; height: 94px; }
.btn-klapp.btn-klapp-large .klapp-pill {
  height: 66px;
  margin-left: -36px;
  padding: 0 40px 0 52px;
}
.btn-klapp.btn-klapp-large .klapp-login { font-size: 22px; }

/* ----- ProScola login lockup (icon badge + orange pill, mirrors Klapp) ----- */
.btn-proscola {
  display: inline-flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  isolation: isolate;
  transition: transform var(--pr-transition);
}
.btn-proscola .proscola-badge {
  height: 82px;
  width: auto;
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(120, 60, 20, 0.18));
}
.btn-proscola .proscola-pill {
  display: inline-flex;
  align-items: center;
  height: 58px;
  margin-left: -35px;
  padding: 0 34px 0 46px;
  background: var(--pr-ring-orange);
  border-radius: 0 999px 999px 0;
  -webkit-mask: radial-gradient(circle 38px at -3px 26px, transparent 37px, #000 38px);
  mask: radial-gradient(circle 38px at -3px 26px, transparent 37px, #000 38px);
  filter: drop-shadow(0 8px 18px rgba(239, 150, 74, 0.38));
  position: relative;
  z-index: 1;
  transition: background var(--pr-transition), filter var(--pr-transition);
}
.btn-proscola .proscola-login {
  font-family: var(--pr-font);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.005em;
  color: #FFFFFF;
  white-space: nowrap;
}
.btn-proscola:hover { transform: translateY(-2px); }
.btn-proscola:hover .proscola-pill {
  background: #E5862F;
  filter: drop-shadow(0 12px 24px rgba(239, 150, 74, 0.48));
}
.btn-proscola:focus-visible {
  outline: 3px solid var(--pr-ring-orange);
  outline-offset: 4px;
  border-radius: 10px;
}
.btn-proscola.btn-proscola-large .proscola-badge { height: 94px; }
.btn-proscola.btn-proscola-large .proscola-pill {
  height: 66px;
  margin-left: -40px;
  padding: 0 40px 0 52px;
  -webkit-mask: radial-gradient(circle 44px at -4px 30px, transparent 43px, #000 44px);
  mask: radial-gradient(circle 44px at -4px 30px, transparent 43px, #000 44px);
}
.btn-proscola.btn-proscola-large .proscola-login { font-size: 22px; }

/* ----- responsive --------------------------------------- */
.trust-strip {
  margin: clamp(40px, 6vw, 56px) auto 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--pr-muted);
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero .img-slot {
    order: -1;
    max-width: 560px;
    margin-inline: auto;
  }
  .hero-copy .subline { max-width: none; }
}

/* ----- shared section title ----------------------------- */
.section-head {
  text-align: center;
  margin: 0 auto clamp(40px, 6vw, 64px);
  max-width: 52ch;
}
.section-title {
  font-family: var(--pr-font);
  font-weight: 600;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--pr-ink);
  margin: 0 0 clamp(40px, 6vw, 64px);
  text-align: center;
}
.section-head .section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 17px;
  color: var(--pr-ink);
  opacity: 0.75;
  margin: 0;
  line-height: 1.5;
}

/* ----- sub-page hero (text-only) ------------------------ */
.page-hero {
  padding: clamp(64px, 8vw, 96px) 0 clamp(40px, 5vw, 64px);
  background: linear-gradient(180deg, var(--pr-paper) 0%, var(--pr-paper-tint) 100%);
  text-align: center;
}
.page-hero .eyebrow {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--pr-accent);
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--pr-ink);
  margin: 0 auto 16px;
  max-width: 22ch;
}
.page-hero .page-subline {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--pr-ink);
  opacity: 0.78;
  margin: 0 auto 28px;
  max-width: 52ch;
  line-height: 1.5;
}
.page-hero .page-ctas {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ----- page-hero with side image (2-column variant) ------ */
.page-hero-with-image {
  text-align: left;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.page-hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--pr-radius-lg);
  aspect-ratio: 3 / 2;
}
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero-content {
  text-align: left;
}
.page-hero-with-image h1 {
  margin: 0 0 16px;
  max-width: none;
}
.page-hero-with-image .page-subline {
  margin: 0 0 28px;
  max-width: none;
}
.page-hero-with-image .page-ctas {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 880px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .page-hero-image { aspect-ratio: 16 / 10; max-height: 320px; }
}

/* ----- pricing section + /preise ------------------------ */
.pricing, .pricing-preview {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--pr-paper);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  align-items: stretch;
}
.pricing-card {
  background: var(--pr-paper);
  border: 1px solid var(--pr-hairline);
  border-radius: var(--pr-radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--pr-transition), box-shadow var(--pr-transition), border-color var(--pr-transition);
}
.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pr-shadow-md);
}
.pricing-card-featured {
  border-color: var(--pr-accent);
  border-width: 2px;
  padding: 36px 28px;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pr-accent);
  color: var(--pr-paper);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--pr-ink);
}
.pricing-card .tier-tag {
  font-size: 14px;
  color: var(--pr-muted);
  margin: 0 0 20px;
}
.pricing-card .price {
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pricing-card .amount {
  font-size: 40px;
  font-weight: 600;
  color: var(--pr-ink);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.pricing-card .period {
  font-size: 14px;
  color: var(--pr-muted);
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 15px;
  color: var(--pr-ink);
  opacity: 0.85;
  position: relative;
  padding-left: 26px;
  line-height: 1.45;
}
.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 10px;
  border-left: 2px solid var(--pr-accent);
  border-bottom: 2px solid var(--pr-accent);
  transform: rotate(-45deg);
}
.pricing-card .btn { width: 100%; }
.pricing-footer {
  text-align: center;
  margin: 44px 0 0;
  font-size: 15px;
  color: var(--pr-muted);
}
.pricing-footer a {
  color: var(--pr-accent);
  text-decoration: none;
  font-weight: 500;
}
.pricing-footer a:hover { text-decoration: underline; }
@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ----- FAQ section -------------------------------------- */
.faq {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--pr-paper-tint);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--pr-paper);
  border: 1px solid var(--pr-hairline);
  border-radius: var(--pr-radius);
  padding: 20px 24px;
  transition: border-color var(--pr-transition);
}
.faq-item[open] { border-color: var(--pr-accent); }
.faq-item summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: var(--pr-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--pr-muted);
  transition: color var(--pr-transition);
}
.faq-item[open] summary::after { content: "−"; color: var(--pr-accent); }
.faq-item p {
  margin: 14px 0 0;
  font-size: 15px;
  color: var(--pr-ink);
  opacity: 0.82;
  line-height: 1.55;
}

/* ----- product modules (for /produkt) ------------------- */
.product-module {
  padding: clamp(40px, 5vw, 64px) 0;
}
.product-module + .product-module {
  border-top: 1px solid var(--pr-hairline);
}
.product-module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.product-module:nth-child(even) .product-module-grid > :first-child { order: 2; }
.product-module .module-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pr-accent);
  margin: 0 0 12px;
}
.product-module h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--pr-ink);
}
.product-module p {
  font-size: 17px;
  color: var(--pr-ink);
  opacity: 0.82;
  line-height: 1.55;
  margin: 0 0 20px;
  max-width: 52ch;
}
.product-module ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-module ul li {
  font-size: 16px;
  color: var(--pr-ink);
  opacity: 0.82;
  padding-left: 22px;
  position: relative;
}
.product-module ul li::before {
  content: "·";
  position: absolute;
  left: 8px;
  color: var(--pr-accent);
  font-weight: 600;
}
@media (max-width: 860px) {
  .product-module-grid { grid-template-columns: 1fr; }
  .product-module:nth-child(even) .product-module-grid > :first-child { order: 0; }
}

/* ----- contact form ------------------------------------- */
.contact-wrap {
  padding: clamp(40px, 6vw, 64px) 0 clamp(48px, 6vw, 80px);
}
.label-optional { color: var(--pr-ink); opacity: 0.5; font-weight: 400; }
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--pr-paper);
  border: 1px solid var(--pr-hairline);
  border-radius: var(--pr-radius-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--pr-shadow-sm);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--pr-ink);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--pr-ink);
  background: var(--pr-paper);
  border: 1px solid var(--pr-hairline);
  border-radius: var(--pr-radius);
  transition: border-color var(--pr-transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--pr-accent);
  outline: none;
  box-shadow: 0 0 0 3px var(--pr-accent-ring);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form .form-actions {
  margin-top: 20px;
  text-align: center;
}
.contact-form .form-note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--pr-muted);
}
@media (max-width: 620px) {
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* ----- legal / prose pages ----------------------------- */
.prose-page {
  padding: clamp(48px, 7vw, 80px) 0 clamp(48px, 6vw, 80px);
}
.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
  color: var(--pr-ink);
}
.prose h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 40px 0 12px;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 14px; }
.prose ul { padding-left: 20px; margin: 0 0 14px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--pr-accent); }

/* ----- video slot (demo page) --------------------------- */
.video-slot {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(223, 222, 255, 0.55), rgba(223, 222, 255, 0.25));
  border-radius: var(--pr-radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 1px dashed rgba(34, 33, 95, 0.2);
  outline-offset: -1px;
  transition: transform var(--pr-transition);
}
.video-slot:hover {
  transform: translateY(-2px);
  box-shadow: var(--pr-shadow-lg);
}
.video-slot .play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--pr-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--pr-shadow-md);
  transition: transform var(--pr-transition);
}
.video-slot:hover .play-btn { transform: scale(1.06); }
.video-slot .play-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 18px solid var(--pr-accent);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.video-slot .placeholder-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pr-paper);
  background: rgba(194, 65, 12, 0.94);
  border-radius: 4px;
}

/* ----- §3.2 unification --------------------------------- */
.unification {
  padding: clamp(64px, 8vw, 96px) 0 clamp(48px, 6vw, 80px);
  background: var(--pr-lavender);
}
.unification-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  margin-bottom: clamp(48px, 7vw, 80px);
}
.unification-col {
  background: var(--pr-paper);
  padding: 36px 28px 32px;
  border-radius: var(--pr-radius-lg);
  box-shadow: var(--pr-shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--pr-transition), box-shadow var(--pr-transition);
}
.unification-col::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 48px;
  background: linear-gradient(180deg,
    var(--card-accent, var(--pr-accent)) 0%,
    transparent 100%);
  opacity: 0.14;
  pointer-events: none;
}
.unification-col:hover {
  transform: translateY(-2px);
  box-shadow: var(--pr-shadow-md);
}
.unification-col .dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: var(--card-accent, var(--pr-accent));
  position: relative;
  z-index: 1;
}
.unification-col h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--pr-ink);
  margin: 0 0 10px;
}
.unification-col p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--pr-ink);
  opacity: 0.82;
}
@media (max-width: 860px) {
  .unification-grid { grid-template-columns: 1fr; }
}

/* ----- unification-split (image left + 3 rows right) ---- */
.unification-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: stretch;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.unification-image {
  position: relative;
  border-radius: var(--pr-radius-lg);
  overflow: hidden;
  box-shadow: var(--pr-shadow-md);
}
.unification-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.unification-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.unification-row {
  position: relative;
  padding: 18px 0 18px 0;
  border-top: 1px solid rgba(34, 33, 95, 0.1);
}
.unification-row:first-child {
  border-top: none;
  padding-top: 0;
}
.unification-row .dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-bottom: 10px;
  background: var(--card-accent, var(--pr-accent));
}
.unification-row h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--pr-ink);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.unification-row p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--pr-muted);
}
@media (max-width: 860px) {
  .unification-split { grid-template-columns: 1fr; gap: 28px; }
  .unification-image img { height: auto; }
}

/* ----- §3.3 product glimpse ----------------------------- */
.product-glimpse {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--pr-paper);
}
.glimpse-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(24px, 3vw, 40px);
  row-gap: clamp(48px, 6vw, 76px);
}
.glimpse-tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--pr-ink);
  border-radius: var(--pr-radius-lg);
  cursor: zoom-in;
  transition: transform var(--pr-transition);
}
.glimpse-hint {
  text-align: center;
  font-size: 13px;
  color: var(--pr-muted);
  margin: 0 0 28px;
  letter-spacing: 0.01em;
}
.glimpse-image {
  position: relative;
  margin: 0;
  border-radius: var(--pr-radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--pr-paper);
  border: 1px solid var(--pr-hairline);
  box-shadow: var(--pr-shadow-sm);
  transition: box-shadow var(--pr-transition), transform var(--pr-transition);
}
.glimpse-tile:hover .glimpse-image,
.glimpse-tile:focus-visible .glimpse-image {
  box-shadow: var(--pr-shadow-md);
  transform: translateY(-2px);
}
.glimpse-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 14px;
}
.glimpse-count {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(34, 33, 95, 0.86);
  color: var(--pr-paper);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.glimpse-tile h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--pr-ink);
  margin: 0 0 4px;
  text-align: left;
  transition: color var(--pr-transition);
}
.glimpse-tile p {
  font-size: 15px;
  color: var(--pr-ink);
  opacity: 0.75;
  margin: 0 0 14px;
  text-align: left;
  line-height: 1.5;
}
.glimpse-tile:hover h3,
.glimpse-tile:focus-visible h3 { color: var(--pr-accent); }
.glimpse-tile:focus-visible {
  outline: 2px solid var(--pr-accent);
  outline-offset: 4px;
}
@media (max-width: 720px) {
  .glimpse-grid { grid-template-columns: 1fr; }
}

/* ----- lightbox (glimpse tile click → big picture) ------ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 13, 40, 0.93);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 200ms ease;
  padding: clamp(20px, 4vw, 60px);
}
.lightbox-overlay.is-open { opacity: 1; }
.lightbox-frame {
  margin: 0;
  max-width: min(1400px, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.lightbox-image {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--pr-radius-lg);
  background: var(--pr-paper);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.lightbox-caption {
  font-family: var(--pr-font);
  color: var(--pr-paper);
  font-size: 14px;
  opacity: 0.85;
  text-align: center;
  letter-spacing: 0.02em;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  color: var(--pr-paper);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--pr-font);
  font-weight: 400;
  transition: background var(--pr-transition), transform var(--pr-transition);
  padding: 0;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.18);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-dots {
  display: flex;
  gap: 10px;
}
.lightbox-dot {
  background: rgba(255, 255, 255, 0.25);
  border: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: background 200ms ease, transform 200ms ease;
}
.lightbox-dot.is-active { background: var(--pr-paper); transform: scale(1.35); }
.lightbox-dot:hover { background: rgba(255, 255, 255, 0.55); }
.lightbox-overlay [hidden] { display: none; }

@media (max-width: 720px) {
  .lightbox-close, .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 19px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* ----- §3.5 partnership --------------------------------- */
.partnership {
  padding: clamp(36px, 5vw, 56px) 0;
  background: var(--pr-paper-tint);
  border-top: 1px solid var(--pr-hairline);
  border-bottom: 1px solid var(--pr-hairline);
}
.partnership-line {
  text-align: center;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--pr-ink);
  margin: 0;
}

/* ----- §3.6 closing cta --------------------------------- */
.closing-cta {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--pr-paper);
  text-align: center;
}
.closing-intro {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  color: var(--pr-ink);
  margin: 0 auto 28px;
  line-height: 1.35;
  max-width: 32ch;
}
.btn-large {
  padding: 18px 32px;
  font-size: 17px;
}

/* ----- §3.7 footer -------------------------------------- */
.site-footer {
  padding: clamp(48px, 7vw, 72px) 0 clamp(28px, 4vw, 40px);
  background: var(--pr-paper);
  border-top: 1px solid var(--pr-hairline);
  color: var(--pr-muted);
}
.footer-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 28px;
}
.footer-brand { line-height: 0; display: inline-flex; }
.footer-brand img { height: 44px; width: auto; }
.footer-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}
.footer-nav a {
  color: var(--pr-muted);
  text-decoration: none;
  transition: color var(--pr-transition);
}
.footer-nav a:hover,
.footer-nav a:focus-visible { color: var(--pr-accent); }
.footer-locale {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
}
.footer-locale a {
  color: var(--pr-muted);
  text-decoration: none;
  transition: color var(--pr-transition);
  padding: 4px 2px;
}
.footer-locale a[aria-current="page"] { color: var(--pr-ink); }
.footer-locale a:hover,
.footer-locale a:focus-visible { color: var(--pr-accent); }
.footer-legal {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--pr-hairline);
  font-size: 13px;
  text-align: center;
  color: var(--pr-muted);
}

/* ----- reveal-on-scroll --------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition-property: opacity, transform;
  transition-duration: 320ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 80ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger unification columns narratively: Mit KI → Ohne KI → Ihre Wahl */
.unification-grid .unification-col.reveal:nth-child(1) { --i: 0; }
.unification-grid .unification-col.reveal:nth-child(2) { --i: 1; }
.unification-grid .unification-col.reveal:nth-child(3) { --i: 2; }

/* ----- pillars compact (homepage summary) ---------------- */
body.home .pillars-section-compact {
  padding: clamp(28px, 3.5vw, 44px) 0;
  margin: 0;
  background: var(--pr-paper-tint);
}
body.home .pillars-section-compact .module-tag {
  margin: 0 0 8px;
}
body.home .pillars-section-compact h2 {
  margin: 0 0 36px;
}
.pillars-more {
  margin: 32px 0 0;
  text-align: right;
  font-size: 15px;
}
.pillars-more a {
  color: var(--pr-ink);
  border-bottom: 1px solid rgba(34, 33, 95, 0.25);
  padding-bottom: 2px;
  text-decoration: none;
  transition: border-color var(--pr-transition);
}
.pillars-more a:hover {
  border-bottom-color: var(--pr-ink);
}

/* ----- HUB 360 feature cards (Schweizer Funktionen) ------ */
.hub360-functions {
  padding: 0 0 clamp(40px, 5vw, 64px);
}
.hub360-functions .hub360-features { margin-top: clamp(24px, 3vw, 40px); }
.hub360-list-hero { margin: 4px 0 28px; }
.hub360-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.hub-feature-card {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: var(--pr-radius);
  background: #FFFFFF;
  border: 1px solid rgba(34, 33, 95, 0.08);
  border-top: 3px solid var(--feature-accent);
  transition: transform var(--pr-transition), box-shadow var(--pr-transition);
}
.hub-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pr-shadow-md);
}
.hub-feature-card .feature-tag {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--feature-accent);
}
.hub-feature-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--pr-ink);
}
.hub-feature-card p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--pr-muted);
}
.hub-feature-card .feature-proof {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(34, 33, 95, 0.08);
  font-size: 14px;
  font-weight: 500;
  color: var(--pr-ink);
}
@media (max-width: 1000px) {
  .hub360-features { grid-template-columns: 1fr; gap: 16px; }
}

/* ----- Berufslehre block on /schulen --------------------- */
.berufslehre-block {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--pr-paper-tint);
}
.berufslehre-block h2 {
  max-width: 880px;
}
.berufslehre-link {
  margin-top: 32px;
}

/* ----- Datenschutz hero trust strip ---------------------- */
.page-hero .trust-credentials {
  margin-top: 24px;
  padding-top: 20px;
}

/* ============================================================
   time-math — three movements, one composed object
   1. equation-board (image left, equation right, restrained scale)
   2. creative-hero (single hero example: pyramids)
   3. compliance-line (quiet footnote)
   ============================================================ */
.time-math {
  padding: clamp(64px, 7vw, 96px) 0;
  background: var(--pr-paper);
}
body.home .time-math {
  background: var(--pr-paper-tint);
}
/* time-math → pillars is a worry/answer pair; keep them visually linked */
body.home .time-math {
  padding-bottom: clamp(28px, 3.5vw, 44px);
}
.time-math-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.time-math-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--pr-radius-lg);
  aspect-ratio: 4 / 3;
}
.time-math-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.time-math-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.time-math .module-tag {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pr-muted);
}
.time-math-heading {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--pr-ink);
}
.time-math-cred {
  margin: 0 0 32px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--pr-muted);
  max-width: 460px;
}
.time-math-cta {
  margin: 28px 0 0;
}
.time-math-cta a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--pr-ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 33, 95, 0.3);
  padding-bottom: 3px;
  transition: border-color var(--pr-transition);
}
.time-math-cta a:hover {
  border-bottom-color: var(--pr-ink);
}

/* ----- 1. equation-board (right-justified, +20% answer) --- */
.equation-board {
  width: 100%;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.eq-working {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.eq-line {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 12px;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--pr-ink);
  opacity: 0;
  transform: translateY(6px);
}
.eq-num {
  font-weight: 600;
  color: var(--pr-ink);
  min-width: 1.5ch;
  display: inline-block;
}
.eq-op {
  color: var(--pr-muted);
  font-weight: 400;
  padding: 0 2px;
}
.eq-op-result {
  color: var(--pr-ink);
  font-weight: 500;
  font-size: 1.05em;
  padding: 0 6px;
}
.eq-unit {
  color: var(--pr-muted);
  font-weight: 400;
  font-size: 0.78em;
  letter-spacing: 0.01em;
}

/* the answer — only +20% over working numbers */
.eq-answer {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 14px;
  margin: 14px 0 0;
  opacity: 0;
  transform: translateY(10px);
}
.eq-answer-num {
  position: relative;
  display: inline-block;
  font-size: clamp(24px, 2.6vw, 31px); /* +20% over working line */
  line-height: 1;
  font-weight: 600;
  color: var(--pr-ring-teal);
  letter-spacing: -0.01em;
  padding-bottom: 0;
}
.eq-answer-num-inner {
  display: inline-block;
}
.eq-answer-num::before,
.eq-answer-num::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--pr-ring-teal);
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: 1px;
}
.eq-answer-num::before { bottom: -4px; }
.eq-answer-num::after  { bottom: -9px; }
.eq-answer-label {
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pr-ink);
  line-height: 1.15;
  padding-bottom: 4px;
  opacity: 0;
}
.eq-caption {
  margin: 28px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--pr-muted);
  text-align: left;
  max-width: 460px;
  opacity: 0;
}

/* choreography — fires when .equation-board has .is-anim */
@keyframes eq-fade-up {
  to { opacity: 1; transform: none; }
}
@keyframes eq-underline-draw {
  to { transform: scaleX(1); }
}
.equation-board.is-anim .eq-line:nth-child(1) { animation: eq-fade-up 420ms cubic-bezier(0.16, 1, 0.3, 1) forwards 100ms; }
.equation-board.is-anim .eq-line:nth-child(2) { animation: eq-fade-up 420ms cubic-bezier(0.16, 1, 0.3, 1) forwards 360ms; }
.equation-board.is-anim .eq-line:nth-child(3) { animation: eq-fade-up 420ms cubic-bezier(0.16, 1, 0.3, 1) forwards 620ms; }
.equation-board.is-anim .eq-answer { animation: eq-fade-up 500ms cubic-bezier(0.16, 1, 0.3, 1) forwards 920ms; }
.equation-board.is-anim .eq-answer-num::before { animation: eq-underline-draw 360ms cubic-bezier(0.16, 1, 0.3, 1) forwards 1350ms; }
.equation-board.is-anim .eq-answer-num::after  { animation: eq-underline-draw 360ms cubic-bezier(0.16, 1, 0.3, 1) forwards 1500ms; }
.equation-board.is-anim .eq-answer-label { animation: eq-fade-up 420ms cubic-bezier(0.16, 1, 0.3, 1) forwards 1700ms; }
.equation-board.is-anim .eq-caption { animation: eq-fade-up 420ms cubic-bezier(0.16, 1, 0.3, 1) forwards 1900ms; }

/* mobile: stack image above equation */
@media (max-width: 880px) {
  .time-math-grid { grid-template-columns: 1fr; gap: 28px; }
  .time-math-image { aspect-ratio: 16 / 10; max-height: 320px; }
  .time-math-content { align-items: stretch; }
  .eq-caption { max-width: none; }
  .time-math-cred { max-width: none; }
}

/* ----- creative-example section (after Pillars) ---------- */
.creative-example {
  padding: clamp(28px, 3.5vw, 44px) 0 clamp(64px, 7vw, 96px);
}
body.home .creative-example {
  background: var(--pr-paper-tint);
}

/* ----- creative-hero (single example: pyramids) ----------- */
.creative-hero {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.ch-eyebrow {
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pr-muted);
}
.ch-kicker {
  margin: 0 0 18px;
  font-family: var(--pr-font);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--pr-ink);
}
.ch-title {
  margin: 0 0 36px;
  font-size: clamp(34px, 5.4vw, 60px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--pr-ink);
}
.ch-closing {
  margin: clamp(28px, 3.6vw, 44px) auto 0;
  font-family: var(--pr-font);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--pr-ink);
  text-align: center;
}
.ch-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--pr-ink);
}
.ch-meta li {
  position: relative;
  padding-left: 18px;
}
.ch-meta li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--pr-ring-teal);
  font-weight: 500;
}
.ch-note {
  margin: 0;
  font-size: 15px;
  color: var(--pr-muted);
  line-height: 1.55;
}
.ch-image {
  margin: 36px auto 0;
  max-width: 720px;
}
.ch-image-card {
  display: block;
  border-radius: var(--pr-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(34, 33, 95, 0.08);
  box-shadow: 0 16px 40px rgba(34, 33, 95, 0.10);
  background: #FFFFFF;
  transition: transform var(--pr-transition), box-shadow var(--pr-transition);
}
.ch-image-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(34, 33, 95, 0.16);
}
.ch-image-card img {
  width: 100%;
  height: auto;
  display: block;
}
.ch-image figcaption {
  margin-top: 18px;
  text-align: center;
}
.ch-image-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--pr-ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 33, 95, 0.3);
  padding-bottom: 3px;
  transition: border-color var(--pr-transition);
}
.ch-image-cta:hover {
  border-bottom-color: var(--pr-ink);
}

/* ----- 3. compliance-line (quiet footnote) ---------------- */
.compliance-line {
  margin: clamp(40px, 5vw, 64px) auto 0;
  max-width: 600px;
  padding-top: 20px;
  border-top: 1px solid rgba(34, 33, 95, 0.06);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--pr-muted);
}

/* ----- creative-hero mobile ------------------------------- */
@media (max-width: 720px) {
  .ch-meta { flex-direction: column; gap: 10px; align-items: center; }
}

/* ----- reduced motion: render all states statically ------- */
@media (prefers-reduced-motion: reduce) {
  .eq-line,
  .eq-answer,
  .eq-answer-label,
  .eq-caption {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .eq-answer-num::before,
  .eq-answer-num::after {
    transform: scaleX(1) !important;
    animation: none !important;
  }
}

/* ----------------------------------------------------------
   /warum-proscola · /en/why-proscola (positioning page)
   Three observations · three layers · unique capabilities ·
   comparison table · Swiss-made advantage.
   ---------------------------------------------------------- */

.warum-band {
  padding: clamp(56px, 7vw, 96px) 0;
}
.warum-band + .warum-band { border-top: 1px solid var(--pr-hairline); }
.warum-band.tint { background: var(--pr-paper-tint); border-top: none; }
.warum-band.tint + .warum-band { border-top: none; }

.warum-band .module-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pr-accent);
  margin: 0 0 12px;
}
.warum-band h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--pr-ink);
  margin: 0 0 16px;
  max-width: 22ch;
}
.warum-band .band-intro {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--pr-ink);
  opacity: 0.78;
  margin: 0 0 48px;
}

/* ----- three observations ------------------------------- */
.obs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.obs-card {
  position: relative;
  padding: 28px 24px 26px;
  border-radius: var(--pr-radius);
  background: var(--pr-paper);
  border: 1px solid var(--pr-hairline);
  border-top: 3px solid var(--obs-accent, var(--pr-accent));
  transition: transform var(--pr-transition), box-shadow var(--pr-transition);
}
.obs-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pr-shadow-md);
}
.obs-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--obs-accent, var(--pr-accent));
  margin: 0 0 10px;
}
.obs-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--pr-ink);
  line-height: 1.3;
  margin: 0 0 10px;
}
.obs-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--pr-ink);
  opacity: 0.78;
  margin: 0;
}
@media (max-width: 860px) { .obs-grid { grid-template-columns: 1fr; } }

/* ----- three layers ------------------------------------- */
.layers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.layer-card {
  position: relative;
  padding: 32px 28px 30px;
  border-radius: var(--pr-radius);
  background: var(--pr-paper);
  border: 1px solid var(--pr-hairline);
  border-top: 4px solid var(--layer-accent);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--pr-transition), box-shadow var(--pr-transition);
}
.layer-card.is-unique {
  border: 1px solid var(--layer-accent);
  border-top-width: 4px;
  background:
    linear-gradient(180deg, rgba(0, 170, 206, 0.04) 0%, transparent 60%),
    var(--pr-paper);
}
.layer-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pr-shadow-md);
}
.layer-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--layer-accent);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.layer-num .layer-flag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--layer-accent);
  color: var(--pr-paper);
  padding: 2px 8px;
  border-radius: 99px;
  text-transform: uppercase;
}
.layer-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--pr-ink);
  line-height: 1.2;
  margin: 4px 0 2px;
}
.layer-card > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--pr-ink);
  opacity: 0.78;
  margin: 0;
}
.layer-card ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.layer-card ul li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--pr-ink);
  opacity: 0.78;
  padding-left: 18px;
  position: relative;
}
.layer-card ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--layer-accent);
}
@media (max-width: 980px) { .layers-grid { grid-template-columns: 1fr; gap: 18px; } }

/* ----- eight unique capabilities ------------------------ */
.caps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cap-card {
  padding: 24px 22px 22px;
  border-radius: var(--pr-radius);
  background: var(--pr-paper);
  border: 1px solid var(--pr-hairline);
  transition: transform var(--pr-transition), box-shadow var(--pr-transition), border-color var(--pr-transition);
}
.cap-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pr-shadow-md);
  border-color: var(--cap-accent, var(--pr-accent));
}
.cap-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cap-accent, var(--pr-accent));
  margin-bottom: 14px;
}
.cap-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--pr-ink);
  line-height: 1.3;
  margin: 0 0 8px;
}
.cap-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--pr-ink);
  opacity: 0.74;
  margin: 0;
}
@media (max-width: 980px) { .caps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .caps-grid { grid-template-columns: 1fr; } }

/* ----- comparison table --------------------------------- */
.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--pr-radius);
  border: 1px solid var(--pr-hairline);
  background: var(--pr-paper);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--pr-font);
  font-size: 15px;
  min-width: 720px;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--pr-hairline);
  vertical-align: middle;
  line-height: 1.45;
  text-align: center;
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--pr-ink);
  padding-left: 22px;
  min-width: 240px;
}
.compare-table thead th {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pr-muted);
  background: var(--pr-paper-tint);
  border-bottom: 1px solid var(--pr-hairline);
  padding-block: 16px;
}
.compare-table thead th.col-ps {
  background: var(--pr-lavender);
  color: var(--pr-ink);
}
.compare-table td.col-ps { background: rgba(223, 222, 255, 0.28); }
.compare-table tr.grp td {
  background: var(--pr-paper-tint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pr-muted);
  padding: 10px 22px;
  text-align: left;
}
.compare-table tr.unique td:first-child { font-weight: 600; }
.compare-table tr.unique td.col-ps { background: rgba(223, 222, 255, 0.5); }
.compare-table tr:last-child td { border-bottom: none; }
.dot-y { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #58C20F; }
.dot-p { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #EFB94A; }
.dot-n { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--pr-hairline); border: 1px solid #D7D7E5; }
.u-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--pr-accent);
  color: var(--pr-paper);
  padding: 2px 7px;
  border-radius: 99px;
  margin-left: 8px;
  vertical-align: 1px;
}
.compare-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--pr-muted);
  align-items: center;
}
.compare-legend .legend-item { display: inline-flex; align-items: center; gap: 8px; }

/* ----- Swiss-made advantage ----------------------------- */
.swiss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.swiss-card {
  padding: 32px 28px;
  border-radius: var(--pr-radius);
  background: var(--pr-paper);
  border: 1px solid var(--pr-hairline);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--pr-transition), box-shadow var(--pr-transition);
}
.swiss-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pr-shadow-md);
}
.swiss-card.inverse {
  background: var(--pr-ink);
  border-color: var(--pr-ink);
}
.swiss-card.inverse h3,
.swiss-card.inverse p { color: var(--pr-paper); }
.swiss-card.inverse p { opacity: 0.78; }
.swiss-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--swiss-accent, var(--pr-accent));
}
.swiss-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--pr-ink);
  line-height: 1.25;
  margin: 0;
}
.swiss-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--pr-ink);
  opacity: 0.78;
  margin: 0;
}
.swiss-note {
  padding: 20px 24px;
  border-radius: var(--pr-radius);
  background: var(--pr-paper);
  border: 1px solid var(--pr-hairline);
  border-left: 3px solid var(--pr-accent);
  font-size: 15px;
  line-height: 1.6;
  color: var(--pr-ink);
}
@media (max-width: 860px) { .swiss-grid { grid-template-columns: 1fr; } }

/* ============================================================
   EOS α-Hero  (typographic-only, no image)
   Hero = the slogan. Mark = EOS at display scale, expansion in
   small caps below, slogan as the kicker, then CTAs and trust
   credentials. White surface. See feedback_catsky_pivot.md.
   ============================================================ */
.eos-hero {
  padding: clamp(80px, 11vw, 160px) 0 clamp(18px, 2.4vw, 32px);
  background: var(--pr-paper);
  text-align: center;
}
.eos-hero-mark {
  font-family: var(--pr-font);
  font-weight: 600;
  font-size: clamp(96px, 14vw, 200px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--pr-ink);
  margin: 0;
}
.eos-hero-expansion {
  margin: clamp(16px, 1.8vw, 24px) 0 clamp(40px, 5vw, 64px);
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pr-muted);
  font-weight: 500;
}
.eos-hero-slogan {
  font-family: var(--pr-font);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--pr-ink);
  margin: 0 auto clamp(40px, 5vw, 56px);
  max-width: 22ch;
}
.eos-hero-slogan .line { display: block; }
@media (max-width: 480px) {
  .eos-hero-slogan .line { display: inline; }
}
.eos-hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.4vw, 26px);
  margin: 0 0 clamp(56px, 7vw, 96px);
}
.eos-hero-login-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2.4vw, 28px);
  justify-content: center;
  align-items: center;
}
.eos-hero .trust-credentials {
  margin-top: 0;
  text-align: center;
}

/* ============================================================
   Manifesto  (typographic stance section — replaces Pillars-compact
   AND Unification on the homepage). Three movements separated by
   hairline rules. The lavender tint background comes from the
   body.home block rhythm above.
   ============================================================ */
.manifesto {
  padding: clamp(48px, 7vw, 96px) 0;
}
.manifesto-stack {
  max-width: 880px;
  margin: 0 auto;
}
.manifesto-movement {
  text-align: center;
  padding: clamp(48px, 7vw, 96px) 0;
}
.manifesto-movement + .manifesto-movement {
  border-top: 1px solid var(--pr-hairline);
}
.manifesto-eyebrow {
  margin: 0 0 clamp(20px, 2.4vw, 32px);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pr-muted);
  font-weight: 500;
}
.manifesto-h {
  font-family: var(--pr-font);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--pr-ink);
  margin: 0 auto clamp(20px, 2.5vw, 32px);
  max-width: 22ch;
}
.manifesto-h .line { display: block; }
@media (max-width: 520px) {
  .manifesto-h .line { display: inline; }
}
.manifesto-sub {
  font-family: var(--pr-font);
  font-weight: 400;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.5;
  color: var(--pr-ink);
  opacity: 0.72;
  margin: 0 auto;
  max-width: 36ch;
}
.manifesto-sub .line { display: block; }
@media (max-width: 520px) {
  .manifesto-sub .line { display: inline; }
}

/* ============================================================
   Klapp ◯ EOS ◯ ProScola — hero co-brand trinity.
   Logos are already round by composition (Klapp circle + ProScola
   four-disc constellation on lavender field). On the white page
   background, their white corners blend, so we don't clip or add
   our own background — let each mark stand on its own.
   ============================================================ */
.eos-hero-trinity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 64px);
  margin: 0 0 clamp(16px, 1.8vw, 24px);
}
.trinity-mark {
  width: clamp(72px, 9vw, 116px);
  height: clamp(72px, 9vw, 116px);
  display: block;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform var(--pr-transition);
}
.trinity-mark:hover {
  transform: translateY(-2px);
}
.trinity-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Refine hero top padding for the trinity row */
.eos-hero { padding-top: clamp(56px, 8vw, 96px); }
@media (max-width: 520px) {
  .eos-hero-trinity { gap: 16px; }
  .trinity-mark { width: 64px; height: 64px; }
}

/* ============================================================
   Hero availability line (Klapp SSO promise)
   ============================================================ */
.eos-hero-availability {
  font-family: var(--pr-font);
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--pr-muted);
  margin: 0 auto clamp(32px, 4vw, 48px);
  max-width: 40ch;
  line-height: 1.5;
  font-weight: 500;
}

/* ============================================================
   Hero trustmarks: 1'600+ Klapp-Schulen · Server · revDSG · KSM
   ============================================================ */
.eos-hero-trustmarks {
  list-style: none;
  padding: 0;
  margin: clamp(24px, 3vw, 40px) auto clamp(40px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--pr-muted);
  font-weight: 500;
}
.eos-hero-trustmarks li {
  position: relative;
  padding-right: 22px;
}
.eos-hero-trustmarks li::after {
  content: "·";
  position: absolute;
  right: 0;
  color: var(--pr-hairline);
  font-weight: 400;
}
.eos-hero-trustmarks li:last-child { padding-right: 0; }
.eos-hero-trustmarks li:last-child::after { content: ""; }

/* ============================================================
   For your school: Schulleitung band with KSM + footprint
   ============================================================ */
.for-your-school {
  padding: clamp(72px, 10vw, 128px) 0;
}
body.home .for-your-school { background: var(--pr-paper); }
.schule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 880px) {
  .schule-grid { grid-template-columns: 1fr; gap: 40px; }
}
.schule-eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pr-muted);
  font-weight: 500;
}
.schule-h {
  font-family: var(--pr-font);
  font-weight: 500;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--pr-ink);
  margin: 0 0 clamp(20px, 2.5vw, 28px);
  max-width: 22ch;
}
.schule-h .line { display: block; }
@media (max-width: 520px) { .schule-h .line { display: inline; } }
.schule-sub {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--pr-ink);
  opacity: 0.78;
  margin: 0 0 clamp(28px, 3vw, 36px);
  max-width: 42ch;
}
.schule-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.schule-proof {
  padding: clamp(28px, 4vw, 40px);
  background: var(--pr-paper-tint-lavender);
  border-radius: var(--pr-radius-lg);
  border: 1px solid var(--pr-hairline);
}
.schule-quote {
  margin: 0 0 clamp(24px, 3vw, 32px);
  padding: 0 0 clamp(20px, 2.5vw, 28px);
  border-bottom: 1px solid var(--pr-hairline);
}
.schule-quote blockquote {
  margin: 0 0 14px;
  font-family: var(--pr-font);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.4;
  font-weight: 500;
  color: var(--pr-ink);
  letter-spacing: -0.01em;
}
.schule-quote blockquote p { margin: 0; }
.schule-quote figcaption {
  font-size: 13px;
  color: var(--pr-muted);
  letter-spacing: 0.04em;
}
.schule-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.schule-stats li {
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.schule-stats li strong {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  color: var(--pr-ink);
  letter-spacing: -0.02em;
  min-width: 4ch;
  white-space: nowrap;
}
.schule-stats li span {
  font-size: 14px;
  color: var(--pr-ink);
  opacity: 0.78;
  line-height: 1.4;
}
.schule-math-lead {
  margin: 0 0 clamp(20px, 2.6vw, 28px);
  font-size: 14px;
  line-height: 1.55;
  color: var(--pr-ink);
  opacity: 0.62;
}
.schule-figure {
  margin: 0 0 clamp(24px, 3vw, 32px);
  padding: 0 0 clamp(22px, 2.8vw, 30px);
  border-bottom: 1px solid var(--pr-hairline);
}
.schule-figure-num {
  display: block;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--pr-ring-teal);
}
.schule-figure-label {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--pr-ink);
  opacity: 0.72;
  max-width: 30ch;
}
.schule-example {
  margin: 0;
  padding: 0;
  border-top: 0;
}
.schule-example figcaption {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pr-muted);
}
.schule-example p {
  margin: 0;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.5;
  color: var(--pr-ink);
}

/* ============================================================
   Pricing: Schools tier (featured top, full-row)
   ============================================================ */
.pricing-school {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(32px, 4vw, 48px);
  margin: 0 0 clamp(36px, 4vw, 48px);
  background: var(--pr-paper);
  border: 1px solid var(--pr-hairline);
  border-radius: var(--pr-radius-lg);
  align-items: start;
}
@media (max-width: 880px) {
  .pricing-school { grid-template-columns: 1fr; gap: 28px; }
}
.pricing-school-head h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  color: var(--pr-ink);
  margin: 12px 0 8px;
  letter-spacing: -0.01em;
}
.pricing-school-head .tier-tag {
  font-size: 15px;
  color: var(--pr-muted);
  margin: 0;
  line-height: 1.5;
}
.pricing-school-head .cb-x {
  color: var(--pr-muted);
  font-weight: 400;
  margin: 0 6px;
}
.pricing-badge-school {
  background: var(--pr-ink) !important;
  color: var(--pr-paper) !important;
}
.pricing-school-body .price { margin: 0 0 24px; }
.pricing-school-body .price .amount {
  display: block;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  color: var(--pr-ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.pricing-school-body .price .period {
  display: block;
  font-size: 14px;
  color: var(--pr-muted);
  margin-top: 8px;
}
.pricing-school-body .pricing-features { margin: 0 0 24px; }
.pricing-divider {
  text-align: center;
  font-size: 14px;
  color: var(--pr-muted);
  letter-spacing: 0.04em;
  margin: clamp(32px, 4vw, 48px) 0 clamp(24px, 3vw, 32px);
}

/* ============================================================
   Closing CTA dual button row
   ============================================================ */
.closing-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ============================================================
   Creative-example demoted lesson card (Change 2 2026-06-02).
   The pyramid lesson sits as a small caption block above the
   PDF, no longer competing with the benefit-led H2.
   ============================================================ */
.ch-example {
  margin: 0 auto clamp(20px, 2.5vw, 32px);
  max-width: 720px;
  text-align: center;
}
.ch-example-eyebrow {
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pr-muted);
  font-weight: 500;
}
.ch-example-sub {
  margin: 0 0 6px;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 600;
  color: var(--pr-ink);
}
.ch-example-name {
  margin: 0 0 14px;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 600;
  color: var(--pr-ink);
}

/* ============================================================
   HUB360 · Report Generation Assistant (Change 4 2026-06-02).
   Image-led proof of what HUB360 produces. Pairs with time-math
   (the savings) by sharing the lavender HUB360 family backdrop.
   ============================================================ */
.report-assistant {
  padding: clamp(20px, 3vw, 36px) 0 clamp(48px, 7vw, 80px);
}
.report-assistant .container {
  background: var(--pr-paper-tint-lavender);
  border: 1px solid var(--pr-hairline);
  border-radius: var(--pr-radius-lg);
  padding: clamp(36px, 5vw, 64px);
}
.report-h {
  font-family: var(--pr-font);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--pr-ink);
  margin: 0 0 clamp(16px, 1.8vw, 24px);
  text-align: center;
}
.report-sub {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--pr-ink);
  opacity: 0.72;
  margin: 0 auto clamp(32px, 4vw, 48px);
  max-width: 56ch;
  text-align: center;
  line-height: 1.5;
}
.report-image {
  margin: 0;
  border-radius: var(--pr-radius-lg);
  overflow: hidden;
  border: 1px solid var(--pr-hairline);
  box-shadow: var(--pr-shadow-md);
  background: var(--pr-paper);
}
.report-image img {
  display: block;
  width: 100%;
  height: auto;
}
.report-assistant .module-tag {
  text-align: center;
  margin-bottom: clamp(12px, 1.4vw, 16px);
}

/* ============================================================
   Intro + two-pillar overview, unified (homepage)
   Lead-in → hero title → welcome, then a reveal box holding the
   "Zuerst" heading and the two pillar cards.
   ============================================================ */
.intro-pillars {
  padding: clamp(18px, 2.4vw, 32px) 0 clamp(40px, 5vw, 64px);
  background: var(--pr-paper);
}
.intro-pillars .container { max-width: 1120px; }
.ip-lead {
  text-align: center;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 600;
  color: var(--pr-ink);
  letter-spacing: -0.01em;
  margin: 0 0 clamp(16px, 2.2vw, 26px);
  text-wrap: balance;
}
.ip-title {
  text-align: center;
  font-family: var(--pr-font);
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--pr-ink);
  margin: 0 0 clamp(16px, 2.2vw, 26px);
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.6vw, 8px);
  text-wrap: balance;
}
.ip-title .line { display: block; }
.ip-welcome {
  text-align: center;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--pr-ink);
  opacity: 0.78;
  max-width: 48ch;
  margin: 0 auto clamp(36px, 5.5vw, 64px);
  text-wrap: pretty;
}
.ip-box {
  background: var(--pr-paper-tint-lavender);
  border: 1px solid var(--pr-hairline);
  border-radius: 28px;
  padding: clamp(32px, 4.5vw, 60px) clamp(22px, 3.6vw, 52px);
}
.ip-box-head {
  text-align: center;
  max-width: 44ch;
  margin: 0 auto clamp(32px, 4.5vw, 52px);
}
.ip-reveal-h {
  font-family: var(--pr-font);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--pr-ink);
  margin: 0 0 12px;
  text-wrap: balance;
}
.ip-reveal-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
  color: var(--pr-ink);
  opacity: 0.78;
  margin: 0;
}
.ip-box .pillar-card {
  background: var(--pr-paper);
  box-shadow: var(--pr-shadow-sm);
}

/* ============================================================
   Two-pillar overview cards: Lernpfade × HUB 360 (homepage)
   ============================================================ */
.pillars-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.4vw, 30px);
  align-items: stretch;
}
@media (max-width: 760px) {
  .pillars-overview-grid { grid-template-columns: 1fr; }
}
.pillar-card {
  --pillar-accent: var(--pr-accent);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
  background: var(--pr-paper);
  border: 1px solid var(--pr-hairline);
  border-radius: var(--pr-radius-lg);
  border-top: 3px solid var(--pillar-accent);
  color: var(--pr-ink);
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--pr-transition), box-shadow var(--pr-transition),
              border-color var(--pr-transition);
}
.pillar-card:hover,
.pillar-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--pr-shadow-md);
  border-color: var(--pillar-accent);
  color: var(--pr-ink);
}
.pillar-lernpfade { --pillar-accent: var(--pr-ring-teal); }
.pillar-hub360 { --pillar-accent: var(--pr-ring-orange); }
.pillar-card-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 0 0 16px;
}
.pillar-index {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--pillar-accent);
  opacity: 0.26;
}
.pillar-phase {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pr-muted);
}
.pillar-name {
  font-family: var(--pr-font);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--pr-ink);
  margin: 0 0 12px;
}
.pillar-desc {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
  color: var(--pr-ink);
  opacity: 0.82;
  margin: 0 0 16px;
  max-width: 40ch;
}
/* Restore breathing room before the bullet list on the overview cards
   (the legacy `.pillar-card p { margin:0 }` rule was winning on specificity). */
.pillars-overview-grid .pillar-desc,
.deep-card .pillar-desc { margin-bottom: 20px; }
.pillar-points {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pillar-points li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--pr-ink);
  opacity: 0.9;
}
.pillar-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pillar-accent);
}
.pillar-more {
  margin-top: auto;
  font-size: 15px;
  font-weight: 600;
  color: var(--pillar-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pillar-more .arrow { transition: transform var(--pr-transition); }
.pillar-card:hover .pillar-more .arrow,
.pillar-card:focus-visible .pillar-more .arrow { transform: translateY(3px); }

#lernpfade-detail, #hub360-detail { scroll-margin-top: 88px; }

/* ============================================================
   Deep-dive cards: Lernpfade (01) × HUB 360 (02), side by side.
   Echo the pillar overview cards; report-assistant box follows.
   ============================================================ */
.deep-dives {
  padding: clamp(40px, 5vw, 72px) 0 clamp(20px, 3vw, 36px);
  background: var(--pr-paper);
}
.deep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  align-items: start;
}
@media (max-width: 880px) {
  .deep-grid { grid-template-columns: 1fr; }
}
.deep-card {
  --pillar-accent: var(--pr-accent);
  background: var(--pr-paper-tint-lavender);
  border: 1px solid var(--pr-hairline);
  border-radius: var(--pr-radius-lg);
  border-top: 3px solid var(--pillar-accent);
  padding: clamp(28px, 3.4vw, 48px);
}
.deep-lernpfade { --pillar-accent: var(--pr-ring-teal); }
.deep-hub360 { --pillar-accent: var(--pr-ring-orange); }
.deep-card-head { margin: 0 0 clamp(22px, 2.8vw, 32px); }
.deep-card-head .pillar-card-head { margin-bottom: 12px; }

/* Unify both deep cards: left-aligned, one shared type scale */
.deep-card .creative-hero,
.deep-card .time-math-content { text-align: left; }
.deep-card .ch-kicker {
  font-size: clamp(15px, 1.45vw, 17px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--pr-ink);
  opacity: 0.66;
  margin: 0 0 12px;
}
.deep-card .ch-title,
.deep-card .time-math-heading {
  font-family: var(--pr-font);
  font-weight: 600;
  font-size: clamp(25px, 2.9vw, 36px);
  line-height: 1.14;
  letter-spacing: -0.018em;
  color: var(--pr-ink);
  margin: 0 0 clamp(16px, 2vw, 22px);
}
.deep-card .time-math-cred {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
  margin: 0 0 clamp(20px, 2.6vw, 28px);
}
.deep-card .ch-image { text-align: left; margin: 0; max-width: none; }
.deep-card .ch-example { text-align: left; }
.deep-card .ch-meta { justify-content: flex-start; margin-top: clamp(20px, 2.5vw, 28px); }
.deep-card .ch-image-card { margin-left: 0; margin-right: 0; }
.deep-card .ch-image figcaption { text-align: left; }
.deep-card .ch-closing {
  text-align: left;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 600;
  margin-top: clamp(20px, 2.6vw, 30px);
}

/* ============================================================
   Unified pillar cards (homepage): one card per pillar =
   summary (head + description + key points) ─ divider ─ proof.
   Replaces the duplicated overview + deep-dive card pairs.
   ============================================================ */
.deep-intro {
  text-align: center;
  max-width: 48ch;
  margin: 0 auto clamp(34px, 4.5vw, 56px);
}
.deep-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pr-accent);
  margin: 0 0 clamp(12px, 1.4vw, 16px);
}
.deep-h {
  font-family: var(--pr-font);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--pr-ink);
  margin: 0 0 12px;
  text-wrap: balance;
}
.deep-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
  color: var(--pr-ink);
  opacity: 0.78;
  margin: 0;
}
/* Summary block (head + desc + key points) divided from the proof below */
.deep-card-head {
  margin: 0 0 clamp(26px, 3.2vw, 36px);
  padding-bottom: clamp(22px, 2.8vw, 30px);
  border-bottom: 1px solid var(--pr-hairline);
}
.deep-card-head .pillar-name { margin: 0 0 clamp(14px, 1.8vw, 18px); }
.deep-card-head .pillar-points { margin-bottom: 0; }
.deep-card-head .pillar-points li { font-size: 16px; opacity: 0.9; }
/* Left-align + unify the HUB 360 card's report proof (the EN page does this via
   an inline tweak block; these shared rules give the DE page the same result). */
.deep-card .module-tag {
  text-align: left;
  font-size: clamp(15px, 1.45vw, 17px);
  margin: 0 0 12px;
}
.deep-card .report-h {
  text-align: left;
  font-size: clamp(25px, 2.9vw, 36px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.018em;
  margin: 0 0 clamp(16px, 2vw, 22px);
}
.deep-card .report-sub {
  text-align: left;
  max-width: none;
  margin: 0 0 clamp(20px, 2.6vw, 28px);
}
.deep-card .report-image { margin: 0; max-width: 100%; }

/* ----- motion guardrail --------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0ms !important;
    transition-duration: 0ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
