/* VERSELO HOME — Sektions-Styles (lädt nach base.css) */

/* ══════════ HERO ══════════ */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 7rem var(--pad) 5.5rem; }
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(46% 60% at 76% 28%, rgba(201, 162, 74, .12), transparent 70%),
    radial-gradient(60% 80% at 8% 92%, rgba(201, 122, 76, .06), transparent 70%);
}
#voice { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
/* One message, centred over the film — the two-column hero carried a headline,
   a lede, two calls to action AND a product card, and decided on none of them. */
.hero__inner {
  position: relative; max-width: 54rem; margin-inline: auto; width: 100%;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero__inner .lede { max-width: 46rem; }
.hero__cta { display: flex; gap: 1rem 1.4rem; justify-content: center; flex-wrap: wrap; margin-top: 2.6rem; }
.hero__ctasub { color: var(--ink-4); font-size: .6rem; margin-top: .9rem; letter-spacing: .16em; }
.hero__cue {
  position: absolute; left: 50%; bottom: 2.2rem; transform: translateX(-50%);
  color: var(--ink-4); font-size: .58rem; letter-spacing: .3em;
  animation: heroCue 2.6s var(--ease) infinite;
}
@keyframes heroCue { 0%,100% { opacity: .32; transform: translate(-50%, 0); }
                     50%     { opacity: .75; transform: translate(-50%, 5px); } }
@media (prefers-reduced-motion: reduce) { .hero__cue { animation: none; } }
.lede { margin-top: 1.8rem; }

.hero__demo {
  position: relative; display: block; text-decoration: none; color: inherit;
  padding: 1.8rem 1.9rem 1.6rem;
  background: linear-gradient(160deg, #1E1B17, var(--raised) 62%);
  border: 1px solid var(--gold-line); border-radius: 14px;
  box-shadow: var(--shadow-deep), 0 0 90px rgba(201, 162, 74, .1);
  overflow: hidden;
  transition: transform .45s var(--easeOut), border-color .4s var(--ease), box-shadow .45s var(--ease);
}
.hero__demo:hover { transform: translateY(-5px); border-color: rgba(231, 194, 109, .6); box-shadow: var(--shadow-deep), 0 0 130px rgba(201, 162, 74, .18); }
.hero__demo::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(231, 194, 109, .09) 50%, transparent 68%);
  background-size: 240% 100%; animation: sheen 6s ease-in-out infinite;
}
@keyframes sheen { 0%, 55%, 100% { background-position: 130% 0; } 78% { background-position: -30% 0; } }
.hero__status { color: var(--gold); display: flex; align-items: center; gap: .55rem; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 12px rgba(231, 194, 109, .9); animation: pulse 2.4s var(--ease) infinite; flex: none; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.72); } }
.hero__demoline { font-family: var(--display); font-size: clamp(1.25rem, 1.8vw, 1.6rem); color: var(--ink); margin-top: 1rem; }
.wave { display: flex; align-items: center; gap: 5px; height: 34px; margin-top: 1.3rem; }
.wave span { width: 4px; border-radius: 2px; background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep)); height: calc(5px + var(--h, .35) * 26px); transition: height .19s ease; }
.hero__demohint { color: var(--ink-4); margin-top: 1.2rem; font-size: .62rem; }

/* The ticker used to be pinned to the bottom of the hero (position:absolute).
   It now closes the systems section, so it flows in the document instead — left
   absolute it collapsed onto its own label. */
