/* =========================================================
   PGTV — Modern Simple (DACH)
========================================================= */
:root{
  --bg:        #fafafa;
  --bg-2:      #f2f2f2;
  --surface:   rgba(255,255,255,.55);
  --line:      rgba(14,14,14,.06);
  --line-2:    rgba(14,14,14,.12);
  --text:      #0e0e0e;
  --muted:     #6b6863;
  --dim:       #a8a39a;
  --accent:    #0e0e0e;
  --accent-h:  #2a2a2a;
  --accent-ink:#ffffff;

  --shadow-sm: 0 1px 2px rgba(14,14,14,.04), 0 2px 8px rgba(14,14,14,.04);
  --shadow-md: 0 2px 4px rgba(14,14,14,.04), 0 8px 24px -6px rgba(14,14,14,.08);
  --shadow-lg: 0 8px 16px -8px rgba(14,14,14,.06), 0 24px 48px -16px rgba(14,14,14,.12);

  --f-sans:    "Inter", system-ui, sans-serif;
  --f-serif:   "Instrument Serif", Georgia, serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;

  --maxw:      1280px;
  --pad-x:     clamp(20px, 4vw, 64px);
  --r:         14px;
  --r-lg:      24px;
  --r-xl:      32px;
}

/* =========================================================
   LADEBILDSCHIRM (Logo füllt sich von unten nach oben)
========================================================= */
.preloader{
  position:fixed;inset:0;z-index:9999;
  background:#fafafa;
  display:grid;place-items:center;
  transition:opacity .55s ease, visibility .55s ease;
  opacity:1;visibility:visible;
}
.preloader.is-hidden{opacity:0;visibility:hidden;pointer-events:none;}
.preloader__logo{
  position:relative;
  width:clamp(120px, 16vw, 200px);
  aspect-ratio:1/1;
}
.preloader__logo-base{
  position:absolute;inset:0;
  background-image:url('logos/pgtv-hd.png?v=2');
  background-size:contain;background-repeat:no-repeat;background-position:center;
  opacity:.10;
  mix-blend-mode:darken;
}
.preloader__logo-fill{
  position:absolute;inset:0;
  background-image:url('logos/pgtv-hd.png?v=2');
  background-size:contain;background-repeat:no-repeat;background-position:center;
  mix-blend-mode:darken;

  /* Wave-Mask: oben transparent, unten solid weiß, dazwischen Wellen-Kante */
  -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200' preserveAspectRatio='none'><path d='M 0 100 C 12.5 92 25 108 37.5 100 C 50 92 62.5 108 75 100 C 87.5 92 100 108 112.5 100 L 100 200 L 0 200 Z' fill='white'/></svg>");
          mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200' preserveAspectRatio='none'><path d='M 0 100 C 12.5 92 25 108 37.5 100 C 50 92 62.5 108 75 100 C 87.5 92 100 108 112.5 100 L 100 200 L 0 200 Z' fill='white'/></svg>");
  -webkit-mask-size:120% 200%;
          mask-size:120% 200%;
  -webkit-mask-repeat:no-repeat;
          mask-repeat:no-repeat;
  -webkit-mask-position:0% 0%;
          mask-position:0% 0%;

  animation:liquid-rise 1.8s cubic-bezier(0.45,0,0.35,1) forwards,
            liquid-wobble 1.8s ease-in-out infinite;
}
@keyframes liquid-rise{
  0%   {-webkit-mask-position:0% 0%;mask-position:0% 0%;}
  100% {-webkit-mask-position:0% 100%;mask-position:0% 100%;}
}
@keyframes liquid-wobble{
  0%, 100%{-webkit-mask-position-x:0%;mask-position-x:0%;}
  50%     {-webkit-mask-position-x:-8%;mask-position-x:-8%;}
}
.preloader__bar{
  position:absolute;bottom:-28px;left:50%;transform:translateX(-50%);
  height:1px;width:130px;background:rgba(14,14,14,.08);overflow:hidden;
}
.preloader__bar::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg, transparent, var(--text), transparent);
  width:40%;
  animation:preloader-bar 1.6s ease-in-out infinite;
}
@keyframes preloader-bar{
  0%{left:-40%;}
  100%{left:100%;}
}
@media (prefers-reduced-motion: reduce){
  .preloader__logo-fill{animation-duration:.3s;}
}

*{box-sizing:border-box;margin:0;padding:0;}
html,body{background:var(--bg);color:var(--text);font-family:var(--f-sans);font-size:16px;line-height:1.55;}
body{-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;overflow-x:hidden;scroll-behavior:smooth;}
a{color:inherit;text-decoration:none;}
button{font:inherit;border:0;background:none;color:inherit;cursor:pointer;}
ul,ol{list-style:none;}
img,svg{display:block;max-width:100%;}
::selection{background:var(--text);color:var(--bg);}

.container{max-width:var(--maxw);margin:0 auto;padding:0 var(--pad-x);}

/* =========================================================
   HEADER
========================================================= */
.header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  padding:18px clamp(24px, 4vw, 56px);
  background:rgba(250,250,250,.72);
  backdrop-filter:blur(28px) saturate(180%);
  -webkit-backdrop-filter:blur(28px) saturate(180%);
  border-bottom:1px solid transparent;
  transition:padding .25s ease, border-color .25s ease, background .25s ease;
}
.header.is-scrolled{
  padding:12px clamp(24px, 4vw, 56px);
  border-bottom-color:rgba(14,14,14,.06);
  background:rgba(250,250,250,.88);
}

.brand{display:inline-flex;align-items:center;color:var(--text);}
.brand__mark{
  width:56px;height:56px;object-fit:contain;
  transition:width .25s ease, height .25s ease, transform .3s cubic-bezier(.2,.7,.2,1);
}
.brand:hover .brand__mark{transform:rotate(-5deg) scale(1.04);}
.header.is-scrolled .brand__mark{width:46px;height:46px;}
.footer .brand__mark{width:64px;height:64px;}

.nav{display:flex;gap:36px;}
.nav a{color:var(--muted);font-size:14px;font-weight:500;transition:color .2s;position:relative;}
.nav a:hover{color:var(--text);}
.nav a::after{content:"";position:absolute;left:0;right:0;bottom:-4px;height:1px;background:var(--accent);transform:scaleX(0);transform-origin:left;transition:transform .3s cubic-bezier(.7,0,.2,1);}
.nav a:hover::after{transform:scaleX(1);}

.header__cta{
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 20px;border-radius:999px;
  background:var(--text);color:var(--bg);
  font-size:13.5px;font-weight:600;letter-spacing:-.005em;
  transition:background .2s, color .2s, transform .2s;
}
.header__cta svg{width:14px;height:14px;transition:transform .2s;}
.header__cta:hover{background:#2a2a2a;}
.header__cta:hover svg{transform:translateX(2px);}

.menu-toggle{display:none;}
@media (max-width:900px){
  .header{padding:8px 12px 8px 14px;gap:8px;}
  .nav, .header__cta{display:none;}
  .menu-toggle{display:grid;place-items:center;width:38px;height:38px;color:var(--text);border-radius:50%;}
  .menu-toggle svg{width:20px;height:20px;}
  .nav.is-open{
    display:flex;flex-direction:column;gap:8px;align-items:center;
    position:fixed;top:80px;left:16px;right:16px;padding:24px;
    background:rgba(255,255,255,.85);
    -webkit-backdrop-filter:blur(28px) saturate(180%);
    backdrop-filter:blur(28px) saturate(180%);
    border-radius:24px;
    box-shadow:0 8px 32px -8px rgba(14,14,14,.15);
  }
}

/* =========================================================
   Reusable section heads
========================================================= */
.section-head{
  margin-bottom:64px;max-width:780px;
}
.section-head--center{text-align:center;margin-left:auto;margin-right:auto;}
.section-num{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--f-mono);font-size:11px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--muted);
  padding:7px 14px;border-radius:999px;
  background:rgba(14,14,14,.04);
  margin-bottom:32px;
}
.section-head--center .section-num{margin-left:auto;margin-right:auto;}
.section-title{
  font-size:clamp(40px, 5.5vw, 80px);
  font-weight:700;line-height:1.02;letter-spacing:-.035em;color:var(--text);
}
.section-title em{
  font-style:italic;font-family:var(--f-serif);font-weight:400;
  color:var(--text);
}
.section-intro{
  margin-top:20px;font-size:18px;line-height:1.55;color:var(--muted);max-width:560px;
}
.section-head--center .section-intro{margin-left:auto;margin-right:auto;}

/* =========================================================
   HERO
========================================================= */
.hero{
  padding:200px 0 140px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";position:absolute;top:-20vh;right:-20vw;width:90vmin;height:90vmin;
  background:radial-gradient(closest-side, rgba(14,14,14,.06), transparent 70%);
  pointer-events:none;
}
.hero__eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  padding:9px 18px;border-radius:999px;
  background:rgba(255,255,255,.55);
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  box-shadow:var(--shadow-sm);
  font-family:var(--f-mono);font-size:11.5px;color:var(--muted);
  margin-bottom:36px;
}
.dot{width:8px;height:8px;border-radius:50%;background:var(--text);
  box-shadow:0 0 0 0 var(--text);animation:pulse 2s ease-in-out infinite;}
@keyframes pulse{50%{box-shadow:0 0 0 8px rgba(14,14,14,0);}}

.hero__title{
  font-size:clamp(48px, 7.5vw, 124px);
  font-weight:800;line-height:.95;letter-spacing:-.04em;color:var(--text);
  max-width:1100px;
}
.hero__title em{
  font-style:italic;font-family:var(--f-serif);font-weight:400;
  color:var(--text);
}

.hero__sub{
  margin-top:32px;max-width:680px;font-size:20px;line-height:1.5;color:var(--muted);
}

.hero__cta{margin-top:48px;display:flex;gap:14px;flex-wrap:wrap;}
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:16px 26px;border-radius:999px;
  font-size:15px;font-weight:600;
  transition:background .2s, color .2s, transform .2s, border-color .2s;
}
.btn svg{width:16px;height:16px;transition:transform .2s;}
.btn:hover svg{transform:translateX(3px);}
.btn--primary{background:var(--text);color:var(--bg);}
.btn--primary:hover{background:#2a2a2a;color:var(--bg);transform:translateY(-2px);}
.btn--ghost{border:1px solid var(--line-2);color:var(--text);}
.btn--ghost:hover{background:var(--text);color:var(--bg);border-color:var(--text);}

.hero__pillars{
  margin-top:96px;
  display:grid;grid-template-columns:repeat(4,1fr);gap:0;
  padding-top:40px;border-top:1px solid rgba(14,14,14,.08);
  list-style:none;
}
.hero__pillars li{
  display:flex;flex-direction:column;gap:8px;
  padding:0 32px;
  border-left:1px solid rgba(14,14,14,.08);
}
.hero__pillars li:first-child{padding-left:0;border-left:0;}
.hero__pillars b{
  font-size:clamp(32px, 3.6vw, 48px);
  font-weight:600;letter-spacing:-.035em;color:var(--text);
  line-height:1;
}
.hero__pillars span{
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);
}
@media (max-width:760px){
  .hero__pillars{grid-template-columns:repeat(2,1fr);gap:32px 0;padding-top:32px;}
  .hero__pillars li{padding:0 20px;}
  .hero__pillars li:nth-child(odd){padding-left:0;border-left:0;}
}

/* =========================================================
   LEISTUNGEN
========================================================= */
.leistungen{padding:160px 0;}
.services{
  display:grid;grid-template-columns:repeat(3,1fr);gap:16px;
}
.service{
  padding:40px 32px 32px;border-radius:24px;
  background:rgba(255,255,255,.6);
  -webkit-backdrop-filter:blur(24px) saturate(140%);
  backdrop-filter:blur(24px) saturate(140%);
  box-shadow:0 1px 0 rgba(255,255,255,.5) inset,
             0 1px 2px rgba(14,14,14,.04),
             0 8px 24px -10px rgba(14,14,14,.06);
  display:flex;flex-direction:column;gap:16px;min-height:300px;
  transition:transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .35s, background .35s;
}
.service:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.88);
  box-shadow:0 1px 0 rgba(255,255,255,.7) inset,
             0 4px 12px -2px rgba(14,14,14,.06),
             0 16px 40px -12px rgba(14,14,14,.12);
}
.service__icon{width:40px;height:40px;color:var(--text);opacity:.9;}
.service h3{font-size:20px;font-weight:600;letter-spacing:-.02em;color:var(--text);margin-top:4px;}
.service p{font-size:14.5px;line-height:1.6;color:var(--muted);font-weight:400;}
.service__stack{
  font-family:var(--f-mono);font-size:11px;color:var(--dim);letter-spacing:.04em;
  margin-top:auto;padding-top:18px;border-top:1px solid rgba(14,14,14,.06);
}
@media (max-width:1000px){.services{grid-template-columns:repeat(2,1fr);}}
@media (max-width:640px){.services{grid-template-columns:1fr;}}
@media (max-width:1000px){.services{grid-template-columns:repeat(2,1fr);}}
@media (max-width:640px){.services{grid-template-columns:1fr;}}

/* =========================================================
   CODE SHOWCASE
========================================================= */
.showcase{padding:60px 0 120px;}
.showcase__head{
  max-width:880px;margin:0 auto 20px;
  display:flex;justify-content:space-between;align-items:baseline;
  font-family:var(--f-mono);font-size:11.5px;letter-spacing:.08em;
  color:var(--muted);padding:0 8px;flex-wrap:wrap;gap:8px;
}
.showcase__label{color:var(--muted);}
.showcase__file{color:var(--dim);}

