@font-face {
    font-family: "Manrope Lokal";
    src: url("../schriften/manrope-latein.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 200 800;
}

@font-face {
    font-family: "Space Grotesk Lokal";
    src: url("../schriften/space-grotesk-latein.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 300 700;
}

:root {
    --farbe-nacht: #0a1926;
    --farbe-nacht-hell: #142b3c;
    --farbe-cyan: #56e6da;
    --farbe-koralle: #ff795d;
    --farbe-papier: #f4f3ef;
    --farbe-weiss: #ffffff;
    --farbe-grau: #667078;
    --farbe-linie: rgba(10, 25, 38, 0.17);
    --schrift-anzeige: "Space Grotesk Lokal", "Avenir Next", sans-serif;
    --schrift-text: "Manrope Lokal", "Avenir Next", sans-serif;
    --rahmen: min(100% - 48px, 1340px);
    --abstand-abschnitt: clamp(88px, 10vw, 168px);
    --ecke: 6px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--farbe-nacht);
    background: var(--farbe-papier);
    font-family: var(--schrift-text);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

body.menue-offen {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--farbe-koralle);
    outline-offset: 4px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--schrift-anzeige);
    font-weight: 550;
    line-height: 0.98;
    letter-spacing: 0;
}

h1 {
    max-width: 840px;
    margin-bottom: 32px;
    font-size: clamp(4rem, 8.3vw, 8.5rem);
}

h2 {
    margin-bottom: 40px;
    font-size: clamp(2.65rem, 5.2vw, 5.5rem);
}

h3 {
    font-size: clamp(1.5rem, 2vw, 2.25rem);
}

.rahmen {
    width: var(--rahmen);
    margin-inline: auto;
}

.abschnitt {
    padding-block: var(--abstand-abschnitt);
}

.sprungmarke {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--farbe-weiss);
    background: var(--farbe-nacht);
    transform: translateY(-160%);
}

.sprungmarke:focus {
    transform: translateY(0);
}

.seitenkopf {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--farbe-weiss);
}

.seitenkopf__innen {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 108px;
}

.marke {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
}

.marke__zeichen {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: var(--farbe-cyan);
    font-family: var(--schrift-anzeige);
    font-size: 28px;
}

.marke__name {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.08;
    text-transform: uppercase;
}

.hauptnavigation {
    display: flex;
    align-items: center;
    gap: clamp(22px, 2.6vw, 44px);
    font-size: 14px;
    font-weight: 650;
}

.hauptnavigation > a:not(.schaltflaeche) {
    transition: color 180ms ease;
}

.hauptnavigation > a:not(.schaltflaeche):hover {
    color: var(--farbe-cyan);
}

.menueschalter {
    display: none;
}