.feed {
  position: relative;
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 1.4rem;
  padding: .8rem var(--pad); overflow: hidden;
  background: rgba(11, 10, 9, .6); backdrop-filter: blur(6px);
}
.feed__label { flex: none; color: var(--ink-4); font-size: .58rem; position: relative; z-index: 1; background: transparent; }
.feed__track { display: flex; white-space: nowrap; color: var(--ink-3); font-size: .64rem; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.feed__track span { animation: feed 46s linear infinite; }
@keyframes feed { to { transform: translateX(-100%); } }

/* ══════════ TRUST ══════════ */
.trust { background: var(--raised); }
.trust__row {
  max-width: var(--maxw); margin-inline: auto; padding: 1.15rem var(--pad);
  display: flex; flex-wrap: wrap; gap: .6rem 2.4rem; color: var(--ink-3); font-size: .66rem;
}
.trust__row span { cursor: help; transition: color .3s var(--ease); }
.trust__row span:hover { color: var(--gold); }

/* ══════════ PROBLEM ══════════ */
.scenes { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 1.4rem; }
.scene { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 1.9rem 1.8rem; box-shadow: var(--shadow-card); }
.scene__time { font-size: 1.9rem; letter-spacing: .02em; color: var(--ink); font-family: var(--mono); }
.scene__p { margin-top: 1.1rem; color: var(--ink-2); }
.scene__inst { margin-top: 1.4rem; padding-top: 1.1rem; border-top: 1px solid var(--line); color: var(--clay); font-size: .62rem; line-height: 1.7; }
.sec__close { margin-top: 3rem; max-width: 40rem; color: var(--ink-2); font-size: 1.1rem; }
.sec__close strong { color: var(--ink); font-weight: 600; }
.linehint { color: var(--gold); margin-top: 2.2rem; letter-spacing: .2em; }
.linehint i { font-style: normal; display: inline-block; animation: nudge 1.8s var(--ease) infinite; }
@keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }

/* ══════════ SYSTEME ══════════ */
.sys { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 1.4rem; }
.sys__card {
  display: flex; flex-direction: column; gap: 1.1rem; text-decoration: none; color: inherit;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 2rem 1.8rem;
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--easeOut), border-color .35s var(--ease), box-shadow .4s var(--ease);
}
.sys__card:hover { transform: translateY(-5px); border-color: var(--gold-line); box-shadow: var(--shadow-deep), 0 0 60px rgba(201, 162, 74, .08); }
.sys__no { color: var(--gold); }
.sys__p { color: var(--ink-2); flex: 1; }

/* ══════════ TELEFON ══════════ */
.tel { background: var(--raised); position: relative; }
.tel::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(46% 38% at 28% 18%, rgba(201, 162, 74, .09), transparent 70%);
}
.tel__inner { position: relative; max-width: var(--maxw); margin-inline: auto; padding: clamp(5.5rem, 12vh, 9rem) var(--pad); }
.tel__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: 1.6rem; align-items: start; }