.codewindow{
  max-width:880px;margin:0 auto;
  background:#0a0a0a;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 1px 0 rgba(255,255,255,.06) inset,
             0 24px 64px -16px rgba(14,14,14,.35),
             0 0 0 1px rgba(255,255,255,.04);
}
.codewindow__chrome{
  display:flex;align-items:center;gap:8px;
  padding:13px 18px;
  background:#161616;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.codewindow__dot{
  width:12px;height:12px;border-radius:50%;
  display:inline-block;
}
.codewindow__dot--red{background:#ff5f56;}
.codewindow__dot--yellow{background:#ffbd2e;}
.codewindow__dot--green{background:#27c93f;}
.codewindow__tab{
  margin-left:20px;font-family:var(--f-mono);font-size:12px;
  color:rgba(255,255,255,.5);letter-spacing:.02em;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.codewindow__lang{
  margin-left:auto;font-family:var(--f-mono);font-size:10.5px;
  color:rgba(255,255,255,.4);letter-spacing:.12em;
  padding:3px 10px;border-radius:999px;background:rgba(255,255,255,.06);
}
.codewindow__code{
  margin:0;padding:24px 28px;
  font-family:var(--f-mono);font-size:13px;line-height:1.75;
  color:rgba(255,255,255,.86);
  overflow-x:auto;tab-size:2;
}
.codewindow__code code{font-family:inherit;}
/* syntax tokens */
.tk-c{color:#5c6370;font-style:italic;}    /* comment */
.tk-k{color:#c084fc;}                       /* keyword */
.tk-s{color:#86efac;}                       /* string */
.tk-f{color:#7dd3fc;}                       /* function */
.tk-t{color:#fde047;}                       /* type */
.tk-v{color:#fda4af;}                       /* variable / module */
.tk-n{color:#fbbf24;}                       /* number / literal */

.showcase__caption{
  max-width:680px;margin:28px auto 0;
  text-align:center;font-size:14.5px;color:var(--muted);line-height:1.65;
}

@media (max-width:760px){
  .codewindow__code{font-size:11.5px;padding:20px 18px;}
  .codewindow__tab{font-size:11px;margin-left:12px;}
  .codewindow__lang{display:none;}
}

/* =========================================================
   PROCESS / WORKFLOW
========================================================= */
.process{padding:160px 0;background:linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);}
.process__grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:16px;
}
.process__step{
  position:relative;
  padding:32px 28px 28px;
  background:rgba(255,255,255,.55);
  -webkit-backdrop-filter:blur(24px) saturate(140%);
  backdrop-filter:blur(24px) saturate(140%);
  box-shadow:0 1px 0 rgba(255,255,255,.5) inset,
             0 1px 2px rgba(14,14,14,.04),
             0 8px 24px -10px rgba(14,14,14,.08);
  border-radius:24px;
  display:flex;flex-direction:column;gap:14px;min-height:240px;
  transition:transform .4s cubic-bezier(.2,.7,.2,1), background .35s, box-shadow .35s;
}
.process__step:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.85);
  box-shadow:0 1px 0 rgba(255,255,255,.7) inset,
             0 4px 12px -2px rgba(14,14,14,.06),
             0 16px 40px -12px rgba(14,14,14,.15);
}
.process__num{
  font-family:var(--f-mono);font-size:11px;letter-spacing:.16em;
  color:var(--muted);text-transform:uppercase;
  display:inline-flex;align-items:center;gap:8px;
}
.process__num::before{
  content:"";width:6px;height:6px;border-radius:50%;background:var(--text);
}
.process__step h3{
  font-size:20px;font-weight:600;letter-spacing:-.015em;color:var(--text);
  font-family:var(--f-serif);font-style:italic;font-weight:400;
}
.process__step p{font-size:14px;line-height:1.6;color:var(--muted);}
.process__step time{
  margin-top:auto;font-family:var(--f-mono);font-size:11px;
  color:var(--dim);letter-spacing:.05em;
}
@media (max-width:900px){.process__grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:520px){.process__grid{grid-template-columns:1fr;}}

/* =========================================================
   REFERENZEN — Marquee Slider
========================================================= */
.referenzen{padding:140px 0;overflow:hidden;}
.referenzen .container{margin-bottom:64px;}

.ref-marquee{
  position:relative;width:100%;
  -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image:linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.ref-marquee__track{
  display:flex;align-items:center;gap:96px;
  width:max-content;
  animation:marquee 32s linear infinite;
  will-change:transform;
}
.ref-marquee:hover .ref-marquee__track{animation-play-state:paused;}
.ref-logo{
  flex:0 0 auto;
  display:flex;align-items:center;justify-content:center;
  height:110px;padding:0 8px;
  min-width:170px;
  overflow:hidden;
}
.ref-logo img{
  height:88px;width:auto;max-width:260px;
  object-fit:contain;object-position:center;
  filter:grayscale(1);
  opacity:.82;
  transition:filter .35s ease, opacity .35s ease, transform .35s ease;
}
.ref-logo:hover img{filter:none;opacity:1;transform:scale(1.10);}

/* Logos mit viel Eigenrand auf gleiches visuelles Gewicht skalieren */
.ref-logo img[alt="Nico Barwich"]      {transform:scale(1.6);}
.ref-logo img[alt="HAIR & FACE LINE"]  {transform:scale(1.5);}
.ref-logo img[alt="Photoklass"]        {transform:scale(1.45);}
.ref-logo img[alt="Denkmal Pension"]   {transform:scale(1.6);}
.ref-logo img[alt="Dupont Vinothek"]   {transform:scale(1.55);}
.ref-logo img[alt="COEBER"]            {transform:scale(1.65);}
.ref-logo img[alt="tapp"]              {transform:scale(0.9);}
.ref-logo img[alt="Starlet"]           {transform:scale(0.9);}
.ref-logo img[alt="AXED Media"]        {transform:scale(0.95);}

.ref-logo:hover img[alt="Nico Barwich"]      {transform:scale(1.75);}
.ref-logo:hover img[alt="HAIR & FACE LINE"]  {transform:scale(1.65);}
.ref-logo:hover img[alt="Photoklass"]        {transform:scale(1.60);}
.ref-logo:hover img[alt="Denkmal Pension"]   {transform:scale(1.75);}
.ref-logo:hover img[alt="Dupont Vinothek"]   {transform:scale(1.70);}
.ref-logo:hover img[alt="COEBER"]            {transform:scale(1.80);}
.ref-logo:hover img[alt="tapp"]              {transform:scale(1.00);}
.ref-logo:hover img[alt="Starlet"]           {transform:scale(1.00);}
.ref-logo:hover img[alt="AXED Media"]        {transform:scale(1.05);}

@keyframes marquee{
  from{transform:translate3d(0,0,0);}
  to{transform:translate3d(-50%,0,0);}
}
@media (prefers-reduced-motion: reduce){
  .ref-marquee__track{animation:none;}
}
@media (max-width:760px){
  .ref-marquee__track{gap:56px;animation-duration:22s;}
  .ref-logo{min-width:120px;height:72px;padding:0 12px;}
  .ref-logo img{height:54px;max-width:180px;}
}

/* =========================================================
   ÜBER UNS
========================================================= */
.about{padding:140px 0;background:linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);}
.about__grid{display:grid;grid-template-columns: 1.4fr 1fr;gap:72px;align-items:start;}
.about__lead{
  font-family:var(--f-serif);font-size:clamp(24px, 2.6vw, 32px);line-height:1.42;
  color:var(--text);margin-bottom:24px;font-weight:400;letter-spacing:-.01em;
}
.about__col p{font-size:16px;line-height:1.7;color:var(--muted);margin-bottom:18px;font-weight:400;}
.about__col p strong{color:var(--text);font-weight:600;}
.about__facts{
  background:rgba(255,255,255,.55);
  -webkit-backdrop-filter:blur(24px);backdrop-filter:blur(24px);
  border-radius:var(--r-xl);
  box-shadow:var(--shadow-md);
  padding:36px;display:flex;flex-direction:column;gap:18px;
}
.about__facts div{display:grid;grid-template-columns: 110px 1fr;gap:18px;padding-bottom:16px;border-bottom:1px solid var(--line);}
.about__facts div:last-child{border-bottom:0;padding-bottom:0;}
.about__facts dt{font-family:var(--f-mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);}
.about__facts dd{font-size:14px;line-height:1.5;color:var(--text);font-weight:500;}
@media (max-width:900px){.about__grid{grid-template-columns:1fr;}}

/* =========================================================
   TERMIN / Calendly
========================================================= */
.termin{padding:140px 0;position:relative;overflow:hidden;}
.termin::before{
  content:"";position:absolute;top:-20vh;left:-20vw;width:80vmin;height:80vmin;
  background:radial-gradient(closest-side, rgba(14,14,14,.05), transparent 70%);
  pointer-events:none;
}
.termin__card{
  display:grid;grid-template-columns:1.15fr 1fr;gap:0;
  background:rgba(255,255,255,.55);
  -webkit-backdrop-filter:blur(28px) saturate(160%);
  backdrop-filter:blur(28px) saturate(160%);
  box-shadow:0 1px 0 rgba(255,255,255,.6) inset,
             0 4px 8px -2px rgba(14,14,14,.04),
             0 32px 80px -16px rgba(14,14,14,.20);
  border-radius:32px;
  overflow:hidden;
  max-width:960px;margin:0 auto;
}

/* Left side: dark Calendly CTA panel */
.termin__primary{
  padding:44px 40px;display:flex;flex-direction:column;gap:16px;
  background:var(--text);color:var(--bg);
  position:relative;
}
.termin__primary::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(circle at 80% 0%, rgba(255,255,255,.06), transparent 60%);
}
.termin__badge{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.16em;
  text-transform:uppercase;color:rgba(250,250,250,.65);
  padding:6px 12px;border-radius:999px;background:rgba(250,250,250,.08);
  align-self:flex-start;position:relative;z-index:1;
}
.termin__badge-dot{width:6px;height:6px;border-radius:50%;background:#22c55e;
  box-shadow:0 0 0 0 rgba(34,197,94,.6);animation:pulse-green 2s ease-in-out infinite;}
@keyframes pulse-green{50%{box-shadow:0 0 0 6px rgba(34,197,94,0);}}
.termin__primary-title{
  font-size:clamp(26px,2.6vw,34px);font-weight:600;letter-spacing:-.02em;
  line-height:1.1;font-family:var(--f-sans);position:relative;z-index:1;
}
.termin__primary-text{
  font-size:14.5px;line-height:1.6;color:rgba(250,250,250,.7);
  position:relative;z-index:1;margin-bottom:8px;
}
.termin__cta{
  display:flex;align-items:center;gap:16px;justify-content:space-between;
  padding:18px 22px;border-radius:18px;
  background:var(--bg);color:var(--text);
  transition:transform .25s ease, box-shadow .25s ease;
  position:relative;z-index:1;
}
.termin__cta:hover{transform:translateY(-2px);box-shadow:0 12px 28px -8px rgba(0,0,0,.4);}
.termin__cta-text{display:flex;flex-direction:column;gap:2px;text-align:left;}
.termin__cta-label{font-size:15px;font-weight:600;letter-spacing:-.01em;color:var(--text);}
.termin__cta-sub{font-family:var(--f-mono);font-size:10.5px;letter-spacing:.1em;color:var(--muted);}
.termin__cta-icon{
  width:40px;height:40px;display:grid;place-items:center;flex-shrink:0;
  background:var(--text);color:var(--bg);border-radius:12px;
  transition:transform .25s ease;
}
.termin__cta:hover .termin__cta-icon{transform:translateX(3px);}
.termin__cta-icon svg{width:18px;height:18px;}

/* Right side: alternative contact list */
.termin__secondary{
  padding:36px 32px;display:flex;flex-direction:column;gap:10px;
}
.termin__sec-label{
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.16em;
  text-transform:uppercase;color:var(--muted);
  padding-bottom:8px;
}
.termin__contact{
  display:flex;align-items:center;gap:14px;
  padding:14px 16px;border-radius:14px;
  background:rgba(14,14,14,.025);
  transition:background .2s ease, transform .2s ease;
}
.termin__contact:hover{background:rgba(14,14,14,.06);}
.termin__contact-icon{
  width:40px;height:40px;display:grid;place-items:center;
  background:rgba(255,255,255,.6);border-radius:10px;color:var(--text);
  flex-shrink:0;
}
.termin__contact-icon svg{width:20px;height:20px;}
.termin__contact-meta{display:flex;flex-direction:column;gap:2px;flex:1;min-width:0;}
.termin__contact-key{
  font-family:var(--f-mono);font-size:10px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);
}
.termin__contact-val{font-size:14px;font-weight:500;color:var(--text);}
.termin__contact-arrow{color:var(--muted);transition:transform .2s ease, color .2s ease;flex-shrink:0;}
.termin__contact-arrow svg{width:14px;height:14px;}
.termin__contact:hover .termin__contact-arrow{transform:translateX(3px);color:var(--text);}

.termin__channels{
  margin-top:auto;padding-top:20px;
  display:flex;justify-content:center;align-items:center;gap:14px;flex-wrap:wrap;
  font-family:var(--f-mono);font-size:11px;letter-spacing:.1em;
}
.termin__channels a{color:var(--muted);transition:color .2s ease;}
.termin__channels a:hover{color:var(--text);}
.termin__channels-sep{
  width:3px;height:3px;border-radius:50%;
  background:rgba(14,14,14,.2);display:inline-block;
}

@media (max-width:760px){
  .termin__card{grid-template-columns:1fr;}
  .termin__primary, .termin__secondary{padding:32px 24px;}
}

/* =========================================================
   FOOTER
========================================================= */
.footer{
  position:relative;
  padding:0 0 28px;background:var(--text);color:var(--bg);
  overflow:hidden;
}
.footer::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(circle at 18% 0%, rgba(217,119,87,.18), transparent 35%),
    radial-gradient(circle at 90% 60%, rgba(255,255,255,.04), transparent 30%);
}
.footer > .container{position:relative;}
.footer .brand__mark rect{fill:var(--bg);}
.footer .brand__text{color:var(--bg);}

/* ---- CTA stripe ---- */
.footer__cta{
  display:flex;align-items:center;justify-content:space-between;gap:32px;
  padding:64px 0 56px;
  border-bottom:1px solid rgba(250,248,243,.10);
  flex-wrap:wrap;
}
.footer__cta-text{display:flex;flex-direction:column;gap:8px;max-width:560px;}
.footer__cta-num{
  font-family:var(--f-mono);font-size:11px;letter-spacing:.18em;
  text-transform:uppercase;color:rgba(250,248,243,.45);
}
.footer__cta-title{
  font-size:clamp(28px, 3.4vw, 44px);font-weight:600;letter-spacing:-.025em;
  line-height:1.1;color:var(--bg);
}
.footer__cta-title em{
  font-style:italic;font-family:var(--f-serif);font-weight:400;
  color:#d97757;
}
.footer__cta-sub{
  font-size:14.5px;line-height:1.55;color:rgba(250,248,243,.6);
}
.footer__cta-btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:18px 28px;border-radius:999px;
  background:var(--bg);color:var(--text);
  font-size:15px;font-weight:600;letter-spacing:-.01em;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow:0 8px 24px -8px rgba(217,119,87,.4);
}
.footer__cta-btn svg{width:14px;height:14px;transition:transform .25s ease;}
.footer__cta-btn:hover{transform:translateY(-2px);box-shadow:0 12px 32px -8px rgba(217,119,87,.6);}
.footer__cta-btn:hover svg{transform:translateX(4px);}

/* ---- Top grid: brand + 4 columns ---- */
.footer__top{
  display:grid;grid-template-columns: 1.6fr repeat(4, 1fr);gap:48px;
  padding:56px 0 48px;
  border-bottom:1px solid rgba(250,248,243,.10);
}
.footer__brand{display:flex;flex-direction:column;gap:18px;}
.footer__brand .brand{align-self:flex-start;}
.footer__brand p{font-size:13.5px;line-height:1.55;color:rgba(250,248,243,.6);max-width:300px;}

/* Locations block under brand */
.footer__locations{
  display:flex;flex-direction:column;gap:10px;
  margin-top:6px;
}
.footer__location{
  display:flex;align-items:center;gap:12px;
  padding:10px 14px;border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  transition:background .25s ease, border-color .25s ease;
}
.footer__location:hover{
  background:rgba(255,255,255,.07);
  border-color:rgba(255,255,255,.12);
}
.footer__location-flag{
  width:32px;height:22px;border-radius:4px;flex:none;
  position:relative;overflow:hidden;
  box-shadow:0 0 0 1px rgba(255,255,255,.1);
}
.footer__location-flag--de{
  background:linear-gradient(180deg, #0e0e0e 0 33%, #dc2626 33% 66%, #fbbf24 66% 100%);
}
.footer__location-flag--cn{background:#dc2626;}
.footer__location-flag--cn::before{
  content:"★";position:absolute;left:4px;top:3px;
  color:#fbbf24;font-size:9px;line-height:1;
}
.footer__location-meta{display:flex;flex-direction:column;gap:1px;line-height:1.3;}
.footer__location-meta b{font-size:13px;font-weight:600;color:var(--bg);}
.footer__location-meta i{
  font-family:var(--f-mono);font-size:10px;letter-spacing:.1em;
  text-transform:uppercase;color:rgba(250,248,243,.5);font-style:normal;
}

/* Nav columns */
.footer__col{display:flex;flex-direction:column;gap:6px;}
.footer__head{
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.16em;
  text-transform:uppercase;color:rgba(250,248,243,.4);margin-bottom:14px;
}
.footer__col a{
  font-size:13.5px;color:rgba(250,248,243,.78);
  padding:3px 0;transition:color .2s ease, transform .2s ease;
  display:inline-block;
}
.footer__col a:hover{color:var(--bg);transform:translateX(3px);}

/* ---- Footer-Hintergrund: Logo-Wasserzeichen + dezenter Verlauf ---- */
.footer__watermark{
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 60% 40% at 15% 30%, rgba(217,119,87,.12), transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 70%, rgba(255,255,255,.025), transparent 60%);
  pointer-events:none;
  z-index:0;
}
.footer__watermark::after{
  content:"";
  position:absolute;
  right:-100px;top:50%;transform:translateY(-50%);
  width:640px;height:640px;
  background:url('logos/pgtv.png?v=5') no-repeat center / contain;
  filter:brightness(0) invert(1);
  opacity:.07;
  pointer-events:none;
  z-index:0;
}
.footer > .container{position:relative;z-index:1;}
.footer__wordmark{display:none;}

/* Brand-Logo im Footer auf reines Weiß zwingen */
.footer .brand__mark{
  width:64px !important;
  height:64px !important;
  filter:brightness(0) invert(1) !important;
  background:transparent !important;
}

@media (max-width:760px){
  .footer__watermark::after{width:300px;height:300px;right:-40px;opacity:.04;}
}

@media (max-width:760px){
  .footer__watermark{background-size:280px auto, auto, auto;}
}

/* ---- Bottom row ---- */
.footer__bottom{
  display:grid;grid-template-columns:1fr 1fr 1fr;
  gap:18px;align-items:center;
  padding-top:20px;
  border-top:1px solid rgba(250,248,243,.08);
  font-family:var(--f-mono);font-size:11px;letter-spacing:.05em;
  color:rgba(250,248,243,.45);
}
.footer__bottom-mid{text-align:center;}
.footer__bottom-right{text-align:right;font-style:italic;font-family:var(--f-serif);font-size:13.5px;letter-spacing:0;}

@media (max-width:1100px){
  .footer__top{grid-template-columns:1.4fr 1fr 1fr;gap:32px;}
  .footer__col:nth-child(4), .footer__col:nth-child(5){grid-column:span 1;}
}
@media (max-width:760px){
  .footer__cta{flex-direction:column;align-items:flex-start;gap:20px;padding:48px 0 40px;}
  .footer__top{grid-template-columns:1fr 1fr;gap:32px;padding:40px 0 32px;}
  .footer__brand{grid-column:1 / -1;}
  .footer__bottom{grid-template-columns:1fr;gap:8px;text-align:left;}
  .footer__bottom-mid, .footer__bottom-right{text-align:left;}
}

/* =========================================================
   Legal pages (impressum / datenschutz)
========================================================= */
.legal{padding:140px 0 80px;max-width:880px;margin:0 auto;}
.legal h1{font-size:clamp(36px, 5vw, 64px);font-weight:700;letter-spacing:-.03em;line-height:1;margin-bottom:48px;}
.legal h2{font-size:22px;font-weight:700;margin:40px 0 14px;color:var(--text);}
.legal h3{font-size:16px;font-weight:600;margin:24px 0 8px;color:var(--text);}
.legal p, .legal li{font-size:15px;line-height:1.7;color:var(--muted);margin-bottom:12px;}
.legal ul{margin-left:24px;margin-bottom:18px;list-style:disc;}
.legal a{color:var(--accent);border-bottom:1px solid transparent;transition:border-color .2s;}
.legal a:hover{border-bottom-color:var(--accent);}
.legal__back{display:inline-flex;align-items:center;gap:8px;font-family:var(--f-mono);font-size:12px;color:var(--muted);margin-bottom:32px;}
.legal__back:hover{color:var(--accent);}
.legal strong{color:var(--text);font-weight:600;}

/* =========================================================
   SHARED PAGE PATTERNS (für Sub-Seiten)
========================================================= */

/* Active nav state */
.nav a.is-current{color:var(--text);}
.nav a.is-current::after{transform:scaleX(1);background:var(--text);}

/* Page hero (used on all sub-pages) */
.page-hero{padding:200px 0 100px;position:relative;}
.page-hero::before{
  content:"";position:absolute;top:-20vh;right:-15vw;width:80vmin;height:80vmin;
  background:radial-gradient(closest-side, rgba(14,14,14,.04), transparent 70%);
  pointer-events:none;z-index:-1;
}
.page-hero__num{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--f-mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--muted);padding:7px 14px;border-radius:999px;background:rgba(14,14,14,.04);
  margin-bottom:32px;
}
.page-hero__title{
  font-size:clamp(48px, 7vw, 96px);
  font-weight:700;line-height:1;letter-spacing:-.035em;color:var(--text);
  max-width:1100px;
}
.page-hero__title em{
  font-style:italic;font-family:var(--f-serif);font-weight:400;
}
.page-hero__sub{
  margin-top:28px;max-width:680px;font-size:19px;line-height:1.55;color:var(--muted);
}

/* CTA stripe (footer of every page) */
.page-cta{padding:120px 0 140px;text-align:center;}
.page-cta__title{font-size:clamp(32px, 4vw, 52px);font-weight:600;letter-spacing:-.025em;color:var(--text);}
.page-cta__sub{margin-top:14px;font-size:16px;color:var(--muted);margin-bottom:32px;}

/* =========================================================
   BENTO GRID (Leistungen)
========================================================= */
.bento-section{padding:80px 0 120px;}
.bento{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.bento__card{
  position:relative;
  padding:36px 32px 32px;border-radius:24px;
  background:rgba(255,255,255,.55);
  -webkit-backdrop-filter:blur(24px) saturate(140%);
  backdrop-filter:blur(24px) saturate(140%);
  box-shadow:0 1px 0 rgba(255,255,255,.5) inset,
             0 1px 2px rgba(14,14,14,.04),
             0 8px 24px -10px rgba(14,14,14,.08);
  display:flex;flex-direction:column;gap:14px;min-height:280px;
  transition:transform .4s cubic-bezier(.2,.7,.2,1), background .35s, box-shadow .35s;
}
.bento__card:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.85);
  box-shadow:0 1px 0 rgba(255,255,255,.7) inset,
             0 4px 12px -2px rgba(14,14,14,.06),
             0 16px 40px -12px rgba(14,14,14,.14);
}
.bento__card--accent:hover{
  background:rgba(14,14,14,1);
  box-shadow:0 1px 0 rgba(255,255,255,.08) inset,
             0 4px 12px -2px rgba(14,14,14,.16),
             0 24px 56px -12px rgba(14,14,14,.40);
}
.bento__card--featured{grid-column:span 2;grid-row:span 2;}
.bento__card--wide{grid-column:span 3;}
.bento__card--accent{
  background:rgba(14,14,14,.97);color:rgba(255,255,255,.92);
}
.bento__card--accent .bento__title{color:#fff;}
.bento__card--accent .bento__num{color:rgba(255,255,255,.4);}
.bento__card--accent .bento__desc,
.bento__card--accent .bento__list li{color:rgba(255,255,255,.7);}
.bento__card--accent .bento__icon{background:rgba(255,255,255,.08);color:#fff;}
.bento__card--accent .bento__chips{border-top-color:rgba(255,255,255,.1);}
.bento__card--accent .bento__chips span{
  background:rgba(255,255,255,.08);color:rgba(255,255,255,.8);
}
.bento__num{
  position:absolute;top:28px;right:32px;
  font-family:var(--f-mono);font-size:11.5px;letter-spacing:.16em;
  color:var(--dim);
}
.bento__icon{
  width:48px;height:48px;display:grid;place-items:center;
  border-radius:14px;background:rgba(14,14,14,.05);
  color:var(--text);
}
.bento__icon svg{width:26px;height:26px;}
.bento__title{font-size:22px;font-weight:600;letter-spacing:-.02em;color:var(--text);margin-top:4px;}
.bento__card--featured .bento__title{font-size:28px;}
.bento__desc{font-size:15px;line-height:1.6;color:var(--muted);}
.bento__list{
  list-style:none;padding:0;margin:8px 0;
  display:flex;flex-direction:column;gap:6px;
}
.bento__list li{
  position:relative;padding-left:18px;
  font-size:14px;color:var(--muted);line-height:1.5;
}
.bento__list li::before{
  content:"";position:absolute;left:0;top:9px;
  width:6px;height:1px;background:currentColor;opacity:.5;
}
.bento__chips{
  display:flex;flex-wrap:wrap;gap:6px;margin-top:auto;padding-top:14px;
  border-top:1px solid rgba(14,14,14,.06);
}
.bento__chips span{
  font-family:var(--f-mono);font-size:11px;color:var(--muted);
  padding:4px 10px;border-radius:999px;background:rgba(14,14,14,.04);
  letter-spacing:.04em;
}
.bento__quote{
  font-family:var(--f-serif);font-style:italic;font-size:17px;
  color:var(--text);line-height:1.5;
  border-left:2px solid var(--text);padding-left:18px;margin-top:8px;
}
@media (max-width:1000px){
  .bento{grid-template-columns:repeat(2,1fr);}
  .bento__card--featured,.bento__card--wide{grid-column:span 2;grid-row:auto;}
}
@media (max-width:640px){
  .bento{grid-template-columns:1fr;}
  .bento__card--featured,.bento__card--wide{grid-column:span 1;}
}

/* =========================================================
   PHASE (Prozess)
========================================================= */
.phase{padding:90px 0;}
.phase--alt{background:linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);}
.phase__grid{
  display:grid;grid-template-columns:240px 1fr;gap:48px;align-items:start;
}
.phase__meta{
  display:flex;flex-direction:column;gap:12px;
  position:sticky;top:120px;
}
.phase__num{
  font-family:var(--f-mono);font-size:11px;letter-spacing:.18em;
  text-transform:uppercase;color:var(--muted);
  padding:8px 14px;border-radius:999px;background:rgba(14,14,14,.04);
  align-self:flex-start;
}
.phase__time, .phase__deliverable{
  font-family:var(--f-mono);font-size:11px;color:var(--dim);letter-spacing:.04em;
  padding-left:14px;
}
.phase__body{max-width:780px;}
.phase__title{
  font-size:clamp(32px, 4vw, 56px);font-weight:400;letter-spacing:-.03em;
  color:var(--text);font-family:var(--f-serif);font-style:italic;
  margin-bottom:18px;
}
.phase__lead{
  font-size:19px;line-height:1.55;color:var(--text);font-weight:500;
  margin-bottom:18px;
}
.phase__body p{font-size:15.5px;line-height:1.65;color:var(--muted);margin-bottom:24px;}
.phase__body .codewindow{margin-top:32px;max-width:none;}
@media (max-width:880px){
  .phase__grid{grid-template-columns:1fr;gap:24px;}
  .phase__meta{position:static;flex-direction:row;flex-wrap:wrap;}
  .phase__time,.phase__deliverable{padding-left:0;}
}

/* Principles grid */
.principles{padding:120px 0;background:var(--bg-2);}
.principles__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
.principle{
  padding:32px 28px;border-radius:24px;
  background:rgba(255,255,255,.6);
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  box-shadow:var(--shadow-sm);
  display:flex;flex-direction:column;gap:10px;
  transition:transform .35s, background .35s;
}
.principle:hover{transform:translateY(-3px);background:rgba(255,255,255,.85);}
.principle__num{font-family:var(--f-mono);font-size:11.5px;color:var(--dim);letter-spacing:.06em;}
.principle h3{font-size:18px;font-weight:600;letter-spacing:-.015em;color:var(--text);}
.principle p{font-size:14px;line-height:1.6;color:var(--muted);}
@media (max-width:900px){.principles__grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:520px){.principles__grid{grid-template-columns:1fr;}}

/* =========================================================
   CASE CARDS (Referenzen)
========================================================= */
.cases-section{padding:60px 0 120px;}
.case-card{
  display:grid;grid-template-columns:1fr 1.2fr;gap:0;
  background:rgba(255,255,255,.55);
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  box-shadow:0 1px 0 rgba(255,255,255,.5) inset,
             0 1px 2px rgba(14,14,14,.04),
             0 16px 48px -16px rgba(14,14,14,.12);
  border-radius:24px;overflow:hidden;
  margin-bottom:24px;
  transition:transform .4s, box-shadow .35s;
}
.case-card:hover{
  transform:translateY(-3px);
  box-shadow:0 1px 0 rgba(255,255,255,.7) inset,
             0 24px 64px -16px rgba(14,14,14,.20);
}
.case-card__visual{
  min-height:320px;position:relative;
  display:grid;place-items:center;color:#fff;
}
.case-card__visual::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(transparent 96%, rgba(255,255,255,.08) 96%) 0 0/40px 40px,
             linear-gradient(90deg, transparent 96%, rgba(255,255,255,.08) 96%) 0 0/40px 40px;
  mask-image:radial-gradient(circle at center, #000 30%, transparent 80%);
}
.case-card__visual-content{
  position:relative;z-index:1;text-align:center;display:flex;flex-direction:column;gap:6px;
}
.case-card__brand{
  font-family:var(--f-serif);font-style:italic;font-weight:400;
  font-size:clamp(36px,4vw,56px);letter-spacing:-.03em;color:rgba(255,255,255,.95);
  line-height:1;
}
.case-card__tagline{
  font-family:var(--f-mono);font-size:11px;letter-spacing:.16em;
  text-transform:uppercase;color:rgba(255,255,255,.65);
}
.case-card__body{padding:36px 36px 32px;display:flex;flex-direction:column;gap:14px;}
.case-card__head{
  display:flex;justify-content:space-between;align-items:baseline;
  padding-bottom:14px;border-bottom:1px solid rgba(14,14,14,.06);
}
.case-card__year{color:var(--text);font-weight:600;font-size:13px;}
.case-card__type{font-family:var(--f-mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);}
.case-card__title{font-size:24px;font-weight:600;letter-spacing:-.02em;color:var(--text);line-height:1.2;}
.case-card__desc{font-size:14.5px;line-height:1.65;color:var(--muted);}
.case-card__stack{display:flex;flex-wrap:wrap;gap:6px;}
.case-card__stack span{
  font-family:var(--f-mono);font-size:11px;color:var(--muted);
  padding:4px 10px;border-radius:999px;background:rgba(14,14,14,.04);
}
.case-card__metrics{
  margin-top:14px;display:grid;grid-template-columns:repeat(4,1fr);gap:14px;
  padding-top:16px;border-top:1px solid rgba(14,14,14,.06);
}
.case-card__metrics div{display:flex;flex-direction:column;gap:4px;}
.case-card__metrics dt{
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);
}
.case-card__metrics dd{font-size:13px;color:var(--text);font-weight:500;}
@media (max-width:880px){
  .case-card{grid-template-columns:1fr;}
  .case-card__visual{min-height:200px;}
  .case-card__metrics{grid-template-columns:repeat(2,1fr);}
}

/* =========================================================
   ABOUT PAGE
========================================================= */
.about-page{padding:40px 0 100px;}
.about-page__grid{display:grid;grid-template-columns:1.4fr 1fr;gap:72px;align-items:start;}
.about-page__h2{
  font-size:26px;font-weight:400;letter-spacing:-.02em;color:var(--text);
  margin:40px 0 14px;font-family:var(--f-serif);font-style:italic;
}
.about-page__h2:first-child{margin-top:0;}
.about-page__lead{
  font-family:var(--f-serif);font-size:clamp(22px,2.4vw,28px);line-height:1.45;
  color:var(--text);font-weight:400;letter-spacing:-.01em;margin-bottom:24px;
}
.about-page__col p{font-size:16px;line-height:1.7;color:var(--muted);margin-bottom:16px;}
.about-page__col p strong{color:var(--text);font-weight:600;}
.about-page__col p em{font-style:italic;font-family:var(--f-serif);color:var(--text);}
.about-page__pull{
  margin-top:24px;padding:24px 28px;
  background:var(--text);color:var(--bg);
  border-radius:20px;
  font-size:18px;line-height:1.5;
}
.about-page__pull strong{color:var(--bg);}
.about-page__aside{position:sticky;top:120px;}
.about-page__facts{
  background:rgba(255,255,255,.6);
  -webkit-backdrop-filter:blur(24px);backdrop-filter:blur(24px);
  border-radius:24px;
  box-shadow:0 1px 0 rgba(255,255,255,.5) inset,
             0 8px 32px -12px rgba(14,14,14,.12);
  padding:32px;display:flex;flex-direction:column;gap:16px;
}
.about-page__facts div{display:grid;grid-template-columns:130px 1fr;gap:14px;padding-bottom:14px;border-bottom:1px solid rgba(14,14,14,.06);}
.about-page__facts div:last-child{border-bottom:0;padding-bottom:0;}
.about-page__facts dt{font-family:var(--f-mono);font-size:10.5px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);}
.about-page__facts dd{font-size:14px;line-height:1.45;color:var(--text);font-weight:500;}
@media (max-width:900px){.about-page__grid{grid-template-columns:1fr;}.about-page__aside{position:static;}}

/* Numbers grid */
.about-numbers{padding:100px 0;background:linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);}
.about-numbers__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
@media (max-width:1100px){.about-numbers__grid{grid-template-columns:repeat(3,1fr);}}
.about-number{
  padding:36px 28px;border-radius:24px;
  background:rgba(255,255,255,.6);
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  box-shadow:var(--shadow-sm);
  display:flex;flex-direction:column;gap:6px;
  transition:transform .35s, background .35s;
}
.about-number:hover{transform:translateY(-3px);background:rgba(255,255,255,.85);}
.about-number__big{
  font-size:clamp(40px,4.5vw,60px);font-weight:600;letter-spacing:-.035em;
  color:var(--text);line-height:1;font-family:var(--f-sans);
}
.about-number__label{font-size:14px;font-weight:500;color:var(--text);margin-top:8px;}
.about-number__note{font-family:var(--f-mono);font-size:11px;color:var(--muted);letter-spacing:.04em;}
@media (max-width:760px){.about-numbers__grid{grid-template-columns:repeat(2,1fr);}}

/* Values grid */
.values-section{padding:100px 0;}
.values__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
.value{
  padding:32px 28px;border-radius:24px;
  background:rgba(255,255,255,.55);
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  box-shadow:var(--shadow-sm);
  display:flex;flex-direction:column;gap:10px;
  transition:transform .35s, background .35s;
}
.value:hover{transform:translateY(-3px);background:rgba(255,255,255,.85);}
.value__num{
  font-family:var(--f-mono);font-size:12.5px;letter-spacing:.14em;
  color:var(--dim);font-weight:500;
}
.value h3{font-size:18px;font-weight:600;letter-spacing:-.015em;color:var(--text);}
.value p{font-size:14px;line-height:1.65;color:var(--muted);}
@media (max-width:900px){.values__grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:520px){.values__grid{grid-template-columns:1fr;}}

/* Founder */
.founder-section{padding:100px 0 120px;background:linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);}
.founder{
  max-width:760px;margin:0 auto;
  padding:48px;border-radius:32px;
  background:rgba(255,255,255,.65);
  -webkit-backdrop-filter:blur(28px);backdrop-filter:blur(28px);
  box-shadow:0 1px 0 rgba(255,255,255,.6) inset,
             0 24px 64px -16px rgba(14,14,14,.16);
  display:flex;flex-direction:column;gap:32px;
}
.founder__meta{display:flex;flex-direction:column;gap:10px;}
.founder__role{
  font-family:var(--f-mono);font-size:11px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);
}
.founder__name{
  font-size:clamp(28px,3vw,40px);font-weight:400;letter-spacing:-.025em;
  color:var(--text);font-family:var(--f-serif);font-style:italic;
}
.founder__bio{font-size:15.5px;line-height:1.65;color:var(--muted);}
.founder__co{
  display:grid;grid-template-columns:1fr 1fr;gap:20px;
  padding-top:24px;border-top:1px solid rgba(14,14,14,.08);
}
.founder__co-item{display:flex;flex-direction:column;gap:4px;}
.founder__co-role{
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);
}
.founder__co-name{font-size:18px;font-weight:600;color:var(--text);letter-spacing:-.015em;}
@media (max-width:520px){.founder__co{grid-template-columns:1fr;}.founder{padding:32px 24px;}}