.schaltflaeche {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border: 1px solid var(--farbe-cyan);
    border-radius: var(--ecke);
    color: var(--farbe-nacht);
    background: var(--farbe-cyan);
    font-size: 14px;
    font-weight: 750;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.schaltflaeche:hover {
    color: var(--farbe-weiss);
    background: transparent;
    transform: translateY(-2px);
}

.schaltflaeche--klein {
    min-height: 46px;
    padding-inline: 20px;
}

.schaltflaeche--dunkel {
    border-color: var(--farbe-nacht);
    color: var(--farbe-weiss);
    background: var(--farbe-nacht);
}

.schaltflaeche--dunkel:hover {
    color: var(--farbe-nacht);
    background: transparent;
}

.textlink {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-block: 8px;
    border-bottom: 1px solid currentColor;
    font-size: 14px;
    font-weight: 700;
}

.textlink span {
    color: var(--farbe-koralle);
}

.kennzeichnung,
.abschnittsnummer {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.kennzeichnung {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: var(--farbe-cyan);
}

.kennzeichnung span {
    width: 36px;
    height: 1px;
    background: currentColor;
}

.abschnittsnummer {
    color: var(--farbe-koralle);
}

.einstieg {
    position: relative;
    display: flex;
    min-height: min(900px, 100svh);
    flex-direction: column;
    overflow: hidden;
    color: var(--farbe-weiss);
    background: var(--farbe-nacht);
}

.einstieg::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    mask-image: linear-gradient(to right, transparent, black 35%);
}

.einstieg__inhalt {
    position: relative;
    display: grid;
    flex: 1;
    align-items: center;
    padding-top: 130px;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
}

.einstieg__text {
    position: relative;
    z-index: 2;
}

.einstieg__beschreibung {
    max-width: 690px;
    margin-bottom: 42px;
    color: rgba(255,255,255,.75);
    font-size: clamp(1.1rem, 1.55vw, 1.4rem);
}

.einstieg__aktionen {
    display: flex;
    align-items: center;
    gap: 32px;
}

.einstieg__fuss {
    position: relative;
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.54);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.einstieg__fuss p {
    margin: 0;
}

.einstieg__fuss span {
    margin-inline: 10px;
    color: var(--farbe-cyan);
}

.alpha-bild {
    position: relative;
    width: min(42vw, 560px);
    aspect-ratio: 1;
    justify-self: end;
}

.alpha-bild::before,
.alpha-bild::after {
    position: absolute;
    border: 1px solid rgba(86,230,218,.28);
    border-radius: 50%;
    content: "";
}

.alpha-bild::before {
    inset: 6%;
}

.alpha-bild::after {
    inset: 22%;
}

.alpha-bild__zeichen {
    position: absolute;
    z-index: 2;
    inset: 50% auto auto 50%;
    color: var(--farbe-cyan);
    font-family: var(--schrift-anzeige);
    font-size: clamp(12rem, 24vw, 24rem);
    font-weight: 300;
    line-height: .8;
    text-shadow: 20px 28px 0 rgba(255,121,93,.12);
    transform: translate(-50%, -50%);
}

.alpha-bild__punkt {
    position: absolute;
    z-index: 3;
    width: 11px;
    height: 11px;
    border: 3px solid var(--farbe-nacht);
    border-radius: 50%;
    background: var(--farbe-koralle);
    box-shadow: 0 0 0 1px var(--farbe-koralle);
}

.alpha-bild__punkt--eins { top: 8%; left: 48%; }
.alpha-bild__punkt--zwei { right: 11%; bottom: 28%; }
.alpha-bild__punkt--drei { bottom: 18%; left: 13%; background: var(--farbe-cyan); box-shadow: 0 0 0 1px var(--farbe-cyan); }

.alpha-bild__bahn {
    position: absolute;
    width: 42%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--farbe-koralle));
    transform-origin: right center;
}

.alpha-bild__bahn--eins { top: 28%; right: 2%; transform: rotate(-28deg); }
.alpha-bild__bahn--zwei { bottom: 23%; left: 2%; transform: rotate(22deg); }

.einstieg__linien span {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(86,230,218,.5), transparent);
    transform: rotate(-28deg);
}

.einstieg__linien span:nth-child(1) { top: 32%; right: -7%; width: 37%; }
.einstieg__linien span:nth-child(2) { top: 43%; right: -4%; width: 30%; }
.einstieg__linien span:nth-child(3) { bottom: 24%; right: 2%; width: 24%; }
.einstieg__linien span:nth-child(4) { bottom: 16%; right: -2%; width: 38%; }

.zweispaltig {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(0, 3fr);
    gap: 60px;
}

.zweispaltig > div {
    max-width: 930px;
}

.grosser-text {
    margin-bottom: 0;
    color: #3e4a52;
    font-size: clamp(1.25rem, 2.1vw, 2rem);
    line-height: 1.45;
}

.leistungen {
    color: var(--farbe-weiss);
    background: var(--farbe-nacht);
}

.abschnittskopf {
    display: grid;
    align-items: end;
    margin-bottom: 72px;
    grid-template-columns: minmax(0, 2fr) minmax(260px, .65fr);
    gap: 60px;
}