.panel {
  background: linear-gradient(165deg, #1E1B17, var(--card) 65%);
  border: 1px solid var(--gold-line); border-radius: 14px; padding: 2rem 1.9rem;
  box-shadow: var(--shadow-deep), 0 0 80px rgba(201, 162, 74, .07);
}
.panel__label { color: var(--gold); }
.panel__number { display: block; font-family: var(--display); font-size: clamp(1.7rem, 2.8vw, 2.4rem); color: var(--ink); text-decoration: none; margin-top: 1rem; letter-spacing: .01em; transition: color .3s var(--ease); }
.panel__number:hover { color: var(--gold-bright); }
.panel__es { color: var(--clay); margin-top: .5rem; font-size: .62rem; }
.panel__or { color: var(--ink-4); text-align: center; margin: 1.6rem 0 1.3rem; font-size: .6rem; letter-spacing: .2em; }
.panel__formtitle { font-family: var(--display); font-size: 1.2rem; color: var(--ink); margin-bottom: 1rem; }
.panel__form input {
  width: 100%; background: rgba(11, 10, 9, .6); border: 1px solid var(--line-2); border-radius: 8px;
  color: var(--ink); font-family: var(--body); font-size: .95rem; padding: .85rem 1rem; margin-bottom: .7rem;
}
.panel__form input:focus { outline: none; border-color: var(--gold); }
.panel__form .btn { width: 100%; justify-content: center; margin-top: .3rem; }
.panel__note { color: var(--ink-4); font-size: .8rem; line-height: 1.55; margin-top: .9rem; }
.panel__toast { margin-top: .9rem; color: var(--gold-bright); font-size: .64rem; line-height: 1.7; }

.scenario { min-width: 0; }
.scenario__label { color: var(--ink-3); margin-bottom: 1rem; }
.scenario__tabs { display: flex; gap: .5rem; flex-wrap: wrap; }
.scenario__tab {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .12em;
  background: transparent; color: var(--ink-3); border: 1px solid var(--line-2); border-radius: 999px;
  padding: .55rem 1.1rem; cursor: pointer; transition: all .3s var(--ease);
}
.scenario__tab.is-on { background: var(--gold); border-color: var(--gold); color: var(--base); }
.scenario__tab:not(.is-on):hover { border-color: var(--gold-line); color: var(--ink); }
.scenario__script {
  margin-top: 1.1rem; background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 1.7rem 1.8rem; min-height: 21rem; box-shadow: var(--shadow-card);
}
.scenario__script .who { font-family: var(--mono); font-size: .6rem; letter-spacing: .16em; color: var(--ink-4); margin: 1.2rem 0 .35rem; }
.scenario__script .who--ki { color: var(--gold); }
.scenario__script .who:first-child { margin-top: 0; }
.scenario__script .say { color: var(--ink-2); }
.scenario__script .say .caret { display: inline-block; width: 2px; height: 1em; background: var(--gold-bright); vertical-align: text-bottom; animation: caret .8s steps(2) infinite; }
@keyframes caret { 50% { opacity: 0; } }

.feats { margin-top: 3rem; }
.feats__title { color: var(--ink-3); margin-bottom: 1.2rem; }
.feats__list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: .8rem 2.4rem; }
.feats__list li { position: relative; padding-left: 1.5rem; color: var(--ink-2); }
.feats__list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

.calc {
  margin-top: 3.4rem; background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: clamp(1.8rem, 3.5vw, 3rem); box-shadow: var(--shadow-card);
}
.calc__intro { color: var(--ink-3); margin: .8rem 0 1.8rem; }
.calc__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 2rem; margin-bottom: 2rem; }
.calc__in label { display: block; color: var(--ink-2); font-size: .92rem; margin-bottom: .8rem; }
.calc__val { color: var(--gold-bright); font-size: 1rem; margin-bottom: .5rem; }
.calc__help { color: var(--ink-4); font-size: .78rem; margin-top: .7rem; }
input[type="range"] { width: 100%; accent-color: var(--gold); }
.calc__money { display: flex; align-items: center; gap: .6rem; }
.calc__money input {
  width: 100%; background: rgba(11, 10, 9, .6); border: 1px solid var(--line-2); border-radius: 8px;
  color: var(--ink); font-family: var(--mono); font-size: 1.1rem; padding: .8rem 1rem;
}
.calc__money input:focus { outline: none; border-color: var(--gold); }
.calc__money span { color: var(--ink-3); font-family: var(--mono); }
.calc__out { border-left: 1px solid var(--gold-line); padding-left: 1.8rem; }
.calc__way { color: var(--ink-4); font-size: .64rem; }
.calc__res { font-family: var(--display); font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--ink); margin-top: .7rem; line-height: 1.25; overflow-wrap: anywhere; }
.calc__res b { color: var(--gold-bright); font-weight: 500; }
.calc__note { color: var(--ink-4); font-size: .8rem; margin-top: 1rem; line-height: 1.6; }

