
    @font-face { font-family: 'Inter'; font-style: normal; font-weight: 300 700; font-display: swap; src: url("./fonts/inter.woff2") format('woff2'); }
    @font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 400 500; font-display: swap; src: url("./fonts/jetbrains-mono.woff2") format('woff2'); }
    
  :root {
    /* Day */
    --d-bg: #F6F7F4;
    --d-panel: #FFFFFF;
    --d-text: #101827;
    --d-muted: #5A6472;
    --d-border: #DDE3EA;
    --d-accent: #145CFF;
    --d-soft: #E8F0FF;

    /* Night */
    --n-bg: #07111F;
    --n-panel: #0D1B2E;
    --n-text: #F4F7FA;
    --n-muted: #9BA8B8;
    --n-border: #1C314D;
    --n-accent: #3C7DFF;
    --n-cyan: #44D7FF;
    --n-violet: #7A5CFF;

    --bg: var(--d-bg);
    --panel: var(--d-panel);
    --text: var(--d-text);
    --muted: var(--d-muted);
    --border: var(--d-border);
    --accent: var(--d-accent);
    --soft: var(--d-soft);
    --accent-2: var(--d-accent);
    --grid-line: rgba(16,24,39,0.035);
  }

  html[data-mode="night"] {
    --bg: var(--n-bg);
    --panel: var(--n-panel);
    --text: var(--n-text);
    --muted: var(--n-muted);
    --border: var(--n-border);
    --accent: var(--n-accent);
    --soft: rgba(60,125,255,0.10);
    --accent-2: var(--n-cyan);
    --grid-line: rgba(255,255,255,0.035);
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01", "cv11";
    overflow-x: hidden;
  }

  .mono { font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace; font-feature-settings: "zero"; }
  ::selection { background: var(--accent); color: white; }
  :focus { outline: none; }
  :focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
  @media (max-width: 720px) { .container { padding: 0 22px; } }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 24px;
    border-radius: 999px;
    font-size: 15px; font-weight: 500;
    cursor: pointer; border: 1px solid transparent;
    transition: transform 160ms ease, background 240ms ease, color 240ms ease, border-color 240ms ease;
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary { background: var(--accent); color: white; }
  .btn-primary:hover { background: color-mix(in oklab, var(--accent) 88%, black); }
  .btn-secondary { background: transparent; color: var(--text); border-color: var(--border); }
  .btn-secondary:hover { background: var(--panel); border-color: color-mix(in oklab, var(--border) 60%, var(--text)); }
  html[data-mode="night"] .btn-secondary:hover { background: rgba(255,255,255,0.03); }

  /* Background grid */
  .bg-grid {
    position: fixed; inset: 0; pointer-events: none; z-index: 0;
    background-image:
      linear-gradient(var(--grid-line) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 75%);
  }
  #root { position: relative; z-index: 1; }

  section { padding: 130px 0; }
  @media (max-width: 720px) { section { padding: 84px 0; } }

  /* Cards */
  .card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: background-color 520ms ease, border-color 520ms ease, transform 240ms ease;
  }

  /* ===== SWAP (day/night content transition) ===== */
  /* Transform-only: never gates visibility on opacity. Even if the compositor
     clock is frozen (some preview iframes freeze it), content stays visible. */
  .swap-anim { animation: swapIn 520ms cubic-bezier(.2,.7,.2,1); }
  @keyframes swapIn {
    from { transform: translateY(7px); }
    to   { transform: translateY(0); }
  }

  /* Mode changes MUST be instant. CSS transitions interpolate on the compositor
     clock; if that clock is frozen mid-toggle (some preview iframes freeze it),
     transitioned colors/positions get stuck in the wrong state. So we disable
     transitions entirely and let keyframe animations carry any motion instead. */
