:root{
    --gelb:#FFC400;
    --bg:#111111;
    --bg-tief:#0c0c0c;
    --bg-hoch:#1a1a1a;
    --text:#FFFFFF;
    --text-leise:rgba(255,255,255,.62);
    --text-still:rgba(255,255,255,.42);
    --linie:rgba(255,255,255,.09);
    --flaeche:rgba(255,255,255,.04);
    --max:1400px;
}

/* inter-300 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/inter-v20-latin_latin-ext-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-regular - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-600 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/inter-v20-latin_latin-ext-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-700 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/inter-v20-latin_latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* space-grotesk-regular - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/space-grotesk-v22-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* space-grotesk-500 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/space-grotesk-v22-latin_latin-ext-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* space-grotesk-600 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/space-grotesk-v22-latin_latin-ext-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
    background:var(--bg);
    background-image:radial-gradient(115% 80% at 18% -10%, #1e1e1e 0%, #141414 45%, var(--bg-tief) 100%);
    color:var(--text);
    font-family:"Inter",system-ui,sans-serif;
    font-size:16px;
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
}
h1,h2,h3,.mono{
    font-family: 'Space Grotesk';
}
a{color:inherit;text-decoration:none}
:focus-visible{outline:2px solid var(--gelb);outline-offset:3px;border-radius:3px}
.wrap{max-width:var(--max);margin:0 auto;padding:0 28px}

/* schwebende Pixel */
#pixelfeld{position:fixed;inset:0;z-index:0;pointer-events:none;overflow:hidden}
.pixel{position:absolute;background:var(--gelb);will-change:transform,opacity;animation:schweben linear infinite}
@keyframes schweben{
    0%{transform:translate3d(0,0,0);opacity:0}
    12%{opacity:var(--o)}
    88%{opacity:var(--o)}
    100%{transform:translate3d(var(--dx),var(--dy),0);opacity:0}
}
main,header,footer{position:relative;z-index:1}
.text-left, .text-left p { text-align: left; margin-left: 0 !important; max-width: 100% !important; margin-right: 0 !important;  }

/* Kopf */
header{ border-bottom: 2px solid #ffc400;;backdrop-filter:blur(6px);position:sticky;top:0;background:#FFFFFF;z-index:5}
.kopf{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:16px 0}
.logo{height:100px;width:auto;display:block}
nav{display:flex;gap:26px;font-size:14px;color:var(--bg-hoch)}
nav a{transition:color .2s}
nav a:hover{color:var(--gelb)}

/* Hero */
.hero{padding:25px 25px 20px;text-align:center}
.eyebrow{font-size:12px;letter-spacing:2.6px;color:var(--gelb);text-transform:uppercase;margin-bottom:22px}
.hero h1{font-size:clamp(34px,6vw,58px);font-weight:500;line-height:1.12;letter-spacing:-.5px;margin-bottom:20px}
.hero h1 em{font-style:normal;color:var(--gelb)}
.hero p{font-size:17px;color:var(--text-leise);max-width:480px;margin:0 auto 34px}
.knopfreihe{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.knopf{display:inline-block;font-size:15px;font-weight:500;padding:13px 24px;border-radius:8px;transition:transform .18s,background .18s,border-color .18s}
.knopf-gelb{background:var(--gelb);color:#3a2600}
.knopf-gelb:hover{transform:translateY(-2px);background:#ffd23f}
.knopf-rand{border:.5px solid rgba(255,255,255,.3)}
.knopf-rand:hover{border-color:var(--gelb);color:var(--gelb)}

/* Leistungen */
section{padding:72px 0}
.titel{font-size:13px;letter-spacing:2px;color:var(--text-still);text-transform:uppercase;margin-bottom:28px}
.raster{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px}
.kachel{
    background:var(--flaeche);border-radius:14px;padding:26px 24px 15px 24px;border:.5px solid transparent;transition:border-color .25s,background .25s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.kachel:hover{border-color:rgba(255,196,0,.35);background:rgba(255,255,255,.06)}
.kachel h3{font-size:17px;font-weight:500;margin:5px 0 8px}
.kachel p{font-size:14px;color:var(--text-leise);line-height:1.65}
.kachel .media { margin-top: auto; padding-top: 1em; }
.media video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.media img {
    width: 100%;
    height: auto;
}

.marke img {
    max-width: 25px;
}

#arbeiten, #kontakt {
    margin-top: 2em;
    margin-bottom: 2em;
}
#kontakt a {
    text-decoration: none;
}

/* Verweis */
.verweis{background:var(--flaeche);border-radius:16px;padding:40px 36px;display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.verweis h2{font-size:24px;font-weight:500;margin-bottom:8px}
.verweis p{font-size:15px;color:var(--text-leise);max-width:460px}

/* Kontakt */
.kontakt{text-align:center}
.kontakt a.mail{font-family:"Space Grotesk",sans-serif;font-size:clamp(22px,4vw,34px);color:var(--gelb);border-bottom:1px solid #0c0c0c;padding-bottom:4px}
.kontakt a.mail:hover{border-bottom-color:var(--gelb)}

footer{border-top:.5px solid var(--linie);padding:26px 0;font-size:13px;color:var(--text-still)}
.fuss{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap}
.fuss a:hover{color:var(--gelb)}

@media (max-width:640px){
    nav{display:none}
    .hero{padding:72px 25px 60px}
    section{padding:52px 0}
    .verweis{padding:30px 24px}
}
@media (max-width:1100px){
    .logo {
        margin: 0 2em;
    }
}
@media (min-width:1400px){
    .hero{padding:104px 0 88px;text-align:center}
}
@media (prefers-reduced-motion:reduce){
    .pixel{animation:none;opacity:var(--o)}
    *{scroll-behavior:auto;transition:none!important}
}