.abschnittskopf h2 {
    margin-bottom: 0;
}

.abschnittskopf > p {
    margin-bottom: 8px;
    color: rgba(255,255,255,.64);
}

.leistungsliste {
    border-top: 1px solid rgba(255,255,255,.2);
}

.leistung {
    display: grid;
    min-height: 168px;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.2);
    grid-template-columns: .35fr 1.2fr 1.6fr auto;
    gap: 32px;
}

.leistung__nummer {
    color: var(--farbe-cyan);
    font-size: 12px;
    font-weight: 750;
}

.leistung h3,
.leistung p {
    margin-bottom: 0;
}

.leistung p {
    max-width: 550px;
    color: rgba(255,255,255,.62);
}

.leistung__pfeil {
    color: var(--farbe-koralle);
    font-size: 30px;
}

.vorgehen {
    background: var(--farbe-weiss);
}

.vorgehen__kopf {
    display: grid;
    align-items: end;
    grid-template-columns: 2fr 1fr;
    gap: 70px;
}

.vorgehen__kopf h2 {
    max-width: 900px;
}

.vorgehen__kopf p {
    margin-bottom: 46px;
    color: var(--farbe-grau);
}

.prozessliste {
    display: grid;
    margin: 40px 0 0;
    padding: 0;
    border-top: 1px solid var(--farbe-linie);
    list-style: none;
    grid-template-columns: repeat(4, 1fr);
}

.prozessliste li {
    position: relative;
    min-height: 300px;
    padding: 34px 28px;
    border-right: 1px solid var(--farbe-linie);
}

.prozessliste li:last-child {
    border-right: 0;
}

.prozessliste li::before {
    position: absolute;
    top: -5px;
    left: -1px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--farbe-koralle);
    content: "";
}

.prozessliste__nummer {
    display: block;
    margin-bottom: 100px;
    color: var(--farbe-grau);
    font-size: 12px;
}

.prozessliste h3 {
    margin-bottom: 16px;
}

.prozessliste p {
    color: var(--farbe-grau);
    font-size: 14px;
}

.referenzen {
    color: var(--farbe-weiss);
    background: var(--farbe-nacht-hell);
}

.referenzen__raster {
    display: grid;
    align-items: center;
    grid-template-columns: 1.15fr .85fr;
    gap: 8vw;
}

.referenzen h2 {
    margin-bottom: 0;
}

.referenzen__hinweis {
    position: relative;
    display: flex;
    min-height: 380px;
    align-items: flex-end;
    overflow: hidden;
    padding: 42px;
    border: 1px solid rgba(86,230,218,.32);
    background: linear-gradient(145deg, rgba(86,230,218,.07), rgba(255,121,93,.08));
}

.referenzen__hinweis p {
    position: relative;
    z-index: 2;
    max-width: 430px;
    margin-bottom: 0;
}

.referenzen__alpha {
    position: absolute;
    top: -50px;
    right: -20px;
    color: rgba(86,230,218,.13);
    font-family: var(--schrift-anzeige);
    font-size: 330px;
    line-height: 1;
}

.agentur .textlink {
    margin-top: 40px;
}

.unterseite-kopf {
    position: relative;
    display: flex;
    min-height: 690px;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
    padding: 180px 0 100px;
    color: var(--farbe-weiss);
    background-color: var(--farbe-nacht);
    background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 72px 72px;
}

.unterseite-kopf.unterseite-kopf--leistungen {
    min-height: 100vh;
    min-height: 100svh;
    background-image: none;
}

.leistungsfarben {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    background: #0a1926;
    pointer-events: none;
}

.leistungsfarben__canvas,
.leistungsfarben__fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.leistungsfarben__canvas {
    display: block;
    opacity: 0;
    transition: opacity .4s ease;
}