/* ══════════ DER WEG ══════════ */
.way { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: 1.6rem; padding-top: 1.4rem; }
/* Draht läuft exakt durch die Punkt-Mitten (Steps starten bei padding-top 1.4rem, Punkt bei -4px) */
.way__wire { position: absolute; top: calc(1.4rem + .5px); left: 2%; right: 2%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-line) 12%, var(--gold-line) 88%, transparent); }
.way__step { padding-top: 1.4rem; position: relative; }
.way__step::before { content: ''; position: absolute; top: -4px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 14px rgba(201, 162, 74, .7); }
.way__no { color: var(--gold); margin-bottom: .8rem; }
.way__step p:not(.way__no) { color: var(--ink-2); margin-top: .7rem; }
#weg > p[data-reveal] { margin-top: 3rem; }

/* ══════════ BEWEIS ══════════ */
.proof { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 1.4rem; }
.proof__b { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 2rem 1.9rem; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 1rem; }
.proof__no { color: var(--gold); }
.proof__b p:not(.proof__no) { color: var(--ink-2); flex: 1; }

/* ══════════ VERGLEICH ══════════ */
.cmp {
  overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-card);
  /* Scroll-Schatten: Kanten dunkeln ab, solange seitlich Inhalt verborgen ist */
  background:
    linear-gradient(90deg, var(--card), rgba(26, 24, 21, 0)) left / 36px 100% no-repeat local,
    linear-gradient(270deg, var(--card), rgba(26, 24, 21, 0)) right / 36px 100% no-repeat local,
    linear-gradient(90deg, rgba(0, 0, 0, .78), transparent) left / 26px 100% no-repeat scroll,
    linear-gradient(270deg, rgba(0, 0, 0, .78), transparent) right / 26px 100% no-repeat scroll,
    var(--card);
}
.cmp__table { width: 100%; min-width: 900px; border-collapse: collapse; }
.cmp__table th, .cmp__table td { text-align: left; vertical-align: top; padding: 1.1rem 1.3rem; border-bottom: 1px solid var(--line); font-size: .92rem; color: var(--ink-2); }
.cmp__table thead th { font-size: .64rem; letter-spacing: .13em; color: var(--ink-3); border-bottom: 1px solid var(--line-2); }
.cmp__table tbody th { font-family: var(--body); font-weight: 600; color: var(--ink); font-size: .95rem; width: 13%; }
.cmp__table tbody tr:last-child th, .cmp__table tbody tr:last-child td { border-bottom: none; }
.cmp__us { background: rgba(201, 162, 74, .07); color: var(--ink) !important; border-left: 1px solid var(--gold-line); }
thead .cmp__us { color: var(--gold) !important; }

/* ══════════ PORTALE ══════════ */
.portals { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: 1.6rem; }
.portal {
  position: relative; display: flex; flex-direction: column; gap: 1rem; overflow: hidden;
  text-decoration: none; color: inherit;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 2.3rem 2.1rem;
  box-shadow: var(--shadow-card);
  transition: transform .45s var(--easeOut), border-color .4s var(--ease), box-shadow .45s var(--ease);
}
.portal:hover { transform: translateY(-5px); border-color: var(--gold-line); box-shadow: var(--shadow-deep), 0 0 70px rgba(201, 162, 74, .09); }
.portal__no { color: var(--gold); }
.portal__p { color: var(--ink-2); flex: 1; }
.portal__hint, .portal__mods { color: var(--ink-4); font-size: .6rem; }
/* Websites: der Rahmen zeichnet sich beim Hover */
.portal__frame { position: absolute; inset: 12px; border-radius: 10px; pointer-events: none; }
.portal__frame::before, .portal__frame::after {
  content: ''; position: absolute; inset: 0; border-radius: 10px; border: 1px solid transparent;
}
.portal--web:hover .portal__frame::before {
  border-top-color: var(--gold-line); border-right-color: var(--gold-line);
  transition: border-color .01s, clip-path .6s var(--ease);
  animation: frameDraw .9s var(--easeOut) forwards;
}
@keyframes frameDraw {
  0% { clip-path: inset(0 100% 100% 0); border-color: var(--gold); }
  100% { clip-path: inset(0 0 0 0); border-color: var(--gold-line); }
}
/* Workspace: die Knoten leuchten */
.portal__nodes { position: absolute; top: 1.6rem; right: 1.8rem; display: flex; gap: 8px; }
.portal__nodes b { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-4); transition: background .3s var(--ease), box-shadow .3s var(--ease); }
.portal--ws:hover .portal__nodes b { background: var(--gold-bright); box-shadow: 0 0 10px rgba(231, 194, 109, .8); }
.portal--ws:hover .portal__nodes b:nth-child(1) { transition-delay: 0s; }
.portal--ws:hover .portal__nodes b:nth-child(2) { transition-delay: .09s; }
.portal--ws:hover .portal__nodes b:nth-child(3) { transition-delay: .18s; }
.portal--ws:hover .portal__nodes b:nth-child(4) { transition-delay: .27s; }
.portal--ws:hover .portal__nodes b:nth-child(5) { transition-delay: .36s; }