/* =========================================================
   TIMELINE (Über uns)
========================================================= */
.timeline-section{padding:100px 0;background:linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);}
.timeline{
  position:relative;max-width:920px;margin:48px auto 0;
  display:flex;flex-direction:column;gap:28px;
}
.timeline__progress{
  position:absolute;left:80px;top:20px;bottom:20px;width:2px;
  background:linear-gradient(180deg, rgba(14,14,14,.06), rgba(14,14,14,.18), rgba(14,14,14,.06));
}
.timeline__step{
  position:relative;display:grid;grid-template-columns:80px 30px 1fr;gap:18px;align-items:start;
}
.timeline__year{
  font-family:var(--f-mono);font-size:13px;letter-spacing:.12em;
  color:var(--muted);font-weight:600;padding-top:18px;
}
.timeline__dot{
  position:relative;z-index:1;align-self:flex-start;margin-top:22px;
  width:14px;height:14px;border-radius:50%;
  background:var(--bg);border:2px solid var(--text);
  box-shadow:0 0 0 4px var(--bg);
}
.timeline__step--key .timeline__dot{background:var(--text);}
.timeline__step--key .timeline__year{color:var(--text);}
.timeline__card{
  background:rgba(255,255,255,.65);
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  box-shadow:0 1px 0 rgba(255,255,255,.5) inset,
             0 1px 2px rgba(14,14,14,.04),
             0 8px 24px -12px rgba(14,14,14,.10);
  border-radius:20px;padding:22px 26px;
  display:flex;flex-direction:column;gap:8px;
  transition:transform .35s ease, background .35s ease;
}
.timeline__step:hover .timeline__card{transform:translateX(4px);background:rgba(255,255,255,.9);}
.timeline__card h3{font-size:18px;font-weight:600;letter-spacing:-.015em;color:var(--text);}
.timeline__card p{font-size:14.5px;line-height:1.6;color:var(--muted);}
.timeline__tag{
  align-self:flex-start;
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--muted);padding:3px 10px;border-radius:999px;background:rgba(14,14,14,.04);
  margin-top:4px;
}
.timeline__step--key .timeline__tag{background:var(--text);color:var(--bg);}
@media (max-width:600px){
  .timeline__progress{left:50px;}
  .timeline__step{grid-template-columns:50px 20px 1fr;gap:12px;}
  .timeline__year{font-size:11.5px;padding-top:16px;}
  .timeline__dot{margin-top:20px;}
  .timeline__card{padding:18px 20px;}
}

