
  :root {
    --bg-cream:       #f5f1e8;
    --bg-cream-warm:  #ede6d6;
    --bg-cream-card:  #ffffff;
    --bg-charcoal:    #1a1d24;
    --text-primary:   #1d2330;
    --text-secondary: #5a6573;
    --text-muted:     #8a93a0;
    --text-on-dark:   #f5f1e8;
    --accent-burgundy: #8b2942;
    --accent-burgundy-soft: #a44a5e;
    --hairline:       #d4cfc1;
    --divider-light:  #e3ddcd;
    --hairline-dark:  #3a3f4a;
  }

  /* v92 — Liegenschaften.ch marks itself with a warmer sandbeige palette so
     the switch between the consumer marketplace (Immobilien.ch, cream) and
     the institutional deal platform (Liegenschaften.ch) is instantly felt.
     Only the two cream tones change — Burgundy, Charcoal and text colours
     stay intact so the visual identity remains one family, just deeper. */
  html[data-brand="lie"],
  [data-brand="lie"] {
    --bg-cream:      #efe6d4;
    --bg-cream-warm: #e6ddc8;
    --bg-cream-card: #ebe3d0;
    --divider-light: #ddd3bd;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    color: var(--text-primary);
    background: var(--bg-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    /* v92: sanft (400ms) fade when the brand attribute flips */
    transition: background-color 400ms cubic-bezier(0.22, 1, 0.36, 1),
                color 400ms ease;
  }

  /* v92: When Liegenschaften.ch is active, the white/cream cards adopt the
     darker sandbeige tone. Transition is smooth so the whole page shifts as
     one motion. Modals (which need pure white for contrast) are excluded. */
  [data-brand="lie"] .tech-hero-card,
  [data-brand="lie"] .timeline-detail,
  [data-brand="lie"] .preview-card,
  [data-brand="lie"] .crm-showcase,
  [data-brand="lie"] .milestone-card,
  [data-brand="lie"] .tpb-panel,
  [data-brand="lie"] .tpa-cell,
  [data-brand="lie"] .tpd-tile,
  [data-brand="lie"] .tpe-item,
  [data-brand="lie"] .dialogue-card,
  [data-brand="lie"] .timeline-console {
    background: var(--bg-cream-card);
    transition: background-color 400ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  /* Topbar keeps its subtle blur but syncs the tint */
  [data-brand="lie"] .topbar {
    background: rgba(239, 230, 212, 0.92);
    transition: background-color 400ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  [data-brand="lie"] .brand-toggle-mobile {
    background: rgba(239, 230, 212, 0.94);
    transition: background-color 400ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  /* Also smooth the transition on hairlines / dividers */
  [data-brand] .topbar,
  [data-brand] .brand-toggle-mobile {
    transition: background-color 400ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  a { color: inherit; text-decoration: none; }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* ===== Top Bar ===== */
  .topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(245, 241, 232, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--hairline);
  }
  .topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 0.18em;
    color: var(--text-primary);
  }
  .brand .dot { color: var(--accent-burgundy); }
  .brand .grp {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.35em;
    margin-left: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
  }
  .topbar-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--text-secondary);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-burgundy);
    animation: pulse 2.4s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(1.35); }
  }

  /* ===== HERO (dark, with vintage villa background) ===== */
  .hero {
    position: relative;
    padding: 200px 0 140px;
    background:
      linear-gradient(
        180deg,
        rgba(20, 24, 38, 0.72) 0%,
        rgba(20, 24, 38, 0.62) 45%,
        rgba(20, 24, 38, 0.86) 100%
      ),
      url('hero.webp') center / cover no-repeat,
      url('hero.jpg') center / cover no-repeat;
    background-color: #141826;
    border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  }
  .hero-eyebrow {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent-burgundy-soft, #c08a99);
    margin-bottom: 28px;
  }
  .hero-rule {
    width: 64px;
    height: 1px;
    background: var(--accent-burgundy-soft, #c08a99);
    margin-bottom: 32px;
  }
  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(42px, 6vw, 84px);
    line-height: 1.04;
    letter-spacing: -0.018em;
    color: var(--text-on-dark);
    max-width: 980px;
    margin-bottom: 36px;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--accent-burgundy-soft, #d4a0ae);
  }
  .hero-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.5;
    color: rgba(245, 241, 232, 0.82);
    max-width: 720px;
  }
  .hero-meta {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    flex-wrap: wrap;
  }
  .meta-item {
    font-family: 'Inter Tight', sans-serif;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-secondary);
  }
  .meta-item strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 26px;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--text-primary);
    margin-top: 4px;
  }
  /* Hero is dark — invert text colors for meta items inside hero */
  .hero .meta-item { color: rgba(245, 241, 232, 0.62); }
  .hero .meta-item strong { color: var(--text-on-dark); }

  /* ===== Section title ===== */
  .section {
    padding: 110px 0;
    border-bottom: 1px solid var(--hairline);
  }
  .section-eyebrow {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
    max-width: 880px;
  }
  .section-lead {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 720px;
    margin-bottom: 64px;
  }

  /* ===== Pillars ===== */
  .pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--hairline);
    margin-top: 24px;
  }
  .pillar {
    background: var(--bg-cream);
    padding: 48px 40px 56px;
  }
  .pillar-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--accent-burgundy);
    margin-bottom: 24px;
  }
  .pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    color: var(--text-primary);
  }
  .pillar-body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
  }
  .pillar-tag {
    display: inline-block;
    margin-top: 20px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    padding-top: 16px;
    border-top: 1px solid var(--divider-light);
    width: 100%;
  }

  /* ===== Roadmap ===== */
  .roadmap-section {
    background: var(--bg-cream-warm);
  }
  .roadmap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline);
    margin-top: 24px;
    position: relative;
  }
  .roadmap-item {
    background: var(--bg-cream);
    padding: 44px 36px 56px;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .roadmap-item.rm-highlight {
    background: var(--bg-charcoal);
    color: var(--text-on-dark);
  }
  .rm-phase-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--accent-burgundy);
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .rm-highlight .rm-phase-label { color: var(--accent-burgundy-soft); }
  .rm-period {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.015em;
    color: var(--text-primary);
    margin-bottom: 20px;
  }
  .rm-highlight .rm-period { color: var(--text-on-dark); }
  .rm-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 22px;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--divider-light);
  }
  .rm-highlight .rm-title {
    color: var(--text-on-dark);
    border-bottom-color: var(--hairline-dark);
  }
  .rm-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
    flex: 1;
  }
  .rm-highlight .rm-list { color: var(--text-muted); }
  .rm-list li {
    padding: 8px 0 8px 18px;
    position: relative;
  }
  .rm-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 8px;
    height: 1px;
    background: var(--accent-burgundy);
  }
  .rm-highlight .rm-list li::before { background: var(--accent-burgundy-soft); }
  .rm-tag {
    align-self: flex-start;
    font-family: 'Inter Tight', sans-serif;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    padding-top: 14px;
    border-top: 1px solid var(--divider-light);
    width: 100%;
  }
  .rm-highlight .rm-tag {
    color: var(--accent-burgundy-soft);
    border-top-color: var(--hairline-dark);
  }
  .roadmap-note {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-top: 32px;
    max-width: 720px;
  }

  /* ===== Founder ===== */
  .founder-section {
    background: var(--bg-charcoal);
    color: var(--text-on-dark);
    padding: 110px 0;
  }
  .founder-section .section-eyebrow {
    color: var(--accent-burgundy-soft);
  }
  .founder-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
  }
  .founder-portrait {
    width: 320px;
    height: 380px;
    overflow: hidden;
    background: #2a2f3a;
    border: 1px solid var(--hairline-dark);
  }
  .founder-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.02);
    display: block;
  }
  .founder-name {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent-burgundy-soft);
    margin-top: 20px;
    margin-bottom: 6px;
  }
  .founder-portrait-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 22px;
    color: var(--text-on-dark);
    letter-spacing: -0.01em;
  }
  .founder-quote {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(26px, 2.4vw, 34px);
    line-height: 1.35;
    color: var(--text-on-dark);
    letter-spacing: -0.01em;
    margin-bottom: 32px;
  }
  .founder-quote::before {
    content: "„";
    font-size: 1.4em;
    color: var(--accent-burgundy-soft);
    line-height: 0;
    vertical-align: -0.18em;
    margin-right: 4px;
  }
  .founder-quote::after {
    content: """;
    color: var(--accent-burgundy-soft);
    margin-left: 2px;
  }
  .founder-quote-values {
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.4;
    color: var(--accent-burgundy-soft);
    margin-top: -12px;
    margin-bottom: 36px;
    padding-left: 16px;
    border-left: 2px solid var(--accent-burgundy-soft);
  }
  .founder-quote-values::before,
  .founder-quote-values::after { content: none; }
  .founder-bio {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 620px;
  }
  .founder-bio strong { color: var(--text-on-dark); font-weight: 500; }

  /* ===== Timeline mini ===== */
  .timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 1fr;
    gap: 1px;
    background: var(--hairline);
    margin-top: 48px;
  }
  .tl-item {
    background: var(--bg-cream);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
  }
  /* Upcoming items dimmed to ~80% to indicate future state */
  .tl-item-upcoming {
    opacity: 0.80;
  }
  .tl-year {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--accent-burgundy);
    margin-bottom: 12px;
  }
  .tl-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 19px;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 8px;
  }
  .tl-body {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
  }

  /* ===== Contact ===== */
  .contact {
    padding: 130px 0 110px;
    text-align: left;
  }
  .contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(38px, 4.5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.018em;
    margin-bottom: 28px;
    max-width: 880px;
  }
  .contact-title em { font-style: italic; color: var(--accent-burgundy); }
  .contact-lead {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 640px;
    margin-bottom: 48px;
  }
  .contact-card {
    display: inline-block;
    border: 1px solid var(--hairline);
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.4);
  }
  .contact-label {
    font-family: 'Inter Tight', sans-serif;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 10px;
  }
  .contact-email {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 30px;
    color: var(--accent-burgundy);
    letter-spacing: -0.01em;
  }
  .contact-email:hover { color: var(--text-primary); }
  .contact-note {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 380px;
    line-height: 1.5;
  }

  /* ===== Footer ===== */
  .footer {
    border-top: 1px solid var(--hairline);
    padding: 40px 0;
    background: var(--bg-cream-warm);
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
  }
  .footer-legal {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.5;
  }

  /* ===== Responsive ===== */
  @media (max-width: 860px) {
    .container, .topbar-inner, .footer-inner { padding: 0 24px; }
    .topbar-inner { padding: 14px 24px; }
    .hero { padding: 140px 0 80px; }
    .section, .founder-section, .contact { padding: 70px 0; }
    .pillars { grid-template-columns: 1fr; }
    .roadmap { grid-template-columns: 1fr; }
    .timeline { grid-template-columns: repeat(2, 1fr); }
    .founder-grid { grid-template-columns: 1fr; gap: 48px; }
    .founder-portrait { width: 100%; max-width: 320px; height: auto; aspect-ratio: 4/5; }
    .hero-meta { gap: 32px; }
    .topbar-status { display: none; }
  }
  @media (max-width: 1100px) {
    .timeline { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 720px) {
    .timeline { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .timeline { grid-template-columns: 1fr; }
  }

  /* ===== Founder Credibility Anchors (under portrait/name) ===== */
  .credibility-anchors {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--hairline-dark);
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .cred-anchor {
    display: flex;
    align-items: baseline;
    gap: 14px;
  }
  .cred-anchor-year {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--accent-burgundy-soft);
    min-width: 38px;
  }
  .cred-anchor-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-muted);
    flex: 1;
  }
  .cred-anchor-text strong {
    color: var(--text-on-dark);
    font-weight: 500;
  }

  /* ===== Language Switcher ===== */
  .lang-switch {
    font-family: 'Inter Tight', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .lang-switch a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
    padding: 4px 2px;
  }
  .lang-switch a:hover { color: var(--text-primary); }
  .lang-switch a.active {
    color: var(--accent-burgundy);
    font-weight: 600;
    border-bottom: 1px solid var(--accent-burgundy);
  }
  .lang-divider {
    color: var(--hairline);
    user-select: none;
  }
  @media (max-width: 860px) {
    .lang-switch { font-size: 10px; gap: 6px; letter-spacing: 0.16em; }
  }

  /* ============================================================
     EXPANDED SECTIONS — Why now · Principles · Platform-coming
     Market · History · Dialogues · Press
     ============================================================ */

  /* ===== Generic 4-card grid (used by "Warum jetzt" and "Markt & Perspektive") ===== */
  .reason-grid, .market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--hairline);
    margin-top: 40px;
  }
  .reason-card, .market-card {
    background: var(--bg-cream);
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    min-height: 200px;
  }
  .reason-num, .market-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.20em;
    color: var(--accent-burgundy);
    margin-bottom: 18px;
  }
  .reason-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .reason-body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
    flex: 1;
  }
  .market-value {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 32px;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .market-caption {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
  }
  @media (max-width: 980px) {
    .reason-grid, .market-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 520px) {
    .reason-grid, .market-grid { grid-template-columns: 1fr; }
  }

  /* ===== Principles — 6 card grid (3×2) ===== */
  .principle-section { background: var(--bg-cream-warm); }
  .principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline);
    margin-top: 40px;
  }
  .principle-card {
    background: var(--bg-cream);
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    min-height: 200px;
  }
  .principle-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.20em;
    color: var(--accent-burgundy);
    margin-bottom: 18px;
  }
  .principle-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.005em;
  }
  .principle-body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
    flex: 1;
  }
  @media (max-width: 980px) {
    .principles-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 520px) {
    .principles-grid { grid-template-columns: 1fr; }
  }

  /* ===== Platform "coming" cards (6 placeholders) ===== */
  .platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline);
    margin-top: 40px;
  }
  .platform-card {
    background: var(--bg-cream);
    padding: 40px 32px 36px;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    position: relative;
    transition: border-color 0.3s ease;
  }
  .platform-card-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--hairline);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--accent-burgundy);
    margin-bottom: 22px;
  }
  .platform-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.005em;
  }
  .platform-card-status {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--divider-light);
  }
  @media (max-width: 980px) {
    .platform-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 520px) {
    .platform-grid { grid-template-columns: 1fr; }
  }

  /* ===== Domain history extended timeline (6 points) ===== */
  .history-section { background: var(--bg-cream-warm); }
  .history-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--hairline);
    margin-top: 40px;
  }
  .history-item {
    background: var(--bg-cream);
    padding: 28px 22px 32px;
  }
  .history-year {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.10em;
    color: var(--accent-burgundy);
    margin-bottom: 10px;
  }
  .history-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.005em;
  }
  .history-body {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-secondary);
  }
  @media (max-width: 1100px) {
    .history-timeline { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 720px) {
    .history-timeline { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .history-timeline { grid-template-columns: 1fr; }
  }

  /* ============================================================
     STRATEGIC DIALOGUES — 6 target-audience cards (market-card style)
     ============================================================ */
  .dialogue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline);
    margin-top: 40px;
  }
  .dialogue-card {
    background: var(--bg-cream);
    padding: 32px 30px 34px;
  }
  .dialogue-label {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    margin-bottom: 14px;
  }
  .dialogue-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 12px;
  }
  .dialogue-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0;
  }
  @media (max-width: 980px) {
    .dialogue-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .dialogue-grid { grid-template-columns: 1fr; }
  }

  /* ===== Press & history — 3 cards ===== */
  .press-section { background: var(--bg-cream-warm); }
  .press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline);
    margin-top: 40px;
  }
  .press-card {
    background: var(--bg-cream);
    padding: 40px 32px 36px;
    display: flex;
    flex-direction: column;
    min-height: 200px;
  }
  .press-label {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    margin-bottom: 16px;
  }
  .press-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.005em;
  }
  .press-placeholder {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--divider-light);
  }
  .press-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 18px;
    line-height: 1.3;
    color: var(--accent-burgundy);
    margin-bottom: 14px;
    letter-spacing: -0.005em;
  }
  .press-body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex: 1;
  }
  .press-updating {
    font-family: 'Inter Tight', sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--divider-light);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .press-updating::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-burgundy);
    display: inline-block;
    flex-shrink: 0;
    animation: pulse 2.4s ease-in-out infinite;
  }
  @media (max-width: 980px) {
    .press-grid { grid-template-columns: 1fr; }
  }

  /* ============================================================
     DUAL-BRAND SYSTEM — Toggle, Cards, data-brand visibility
     ============================================================ */

  /* Default: while no brand attribute yet, hide brand-specific content */
  [data-brand-show] { display: none; }
  [data-brand="imm"] [data-brand-show="imm"],
  [data-brand="lie"] [data-brand-show="lie"] { display: inherit; }
  /* Block-level rule for elements where 'inherit' would be incorrect */
  [data-brand="imm"] li[data-brand-show="imm"],
  [data-brand="lie"] li[data-brand-show="lie"] { display: list-item; }
  [data-brand="imm"] div[data-brand-show="imm"],
  [data-brand="imm"] p[data-brand-show="imm"],
  [data-brand="imm"] span[data-brand-show="imm"],
  [data-brand="imm"] section[data-brand-show="imm"],
  [data-brand="imm"] a[data-brand-show="imm"],
  [data-brand="lie"] div[data-brand-show="lie"],
  [data-brand="lie"] p[data-brand-show="lie"],
  [data-brand="lie"] span[data-brand-show="lie"],
  [data-brand="lie"] section[data-brand-show="lie"],
  [data-brand="lie"] a[data-brand-show="lie"] { display: block; }
  [data-brand="imm"] span[data-brand-show="imm"],
  [data-brand="lie"] span[data-brand-show="lie"] { display: inline; }

  /* ===== Brand Toggle in Topbar ===== */
  .brand-toggle {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: 14px;
    letter-spacing: 0.10em;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
  }
  .brand-toggle a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
    padding: 4px 2px;
  }
  .brand-toggle a:hover { color: var(--text-primary); }
  .brand-toggle a.active {
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.12em;
  }
  .brand-toggle .toggle-divider {
    color: var(--hairline);
    font-size: 16px;
    user-select: none;
  }
  @media (max-width: 1100px) {
    .brand-toggle { font-size: 12px; gap: 8px; letter-spacing: 0.08em; }
  }
  /* ============================================================
     Mobile Brand Toggle Mini-Bar (under topbar)
     Default: hidden on desktop; revealed at <= 720px via media query.
     IMPORTANT: default rule MUST come BEFORE the media query so that
     the media query's display:flex can override it on mobile.
     ============================================================ */
  .brand-toggle-mobile {
    display: none;
    position: fixed;
    top: 53px;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(245, 241, 232, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--hairline);
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: 13px;
    letter-spacing: 0.10em;
  }
  .brand-toggle-mobile a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
    padding: 2px 4px;
  }
  .brand-toggle-mobile a:hover { color: var(--text-primary); }
  .brand-toggle-mobile a.active {
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.12em;
  }
  .brand-toggle-mobile .toggle-divider {
    color: var(--hairline);
    font-size: 14px;
    user-select: none;
  }

  /* On smartphone portrait: hide in-topbar toggle, show standalone mini-bar */
  @media (max-width: 720px) {
    .topbar-inner .brand-toggle { display: none; }
    .brand-toggle-mobile { display: flex; }
    /* Reduce font-size on very small screens so both brand names fit one line */
    .hero { padding-top: 140px; }
  }
  @media (max-width: 420px) {
    .brand-toggle-mobile { font-size: 11px; gap: 6px; padding: 9px 10px; }
    .brand-toggle-mobile a.active { letter-spacing: 0.08em; }
    .brand-toggle-mobile .toggle-divider { font-size: 12px; }
  }
  @media (max-width: 360px) {
    .brand-toggle-mobile { font-size: 10px; gap: 5px; padding: 9px 8px; letter-spacing: 0.06em; }
    .brand-toggle-mobile a.active { letter-spacing: 0.06em; }
  }

  /* ===== Dual-Brand Section (between Hero and Pillars) ===== */
  .dual-brand-section {
    background: var(--bg-cream-warm);
    padding: 90px 0 100px;
    border-bottom: 1px solid var(--hairline);
  }
  .dual-brand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 40px;
  }
  .brand-card {
    background: var(--bg-cream);
    border: 1px solid var(--hairline);
    padding: 44px 40px 40px;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .brand-card.is-active {
    border-color: var(--accent-burgundy);
    border-width: 1px;
    box-shadow: 0 0 0 1px var(--accent-burgundy);
  }
  .brand-card:hover {
    transform: translateY(-2px);
  }
  .brand-card-here {
    position: absolute;
    top: -10px;
    left: 40px;
    background: var(--accent-burgundy);
    color: var(--bg-cream);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 5px 10px;
  }
  .brand-card-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 28px;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 6px;
  }
  .brand-card-tagline {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    margin-bottom: 22px;
  }
  .brand-card-body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 28px;
    flex: 1;
  }
  .brand-card-audience {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    border-top: 1px solid var(--divider-light);
    padding-top: 18px;
    margin-bottom: 22px;
  }
  .brand-card-audience strong {
    color: var(--text-primary);
    font-weight: 500;
  }
  .brand-card-cta {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    align-self: flex-start;
    transition: color 0.2s ease, gap 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .brand-card-cta:hover {
    color: var(--text-primary);
    gap: 12px;
  }
  .brand-card-cta.is-here {
    color: var(--text-muted);
    cursor: default;
    pointer-events: none;
  }
  .brand-card-cta-arrow {
    font-size: 16px;
    line-height: 1;
  }
  @media (max-width: 860px) {
    .dual-brand-grid { grid-template-columns: 1fr; gap: 20px; }
    .dual-brand-section { padding: 60px 0 70px; }
  }

  /* ============================================================
     BRAND TYPE — Domain names as marks
     ============================================================ */

  /* Marken-Name in Versalien (IMMOBILIEN.CH / LIEGENSCHAFTEN.CH) */
  .brand-name {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-weight: 500;
    font-size: 1.06em;
    letter-spacing: 0.02em;
    color: inherit;
    white-space: nowrap;
  }

  /* Domain-URL in Kleinbuchstaben (immobilien.ch / liegenschaften.ch in Bio) */
  .brand-url {
    font-weight: 500;
    color: inherit;
    white-space: nowrap;
  }

  /* ============================================================
     SCROLLYTELLING — Stagger + Fade-In
     ============================================================ */

  /* Pageload Hero Fade-In ─ subtil, edel */
  @keyframes heroFadeIn {
    0%   { opacity: 0; transform: translateY(12px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow {
    opacity: 0;
    animation: heroFadeIn 0.9s ease-out 0.1s forwards;
  }
  .hero-rule {
    opacity: 0;
    animation: heroFadeIn 0.9s ease-out 0.3s forwards;
  }
  .hero-headline {
    opacity: 0;
    animation: heroFadeIn 1.1s ease-out 0.45s forwards;
  }
  .hero-sub {
    opacity: 0;
    animation: heroFadeIn 1.0s ease-out 0.75s forwards;
  }
  .hero-meta {
    opacity: 0;
    animation: heroFadeIn 1.0s ease-out 1.0s forwards;
  }

  /* Scroll-triggered Stagger Animation */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* Stagger delays inside sections */
  .reveal[data-stagger="1"].visible { transition-delay: 0.05s; }
  .reveal[data-stagger="2"].visible { transition-delay: 0.18s; }
  .reveal[data-stagger="3"].visible { transition-delay: 0.32s; }
  .reveal[data-stagger="4"].visible { transition-delay: 0.46s; }
  .reveal[data-stagger="5"].visible { transition-delay: 0.60s; }
  .reveal[data-stagger="6"].visible { transition-delay: 0.74s; }

  /* ============================================================
     SCROLL-DOWN ARROW — Persistent, bottom center
     ============================================================ */
  .scroll-arrow {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    width: 56px;
    height: 56px;
    background: rgba(245, 241, 232, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--hairline);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    animation: heroFadeIn 1.0s ease-out 1.4s forwards;
  }
  .scroll-arrow:hover {
    background: var(--accent-burgundy);
    border-color: var(--accent-burgundy);
    transform: translateX(-50%) translateY(-2px);
  }
  .scroll-arrow:hover svg { stroke: var(--bg-cream); }
  .scroll-arrow svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-primary);
    stroke-width: 2;
    fill: none;
    transition: stroke 0.3s ease;
    animation: arrowBob 2.2s ease-in-out infinite;
  }
  @keyframes arrowBob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(3px); }
  }
  .scroll-arrow.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
  }
  /* On dark sections, switch arrow to dark scheme */
  .scroll-arrow.on-dark {
    background: rgba(26, 29, 36, 0.85);
    border-color: var(--hairline-dark);
  }
  .scroll-arrow.on-dark svg { stroke: var(--text-on-dark); }
  .scroll-arrow.on-dark:hover {
    background: var(--accent-burgundy);
    border-color: var(--accent-burgundy);
  }

  @media (max-width: 860px) {
    .scroll-arrow { width: 48px; height: 48px; bottom: 20px; }
    .scroll-arrow svg { width: 16px; height: 16px; }
  }
  /* v74: On mobile the TECHNOLOGY bar occupies bottom:0..~56px.
     Lift the scroll-arrow above it (bar 56px + 24px gap = 80px). */
  @media (max-width: 720px) {
    .scroll-arrow {
      bottom: 80px !important;
    }
    .scroll-arrow.is-hidden {
      transform: translateX(-50%) translateY(20px);
    }
  }

  /* ════════════════════════════════════════════════════════
     EXECUTION SIGNAL SECTIONS — added 2026-06
     ════════════════════════════════════════════════════════ */

  /* === 1. EXECUTION STATUS BAR === */
  .exec-status {
    background: var(--bg-card, #ece5d5);
    padding: 70px 0 80px;
    border-bottom: 1px solid var(--hairline);
  }
  .exec-status .status-eyebrow {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    margin-bottom: 18px;
  }
  .exec-status .status-rule {
    width: 64px; height: 1px;
    background: var(--accent-burgundy);
    margin-bottom: 28px;
  }
  .exec-status .status-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 36px;
    max-width: 920px;
  }
  .exec-status .status-headline em {
    font-style: italic;
    color: var(--accent-burgundy);
  }
  .milestone-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    margin-bottom: 28px;
  }
  /* v88: milestone-cards adopt the technical style of the tech-hero-cards —
     colour bar on top, cleaner monospace label (no icons), gentle hover
     emphasis on the date, click reveals a relative-time hint under the date. */
  .milestone-card {
    position: relative;
    padding: 28px 22px 22px 22px;
    border-right: 1px solid var(--hairline);
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 250ms ease, box-shadow 250ms ease;
    overflow: hidden;
  }
  .milestone-card:last-child { border-right: none; }
  .milestone-card:hover {
    background: rgba(255,255,255,0.6);
    box-shadow: inset 0 -2px 0 rgba(139, 41, 66, 0.08);
  }
  .milestone-card:focus-visible {
    outline: 2px solid var(--accent-burgundy);
    outline-offset: -2px;
  }
  /* Top colour bar — burgundy in all cards (semantic status stays in .milestone-status text colour) */
  .milestone-card-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-burgundy);
    transition: background 250ms ease;
  }
  .milestone-card:hover .milestone-card-bar {
    background: #1a1d24;
  }
  /* Status label — same monospace look, no icon */
  .milestone-status {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--accent-burgundy);
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1;
  }
  .milestone-status.done    { color: #5a7a52; }
  .milestone-status.active  { color: var(--accent-burgundy); }
  .milestone-status.planned { color: var(--text-secondary); }
  .milestone-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 19px;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.2;
    transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .milestone-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
    transition: color 250ms ease, font-weight 200ms ease;
  }
  /* Hover: gently emphasise the date (per Frage 2 · Option B) */
  .milestone-card:hover .milestone-date {
    color: var(--text-primary);
    font-weight: 500;
  }
  .milestone-card:hover .milestone-title {
    transform: translateX(3px);
  }
  /* Info hint — hidden by default, revealed on click */
  .milestone-info {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 12px;
    color: var(--accent-burgundy);
    line-height: 1.35;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 300ms ease, opacity 250ms ease 60ms, margin-top 300ms ease;
  }
  .milestone-card.is-expanded .milestone-info {
    max-height: 60px;
    opacity: 1;
    margin-top: 8px;
  }
  /* Click pulse — 200ms burgundy border flash */
  .milestone-card.is-pulsing {
    animation: milestonePulse 200ms ease-out;
  }
  @keyframes milestonePulse {
    0%   { box-shadow: inset 0 0 0 0   rgba(139, 41, 66, 0.0); }
    50%  { box-shadow: inset 0 0 0 3px rgba(139, 41, 66, 0.35); }
    100% { box-shadow: inset 0 0 0 0   rgba(139, 41, 66, 0.0); }
  }

  /* ============================================================
     v89 · TIMELINE CONSOLE — slider + detail box below milestones
     ============================================================ */
  .timeline-console {
    margin: 8px 0 32px 0;
    padding: 28px 24px 24px 24px;
    background: rgba(255,255,255,0.55);
    border: 1px solid var(--hairline);
    border-top: none;
  }
  .timeline-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
  }
  .timeline-play {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px 10px 12px;
    background: transparent;
    border: 1px solid var(--accent-burgundy);
    color: var(--accent-burgundy);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 200ms ease, color 200ms ease;
    flex-shrink: 0;
    line-height: 1;
  }
  .timeline-play:hover {
    background: var(--accent-burgundy);
    color: #f5f1e8;
  }
  .timeline-play-icon {
    font-size: 10px;
    line-height: 1;
    display: inline-block;
    transform: translateY(-0.5px);
  }
  /* v91: icon toggles via ::before, label toggles via JS (i18n) */
  .timeline-play.is-playing .timeline-play-icon::before { content: '❚❚'; letter-spacing: 1px; }
  .timeline-play.is-playing .timeline-play-icon > * { display: none; }
  .timeline-track-wrap {
    flex: 1;
    padding: 22px 12px 32px 12px;
    position: relative;
  }
  .timeline-track {
    position: relative;
    height: 6px;
  }
  .timeline-track-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--hairline);
    transform: translateY(-50%);
  }
  .timeline-track-progress {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: var(--accent-burgundy);
    transform: translateY(-50%);
    transition: width 400ms cubic-bezier(0.22, 1, 0.36, 1);
    width: 50%;
  }
  .timeline-stop {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--text-secondary);
    text-transform: uppercase;
    line-height: 1;
    transition: color 250ms ease;
  }
  .timeline-stop:nth-child(3) { left:  0%; }  /* Q4 25 */
  .timeline-stop:nth-child(4) { left: 25%; }  /* Q1 26 */
  .timeline-stop:nth-child(5) { left: 50%; }  /* Q2 26 */
  .timeline-stop:nth-child(6) { left: 75%; }  /* Q3 26 */
  .timeline-stop:nth-child(7) { left:100%; }  /* 2028  */
  .timeline-stop-tick {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f5f1e8;
    border: 2px solid var(--hairline);
    transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
  }
  .timeline-stop[data-status="done"]   .timeline-stop-tick { border-color: #5a7a52; background: #5a7a52; }
  .timeline-stop[data-status="active"] .timeline-stop-tick { border-color: var(--accent-burgundy); background: var(--accent-burgundy); }
  .timeline-stop[data-status="planned"] .timeline-stop-tick { border-color: var(--hairline); background: #f5f1e8; }
  .timeline-stop:hover .timeline-stop-tick {
    transform: scale(1.25);
  }
  .timeline-stop.is-current {
    color: var(--accent-burgundy);
    font-weight: 600;
  }
  .timeline-stop.is-current .timeline-stop-tick {
    box-shadow: 0 0 0 4px rgba(139, 41, 66, 0.18);
  }
  .timeline-stop-label {
    position: absolute;
    top: 22px;
    white-space: nowrap;
  }
  /* Slider handle — the draggable "playhead" */
  .timeline-slider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    z-index: 5;
    cursor: grab;
    transition: left 400ms cubic-bezier(0.22, 1, 0.36, 1);
    outline: none;
  }
  .timeline-slider:active { cursor: grabbing; }
  .timeline-slider.is-dragging { transition: none; }
  .timeline-slider:focus-visible .timeline-slider-handle {
    box-shadow: 0 0 0 4px rgba(139, 41, 66, 0.35);
  }
  .timeline-slider-handle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--accent-burgundy);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.14);
    transition: transform 200ms ease, box-shadow 200ms ease;
  }
  .timeline-slider:hover .timeline-slider-handle {
    transform: scale(1.1);
  }

  /* Detail box */
  .timeline-detail {
    padding: 26px 26px 24px 26px;
    background: #ffffff;
    border: 1px solid var(--hairline);
    border-left: 3px solid var(--accent-burgundy);
    min-height: 200px;
    transition: opacity 250ms ease, border-left-color 300ms ease;
  }
  .timeline-detail[data-status="done"]    { border-left-color: #5a7a52; }
  .timeline-detail[data-status="active"]  { border-left-color: var(--accent-burgundy); }
  .timeline-detail[data-status="planned"] { border-left-color: var(--hairline); }
  .timeline-detail.is-fading { opacity: 0; }
  .timeline-detail-header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 4px;
  }
  .timeline-detail-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-secondary);
  }
  .timeline-detail-status {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
  }
  .timeline-detail[data-status="done"]    .timeline-detail-status { color: #5a7a52; }
  .timeline-detail[data-status="planned"] .timeline-detail-status { color: var(--text-secondary); }
  .timeline-detail-quarter {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--text-secondary);
  }
  .timeline-detail-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.15;
    color: var(--text-primary);
    margin: 6px 0 6px 0;
  }
  .timeline-detail-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 22px;
    max-width: 780px;
  }
  .timeline-detail-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .timeline-detail-col-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    margin-bottom: 12px;
  }
  .timeline-detail-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .timeline-detail-col li {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-primary);
    padding: 6px 0 6px 18px;
    position: relative;
  }
  .timeline-detail-col li::before {
    content: '·';
    position: absolute;
    left: 4px;
    color: var(--accent-burgundy);
    font-weight: 700;
  }

  /* Mobile — Frage 5 = A: stack vertical, slider stays horizontal */
  @media (max-width: 720px) {
    .timeline-console {
      padding: 20px 16px 20px 16px;
    }
    .timeline-controls {
      flex-direction: column;
      align-items: stretch;
      gap: 16px;
    }
    .timeline-play {
      align-self: flex-start;
    }
    .timeline-track-wrap {
      padding: 22px 12px 34px 12px;
    }
    .timeline-detail {
      padding: 20px 18px 18px 18px;
    }
    .timeline-detail-title { font-size: 22px; }
    .timeline-detail-cols {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .timeline-stop-label {
      font-size: 9px;
    }
  }

  .exec-status .tech-anchors {
    font-family: 'Inter Tight', sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-align: center;
    padding-top: 12px;
  }
  .exec-status .tech-anchors strong {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0 4px;
  }

  /* === 2. PLATFORM ARCHITECTURE (5 PILLARS) === */
  .architecture-section {
    padding: 110px 0;
    border-bottom: 1px solid var(--hairline);
  }
  .pillar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin: 40px 0 28px;
  }
  .pillar {
    background: var(--bg-card, #ece5d5);
    padding: 28px 20px;
    border-top: 3px solid var(--accent-burgundy);
    min-height: 180px;
    display: flex;
    flex-direction: column;
  }
  .pillar-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--accent-burgundy);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }
  .pillar-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 8px;
  }
  .pillar-segment {
    font-family: 'Inter Tight', sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    margin-bottom: 14px;
  }
  .pillar-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-top: auto;
  }
  .architecture-layers {
    background: var(--bg-card, #ece5d5);
    border-top: 1px solid var(--hairline);
    margin-top: 8px;
    padding: 0;
  }
  .arch-layer {
    padding: 16px 24px;
    border-bottom: 1px solid var(--hairline);
    font-family: 'Inter Tight', sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-align: center;
  }
  .arch-layer:last-child { border-bottom: none; }
  .arch-layer strong {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0 4px;
  }
  .arch-layer.foundation { background: #1d2330; color: rgba(245,241,232,0.7); }
  .arch-layer.foundation strong { color: var(--text-on-dark); }
  .architecture-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--accent-burgundy);
    letter-spacing: 0.08em;
    margin-top: 24px;
    text-align: right;
  }

  /* === 3. DEFENSIBILITY === */
  .defensibility-section {
    background: #1d2330;
    color: var(--text-on-dark);
    padding: 110px 0;
  }
  .defensibility-section .section-eyebrow { color: var(--accent-burgundy-soft, #c08a99); }
  .defensibility-section .section-title { color: var(--text-on-dark); }
  .defensibility-section .section-lead { color: rgba(245,241,232,0.78); max-width: 760px; }
  .defense-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 48px;
    border-top: 1px solid rgba(245,241,232,0.18);
    border-bottom: 1px solid rgba(245,241,232,0.18);
  }
  .defense-pillar {
    padding: 40px 32px;
    border-right: 1px solid rgba(245,241,232,0.18);
  }
  .defense-pillar:last-child { border-right: none; }
  .defense-label {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent-burgundy-soft, #c08a99);
    margin-bottom: 20px;
  }
  .defense-asset {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.2;
    color: var(--text-on-dark);
    margin-bottom: 20px;
  }
  .defense-detail {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(245,241,232,0.78);
    margin-bottom: 18px;
  }
  .defense-lock {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--accent-burgundy-soft, #c08a99);
    padding-top: 14px;
    border-top: 1px solid rgba(245,241,232,0.18);
  }

  /* === 4. ENGINEERING & PARTNER READINESS === */
  .readiness-section {
    padding: 110px 0;
    border-bottom: 1px solid var(--hairline);
  }
  .readiness-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 40px;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
  .readiness-col {
    padding: 36px 32px;
  }
  .readiness-col:first-child { border-right: 1px solid var(--hairline); }
  .readiness-label {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    margin-bottom: 22px;
  }
  .readiness-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .readiness-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--hairline);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
    position: relative;
    padding-left: 24px;
  }
  .readiness-list li:last-child { border-bottom: none; }
  .readiness-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--accent-burgundy);
    font-size: 11px;
  }
  .readiness-list li .status-tag {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--accent-burgundy);
    margin-left: 8px;
    text-transform: uppercase;
  }

  /* === 5. EXECUTION ROADMAP (8 QUARTERS) === */
  .exec-roadmap-section {
    background: var(--bg-card, #ece5d5);
    padding: 110px 0;
    border-bottom: 1px solid var(--hairline);
  }
  .quarter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 40px;
    border-top: 1px solid var(--hairline);
    border-left: 1px solid var(--hairline);
  }
  .quarter-card {
    padding: 24px 22px;
    border-right: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    background: rgba(255,255,255,0.4);
    min-height: 150px;
    display: flex;
    flex-direction: column;
  }
  .quarter-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--accent-burgundy);
    margin-bottom: 10px;
  }
  .quarter-status {
    font-family: 'Inter Tight', sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .quarter-status.active { color: var(--accent-burgundy); }
  .quarter-status.planned { color: var(--text-secondary); }
  .quarter-status.launch { color: #5a7a52; font-weight: 600; }
  .quarter-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 6px;
  }
  .quarter-detail {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.45;
    color: var(--text-secondary);
    margin-top: auto;
  }
  .roadmap-footer-note {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 28px;
    text-align: center;
  }

  /* === 6. BUILD SIGNALS BAR === */
  .build-signals-bar {
    background: #1d2330;
    padding: 50px 0;
    border-bottom: 1px solid rgba(245,241,232,0.08);
  }
  .signal-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: rgba(245,241,232,0.18);
  }
  .signal-badge {
    background: #1d2330;
    padding: 24px 16px;
    text-align: center;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-on-dark);
    line-height: 1.4;
  }
  .signal-badge .signal-icon {
    display: block;
    color: var(--accent-burgundy-soft, #c08a99);
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    text-transform: none;
  }

  /* === RESPONSIVE FOR ALL NEW SECTIONS === */
  @media (max-width: 1100px) {
    .milestone-grid { grid-template-columns: repeat(2, 1fr); }
    .milestone-card { border-right: none; border-bottom: 1px solid var(--hairline); }
    .pillar-grid { grid-template-columns: repeat(2, 1fr); }
    .quarter-grid { grid-template-columns: repeat(2, 1fr); }
    .signal-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 720px) {
    .milestone-grid { grid-template-columns: 1fr; }
    .pillar-grid { grid-template-columns: 1fr; }
    .defense-grid { grid-template-columns: 1fr; }
    .defense-pillar { border-right: none; border-bottom: 1px solid rgba(245,241,232,0.18); }
    .readiness-grid { grid-template-columns: 1fr; }
    .readiness-col:first-child { border-right: none; border-bottom: 1px solid var(--hairline); }
    .quarter-grid { grid-template-columns: 1fr; }
    .signal-grid { grid-template-columns: repeat(2, 1fr); }
    .exec-status .status-headline { font-size: 26px; }
  }

  /* ════════════════════════════════════════════════════════
     STRATEGIC PARTNER PROGRAMME + FINMA DISCLAIMER MARKER
     ════════════════════════════════════════════════════════ */

  /* Inline-Disclaimer-Marker ¹ (kleine Hochzahl bei jeder Beteiligungs-Erwähnung) */
  .finma-mark {
    font-size: 0.65em;
    color: var(--accent-burgundy);
    font-weight: 400;
    margin-left: 2px;
    vertical-align: super;
    line-height: 0;
    text-decoration: none;
    cursor: help;
  }
  .signal-badge .finma-mark { color: var(--accent-burgundy-soft, #c08a99); }

  /* === STRATEGIC PARTNER PROGRAMME SECTION === */
  .spp-section {
    padding: 110px 0;
    border-bottom: 1px solid var(--hairline);
    background: linear-gradient(180deg, #fafaf7 0%, var(--bg-card, #ece5d5) 100%);
  }
  .spp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 48px;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
  .spp-pillar {
    padding: 40px 32px;
    border-right: 1px solid var(--hairline);
    background: rgba(255,255,255,0.5);
  }
  .spp-pillar:last-child { border-right: none; }
  .spp-label {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    margin-bottom: 20px;
  }
  .spp-asset {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 18px;
  }
  .spp-detail {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
  }
  .spp-footer-note {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.55;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--hairline);
    max-width: 900px;
  }
  .spp-footer-note .finma-mark {
    font-style: normal;
  }

  /* Footer-Legal verbessern (etwas mehr Atemraum für längeren Disclaimer) */
  .footer-legal {
    line-height: 1.6;
    max-width: 1100px;
    font-size: 11px !important;
  }
  .footer-legal .finma-mark {
    font-size: 1em;
    color: var(--accent-burgundy-soft, #c08a99);
  }

  /* Responsive */
  @media (max-width: 720px) {
    .spp-grid { grid-template-columns: 1fr; }
    .spp-pillar { border-right: none; border-bottom: 1px solid var(--hairline); }
    .spp-pillar:last-child { border-bottom: none; }
  }

  /* ════════════════════════════════════════════════════════
     MOBILE BULLETPROOF — Safari iOS specific guards
     ════════════════════════════════════════════════════════ */

  /* Bei sehr schmalen Viewports (iPhone Portrait) extra-defensive Behandlung */
  @media (max-width: 480px) {
    /* Container-Padding sicherstellen */
    .container,
    .topbar-inner,
    .footer-inner {
      padding-left: 20px !important;
      padding-right: 20px !important;
      box-sizing: border-box;
    }

    /* Headlines NIE über den Rand */
    .hero-headline,
    .status-headline,
    .section-title,
    .section-eyebrow,
    .eyebrow,
    .meta-item strong {
      max-width: 100%;
      word-wrap: break-word;
      overflow-wrap: break-word;
      hyphens: auto;
      -webkit-hyphens: auto;
    }

    /* Execution-Status: Headline-Mobile-Schutz */
    .exec-status .status-headline {
      font-size: 24px;
      line-height: 1.2;
      word-break: break-word;
    }

    /* Milestone-Karten auf Mobile: explizit volle Breite, kein Border-Right */
    .milestone-grid {
      display: block !important;
      border: none;
      margin-bottom: 24px;
    }
    .milestone-card {
      width: 100%;
      box-sizing: border-box;
      border-right: none !important;
      border-bottom: 1px solid var(--hairline);
      padding: 20px 0;
      background: transparent;
    }
    .milestone-card:first-child { border-top: 1px solid var(--hairline); }

    /* Pillar-Grid Mobile */
    .pillar-grid {
      display: block !important;
      gap: 0;
    }
    .pillar {
      width: 100%;
      box-sizing: border-box;
      margin-bottom: 12px;
      min-height: auto;
    }

    /* Defense / SPP / Readiness — alle Mobile-Block */
    .defense-grid,
    .spp-grid,
    .readiness-grid,
    .quarter-grid,
    .signal-grid {
      display: block !important;
    }
    .defense-pillar,
    .spp-pillar,
    .readiness-col,
    .quarter-card,
    .signal-badge {
      width: 100%;
      box-sizing: border-box;
      border-right: none !important;
    }

    /* Tech-anchors Zeile darf auch umbrechen */
    .exec-status .tech-anchors {
      font-size: 10px;
      letter-spacing: 0.12em;
      line-height: 1.8;
      word-spacing: 4px;
    }
    .exec-status .tech-anchors strong {
      display: inline-block;
      margin: 2px 4px;
    }

    /* Architecture-Layer Mobile */
    .arch-layer {
      font-size: 10px;
      letter-spacing: 0.12em;
      padding: 14px 16px;
    }
    .arch-layer strong {
      display: inline-block;
      margin: 2px 4px;
    }
  }

  /* iOS Safari spezifisch: kein horizontaler Scroll */
  html, body {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }

  /* ════════════════════════════════════════════════════════
     PLATFORM PREVIEW — UI Mockup Showcase
     ════════════════════════════════════════════════════════ */
  .platform-preview-section {
    padding: 110px 0;
    border-bottom: 1px solid var(--hairline);
    background: var(--bg-card, #ece5d5);
  }
  .preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
  }
  .preview-card {
    background: #ffffff;
    border: 1px solid var(--hairline);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  /* Solo card: when only one preview-card exists in the grid, span both columns
     and center it. Image is shown without figcaption for clean, full-detail display. */
  .preview-grid:has(.preview-card-solo) {
    grid-template-columns: 1fr;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .preview-card-solo {
    background: transparent;
    border: 1px solid var(--hairline);
  }
  .preview-card-solo .preview-img {
    border-bottom: none;
  }
  .preview-img {
    display: block;
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--hairline);
  }
  .preview-caption {
    padding: 18px 22px 22px;
  }
  .preview-label {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    margin-bottom: 8px;
  }
  .preview-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 19px;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 6px;
  }
  .preview-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-secondary);
  }
  .preview-footer-note {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 32px;
  }

  @media (max-width: 860px) {
    .preview-grid { grid-template-columns: 1fr; gap: 20px; }
  }

  /* ════════════════════════════════════════════════════════
     BROKER CRM PREVIEW — Single full-width image + 4 features
     ════════════════════════════════════════════════════════ */
  .broker-crm-section {
    padding: 110px 0;
    border-bottom: 1px solid var(--hairline);
    background: var(--bg-card, #ece5d5);
  }
  .crm-showcase {
    margin-top: 48px;
    margin-bottom: 56px;
    background: #ffffff;
    border: 1px solid var(--hairline);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 40px -16px rgba(20, 24, 38, 0.18),
                0 2px 6px rgba(20, 24, 38, 0.05);
  }
  .crm-showcase img {
    display: block;
    width: 100%;
    height: auto;
  }
  .crm-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
  .crm-feature {
    padding: 28px 24px;
    border-right: 1px solid var(--hairline);
    background: rgba(255,255,255,0.4);
  }
  .crm-feature:last-child { border-right: none; }
  .crm-feature-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    margin-bottom: 12px;
  }
  .crm-feature-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-primary);
  }
  .broker-crm-section .preview-footer-note {
    margin-top: 32px;
  }

  /* Responsive */
  @media (max-width: 1100px) {
    .crm-features { grid-template-columns: repeat(2, 1fr); }
    .crm-feature:nth-child(2) { border-right: none; }
    .crm-feature:nth-child(1),
    .crm-feature:nth-child(2) { border-bottom: 1px solid var(--hairline); }
  }
  @media (max-width: 720px) {
    .crm-features { grid-template-columns: 1fr; }
    .crm-feature { border-right: none; border-bottom: 1px solid var(--hairline); }
    .crm-feature:last-child { border-bottom: none; }
  }

  /* ════════════════════════════════════════════════════════
     PILLAR ACTIVE STATE — Brand-specific highlighting
     ════════════════════════════════════════════════════════ */
  /* Default state: dimmed for pillars NOT belonging to current brand */
  [data-brand="imm"] .pillar-active-lie {
    opacity: 0.45;
    border-top-color: var(--hairline);
  }
  [data-brand="lie"] .pillar-active-imm {
    opacity: 0.45;
    border-top-color: var(--hairline);
  }
  /* Active highlight: stronger top border + slight elevation */
  [data-brand="imm"] .pillar-active-imm,
  [data-brand="lie"] .pillar-active-lie {
    border-top-width: 4px;
    border-top-color: var(--accent-burgundy);
  }
  [data-brand="imm"] .pillar-active-imm .pillar-num,
  [data-brand="lie"] .pillar-active-lie .pillar-num {
    color: var(--accent-burgundy);
    font-weight: 600;
  }
  /* Pillar 05 (Core) — active for both brands */
  .pillar-active-both {
    border-top-color: var(--accent-burgundy-soft, #c08a99);
    border-top-style: dashed;
  }
  .pillar-active-both .pillar-num {
    color: var(--accent-burgundy-soft, #c08a99);
  }

  /* ════════════════════════════════════════════════════════
     BRAND ANCHOR — Inline brand indicator in Platform Architecture lead
     ════════════════════════════════════════════════════════ */
  .brand-anchor {
    display: inline;
    color: var(--text-primary);
  }
  .brand-anchor strong {
    color: var(--accent-burgundy);
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  /* ════════════════════════════════════════════════════════
     PILLAR BRAND LABELS + CLICKABLE STATES + CORE DROPDOWN
     ════════════════════════════════════════════════════════ */

  /* Wrap container per pillar: label above + pillar card below */
  .pillar-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* Brand label above each pillar */
  .pillar-brand-label {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 9px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    padding: 0 2px;
    line-height: 1.2;
  }
  .pillar-brand-label[data-scope="both"] {
    color: var(--accent-burgundy-soft, #c08a99);
  }

  /* Pillar as link — disable native link styling */
  .pillar.pillar-link,
  .pillar.pillar-core {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    cursor: default;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  }

  /* CTA hint inside pillar — hidden by default, shown only via data-brand-show */
  .pillar-cta {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--hairline);
  }

  /* Clickable pillar logic:
     - On imm-site, only lie-pillars (.pillar-active-lie) are clickable
     - On lie-site, only imm-pillars (.pillar-active-imm) are clickable
     - own-brand pillars: pointer-events disabled, no hover effect
  */
  [data-brand="imm"] .pillar-link.pillar-active-imm {
    cursor: default;
    pointer-events: none;
  }
  [data-brand="lie"] .pillar-link.pillar-active-lie {
    cursor: default;
    pointer-events: none;
  }
  [data-brand="imm"] .pillar-link.pillar-active-lie,
  [data-brand="lie"] .pillar-link.pillar-active-imm {
    cursor: pointer;
  }
  /* Hover effect — only on clickable (cross-brand) pillars */
  [data-brand="imm"] .pillar-link.pillar-active-lie:hover,
  [data-brand="lie"] .pillar-link.pillar-active-imm:hover {
    transform: translateY(-3px);
    border-top-color: var(--accent-burgundy);
    box-shadow: 0 10px 30px -10px rgba(20, 24, 38, 0.15);
    opacity: 1;
  }

  /* Pillar 05 Core — <details>/<summary> dropdown */
  .pillar-core[open] .pillar-cta-core {
    transform: rotate(180deg);
  }
  .pillar-core summary.pillar-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: inherit; /* will inherit from .pillar */
  }
  .pillar-core summary.pillar-summary::-webkit-details-marker {
    display: none;
  }
  .pillar-core {
    padding: 0; /* let summary handle padding via inherit */
    position: relative;
  }
  .pillar-core .pillar-summary {
    padding: 28px 20px;
  }
  .pillar-cta-core {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    color: var(--accent-burgundy-soft, #c08a99);
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed var(--accent-burgundy-soft, #c08a99);
    text-align: center;
    transition: transform 180ms ease;
  }
  .pillar-core:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -10px rgba(20, 24, 38, 0.15);
  }
  .pillar-dropdown {
    background: #ffffff;
    border-top: 1px solid var(--hairline);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .pillar-dropdown-link {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    text-decoration: none;
    padding: 14px 16px;
    background: var(--bg-card, #ece5d5);
    text-align: center;
    transition: background 150ms ease, color 150ms ease;
  }
  .pillar-dropdown-link:hover {
    background: var(--accent-burgundy);
    color: var(--text-on-dark);
  }

  /* Pillar-wrap height fix (added after initial pillar CSS block) */
  .pillar-wrap > .pillar {
    flex: 1;
  }

  /* ============================================================
     TABLE OF CONTENTS — Floating Button + Side-Sheet
     ============================================================ */

  /* Floating cream button, bottom-right */
  .toc-trigger {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--bg-cream, #f5f1e8);
    color: var(--text-primary, #1a1d23);
    border: 1px solid var(--hairline, #d4cfc1);
    border-radius: 999px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  }
  .toc-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.12), 0 4px 10px rgba(0,0,0,0.06);
    background: #ede6d6;
  }
  .toc-trigger:focus-visible {
    outline: 2px solid var(--accent-burgundy, #7a2638);
    outline-offset: 3px;
  }
  .toc-trigger-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
  .toc-trigger-icon svg {
    display: block;
    width: 100%;
    height: 100%;
  }

  /* Backdrop (lightly dimmed; click closes sheet) */
  .toc-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 18, 24, 0.32);
    z-index: 9500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms ease;
  }
  .toc-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Side-sheet, slides in from right */
  .toc-sheet {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 440px;
    max-width: 90vw;
    background: #ffffff;
    z-index: 9600;
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0,0,0,0.15);
  }
  .toc-sheet.is-open {
    transform: translateX(0);
  }
  .toc-sheet-header {
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--hairline);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
  }
  .toc-sheet-title {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.15;
    margin: 0;
  }
  .toc-sheet-eyebrow {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    margin-bottom: 8px;
  }
  .toc-sheet-close {
    background: transparent;
    border: 1px solid var(--hairline);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
  }
  .toc-sheet-close:hover {
    background: var(--bg-cream);
    color: var(--text-primary);
    border-color: var(--text-secondary);
  }
  .toc-sheet-close svg {
    width: 14px;
    height: 14px;
  }

  .toc-sheet-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0 32px;
  }
  .toc-group {
    padding: 20px 32px 4px;
  }
  .toc-group + .toc-group {
    border-top: 1px solid var(--hairline);
    margin-top: 8px;
  }
  .toc-group-label {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .toc-group-num {
    color: var(--accent-burgundy);
  }
  .toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .toc-link {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 10px 0;
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 150ms ease, padding-left 200ms ease;
  }
  .toc-link:hover {
    color: var(--accent-burgundy);
    padding-left: 6px;
  }
  .toc-link-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-secondary);
    width: 24px;
    flex-shrink: 0;
  }
  .toc-link:hover .toc-link-num {
    color: var(--accent-burgundy);
  }
  .toc-link-text {
    flex: 1;
    line-height: 1.4;
  }

  /* Footer of sheet with brand note */
  .toc-sheet-footer {
    padding: 18px 32px 24px;
    border-top: 1px solid var(--hairline);
    font-family: 'Inter Tight', sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    line-height: 1.5;
  }

  /* Lock body scroll while open */
  body.toc-open {
    overflow: hidden;
  }

  /* Mobile adjustments */
  @media (max-width: 720px) {
    /* v74: INHALT-button floats ABOVE the TECHNOLOGY bar, right-outer.
       Bar occupies bottom:0..~56px, INHALT sits at bottom:80px (56 + 24 gap). */
    .toc-trigger {
      bottom: 80px;
      right: 20px;
      padding: 10px 16px;
      font-size: 11px;
      z-index: 9500;
    }
    .toc-sheet {
      width: 100vw;
      max-width: 100vw;
    }
    .toc-sheet-header {
      padding: 22px 24px 16px;
    }
    .toc-group {
      padding: 18px 24px 4px;
    }
    .toc-sheet-footer {
      padding: 16px 24px 22px;
    }
    /* v74: TECHNOLOGY-bar back to clean centered text — INHALT is now
       ABOVE the bar (bottom:80px), not inside. No right-padding hack. */
  }

  /* ============================================================
     COUNTDOWN — Hero Live Counter to Public Launch (Q1 2028)
     ============================================================ */
  .hero-countdown {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(245, 241, 232, 0.18);
    opacity: 0;
    animation: heroFadeIn 1.0s ease-out 1.2s forwards;
  }
  .hero-countdown-label {
    font-family: 'Inter Tight', sans-serif;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(245, 241, 232, 0.55);
    margin-bottom: 14px;
  }
  .hero-countdown-grid {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
  }
  .countdown-unit {
    display: flex;
    flex-direction: column;
    min-width: 72px;
  }
  .countdown-value {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 44px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--text-on-dark);
    font-variant-numeric: tabular-nums;
    /* Smooth digit changes — no jumpy reflow */
    transition: color 200ms ease;
  }
  .countdown-unit-label {
    font-family: 'Inter Tight', sans-serif;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(245, 241, 232, 0.55);
    margin-top: 8px;
  }
  /* Separator dots between units */
  .countdown-sep {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    line-height: 1;
    color: rgba(245, 241, 232, 0.32);
    margin-top: 4px;
    user-select: none;
  }
  /* Subtle pulse on the seconds value to signal "live" */
  .countdown-unit[data-unit="seconds"] .countdown-value {
    transition: opacity 400ms ease;
  }
  /* Loaded state — JS removes .is-loading once first compute is done */
  .hero-countdown.is-loading .countdown-value {
    opacity: 0.4;
  }

  /* Reduce motion — no per-second tick, refresh per minute only */
  @media (prefers-reduced-motion: reduce) {
    .countdown-unit[data-unit="seconds"] {
      display: none;
    }
    .countdown-sep[data-pos="2"] {
      display: none;
    }
  }

  /* Mobile */
  @media (max-width: 720px) {
    .hero-countdown {
      margin-top: 32px;
      padding-top: 24px;
    }
    .hero-countdown-grid {
      gap: 18px;
    }
    .countdown-unit {
      min-width: 56px;
    }
    .countdown-value {
      font-size: 34px;
    }
    .countdown-sep {
      font-size: 24px;
      margin-top: 2px;
    }
  }

  /* ============================================================
     VISION SECTION — Architectural background image
     Image: assets/vision-architecture-bg.jpg (Swiss columns)
     ============================================================ */
  .vision-bg-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }
  /* Background image as ::before — covers entire section */
  .vision-bg-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../assets/vision-architecture-bg.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: -2;
    /* Subtle desaturation so it doesn't fight the burgundy accents */
    filter: saturate(0.85) brightness(1.02);
  }
  /* Cream gradient overlay — stronger at top (for headline), softer below */
  .vision-bg-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg,
        rgba(245, 241, 232, 0.92) 0%,
        rgba(245, 241, 232, 0.86) 32%,
        rgba(245, 241, 232, 0.74) 55%,
        rgba(245, 241, 232, 0.88) 78%,
        rgba(245, 241, 232, 0.96) 100%
      );
    z-index: -1;
    pointer-events: none;
  }
  /* Pillars inside .vision-bg-section get subtle elevation so they read clearly */
  .vision-bg-section .pillar {
    background: var(--bg-cream);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  }
  /* Make the lead text a touch darker for legibility over the image area */
  .vision-bg-section .section-lead {
    color: var(--text-primary);
  }

  /* On smaller screens, reduce image presence (less detail visible anyway) */
  @media (max-width: 720px) {
    .vision-bg-section::before {
      background-position: center 40%;
    }
    .vision-bg-section::after {
      background:
        linear-gradient(180deg,
          rgba(245, 241, 232, 0.95) 0%,
          rgba(245, 241, 232, 0.90) 50%,
          rgba(245, 241, 232, 0.98) 100%
        );
    }
  }

  /* ============================================================
     VISION SECTION — Split layout (Image left, Text right)
     Alternative to vision-bg-section (full-width background).
     Use class .vision-split-section on the section element.
     ============================================================ */
  .vision-split-section .vision-split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 64px;
    align-items: center;
    margin-bottom: 72px;
  }
  .vision-split-image {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--hairline);
    aspect-ratio: 4 / 5;
    background: var(--bg-cream);
  }
  .vision-split-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    /* Slight desaturation so the image harmonises with the burgundy accent */
    filter: saturate(0.88);
  }
  /* Subtle inset shadow for depth */
  .vision-split-image::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 80px rgba(122, 38, 56, 0.06);
    pointer-events: none;
  }
  /* Optional caption below image — small editorial label */
  .vision-split-caption {
    margin-top: 14px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-secondary);
  }
  .vision-split-text {
    padding-left: 8px;
  }
  /* Drop the bottom margin on the lead inside split mode — text block is
     vertically centered against the image, so the gap was always huge */
  .vision-split-text .section-lead {
    margin-bottom: 0;
  }
  /* Pillar grid keeps its existing styling but lives below the split */
  .vision-split-section .pillars {
    margin-top: 0;
  }

  /* Mobile: stack vertically, image on top */
  @media (max-width: 900px) {
    .vision-split-section .vision-split-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 56px;
    }
    .vision-split-image {
      aspect-ratio: 16 / 10;
      max-width: 100%;
    }
    .vision-split-image img {
      object-position: center 40%;
    }
    .vision-split-text {
      padding-left: 0;
    }
  }

  /* ============================================================
     VISION SPLIT — Statement under the image
     ============================================================ */
  .vision-split-statement {
    margin: 18px 0 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--hairline);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.45;
    color: var(--text-primary);
    letter-spacing: -0.005em;
  }
  /* Subtle burgundy accent on the period — pulls eye through the statement */
  /* (Optional, applied via :before if needed later) */

  @media (max-width: 900px) {
    .vision-split-statement {
      font-size: 16px;
      margin-top: 14px;
      padding-top: 14px;
    }
  }

  /* ============================================================
     MARKET PERSPECTIVE — Split layout (Image left, Text right)
     Mirrors vision-split-section visually for rhythm consistency
     ============================================================ */
  .market-split-section .market-split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 64px;
    align-items: center;
    margin-bottom: 72px;
  }
  .market-split-image {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--hairline);
    aspect-ratio: 4 / 5;
    background: var(--bg-cream);
  }
  .market-split-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(0.9);
  }
  /* Subtle inset shadow for depth — matches vision-split */
  .market-split-image::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 80px rgba(122, 38, 56, 0.06);
    pointer-events: none;
  }
  .market-split-text {
    padding-left: 8px;
  }
  .market-split-text .section-lead {
    margin-bottom: 0;
  }
  /* Market grid (4 cards) lives below split, full width */
  .market-split-section .market-grid {
    margin-top: 0;
  }

  /* Mobile: stack vertically, image on top */
  @media (max-width: 900px) {
    .market-split-section .market-split-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 56px;
    }
    .market-split-image {
      aspect-ratio: 16 / 10;
      max-width: 100%;
    }
    .market-split-text {
      padding-left: 0;
    }
  }

  /* ============================================================
     MARKET SPLIT — Statement under the lead (mirrors vision-split-statement)
     ============================================================ */
  .market-split-statement {
    margin: 18px 0 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--hairline);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.45;
    color: var(--text-primary);
    letter-spacing: -0.005em;
  }
  @media (max-width: 900px) {
    .market-split-statement {
      font-size: 16px;
      margin-top: 14px;
      padding-top: 14px;
    }
  }

  /* ============================================================
     FLOATING TECH BUTTONS — Vertical editorial tab (Desktop)
     Uses inline-flex with writing-mode:vertical-rl so the tab
     auto-sizes to fit its content. NO max-width, NO fixed padding
     tricks — the button is as tall as the vertical text needs.
     ============================================================ */
  .tech-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(0);
    z-index: 8500;
    text-decoration: none;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
                background 200ms ease,
                opacity 400ms ease,
                box-shadow 200ms ease;
    opacity: 0;
    pointer-events: none;
    border: none;
    box-sizing: border-box;
    /* Vertical-rl on the OUTER button so total block height = content height */
    writing-mode: vertical-rl;
    /* Horizontal padding (visual left/right of tab) and vertical padding (top/bottom of tab) */
    padding: 22px 16px;
    /* Guarantee a comfortable visual width of the tab (perpendicular to text axis) */
    min-width: 52px;
  }
  .tech-btn.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
  .tech-btn-inner {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    /* Rotate 180° so reading direction goes bottom-to-top (editorial convention for right-side tabs) */
    transform: rotate(180deg);
  }
  .tech-btn-text {
    display: inline-block;
    white-space: nowrap;
  }
  .tech-btn-arrow {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    display: inline-block;
    font-weight: 400;
  }
  /* v78: On DESKTOP the whole .tech-btn-inner is rotated 180° for vertical
     reading, which mangles the direction of the → / ← characters. Hide the
     HTML arrow on desktop and paint a fresh, unrotated one via ::after on
     the outer button. Mobile bar is horizontal, so it keeps the HTML arrow
     as-is (see mobile media query below).                                 */
  @media (min-width: 769px) {
    .tech-btn-arrow { display: none; }
    .tech-btn {
      /* Restore horizontal glyph rendering just for the pseudo-element */
      /* pseudo will be placed OUTSIDE the rotated .tech-btn-inner        */
      /* We add relative padding on the far edge so the arrow has room.   */
    }
    .tech-btn::after {
      content: '→';
      position: absolute;
      right: 50%;
      bottom: 10px;
      transform: translateX(50%);
      writing-mode: horizontal-tb;
      font-family: 'Inter Tight', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: inherit;
      line-height: 1;
      pointer-events: none;
    }
    /* Back button on tech page: point LEFT instead */
    .tech-btn-burgundy::after,
    .tech-btn-cream::after {
      content: '←';
    }
    /* Give the vertical tab a bit more bottom padding so the ::after arrow
       does not overlap with the vertical text. */
    .tech-btn {
      padding-bottom: 40px;
    }
  }
  /* v76: Desktop tech-btn-dark is now BURGUNDY too — matches the mobile bar
     for a consistent brand signal across breakpoints. Class name kept for
     compatibility. */
  .tech-btn-dark {
    background: #8b2942;
    color: #f5f1e8;
    box-shadow: -6px 0 20px rgba(139, 41, 66, 0.25);
  }
  .tech-btn-dark:hover {
    transform: translateY(-50%) translateX(-6px);
    background: #a44a5e;
    box-shadow: -10px 0 24px rgba(139, 41, 66, 0.35);
  }
  /* Burgundy variant (tech page → back to main) — aggressive brand color */
  .tech-btn-burgundy {
    background: #8b2942;
    color: #f5f1e8;
    box-shadow: -6px 0 20px rgba(139, 41, 66, 0.25);
  }
  .tech-btn-burgundy:hover {
    transform: translateY(-50%) translateX(-6px);
    background: #a44a5e;
    box-shadow: -10px 0 24px rgba(139, 41, 66, 0.35);
  }
  /* LEGACY cream — kept but not used (tech-btn-cream) */
  .tech-btn-cream {
    background: #8b2942;
    color: #f5f1e8;
    box-shadow: -6px 0 20px rgba(139, 41, 66, 0.25);
  }
  .tech-btn-cream:hover {
    transform: translateY(-50%) translateX(-6px);
    background: #a44a5e;
    box-shadow: -10px 0 24px rgba(139, 41, 66, 0.35);
  }
  /* ============================================================
     MOBILE — OPTION A (SICHTBAR): Full-width Bottom-Bar
     Priorität: MAXIMALE SICHTBARKEIT über Platzersparnis.
     Button wird zur breiten unteren Leiste mit Text + Pfeil.
     ============================================================ */
  @media (max-width: 768px) {
    .tech-btn {
      /* v75: Bar stays same SIZE as before — only COLOR + SHIMMER change. */
      position: fixed;
      right: 0;
      left: 0;
      bottom: 0;
      top: auto;
      transform: translateY(100%);
      width: 100%;
      max-width: 100%;
      min-width: 0;
      writing-mode: horizontal-tb;
      padding: 18px 24px;
      font-size: 14px;
      letter-spacing: 0.25em;
      text-align: center;
      border-top: 2px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
      overflow: hidden; /* clip the shimmer */
    }
    /* v75 · Variant A — Dark-variant becomes BURGUNDY on mobile so the bar
       stands out against the cream page. */
    .tech-btn-dark {
      background: #8b2942 !important;
      color: #f5f1e8 !important;
    }
    .tech-btn-dark:hover {
      background: #a44a5e !important;
      transform: translateY(0);
    }
    /* v75 · Variant C — subtle shimmer sweeps across the bar every ~4s. */
    .tech-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -30%;
      width: 30%;
      height: 100%;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(245, 241, 232, 0.22) 50%,
        transparent 100%
      );
      pointer-events: none;
      animation: techBtnShimmer 4.2s ease-in-out infinite;
      animation-delay: 1.2s;
    }
    @keyframes techBtnShimmer {
      0%   { left: -30%; }
      55%  { left: 100%; }
      100% { left: 100%; }
    }
    .tech-btn.is-visible {
      transform: translateY(0);
    }
    .tech-btn-inner {
      /* Horizontal statt vertikal auf Mobile */
      writing-mode: horizontal-tb;
      transform: none;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      gap: 14px;
    }
    .tech-btn-text {
      display: inline-block !important;
      white-space: nowrap;
      font-size: 13px;
      letter-spacing: 0.25em;
    }
    .tech-btn-arrow {
      font-size: 20px;
      font-weight: 500;
      letter-spacing: 0;
    }
    /* Hover-Transform darf Bottom-Bar nicht verstecken */
    .tech-btn-dark:hover,
    .tech-btn-burgundy:hover,
    .tech-btn-cream:hover {
      transform: translateY(0);
    }
    /* Content-Bottom-Padding, damit die Bar nichts überdeckt */
    body {
      padding-bottom: 60px;
    }
  }
  @media (max-width: 480px) {
    .tech-btn {
      padding: 16px 18px;
      font-size: 12px;
    }
    .tech-btn-text {
      font-size: 12px;
      letter-spacing: 0.2em;
    }
    .tech-btn-arrow {
      font-size: 18px;
    }
  }

  /* ============================================================
     TECH PAGE — Hero specific
     ============================================================ */
  .tech-hero {
    padding: 100px 0 80px;
    background: var(--bg-cream);
    border-bottom: 1px solid var(--hairline);
  }
  .tech-hero-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    margin-bottom: 20px;
  }
  .tech-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 24px;
  }
  .tech-hero-lead {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: none;   /* v108d · flush with container edges (same as .tp-lead) */
    margin-bottom: 40px;
  }
  .tech-hero-anchors {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .tech-anchor {
    display: inline-block;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid var(--hairline);
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 200ms ease;
  }
  .tech-anchor:hover {
    background: #1a1d24;
    color: #f5f1e8;
    border-color: #1a1d24;
  }

  /* v87: Tech-Hero-Cards — cleaned up.
     - Icon + number removed
     - Top color-bar (burgundy → charcoal on hover)
     - "Prototyp A / Prototype A / Prototipo A" as small label
     - Same interactions: editorial reveal, click pulse, drag & drop */
  .tech-hero-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 8px;
  }
  .tech-hero-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 138px;
    padding: 20px 20px 20px 20px;
    background: #ffffff;
    border: 1px solid var(--hairline);
    color: var(--text-primary);
    text-decoration: none;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    transition: box-shadow 250ms ease, border-color 250ms ease;
  }
  .tech-hero-card:active {
    cursor: grabbing;
  }
  /* v87: Top color-bar (full width, 4px, burgundy → charcoal on hover) */
  .tech-hero-card-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-burgundy);
    transition: background 250ms ease;
  }
  .tech-hero-card:hover .tech-hero-card-bar {
    background: #1a1d24;
  }
  /* v87: small "Prototyp A" label — replaces the removed icon+number row */
  .tech-hero-card-label {
    display: block;
    margin-top: 4px;
    margin-bottom: 22px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-burgundy);
    line-height: 1;
    transition: color 250ms ease;
  }
  .tech-hero-card:hover .tech-hero-card-label {
    color: #1a1d24;
  }
  .tech-hero-card-name {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.3;
    transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  /* Reveal arrow — hidden by default, slides in on hover */
  .tech-hero-card-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    color: var(--accent-burgundy);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 250ms ease, transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }
  /* Editorial reveal on hover — text slides right, arrow appears */
  .tech-hero-card:hover {
    border-color: var(--accent-burgundy);
    box-shadow: 0 6px 20px rgba(139, 41, 66, 0.08);
  }
  .tech-hero-card:hover .tech-hero-card-name {
    transform: translateX(6px);
  }
  .tech-hero-card:hover .tech-hero-card-arrow {
    opacity: 1;
    transform: translateX(0);
  }
  /* Click pulse — 200ms burgundy border flash */
  .tech-hero-card.is-pulsing {
    animation: cardPulse 200ms ease-out;
  }
  @keyframes cardPulse {
    0%   { border-color: var(--hairline);       box-shadow: 0 0 0 0 rgba(139, 41, 66, 0.0); }
    50%  { border-color: var(--accent-burgundy); box-shadow: 0 0 0 4px rgba(139, 41, 66, 0.25); }
    100% { border-color: var(--accent-burgundy); box-shadow: 0 0 0 0 rgba(139, 41, 66, 0.0); }
  }
  /* Drag state — card is being moved */
  .tech-hero-card.is-dragging {
    opacity: 0.45;
    transform: scale(0.97);
  }
  /* Drop target hint */
  .tech-hero-card.is-drop-target {
    border-color: var(--accent-burgundy);
    background: #f9f5ea;
  }

  /* Mobile fixes for tech page hero */
  @media (max-width: 900px) {
    .tech-hero-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 720px) {
    .tech-hero {
      padding: 60px 0 50px;
    }
    .tech-hero-anchors {
      flex-direction: column;
      align-items: stretch;
      gap: 8px;
    }
    .tech-anchor {
      display: block;
      text-align: center;
      padding: 14px 16px;
    }
    /* v87 mobile: single column, horizontal card with label left, name right */
    .tech-hero-cards {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .tech-hero-card {
      min-height: auto;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 18px 18px 18px;
    }
    .tech-hero-card-bar {
      /* On mobile the bar becomes a thin vertical accent on the left */
      top: 0;
      bottom: 0;
      left: 0;
      right: auto;
      width: 4px;
      height: auto;
    }
    .tech-hero-card-label {
      margin: 0;
      flex-shrink: 0;
      padding-left: 8px;
    }
    .tech-hero-card-name {
      flex: 1;
      text-align: left;
    }
    .tech-hero-card-arrow {
      position: static;
      opacity: 1;
      transform: none;
    }
  }