/* ══════════ STUDIO ══════════ */
.studio { position: relative; overflow: hidden; text-align: center; padding: clamp(6rem, 16vh, 11rem) var(--pad); border-top: 1px solid var(--line); background: var(--base); }
.studio__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(42% 55% at 50% 60%, rgba(201, 162, 74, .13), transparent 70%),
    radial-gradient(30% 40% at 72% 30%, rgba(201, 122, 76, .09), transparent 70%);
}
.studio__inner { position: relative; max-width: 52rem; margin-inline: auto; }
.studio__p { color: var(--ink-2); margin: 1.6rem auto 2.4rem; max-width: 40rem; }
.studio__cta {
  background: linear-gradient(100deg, var(--gold), var(--clay)); color: var(--base);
  font-family: var(--display); font-size: 1.05rem; text-transform: none; letter-spacing: 0;
  box-shadow: 0 14px 44px rgba(201, 162, 74, .3);
}
.studio__cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 60px rgba(201, 162, 74, .42); }
.studio__sub { color: var(--ink-4); margin-top: 1.4rem; font-size: .6rem; letter-spacing: .22em; }

/* ══════════ FAQ ══════════ */
#faq .sec__head { max-width: 46rem; }
.faq { max-width: 52rem; border-top: 1px solid var(--line); }
.faq__i { border-bottom: 1px solid var(--line); }
.faq__i summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.4rem;
  padding: 1.45rem 0; font-family: var(--display); font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--ink);
  transition: color .3s var(--ease);
}
.faq__i summary::-webkit-details-marker { display: none; }
.faq__i summary:hover { color: var(--gold-bright); }
.faq__i summary i { font-style: normal; color: var(--gold); font-family: var(--mono); transition: transform .35s var(--easeOut); flex: none; }
.faq__i[open] summary i { transform: rotate(45deg); }
.faq__i p { color: var(--ink-2); padding: 0 0 1.5rem; max-width: 46rem; }
/* Weiches Auf/Zu, wo der Browser es kann (Chromium); sonst instant wie bisher */
@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .faq__i::details-content {
    opacity: 0; block-size: 0; overflow: clip;
    transition: content-visibility .4s allow-discrete, opacity .35s var(--ease), block-size .4s var(--easeOut);
  }
  .faq__i[open]::details-content { opacity: 1; block-size: auto; }
}

/* ══════════ FINAL + FOOTER ══════════ */
.final { text-align: center; padding: clamp(6rem, 15vh, 10rem) var(--pad); background: var(--raised); }
.final__inner { max-width: 50rem; margin-inline: auto; }
.final__p { color: var(--ink-2); margin: 1.6rem auto 2.4rem; max-width: 40rem; }
.final__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.final__sub { color: var(--ink-4); margin-top: 1.6rem; font-size: .6rem; letter-spacing: .2em; }

