
/* ---------- Token-System ---------------------------------------------- */
:root{
  --ink:#062A40; --ink-2:#0A3A56; --ink-3:#125078;
  --paper:#F7F8FA; --paper-2:#FFFFFF;
  --text:#0E2130; --text-soft:#54626E; --text-faint:#8A959F;
  --line:rgba(14,33,48,.11); --line-soft:rgba(14,33,48,.06);
  --accent:#FF6200; --accent-2:#FFA31A; --blue:#0085C8;
  --tint:#EEF0F3; --tint-2:#FAFBFC;
  --surface:var(--paper-2); --ground:var(--paper);
  --shadow:0 1px 1px rgba(14,33,48,.03), 0 20px 50px -28px rgba(14,33,48,.22);
  --r-s:10px; --r-m:16px; --r-l:24px;
  --maxw:1180px;
  --step--1:clamp(.82rem,.79rem + .12vw,.9rem);
  --step-0:clamp(1rem,.96rem + .2vw,1.09rem);
  --step-1:clamp(1.2rem,1.1rem + .5vw,1.45rem);
  --step-2:clamp(1.6rem,1.4rem + 1vw,2.2rem);
  --step-3:clamp(2.3rem,1.8rem + 2.4vw,3.8rem);
  --step-4:clamp(3.1rem,2.1rem + 5vw,6.8rem);
}
@media (prefers-color-scheme:dark){
  :root:not([data-theme="light"]){
    --paper:#062A40; --paper-2:#0C3E5C;
    --text:#EAF4FA; --text-soft:#9FBACB; --text-faint:#6D8CA0;
    --line:rgba(234,244,250,.14); --line-soft:rgba(234,244,250,.08);
    --surface:#0C3E5C; --ground:#062A40; --tint:#0A3A56; --tint-2:#0C3E5C;
    --shadow:0 1px 2px rgba(0,0,0,.5), 0 20px 60px -20px rgba(0,0,0,.8);
  }
}
:root[data-theme="dark"]{
  --paper:#062A40; --paper-2:#0C3E5C;
  --text:#EAF4FA; --text-soft:#9FBACB; --text-faint:#6D8CA0;
  --line:rgba(234,244,250,.14); --line-soft:rgba(234,244,250,.08);
  --surface:#0C3E5C; --ground:#062A40; --tint:#0A3A56; --tint-2:#0C3E5C;
  --shadow:0 1px 2px rgba(0,0,0,.5), 0 20px 60px -20px rgba(0,0,0,.8);
}