.leistungsfarben__fallback {
    background:
        radial-gradient(ellipse at 78% 20%, rgba(255, 121, 93, .58), transparent 56%),
        radial-gradient(ellipse at 55% 82%, rgba(86, 230, 218, .52), transparent 62%),
        linear-gradient(112deg, #061522 0%, #103b46 52%, #3a2031 100%);
    transition: opacity .4s ease;
}

.leistungsfarben.ist-aktiv .leistungsfarben__canvas {
    opacity: 1;
}

.leistungsfarben.ist-aktiv .leistungsfarben__fallback {
    opacity: 0;
}

.unterseite-kopf__inhalt {
    position: relative;
    z-index: 2;
}

.unterseite-kopf--leistungen .kennzeichnung {
    color: var(--farbe-weiss);
}

.unterseite-kopf--leistungen .kennzeichnung span {
    background: var(--farbe-koralle);
}

.unterseite-kopf__inhalt h1 {
    max-width: 1120px;
    font-size: clamp(4rem, 7.2vw, 7.5rem);
}

.unterseite-kopf__inhalt > p:last-child {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255,255,255,.7);
    font-size: clamp(1.1rem, 1.55vw, 1.4rem);
}

.unterseite-aktion {
    margin-top: 40px;
}

.karriere-kontakt {
    color: var(--farbe-weiss);
    background: var(--farbe-nacht-hell);
}

.karriere-kontakt__raster {
    display: grid;
    align-items: end;
    grid-template-columns: 1.2fr .8fr;
    gap: 8vw;
}

.karriere-kontakt h2 {
    margin-bottom: 0;
}

.karriere-kontakt__raster > div:last-child p {
    margin-bottom: 32px;
    color: rgba(255,255,255,.68);
}

.rechtstext {
    max-width: 860px;
    padding-top: 130px;
}

.rechtstext h1 {
    margin-bottom: 70px;
}

.rechtstext h2 {
    margin-top: 72px;
    margin-bottom: 22px;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.1;
}

.rechtstext h3 {
    margin-top: 36px;
    margin-bottom: 12px;
    font-size: 1.25rem;
    line-height: 1.25;
}

.rechtstext p,
.rechtstext li {
    color: #3e4a52;
}

.rechtstext a:not(.schaltflaeche) {
    text-decoration: underline;
    text-decoration-color: var(--farbe-koralle);
    text-underline-offset: 3px;
}

.rechtstext__zurueck {
    margin-top: 72px;
}

.kontaktband {
    color: var(--farbe-nacht);
    background: var(--farbe-cyan);
}

.kontaktband__innen {
    position: relative;
    padding-block: clamp(88px, 9vw, 145px);
}

.kontaktband .kennzeichnung {
    color: var(--farbe-nacht);
}

.kontaktband h2 {
    max-width: 970px;
    margin-bottom: 48px;
}

.seitenfuss {
    padding-top: 85px;
    color: rgba(255,255,255,.72);
    background: var(--farbe-nacht);
}

.seitenfuss__raster {
    display: grid;
    padding-bottom: 80px;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.marke--hell {
    color: var(--farbe-weiss);
}

.seitenfuss__claim {
    margin: 30px 0 0;
    color: var(--farbe-weiss);
    font-family: var(--schrift-anzeige);
    font-size: 22px;
}

.seitenfuss__titel {
    margin-bottom: 18px;
    color: var(--farbe-cyan);
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
}

.seitenfuss__raster > div:nth-child(2) a {
    display: block;
    margin-bottom: 5px;
}

.seitenfuss address {
    font-style: normal;
}

.seitenfuss__abschluss {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.14);
    font-size: 11px;
}

.seitenfuss__abschluss div {
    display: flex;
    gap: 28px;
}

[data-einblenden] {
    transition: opacity 650ms ease, transform 650ms ease;
}

.js [data-einblenden]:not(.ist-sichtbar) {
    opacity: 0;
    transform: translateY(28px);
}