.foot { border-top: 1px solid var(--line); padding: 3.5rem var(--pad) 2.5rem; max-width: none; }
.foot__grid { max-width: var(--maxw); margin-inline: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr)); gap: 2rem; }
.foot__h { color: var(--ink-4); margin-bottom: 1rem; font-size: .6rem; }
.foot nav { display: flex; flex-direction: column; gap: .55rem; }
.foot a { color: var(--ink-3); text-decoration: none; font-size: .9rem; transition: color .3s var(--ease); }
.foot a:hover { color: var(--ink); }
.foot__base {
  max-width: var(--maxw); margin: 2.8rem auto 0; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: var(--ink-4); font-size: .85rem;
}
.foot__note { color: rgba(244, 239, 232, .22); font-size: .6rem; }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .tel__grid { grid-template-columns: minmax(0, 1fr); }
  .calc__out { border-left: none; padding-left: 0; border-top: 1px solid var(--gold-line); padding-top: 1.4rem; }
}
@media (max-width: 760px) {
  .hero { padding-top: 6rem; }
  .feed__label { display: none; }
  .way__wire { display: none; } /* einspaltig gibt es keine Linie zum Verbinden */
}
@media (prefers-reduced-motion: reduce) {
  .feed__track span, .dot, .linehint i, .hero__demo::after { animation: none; }
  .wave span { height: 14px; }
  .faq__i::details-content { transition: none; }
}

/* Links in Karten-Spalten: Unterstrich nur unter dem Text, nicht kartenbreit */
.sys__card .link, .proof__b .link, .portal .link { align-self: flex-start; }

/* ══════════ MEDIA-EBENE (Perfektions-Pass) ══════════ */
.sys__media { margin: -2rem -1.8rem 1.4rem; overflow: hidden; border-radius: 12px 12px 0 0; border-bottom: 1px solid var(--line); }
.sys__media img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; transition: transform .6s var(--easeOut); }
.sys__card:hover .sys__media img { transform: scale(1.04); }

.proof__media { margin: 0 0 .6rem; }
.proof__media img { width: 100%; border-radius: 8px; border: 1px solid var(--gold-line); box-shadow: var(--shadow-card); }
.proof__media figcaption { color: var(--ink-4); font-size: .58rem; margin-top: .6rem; letter-spacing: .16em; }

.portal__media { margin: .4rem 0 .6rem; overflow: hidden; border-radius: 10px; border: 1px solid var(--line); }
.portal__media img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; object-position: top; transition: transform .6s var(--easeOut); }
.portal:hover .portal__media img { transform: scale(1.03); }

.studio__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.studio__shade { position: absolute; inset: 0; background:
  linear-gradient(180deg, var(--base), transparent 26%, transparent 76%, var(--base)),
  radial-gradient(55% 50% at 50% 50%, rgba(11, 10, 9, .55), transparent 100%); }

/* Nav-Alignment: Brand und Links auf eine Baseline, Dropdown-Link exakt wie Geschwister */
.nav { align-items: center; }
.nav__brand { line-height: 1; transform: translateY(-1px); }
.nav__links { align-items: center; }
.nav__links a, .nav__drop > a { display: inline-flex; align-items: center; line-height: 1; }
.nav__cta { padding: .8rem 1.4rem; }