/* ===== ANIMATED LOGO ===== */
  .logo { position: relative; display: inline-block; flex-shrink: 0; }
  .logo-box {
    position: absolute; inset: 0;
    border: 1.7px solid currentColor;
    border-radius: 6px;
    transition: border-color 520ms ease;
  }
  .logo-dot {
    position: absolute;
    background: var(--accent);
    border-radius: 2px;
  }
  /* Night = dot contained inside the box (centered) */
  html[data-mode="night"] .logo-dot { transform: translate(0,0) scale(1); border-radius: 2px; }
  /* Day = dot escaped, popped out to the top-right corner */
  html[data-mode="day"]  .logo-dot { transform: translate(118%, -118%) scale(1.05); border-radius: 50%; }

  /* First-load attention pulse for the floating switch */
  @keyframes hintPulse {
    0%,100% { box-shadow: 0 8px 30px rgba(0,0,0,0.18), 0 0 0 0 color-mix(in oklab, var(--accent) 40%, transparent); }
    50%     { box-shadow: 0 8px 30px rgba(0,0,0,0.18), 0 0 0 8px color-mix(in oklab, var(--accent) 0%, transparent); }
  }
  .hint-pulse { animation: hintPulse 2.4s ease-in-out infinite; }

  /* Attention pulse for the "So liest du diese Seite" card — gentle, on rounded corners */
  @keyframes cardPulse {
    0%,100% { box-shadow: 0 8px 28px rgba(16,24,39,0.07), 0 0 0 0 color-mix(in oklab, var(--accent) 26%, transparent); }
    50%     { box-shadow: 0 18px 46px rgba(16,24,39,0.13), 0 0 0 11px color-mix(in oklab, var(--accent) 0%, transparent); }
  }
  html[data-mode="night"] .card-pulse {
    box-shadow: 0 8px 28px rgba(0,0,0,0.4);
  }
  .card-pulse { animation: cardPulse 2.8s ease-in-out infinite; }
  /* Resting elevation once the user has interacted — still reads as a distinct, liftable card */
  .card-rest { box-shadow: 0 8px 26px rgba(16,24,39,0.07); }
  html[data-mode="night"] .card-rest { box-shadow: 0 8px 26px rgba(0,0,0,0.38); }

  /* Graphic ticker bands */
  .band-mask {
    -webkit-mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
  }
  .band-track { display: inline-flex; white-space: nowrap; will-change: transform; animation: bandScroll var(--dur, 42s) linear infinite; }
  .band-track.rev { animation-direction: reverse; }
  @keyframes bandScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  .fade-in { animation: fadeIn 700ms ease; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

  @media (prefers-reduced-motion: reduce) {
    .swap-anim { animation: none !important; }
    .logo-dot { transition: none !important; }
    .card-pulse, .hint-pulse, .band-track { animation: none !important; }
  }

    
  html { scroll-behavior: smooth; scroll-padding-top: 82px; }
  body { min-width: 320px; }
  section { padding: 105px 0; }
  button, a { -webkit-tap-highlight-color: transparent; }
  a.brand { min-height: 44px; align-items: center; }
  .detail-nav a { min-height: 44px; display: inline-flex; align-items: center; }
  .mobile-nav { display: none; }
  .portfolio-grid article, .results-grid article { min-width: 0; }
  .perspective-switch button { min-width: 0; }
  .venture-card { display: flex; flex-direction: column; }
  .venture-card-logo { width: 100%; height: 96px; margin-bottom: 22px; padding: 12px; border: 1px solid var(--border); border-radius: 12px; background: #fff; object-fit: contain; }
.venture-card-action { margin-top: auto; padding-top: 18px; }
.manuel-profile { display: grid; grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr); gap: clamp(36px, 7vw, 92px); align-items: center; }
.manuel-portrait { overflow: hidden; margin: 0; aspect-ratio: 4 / 5; border: 1px solid var(--border); border-radius: 18px; background: #020304; }
.manuel-portrait img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 36%; }
  .customer-logo-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; margin-top: 44px; }
  .customer-logo-card { display: flex; align-items: center; justify-content: center; height: 104px; min-width: 0; padding: 14px; border: 1px solid var(--border); border-radius: 12px; background: #fff; }
  .customer-logo-card img { display: block; width: 100%; height: 100%; object-fit: contain; }
@media (max-width: 960px) {
    .mobile-nav { display: block; }
  .customer-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .manuel-profile { grid-template-columns: 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 720px) {
    section { padding: 72px 0; }
    .hero-grid { margin-top: 38px !important; }
    .field-grid > div { border-right: none !important; border-bottom: 1px solid var(--border) !important; grid-column: 1 / -1 !important; }
    footer { padding-bottom: 92px !important; }
  }
  @media (max-width: 480px) {
    .customer-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .perspective-switch:not(.is-compact) {
      display: grid !important;
      grid-template-columns: 1fr 1fr;
      width: 100%;
    }
    .perspective-switch:not(.is-compact) button {
      padding: 8px 8px !important;
      font-size: 11px !important;
      gap: 5px !important;
      white-space: normal !important;
      justify-content: center;
      text-align: center;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
  }

  

/* Detail pages — intentionally derived from the supplied homepage */
body { min-height: 100vh; }
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease;
}
.site-header.is-scrolled {
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  border-bottom-color: var(--border);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
}
.header-row { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-name { font-size: 15px; font-weight: 500; letter-spacing: -0.01em; }
.detail-nav { display: flex; align-items: center; gap: 2px; }
.detail-nav a { padding: 8px 11px; border-radius: 8px; color: var(--muted); font-size: 13.5px; }
.detail-nav a:hover, .detail-nav a[aria-current="page"] { color: var(--text); background: var(--soft); }
.header-cta { min-height: 44px; padding: 10px 17px; font-size: 14px; }
.mobile-menu-button {
  display: none; width: 42px; height: 42px; padding: 0; border-radius: 999px;
  border: 1px solid var(--border); background: var(--panel); color: var(--text); cursor: pointer;
}
.mobile-nav {
  display: none; padding: 12px 22px 18px; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); background: var(--bg);
}
.mobile-nav.is-open { display: block; }
.mobile-nav a { display: block; padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 17px; }
.detail-main { position: relative; z-index: 1; }
.detail-hero { padding-top: 154px; padding-bottom: 90px; }
.detail-hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); gap: 72px; align-items: start; }
.detail-title {
  margin: 0; max-width: 15ch; font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 500; letter-spacing: -0.04em; line-height: .98; text-wrap: balance;
}
.detail-title .muted { color: var(--muted); }
.detail-intro { max-width: 48ch; margin: 30px 0 0; font-size: 18px; line-height: 1.62; color: var(--muted); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-proof {
  margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--border);
  font-size: 11px; line-height: 1.7; letter-spacing: .06em; color: var(--muted);
}
.observer {
  position: relative; overflow: hidden; padding: 26px; min-height: 430px;
  background: var(--panel); border: 1px solid var(--border); border-radius: 16px;
}
.observer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .58;
  background: radial-gradient(circle at var(--scan-x, 50%) var(--scan-y, 45%), var(--soft), transparent 38%);
}
.observer-top, .observer-eyes, .observer-steps, .observer-copy { position: relative; z-index: 1; }
.observer-top { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.observer-kicker { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.observer-status { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; color: var(--accent); }
.observer-status-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px color-mix(in oklab, currentColor 12%, transparent); }
.observer-eyes { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 48px 0 34px; }
.observer-eye {
  position: relative; height: 118px; overflow: hidden; cursor: crosshair;
  border: 1.5px solid var(--text); border-radius: 70% 30% 70% 30% / 58% 58% 42% 42%;
  background: var(--bg); transform: rotate(-2deg);
}
.observer-eye + .observer-eye { border-radius: 30% 70% 30% 70% / 58% 58% 42% 42%; transform: rotate(2deg); }
.observer-eye::before, .observer-eye::after {
  content: ""; position: absolute; left: -8%; right: -8%; height: 54%; z-index: 3;
  background: var(--panel); transform: scaleY(0); transition: transform 110ms ease;
}
.observer-eye::before { top: -2%; transform-origin: top; border-bottom: 1px solid var(--border); }
.observer-eye::after { bottom: -2%; transform-origin: bottom; border-top: 1px solid var(--border); }
.observer.is-blinking .observer-eye::before,
.observer.is-blinking .observer-eye::after { transform: scaleY(1); }
.observer-pupil {
  position: absolute; left: 50%; top: 50%; width: 52px; height: 52px; border-radius: 50%;
  transform: translate(calc(-50% + var(--pupil-x, 0px)), calc(-50% + var(--pupil-y, 0px)));
  background: var(--text); transition: transform 75ms linear, background-color 0s;
}
.observer-pupil::before {
  content: ""; position: absolute; inset: 10px; border-radius: inherit;
  border: 2px solid var(--accent); box-shadow: 0 0 0 5px color-mix(in oklab, var(--accent) 14%, transparent);
}
.observer-pupil::after {
  content: ""; position: absolute; width: 8px; height: 8px; left: 13px; top: 11px;
  border-radius: 50%; background: var(--panel);
}
.observer-copy { display: flex; justify-content: space-between; align-items: end; gap: 22px; }
.observer-readout { max-width: 24ch; font-size: 19px; line-height: 1.35; letter-spacing: -.02em; font-weight: 500; }
.observer-hint { max-width: 25ch; color: var(--muted); font-size: 12px; line-height: 1.5; text-align: right; }
.observer-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-top: 24px; }
.observer-step {
  position: relative; padding-top: 11px; border-top: 1px solid var(--border);
  color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase;
}
.observer-step::before {
  content: ""; position: absolute; left: 0; top: -2px; width: 0; height: 3px; background: var(--accent);
}
.observer-step.is-active { color: var(--text); }
.observer-step.is-active::before { width: 100%; }
html[data-mode="night"] .observer { background: color-mix(in oklab, var(--panel) 92%, transparent); }
html[data-mode="night"] .observer-status { color: var(--accent-2); }
html[data-mode="night"] .observer-step::before { background: var(--accent-2); }
html[data-mode="night"] .observer-eye {
  border-color: var(--accent-2);
  background:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
    var(--bg);
  background-size: 18px 18px;
  box-shadow: inset 0 0 34px rgba(68,215,255,.08);
}
html[data-mode="night"] .observer-pupil { background: var(--accent-2); box-shadow: 0 0 26px rgba(68,215,255,.32); }
html[data-mode="night"] .observer-pupil::before { border-color: var(--bg); box-shadow: 0 0 0 5px rgba(7,17,31,.18); }
.mode-night { display: none !important; }
html[data-mode="night"] .mode-day { display: none !important; }
html[data-mode="night"] .mode-night { display: revert !important; }
.detail-section { padding: 112px 0; border-top: 1px solid var(--border); }
.section-heading { margin: 0; max-width: 23ch; font-size: clamp(32px, 4vw, 52px); line-height: 1.05; letter-spacing: -.03em; font-weight: 500; text-wrap: balance; }
.section-intro { max-width: 62ch; margin: 24px 0 0; color: var(--muted); font-size: 17px; line-height: 1.62; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.card-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.detail-card { display: flex; flex-direction: column; min-height: 255px; padding: 26px; }
.detail-card-number { margin-bottom: 38px; color: var(--accent); font-size: 11px; letter-spacing: .1em; }
.detail-card h3 { margin: 0 0 12px; font-size: 23px; line-height: 1.15; letter-spacing: -.02em; font-weight: 500; }
.detail-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.detail-card .card-meta { margin-top: auto; padding-top: 24px; color: var(--text); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
html[data-mode="night"] .detail-card-number { color: var(--accent-2); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 50px; }
.split-panel { padding: 26px; border: 1px solid var(--border); border-radius: 16px; background: var(--panel); }
.split-panel h3 { margin: 0 0 16px; font-size: 24px; letter-spacing: -.02em; font-weight: 500; }
.split-panel p { margin: 0; color: var(--muted); line-height: 1.65; }
.clean-list { margin: 22px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--border); }
.clean-list li { display: grid; grid-template-columns: 30px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 14px; line-height: 1.5; }
.clean-list .list-index { color: var(--accent); font-size: 10px; letter-spacing: .08em; }
html[data-mode="night"] .clean-list .list-index { color: var(--accent-2); }
.timeline { position: relative; margin-top: 52px; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 5px; top: 8px; bottom: 8px; width: 1px; background: var(--border); }
.timeline-item { position: relative; padding-bottom: 34px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -30px; top: 6px; width: 11px; height: 11px; box-sizing: border-box;
  border-radius: 50%; background: var(--bg); border: 2px solid var(--accent);
}
.timeline-date { display: block; margin-bottom: 6px; color: var(--accent); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.timeline-item h3 { margin: 0 0 6px; font-size: 19px; font-weight: 500; letter-spacing: -.01em; }
.timeline-item p { margin: 0; max-width: 62ch; color: var(--muted); font-size: 14px; line-height: 1.6; }
html[data-mode="night"] .timeline-date { color: var(--accent-2); }
html[data-mode="night"] .timeline-item::before { border-color: var(--accent-2); }
.reference-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.reference-tile { overflow: hidden; border: 1px solid var(--border); border-radius: 14px; background: var(--panel); }
.reference-visual {
  display: flex; align-items: center; justify-content: center; aspect-ratio: 16 / 10; padding: 24px;
  border-bottom: 1px solid var(--border); text-align: center; font-size: 22px; font-weight: 500;
  background: repeating-linear-gradient(135deg, transparent 0 9px, color-mix(in oklab, var(--muted) 7%, transparent) 9px 10px);
}
.reference-meta { display: flex; justify-content: space-between; gap: 12px; padding: 16px 18px; color: var(--muted); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.reference-list { list-style: none; margin: 46px 0 0; padding: 0; border-top: 1px solid var(--border); }
.reference-list li { display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; gap: 18px; align-items: center; min-height: 88px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.reference-list-index { color: var(--accent); font-size: 10px; letter-spacing: .1em; }
.reference-list strong { font-size: clamp(20px, 2.4vw, 30px); font-weight: 520; letter-spacing: -.025em; }
.reference-list li > span:last-child { color: var(--muted); font-size: 13px; text-align: right; }
html[data-mode="night"] .reference-list-index { color: var(--accent-2); }
.faq-list { margin-top: 48px; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--panel); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 20px;
  padding: 24px 26px; border: 0; background: transparent; color: var(--text); cursor: pointer;
  text-align: left; font-size: 18px; font-weight: 500;
}
.faq-plus { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; flex: 0 0 auto; border: 1px solid var(--border); border-radius: 50%; color: var(--accent); }
.faq-item.is-open .faq-plus { transform: rotate(45deg); }
.faq-answer { display: none; max-width: 72ch; padding: 0 26px 26px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.faq-item.is-open .faq-answer { display: block; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; margin-top: 50px; }
.contact-meta { margin-top: 28px; }
.contact-meta-row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.contact-meta-row span:first-child { color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.contact-form { padding: 28px; border: 1px solid var(--border); border-radius: 16px; background: var(--panel); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; }
.field { padding: 14px 16px; border-bottom: 1px solid var(--border); }
.field:nth-child(odd) { border-right: 1px solid var(--border); }
.field.full { grid-column: 1 / -1; border-right: 0; }
.field label { display: block; margin-bottom: 7px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.field input, .field textarea {
  width: 100%; padding: 0; border: 0; outline: 0; resize: vertical;
  background: transparent; color: var(--text); font: 15px/1.55 'Inter', sans-serif;
}
.form-foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 22px; }
.form-note { max-width: 42ch; color: var(--muted); font-size: 11px; line-height: 1.5; }
.form-note a, .form-status a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { min-height: 24px; margin: 18px 0 0; font-size: 13px; line-height: 1.55; }
.form-status:empty { min-height: 0; margin-top: 0; }
.form-status.is-pending { color: var(--muted); }
.form-status.is-success { color: #16803f; }
.form-status.is-error { color: #b42318; }
.contact-form button:disabled { cursor: wait; opacity: .64; }
.prose { max-width: 78ch; margin-top: 48px; }
.prose h2 { margin: 48px 0 14px; font-size: 26px; font-weight: 500; letter-spacing: -.02em; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); font-size: 15px; line-height: 1.7; }
.notice { margin-top: 32px; padding: 18px 20px; border-left: 2px solid var(--accent); border-radius: 0 10px 10px 0; background: var(--soft); font-size: 13px; line-height: 1.6; }
.detail-footer { position: relative; z-index: 1; margin-top: 32px; padding: 60px 0 110px; border-top: 1px solid var(--border); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand { max-width: 360px; }
.footer-copy { margin-top: 16px; color: var(--muted); font-size: 14.5px; line-height: 1.5; }
.footer-cols { display: flex; gap: 52px; flex-wrap: wrap; }
.footer-col-title { margin-bottom: 13px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-col { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; }
.footer-col a, .footer-col .consent-settings-link { display: inline-flex; align-items: center; min-height: 34px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.perspective-switch {
  display: inline-flex; align-items: stretch; gap: 0; max-width: 100%; padding: 4px;
  border: 1px solid var(--border); border-radius: 999px; background: var(--panel);
}
.perspective-switch button {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border: 0;
  min-height: 44px;
  border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer;
  font-size: 12.5px; font-weight: 500; line-height: 1.1; white-space: nowrap;
}
.perspective-switch button[aria-pressed="true"][data-mode-choice="day"] { background: var(--accent); color: #fff; }
.perspective-switch button[aria-pressed="true"][data-mode-choice="night"] { background: var(--accent-2); color: #07111F; }
.floating-switch {
  position: fixed; left: 50%; bottom: 22px; z-index: 80; width: max-content; max-width: calc(100vw - 24px);
  transform: translateX(-50%); opacity: 0; pointer-events: none; transition: opacity 240ms ease;
  border-radius: 999px; box-shadow: 0 10px 34px rgba(0,0,0,.22);
}
.floating-switch.is-visible { opacity: 1; pointer-events: auto; }
.switch-icon { width: 14px; height: 14px; flex: 0 0 auto; }
@media (max-width: 1040px) {
  .detail-nav { display: none; }
  .footer-col { gap: 2px; }
  .footer-col a, .footer-col .consent-settings-link { min-height: 44px; }
  .mobile-menu-button { display: inline-flex; align-items: center; justify-content: center; }
  .detail-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 42px; }
  .detail-hero-grid > * { min-width: 0; }
  .observer { max-width: 680px; }
  .card-grid, .reference-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .header-cta { display: none; }
  .detail-hero { padding-top: 128px; padding-bottom: 72px; }
  .detail-title { font-size: clamp(42px, 13vw, 64px); }
  .detail-section { padding: 82px 0; }
  .card-grid, .reference-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .split-grid, .contact-grid { gap: 24px; }
  .manuel-profile { grid-template-columns: 1fr; }
  .manuel-portrait { max-width: 520px; }
  .timeline { padding-left: 26px; }
  .timeline-item::before { left: -26px; }
  .field-grid { grid-template-columns: 1fr; }
  .field:nth-child(odd) { border-right: 0; }
}
@media (max-width: 520px) {
  .detail-title { font-size: clamp(36px, 11vw, 46px); }
  .observer { min-height: 420px; padding: 22px; }
  .observer-eyes { gap: 10px; margin-top: 40px; }
  .observer-eye { height: 95px; }
  .observer-pupil { width: 44px; height: 44px; }
  .observer-copy { align-items: start; flex-direction: column; }
  .observer-hint { text-align: left; }
  .observer-step { font-size: 7.5px; letter-spacing: .04em; }
  .card-grid, .reference-grid { grid-template-columns: 1fr; }
  .card-grid-two { grid-template-columns: 1fr; }
  .reference-list li { grid-template-columns: 38px minmax(0, 1fr); gap: 12px; }
  .reference-list li > span:last-child { grid-column: 2; text-align: left; }
  .floating-switch .perspective-switch button { min-width: 44px; min-height: 44px; justify-content: center; }
  .floating-switch .switch-long { display: none; }
}
@media (hover: none), (prefers-reduced-motion: reduce) {
  .observer-pupil { transition: transform 300ms ease; }
}