@media (max-width: 940px) {
    :root { --rahmen: min(100% - 36px, 880px); }

    .menueschalter {
        position: relative;
        z-index: 22;
        display: flex;
        align-items: center;
        gap: 12px;
        border: 0;
        color: inherit;
        background: transparent;
        font: inherit;
    }

    .menueschalter__linien,
    .menueschalter__linien::before {
        display: block;
        width: 24px;
        height: 1px;
        background: currentColor;
        content: "";
        transition: transform 180ms ease;
    }

    .menueschalter__linien::before { transform: translateY(7px); }
    .menue-offen .menueschalter__linien { transform: rotate(45deg); }
    .menue-offen .menueschalter__linien::before { transform: rotate(-90deg); }

    .hauptnavigation {
        position: fixed;
        z-index: 21;
        inset: 0;
        display: flex;
        visibility: hidden;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 90px 10vw;
        background: var(--farbe-nacht);
        font-family: var(--schrift-anzeige);
        font-size: clamp(2rem, 8vw, 4rem);
        opacity: 0;
        transition: opacity 180ms ease, visibility 180ms ease;
    }

    .menue-offen .hauptnavigation { visibility: visible; opacity: 1; }
    .hauptnavigation .schaltflaeche { margin-top: 10px; font-family: var(--schrift-text); font-size: 14px; }

    .einstieg { min-height: 880px; }
    .einstieg__inhalt { grid-template-columns: 1fr; }
    .alpha-bild { position: absolute; right: -18%; bottom: -2%; width: min(75vw, 560px); opacity: .54; }
    .einstieg__text { align-self: center; }

    .abschnittskopf,
    .vorgehen__kopf,
    .karriere-kontakt__raster { grid-template-columns: 1fr; }
    .abschnittskopf > p,
    .vorgehen__kopf p { max-width: 650px; margin-bottom: 0; }
    .leistung { grid-template-columns: .25fr 1fr 1.2fr auto; }
    .prozessliste { grid-template-columns: repeat(2, 1fr); }
    .prozessliste li:nth-child(2) { border-right: 0; }
    .prozessliste li:nth-child(-n+2) { border-bottom: 1px solid var(--farbe-linie); }
    .referenzen__raster { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    :root { --rahmen: min(100% - 28px, 600px); --abstand-abschnitt: 80px; }
    h1 { font-size: 3.65rem; }
    h2 { font-size: 2.45rem; }
    .seitenkopf__innen { min-height: 88px; }
    .marke__zeichen { width: 42px; height: 42px; }
    .einstieg { min-height: 790px; }
    .unterseite-kopf { min-height: 620px; padding: 140px 0 72px; }
    .unterseite-kopf__inhalt h1 { font-size: 2.625rem; }
    .einstieg__inhalt { padding-top: 110px; }
    .einstieg__beschreibung { max-width: 96%; }
    .einstieg__aktionen { align-items: flex-start; flex-direction: column; gap: 16px; }
    .einstieg__fuss { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; }
    .alpha-bild { right: -37%; bottom: 1%; width: 88vw; }
    .zweispaltig { grid-template-columns: 1fr; gap: 25px; }
    .abschnittskopf { gap: 30px; margin-bottom: 50px; }
    .leistung { min-height: auto; padding-block: 30px; grid-template-columns: 42px 1fr auto; gap: 14px; }
    .leistung p { grid-column: 2 / -1; }
    .leistung__pfeil { grid-column: 3; grid-row: 1; }
    .prozessliste { grid-template-columns: 1fr; }
    .prozessliste li { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--farbe-linie); }
    .prozessliste li:nth-child(3) { border-bottom: 1px solid var(--farbe-linie); }
    .prozessliste__nummer { margin-bottom: 55px; }
    .referenzen__hinweis { min-height: 330px; padding: 28px; }
    .rechtstext { padding-top: 80px; }
    .seitenfuss__raster { grid-template-columns: 1fr; gap: 42px; }
    .seitenfuss__abschluss { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