/* Burger */
.nav__burger { display: none; background: none; border: 1px solid var(--line-2); border-radius: 8px; width: 42px; height: 38px; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.nav__burger i { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease); }
.nav__burger[aria-expanded="true"] i:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] i:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
.mnav { position: fixed; inset: 0; z-index: 55; background: rgba(11, 10, 9, .97); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; }
.mnav.is-open { opacity: 1; visibility: visible; }
.mnav__links { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.mnav__links a:not(.btn) { font-family: var(--display); font-size: 1.6rem; color: var(--ink); text-decoration: none; }
.mnav__links .btn { justify-content: center; margin-top: 1rem; }
/* Muss zum .nav__links-Breakpoint in base.css passen (880px) */
@media (max-width: 880px) {
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
}

/* ══════════ TELEFON-TEASER (Home → Unterseite) ══════════ */
.telteaser {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0; text-decoration: none; color: inherit; overflow: hidden;
  background: linear-gradient(165deg, #1E1B17, var(--card) 65%);
  border: 1px solid var(--gold-line); border-radius: 14px;
  box-shadow: var(--shadow-deep), 0 0 90px rgba(201, 162, 74, .08);
  transition: transform .45s var(--easeOut), border-color .4s var(--ease), box-shadow .45s var(--ease);
}
.telteaser:hover { transform: translateY(-5px); border-color: rgba(231, 194, 109, .6); box-shadow: var(--shadow-deep), 0 0 130px rgba(201, 162, 74, .16); }
.telteaser__media { margin: 0; overflow: hidden; }
.telteaser__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--easeOut); }
.telteaser:hover .telteaser__media img { transform: scale(1.04); }
.telteaser__body { padding: 2.2rem 2.2rem 2.4rem; display: flex; flex-direction: column; gap: 1.3rem; align-items: flex-start; }
.telteaser__status { color: var(--gold); display: flex; align-items: center; gap: .55rem; }
.telteaser .feats__list { grid-template-columns: 1fr; gap: .7rem; }
@media (max-width: 860px) { .telteaser { grid-template-columns: 1fr; } .telteaser__media img { aspect-ratio: 16 / 7; } }

/* ── Bühnen-Hintergrund: volle Breite hinter einer begrenzten .sec ── */
.sec--stage { isolation: isolate; }
.stagebg {
  position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100vw; z-index: -1; overflow: hidden; pointer-events: none;
}
.stagebg img {
  width: 100%; height: 100%; object-fit: cover; opacity: .34;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 76%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 76%, transparent);
}
.sec--stage .scene { background: rgba(26, 24, 21, .82); backdrop-filter: blur(6px); }

/* ── Hero V2: der Apparat als Bühne (Low-Angle-Hero, langsamer Ken-Burns) ── */
.hero__stage { position: absolute; inset: 0; overflow: hidden; }
.hero__stage img {
  width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%;
  animation: heroKen 26s ease-in-out infinite alternate;
  transform-origin: 60% 45%;
}
@keyframes heroKen { from { transform: scale(1); } to { transform: scale(1.09); } }
/* The hero film is a five-shot story, and one of those shots is a brightly lit
   overhead desk. The headline has to stay legible over the LIGHTEST frame, not
   the average one — so this shade is deliberately heavy. */
.hero__shade { position: absolute; inset: 0; display: block;
  background:
    radial-gradient(82% 66% at 50% 46%, rgba(11,10,9,.90) 0%, rgba(11,10,9,.74) 48%, rgba(11,10,9,.52) 100%),
    linear-gradient(0deg, rgba(11,10,9,.96) 0%, transparent 38%),
    linear-gradient(180deg, rgba(11,10,9,.8) 0%, transparent 26%);
}
/* Voice-Canvas nur noch als Hauch ganz unten — nicht mehr "der Strich" */
#voice { opacity: .35; }
@media (prefers-reduced-motion: reduce) { .hero__stage img { animation: none; } }
@media (max-width: 880px) {
  .hero__stage img { object-position: 68% 40%; }
  /* same reasoning as the desktop shade: legible over the brightest shot */
  .hero__shade { background:
    linear-gradient(180deg, rgba(11,10,9,.72) 0%, rgba(11,10,9,.9) 55%, rgba(11,10,9,.97) 100%); }
}

/* Hero V3: KI-Video statt Standbild (Telefon + verbundene System-Panels) */
.hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; }
  .hero__stage { background: url('../img/hero-nacht-poster.jpg') center/cover; } }
@media (max-width: 880px) { .hero__video { object-position: center 45%; } }