/* =========================================================
   TEAM (Über uns)
========================================================= */
.team-section{padding:100px 0;}
.team-grid{
  display:grid;grid-template-columns:repeat(10,1fr);gap:10px;
  max-width:760px;margin:48px auto 32px;
}
.team-avatar{
  aspect-ratio:1/1;border-radius:50%;
  display:grid;place-items:center;
  font-family:var(--f-mono);font-size:11.5px;font-weight:600;letter-spacing:.04em;
  color:#fff;
  box-shadow:0 1px 2px rgba(14,14,14,.10), 0 4px 10px -4px rgba(14,14,14,.16);
  transition:transform .35s cubic-bezier(.2,.7,.2,1);
}
.team-avatar:hover{transform:translateY(-3px) scale(1.06);}
.team-avatar[data-c="0"]{background:linear-gradient(135deg,#0e0e0e,#3a3a3a);}
.team-avatar[data-c="1"]{background:linear-gradient(135deg,#3178c6,#1e4e8c);}
.team-avatar[data-c="2"]{background:linear-gradient(135deg,#3ecf8e,#1f8a5e);}
.team-avatar[data-c="3"]{background:linear-gradient(135deg,#d97757,#a14a30);}
.team-avatar--plus{
  background:rgba(14,14,14,.05) !important;
  color:var(--text);
  border:1px dashed rgba(14,14,14,.2);
  font-size:18px;font-weight:300;
}
.team-roles{
  display:flex;justify-content:center;flex-wrap:wrap;gap:18px;
  margin-top:32px;
}
.team-roles__item{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--f-mono);font-size:11.5px;letter-spacing:.06em;
  color:var(--muted);
}
.team-roles__item i{
  width:8px;height:8px;border-radius:50%;display:inline-block;
  background:var(--text);
}
.team-roles__item:nth-child(2) i{background:#3178c6;}
.team-roles__item:nth-child(3) i{background:#3ecf8e;}
.team-roles__item:nth-child(4) i{background:#d97757;}
@media (max-width:720px){.team-grid{grid-template-columns:repeat(6,1fr);}}
@media (max-width:480px){.team-grid{grid-template-columns:repeat(5,1fr);}}

/* =========================================================
   REVEAL / SCROLL ANIMATIONS
========================================================= */
[data-reveal]{
  opacity:0;transform:translateY(28px);
  transition:opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
  will-change:opacity, transform;
}
[data-reveal="fade"]{transform:none;}
[data-reveal="scale"]{transform:scale(.96);}
[data-reveal="slide-left"]{transform:translateX(-28px);}
[data-reveal="slide-right"]{transform:translateX(28px);}
[data-reveal="rotate"]{transform:translateY(28px) rotate(-1deg);}
.is-revealed{opacity:1 !important;transform:none !important;}

/* Hero parallax — subtle scroll-based shift of decorative glow */
.hero::before, .page-hero::before, .termin::before{
  transform:translateY(calc(var(--scroll-y, 0) * 0.05));
}

@media (prefers-reduced-motion: reduce){
  [data-reveal]{opacity:1;transform:none;transition:none;}
  .hero::before, .page-hero::before, .termin::before{transform:none;}
}

/* =========================================================
   BENTO VARIATION (jede Card eigene Note)
========================================================= */
.bento__card{overflow:hidden;}
.bento__card::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  opacity:.5;transition:opacity .4s ease;
}
.bento__card:hover::after{opacity:.8;}

/* Featured (01) — Subtle grid */
.bento__card--featured::after{
  background:
    linear-gradient(rgba(14,14,14,.04) 1px, transparent 1px) 0 0/40px 40px,
    linear-gradient(90deg, rgba(14,14,14,.04) 1px, transparent 1px) 0 0/40px 40px;
  mask-image:radial-gradient(circle at 100% 0%, #000 30%, transparent 75%);
  -webkit-mask-image:radial-gradient(circle at 100% 0%, #000 30%, transparent 75%);
}

/* Mobile (02) — diagonal lines */
.bento__card:nth-child(2)::after{
  background:repeating-linear-gradient(45deg, transparent 0 10px, rgba(14,14,14,.025) 10px 11px);
  mask-image:linear-gradient(135deg, transparent 40%, #000 100%);
  -webkit-mask-image:linear-gradient(135deg, transparent 40%, #000 100%);
}

/* Automation (03) — connected dots pattern */
.bento__card:nth-child(3)::after{
  background:
    radial-gradient(circle, rgba(14,14,14,.08) 1.5px, transparent 1.5px) 0 0/16px 16px;
  mask-image:linear-gradient(180deg, transparent 50%, #000 100%);
  -webkit-mask-image:linear-gradient(180deg, transparent 50%, #000 100%);
}

/* AI Accent (04) — already dark, add subtle radial glow */
.bento__card--accent::after{
  background:radial-gradient(circle at 80% 20%, rgba(255,255,255,.06), transparent 60%);
  opacity:1;
}

/* Games (05) — pixel grid */
.bento__card:nth-child(5)::after{
  background:
    linear-gradient(rgba(14,14,14,.03) 1px, transparent 1px) 0 0/12px 12px,
    linear-gradient(90deg, rgba(14,14,14,.03) 1px, transparent 1px) 0 0/12px 12px;
  mask-image:linear-gradient(135deg, transparent 30%, #000 100%);
  -webkit-mask-image:linear-gradient(135deg, transparent 30%, #000 100%);
}

/* Custom-Tools (wide bottom card 06) — sketch lines */
.bento__card--wide::after{
  background:
    radial-gradient(circle at 90% 50%, rgba(14,14,14,.05), transparent 35%),
    radial-gradient(circle at 10% 80%, rgba(14,14,14,.03), transparent 30%);
}

/* Bento content stays above pattern */
.bento__card > *{position:relative;z-index:1;}

/* =========================================================
   PROCESS VISUAL VARIANTS
========================================================= */

/* Discovery card (Phase 01) */
.discovery{
  max-width:none;
  background:rgba(255,255,255,.6);
  -webkit-backdrop-filter:blur(24px) saturate(150%);
  backdrop-filter:blur(24px) saturate(150%);
  border-radius:24px;
  box-shadow:0 1px 0 rgba(255,255,255,.5) inset,
             0 1px 2px rgba(14,14,14,.04),
             0 24px 64px -20px rgba(14,14,14,.14);
  padding:28px;
}
.discovery__head{
  display:flex;align-items:center;justify-content:space-between;
  padding-bottom:20px;margin-bottom:16px;
  border-bottom:1px solid rgba(14,14,14,.06);
}
.discovery__head-left{display:flex;align-items:center;gap:14px;}
.discovery__icon{
  width:44px;height:44px;border-radius:12px;
  display:grid;place-items:center;
  background:rgba(14,14,14,.05);color:var(--text);
}
.discovery__icon svg{width:22px;height:22px;}
.discovery__title{
  display:block;font-size:16px;font-weight:600;letter-spacing:-.01em;color:var(--text);
}
.discovery__meta{
  display:block;font-family:var(--f-mono);font-size:11px;color:var(--muted);letter-spacing:.04em;
}
.discovery__status{
  display:inline-flex;align-items:center;gap:6px;
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.14em;
  text-transform:uppercase;color:#16a34a;
  padding:5px 10px;border-radius:999px;background:rgba(34,197,94,.08);
}
.discovery__status-dot{
  width:6px;height:6px;border-radius:50%;background:#22c55e;
  box-shadow:0 0 0 0 rgba(34,197,94,.6);
  animation:pulse-discovery 2s ease-in-out infinite;
}
@keyframes pulse-discovery{50%{box-shadow:0 0 0 6px rgba(34,197,94,0);}}
.discovery__list{list-style:none;padding:0;display:flex;flex-direction:column;gap:10px;}
.discovery__q{
  display:flex;align-items:flex-start;gap:14px;
  padding:14px 16px;border-radius:14px;
  background:rgba(14,14,14,.03);
  transition:background .25s ease;
}
.discovery__q:hover{background:rgba(14,14,14,.06);}
.discovery__q-num{
  font-family:var(--f-mono);font-size:11px;color:var(--muted);
  width:24px;height:24px;display:grid;place-items:center;flex-shrink:0;
  background:rgba(14,14,14,.06);border-radius:8px;letter-spacing:.06em;
}
.discovery__q-body{display:flex;flex-direction:column;gap:2px;flex:1;}
.discovery__q-label{
  font-family:var(--f-mono);font-size:10px;letter-spacing:.16em;
  text-transform:uppercase;color:var(--muted);
}
.discovery__q-body p{font-size:14.5px;color:var(--text);line-height:1.5;margin:0;}
.discovery__q--key{background:var(--text);color:var(--bg);}
.discovery__q--key .discovery__q-num{background:rgba(255,255,255,.12);color:var(--bg);}
.discovery__q--key .discovery__q-label{color:rgba(255,255,255,.55);}
.discovery__q--key .discovery__q-body p{color:var(--bg);}
.discovery__q--key:hover{background:#1a1a1a;}

/* Architecture map (Phase 02) */
.archmap{
  background:rgba(255,255,255,.6);
  -webkit-backdrop-filter:blur(24px) saturate(150%);
  backdrop-filter:blur(24px) saturate(150%);
  border-radius:24px;
  box-shadow:0 1px 0 rgba(255,255,255,.5) inset,
             0 1px 2px rgba(14,14,14,.04),
             0 24px 64px -20px rgba(14,14,14,.14);
  padding:28px;
}
.archmap__head{
  display:flex;justify-content:space-between;align-items:baseline;
  padding-bottom:18px;margin-bottom:18px;
  border-bottom:1px solid rgba(14,14,14,.06);
  font-family:var(--f-mono);font-size:11.5px;letter-spacing:.08em;
  color:var(--muted);
}
.archmap__head span:first-child{color:var(--text);font-weight:500;}
.archmap__svg{width:100%;height:auto;display:block;}
.archmap__svg .node{fill:var(--bg);stroke:rgba(14,14,14,.16);stroke-width:1.5;}
.archmap__svg .node--accent{fill:var(--text);stroke:var(--text);}
.archmap__svg .node-label{
  font-family:var(--f-sans);font-size:12px;font-weight:600;fill:var(--text);
  text-anchor:middle;dominant-baseline:central;
}
.archmap__svg .node--accent .node-label, .archmap__svg text.node-label--inv{fill:var(--bg);}
.archmap__svg .node-sub{
  font-family:var(--f-mono);font-size:9px;fill:var(--muted);
  text-anchor:middle;letter-spacing:.06em;text-transform:uppercase;
}
.archmap__svg .arrow{stroke:rgba(14,14,14,.3);stroke-width:1.5;fill:none;stroke-dasharray:4 4;}
.archmap__svg .arrow-head{fill:rgba(14,14,14,.4);}

/* Deploy dashboard (Phase 04) */
.deployboard{
  background:#0a0a0a;color:rgba(255,255,255,.9);
  border-radius:18px;overflow:hidden;
  box-shadow:0 1px 0 rgba(255,255,255,.06) inset,
             0 24px 64px -16px rgba(14,14,14,.4);
}
.deployboard__head{
  display:flex;justify-content:space-between;align-items:center;
  padding:16px 22px;
  background:#161616;border-bottom:1px solid rgba(255,255,255,.06);
}
.deployboard__branch{
  font-family:var(--f-mono);font-size:12px;color:rgba(255,255,255,.6);letter-spacing:.04em;
  display:inline-flex;align-items:center;gap:8px;
}
.deployboard__branch::before{
  content:"";width:8px;height:8px;border-radius:50%;background:#22c55e;
  box-shadow:0 0 0 0 rgba(34,197,94,.5);
  animation:pulse-discovery 2s ease-in-out infinite;
}
.deployboard__status{
  font-family:var(--f-mono);font-size:11px;letter-spacing:.12em;
  text-transform:uppercase;color:#86efac;
  padding:4px 10px;border-radius:999px;background:rgba(34,197,94,.12);
}
.deployboard__grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1px;
  background:rgba(255,255,255,.06);
}
.deployboard__metric{
  padding:18px 20px;background:#0a0a0a;
  display:flex;flex-direction:column;gap:4px;
}
.deployboard__metric-label{
  font-family:var(--f-mono);font-size:10px;letter-spacing:.14em;
  text-transform:uppercase;color:rgba(255,255,255,.4);
}
.deployboard__metric-value{
  font-size:18px;font-weight:600;color:#fff;letter-spacing:-.015em;
}
.deployboard__metric-delta{
  font-family:var(--f-mono);font-size:10.5px;color:#86efac;letter-spacing:.04em;
}
.deployboard__log{
  padding:18px 22px;font-family:var(--f-mono);font-size:12.5px;line-height:1.85;
  background:#0a0a0a;border-top:1px solid rgba(255,255,255,.06);
  display:flex;flex-direction:column;gap:2px;
}
.deployboard__log-line{color:rgba(255,255,255,.55);}
.deployboard__log-line.ok{color:#86efac;}
.deployboard__log-line.info{color:#7dd3fc;}
.deployboard__log-line .ts{color:rgba(255,255,255,.3);}
@media (max-width:760px){
  .deployboard__grid{grid-template-columns:repeat(2,1fr);}
}

/* =========================================================
   TEASER (Homepage Service-Teaser)
========================================================= */
.teaser{padding:100px 0;}
.teaser__head{
  display:flex;justify-content:space-between;align-items:flex-end;
  margin-bottom:48px;flex-wrap:wrap;gap:20px;
}
.teaser__num{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--f-mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--muted);padding:7px 14px;border-radius:999px;background:rgba(14,14,14,.04);
  margin-bottom:14px;
}
.teaser__title{
  font-size:clamp(36px, 5vw, 64px);font-weight:700;letter-spacing:-.03em;
  color:var(--text);line-height:1;
}
.teaser__title em{font-style:italic;font-family:var(--f-serif);font-weight:400;}
.teaser__more{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--f-mono);font-size:12.5px;letter-spacing:.04em;
  color:var(--text);font-weight:500;
  padding:10px 18px;border-radius:999px;border:1px solid rgba(14,14,14,.12);
  transition:background .25s, border-color .25s, transform .25s;
}
.teaser__more:hover{background:var(--text);color:var(--bg);border-color:var(--text);transform:translateY(-1px);}
.teaser__more svg{width:13px;height:13px;}

.teaser__grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1px;
  background:rgba(14,14,14,.06);
  border-radius:24px;overflow:hidden;
  box-shadow:0 1px 2px rgba(14,14,14,.04), 0 16px 48px -16px rgba(14,14,14,.10);
}
.teaser__item{
  position:relative;
  padding:32px 28px;
  background:rgba(255,255,255,.95);
  display:flex;flex-direction:column;gap:10px;
  transition:background .3s ease, transform .3s ease;
  min-height:200px;
}
.teaser__item:hover{background:#fff;}
.teaser__item:hover h3{transform:translateY(-1px);}
.teaser__item-num{
  font-family:var(--f-mono);font-size:11.5px;letter-spacing:.16em;
  color:var(--dim);
}
.teaser__item h3{
  font-size:19px;font-weight:600;letter-spacing:-.015em;color:var(--text);
  transition:transform .3s ease;
}
.teaser__item p{font-size:14px;line-height:1.6;color:var(--muted);}
.teaser__item::after{
  content:"→";
  position:absolute;top:30px;right:28px;
  font-family:var(--f-mono);color:var(--dim);
  opacity:0;transform:translateX(-6px);
  transition:opacity .3s, transform .3s, color .3s;
}
.teaser__item:hover::after{opacity:1;transform:translateX(0);color:var(--text);}
@media (max-width:900px){.teaser__grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:560px){.teaser__grid{grid-template-columns:1fr;}}

/* =========================================================
   PAGE HERO STATS (subtle row at bottom of page hero)
========================================================= */
.page-hero__stats{
  margin-top:48px;
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
  max-width:680px;
}
.page-hero__stats div{display:flex;flex-direction:column;gap:4px;}
.page-hero__stats b{font-size:clamp(24px,2.5vw,32px);font-weight:600;letter-spacing:-.025em;color:var(--text);}
.page-hero__stats span{font-family:var(--f-mono);font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);}
@media (max-width:760px){.page-hero__stats{grid-template-columns:repeat(2,1fr);}}

/* =========================================================
   RICH CASE CARDS (Referenzen page)
========================================================= */
.case-rich{
  display:grid;grid-template-columns:1fr 1.2fr;gap:0;
  background:rgba(255,255,255,.55);
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  box-shadow:0 1px 0 rgba(255,255,255,.5) inset,
             0 1px 2px rgba(14,14,14,.04),
             0 24px 64px -20px rgba(14,14,14,.14);
  border-radius:28px;overflow:hidden;
  margin-bottom:32px;
  transition:transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
}
.case-rich:hover{
  transform:translateY(-4px);
  box-shadow:0 1px 0 rgba(255,255,255,.7) inset,
             0 32px 80px -16px rgba(14,14,14,.20);
}
.case-rich--reverse{grid-template-columns:1.2fr 1fr;}
.case-rich--reverse .case-rich__visual{order:2;}
.case-rich--reverse .case-rich__body{order:1;}

.case-rich__visual{
  min-height:520px;position:relative;
  display:grid;place-items:center;
  padding:36px;overflow:hidden;
}
.case-rich__visual::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:
    linear-gradient(transparent 96%, rgba(255,255,255,.06) 96%) 0 0/40px 40px,
    linear-gradient(90deg, transparent 96%, rgba(255,255,255,.06) 96%) 0 0/40px 40px;
  mask-image:radial-gradient(circle at center, #000 30%, transparent 80%);
}

.case-rich__visual--fusion{background:linear-gradient(135deg,#0a0a0a 0%,#1f1f1f 100%);color:#fff;}
.case-rich__visual--doseplus{background:linear-gradient(135deg,#0a2540 0%,#1e4470 100%);color:#fff;}
.case-rich__visual--neon{background:linear-gradient(135deg,#1a0a2e 0%,#3b0764 100%);color:#fff;}
.case-rich__visual--notetaker{background:linear-gradient(135deg,#052e1a 0%,#0d4a30 100%);color:#fff;}
.case-rich__visual--network{background:linear-gradient(135deg,#4a1c08 0%,#7c2d12 100%);color:#fff;}
.case-rich__visual--portfolio{background:linear-gradient(135deg,#1f1f1f 0%,#3a3a3a 100%);color:#fff;}

.case-rich__body{padding:44px 44px 40px;display:flex;flex-direction:column;gap:18px;}
.case-rich__head{
  display:flex;justify-content:space-between;align-items:baseline;
  padding-bottom:14px;border-bottom:1px solid rgba(14,14,14,.06);
}
.case-rich__year{color:var(--text);font-weight:600;font-size:13px;letter-spacing:-.005em;}
.case-rich__type{font-family:var(--f-mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);}
.case-rich__title{font-size:26px;font-weight:600;letter-spacing:-.025em;color:var(--text);line-height:1.2;}
.case-rich__desc{font-size:15px;line-height:1.65;color:var(--muted);}
.case-rich__delivery{
  margin-top:8px;padding:18px 20px;border-radius:14px;
  background:rgba(14,14,14,.025);
}
.case-rich__delivery-label{
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.16em;
  text-transform:uppercase;color:var(--muted);
  margin-bottom:10px;display:block;
}
.case-rich__delivery ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:6px;}
.case-rich__delivery li{
  position:relative;padding-left:18px;
  font-size:13.5px;color:var(--text);line-height:1.5;
}
.case-rich__delivery li::before{
  content:"";position:absolute;left:0;top:9px;
  width:6px;height:1px;background:var(--text);opacity:.6;
}
.case-rich__metrics{
  display:grid;grid-template-columns:repeat(4,1fr);gap:14px 18px;
  padding-top:16px;border-top:1px solid rgba(14,14,14,.06);margin-top:6px;
}
.case-rich__metrics div{display:flex;flex-direction:column;gap:3px;}
.case-rich__metrics dt{
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);
}
.case-rich__metrics dd{font-size:13px;color:var(--text);font-weight:500;line-height:1.3;}
.case-rich__stack{display:flex;flex-wrap:wrap;gap:6px;margin-top:4px;}
.case-rich__stack span{
  font-family:var(--f-mono);font-size:11px;color:var(--muted);
  padding:4px 10px;border-radius:999px;background:rgba(14,14,14,.04);
}

@media (max-width:1000px){
  .case-rich, .case-rich--reverse{grid-template-columns:1fr;}
  .case-rich--reverse .case-rich__visual{order:1;}
  .case-rich--reverse .case-rich__body{order:2;}
  .case-rich__visual{min-height:360px;}
  .case-rich__metrics{grid-template-columns:repeat(2,1fr);}
}

/* =========================================================
   MOCK: DASHBOARD (Fusion)
========================================================= */
.dash-mock{
  width:100%;max-width:380px;aspect-ratio:1/1;
  background:rgba(255,255,255,.06);
  border-radius:14px;overflow:hidden;
  display:grid;grid-template-columns:54px 1fr;
  box-shadow:0 24px 48px -16px rgba(0,0,0,.4);
  border:1px solid rgba(255,255,255,.08);
  position:relative;z-index:1;
}
.dash-mock__sidebar{
  background:rgba(0,0,0,.4);padding:14px 10px;
  display:flex;flex-direction:column;gap:10px;align-items:center;
}
.dash-mock__avatar{
  width:32px;height:32px;border-radius:8px;
  background:rgba(255,255,255,.16);color:#fff;
  display:grid;place-items:center;font-size:11px;font-weight:700;letter-spacing:.04em;
}
.dash-mock__nav-item{
  width:32px;height:6px;border-radius:3px;background:rgba(255,255,255,.1);
}
.dash-mock__nav-item.is-active{background:rgba(255,255,255,.5);}
.dash-mock__main{padding:14px 16px;display:flex;flex-direction:column;gap:12px;}
.dash-mock__topbar{display:flex;justify-content:space-between;align-items:center;}
.dash-mock__title{font-size:13px;font-weight:600;color:#fff;}
.dash-mock__pill{
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.08em;
  padding:3px 8px;border-radius:999px;background:rgba(134,239,172,.18);color:#86efac;
}
.dash-mock__kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:6px;}
.dash-mock__kpi{
  padding:8px 10px;background:rgba(255,255,255,.05);border-radius:8px;
  display:flex;flex-direction:column;gap:1px;
}
.dash-mock__kpi b{font-size:13px;font-weight:600;color:#fff;letter-spacing:-.01em;}
.dash-mock__kpi span{font-family:var(--f-mono);font-size:8.5px;color:rgba(255,255,255,.45);letter-spacing:.06em;}
.dash-mock__chart{
  width:100%;height:60px;color:#86efac;
}
.dash-mock__rows{display:flex;flex-direction:column;gap:6px;margin-top:auto;}
.dash-mock__row{
  display:grid;grid-template-columns:1fr 1fr 24px;gap:8px;align-items:center;
  padding:6px 10px;background:rgba(255,255,255,.03);border-radius:6px;
}
.dash-mock__row span{height:5px;border-radius:3px;background:rgba(255,255,255,.18);}
.dash-mock__row span.is-green{background:#22c55e;}
.dash-mock__row span.is-amber{background:#fbbf24;}

/* =========================================================
   MOCK: WORKFLOW (Doseplus)
========================================================= */
.workflow-mock{
  width:100%;max-width:380px;
  background:rgba(255,255,255,.06);
  border-radius:14px;padding:24px;
  border:1px solid rgba(255,255,255,.08);
  display:flex;flex-direction:column;gap:16px;
  position:relative;z-index:1;box-shadow:0 24px 48px -16px rgba(0,0,0,.4);
}
.workflow-mock__title{
  font-family:var(--f-mono);font-size:11px;letter-spacing:.14em;
  text-transform:uppercase;color:rgba(255,255,255,.5);
  padding-bottom:12px;border-bottom:1px solid rgba(255,255,255,.08);
}
.workflow-mock__steps{display:flex;flex-direction:column;gap:8px;}
.workflow-mock__step{
  display:grid;grid-template-columns:32px 1fr auto;gap:14px;align-items:center;
  padding:12px 14px;border-radius:10px;
  background:rgba(255,255,255,.04);transition:background .25s;
}
.workflow-mock__step-num{
  font-family:var(--f-mono);font-size:10px;letter-spacing:.06em;
  width:26px;height:26px;display:grid;place-items:center;
  background:rgba(255,255,255,.06);border-radius:6px;color:rgba(255,255,255,.5);
}
.workflow-mock__step-label{font-size:13px;color:rgba(255,255,255,.85);font-weight:500;}
.workflow-mock__step-time{font-family:var(--f-mono);font-size:10.5px;color:rgba(255,255,255,.4);letter-spacing:.04em;}
.workflow-mock__step.is-done{background:rgba(34,197,94,.10);}
.workflow-mock__step.is-done .workflow-mock__step-num{background:#22c55e;color:#0a2540;}
.workflow-mock__step.is-done .workflow-mock__step-label{color:#86efac;}
.workflow-mock__step.is-active{background:rgba(251,191,36,.12);}
.workflow-mock__step.is-active .workflow-mock__step-num{background:#fbbf24;color:#0a2540;animation:pulse-discovery 2s ease-in-out infinite;}
.workflow-mock__step.is-active .workflow-mock__step-label{color:#fef3c7;}
.workflow-mock__legend{
  display:flex;gap:14px;font-family:var(--f-mono);font-size:10px;
  color:rgba(255,255,255,.5);letter-spacing:.06em;
  padding-top:8px;border-top:1px solid rgba(255,255,255,.06);
}
.workflow-mock__legend-item{display:inline-flex;align-items:center;gap:5px;}
.workflow-mock__legend .dot{width:6px;height:6px;border-radius:50%;display:inline-block;}
.workflow-mock__legend .dot--ok{background:#22c55e;}
.workflow-mock__legend .dot--amber{background:#fbbf24;}
.workflow-mock__legend .dot--idle{background:rgba(255,255,255,.2);}

/* =========================================================
   MOCK: NEON CONFIGURATOR (Dosenzauber)
========================================================= */
.neon-mock{
  width:100%;max-width:380px;
  background:rgba(255,255,255,.06);
  border-radius:14px;padding:24px;
  border:1px solid rgba(255,255,255,.08);
  display:flex;flex-direction:column;gap:20px;
  position:relative;z-index:1;box-shadow:0 24px 48px -16px rgba(0,0,0,.4);
}
.neon-mock__title{
  font-family:var(--f-mono);font-size:11px;letter-spacing:.14em;
  text-transform:uppercase;color:rgba(255,255,255,.5);
}
.neon-mock__display{
  background:#000;border-radius:10px;
  padding:32px 24px;display:grid;place-items:center;
  min-height:120px;
  box-shadow:0 0 0 1px rgba(255,255,255,.06) inset;
}
.neon-mock__text{
  font-family:var(--f-sans);font-size:48px;font-weight:800;letter-spacing:.02em;
  color:#ff2e2e;
  text-shadow:
    0 0 8px #ff2e2e,
    0 0 16px rgba(255,46,46,.7),
    0 0 32px rgba(255,46,46,.4);
  animation:neon-flicker 4s ease-in-out infinite;
}
@keyframes neon-flicker{
  0%, 18%, 22%, 25%, 53%, 57%, 100%{opacity:1;}
  20%, 24%, 55%{opacity:.92;}
}
.neon-mock__controls{display:flex;flex-direction:column;gap:14px;}
.neon-mock__row{display:flex;align-items:center;gap:12px;}
.neon-mock__label{
  font-family:var(--f-mono);font-size:10px;letter-spacing:.12em;
  text-transform:uppercase;color:rgba(255,255,255,.45);
  min-width:50px;
}
.neon-mock__swatches{display:flex;gap:6px;flex:1;}
.neon-mock__swatches span{
  width:22px;height:22px;border-radius:50%;
  background:var(--c);cursor:pointer;
  box-shadow:0 0 0 1px rgba(255,255,255,.1) inset;
  transition:transform .2s, box-shadow .2s;
}
.neon-mock__swatches span.is-active{box-shadow:0 0 0 2px #fff inset, 0 0 0 4px var(--c);}
.neon-mock__slider{
  flex:1;height:4px;border-radius:2px;
  background:rgba(255,255,255,.1);position:relative;
}
.neon-mock__slider span{
  position:absolute;top:-5px;width:14px;height:14px;border-radius:50%;
  background:#fff;transform:translateX(-50%);
}
.neon-mock__tabs{display:flex;gap:6px;flex:1;}
.neon-mock__tabs span{
  font-family:var(--f-mono);font-size:10px;letter-spacing:.06em;
  padding:5px 10px;border-radius:6px;background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.55);cursor:pointer;
}
.neon-mock__tabs span.is-active{background:rgba(255,255,255,.15);color:#fff;}

/* =========================================================
   MOCK: TRANSCRIPT (Notetaker)
========================================================= */
.transcript-mock{
  width:100%;max-width:400px;
  background:rgba(255,255,255,.06);
  border-radius:14px;padding:22px;
  border:1px solid rgba(255,255,255,.08);
  display:flex;flex-direction:column;gap:14px;
  position:relative;z-index:1;box-shadow:0 24px 48px -16px rgba(0,0,0,.4);
}
.transcript-mock__head{
  display:flex;align-items:center;gap:8px;
  font-family:var(--f-mono);font-size:11px;letter-spacing:.08em;
  color:rgba(255,255,255,.55);
  padding-bottom:10px;border-bottom:1px solid rgba(255,255,255,.08);
}
.transcript-mock__dot{
  width:8px;height:8px;border-radius:50%;background:#22c55e;
  box-shadow:0 0 0 0 rgba(34,197,94,.5);
  animation:pulse-discovery 2s ease-in-out infinite;
}
.transcript-mock__lines{display:flex;flex-direction:column;gap:8px;}
.transcript-mock__line{
  display:flex;flex-direction:column;gap:2px;
  padding:10px 14px;background:rgba(255,255,255,.03);border-radius:10px;
}
.transcript-mock__speaker{
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.12em;
  text-transform:uppercase;color:rgba(255,255,255,.45);
}
.transcript-mock__text{font-size:13px;color:rgba(255,255,255,.9);line-height:1.5;}
.transcript-mock__action{
  display:flex;align-items:flex-start;gap:10px;
  padding:10px 12px;background:rgba(134,239,172,.10);border-radius:10px;
  font-size:13px;color:#86efac;line-height:1.4;
}
.transcript-mock__action--key{background:rgba(125,211,252,.10);color:#7dd3fc;}
.transcript-mock__tag{
  font-family:var(--f-mono);font-size:9px;letter-spacing:.14em;
  padding:3px 7px;border-radius:4px;background:rgba(134,239,172,.18);color:#86efac;
  font-weight:500;flex-shrink:0;
}
.transcript-mock__action--key .transcript-mock__tag{background:rgba(125,211,252,.18);color:#7dd3fc;}

/* =========================================================
   MOCK: NETWORK GRAPH (Creator Network)
========================================================= */
.network-mock{
  width:100%;max-width:380px;
  background:rgba(255,255,255,.06);
  border-radius:14px;padding:22px;
  border:1px solid rgba(255,255,255,.08);
  display:flex;flex-direction:column;gap:14px;
  position:relative;z-index:1;box-shadow:0 24px 48px -16px rgba(0,0,0,.4);
}
.network-mock__head{
  display:flex;justify-content:space-between;align-items:baseline;
  padding-bottom:10px;border-bottom:1px solid rgba(255,255,255,.08);
  font-family:var(--f-mono);font-size:11px;color:rgba(255,255,255,.55);
}
.network-mock__head span:first-child{color:#fff;font-weight:500;letter-spacing:.04em;}
.network-mock__count{letter-spacing:.06em;color:rgba(255,255,255,.45);}
.network-mock__svg{width:100%;height:auto;display:block;}
.network-mock__lines line{stroke:rgba(255,255,255,.18);stroke-width:1;}
.network-mock__hub{fill:#fff;filter:drop-shadow(0 0 8px rgba(255,255,255,.5));}
.network-mock__node{fill:rgba(255,255,255,.6);}
.network-mock__node--small{fill:rgba(255,255,255,.4);}
.network-mock__kpis{
  display:grid;grid-template-columns:repeat(3,1fr);gap:10px;
  padding-top:12px;border-top:1px solid rgba(255,255,255,.08);
}
.network-mock__kpis div{display:flex;flex-direction:column;gap:1px;}
.network-mock__kpis b{font-size:16px;font-weight:600;color:#fff;letter-spacing:-.01em;}
.network-mock__kpis span{font-family:var(--f-mono);font-size:9.5px;color:rgba(255,255,255,.45);letter-spacing:.08em;text-transform:uppercase;}

/* =========================================================
   MOCK: PORTFOLIO (Risoniq)
========================================================= */
.portfolio-mock{
  width:100%;max-width:400px;
  background:rgba(255,255,255,.06);
  border-radius:14px;padding:22px;
  border:1px solid rgba(255,255,255,.08);
  display:flex;flex-direction:column;gap:14px;
  position:relative;z-index:1;box-shadow:0 24px 48px -16px rgba(0,0,0,.4);
}
.portfolio-mock__head{
  display:flex;justify-content:space-between;align-items:baseline;
  padding-bottom:10px;border-bottom:1px solid rgba(255,255,255,.08);
  font-family:var(--f-mono);font-size:11px;color:rgba(255,255,255,.55);
}
.portfolio-mock__head span:first-child{color:#fff;font-weight:500;letter-spacing:.04em;}
.portfolio-mock__count{
  letter-spacing:.06em;color:#86efac;
  padding:2px 8px;border-radius:999px;background:rgba(34,197,94,.12);font-size:10px;
}
.portfolio-mock__grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:6px;
}
.portfolio-mock__tile{
  padding:11px 12px;border-radius:8px;
  background:rgba(255,255,255,.04);
  font-family:var(--f-mono);font-size:11px;color:rgba(255,255,255,.75);
  letter-spacing:.02em;
  transition:background .2s;
}
.portfolio-mock__tile{
  display:flex;justify-content:space-between;align-items:center;
}
.portfolio-mock__tile i{
  width:6px;height:6px;border-radius:50%;flex-shrink:0;
  background:rgba(255,255,255,.2);
}
.portfolio-mock__tile.is-live i{background:#22c55e;box-shadow:0 0 8px rgba(34,197,94,.5);}
.portfolio-mock__tile.is-beta i{background:#fbbf24;box-shadow:0 0 8px rgba(251,191,36,.4);}
.portfolio-mock__tile.is-internal i{background:rgba(125,211,252,.7);}
.portfolio-mock__tile:hover{background:rgba(255,255,255,.10);}
.portfolio-mock__legend{
  display:flex;gap:14px;
  font-family:var(--f-mono);font-size:10px;letter-spacing:.06em;
  color:rgba(255,255,255,.5);
  padding-bottom:10px;border-bottom:1px solid rgba(255,255,255,.06);
}
.portfolio-mock__legend span{display:inline-flex;align-items:center;gap:5px;}
.portfolio-mock__legend i{width:6px;height:6px;border-radius:50%;display:inline-block;}
.portfolio-mock__legend .dot--ok{background:#22c55e;}
.portfolio-mock__legend .dot--amber{background:#fbbf24;}
.portfolio-mock__legend .dot--idle{background:rgba(125,211,252,.7);}
.portfolio-mock__head-title{font-family:var(--f-mono);}

/* =========================================================
   FULL PORTFOLIO SECTION
========================================================= */
.portfolio-section{padding:120px 0;background:linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);}

.portfolio-filters{
  display:flex;flex-wrap:wrap;justify-content:center;gap:8px;
  margin:40px auto 48px;max-width:760px;
}
.portfolio-filter{
  font-family:var(--f-mono);font-size:12px;letter-spacing:.04em;
  padding:9px 16px;border-radius:999px;
  background:rgba(255,255,255,.5);border:1px solid rgba(14,14,14,.08);
  color:var(--muted);cursor:pointer;
  display:inline-flex;align-items:center;gap:8px;
  transition:background .25s ease, border-color .25s, color .25s, transform .25s;
}
.portfolio-filter span{
  font-size:10.5px;color:var(--dim);
  padding:2px 7px;border-radius:999px;background:rgba(14,14,14,.06);letter-spacing:.04em;
}
.portfolio-filter:hover{color:var(--text);border-color:rgba(14,14,14,.16);transform:translateY(-1px);}
.portfolio-filter.is-active{
  background:var(--text);color:var(--bg);border-color:var(--text);
}
.portfolio-filter.is-active span{background:rgba(255,255,255,.16);color:rgba(255,255,255,.7);}

.portfolio-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:18px;
}
.portfolio-card{
  position:relative;
  padding:24px 22px 22px;border-radius:20px;
  background:rgba(255,255,255,.65);
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  box-shadow:0 1px 0 rgba(255,255,255,.5) inset,
             0 1px 2px rgba(14,14,14,.04),
             0 8px 24px -10px rgba(14,14,14,.08);
  display:flex;flex-direction:column;gap:10px;
  transition:transform .4s cubic-bezier(.2,.7,.2,1), background .35s, box-shadow .35s, opacity .3s;
  min-height:240px;
}
.portfolio-card:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,.92);
  box-shadow:0 1px 0 rgba(255,255,255,.7) inset,
             0 4px 12px -2px rgba(14,14,14,.06),
             0 20px 48px -16px rgba(14,14,14,.14);
}
.portfolio-card.is-hidden{
  opacity:.18;transform:scale(.96);pointer-events:none;
  filter:grayscale(.6);
}
.portfolio-card--accent{
  background:rgba(14,14,14,.97);color:#fff;
}
.portfolio-card--accent:hover{background:#0e0e0e;}
.portfolio-card--accent .portfolio-card__title{color:#fff;}
.portfolio-card--accent .portfolio-card__type{color:rgba(255,255,255,.55);}
.portfolio-card--accent .portfolio-card__desc{color:rgba(255,255,255,.7);}
.portfolio-card--accent .portfolio-card__meta span{color:rgba(255,255,255,.55);}
.portfolio-card--accent .portfolio-card__chips span{background:rgba(255,255,255,.08);color:rgba(255,255,255,.8);}

.portfolio-card__head{
  display:flex;justify-content:space-between;align-items:center;
  margin-bottom:2px;
}
.portfolio-card__type{
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.10em;
  text-transform:uppercase;color:var(--muted);
}
.portfolio-card__status{
  font-family:var(--f-mono);font-size:10px;letter-spacing:.10em;
  text-transform:uppercase;
  padding:3px 9px;border-radius:999px;
  flex-shrink:0;
}
.status--live{background:rgba(34,197,94,.10);color:#16a34a;}
.status--beta{background:rgba(251,191,36,.12);color:#a16207;}
.status--internal{background:rgba(125,211,252,.12);color:#0369a1;}
.portfolio-card--accent .status--live{background:rgba(134,239,172,.16);color:#86efac;}
.portfolio-card--accent .status--beta{background:rgba(251,191,36,.16);color:#fbbf24;}
.portfolio-card--accent .status--internal{background:rgba(125,211,252,.16);color:#7dd3fc;}

.portfolio-card__title{
  font-size:20px;font-weight:600;letter-spacing:-.02em;color:var(--text);
  line-height:1.2;
}
.portfolio-card__desc{font-size:13.5px;line-height:1.55;color:var(--muted);}
.portfolio-card__meta{
  display:flex;gap:14px;font-family:var(--f-mono);font-size:10.5px;
  color:var(--dim);letter-spacing:.04em;
  padding-top:6px;
}
.portfolio-card__chips{
  display:flex;flex-wrap:wrap;gap:5px;
  margin-top:auto;padding-top:12px;border-top:1px solid rgba(14,14,14,.06);
}
.portfolio-card--accent .portfolio-card__chips{border-top-color:rgba(255,255,255,.08);}
.portfolio-card__chips span{
  font-family:var(--f-mono);font-size:10.5px;color:var(--muted);
  padding:3px 9px;border-radius:999px;background:rgba(14,14,14,.04);
  letter-spacing:.02em;
}

.portfolio-footer{
  margin-top:48px;text-align:center;
  font-family:var(--f-serif);font-style:italic;font-size:18px;color:var(--muted);
  max-width:560px;margin-left:auto;margin-right:auto;line-height:1.5;
}

@media (max-width:960px){.portfolio-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:560px){.portfolio-grid{grid-template-columns:1fr;}}

/* =========================================================
   TECH STACK BOARD (mit Brand-Marks)
========================================================= */
.techstack-section{padding:120px 0;}
.stack-board{
  display:grid;grid-template-columns:repeat(2,1fr);gap:18px;
  margin-top:48px;
}
.stack-board__col{
  padding:28px;border-radius:24px;
  background:rgba(255,255,255,.6);
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  box-shadow:0 1px 0 rgba(255,255,255,.5) inset,
             0 1px 2px rgba(14,14,14,.04),
             0 8px 24px -10px rgba(14,14,14,.08);
}
.stack-board__head{
  display:flex;justify-content:space-between;align-items:baseline;
  padding-bottom:16px;margin-bottom:16px;
  border-bottom:1px solid rgba(14,14,14,.06);
}
.stack-board__label{
  font-family:var(--f-mono);font-size:11px;letter-spacing:.16em;
  text-transform:uppercase;color:var(--text);font-weight:600;
}
.stack-board__count{
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.06em;
  color:var(--dim);padding:3px 10px;border-radius:999px;background:rgba(14,14,14,.04);
}
.stack-board__tiles{display:flex;flex-direction:column;gap:6px;}

.stack-tile{
  display:grid;grid-template-columns:36px 1fr auto;gap:14px;align-items:center;
  padding:10px 14px;border-radius:12px;
  background:rgba(14,14,14,.025);
  transition:background .25s, transform .25s;
}
.stack-tile:hover{background:rgba(14,14,14,.06);transform:translateX(2px);}
.stack-tile__mark{
  width:36px;height:36px;display:grid;place-items:center;flex-shrink:0;
  background:var(--brand, var(--text));color:#fff;
  border-radius:9px;
  font-family:var(--f-sans);font-size:13px;font-weight:700;letter-spacing:-.02em;
  box-shadow:0 1px 2px rgba(14,14,14,.16), 0 0 0 1px rgba(255,255,255,.08) inset;
}
.stack-tile__mark svg{width:20px;height:20px;}
.stack-tile__mark img{
  width:20px;height:20px;
  filter:brightness(0) invert(1);
}
.stack-tile__body{display:flex;flex-direction:column;gap:1px;min-width:0;}
.stack-tile__name{
  font-size:14px;font-weight:600;color:var(--text);letter-spacing:-.01em;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.stack-tile__role{
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.02em;color:var(--muted);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.stack-tile__ver{
  font-family:var(--f-mono);font-size:10px;letter-spacing:.06em;
  color:var(--dim);padding:3px 8px;border-radius:999px;background:rgba(14,14,14,.05);
  flex-shrink:0;
}
@media (max-width:760px){.stack-board{grid-template-columns:1fr;}}
@media (max-width:420px){.stack-tile__role{display:none;}}

/* =========================================================
   BENTO VISUALS (Leistungen) — upgraded
========================================================= */
.bento__viz{
  margin:-8px -8px 6px;
  border-radius:18px;overflow:hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.6), rgba(255,255,255,.2)),
    rgba(14,14,14,.04);
  display:grid;place-items:center;
  position:relative;z-index:1;
  min-height:200px;
  padding:24px;
  transition:transform .5s cubic-bezier(.2,.7,.2,1);
}
.bento__card:hover .bento__viz{transform:scale(1.015);}
.bento__card--featured .bento__viz{min-height:280px;}
.bento__card--wide .bento__viz{min-height:180px;padding:32px;}
.bento__card--accent .bento__viz{
  background:linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}

/* Subtle brand accent dot per card */
.bento__card::before{
  content:"";
  position:absolute;top:-40px;right:-40px;width:140px;height:140px;
  border-radius:50%;opacity:.35;pointer-events:none;z-index:0;
  filter:blur(28px);
  transition:opacity .4s;
}
.bento__card:hover::before{opacity:.55;}
.bento__card:nth-child(1)::before{background:#3ecf8e;}   /* Web-Apps · green */
.bento__card:nth-child(2)::before{background:#3178c6;}   /* Mobile · blue */
.bento__card:nth-child(3)::before{background:#06b6d4;}   /* Automation · cyan */
.bento__card:nth-child(4)::before{background:#d97757;}   /* AI · warm */
.bento__card:nth-child(5)::before{background:#a855f7;}   /* Games · purple */
.bento__card:nth-child(6)::before{background:#f59e0b;}   /* Custom-Tools · amber */
.bento__card--accent::before{opacity:.55;}
.bento__card--accent:hover::before{opacity:.75;}

/* Bigger, cleaner number badge */
.bento__num{
  top:24px !important;right:28px !important;
  font-family:var(--f-mono) !important;font-size:13px !important;
  letter-spacing:.18em !important;
  padding:4px 10px;border-radius:999px;
  background:rgba(255,255,255,.5);
  -webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
  color:var(--text) !important;
  border:1px solid rgba(14,14,14,.04);
}
.bento__card--accent .bento__num{
  background:rgba(255,255,255,.08);color:#fff !important;border-color:rgba(255,255,255,.08);
}

/* --- Featured: Browser mock --- */
.biz-browser{
  width:100%;max-width:440px;
  background:#fff;border-radius:12px;overflow:hidden;
  border:1px solid rgba(14,14,14,.08);
  box-shadow:0 12px 36px -12px rgba(14,14,14,.16),
             0 2px 8px -2px rgba(14,14,14,.08);
}
.biz-browser__bar{
  display:flex;align-items:center;gap:6px;padding:10px 14px;
  background:rgba(14,14,14,.04);border-bottom:1px solid rgba(14,14,14,.06);
}
.biz-browser__dot{width:9px;height:9px;border-radius:50%;background:rgba(14,14,14,.18);}
.biz-browser__dot:nth-child(1){background:#ff5f56;}
.biz-browser__dot:nth-child(2){background:#ffbd2e;}
.biz-browser__dot:nth-child(3){background:#27c93f;}
.biz-browser__url{
  margin-left:8px;font-family:var(--f-mono);font-size:10.5px;color:var(--muted);
  flex:1;text-align:center;letter-spacing:.04em;
}
.biz-browser__content{display:grid;grid-template-columns:42px 1fr;}
.biz-browser__side{
  background:rgba(14,14,14,.04);padding:14px 8px;min-height:140px;
  display:flex;flex-direction:column;gap:8px;
}
.biz-browser__side::before, .biz-browser__side::after{
  content:"";width:24px;height:6px;border-radius:3px;background:rgba(14,14,14,.18);margin:0 auto;
}
.biz-browser__main{padding:14px;display:flex;flex-direction:column;gap:10px;}
.biz-browser__kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:7px;}
.biz-browser__kpis div{height:32px;background:rgba(14,14,14,.06);border-radius:6px;}
.biz-browser__kpis div:nth-child(2){background:rgba(62,207,142,.18);}
.biz-browser__chart{width:100%;height:42px;color:#3ecf8e;}
.biz-browser__rows{display:flex;flex-direction:column;gap:5px;}
.biz-browser__rows span{height:7px;border-radius:4px;background:rgba(14,14,14,.06);}
.biz-browser__rows span:nth-child(2){width:80%;}
.biz-browser__rows span:nth-child(3){width:65%;}

/* --- Phone mock --- */
.biz-phone{
  width:140px;height:200px;
  background:#0a0a0a;border-radius:22px;padding:6px;
  position:relative;
  box-shadow:0 16px 40px -10px rgba(14,14,14,.35),
             0 2px 6px -2px rgba(14,14,14,.16);
}
.biz-phone__notch{
  position:absolute;top:12px;left:50%;transform:translateX(-50%);
  width:56px;height:16px;background:#000;border-radius:9px;z-index:2;
}
.biz-phone__screen{
  width:100%;height:100%;background:#fff;border-radius:17px;
  padding:22px 12px 12px;display:flex;flex-direction:column;gap:7px;
  overflow:hidden;
}
.biz-phone__bar{display:flex;justify-content:space-between;margin-bottom:5px;}
.biz-phone__bar span{width:22px;height:5px;border-radius:2px;background:rgba(14,14,14,.16);}
.biz-phone__bar span:last-child{width:12px;}
.biz-phone__card{
  height:42px;border-radius:8px;
  background:linear-gradient(135deg, rgba(49,120,198,.16), rgba(49,120,198,.06));
}
.biz-phone__row{height:6px;border-radius:3px;background:rgba(14,14,14,.06);}
.biz-phone__row--short{width:70%;}
.biz-phone__cta{margin-top:auto;height:22px;border-radius:6px;background:#3178c6;}

/* --- Flow nodes --- */
.biz-flow{width:100%;max-width:320px;height:auto;color:var(--text);}

/* --- AI Chat --- */
.biz-chat{
  width:100%;max-width:300px;display:flex;flex-direction:column;gap:8px;
}
.biz-chat__msg{display:flex;align-items:flex-end;gap:8px;}
.biz-chat__msg--user{justify-content:flex-end;}
.biz-chat__msg--user span{
  background:rgba(255,255,255,.16);color:#fff;
  padding:9px 13px;border-radius:14px 14px 4px 14px;
  font-size:12px;font-family:var(--f-mono);max-width:80%;
}
.biz-chat__msg--ai{align-items:center;}
.biz-chat__avatar{
  width:26px;height:26px;border-radius:50%;
  background:linear-gradient(135deg, #d97757, #c2410c);color:#fff;
  display:grid;place-items:center;font-size:12px;font-weight:700;
  flex-shrink:0;
  box-shadow:0 4px 12px -2px rgba(217,119,87,.5);
}
.biz-chat__bubble{
  background:rgba(255,255,255,.12);padding:11px 16px;border-radius:14px 14px 14px 4px;
  display:inline-flex;gap:5px;align-items:center;
}
.biz-chat__dot{
  width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.7);
  animation:dot-bounce 1.2s infinite ease-in-out;
}
.biz-chat__dot:nth-child(2){animation-delay:.15s;}
.biz-chat__dot:nth-child(3){animation-delay:.30s;}
@keyframes dot-bounce{
  0%, 60%, 100%{transform:translateY(0);opacity:.6;}
  30%{transform:translateY(-4px);opacity:1;}
}

/* --- Pixel game --- */
.biz-pixel{display:flex;flex-direction:column;align-items:center;gap:10px;}
.biz-pixel__grid{
  display:grid;grid-template-columns:repeat(8,1fr);gap:2px;
  width:128px;
  padding:8px;background:rgba(14,14,14,.04);border-radius:8px;
}
.biz-pixel__grid span{
  aspect-ratio:1/1;background:rgba(14,14,14,.05);border-radius:1px;
}
.biz-pixel__grid span.on{
  background:#a855f7;
  box-shadow:0 0 4px rgba(168,85,247,.5);
  animation:pixel-flicker 4s ease-in-out infinite;
}
.biz-pixel__grid span.on:nth-child(3n){animation-delay:.5s;}
.biz-pixel__grid span.on:nth-child(5n){animation-delay:1.2s;}
@keyframes pixel-flicker{
  0%, 100%{opacity:1;}
  50%{opacity:.65;}
}
.biz-pixel__score{
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.18em;
  color:#a855f7;font-weight:600;
}

/* --- Toolbar (wide card) --- */
.biz-toolbar{
  display:grid;grid-template-columns:repeat(4,1fr);gap:10px;justify-items:center;
  padding:18px;width:100%;max-width:260px;
  background:rgba(14,14,14,.03);border-radius:18px;
  border:1px solid rgba(14,14,14,.06);
  box-shadow:0 1px 0 rgba(255,255,255,.6) inset;
}
.biz-tool{
  width:48px;height:48px;display:grid;place-items:center;flex-shrink:0;
  background:#fff;border-radius:12px;
  color:var(--text);
  box-shadow:0 1px 2px rgba(14,14,14,.06), 0 4px 10px -2px rgba(14,14,14,.10);
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor:default;position:relative;
}
.biz-tool:hover{
  transform:translateY(-3px) rotate(-4deg);
  box-shadow:0 6px 14px -2px rgba(14,14,14,.18),0 2px 4px rgba(14,14,14,.08);
  background:#fff;
}
.biz-tool svg{width:22px;height:22px;}
.biz-tool--plus{
  background:linear-gradient(135deg, #f59e0b, #d97706);color:#fff;
  box-shadow:0 1px 2px rgba(14,14,14,.06), 0 6px 14px -2px rgba(245,158,11,.5);
}
.biz-tool--plus:hover{transform:translateY(-3px) rotate(90deg);}
@media (max-width:560px){
  .biz-toolbar{flex-wrap:wrap;gap:8px;padding:14px;}
  .biz-tool{width:42px;height:42px;}
  .biz-tool svg{width:18px;height:18px;}
}

/* --- Featured: Browser mock --- */
.biz-browser{
  width:100%;max-width:380px;
  background:#fff;border-radius:10px;overflow:hidden;
  border:1px solid rgba(14,14,14,.08);
  box-shadow:0 8px 28px -10px rgba(14,14,14,.12);
}
.biz-browser__bar{
  display:flex;align-items:center;gap:6px;padding:8px 12px;
  background:rgba(14,14,14,.04);border-bottom:1px solid rgba(14,14,14,.06);
}
.biz-browser__dot{width:8px;height:8px;border-radius:50%;background:rgba(14,14,14,.18);}
.biz-browser__dot:nth-child(1){background:#ff5f56;}
.biz-browser__dot:nth-child(2){background:#ffbd2e;}
.biz-browser__dot:nth-child(3){background:#27c93f;}
.biz-browser__url{
  margin-left:8px;font-family:var(--f-mono);font-size:9.5px;color:var(--muted);
  flex:1;text-align:center;letter-spacing:.04em;
}
.biz-browser__content{display:grid;grid-template-columns:32px 1fr;}
.biz-browser__side{
  background:rgba(14,14,14,.04);padding:10px 6px;min-height:100px;
  display:flex;flex-direction:column;gap:6px;
}
.biz-browser__side::before, .biz-browser__side::after{
  content:"";width:20px;height:5px;border-radius:3px;background:rgba(14,14,14,.18);margin:0 auto;
}
.biz-browser__main{padding:12px;display:flex;flex-direction:column;gap:8px;}
.biz-browser__kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:6px;}
.biz-browser__kpis div{height:24px;background:rgba(14,14,14,.06);border-radius:5px;}
.biz-browser__chart{width:100%;height:36px;color:var(--text);}
.biz-browser__rows{display:flex;flex-direction:column;gap:4px;}
.biz-browser__rows span{height:6px;border-radius:3px;background:rgba(14,14,14,.06);}
.biz-browser__rows span:nth-child(2){width:80%;}
.biz-browser__rows span:nth-child(3){width:65%;}

/* --- Phone mock --- */
.biz-phone{
  width:120px;height:170px;
  background:#0a0a0a;border-radius:18px;padding:6px;
  position:relative;
  box-shadow:0 12px 32px -8px rgba(14,14,14,.3);
}
.biz-phone__notch{
  position:absolute;top:10px;left:50%;transform:translateX(-50%);
  width:50px;height:14px;background:#000;border-radius:8px;z-index:2;
}
.biz-phone__screen{
  width:100%;height:100%;background:#fff;border-radius:14px;
  padding:18px 10px 10px;display:flex;flex-direction:column;gap:6px;
  overflow:hidden;
}
.biz-phone__bar{display:flex;justify-content:space-between;margin-bottom:4px;}
.biz-phone__bar span{width:18px;height:4px;border-radius:2px;background:rgba(14,14,14,.16);}
.biz-phone__bar span:last-child{width:10px;}
.biz-phone__card{height:28px;border-radius:6px;background:rgba(14,14,14,.08);}
.biz-phone__row{height:5px;border-radius:3px;background:rgba(14,14,14,.06);}
.biz-phone__row--short{width:70%;}
.biz-phone__cta{margin-top:auto;height:18px;border-radius:5px;background:var(--text);}

/* --- Flow nodes --- */
.biz-flow{width:100%;max-width:280px;height:auto;color:var(--text);}

/* --- AI Chat --- */
.biz-chat{
  width:100%;max-width:280px;display:flex;flex-direction:column;gap:6px;
}
.biz-chat__msg{display:flex;align-items:flex-end;gap:6px;}
.biz-chat__msg--user{justify-content:flex-end;}
.biz-chat__msg--user span{
  background:rgba(255,255,255,.16);color:#fff;
  padding:7px 11px;border-radius:12px 12px 4px 12px;
  font-size:11px;font-family:var(--f-mono);max-width:80%;
}
.biz-chat__msg--ai{align-items:center;}
.biz-chat__avatar{
  width:22px;height:22px;border-radius:50%;
  background:#facc15;color:#0a0a0a;
  display:grid;place-items:center;font-size:11px;font-weight:700;
  flex-shrink:0;
}
.biz-chat__bubble{
  background:rgba(255,255,255,.12);padding:9px 14px;border-radius:12px 12px 12px 4px;
  display:inline-flex;gap:4px;align-items:center;
}
.biz-chat__dot{
  width:5px;height:5px;border-radius:50%;background:rgba(255,255,255,.6);
  animation:dot-bounce 1.2s infinite ease-in-out;
}
.biz-chat__dot:nth-child(2){animation-delay:.15s;}
.biz-chat__dot:nth-child(3){animation-delay:.30s;}
@keyframes dot-bounce{
  0%, 60%, 100%{transform:translateY(0);opacity:.6;}
  30%{transform:translateY(-3px);opacity:1;}
}

/* --- Pixel game --- */
.biz-pixel{display:flex;flex-direction:column;align-items:center;gap:8px;}
.biz-pixel__grid{
  display:grid;grid-template-columns:repeat(8,1fr);gap:2px;
  width:100px;
}
.biz-pixel__grid span{
  aspect-ratio:1/1;background:rgba(14,14,14,.05);border-radius:1px;
}
.biz-pixel__grid span.on{
  background:var(--text);
  animation:pixel-flicker 4s ease-in-out infinite;
}
.biz-pixel__grid span.on:nth-child(3n){animation-delay:.5s;}
.biz-pixel__grid span.on:nth-child(5n){animation-delay:1.2s;}
@keyframes pixel-flicker{
  0%, 100%{opacity:1;}
  50%{opacity:.7;}
}
.biz-pixel__score{
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.16em;
  color:var(--muted);
}

/* --- Toolbar --- */
.biz-toolbar{
  display:flex;gap:8px;flex-wrap:wrap;justify-content:center;align-items:center;
  padding:10px 14px;
  background:rgba(14,14,14,.03);border-radius:14px;
  border:1px solid rgba(14,14,14,.06);
}
.biz-tool{
  width:36px;height:36px;display:grid;place-items:center;
  background:#fff;border-radius:9px;
  color:var(--text);
  box-shadow:0 1px 2px rgba(14,14,14,.06), 0 2px 6px -2px rgba(14,14,14,.08);
  transition:transform .25s ease, box-shadow .25s ease;
  cursor:default;
}
.biz-tool:hover{transform:translateY(-2px) rotate(-3deg);box-shadow:0 4px 10px -2px rgba(14,14,14,.16);}
.biz-tool svg{width:18px;height:18px;}
.biz-tool--plus{background:var(--text);color:#fff;}
.biz-tool--plus:hover{transform:translateY(-2px) rotate(45deg);}

/* =========================================================
   ÜBER UNS — Hero-Chips (Standorte am Hero)
========================================================= */
.page-hero__chips{
  display:flex;flex-wrap:wrap;gap:10px;
  margin-top:28px;
}
.page-hero__chip{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 14px;border-radius:999px;
  background:rgba(255,255,255,.7);
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  box-shadow:var(--shadow-sm);
  font-size:13px;font-weight:500;color:var(--text);
  border:1px solid rgba(14,14,14,.05);
  transition:transform .25s ease, box-shadow .25s ease;
}
.page-hero__chip:hover{transform:translateY(-2px);box-shadow:var(--shadow-md);}
.page-hero__chip .dot{width:8px;height:8px;border-radius:50%;flex:none;}
.dot--de{background:#0e0e0e;box-shadow:0 0 0 3px rgba(14,14,14,.12);animation:pulse-soft 2s ease-in-out infinite;}
.dot--cn{background:#dc2626;box-shadow:0 0 0 3px rgba(220,38,38,.18);animation:pulse-soft 2s ease-in-out infinite .6s;}
.dot--ops{background:#3ecf8e;box-shadow:0 0 0 3px rgba(62,207,142,.18);animation:pulse-soft 2s ease-in-out infinite 1.2s;}
@keyframes pulse-soft{
  0%, 100%{transform:scale(1);}
  50%{transform:scale(1.25);}
}

/* =========================================================
   ÜBER UNS — Stack-Ribbon im Aside
========================================================= */
.about-page__stack{
  margin-top:24px;
  padding:24px;border-radius:24px;
  background:rgba(255,255,255,.55);
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  box-shadow:var(--shadow-sm);
}
.about-page__stack-label{
  display:block;
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);margin-bottom:14px;
}
.about-page__stack-grid{display:flex;flex-wrap:wrap;gap:6px;}
.stack-pill{
  font-size:12px;font-weight:500;
  padding:6px 11px;border-radius:999px;
  background:rgba(14,14,14,.04);color:var(--text);
  border:1px solid rgba(14,14,14,.04);
  transition:transform .25s ease, background .25s ease, color .25s ease;
  cursor:default;
}
.stack-pill:hover{transform:translateY(-2px);}
.stack-pill[data-c="ts"]:hover  {background:#3178c6;color:#fff;}
.stack-pill[data-c="react"]:hover{background:#61dafb;color:#0e0e0e;}
.stack-pill[data-c="next"]:hover{background:#0e0e0e;color:#fff;}
.stack-pill[data-c="sup"]:hover {background:#3ecf8e;color:#0e0e0e;}
.stack-pill[data-c="ai"]:hover  {background:#d97757;color:#fff;}
.stack-pill[data-c="py"]:hover  {background:#3776ab;color:#fff;}
.stack-pill[data-c="go"]:hover  {background:#00add8;color:#fff;}
.stack-pill[data-c="rn"]:hover  {background:#61dafb;color:#0e0e0e;}
.stack-pill[data-c="ver"]:hover {background:#0e0e0e;color:#fff;}
.stack-pill[data-c="sw"]:hover  {background:#189eff;color:#fff;}

/* =========================================================
   STANDORTE / WORLDMAP
========================================================= */
.locations-section{
  padding:120px 0;
  background:linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 50%, var(--bg-2) 100%);
  position:relative;overflow:hidden;
}
.locations-section::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(circle at 20% 40%, rgba(14,14,14,.03), transparent 30%),
    radial-gradient(circle at 80% 60%, rgba(220,38,38,.04), transparent 30%);
}
.locations{
  display:flex;flex-direction:column;gap:48px;
  margin-top:56px;position:relative;
}
.locations__map{
  position:relative;
  padding:32px;border-radius:32px;
  background:rgba(255,255,255,.6);
  -webkit-backdrop-filter:blur(28px) saturate(160%);
  backdrop-filter:blur(28px) saturate(160%);
  box-shadow:0 1px 0 rgba(255,255,255,.6) inset,
             0 24px 64px -20px rgba(14,14,14,.14);
  transform-style:preserve-3d;
  transition:transform .4s ease;
}
.worldmap{width:100%;height:auto;display:block;}
.worldmap__grid line{stroke:rgba(14,14,14,.05);stroke-width:1;stroke-dasharray:2 4;}
.worldmap__land path{
  fill:rgba(14,14,14,.06);
  stroke:rgba(14,14,14,.12);
  stroke-width:1;
  transition:fill .4s ease;
}
.locations__map:hover .worldmap__land path{fill:rgba(14,14,14,.09);}

.worldmap__arc{
  fill:none;
  stroke:url(#none);
  stroke:rgba(14,14,14,.35);
  stroke-width:1.5;
  stroke-dasharray:6 6;
  stroke-linecap:round;
  animation:arc-dash 12s linear infinite;
}
.worldmap__arc--reverse{
  stroke:rgba(220,38,38,.35);
  animation:arc-dash 12s linear infinite reverse;
}
@keyframes arc-dash{
  to{stroke-dashoffset:-200;}
}

.worldmap__marker .worldmap__dot{
  fill:var(--text);
}
.worldmap__marker--cn .worldmap__dot{fill:#dc2626;}
.worldmap__pulse{
  fill:rgba(14,14,14,.18);
  transform-origin:center;
  animation:worldmap-pulse 2.4s ease-out infinite;
}
.worldmap__marker--cn .worldmap__pulse{fill:rgba(220,38,38,.22);}
.worldmap__pulse--delay{animation-delay:1.2s;}

.worldmap__marker .worldmap__dot{transition:r .35s ease, fill .35s ease;}
.worldmap__marker.is-focus .worldmap__dot{r:8;}
.worldmap__marker.is-focus .worldmap__pulse{animation-duration:1.8s;}
.worldmap__marker:not(.is-focus) .worldmap__pulse{opacity:.5;}
@keyframes worldmap-pulse{
  0%{transform:scale(.4);opacity:.9;}
  100%{transform:scale(1.6);opacity:0;}
}

.worldmap__label rect{
  fill:var(--text);opacity:.92;
}
.worldmap__marker--cn .worldmap__label rect{fill:#dc2626;}
.worldmap__label text{
  font-family:var(--f-mono);
  font-size:10px;
  letter-spacing:.14em;
  fill:#fff;
  font-weight:600;
}
.worldmap__delta text{
  font-family:var(--f-mono);font-size:10.5px;
  fill:var(--muted);letter-spacing:.1em;
}

.locations__cards{
  display:grid;grid-template-columns:1fr 1fr;gap:18px;
}
.location-card{
  padding:28px;border-radius:24px;
  background:rgba(255,255,255,.65);
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  box-shadow:var(--shadow-sm);
  position:relative;overflow:hidden;
  transition:transform .35s ease, background .35s ease;
}
.location-card:hover{transform:translateY(-4px);background:rgba(255,255,255,.88);}
.location-card::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(circle at 100% 0%, rgba(14,14,14,.04), transparent 50%);
}
.location-card--cn::before{
  background:radial-gradient(circle at 100% 0%, rgba(220,38,38,.06), transparent 50%);
}
.location-card__head{
  display:flex;align-items:center;gap:14px;
  padding-bottom:18px;margin-bottom:18px;
  border-bottom:1px solid rgba(14,14,14,.06);
}
.location-card__head > div:nth-child(2){flex:1;}
.location-card__country{
  display:block;
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);
}
.location-card__city{
  font-size:18px;font-weight:600;letter-spacing:-.015em;color:var(--text);
  margin-top:2px;
}
.location-card__pill{
  font-family:var(--f-mono);font-size:10px;letter-spacing:.12em;
  text-transform:uppercase;color:var(--text);
  padding:5px 10px;border-radius:999px;
  background:rgba(14,14,14,.05);
  border:1px solid rgba(14,14,14,.06);
}
.location-card--cn .location-card__pill{
  background:rgba(220,38,38,.08);color:#dc2626;border-color:rgba(220,38,38,.15);
}
.location-card__flag{
  width:42px;height:42px;border-radius:12px;
  display:grid;place-items:center;
  background:rgba(14,14,14,.04);
  flex:none;
}
.flag{display:block;width:24px;height:16px;border-radius:2px;overflow:hidden;}
.flag--de{
  background:
    linear-gradient(180deg, #0e0e0e 0 33%, #dc2626 33% 66%, #fbbf24 66% 100%);
}
.flag--cn{
  background:#dc2626;position:relative;
}
.flag--cn::before{
  content:"★";position:absolute;left:3px;top:1px;
  color:#fbbf24;font-size:7px;line-height:1;
}
.flag--cn::after{
  content:"★ ★";position:absolute;left:9px;top:5px;
  color:#fbbf24;font-size:4px;line-height:1;letter-spacing:1px;
}
.location-card__facts{display:grid;gap:12px;}
.location-card__facts > div{
  display:grid;grid-template-columns:120px 1fr;gap:14px;
  padding-bottom:10px;border-bottom:1px solid rgba(14,14,14,.04);
}
.location-card__facts > div:last-child{border-bottom:0;padding-bottom:0;}
.location-card__facts dt{
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.12em;
  text-transform:uppercase;color:var(--muted);
}
.location-card__facts dd{font-size:13.5px;color:var(--text);line-height:1.45;}

@media (max-width:760px){
  .locations__cards{grid-template-columns:1fr;}
  .locations__map{padding:18px;}
  .worldmap__label text{font-size:8.5px;}
}

/* =========================================================
   ABOUT — Orbit-Visual unter Zahlen
========================================================= */
.about-orbit{display:none;}
.about-orbit-old{
  position:relative;
  width:min(420px, 100%);
  aspect-ratio:1/1;
  margin:64px auto 0;
}
.about-orbit__ring{
  position:absolute;inset:0;border-radius:50%;
  border:1px dashed rgba(14,14,14,.10);
  animation:orbit-spin 40s linear infinite;
}
.about-orbit__ring--2{
  inset:30px;border-color:rgba(14,14,14,.14);
  animation:orbit-spin 28s linear infinite reverse;
}
.about-orbit__ring--3{
  inset:60px;border-color:rgba(14,14,14,.07);
  animation:orbit-spin 56s linear infinite;
}
@keyframes orbit-spin{
  to{transform:rotate(360deg);}
}
.about-orbit__core{
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:84px;height:84px;border-radius:50%;
  background:var(--text);color:var(--bg);
  display:grid;place-items:center;
  font-family:var(--f-serif);font-size:22px;font-weight:500;letter-spacing:.04em;
  box-shadow:0 8px 32px -8px rgba(14,14,14,.4);
}
.about-orbit__chip{
  position:absolute;
  display:grid;place-items:center;
  padding:6px 10px;
  background:rgba(255,255,255,.85);
  -webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);
  border:1px solid rgba(14,14,14,.06);
  border-radius:999px;
  font-family:var(--f-mono);font-size:10px;letter-spacing:.1em;
  color:var(--text);font-weight:600;
  box-shadow:var(--shadow-sm);
  animation:orbit-float 6s ease-in-out infinite;
}
.about-orbit__chip--ts {top:-6px;left:50%;transform:translateX(-50%);}
.about-orbit__chip--rc {top:25%;right:-12px;animation-delay:.3s;}
.about-orbit__chip--nx {bottom:25%;right:-8px;animation-delay:.6s;}
.about-orbit__chip--py {bottom:-6px;left:50%;transform:translateX(-50%);animation-delay:.9s;}
.about-orbit__chip--go {bottom:25%;left:-8px;animation-delay:1.2s;}
.about-orbit__chip--rn {top:25%;left:-12px;animation-delay:1.5s;}
.about-orbit__chip--sup{top:8%;right:18%;animation-delay:1.8s;}
.about-orbit__chip--ai {bottom:8%;left:18%;animation-delay:2.1s;}
@keyframes orbit-float{
  0%, 100%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
}
.about-orbit__chip--ts, .about-orbit__chip--py{
  animation-name:orbit-float-center;
}
@keyframes orbit-float-center{
  0%, 100%{transform:translateX(-50%) translateY(0);}
  50%{transform:translateX(-50%) translateY(-6px);}
}

@media (prefers-reduced-motion: reduce){
  .about-orbit__ring, .about-orbit__chip{animation:none;}
  .worldmap__arc, .worldmap__arc--reverse{animation:none;}
  .worldmap__pulse{animation:none;}
  .dot--de, .dot--cn, .dot--ops{animation:none;}
}

/* =========================================================
   EXTRA REVEAL VARIANTS + MICROINTERACTIONS
========================================================= */
[data-reveal="zoom"]{transform:scale(.85);transform-origin:center;}
[data-reveal="blur"]{filter:blur(8px);}
[data-reveal="blur"].is-revealed{filter:blur(0);}

/* Per-section reveal delays for cascading effect */
.locations__cards .location-card{transition-duration:1.1s;}
.location-card[data-reveal]{transform:translateY(38px) rotate(.5deg);}
.location-card--cn[data-reveal]{transform:translateY(38px) rotate(-.5deg);}

/* Numbers count-up flash */
[data-count]::after{
  content:"";display:inline-block;width:0;
}
.about-number{position:relative;overflow:hidden;}
.about-number::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(120deg, transparent 0%, transparent 40%, rgba(255,255,255,.5) 50%, transparent 60%, transparent 100%);
  transform:translateX(-100%);
  transition:transform .8s ease;
}
.about-number:hover::before{transform:translateX(100%);}

/* Timeline cards: rotate-in variant via cascade index */
.timeline__step:nth-child(odd) [data-reveal]{transform:translateX(-32px);}
.timeline__step:nth-child(even) [data-reveal]{transform:translateX(32px);}

/* Header brand idle pulse on first load */
.brand__mark{
  animation:brand-breathe 6s ease-in-out infinite;
}
@keyframes brand-breathe{
  0%, 100%{filter:drop-shadow(0 0 0 rgba(14,14,14,0));}
  50%{filter:drop-shadow(0 2px 6px rgba(14,14,14,.12));}
}

/* Nav underline: gradient sweep */
.nav a::after{
  background:linear-gradient(90deg, var(--accent), #d97757, var(--accent));
  background-size:200% 100%;
}
.nav a:hover::after{
  animation:nav-sweep 1.4s linear infinite;
}
@keyframes nav-sweep{
  to{background-position:200% 0;}
}

/* Section titles em: subtle accent colour without clipping descenders */
.section-title em, .page-hero__title em{
  color:#d97757;
}

/* Team-avatar entrance — staggered pop */
.team-avatar{transition:transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;}
.team-avatar:hover{box-shadow:0 8px 16px -4px rgba(14,14,14,.2);}

/* Footer hover lift */
.footer .brand:hover .brand__mark{transform:rotate(5deg) scale(1.06);}

/* Buttons: arrow slide on hover */
.btn--primary svg, .header__cta svg{
  transition:transform .3s cubic-bezier(.2,.7,.2,1);
}
.btn--primary:hover svg{transform:translateX(4px);}

/* Generic hover micro-tilt for cards with --hover-tilt */
[data-hover-tilt]{transition:transform .4s cubic-bezier(.2,.7,.2,1);}
[data-hover-tilt]:hover{transform:translateY(-4px) rotate(-.4deg);}

@media (prefers-reduced-motion: reduce){
  .brand__mark, .nav a::after, .section-title em, .page-hero__title em{animation:none;}
  .section-title em, .page-hero__title em{color:var(--text);background:none;-webkit-background-clip:initial;background-clip:initial;}
}

/* =========================================================
   PORTFOLIO LIVE PREVIEWS
========================================================= */
.live-prev{
  margin:10px 0 4px;padding:12px;
  border-radius:14px;
  background:rgba(14,14,14,.035);
  border:1px solid rgba(14,14,14,.05);
  display:flex;flex-direction:column;gap:10px;
  font-size:12px;
}
.portfolio-card--accent .live-prev{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.08);
  color:rgba(255,255,255,.85);
}

.live-prev__label{
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--dim);
}
.portfolio-card--accent .live-prev__label{color:rgba(255,255,255,.4);}

.live-prev__row{display:flex;align-items:center;gap:10px;}
.live-prev__row-label{
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.12em;
  text-transform:uppercase;color:var(--muted);min-width:46px;
}
.portfolio-card--accent .live-prev__row-label{color:rgba(255,255,255,.5);}

.live-prev__btn{
  align-self:flex-start;
  padding:7px 14px;border-radius:999px;
  background:var(--text);color:var(--bg);
  font-size:11.5px;font-weight:600;letter-spacing:-.005em;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
}
.live-prev__btn:hover{transform:translateY(-1px);box-shadow:0 4px 10px -2px rgba(14,14,14,.2);}
.live-prev__btn:active{transform:translateY(0) scale(.97);}
.live-prev__btn--ghost{
  background:rgba(14,14,14,.05);color:var(--text);
}
.portfolio-card--accent .live-prev__btn{background:#fff;color:#0e0e0e;}
.portfolio-card--accent .live-prev__btn--ghost{
  background:rgba(255,255,255,.08);color:#fff;
}

/* ---- Fusion: Tabs + KPIs ---- */
.live-prev--fusion .live-prev__tabs{display:flex;gap:4px;}
.live-prev__tab{
  flex:1;text-align:center;padding:5px 8px;
  font-family:var(--f-mono);font-size:10px;letter-spacing:.08em;text-transform:uppercase;
  border-radius:8px;color:var(--muted);background:rgba(255,255,255,.4);
  cursor:pointer;transition:all .2s ease;
}
.live-prev__tab.is-active{background:var(--text);color:var(--bg);}
.live-prev__tab:not(.is-active):hover{background:rgba(255,255,255,.7);color:var(--text);}
.live-prev__panel{
  display:grid;grid-template-columns:repeat(3,1fr);gap:6px;
  animation:fade-in-soft .35s ease;
}
.live-prev__kpi{
  background:#fff;padding:8px 6px;border-radius:8px;text-align:center;
  border:1px solid rgba(14,14,14,.04);
  display:flex;flex-direction:column;gap:1px;
}
.live-prev__kpi b{font-size:14px;font-weight:600;color:var(--text);letter-spacing:-.01em;}
.live-prev__kpi i{font-family:var(--f-mono);font-size:8.5px;color:var(--muted);font-style:normal;letter-spacing:.05em;}

/* ---- CRM: filter chips ---- */
.live-prev__chips{display:flex;flex-wrap:wrap;gap:4px;}
.live-prev__chip{
  padding:4px 9px;border-radius:999px;
  font-size:10.5px;font-weight:500;
  background:rgba(255,255,255,.6);
  border:1px solid rgba(14,14,14,.06);
  cursor:pointer;color:var(--muted);
  transition:all .2s ease;
}
.live-prev__chip:hover{background:#fff;color:var(--text);}
.live-prev__chip.is-active{background:var(--text);color:var(--bg);border-color:var(--text);}
.live-prev__result{
  display:flex;align-items:baseline;gap:8px;
  padding:8px 10px;background:#fff;border-radius:8px;
}
.live-prev__result-big{
  font-size:18px;font-weight:600;color:var(--text);letter-spacing:-.02em;
  transition:color .3s ease;
}
.live-prev__result-sub{font-family:var(--f-mono);font-size:10px;color:var(--muted);}

/* ---- Neon Configurator ---- */
.live-prev--neon{background:#0e0e0e;border-color:#1a1a1a;}
.live-prev--neon .live-prev__label{color:rgba(255,255,255,.4);}
.live-prev--neon .live-prev__row-label{color:rgba(255,255,255,.45);}
.live-prev__neon-stage{
  background:#000;border-radius:10px;padding:18px 8px;text-align:center;
  position:relative;overflow:hidden;
  background-image:
    radial-gradient(circle at 50% 30%, rgba(255,46,46,.15), transparent 60%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px) 0 0/24px 24px,
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px) 0 0/24px 24px;
}
.live-prev__neon-text{
  font-family:var(--f-sans);font-weight:700;font-size:22px;
  color:#ff2e2e;
  text-shadow:0 0 6px #ff2e2e, 0 0 14px #ff2e2e, 0 0 28px #ff2e2eaa, 0 0 48px #ff2e2e66;
  outline:none;display:inline-block;letter-spacing:.04em;
  animation:neon-flicker 3s ease-in-out infinite;
}
.live-prev__neon-text:focus{cursor:text;}
.live-prev__neon-swatches{display:flex;gap:5px;flex-wrap:wrap;}
.live-prev__neon-swatches > span{
  width:18px;height:18px;border-radius:50%;
  background:var(--c, #ff2e2e);
  cursor:pointer;
  box-shadow:0 0 0 2px rgba(255,255,255,.06);
  transition:transform .2s ease, box-shadow .2s ease;
}
.live-prev__neon-swatches > span:hover{transform:scale(1.15);}
.live-prev__neon-swatches > span.is-active{
  box-shadow:0 0 0 2px #fff, 0 0 0 4px var(--c, #ff2e2e);
}
.live-prev__neon-fonts{display:flex;gap:4px;}
.live-prev__neon-fonts > span{
  padding:4px 10px;border-radius:6px;
  font-family:var(--f-mono);font-size:10px;
  color:rgba(255,255,255,.55);
  background:rgba(255,255,255,.06);
  cursor:pointer;
  transition:all .2s ease;
}
.live-prev__neon-fonts > span.is-active{background:#fff;color:#0e0e0e;}
.live-prev__neon-fonts > span:not(.is-active):hover{background:rgba(255,255,255,.12);}

/* ---- Sync ---- */
.live-prev__sync-row{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:8px;}
.live-prev__sync-node{
  background:#fff;border-radius:10px;padding:10px;text-align:center;
  border:1px solid rgba(14,14,14,.04);
  display:flex;flex-direction:column;gap:2px;
}
.live-prev__sync-name{font-size:12px;font-weight:600;color:var(--text);}
.live-prev__sync-sub{font-family:var(--f-mono);font-size:9.5px;color:var(--muted);}
.live-prev__sync-arrow{
  display:flex;align-items:center;gap:2px;height:18px;
}
.live-prev__sync-arrow svg{
  width:60px;height:22px;color:var(--muted);
  transition:color .3s ease;
}
.live-prev--sync.is-running .live-prev__sync-arrow svg{
  color:var(--text);
  animation:sync-arrow-shift 1.2s ease-in-out infinite;
}
@keyframes sync-arrow-shift{
  0%, 100%{transform:translateX(0);}
  50%{transform:translateX(4px);}
}

/* ---- Notetaker ---- */
.live-prev--note{background:#0e0e0e;border-color:#1a1a1a;color:rgba(255,255,255,.85);}
.live-prev__note-head{
  display:flex;align-items:center;gap:8px;
  padding-bottom:8px;border-bottom:1px solid rgba(255,255,255,.08);
}
.live-prev__note-dot{
  width:8px;height:8px;border-radius:50%;background:#ef4444;
  animation:pulse-green 1.4s ease-in-out infinite;
  box-shadow:0 0 0 0 rgba(239,68,68,.5);
}
.live-prev--note.is-paused .live-prev__note-dot{
  background:#fbbf24;animation-play-state:paused;
}
.live-prev__note-status{font-size:11px;color:rgba(255,255,255,.7);flex:1;}
.live-prev__note-time{font-family:var(--f-mono);font-size:10.5px;color:rgba(255,255,255,.5);}
.live-prev__note-body{
  min-height:78px;max-height:78px;overflow:hidden;
  font-family:var(--f-mono);font-size:10.5px;line-height:1.55;
  color:rgba(255,255,255,.65);
  display:flex;flex-direction:column;gap:2px;
}
.live-prev__note-body span{
  opacity:0;transform:translateY(6px);
  animation:note-line-in .4s ease forwards;
}
.live-prev__note-body span.speaker{color:#86efac;font-weight:600;margin-right:4px;}
@keyframes note-line-in{
  to{opacity:1;transform:translateY(0);}
}

/* ---- Call / Vapi ---- */
.live-prev__call-head{
  display:flex;justify-content:space-between;align-items:center;
}
.live-prev__call-num{
  font-family:var(--f-mono);font-size:12px;color:rgba(255,255,255,.85);
}
.portfolio-card:not(.portfolio-card--accent) .live-prev__call-num{color:var(--text);}
.live-prev__call-state{
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.12em;
  text-transform:uppercase;padding:3px 9px;border-radius:999px;
  background:rgba(251,191,36,.18);color:#fbbf24;
}
.live-prev--call.is-live .live-prev__call-state{
  background:rgba(134,239,172,.18);color:#86efac;
}
.live-prev--call.is-ended .live-prev__call-state{
  background:rgba(239,68,68,.18);color:#fca5a5;
}
.live-prev__wave{
  display:flex;align-items:center;justify-content:center;gap:3px;
  height:36px;
}
.live-prev__wave span{
  width:3px;border-radius:2px;background:rgba(255,255,255,.55);
  height:6px;transition:height .2s ease;
}
.portfolio-card:not(.portfolio-card--accent) .live-prev__wave span{background:rgba(14,14,14,.35);}
.live-prev--call.is-live .live-prev__wave span{
  animation:wave-bounce 1.2s ease-in-out infinite;
  background:#86efac;
}
.live-prev--call.is-live .live-prev__wave span:nth-child(odd){animation-duration:.9s;}
.live-prev--call.is-live .live-prev__wave span:nth-child(3n){animation-delay:.2s;}
.live-prev--call.is-live .live-prev__wave span:nth-child(5n){animation-delay:.4s;}
@keyframes wave-bounce{
  0%, 100%{height:6px;}
  50%{height:30px;}
}
.live-prev__call-actions{display:flex;gap:6px;}
.live-prev__call-btn{
  flex:1;padding:6px 10px;border-radius:8px;
  font-size:11px;font-weight:600;cursor:pointer;
  transition:transform .2s, opacity .2s;
}
.live-prev__call-btn--ans{background:#16a34a;color:#fff;}
.live-prev__call-btn--end{background:rgba(239,68,68,.9);color:#fff;}
.live-prev__call-btn:hover{transform:translateY(-1px);}
.live-prev--call.is-live .live-prev__call-btn--ans{opacity:.4;pointer-events:none;}
.live-prev--call.is-ended .live-prev__call-btn{opacity:.4;pointer-events:none;}

/* ---- Generator ---- */
.live-prev--gen .live-prev__gen-input{display:flex;align-items:center;gap:8px;}
.live-prev__gen-prompt{font-family:var(--f-mono);font-size:10px;color:rgba(255,255,255,.5);}
.portfolio-card:not(.portfolio-card--accent) .live-prev__gen-prompt{color:var(--muted);}
.live-prev__gen-select{
  flex:1;font-size:11.5px;font-family:var(--f-sans);
  background:rgba(255,255,255,.06);color:#fff;
  border:1px solid rgba(255,255,255,.1);
  padding:5px 8px;border-radius:6px;
}
.portfolio-card:not(.portfolio-card--accent) .live-prev__gen-select{
  background:#fff;color:var(--text);border-color:rgba(14,14,14,.08);
}
.live-prev__gen-out{
  min-height:62px;
  background:rgba(255,255,255,.05);border-radius:8px;
  padding:10px 12px;
  font-family:var(--f-mono);font-size:11px;line-height:1.55;
  color:rgba(255,255,255,.78);
  white-space:pre-wrap;
}
.portfolio-card:not(.portfolio-card--accent) .live-prev__gen-out{
  background:#fff;color:var(--text);
}
.live-prev__gen-cursor{
  display:inline-block;width:2px;height:11px;
  background:currentColor;margin-left:1px;
  animation:cursor-blink 1s steps(2) infinite;
  vertical-align:-1px;
}
@keyframes cursor-blink{
  50%{opacity:0;}
}

/* ---- Tagging ---- */
.live-prev__tag-msg{
  padding:10px 12px;border-radius:8px;
  background:rgba(255,255,255,.55);
  font-size:11.5px;line-height:1.5;color:var(--text);font-style:italic;
}
.portfolio-card--accent .live-prev__tag-msg{background:rgba(255,255,255,.06);color:rgba(255,255,255,.85);}
.live-prev__tag-suggest{display:flex;flex-wrap:wrap;gap:4px;}
.live-prev__tag-pill{
  padding:4px 9px;border-radius:6px;
  font-family:var(--f-mono);font-size:10px;font-weight:600;
  background:rgba(217,119,87,.12);color:#b45309;
  border:1px dashed rgba(217,119,87,.4);
  cursor:pointer;
  transition:all .25s ease;
}
.live-prev__tag-pill:hover{background:rgba(217,119,87,.24);transform:translateY(-1px);}
.live-prev__tag-pill.is-applied{
  background:#16a34a;color:#fff;border-style:solid;border-color:#16a34a;
}
.live-prev__tag-applied{
  font-family:var(--f-mono);font-size:10px;color:var(--muted);
  letter-spacing:.05em;
}

/* ---- Chart / Weekly-Reports ---- */
.live-prev__chart-head{display:flex;justify-content:space-between;align-items:baseline;}
.live-prev__chart-title{font-size:11.5px;font-weight:600;color:var(--text);}
.live-prev__chart-delta{
  font-family:var(--f-mono);font-size:10.5px;
  padding:2px 7px;border-radius:999px;
  background:rgba(34,197,94,.14);color:#16a34a;font-weight:600;
}
.live-prev__chart-delta.is-down{
  background:rgba(239,68,68,.14);color:#dc2626;
}
.live-prev__chart{
  display:flex;align-items:flex-end;gap:3px;height:48px;
  padding:4px;background:#fff;border-radius:8px;
}
.live-prev__chart span{
  flex:1;height:var(--h, 50%);
  background:linear-gradient(180deg, var(--text), #3a3a3a);
  border-radius:2px;min-height:4px;
  transition:height .5s cubic-bezier(.2,.7,.2,1);
}

/* ---- Theme switcher ---- */
.live-prev__theme-frame{
  border-radius:8px;overflow:hidden;height:78px;
  background:#f5efe4;color:#0e0e0e;
  display:flex;flex-direction:column;
  transition:background .35s ease, color .35s ease;
  border:1px solid rgba(14,14,14,.06);
}
.live-prev__theme-bar{display:block;height:14px;background:rgba(14,14,14,.08);}
.live-prev__theme-hero{
  flex:1;padding:8px 12px;display:flex;flex-direction:column;justify-content:center;
}
.live-prev__theme-hero b{
  font-family:var(--f-serif);font-style:italic;font-size:15px;
}
.live-prev__theme-hero i{
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.1em;
  text-transform:uppercase;opacity:.6;font-style:normal;
}
.live-prev__theme-frame[data-active="forest"]{background:#1f3a2a;color:#e6f3ed;}
.live-prev__theme-frame[data-active="stone"] {background:#2a2a2a;color:#f0f0f0;}
.live-prev__theme-frame[data-active="rose"]  {background:#e8c4b8;color:#3a1f17;}
.live-prev__theme-swatches{display:flex;gap:5px;}
.live-prev__theme-swatches > span{
  width:18px;height:18px;border-radius:50%;cursor:pointer;
  box-shadow:0 0 0 2px rgba(255,255,255,.5);
  transition:transform .2s;
  border:1px solid rgba(14,14,14,.1);
}
.live-prev__theme-swatches > span:hover{transform:scale(1.15);}
.live-prev__theme-swatches > span.is-active{
  box-shadow:0 0 0 2px var(--text), 0 0 0 4px rgba(255,255,255,.4);
}

@keyframes fade-in-soft{
  from{opacity:0;transform:translateY(4px);}
  to{opacity:1;transform:translateY(0);}
}

@media (prefers-reduced-motion: reduce){
  .live-prev__note-dot, .live-prev__neon-text,
  .live-prev--sync.is-running .live-prev__sync-arrow svg,
  .live-prev--call.is-live .live-prev__wave span{animation:none;}
}

/* =========================================================
   GESCHÄFTSFÜHRUNG (3-Card-Grid)
========================================================= */
.gf-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:18px;
  max-width:960px;margin:48px auto 0;
}
.gf-card{
  display:flex;flex-direction:column;align-items:center;gap:10px;
  padding:32px 24px;border-radius:24px;
  background:rgba(255,255,255,.65);
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  box-shadow:var(--shadow-sm);
  text-align:center;
  transition:transform .35s ease, background .35s ease, box-shadow .35s ease;
}
.gf-card:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow-md);
}
.gf-card__avatar{
  width:84px;height:84px;border-radius:50%;
  display:grid;place-items:center;
  color:#fff;font-family:var(--f-mono);font-size:22px;font-weight:600;letter-spacing:.04em;
  box-shadow:0 8px 20px -6px rgba(14,14,14,.3);
}
.gf-card__avatar[data-c="0"]{background:linear-gradient(135deg,#0e0e0e,#3a3a3a);}
.gf-card__avatar[data-c="1"]{background:linear-gradient(135deg,#3178c6,#1e4e8c);}
.gf-card__avatar[data-c="2"]{background:linear-gradient(135deg,#3ecf8e,#1f8a5e);}
.gf-card__name{
  font-size:18px;font-weight:600;letter-spacing:-.015em;color:var(--text);
  margin-top:8px;
}
.gf-card__role{
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);
}
.gf-card__focus{
  font-size:13px;line-height:1.5;color:var(--muted);
  margin-top:6px;
}
@media (max-width:760px){.gf-grid{grid-template-columns:1fr;max-width:380px;}}

/* =========================================================
   LOCROUTE — Standort-Visualisierung (Melsungen ↔ Jiangsu)
========================================================= */
.locroute{
  display:grid;grid-template-columns:1fr 1.4fr 1fr;align-items:center;gap:24px;
  padding:36px 28px;
}
.locroute__node{
  display:flex;flex-direction:column;align-items:center;gap:18px;
  text-align:center;
}
.locroute__globe{
  position:relative;
  width:140px;height:140px;border-radius:50%;
  background:radial-gradient(circle at 35% 30%, #ffffff 0%, #f0ece5 40%, #d8d2c4 100%);
  box-shadow:
    inset -10px -14px 24px rgba(14,14,14,.12),
    inset 8px 10px 18px rgba(255,255,255,.6),
    0 14px 30px -10px rgba(14,14,14,.18);
  display:grid;place-items:center;
  overflow:hidden;
}
.locroute__node--cn .locroute__globe{
  background:radial-gradient(circle at 35% 30%, #ffeaea 0%, #f3d2d2 40%, #d8a8a8 100%);
  box-shadow:
    inset -10px -14px 24px rgba(120,20,20,.18),
    inset 8px 10px 18px rgba(255,255,255,.55),
    0 14px 30px -10px rgba(120,20,20,.22);
}
.locroute__globe-ring{
  position:absolute;inset:8px;border-radius:50%;
  border:1px dashed rgba(14,14,14,.18);
  animation:globe-rot 18s linear infinite;
}
.locroute__globe-ring--2{
  inset:22px;border-color:rgba(14,14,14,.10);
  animation:globe-rot 26s linear infinite reverse;
}
.locroute__node--cn .locroute__globe-ring{border-color:rgba(150,30,30,.22);}
.locroute__node--cn .locroute__globe-ring--2{border-color:rgba(150,30,30,.12);}
@keyframes globe-rot{to{transform:rotate(360deg);}}

.locroute__globe-flag{
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:60px;height:40px;border-radius:6px;
  box-shadow:0 4px 10px -2px rgba(14,14,14,.25);
  overflow:hidden;
}
.locroute__globe-flag--de{
  background:
    linear-gradient(180deg, #0e0e0e 0 33%, #dc2626 33% 66%, #fbbf24 66% 100%);
}
.locroute__globe-flag--cn{
  background:#dc2626;position:relative;
}
.locroute__star{
  position:absolute;background:#fbbf24;
  width:6px;height:6px;
  clip-path:polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.locroute__star--lg{width:13px;height:13px;top:7px;left:7px;}
.locroute__globe-flag--cn .locroute__star:nth-child(2){top:5px;left:26px;}
.locroute__globe-flag--cn .locroute__star:nth-child(3){top:13px;left:30px;}
.locroute__globe-flag--cn .locroute__star:nth-child(4){top:22px;left:30px;}
.locroute__globe-flag--cn .locroute__star:nth-child(5){top:28px;left:26px;}

.locroute__globe-dot{
  position:absolute;width:14px;height:14px;border-radius:50%;
  background:#0e0e0e;
  box-shadow:0 0 0 4px rgba(14,14,14,.15), 0 0 0 8px rgba(14,14,14,.06);
  z-index:2;
}
.locroute__node--de .locroute__globe-dot{top:38%;left:46%;}
.locroute__node--cn .locroute__globe-dot{
  background:#dc2626;
  box-shadow:0 0 0 4px rgba(220,38,38,.2), 0 0 0 8px rgba(220,38,38,.08);
  top:50%;left:58%;
  animation:dot-blink 2.2s ease-in-out infinite;
}
.locroute__node--de .locroute__globe-dot{
  animation:dot-blink 2.2s ease-in-out infinite 1.1s;
}
@keyframes dot-blink{
  0%, 100%{transform:scale(1);}
  50%{transform:scale(1.25);}
}

.locroute__meta{display:flex;flex-direction:column;align-items:center;gap:3px;}
.locroute__country{
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);
}
.locroute__city{font-size:18px;font-weight:600;color:var(--text);letter-spacing:-.015em;}
.locroute__tz{
  font-family:var(--f-mono);font-size:22px;font-weight:600;
  color:var(--text);letter-spacing:.04em;margin-top:8px;
}
.locroute__node--cn .locroute__tz{color:#dc2626;}
.locroute__tz-label{
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);
}

.locroute__center{
  display:flex;flex-direction:column;align-items:center;gap:16px;
}
.locroute__svg{width:100%;max-width:380px;height:auto;}
.locroute__line{
  animation:route-dash 18s linear infinite;
}
@keyframes route-dash{to{stroke-dashoffset:-200;}}

.locroute__stats{display:flex;gap:14px;flex-wrap:wrap;justify-content:center;}
.locroute__stat{
  display:flex;flex-direction:column;align-items:center;gap:2px;
  padding:10px 16px;border-radius:14px;
  background:rgba(255,255,255,.6);
  -webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);
  border:1px solid rgba(14,14,14,.04);
  min-width:88px;
}
.locroute__stat b{font-size:16px;font-weight:600;color:var(--text);letter-spacing:-.015em;}
.locroute__stat i{
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.1em;
  text-transform:uppercase;color:var(--muted);font-style:normal;
}
.locroute__stat--accent b{color:#dc2626;}

@media (max-width:900px){
  .locroute{grid-template-columns:1fr;gap:36px;padding:24px 12px;}
  .locroute__svg{max-width:280px;}
}

/* =========================================================
   LIVE-PREV: SHOPWARE
========================================================= */
.live-prev--shop .live-prev__shop{
  display:grid;grid-template-columns:48px 1fr auto;gap:10px;align-items:center;
  padding:10px;background:#fff;border-radius:10px;
  border:1px solid rgba(14,14,14,.05);
}
.live-prev__shop-img{
  width:48px;height:48px;border-radius:8px;
  background:linear-gradient(135deg,#f0ece5,#d8d2c4);
  display:grid;place-items:center;color:#0e0e0e;
  position:relative;overflow:hidden;
}
.live-prev__shop-img-pulse{
  position:absolute;inset:0;border-radius:8px;
  background:radial-gradient(circle, rgba(34,197,94,.4), transparent 60%);
  opacity:0;animation:shop-pulse 3s ease-in-out infinite;
}
@keyframes shop-pulse{
  0%, 100%{opacity:0;}
  50%{opacity:1;}
}
.live-prev__shop-body{display:flex;flex-direction:column;gap:2px;min-width:0;}
.live-prev__shop-name{
  font-size:12px;font-weight:600;color:var(--text);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.live-prev__shop-price b{font-size:13px;color:var(--text);letter-spacing:-.01em;}
.live-prev__shop-price i{font-family:var(--f-mono);font-size:9.5px;color:var(--muted);font-style:normal;letter-spacing:.04em;margin-left:4px;}
.live-prev__shop-meta{display:flex;align-items:center;gap:5px;margin-top:2px;}
.live-prev__shop-dot{
  width:5px;height:5px;border-radius:50%;background:#16a34a;
  animation:pulse-green 1.6s ease-in-out infinite;
  box-shadow:0 0 0 0 rgba(34,197,94,.5);
}
.live-prev__shop-stock{font-family:var(--f-mono);font-size:9.5px;color:var(--muted);letter-spacing:.04em;}
.live-prev__shop-btn{
  display:inline-flex;align-items:center;gap:6px;
  align-self:stretch;white-space:nowrap;
}
.live-prev__shop-count{
  display:inline-grid;place-items:center;
  min-width:18px;height:18px;padding:0 5px;border-radius:9px;
  background:#fff;color:var(--text);
  font-family:var(--f-mono);font-size:10px;font-weight:700;
}

/* =========================================================
   LIVE-PREV: MAIL-PIPELINE
========================================================= */
.live-prev--mail .live-prev__mail-row{display:flex;align-items:center;gap:8px;}
.live-prev__mail-tabs{display:flex;gap:4px;flex:1;}
.live-prev__mail-tabs > span{
  flex:1;text-align:center;padding:4px 8px;
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.08em;
  text-transform:uppercase;border-radius:6px;
  background:rgba(255,255,255,.55);color:var(--muted);
  cursor:pointer;transition:all .2s ease;
}
.live-prev__mail-tabs > span:hover{background:#fff;color:var(--text);}
.live-prev__mail-tabs > span.is-active{background:var(--text);color:var(--bg);}
.live-prev__mail-log{
  min-height:78px;max-height:78px;overflow:hidden;
  background:#0e0e0e;color:#86efac;
  border-radius:8px;padding:10px 12px;
  font-family:var(--f-mono);font-size:10.5px;line-height:1.55;
  display:flex;flex-direction:column;gap:1px;
}
.live-prev__mail-line{
  opacity:0;transform:translateY(4px);
  animation:mail-line-in .35s ease forwards;
}
.live-prev__mail-line--idle{color:#6b6863;animation:none;opacity:1;transform:none;}
.live-prev__mail-line--ok{color:#86efac;}
.live-prev__mail-line--info{color:#7dd3fc;}
.live-prev__mail-line--warn{color:#fbbf24;}
@keyframes mail-line-in{
  to{opacity:1;transform:translateY(0);}
}

/* =========================================================
   LIVE-PREV: STEPS (Doseplus Core Workflow)
========================================================= */
.live-prev__steps{display:flex;flex-direction:column;gap:4px;}
.live-prev__step{
  display:flex;align-items:center;gap:8px;
  padding:7px 10px;border-radius:8px;
  background:rgba(255,255,255,.55);
  cursor:pointer;
  transition:all .25s ease;
  border:1px solid transparent;
}
.live-prev__step:hover{background:#fff;}
.live-prev__step-num{
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.08em;
  color:var(--dim);min-width:18px;
}
.live-prev__step-name{font-size:11.5px;color:var(--muted);font-weight:500;flex:1;}
.live-prev__step.is-done{background:rgba(34,197,94,.10);}
.live-prev__step.is-done .live-prev__step-num,
.live-prev__step.is-done .live-prev__step-name{color:#16a34a;}
.live-prev__step.is-done::after{content:"✓";color:#16a34a;font-weight:600;}
.live-prev__step.is-active{
  background:var(--text);border-color:var(--text);
}
.live-prev__step.is-active .live-prev__step-num,
.live-prev__step.is-active .live-prev__step-name{color:var(--bg);}
.live-prev__step.is-active::after{
  content:"";width:6px;height:6px;border-radius:50%;
  background:#fff;animation:pulse-soft 1.2s ease-in-out infinite;
}

/* =========================================================
   LIVE-PREV: DISCORD-OPS-BOT
========================================================= */
.live-prev--discord .live-prev__discord-feed{
  background:#36393f;color:#dcddde;
  border-radius:8px;padding:10px 12px;
  font-family:var(--f-mono);font-size:11px;line-height:1.5;
  min-height:64px;max-height:78px;overflow:hidden;
  display:flex;flex-direction:column;gap:3px;
}
.live-prev__discord-line{
  opacity:0;animation:mail-line-in .35s ease forwards;
}
.live-prev__discord-line b{color:#5865f2;font-weight:600;margin-right:6px;}
.live-prev__discord-line i{color:#dcddde;font-style:normal;}
.live-prev__discord-line em{color:#3ba55c;font-style:normal;font-weight:600;}

/* =========================================================
   LIVE-PREV: GAUGE (Twilio Cost-Tracker)
========================================================= */
.live-prev--gauge .live-prev__gauge-row{display:flex;align-items:center;gap:8px;}
.live-prev__gauge-tabs{display:flex;gap:3px;flex:1;}
.live-prev__gauge-tabs > span{
  flex:1;text-align:center;padding:4px 8px;
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.08em;
  text-transform:uppercase;border-radius:6px;
  background:rgba(255,255,255,.55);color:var(--muted);
  cursor:pointer;transition:all .2s ease;
}
.live-prev__gauge-tabs > span.is-active{background:var(--text);color:var(--bg);}
.live-prev__gauge-num{display:flex;align-items:baseline;gap:8px;padding:0 2px;}
.live-prev__gauge-cur{
  font-size:22px;font-weight:600;color:var(--text);letter-spacing:-.02em;
}
.live-prev__gauge-sub{font-family:var(--f-mono);font-size:10px;color:var(--muted);}
.live-prev__gauge-bar{
  height:8px;border-radius:999px;
  background:rgba(14,14,14,.06);
  overflow:hidden;
}
.live-prev__gauge-fill{
  display:block;height:100%;
  background:linear-gradient(90deg, #16a34a, #fbbf24 70%, #dc2626);
  transition:width .8s cubic-bezier(.2,.7,.2,1);
}
.live-prev__gauge-meta{
  display:flex;justify-content:space-between;
  font-family:var(--f-mono);font-size:10px;color:var(--muted);
}

/* =========================================================
   LIVE-PREV: PHONE-FARM
========================================================= */
.live-prev--farm .live-prev__farm-grid{
  display:grid;grid-template-columns:repeat(8,1fr);gap:4px;
  padding:8px;background:#0e0e0e;border-radius:8px;
}
.live-prev__farm-grid > span{
  aspect-ratio:1/1.5;border-radius:3px;
  background:rgba(255,255,255,.08);
  transition:background .2s ease, box-shadow .2s ease;
}
.live-prev__farm-grid > span.is-active{
  background:#3ecf8e;box-shadow:0 0 6px rgba(62,207,142,.7);
}

/* =========================================================
   LIVE-PREV: FUNNEL (cx-tool)
========================================================= */
.live-prev--funnel .live-prev__funnel{
  display:flex;flex-direction:column;gap:3px;
}
.live-prev__funnel-row{
  display:flex;align-items:baseline;gap:10px;
  padding:7px 12px;border-radius:8px;
  background:rgba(255,255,255,.55);
  cursor:pointer;
  transition:all .25s ease;
  width:100%;
}
.live-prev__funnel-row:nth-child(1){width:100%;}
.live-prev__funnel-row:nth-child(2){width:82%;}
.live-prev__funnel-row:nth-child(3){width:62%;}
.live-prev__funnel-row:nth-child(4){width:40%;}
.live-prev__funnel-row:hover{background:#fff;}
.live-prev__funnel-row.is-active{background:var(--text);color:var(--bg);}
.live-prev__funnel-row b{font-size:14px;font-weight:600;color:var(--text);letter-spacing:-.01em;min-width:48px;}
.live-prev__funnel-row.is-active b{color:var(--bg);}
.live-prev__funnel-row span{font-size:11px;color:var(--muted);font-weight:500;}
.live-prev__funnel-row.is-active span{color:rgba(250,250,250,.7);}

/* =========================================================
   LIVE-PREV: CLIPPER
========================================================= */
.live-prev--clip .live-prev__clip-stage{
  height:62px;border-radius:8px;
  background:
    linear-gradient(135deg, #1a1a1a, #0e0e0e),
    radial-gradient(circle at 70% 30%, rgba(217,119,87,.3), transparent 60%);
  position:relative;overflow:hidden;
  display:grid;place-items:center;
}
.live-prev__clip-stage::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(circle at 50% 50%, rgba(217,119,87,.18), transparent 60%);
}
.live-prev__clip-overlay{
  position:relative;
  font-family:var(--f-mono);font-size:11px;
  color:#fff;letter-spacing:.06em;
  padding:3px 9px;border-radius:4px;
  background:rgba(0,0,0,.5);
}
.live-prev__clip-track{
  position:relative;height:18px;
  background:rgba(14,14,14,.08);border-radius:4px;
  cursor:pointer;
}
.live-prev__clip-progress{
  position:absolute;left:0;top:0;bottom:0;
  background:var(--text);border-radius:4px 0 0 4px;
  transition:width .3s ease;
}
.live-prev__clip-marker{
  position:absolute;top:-2px;bottom:-2px;width:2px;
  background:#d97757;border-radius:1px;
  box-shadow:0 0 0 1px rgba(217,119,87,.3);
}
.live-prev__clip-handle{
  position:absolute;top:50%;width:10px;height:10px;
  background:#fff;border-radius:50%;
  transform:translate(-50%, -50%);
  box-shadow:0 1px 4px rgba(14,14,14,.3), 0 0 0 2px var(--text);
  transition:left .3s ease;
}
.live-prev__clip-actions{display:flex;align-items:center;justify-content:space-between;}
.live-prev__clip-format{
  font-family:var(--f-mono);font-size:9.5px;color:var(--muted);letter-spacing:.08em;
}

/* =========================================================
   LIVE-PREV: COUNTERS (PGTV Build Site)
========================================================= */
.live-prev__counters{display:grid;grid-template-columns:repeat(4,1fr);gap:6px;}
.live-prev__counter{
  display:flex;flex-direction:column;align-items:center;gap:2px;
  background:#fff;padding:8px 4px;border-radius:8px;
  border:1px solid rgba(14,14,14,.04);
}
.live-prev__counter b{font-size:18px;font-weight:600;color:var(--text);letter-spacing:-.02em;}
.live-prev__counter i{font-family:var(--f-mono);font-size:8.5px;color:var(--muted);font-style:normal;letter-spacing:.04em;text-align:center;}

/* =========================================================
   LIVE-PREV: LINKEDIN QUEUE (risoniq-linkedin)
========================================================= */
.live-prev--queue{background:#0e0e0e;border-color:#1a1a1a;color:rgba(255,255,255,.85);}
.live-prev__queue{display:flex;flex-direction:column;gap:3px;}
.live-prev__queue-row{
  display:grid;grid-template-columns:14px 38px 1fr auto;gap:8px;align-items:center;
  padding:6px 10px;border-radius:6px;
  background:rgba(255,255,255,.04);
  font-size:11px;
}
.live-prev__queue-dot{
  width:8px;height:8px;border-radius:50%;background:#6b6863;
}
.live-prev__queue-row.is-sent .live-prev__queue-dot{background:#16a34a;box-shadow:0 0 6px rgba(34,197,94,.5);}
.live-prev__queue-row.is-queued .live-prev__queue-dot{background:#fbbf24;animation:pulse-soft 1.4s ease-in-out infinite;}
.live-prev__queue-row.is-draft .live-prev__queue-dot{background:rgba(255,255,255,.2);}
.live-prev__queue-time{font-family:var(--f-mono);font-size:10px;color:rgba(255,255,255,.5);letter-spacing:.04em;}
.live-prev__queue-title{
  font-size:11.5px;color:rgba(255,255,255,.85);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.live-prev__queue-stat{
  font-family:var(--f-mono);font-size:10.5px;color:#86efac;font-weight:600;
}
.live-prev__queue-row.is-queued .live-prev__queue-stat{color:#fbbf24;}
.live-prev__queue-row.is-draft .live-prev__queue-stat{color:rgba(255,255,255,.4);}

/* =========================================================
   LIVE-PREV: SLOT-PICKER (praxis-heilsam)
========================================================= */
.live-prev__slot-day{display:flex;gap:4px;}
.live-prev__slot-day > span{
  flex:1;text-align:center;padding:5px 0;
  font-family:var(--f-mono);font-size:10px;color:var(--muted);
  border-radius:6px;background:rgba(255,255,255,.45);
  letter-spacing:.06em;
}
.live-prev__slot-day > span.is-active{background:var(--text);color:var(--bg);}
.live-prev__slot-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:4px;}
.live-prev__slot-grid > span{
  padding:7px 4px;text-align:center;
  font-family:var(--f-mono);font-size:11px;font-weight:600;
  background:#fff;color:var(--text);
  border:1px solid rgba(14,14,14,.06);border-radius:6px;
  cursor:pointer;transition:all .2s ease;
}
.live-prev__slot-grid > span:hover{background:var(--text);color:var(--bg);}
.live-prev__slot-grid > span.is-blocked{
  background:rgba(14,14,14,.04);color:var(--dim);
  text-decoration:line-through;pointer-events:none;
}
.live-prev__slot-grid > span.is-selected{background:#16a34a;color:#fff;border-color:#16a34a;}
.live-prev__slot-feedback{
  font-family:var(--f-mono);font-size:10.5px;color:var(--muted);
  text-align:center;padding:4px 0;letter-spacing:.04em;
}

/* =========================================================
   LIVE-PREV: TICKETS (Support Dashboard)
========================================================= */
.live-prev__tix{display:flex;flex-direction:column;gap:3px;}
.live-prev__tix-row{
  display:grid;grid-template-columns:42px 1fr auto;gap:8px;align-items:center;
  padding:7px 10px;border-radius:8px;
  background:#fff;
  cursor:pointer;transition:transform .2s ease;
  border:1px solid rgba(14,14,14,.04);
}
.live-prev__tix-row:hover{transform:translateX(2px);}
.live-prev__tix-id{font-family:var(--f-mono);font-size:10px;color:var(--dim);letter-spacing:.04em;}
.live-prev__tix-title{
  font-size:11.5px;color:var(--text);font-weight:500;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.live-prev__tix-status{
  font-family:var(--f-mono);font-size:9.5px;font-weight:700;letter-spacing:.1em;
  text-transform:uppercase;padding:3px 8px;border-radius:999px;
}
.live-prev__tix-row[data-status="open"] .live-prev__tix-status{background:rgba(239,68,68,.14);color:#dc2626;}
.live-prev__tix-row[data-status="progress"] .live-prev__tix-status{background:rgba(251,191,36,.16);color:#a16207;}
.live-prev__tix-row[data-status="done"] .live-prev__tix-status{background:rgba(34,197,94,.14);color:#16a34a;}

/* =========================================================
   LIVE-PREV: CURL (Update-Webhook)
========================================================= */
.live-prev--curl .live-prev__curl{
  white-space:pre;
  background:#0e0e0e;color:rgba(255,255,255,.7);
  border-radius:8px;padding:10px 12px;
  font-family:var(--f-mono);font-size:10.5px;line-height:1.55;
  overflow-x:auto;
}
.live-prev__curl-meth{color:#86efac;font-weight:700;}
.live-prev__curl-url{color:#fbbf24;}
.live-prev__curl-hdr{color:#7dd3fc;}
.live-prev__curl-val{color:#fbbf24;}
.live-prev__curl-str{color:#86efac;}
.live-prev__curl-resp{
  font-family:var(--f-mono);font-size:10.5px;color:var(--muted);
  background:rgba(14,14,14,.04);padding:7px 10px;border-radius:6px;
  letter-spacing:.04em;
}
.live-prev__curl-resp.is-ok{color:#16a34a;background:rgba(34,197,94,.08);}

/* =========================================================
   LIVE-PREV: NODES (continental-ai-connect)
========================================================= */
.live-prev--nodes{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.08);}
.live-prev__nodes{
  display:flex;align-items:center;justify-content:center;gap:6px;
  padding:14px 4px;
}
.live-prev__node{
  font-family:var(--f-mono);font-size:10px;font-weight:600;letter-spacing:.08em;
  padding:6px 10px;border-radius:6px;
  background:rgba(255,255,255,.06);color:rgba(255,255,255,.7);
  border:1px solid rgba(255,255,255,.1);
}
.live-prev__node.is-pgtv{background:#fff;color:#0e0e0e;}
.live-prev__node-line{
  flex:0 0 24px;height:1px;
  background:linear-gradient(90deg, rgba(255,255,255,.1), rgba(255,255,255,.4), rgba(255,255,255,.1));
  position:relative;
}
.live-prev--nodes.is-pinging .live-prev__node-line::after{
  content:"";position:absolute;top:-2px;width:6px;height:6px;border-radius:50%;
  background:#86efac;box-shadow:0 0 6px rgba(134,239,172,.8);
  animation:node-zap 1.4s linear infinite;
}
@keyframes node-zap{
  0%{left:0;opacity:0;}
  10%{opacity:1;}
  90%{opacity:1;}
  100%{left:100%;opacity:0;}
}
.live-prev__nodes-log{
  font-family:var(--f-mono);font-size:10.5px;color:rgba(255,255,255,.6);
  background:rgba(0,0,0,.3);padding:7px 10px;border-radius:6px;
  display:flex;flex-direction:column;gap:1px;min-height:42px;
}
.live-prev__nodes-log div{opacity:0;animation:mail-line-in .35s ease forwards;}

/* =========================================================
   LIVE-PREV: VU-METER (risoniq-voice-engine)
========================================================= */
.live-prev--vu{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.08);}
.live-prev__vu-row{display:flex;align-items:center;gap:10px;}
.live-prev__vu-meter{
  flex:1;display:flex;align-items:flex-end;gap:2px;height:28px;
  padding:2px;background:rgba(0,0,0,.3);border-radius:4px;
}
.live-prev__vu-meter span{
  flex:1;height:8%;background:#3ecf8e;border-radius:1px;
  transition:height .12s ease, background .12s ease;
}
.live-prev--vu.is-running .live-prev__vu-meter span{
  animation:vu-bounce 1.2s ease-in-out infinite;
}
.live-prev--vu.is-running .live-prev__vu-meter span:nth-child(odd){animation-duration:.85s;}
.live-prev--vu.is-running .live-prev__vu-meter span:nth-child(3n){animation-delay:.18s;}
.live-prev--vu.is-running .live-prev__vu-meter span:nth-child(5n){animation-delay:.35s;}
@keyframes vu-bounce{
  0%, 100%{height:8%;}
  30%{height:60%;}
  60%{height:90%;background:#fbbf24;}
  80%{height:40%;}
}
.live-prev__vu-stats{
  display:flex;justify-content:space-between;
  font-family:var(--f-mono);font-size:10px;color:rgba(255,255,255,.55);
}
.live-prev__vu-stats b{color:#fff;font-weight:600;}

/* =========================================================
   LIVE-PREV: QCALL (risoniq-calling)
========================================================= */
.live-prev--qcall{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.08);}
.live-prev__qcall-head{
  display:flex;justify-content:space-between;align-items:baseline;
  font-family:var(--f-mono);font-size:10px;color:rgba(255,255,255,.5);
  letter-spacing:.08em;text-transform:uppercase;
}
.live-prev__qcall-head b{color:#fff;font-weight:700;font-size:13px;}
.live-prev__qcall-list{display:flex;flex-direction:column;gap:3px;}
.live-prev__qcall-row{
  display:grid;grid-template-columns:14px 1fr auto;gap:8px;align-items:center;
  padding:6px 10px;border-radius:6px;
  background:rgba(255,255,255,.04);
  font-family:var(--f-mono);font-size:10.5px;color:rgba(255,255,255,.8);
}
.live-prev__qcall-dot{width:8px;height:8px;border-radius:50%;}
.live-prev__qcall-dot.is-live{background:#86efac;box-shadow:0 0 6px rgba(134,239,172,.6);}
.live-prev__qcall-dot.is-ring{background:#fbbf24;animation:pulse-soft 1s ease-in-out infinite;}

/* =========================================================
   LIVE-PREV: NOTION-BLOCKS
========================================================= */
.live-prev__notion{display:flex;flex-direction:column;gap:2px;}
.live-prev__notion-block{
  display:flex;align-items:center;gap:8px;
  padding:5px 8px;border-radius:5px;
  background:rgba(255,255,255,.5);
  font-size:11.5px;color:var(--text);
  cursor:pointer;
  transition:all .2s ease;
}
.live-prev__notion-block:hover{background:#fff;}
.live-prev__notion-block i{
  width:14px;height:14px;border-radius:3px;
  border:1.5px solid rgba(14,14,14,.4);
  flex:none;position:relative;
}
.live-prev__notion-block[data-status="done"]{color:var(--dim);}
.live-prev__notion-block[data-status="done"] i{
  background:#16a34a;border-color:#16a34a;
}
.live-prev__notion-block[data-status="done"] i::after{
  content:"✓";position:absolute;color:#fff;font-size:10px;font-weight:700;
  top:-3px;left:2px;
}
.live-prev__notion-block[data-status="done"]{text-decoration:line-through;text-decoration-color:var(--dim);}
.live-prev__notion-sync{
  font-family:var(--f-mono);font-size:9.5px;color:var(--muted);
  text-align:center;padding-top:4px;letter-spacing:.06em;
}

/* =========================================================
   LIVE-PREV: CRON-COUNTDOWN
========================================================= */
.live-prev__cron-row{
  display:grid;grid-template-columns:auto auto 1fr;gap:10px;align-items:center;
}
.live-prev__cron-icon{
  font-size:20px;color:var(--text);
  animation:globe-rot 4s linear infinite;
  display:inline-block;
}
.live-prev__cron-label{
  font-family:var(--f-mono);font-size:10px;letter-spacing:.1em;
  text-transform:uppercase;color:var(--muted);
}
.live-prev__cron-cd{
  font-family:var(--f-mono);font-size:16px;font-weight:600;color:var(--text);
  letter-spacing:.04em;text-align:right;
}
.live-prev__cron-stats{display:flex;gap:14px;}
.live-prev__cron-stats span{display:flex;flex-direction:column;gap:1px;}
.live-prev__cron-stats b{font-size:14px;font-weight:600;color:var(--text);letter-spacing:-.01em;}
.live-prev__cron-stats i{font-family:var(--f-mono);font-size:9.5px;color:var(--muted);font-style:normal;letter-spacing:.04em;}

/* =========================================================
   LIVE-PREV: SITE-VIEWPORT (websiterisoniq)
========================================================= */
.live-prev--site .live-prev__site{
  margin:0 auto;background:#fff;
  border-radius:6px;overflow:hidden;
  box-shadow:0 4px 12px -4px rgba(14,14,14,.15);
  transition:max-width .4s cubic-bezier(.2,.7,.2,1);
}
.live-prev__site[data-site-viewport="desktop"]{max-width:100%;}
.live-prev__site[data-site-viewport="tablet"]{max-width:62%;}
.live-prev__site[data-site-viewport="mobile"]{max-width:35%;}
.live-prev__site-bar{
  display:flex;gap:4px;padding:5px 8px;background:rgba(14,14,14,.05);
}
.live-prev__site-bar i{width:7px;height:7px;border-radius:50%;background:rgba(14,14,14,.18);}
.live-prev__site-body{
  padding:14px 12px 14px;display:flex;flex-direction:column;gap:3px;
}
.live-prev__site-h1{
  font-family:var(--f-serif);font-style:italic;font-size:15px;
  color:var(--text);letter-spacing:-.01em;
}
.live-prev__site-sub{
  font-family:var(--f-mono);font-size:9.5px;color:var(--muted);
  letter-spacing:.04em;
}
.live-prev__site-cta{
  font-size:10.5px;font-weight:600;color:var(--text);
  margin-top:4px;
}
.live-prev__site-tabs{display:flex;gap:3px;flex:1;}
.live-prev__site-tabs > span{
  flex:1;text-align:center;padding:4px;
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.06em;
  text-transform:uppercase;border-radius:5px;
  background:rgba(255,255,255,.55);color:var(--muted);
  cursor:pointer;transition:all .2s ease;
}
.live-prev__site-tabs > span.is-active{background:var(--text);color:var(--bg);}

/* =========================================================
   LIVE-PREV: TIMER (tracker-share)
========================================================= */
.live-prev__timer-head{
  display:flex;align-items:center;gap:6px;
  font-family:var(--f-mono);font-size:10px;color:var(--muted);
  letter-spacing:.06em;
}
.live-prev__timer-dot{
  width:7px;height:7px;border-radius:50%;background:#16a34a;
  animation:pulse-green 1.4s ease-in-out infinite;
}
.live-prev__timer{
  font-family:var(--f-mono);font-size:30px;font-weight:600;
  color:var(--text);letter-spacing:.04em;text-align:center;
  padding:6px 0;
}
.live-prev__timer-projects{display:flex;gap:4px;}
.live-prev__timer-projects > span{
  flex:1;text-align:center;padding:4px 6px;
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.04em;
  border-radius:6px;background:rgba(255,255,255,.5);color:var(--muted);
}
.live-prev__timer-projects > span.is-active{background:var(--text);color:var(--bg);}

/* =========================================================
   LIVE-PREV: PIPELINE (ford-crm)
========================================================= */
.live-prev--pipe{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.08);}
.live-prev__pipe{display:grid;grid-template-columns:repeat(4,1fr);gap:4px;}
.live-prev__pipe-stage{
  display:flex;flex-direction:column;align-items:center;gap:2px;
  padding:9px 4px;border-radius:6px;
  background:rgba(255,255,255,.06);
  cursor:pointer;transition:all .25s ease;
  position:relative;
}
.live-prev__pipe-stage::after{
  content:"›";position:absolute;right:-8px;top:50%;transform:translateY(-50%);
  color:rgba(255,255,255,.3);font-size:14px;
}
.live-prev__pipe-stage:last-child::after{display:none;}
.live-prev__pipe-stage b{font-size:18px;font-weight:600;color:#fff;letter-spacing:-.02em;}
.live-prev__pipe-stage i{font-family:var(--f-mono);font-size:9px;color:rgba(255,255,255,.5);font-style:normal;letter-spacing:.06em;}
.live-prev__pipe-stage:hover{background:rgba(255,255,255,.1);}
.live-prev__pipe-stage.is-active{background:#fff;}
.live-prev__pipe-stage.is-active b{color:#0e0e0e;}
.live-prev__pipe-stage.is-active i{color:var(--muted);}
.live-prev__pipe-detail{
  font-family:var(--f-mono);font-size:10.5px;color:rgba(255,255,255,.7);
  background:rgba(0,0,0,.3);padding:7px 10px;border-radius:6px;
  letter-spacing:.02em;
}

/* =========================================================
   LIVE-PREV: GALLERY (vanlife)
========================================================= */
.live-prev__gallery{display:grid;grid-template-columns:repeat(5,1fr);gap:4px;}
.live-prev__gallery > span{
  aspect-ratio:1/1.2;border-radius:6px;
  background:var(--g, #ccc);
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease;
  position:relative;
  box-shadow:0 1px 2px rgba(14,14,14,.08);
}
.live-prev__gallery > span:hover{transform:translateY(-2px);}
.live-prev__gallery > span.is-active{
  box-shadow:0 0 0 2px var(--text), 0 4px 12px -2px rgba(14,14,14,.25);
  transform:translateY(-2px) scale(1.04);
}
.live-prev__gallery-caption{
  display:flex;flex-direction:column;gap:1px;
  padding:6px 4px 0;
}
.live-prev__gallery-caption b{font-size:12px;font-weight:600;color:var(--text);letter-spacing:-.01em;}
.live-prev__gallery-caption i{font-family:var(--f-mono);font-size:9.5px;color:var(--muted);font-style:normal;letter-spacing:.06em;}

/* =========================================================
   LIVE-PREV: BEFORE/AFTER (barwich-dach)
========================================================= */
.live-prev--ba .live-prev__ba{
  position:relative;height:78px;border-radius:8px;overflow:hidden;
  cursor:ew-resize;user-select:none;
}
.live-prev__ba-before{
  position:absolute;inset:0;
  background:
    repeating-linear-gradient(90deg, #6b5d4a 0 10px, #5a4d3a 10px 12px),
    linear-gradient(180deg, #8b7d6a 0%, #5a4d3a 100%);
  background-blend-mode:multiply;
}
.live-prev__ba-after{
  position:absolute;left:0;top:0;bottom:0;
  background:
    repeating-linear-gradient(90deg, #2a3a4a 0 10px, #1f2d3a 10px 12px),
    linear-gradient(180deg, #4a5a6a 0%, #1f2d3a 100%);
  background-blend-mode:multiply;
  overflow:hidden;
}
.live-prev__ba-label{
  position:absolute;top:8px;
  font-family:var(--f-mono);font-size:9.5px;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;color:#fff;
  padding:3px 7px;border-radius:4px;background:rgba(0,0,0,.55);
  pointer-events:none;
}
.live-prev__ba-label--before{right:8px;}
.live-prev__ba-label--after{left:8px;}
.live-prev__ba-handle{
  position:absolute;top:0;bottom:0;width:3px;
  background:#fff;
  transform:translateX(-50%);
  box-shadow:0 0 0 1px rgba(14,14,14,.3), 0 0 8px rgba(14,14,14,.3);
  cursor:ew-resize;
}
.live-prev__ba-handle::before{
  content:"⇔";position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:24px;height:24px;border-radius:50%;
  background:#fff;color:#0e0e0e;font-size:11px;
  display:grid;place-items:center;
  box-shadow:0 2px 6px rgba(14,14,14,.3);
}

/* =========================================================
   WELTKARTE (Über uns · Standorte)
========================================================= */
.worldmap-real{
  position:relative;
  padding:24px;border-radius:24px;
  background:rgba(255,255,255,.55);
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  box-shadow:0 1px 0 rgba(255,255,255,.6) inset,
             0 24px 64px -20px rgba(14,14,14,.14);
}
.worldmap-real__svg{width:100%;height:auto;display:block;}
.worldmap-real__dots circle{fill:rgba(14,14,14,.16);}
.worldmap-real__dots circle.is-land-2{fill:rgba(14,14,14,.22);}

.worldmap-real__arc{
  animation:worldmap-arc 14s linear infinite;
}
@keyframes worldmap-arc{to{stroke-dashoffset:-200;}}

.worldmap-real__marker .worldmap-real__dot{fill:#0e0e0e;}
.worldmap-real__marker--cn .worldmap-real__dot{fill:#dc2626;}
.worldmap-real__pulse{
  fill:rgba(14,14,14,.18);
  animation:worldmap-pulse2 2.4s ease-out infinite;
}
.worldmap-real__marker--cn .worldmap-real__pulse{fill:rgba(220,38,38,.24);}
.worldmap-real__pulse--2{animation-delay:1.2s;}

.worldmap-real__marker .worldmap-real__dot{transition:r .3s ease;}
.worldmap-real__marker.is-focus .worldmap-real__dot{r:6;}
.worldmap-real__marker.is-focus .worldmap-real__pulse{animation-duration:1.6s;}
.worldmap-real__marker:not(.is-focus) .worldmap-real__pulse{opacity:.5;}
@keyframes worldmap-pulse2{
  0%   {r:5;opacity:.85;}
  100% {r:20;opacity:0;}
}

.worldmap-real__label text{
  font-family:var(--f-sans);font-size:11px;font-weight:600;
  fill:var(--text);letter-spacing:-.005em;
  paint-order:stroke;
  stroke:rgba(250,250,250,.85);stroke-width:3px;stroke-linejoin:round;
}
.worldmap-real__marker--cn .worldmap-real__label text{fill:#dc2626;}

.worldmap-real__delta text{
  font-family:var(--f-mono);font-size:9.5px;
  fill:var(--muted);letter-spacing:.1em;
  paint-order:stroke;
  stroke:rgba(250,250,250,.85);stroke-width:3px;stroke-linejoin:round;
}

.worldmap-real__plane{filter:drop-shadow(0 2px 4px rgba(14,14,14,.25));}

/* Live-Uhren unter der Karte */
.worldmap-real__clocks{
  display:flex;align-items:center;justify-content:center;gap:24px;
  margin-top:18px;padding:18px;
  background:rgba(255,255,255,.6);border-radius:16px;
  border:1px solid rgba(14,14,14,.05);
}
.worldmap-real__clock{
  display:flex;align-items:center;gap:12px;
}
.worldmap-real__clock-flag{
  width:34px;height:24px;border-radius:4px;flex:none;
  position:relative;overflow:hidden;
  box-shadow:0 0 0 1px rgba(14,14,14,.08);
}
.worldmap-real__clock-flag--de{
  background:linear-gradient(180deg, #0e0e0e 0 33%, #dc2626 33% 66%, #fbbf24 66% 100%);
}
.worldmap-real__clock-flag--cn{background:#dc2626;}
.worldmap-real__clock-flag--cn::before{
  content:"★";position:absolute;left:5px;top:2px;color:#fbbf24;font-size:10px;line-height:1;
}
.worldmap-real__clock > div{display:flex;flex-direction:column;gap:1px;}
.worldmap-real__clock-time{
  font-family:var(--f-mono);font-size:20px;font-weight:600;
  color:var(--text);letter-spacing:.04em;
}
.worldmap-real__clock-label{
  font-family:var(--f-mono);font-size:10px;color:var(--muted);
  letter-spacing:.1em;text-transform:uppercase;
}
.worldmap-real__divider{
  font-family:var(--f-mono);font-size:16px;color:var(--dim);font-weight:600;
}

@media (max-width:760px){
  .worldmap-real{padding:14px;}
  .worldmap-real__label text{font-size:9.5px;}
  .worldmap-real__delta text{font-size:8.5px;}
  .worldmap-real__clocks{flex-direction:column;gap:14px;padding:14px;}
  .worldmap-real__clock-time{font-size:17px;}
  .worldmap-real__divider{transform:rotate(90deg);}
}

/* =========================================================
   TECH-KONSTELLATION (Über uns)
========================================================= */
.constellation{
  position:relative;
  width:min(560px, 100%);
  margin:64px auto 16px;
}
.constellation__svg{
  width:100%;height:auto;display:block;
  overflow:visible;
}
.constellation__orbit{
  fill:none;
  stroke:rgba(14,14,14,.12);
  stroke-width:1;
  stroke-dasharray:3 5;
  transform-origin:center;
  animation:constellation-rot 60s linear infinite;
}
.constellation__orbit--inner{
  stroke:rgba(14,14,14,.07);
  animation:constellation-rot 80s linear infinite reverse;
}
@keyframes constellation-rot{to{transform:rotate(360deg);}}

.constellation__core-bg{
  fill:var(--text);
  filter:drop-shadow(0 6px 16px rgba(14,14,14,.18));
}
.constellation__core-text{
  font-family:var(--f-serif);font-style:italic;
  font-size:20px;font-weight:400;
  fill:var(--bg);letter-spacing:.04em;
}

.constellation__chip rect{
  fill:rgba(255,255,255,.95);
  stroke:rgba(14,14,14,.08);
  stroke-width:1;
  filter:drop-shadow(0 2px 6px rgba(14,14,14,.06));
  transition:transform .3s ease, fill .3s ease;
}
.constellation__chip text{
  font-family:var(--f-mono);font-size:10.5px;font-weight:600;
  fill:var(--text);text-anchor:middle;
  dominant-baseline:middle;
  letter-spacing:.04em;
}
.constellation__chip{
  cursor:default;
  transition:filter .3s ease;
}
.constellation__chip:hover rect{
  filter:drop-shadow(0 4px 12px rgba(14,14,14,.14));
}
.constellation__chip--inner rect{
  fill:rgba(14,14,14,.04);
  stroke:rgba(14,14,14,.06);
}
.constellation__chip--inner text{
  font-size:9px;color:var(--muted);
}

@media (prefers-reduced-motion: reduce){
  .constellation__orbit, .constellation__chip{animation:none;}
}

@media (max-width:600px){
  .constellation{margin-top:40px;}
  .constellation__chip text{font-size:9.5px;}
  .constellation__chip--inner text{font-size:8px;}
}

/* =========================================================
   MOBILE FIXES — ueber-uns + globale Anpassungen
========================================================= */
@media (max-width:760px){
  .page-hero{padding:140px 0 60px;}
  .page-hero__title{font-size:clamp(36px, 9vw, 56px);}
  .page-hero__chips{gap:6px;}
  .page-hero__chip{font-size:11.5px;padding:6px 10px;}

  .about-page__grid{grid-template-columns:1fr;gap:32px;}
  .about-page__aside{position:static;}
  .about-page__h2{font-size:24px;margin-top:32px;}
  .about-page__lead{font-size:15.5px;}

  .timeline{margin-top:32px;gap:18px;}
  .timeline__progress{left:48px;}
  .timeline__step{grid-template-columns:48px 24px 1fr;gap:10px;}
  .timeline__year{font-size:11px;padding-top:14px;}
  .timeline__card{padding:16px 18px;}
  .timeline__card h3{font-size:16px;}
  .timeline__card p{font-size:13px;}

  .gf-grid{grid-template-columns:1fr;gap:14px;max-width:380px;}
  .gf-card{padding:24px 20px;}
  .gf-card__avatar{width:64px;height:64px;font-size:18px;}

  .values__grid{grid-template-columns:1fr;gap:12px;}
  .value{padding:24px 20px;}

  .about-numbers__grid{grid-template-columns:1fr 1fr;gap:10px;}
  .about-number{padding:20px 16px;}
  .about-number__big{font-size:clamp(28px, 7vw, 36px);}

  .locations-section{padding:64px 0;}
  .locations{gap:24px;margin-top:24px;}

  .section-title{font-size:clamp(30px, 7vw, 48px);}
  .section-intro{font-size:15px;}

  .footer__top{padding:32px 0 28px;}
  .footer__cta{padding:36px 0 28px;}
  .footer__cta-title{font-size:clamp(22px, 6vw, 32px);}
  .footer__cta-btn{padding:14px 22px;font-size:14px;}

  /* Live-Previews kompakter */
  .live-prev{padding:10px;font-size:11.5px;}
  .live-prev__btn{padding:6px 12px;font-size:11px;}

  /* Header kleiner auf Mobile */
  .brand__mark{width:44px;height:44px;}
}

@media (max-width:480px){
  .page-hero__title{font-size:clamp(30px, 10vw, 44px);}
  .about-numbers__grid{grid-template-columns:1fr;}
  .footer__cta{flex-direction:column;align-items:flex-start;gap:18px;}
  .footer__top{grid-template-columns:1fr;}
  .footer__brand{margin-bottom:8px;}
}

/* =========================================================
   RESPONSIVE OVERHAUL — TABLET (1024px), MOBILE (760px), SMALL (480px)
========================================================= */

/* ====== TABLET (bis 1024px) ====== */
@media (max-width:1024px){
  :root{--pad-x:clamp(20px, 4vw, 48px);}

  .header{padding:14px clamp(20px, 3vw, 36px);}
  .header.is-scrolled{padding:10px clamp(20px, 3vw, 36px);}
  .nav{gap:24px;}
  .nav a{font-size:13.5px;}
  .header__cta{padding:10px 16px;font-size:13px;}

  /* Hero & Section-Headlines schlanker */
  .hero{padding-top:140px;padding-bottom:80px;}
  .section-title{font-size:clamp(34px, 4.5vw, 56px);}
  .page-hero{padding:170px 0 80px;}
  .page-hero__title{font-size:clamp(44px, 6vw, 72px);}
  .page-hero__sub{font-size:17px;max-width:720px;}

  /* Bento / Grids zwei-spaltig */
  .bento{grid-template-columns:repeat(2,1fr);}
  .bento__card--featured,.bento__card--wide{grid-column:span 2;}

  /* About-Page */
  .about-page__grid{grid-template-columns:1fr;gap:48px;}
  .about-page__aside{position:static;max-width:560px;}
  .about-page__facts div{grid-template-columns:140px 1fr;}

  /* Numbers */
  .about-numbers__grid{grid-template-columns:repeat(3,1fr);}

  /* Footer */
  .footer__top{grid-template-columns:1.4fr repeat(2,1fr);gap:28px;}
  .footer__col:nth-child(4),
  .footer__col:nth-child(5){grid-column:auto;}
  .footer__cta{gap:24px;}
  .footer__cta-title{font-size:clamp(28px, 3.8vw, 38px);}

  /* Portfolio */
  .portfolio-grid{grid-template-columns:repeat(2,1fr);}

  /* Phasen */
  .phase__grid{grid-template-columns:200px 1fr;gap:32px;}

  /* Marquee Logos etwas kleiner */
  .ref-logo{height:84px;min-width:140px;}
  .ref-logo img{height:64px;max-width:200px;}
}

/* ====== MOBILE (bis 760px) ====== */
@media (max-width:760px){
  :root{--pad-x:18px;}

  body{font-size:15.5px;}

  /* HEADER kompakt */
  .header{padding:10px 14px;gap:8px;}
  .header.is-scrolled{padding:8px 14px;}
  .brand__mark{width:42px;height:42px;}
  .header.is-scrolled .brand__mark{width:38px;height:38px;}
  .menu-toggle{width:42px;height:42px;}

  /* Mobile Nav-Overlay */
  .nav.is-open{
    top:64px;left:10px;right:10px;
    padding:18px;gap:10px;border-radius:18px;
    box-shadow:0 24px 48px -16px rgba(14,14,14,.18);
  }
  .nav.is-open a{font-size:16px;padding:8px 0;}

  /* HERO + Page-Hero */
  .hero{padding-top:120px;padding-bottom:56px;}
  .hero h1{font-size:clamp(38px, 9vw, 60px);line-height:1.05;}
  .page-hero{padding:130px 0 50px;}
  .page-hero__num{font-size:11px;}
  .page-hero__title{font-size:clamp(34px, 9vw, 52px);line-height:1.05;}
  .page-hero__sub{font-size:15.5px;line-height:1.55;}
  .page-hero__chips{gap:6px;}
  .page-hero__chip{font-size:11px;padding:6px 10px;}

  /* Section-Titel + Intro */
  .section-title{font-size:clamp(28px, 8vw, 44px);line-height:1.08;}
  .section-intro{font-size:14.5px;line-height:1.55;}
  .section-num{font-size:11px;padding:5px 10px;}
  .section-head{margin-bottom:32px;}

  /* Container-Padding generell weniger */
  section{padding-top:56px !important;padding-bottom:56px !important;}

  /* Bento → einspaltig */
  .bento{grid-template-columns:1fr;gap:14px;}
  .bento__card,
  .bento__card--featured,
  .bento__card--wide{grid-column:auto;padding:24px;}
  .bento__card h3{font-size:20px;}

  /* About-Page */
  .about-page__grid{gap:32px;}
  .about-page__h2{font-size:22px;margin-top:28px;margin-bottom:12px;}
  .about-page__lead{font-size:16px;}
  .about-page__col p{font-size:14.5px;line-height:1.65;}
  .about-page__pull{padding:18px 20px;font-size:15px;}
  .about-page__facts{padding:20px;}
  .about-page__facts div{grid-template-columns:110px 1fr;gap:10px;padding-bottom:10px;}
  .about-page__facts dt{font-size:10px;}
  .about-page__facts dd{font-size:13px;}
  .about-page__stack{padding:18px;}

  /* Timeline */
  .timeline{margin-top:28px;gap:14px;}
  .timeline__progress{left:40px;}
  .timeline__step{grid-template-columns:40px 20px 1fr;gap:8px;}
  .timeline__year{font-size:10.5px;padding-top:14px;}
  .timeline__dot{width:11px;height:11px;margin-top:18px;}
  .timeline__card{padding:14px 16px;border-radius:14px;}
  .timeline__card h3{font-size:15px;}
  .timeline__card p{font-size:12.5px;line-height:1.55;}
  .timeline__tag{font-size:9.5px;}

  /* Numbers + GF */
  .about-numbers__grid{grid-template-columns:1fr 1fr;gap:8px;}
  .about-number{padding:18px 14px;}
  .about-number__big{font-size:clamp(24px, 7vw, 32px);}
  .about-number__label{font-size:13px;}
  .about-number__note{font-size:10.5px;}
  .gf-grid{grid-template-columns:1fr;max-width:380px;gap:12px;}
  .gf-card{padding:24px 20px;}

  /* Values */
  .values__grid{grid-template-columns:1fr;gap:10px;}
  .value{padding:24px 20px;}
  .value h3{font-size:16px;}
  .value p{font-size:13.5px;}

  /* Process / Phasen */
  .phase{padding:64px 0;}
  .phase__grid{grid-template-columns:1fr;gap:18px;}
  .phase__meta{
    flex-direction:row;flex-wrap:wrap;gap:8px;
    padding-bottom:14px;border-bottom:1px solid rgba(14,14,14,.06);
  }
  .phase__num{font-size:11px;}
  .phase__time,.phase__deliverable{font-size:11px;}
  .phase__title{font-size:30px;}
  .phase__lead{font-size:15px;}
  .discovery,.archmap,.deployboard{padding:18px;border-radius:18px;}
  .archmap__svg{max-width:100%;height:auto;}
  .deployboard__metrics{grid-template-columns:repeat(2,1fr);}

  /* Portfolio */
  .portfolio-grid{grid-template-columns:1fr;gap:14px;}
  .portfolio-card{padding:20px 18px;min-height:auto;}
  .portfolio-card__title{font-size:18px;}
  .portfolio-card__desc{font-size:13px;}
  .portfolio-filters{
    gap:6px;flex-wrap:wrap;justify-content:flex-start;
    padding:0 4px;overflow-x:auto;-webkit-overflow-scrolling:touch;
  }
  .portfolio-filter{font-size:12.5px;padding:6px 12px;flex-shrink:0;}

  /* Live-Previews allgemein */
  .live-prev{padding:10px;font-size:11.5px;border-radius:10px;}
  .live-prev__label{font-size:9px;}
  .live-prev__btn{padding:7px 12px;font-size:11px;width:100%;text-align:center;}
  .live-prev__btn--ghost{width:100%;text-align:center;}
  .live-prev__panel{grid-template-columns:repeat(3,1fr);gap:4px;}
  .live-prev__kpi{padding:6px 4px;}
  .live-prev__kpi b{font-size:12px;}
  .live-prev__chips{gap:3px;}
  .live-prev__chip{font-size:9.5px;padding:3px 8px;}
  .live-prev__neon-stage{padding:14px 8px;}
  .live-prev__neon-text{font-size:18px;}
  .live-prev__neon-swatches > span{width:16px;height:16px;}
  .live-prev__farm-grid{grid-template-columns:repeat(8,1fr);gap:3px;}
  .live-prev__steps,
  .live-prev__funnel,
  .live-prev__queue,
  .live-prev__tix,
  .live-prev__notion{gap:3px;}
  .live-prev__step,
  .live-prev__funnel-row,
  .live-prev__queue-row,
  .live-prev__tix-row,
  .live-prev__notion-block{padding:6px 8px;font-size:11px;}
  .live-prev__pipe-stage b{font-size:15px;}
  .live-prev__pipe-stage i{font-size:8.5px;}
  .live-prev__shop{grid-template-columns:42px 1fr;gap:8px;}
  .live-prev__shop-btn{grid-column:1 / -1;margin-top:4px;}
  .live-prev__shop-name{font-size:11px;}
  .live-prev__gauge-num{padding:0;}
  .live-prev__gauge-cur{font-size:18px;}
  .live-prev__timer{font-size:24px;}
  .live-prev__chart{height:42px;}
  .live-prev__clip-stage{height:48px;}

  /* Buttons fullwidth */
  .btn{justify-content:center;width:100%;}
  .hero__cta-row{flex-direction:column;gap:10px;}

  /* CTA stripe (page-cta) */
  .page-cta{padding:64px 0;}
  .page-cta__title{font-size:clamp(26px, 7vw, 36px);}

  /* Marquee schmaler */
  .ref-marquee__track{gap:42px;animation-duration:22s;}
  .ref-logo{height:60px;min-width:100px;padding:0 6px;}
  .ref-logo img{height:42px;max-width:160px;}

  /* Footer */
  .footer__cta{padding:36px 0 28px;flex-direction:column;align-items:flex-start;gap:18px;}
  .footer__cta-text{max-width:none;}
  .footer__cta-num{font-size:10px;}
  .footer__cta-title{font-size:clamp(24px, 6vw, 32px);}
  .footer__cta-sub{font-size:13.5px;}
  .footer__cta-btn{padding:14px 22px;font-size:14px;width:100%;justify-content:center;}
  .footer__top{
    grid-template-columns:1fr 1fr;gap:24px;padding:32px 0 28px;
  }
  .footer__brand{grid-column:1 / -1;}
  .footer__brand p{font-size:13px;}
  .footer__location{padding:8px 12px;}
  .footer__location-flag{width:28px;height:18px;}
  .footer__location-meta b{font-size:12px;}
  .footer__location-meta i{font-size:9px;}
  .footer__head{font-size:9.5px;margin-bottom:10px;}
  .footer__col a{font-size:12.5px;}
  .footer__bottom{
    grid-template-columns:1fr;gap:8px;text-align:left;font-size:10.5px;
  }
  .footer__bottom-mid,
  .footer__bottom-right{text-align:left;}
  .footer__bottom-right{font-size:12.5px;}
  .footer__watermark::after{
    width:340px;height:340px;right:-90px;opacity:.05;
  }

  /* Header CTA hidden on mobile (Termin-Btn) */
  .header__cta{display:none;}

  /* Page-Hero Stats */
  .page-hero__stats{grid-template-columns:1fr 1fr;gap:8px;}

  /* Codewindow / Architektur kleinere Font */
  .codewindow{font-size:12px;border-radius:14px;}
  .codewindow pre{padding:14px;}

  /* Termin-Sektion */
  .termin{padding:64px 0;}
  .termin__card{padding:28px 22px;}

  /* Legal pages */
  .legal{padding:120px 18px 64px;}
  .legal h1{font-size:clamp(28px, 8vw, 44px);margin-bottom:32px;}
  .legal h2{font-size:18px;margin:28px 0 10px;}
  .legal h3{font-size:15px;}
  .legal p{font-size:14px;line-height:1.6;}

  /* Touch-Targets min 44px */
  a, button{min-height:auto;}
  .nav a, .footer__col a, .legal a{padding-block:6px;}
}

/* ====== SMALL MOBILE (bis 480px) ====== */
@media (max-width:480px){
  :root{--pad-x:14px;}

  .header{padding:8px 12px;}
  .brand__mark{width:38px;height:38px;}

  .hero h1{font-size:clamp(32px, 10vw, 48px);}
  .page-hero__title{font-size:clamp(28px, 10vw, 42px);}
  .page-hero__sub{font-size:14.5px;}
  .section-title{font-size:clamp(26px, 9vw, 36px);}
  .page-hero__chips{flex-direction:column;align-items:flex-start;gap:5px;}
  .page-hero__chip{width:auto;}

  /* Bento Card content size */
  .bento__card{padding:20px;}
  .bento__card h3{font-size:18px;}
  .bento__card p{font-size:13.5px;}

  /* About-Page */
  .about-page__h2{font-size:20px;}
  .about-page__lead{font-size:14.5px;}
  .about-page__col p{font-size:13.5px;}

  /* Numbers einspaltig */
  .about-numbers__grid{grid-template-columns:1fr;gap:8px;}
  .about-number{padding:16px 14px;}

  /* Timeline noch kompakter */
  .timeline__progress{left:34px;}
  .timeline__step{grid-template-columns:34px 16px 1fr;}
  .timeline__year{font-size:10px;}
  .timeline__card{padding:12px 14px;}
  .timeline__card h3{font-size:14px;}
  .timeline__card p{font-size:12px;}

  /* Phase */
  .phase__meta{gap:6px;}
  .phase__title{font-size:26px;}
  .phase__lead{font-size:14px;}

  /* Footer */
  .footer__top{grid-template-columns:1fr;gap:20px;}
  .footer__location{padding:7px 10px;}
  .footer__bottom{font-size:10px;}
  .footer__watermark::after{
    width:240px;height:240px;right:-50px;opacity:.04;
  }

  /* Live-Previews — sehr kompakt */
  .live-prev__panel{grid-template-columns:repeat(3,1fr);gap:3px;}
  .live-prev__kpi b{font-size:11px;}
  .live-prev__kpi i{font-size:8px;}
  .live-prev__farm-grid{padding:6px;}

  /* Buttons full width */
  .btn--primary{width:100%;justify-content:center;}

  /* Hero subline */
  .hero p{font-size:14.5px;}
}

/* ====== ULTRA-SMALL (bis 380px) — kleine Phones ====== */
@media (max-width:380px){
  :root{--pad-x:12px;}
  .page-hero__title{font-size:30px;}
  .section-title{font-size:24px;}
  .timeline__step{grid-template-columns:0 12px 1fr;}
  .timeline__year{display:none;}
  .timeline__progress{left:6px;}
  .live-prev__farm-grid{grid-template-columns:repeat(6,1fr);}
}

/* ====== LANDSCAPE-MOBILE FIX ====== */
@media (max-height:500px) and (orientation:landscape){
  .preloader__logo{width:clamp(70px,14vh,120px);}
  .hero{padding-top:100px;padding-bottom:40px;}
}

/* =========================================================
   SPRACH-SWITCHER (Header)
========================================================= */
.lang-switch{
  display:inline-flex;align-items:center;gap:0;
  padding:3px;border-radius:999px;
  background:rgba(14,14,14,.05);
  border:1px solid rgba(14,14,14,.04);
}
.lang-switch__btn{
  font-family:var(--f-mono);font-size:11.5px;font-weight:600;letter-spacing:.06em;
  padding:5px 11px;border-radius:999px;
  color:var(--muted);cursor:pointer;
  transition:background .2s ease, color .2s ease;
  min-width:30px;
  text-transform:uppercase;
}
.lang-switch__btn.is-active{
  background:var(--text);color:var(--bg);
}
.lang-switch__btn:not(.is-active):hover{color:var(--text);}

.lang-toast{
  position:fixed;bottom:30px;left:50%;transform:translateX(-50%) translateY(20px);
  background:var(--text);color:var(--bg);
  padding:14px 22px;border-radius:999px;
  font-size:13.5px;font-weight:500;
  box-shadow:0 14px 36px -8px rgba(14,14,14,.32);
  opacity:0;visibility:hidden;
  transition:opacity .3s ease, transform .3s ease, visibility .3s ease;
  z-index:9000;
  display:inline-flex;align-items:center;gap:8px;
}
.lang-toast.is-visible{
  opacity:1;visibility:visible;
  transform:translateX(-50%) translateY(0);
}
.lang-toast::before{
  content:"EN";font-family:var(--f-mono);font-size:10px;letter-spacing:.1em;
  padding:3px 7px;border-radius:999px;background:rgba(255,255,255,.12);
}

@media (max-width:760px){
  .lang-switch{margin-right:4px;}
  .lang-switch__btn{padding:4px 8px;font-size:10.5px;min-width:26px;}
}