*,*::before,*::after{box-sizing:border-box}
body{
  margin:0; background:var(--ground); color:var(--text);
  font-family:"Schibsted Grotesk",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:var(--step-0); line-height:1.6; -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3{font-family:"Instrument Serif",Georgia,"Times New Roman",serif; text-wrap:balance; margin:0; letter-spacing:-.03em; line-height:1.02; font-weight:700}
p{margin:0}
a{color:inherit}
:focus-visible{outline:2px solid var(--accent); outline-offset:3px; border-radius:6px}

.wrap{max-width:var(--maxw); margin-inline:auto; padding-inline:24px}
.eyebrow{font-family:"IBM Plex Mono",ui-monospace,monospace; font-size:var(--step--1);
  letter-spacing:.2em; text-transform:uppercase; color:var(--text-faint); font-weight:500}
.lede{font-size:var(--step-1); color:var(--text-soft); max-width:34ch; line-height:1.45}

/* ---------- Dunkle Inseln (in beiden Themes dunkel) -------------------- */
.dark{ background:var(--tint); color:var(--text); }

/* ---------- Navigation -------------------------------------------------- */
header.nav{position:sticky; top:0; z-index:50; background:color-mix(in srgb,var(--ground) 78%,transparent);
  backdrop-filter:blur(18px) saturate(1.4); border-bottom:1px solid var(--line-soft)}
.nav-in{display:flex; align-items:center; gap:32px; height:64px}
.logo{display:flex; align-items:center; text-decoration:none}
/* Wortmarke: Bildhöhe steuert alles, die Breite folgt dem Seitenverhältnis. */
.logo img{height:34px; width:auto; display:block}
.logo-fuss img{height:42px}
@media(max-width:520px){.logo img{height:29px}}
.spark{display:none}
.nav-links{display:flex; gap:26px; margin-left:auto; font-size:.95rem; font-weight:500; color:var(--text-soft)}
.nav-links a{text-decoration:none; transition:color .18s}
.nav-links a:hover{color:var(--text)}
@media(max-width:820px){.nav-links{display:none}}

.btn{display:inline-flex; align-items:center; gap:10px; border-radius:999px; padding:13px 24px;
  font-weight:600; font-size:.97rem; text-decoration:none; border:1px solid transparent; cursor:pointer;
  transition:transform .18s cubic-bezier(.2,.8,.3,1), box-shadow .18s, background .18s, color .18s}
.btn-primary{background:var(--accent); color:#fff; box-shadow:0 6px 16px -10px rgba(232,88,0,.9)}
.btn-primary:hover{transform:translateY(-1px); background:#F05A00; box-shadow:0 10px 24px -12px rgba(232,88,0,.9)}
.btn-ghost{border-color:var(--line); color:var(--text); background:transparent}
.btn-ghost:hover{border-color:var(--text); transform:translateY(-2px)}
.btn-sm{padding:9px 18px; font-size:.9rem}

/* ---------- Hero -------------------------------------------------------- */
.hero{position:relative; overflow:hidden; padding:clamp(64px,9vw,120px) 0 clamp(60px,8vw,110px)}
.hero{background:var(--paper-2); border-bottom:1px solid var(--line-soft)}
.hero-grid{position:relative; display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(32px,5vw,72px); align-items:center}
@media(max-width:900px){.hero-grid{grid-template-columns:1fr; gap:48px}}
h1.title{font-size:var(--step-4); font-weight:800; letter-spacing:-.045em}
h1.title em{font-style:normal; color:var(--accent)}
.hero p.lede{margin-top:22px; max-width:38ch}
.hero-cta{display:flex; flex-wrap:wrap; gap:14px; margin-top:34px}
.hero-note{margin-top:20px; font-size:var(--step--1); color:var(--text-faint);
  font-family:"IBM Plex Mono",monospace}

/* ---------- Telefon ----------------------------------------------------- */
.phone-stage{display:flex; justify-content:center; perspective:1600px}
.phone{position:relative; width:min(320px,84vw); aspect-ratio:320/650; border-radius:46px;
  background:#16232E; padding:11px;
  box-shadow:0 50px 90px -45px rgba(14,33,48,.5), 0 0 0 1px rgba(255,255,255,.08) inset;
  transform:rotateY(-11deg) rotateX(4deg) rotate(.6deg)}
.screen{height:100%; border-radius:36px; background:#FFFFFF; overflow:hidden;
  display:flex; flex-direction:column; gap:14px; padding:22px 18px; position:relative}

.scr-top{display:flex; justify-content:space-between; align-items:baseline; color:var(--text)}
.scr-day{font-family:"Instrument Serif",Georgia,"Times New Roman",serif; font-weight:700; font-size:1.15rem; letter-spacing:-.03em}
.scr-date{font-family:"IBM Plex Mono",monospace; font-size:.7rem; color:var(--text-faint); letter-spacing:.08em}
.ring-row{display:flex; align-items:center; gap:16px; padding:14px 4px 4px}
.ring{width:104px; height:104px; flex:none}
.ring circle{fill:none; stroke-linecap:round}
.ring .track{stroke:rgba(14,33,48,.09); stroke-width:11}
.ring .val{stroke:var(--accent); stroke-width:11; stroke-dasharray:283;
  stroke-dashoffset:283; transform:rotate(-90deg); transform-origin:50% 50%;
  animation:fill 1.5s cubic-bezier(.2,.8,.25,1) .35s forwards}
@keyframes fill{to{stroke-dashoffset:73}}
.ring-txt .big{font-family:"Instrument Serif",Georgia,"Times New Roman",serif; font-size:2rem; font-weight:800;
  color:var(--text); letter-spacing:-.04em; line-height:1; font-variant-numeric:tabular-nums}
.ring-txt .sub{font-size:.78rem; color:var(--text-soft); margin-top:5px}
.habit{display:flex; align-items:center; gap:12px; background:#F7F8FA;
  border:1px solid rgba(14,33,48,.07); border-radius:15px; padding:12px 14px; color:var(--text); font-size:.86rem;
  opacity:0; transform:translateY(10px); animation:pop .55s cubic-bezier(.2,.8,.3,1) forwards}
.habit:nth-of-type(1){animation-delay:.5s} .habit:nth-of-type(2){animation-delay:.65s}
.habit:nth-of-type(3){animation-delay:.8s} .habit:nth-of-type(4){animation-delay:.95s}
@keyframes pop{to{opacity:1; transform:none}}
.tick{width:22px; height:22px; border-radius:7px; border:1.5px solid rgba(14,33,48,.18); flex:none;
  display:grid; place-items:center; font-size:.7rem; color:transparent}
.habit.done .tick{background:var(--blue); border-color:var(--blue); color:#fff}
.habit.done span.label{color:#8FAABB; text-decoration:line-through; text-decoration-color:rgba(255,255,255,.28)}
.streak{margin-left:auto; font-family:"IBM Plex Mono",monospace; font-size:.7rem; color:var(--accent)}

/* ---------- Zahlenband -------------------------------------------------- */
.stats{border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft)}
.stats-in{display:grid; grid-template-columns:repeat(3,1fr)}
@media(max-width:760px){.stats-in{grid-template-columns:1fr}}
.stat{padding:38px 8px 34px; border-left:1px solid var(--line-soft)}
.stat:first-child{border-left:0}
@media(max-width:760px){.stat{border-left:0; border-top:1px solid var(--line-soft)} .stat:first-child{border-top:0}}
.stat .num{font-family:"Instrument Serif",Georgia,"Times New Roman",serif; font-size:var(--step-3); font-weight:800;
  letter-spacing:-.05em; font-variant-numeric:tabular-nums; line-height:1}
.stat .k{margin-top:10px; font-weight:600}
.stat .d{margin-top:6px; color:var(--text-soft); font-size:.94rem; max-width:30ch}

/* ---------- Abschnitte -------------------------------------------------- */
section{padding:clamp(84px,11vw,152px) 0}
.sec-head{max-width:62ch; display:flex; flex-direction:column; gap:16px; margin-bottom:clamp(36px,5vw,60px)}
.sec-head h2{font-size:var(--step-3)}

.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:20px}
@media(max-width:880px){.cards{grid-template-columns:1fr}}
.card{background:var(--surface); border:1px solid var(--line); border-radius:var(--r-m);
  padding:30px 28px 32px; display:flex; flex-direction:column; gap:12px}
.card h3{font-size:var(--step-1); font-weight:600}
.card p{color:var(--text-soft); font-size:.97rem}
.card .glyph{font-family:"IBM Plex Mono",monospace; font-size:.75rem; letter-spacing:.14em;
  color:var(--accent); text-transform:uppercase}

/* Funktionen: grosse, abwechselnde Karten */
.feature{display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,4.5vw,72px); align-items:center;
  padding:clamp(30px,4vw,56px); border-radius:var(--r-l); background:var(--surface);
  border:1px solid var(--line); box-shadow:0 1px 1px rgba(14,33,48,.03)}
.features{display:flex; flex-direction:column; gap:24px}
.feature:nth-child(even) .f-visual{order:-1}
@media(max-width:880px){.feature{grid-template-columns:1fr} .feature:nth-child(even) .f-visual{order:0}}
.f-text{display:flex; flex-direction:column; gap:14px}
.f-text h3{font-size:var(--step-2); font-weight:700}
.f-text p{color:var(--text-soft)}
.f-visual{border-radius:var(--r-m); background:var(--tint); border:1px solid var(--line-soft);
  min-height:250px; padding:26px; display:flex; flex-direction:column; justify-content:center; gap:12px;
  overflow:hidden}

/* Mini-Visuals */
.bars{display:flex; align-items:flex-end; gap:9px; height:130px}
.bars i{flex:1; border-radius:5px 5px 2px 2px; background:var(--accent);
  transform-origin:bottom; transform:scaleY(.06); transition:transform .9s cubic-bezier(.2,.8,.25,1)}
.reveal.in .bars i{transform:scaleY(1)}
.bars i:nth-child(1){transition-delay:.02s} .bars i:nth-child(2){transition-delay:.06s}
.bars i:nth-child(3){transition-delay:.1s} .bars i:nth-child(4){transition-delay:.14s}
.bars i:nth-child(5){transition-delay:.18s} .bars i:nth-child(6){transition-delay:.22s}
.bars i:nth-child(7){transition-delay:.26s}
.bar-legend{display:flex; justify-content:space-between; font-family:"IBM Plex Mono",monospace;
  font-size:.68rem; color:#6D8CA0; letter-spacing:.1em}
.chips{display:flex; flex-wrap:wrap; gap:10px}
.chip{border:1px solid rgba(14,33,48,.14); color:var(--text); background:#fff; border-radius:999px; padding:8px 15px; font-size:.85rem}
.chip.hot{background:var(--accent); border-color:var(--accent); color:#fff}
.chip.gold{background:#fff; border-color:rgba(0,133,200,.45); color:#00679B}
.grid-dots{display:grid; grid-template-columns:repeat(14,1fr); gap:6px}
.grid-dots i{aspect-ratio:1; border-radius:3px; background:rgba(14,33,48,.07)}
.grid-dots i.on{background:var(--accent)}
.grid-dots i.half{background:rgba(255,98,0,.35)}
.quote-note{border-left:2px solid var(--accent); padding-left:16px; color:var(--text-soft); font-size:1.02rem; line-height:1.5}
.quote-note b{color:var(--text); font-weight:600}

/* Tagesablauf */
.day{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; counter-reset:step}
@media(max-width:880px){.day{grid-template-columns:1fr}}
.step{border-top:1px solid var(--line); padding-top:20px; display:flex; flex-direction:column; gap:10px}
.step .t{font-family:"IBM Plex Mono",monospace; font-size:.75rem; letter-spacing:.14em; color:var(--accent)}
.step h3{font-size:var(--step-1); font-weight:600}
.step p{color:var(--text-soft); font-size:.96rem}

/* Business-Band */
.biz{display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(28px,5vw,64px); align-items:center}
@media(max-width:880px){.biz{grid-template-columns:1fr}}
.biz-list{display:flex; flex-direction:column; gap:2px; margin-top:8px}
.biz-list div{display:flex; gap:14px; padding:15px 0; border-bottom:1px solid var(--line-soft); align-items:baseline}
.biz-list b{font-weight:600}
.biz-list span{color:var(--text-soft); font-size:.95rem; margin-left:auto; text-align:right}

/* Schluss-CTA */
.final{position:relative; overflow:hidden; text-align:center; border-radius:var(--r-l);
  padding:clamp(56px,8vw,104px) 28px; background:#E85400;
  border:1px solid rgba(197,74,0,.45); box-shadow:none}
.final .eyebrow{color:rgba(255,255,255,.78)}
.final .btn-primary{background:#fff; color:#E85400; box-shadow:none}
.final .btn-primary:hover{background:#fff; color:#C54A00}

.final > *{position:relative}
.final h2{font-size:var(--step-3); color:#fff}
.final p{color:rgba(255,255,255,.92); margin:16px auto 30px; max-width:44ch}

/* Fussbereich */
footer{border-top:1px solid var(--line-soft); padding:56px 0 40px; color:var(--text-soft); font-size:.92rem}
.foot-grid{display:flex; flex-wrap:wrap; gap:32px; justify-content:space-between}
.foot-links{display:flex; gap:26px; flex-wrap:wrap}
.foot-links a{text-decoration:none}
.foot-links a:hover{color:var(--text)}
.foot-base{margin-top:34px; padding-top:22px; border-top:1px solid var(--line-soft);
  display:flex; flex-wrap:wrap; gap:16px; justify-content:space-between; font-size:.85rem; color:var(--text-faint)}

/* Scroll-Auftritt */
.reveal{opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s cubic-bezier(.2,.8,.25,1)}
.reveal.in{opacity:1; transform:none}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1; transform:none; transition:none}
  .habit,.ring .val,.bars i{animation:none!important; transition:none!important; opacity:1; transform:none}
  .ring .val{stroke-dashoffset:73}
  .bars i{transform:scaleY(1)}
}

/* ---------- Journal: Übersicht --------------------------------------------------- */
.blog-head{padding:clamp(48px,7vw,88px) 0 clamp(28px,4vw,44px)}
.listing > .blog-head{background:none}
.blog-head h1{font-size:var(--step-4); font-weight:800; letter-spacing:-.045em; margin-top:18px}
.blog-head .lede{margin-top:20px; max-width:46ch}
.filter{display:flex; gap:10px; flex-wrap:wrap; margin-top:34px}
.filter button{font-family:"IBM Plex Mono",monospace; font-size:.75rem; letter-spacing:.12em;
  text-transform:uppercase; border:1px solid var(--line); background:transparent; color:var(--text-soft);
  border-radius:999px; padding:9px 16px; cursor:pointer; transition:.18s}
.filter button:hover{border-color:var(--text); color:var(--text)}
.filter button[aria-pressed="true"]{background:var(--accent); border-color:var(--accent); color:#fff}

/* Aufmacher */
.lead-post{display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(24px,4vw,56px); align-items:stretch;
  border-radius:var(--r-l); overflow:hidden; border:1px solid var(--line-soft);
  background:var(--surface); box-shadow:var(--shadow); text-decoration:none; margin-bottom:24px}
@media(max-width:880px){.lead-post{grid-template-columns:1fr}}
.lead-txt{padding:clamp(28px,4vw,52px); display:flex; flex-direction:column; gap:16px; justify-content:center}
.lead-txt h2{font-size:var(--step-3)}
.lead-txt p{color:var(--text-soft)}
.art-figure{background:var(--tint); min-height:280px; position:relative;
  display:grid; place-items:center; overflow:hidden; border-left:1px solid var(--line-soft)}

.art-figure svg{position:relative; z-index:1; width:74%; height:auto}
.meta{display:flex; gap:14px; align-items:center; font-family:"IBM Plex Mono",monospace;
  font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--text-faint)}
.meta .tag{color:var(--accent)}

.post-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px}
@media(max-width:980px){.post-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:660px){.post-grid{grid-template-columns:1fr}}
.post{display:flex; flex-direction:column; gap:14px; text-decoration:none; background:var(--surface);
  border:1px solid var(--line-soft); border-radius:var(--r-m); overflow:hidden;
  transition:transform .2s cubic-bezier(.2,.8,.3,1), box-shadow .2s, border-color .2s}
.post:hover{transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--line)}
.post .thumb{height:150px; background:var(--tint); border-bottom:1px solid var(--line-soft); position:relative;
  display:grid; place-items:center; overflow:hidden}

.post .thumb svg{position:relative; z-index:1; width:62%; height:auto}
.post .body{padding:0 24px 26px; display:flex; flex-direction:column; gap:11px}
.post h3{font-size:var(--step-1); font-weight:600}
.post p{color:var(--text-soft); font-size:.95rem}
.post.hidden{display:none}

/* Newsletter */
.news{margin-top:clamp(48px,7vw,88px); border-radius:var(--r-l); padding:clamp(32px,5vw,60px);
  background:#E85400; border:1px solid rgba(197,74,0,.45);
  display:grid; grid-template-columns:1.1fr .9fr; gap:32px; align-items:center; position:relative; overflow:hidden}

.news > *{position:relative}
@media(max-width:820px){.news{grid-template-columns:1fr}}
.news h2{color:#fff; font-size:var(--step-2)}
.news p{color:rgba(255,255,255,.92); margin-top:12px; max-width:40ch}
.news form{display:flex; gap:10px; flex-wrap:wrap}
.news input{flex:1; min-width:200px; background:rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.45);
  border-radius:999px; padding:13px 20px; color:#fff; font:inherit; font-size:.95rem}
.news .btn-primary{background:#fff; color:#E85800; box-shadow:0 12px 30px -14px rgba(5,30,46,.55)}
.news input::placeholder{color:rgba(255,255,255,.8)}

/* ---------- Artikel ----------------------------------------------------- */
.article{display:none; padding-bottom:40px}
body.reading .article{display:block}
body.reading .listing{display:none}
.a-head{padding:clamp(36px,6vw,72px) 0 clamp(20px,3vw,32px); max-width:760px; margin-inline:auto}
.back{display:inline-flex; align-items:center; gap:8px; font-family:"IBM Plex Mono",monospace;
  font-size:.75rem; letter-spacing:.12em; text-transform:uppercase; color:var(--text-faint);
  text-decoration:none; background:none; border:0; cursor:pointer; padding:0}
.back:hover{color:var(--accent)}
.a-head h1{font-size:var(--step-3); margin-top:24px}
.a-head .lede{margin-top:20px}
.a-meta{display:flex; gap:16px; align-items:center; margin-top:26px; padding-top:20px;
  border-top:1px solid var(--line-soft); font-family:"IBM Plex Mono",monospace; font-size:.74rem;
  letter-spacing:.1em; text-transform:uppercase; color:var(--text-faint); flex-wrap:wrap}
.avatar{width:30px; height:30px; border-radius:50%; background:var(--accent);
  display:grid; place-items:center; color:#fff; font-family:"Instrument Serif",Georgia,"Times New Roman",serif;
  font-size:.8rem; font-weight:700; letter-spacing:0}
.a-hero{max-width:1000px; margin:clamp(24px,4vw,44px) auto; border-radius:var(--r-l); overflow:hidden;
  background:var(--tint); border:1px solid var(--line-soft);
  aspect-ratio:2.4/1; display:grid; place-items:center; position:relative}

.a-hero svg{position:relative; z-index:1; width:52%; height:auto}
.prose{max-width:66ch; margin-inline:auto; display:flex; flex-direction:column; gap:24px; font-size:1.09rem; line-height:1.72}
.prose h2{font-size:var(--step-2); margin-top:20px}
.prose h3{font-size:var(--step-1); font-weight:600; margin-top:8px}
.prose strong{font-weight:600}
.prose ul{margin:0; padding-left:22px; display:flex; flex-direction:column; gap:10px; color:var(--text-soft)}
.prose > p{color:var(--text-soft)}
.prose > p:first-of-type{color:var(--text)}
.pull{border-left:3px solid var(--accent); padding:6px 0 6px 24px; font-family:"Instrument Serif",Georgia,"Times New Roman",serif;
  font-size:var(--step-2); font-weight:600; letter-spacing:-.03em; line-height:1.2; color:var(--text)}
.callout{background:var(--surface); border:1px solid var(--line-soft); border-radius:var(--r-m);
  padding:24px 26px; display:flex; flex-direction:column; gap:10px; font-size:1rem}
.callout .eyebrow{color:var(--accent)}
.callout p{color:var(--text-soft)}
.a-foot{max-width:66ch; margin:clamp(40px,6vw,72px) auto 0; padding-top:28px; border-top:1px solid var(--line-soft);
  display:flex; gap:20px; align-items:center; flex-wrap:wrap}
.a-foot p{color:var(--text-soft); font-size:.95rem; max-width:34ch}
.more{max-width:1000px; margin:clamp(44px,6vw,80px) auto 0}
.more h2{font-size:var(--step-2); margin-bottom:24px}

/* ---------- Schrift: Instrument Serif für Überschriften ------------------ */
h1,h2,h3,.stat .num,.ring-txt .big,.scr-day,.pull,.f-text h3,.card h3,.step h3,
.post h3,.lead-txt h2,.a-head h1,.prose h2,.prose h3,.more h2,.news h2,.final h2,
.blog-head h1,h1.title,.sec-head h2{
  font-weight:400; letter-spacing:-.015em; line-height:1.07;
}
h1.title,.blog-head h1{letter-spacing:-.02em; line-height:1.02}
.lede{font-weight:400}
.eyebrow{font-size:.72rem; letter-spacing:.22em}
.stat .num{font-size:clamp(2.8rem,2.2rem + 2.4vw,4.4rem)}
.pull{font-style:italic}

/* ---------- Preise, Team, Kontakt ---------------------------------------- */
.plaene{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin:8px 0 12px}
@media(max-width:900px){.plaene{grid-template-columns:1fr}}
.plan{display:flex; flex-direction:column; gap:14px; background:var(--surface);
  border:1px solid var(--line); border-radius:var(--r-m); padding:30px 28px 32px}
.plan-hervor{border-color:var(--accent); box-shadow:0 1px 1px rgba(14,33,48,.03)}
.preis{font-family:"Instrument Serif",Georgia,serif; font-size:3rem; line-height:1;
  letter-spacing:-.02em; font-variant-numeric:tabular-nums}
.preis span{font-family:"Schibsted Grotesk",sans-serif; font-size:.9rem; color:var(--text-faint);
  letter-spacing:0; margin-left:8px}
.plan-text{color:var(--text-soft); font-size:.96rem}
.plan-liste{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px;
  font-size:.95rem; color:var(--text-soft); border-top:1px solid var(--line-soft); padding-top:16px}
.plan-liste li{padding-left:22px; position:relative}
.plan-liste li::before{content:""; position:absolute; left:0; top:.52em; width:9px; height:9px;
  border-radius:3px; background:var(--accent)}
.plan .btn{align-self:flex-start; margin-top:auto}

.team{display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin:6px 0}
@media(max-width:760px){.team{grid-template-columns:1fr}}
.kopf{background:var(--surface); border:1px solid var(--line); border-radius:var(--r-m); padding:26px 26px 28px}
.kopf .name{font-family:"Instrument Serif",Georgia,serif; font-size:1.6rem; line-height:1.1}
.kopf .rolle{font-family:"IBM Plex Mono",monospace; font-size:.72rem; letter-spacing:.2em;
  text-transform:uppercase; color:var(--accent); margin-top:6px}
.kopf .zitat{color:var(--text-soft); font-size:.98rem; margin-top:14px}

.kontakt{display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin:6px 0}
@media(max-width:760px){.kontakt{grid-template-columns:1fr}}
.kontakt-karte{background:var(--surface); border:1px solid var(--line); border-radius:var(--r-m);
  padding:28px; display:flex; flex-direction:column; gap:12px}
.kontakt-karte p{color:var(--text-soft); font-size:.95rem}
.kontakt-gross{font-family:"Instrument Serif",Georgia,serif; font-size:1.7rem; line-height:1.15}
.kontakt-gross a{text-decoration:none; color:var(--text)}
.kontakt-gross a:hover{color:var(--accent)}
.kontakt-karte .btn{align-self:flex-start; margin-top:auto}

/* ---------- Blick in die App --------------------------------------------- */
.schau{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:start}
@media(max-width:900px){.schau{grid-template-columns:1fr; gap:32px}}
.schau figure{margin:0; display:flex; flex-direction:column; gap:16px}
.schau .rahmen{border:1px solid var(--line); border-radius:var(--r-m); background:var(--surface);
  padding:10px; overflow:hidden}
.schau img{display:block; width:100%; height:auto; border-radius:10px}
.schau figcaption{display:flex; flex-direction:column; gap:6px}
.schau .nr{font-family:"IBM Plex Mono",monospace; font-size:.72rem; letter-spacing:.2em;
  text-transform:uppercase; color:var(--accent)}
.schau h3{font-size:var(--step-1)}
.schau p{color:var(--text-soft); font-size:.96rem}

/* ---------- Yala ---------------------------------------------------------- */
.yala{display:grid; grid-template-columns:.95fr 1.05fr; gap:clamp(28px,5vw,72px); align-items:center}
@media(max-width:900px){.yala{grid-template-columns:1fr}}
.yala-text{display:flex; flex-direction:column; gap:16px}
.yala-text h2{font-size:var(--step-3)}
.yala-text p{color:var(--text-soft)}
.yala-punkte{display:flex; flex-direction:column; gap:2px; margin-top:6px}
.yala-punkte div{display:flex; gap:14px; padding:14px 0; border-bottom:1px solid var(--line-soft); align-items:baseline}
.yala-punkte b{font-weight:600; min-width:9ch}
.yala-punkte span{color:var(--text-soft); font-size:.95rem}
.yala-videos{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
@media(max-width:560px){.yala-videos{grid-template-columns:1fr}}
.yala-video{display:flex; flex-direction:column; gap:10px}
.yala-video video{width:100%; aspect-ratio:9/16; object-fit:cover; border-radius:var(--r-m);
  border:1px solid var(--line); background:var(--tint); display:block}
.yala-video .titel{font-size:.9rem; font-weight:600}
.yala-video .sub{font-size:.85rem; color:var(--text-soft)}

/* ---------- Sprachwahl ---------------------------------------------------- */
.sprachwahl{position:relative}
.sprachwahl > button{font:inherit; font-size:.9rem; font-weight:500; color:var(--text-soft);
  background:none; border:0; cursor:pointer; padding:8px 4px; display:flex; align-items:center; gap:6px}
.sprachwahl > button::after{content:""; width:6px; height:6px; border-right:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor; transform:rotate(45deg) translate(-2px,-2px)}
.sprachwahl > button:hover{color:var(--text)}
.sprachliste{position:absolute; top:calc(100% + 10px); right:0; min-width:150px; display:none;
  flex-direction:column; background:var(--surface); border:1px solid var(--line);
  border-radius:var(--r-s); padding:6px; box-shadow:var(--shadow); z-index:60}
.sprachwahl.offen .sprachliste{display:flex}
.sprachliste a{padding:9px 12px; border-radius:7px; text-decoration:none; font-size:.92rem; color:var(--text-soft)}
.sprachliste a:hover{background:var(--tint); color:var(--text)}
.sprachliste a[aria-current="true"]{color:var(--accent); font-weight:600}
@media(max-width:820px){.sprachwahl > button{font-size:.85rem}}

/* ---------- Studio und Marketing ----------------------------------------- */
/* Eigene Grundfarbe: warmer Stein gegen das kühle Porzellan der übrigen Seite. */
.biz-band{background:#F2EFE9; border-top:1px solid rgba(60,48,32,.1); border-bottom:1px solid rgba(60,48,32,.1)}
.biz-band .eyebrow{color:#8A7A62}
.biz-zwei{display:grid; grid-template-columns:1fr 1fr; gap:24px}
@media(max-width:880px){.biz-zwei{grid-template-columns:1fr}}
.biz-karte{background:#FFFDFA; border:1px solid rgba(60,48,32,.13); border-radius:var(--r-l);
  padding:clamp(28px,3.4vw,44px); display:flex; flex-direction:column; gap:14px}
.biz-karte h3{font-size:var(--step-2)}
.biz-karte > p{color:var(--text-soft)}
.biz-liste{list-style:none; margin:6px 0 4px; padding:0; display:flex; flex-direction:column; gap:11px;
  font-size:.96rem; color:var(--text-soft); border-top:1px solid rgba(60,48,32,.1); padding-top:18px}
.biz-liste li{padding-left:22px; position:relative}
.biz-liste li::before{content:""; position:absolute; left:0; top:.55em; width:9px; height:9px;
  border-radius:3px; background:var(--accent)}
.biz-karte .btn{align-self:flex-start; margin-top:auto}
.biz-fuss{margin-top:28px; color:var(--text-soft); font-size:.96rem}
.biz-fuss a{color:var(--accent)}
