@font-face {
    font-family: 'Century Gothic';
    font-style: normal;
    src: url('../fonts/GOTHIC.woff') format('woff');
}
.headline {
    font-family: 'Century Gothic', serif;
    margin: auto 20px;
    text-align: center;
    color: #FFFFFF;
}
.logostyle {
    height: 0;
    margin-bottom: 20px;
    width: 100%;
    border-top: 0 solid transparent;
    border-left: 0 solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 25px solid #000;
    border-radius: 50px 0 0 50px;
}

.logo {
    width: 100px;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo svg {
    max-width: 100%;
    height: auto;
    display: block;
}

path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 5s linear forwards;
}
@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

html{
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
}

body{
    margin: 0;
    background: #000; /* neutrale Basis für alle weiteren Sections */
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* dunkles Overlay */
    z-index: -1;
}

.container {
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;    /* horizontal zentrieren */
    justify-content: center; /* vertikal zentrieren */
    gap: 1rem;              /* Abstand zwischen Logo und Überschrift */
    text-align: center;
    padding: 1rem;
}

.logo-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
}

.headline {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
}

/* HERO TEXT */
.hero-claim span {
    display: inline-block;
    color: var(--text-primary);
    font-family: 'Century Gothic', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    line-height: 1.4;
    padding: .35rem .55rem;
    border-radius: .75rem;
    border: 1px solid var(--accent-warm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: inline-block;
    font-family: 'Century Gothic', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: rgba(255,255,255,.92);
    font-size: clamp(1.05rem, 2.2vw, 1.4rem);
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: .35rem .75rem;
}

.hero-sub span,
.section__sub {
    display: inline-block;
    font-family: 'Century Gothic', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: rgba(255,255,255,.85);
    font-size: clamp(1rem, 2vw, 1.2rem);
    letter-spacing: .02em;
    line-height: 1.4;
    max-width: 52ch;
    padding: .25rem .5rem;
    text-shadow: 0 10px 40px rgba(0,0,0,.6);
}

.headline{
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    letter-spacing: .14em;
    text-transform: uppercase;
    text-shadow: 0 12px 55px rgba(0,0,0,.65);
}

/* optional: dezente “Trennlinie” unter dem Claim */
.hero-claim span::after {
    display: block;
    height: 2px;
    margin: .55rem auto 0;
    width: clamp(70px, 18vw, 140px);
    background: rgba(255,255,255,.35);
    /* border-radius: 2px; */
}

/* mobile: etwas weniger Tracking beim Claim */
@media (max-width: 520px){
    .hero-claim span{ letter-spacing: .12em; }
}

/* ---------- Minimal Theme (background-driven) ---------- */
:root{
    --bg-dark: #1b1e26;
    --surface: #242836;
    --bg-soft: #2f3445;
    --text-primary: #e6e8ef;
    --text-muted: #aeb3c2;
    --accent-warm: #c06b4a;
    --accent-cool: #8fa6c9;

}

.hero, .usp, .about{
    /*width: min(980px, 92vw);*/
    margin: 0 auto;
}

/* ---------- HERO ---------- */
.hero{
    padding: clamp(2.2rem, 6vw, 4.2rem) 0 1.2rem;
}

.hero__inner{
    display: grid;
    gap: .95rem;
    align-items: start;
}

.hero__kicker span{
    display: inline-block;
    font-family: 'Century Gothic', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text-muted);
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: clamp(.9rem, 1.8vw, 1.05rem);
    padding: .35rem .75rem;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--surface);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero__title{
    margin: 0;
    font-family: 'Century Gothic', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: clamp(1.9rem, 4.8vw, 3rem);
    line-height: 1.05;
    text-shadow: 0 14px 60px rgba(0,0,0,.65);
}

.hero__lead span{
    display: inline-block;
    color: var(--text-primary);
    font-family: 'Century Gothic', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    line-height: 1.4;
    padding: .35rem .55rem;
    border-radius: .75rem;
    background: var(--surface);
    border: 1px solid var(--accent-cool);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero__microcopy{
    margin: .1rem 0 .6rem;
    max-width: 60ch;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.55;
}

.hero__actions{
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Century Gothic', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    letter-spacing: .04em;
    font-size: .95rem;
    border: 1px solid var(--accent-cool);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn--primary{
    color: rgba(0,0,0,.92);
    background: var(--accent-cool);
    border-color: rgba(255,255,255,.25);
}

.btn--ghost{
    color: var(--text-primary);
    background: var(--surface);
}

.hero__meta{
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
    color: var(--text-muted);
    font-size: .92rem;
    padding-top: .35rem;
}

.dot{
    opacity: .65;
}

/* ---------- USP ---------- */
.usp{
    padding: clamp(2.2rem, 5vw, 3.2rem) 0;
}

.section__title{
    margin: 0 0 .4rem;
    color: var(--text-primary);
    font-family: 'Century Gothic', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(1.2rem, 2.6vw, 1.6rem);
    letter-spacing: .06em;
}

.section__sub{
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    max-width: 68ch;
    line-height: 1.6;
}

.usp__grid{
    display: grid;
    gap: .9rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card{
    border-radius: 1.25rem;
    padding: 1.05rem 1.05rem 1rem;
    background: var(--surface);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.card__title{
    margin: 0 0 .4rem;
    color: var(--text-primary);
    font-family: 'Century Gothic', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 600;
    letter-spacing: .04em;
}

.card__text{
    margin: 0 0 .7rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.card__micro{
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: .9rem;
    letter-spacing: .02em;
}

/* ---------- ABOUT ---------- */
.about{
    padding: clamp(1.6rem, 4vw, 2.6rem) 0 3.2rem;
    background: var(--accent-warm);
}

.about__title{
    margin: 0 0 .6rem;
    color: var(--text-primary);
    font-family: 'Century Gothic', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(1.25rem, 2.8vw, 1.75rem);
    letter-spacing: .04em;
    max-width: 60ch;
}

.about__story{
    margin: 0 0 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 72ch;
}

.about__facts{
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    color: rgba(255,255,255,.68);
    font-size: .92rem;
    padding: .75rem .9rem;
    border-radius: 1rem;
    background: var(--accent-warm);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
    .usp__grid{ grid-template-columns: 1fr; }
}

/* ---------- SINGLE USP CARD ---------- */

.usp-card {
    margin-top: 1.2rem;
    padding: clamp(1.4rem, 3.2vw, 2rem);
    border-radius: 1.75rem;
    background: var(--surface);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.usp-card__claim{
    margin: 0 0 .85rem;
    color: var(--text-primary);
    font-family: 'Century Gothic', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: clamp(1.15rem, 2.6vw, 1.55rem);
    line-height: 1.35;
    letter-spacing: .03em;
}

.usp-card__claim strong{
    font-weight: 600;
    color: var(--accent-warm);
}

.usp-card__text{
    margin: 0 0 1rem;
    max-width: 68ch;
    color: var(--text-muted);
    line-height: 1.65;
}

.usp-card__meta{
    font-family: "Century Gothic";
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
    font-size: .92rem;
    color: rgba(255,255,255,.7);
    padding-top: .4rem;
}

.hero-section{
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Parallax */
    background-image: url("../images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 0;
}

.hero-section .container{
    position: relative;
    z-index: 1;
}

.scroll-indicator{
    cursor: pointer;
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.scroll-arrow{
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255,255,255,.85);
    border-bottom: 2px solid rgba(255,255,255,.85);
    transform: rotate(45deg);
    margin-top: -2px;
}

.scroll-indicator:focus-visible{
    outline: 2px solid rgba(255,255,255,.75);
    outline-offset: 4px;
}

@keyframes scrollHint{
    0%,100%{ transform: translate(-50%, 0); }
    50%{ transform: translate(-50%, 6px); }
}

.scroll-indicator{
    animation: scrollHint 2.2s ease-in-out infinite;
}

body {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.card, .usp-card {
    background: var(--surface);
}

.section-alt {
    background: var(--bg-soft);
}

button.primary {
    background: var(--accent-warm);
    color: #111;
}

a, .link {
    color: var(--accent-cool);
}

.text-muted {
    color: var(--text-muted);
}

.monitor-layer{
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Basis für alle Monitore */
.monitor{
    position: absolute;
    background: #000;
    border-radius: 2px;
    overflow: hidden;
    opacity: .85;
}

/* Vorderer linker Monitor (Code) */
.monitor--code{
    left: 12%;
    top: 52%;
    width: 9%;
    height: 8%;
}

/* Weitere Monitore (nur Flackern) */
.monitor--flicker:nth-child(2){
    left: 22%;
    top: 48%;
    width: 7%;
    height: 6%;
}

.monitor--flicker:nth-child(3){
    left: 62%;
    top: 50%;
    width: 7%;
    height: 6%;
}

.monitor--flicker:nth-child(4){
    left: 72%;
    top: 47%;
    width: 7%;
    height: 6%;
}

.monitor--code::before{
    content: "0101010011010100110100100101010100101010100101010010101";
    position: absolute;
    inset: 0;
    font-family: monospace;
    font-size: 10px;
    line-height: 1.2;
    color: #3cff6a;
    opacity: .85;
    white-space: pre-wrap;
    animation: codeScroll 6s linear infinite;
}

@keyframes codeScroll{
    from { transform: translateY(100%); }
    to   { transform: translateY(-100%); }
}

@keyframes flicker{
    0%,100%{ opacity: .85; }
    50%{ opacity: .65; }
}

.monitor--flicker{
    animation: flicker 3.5s infinite;
}

.monitor--flicker:nth-child(2){ animation-duration: 4.2s; }
.monitor--flicker:nth-child(3){ animation-duration: 3.1s; }
.monitor--flicker:nth-child(4){ animation-duration: 5.1s; }

@media (prefers-reduced-motion: reduce){
    .monitor::before,
    .monitor{
        animation: none !important;
    }
}

/* =========================
   DEBUG OVERLAY (toggleable)
   ========================= */
.hero-section{
    position: relative;
}

/* Standard: aus */
.debug-layer{
    display: none;
    position: absolute;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}

.debug-grid{
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: .35;
}

.debug-crosshair{
    position: absolute;
    inset: 0;
}
.debug-crosshair::before,
.debug-crosshair::after{
    content:"";
    position: absolute;
    background: rgba(255,255,255,.25);
}
.debug-crosshair::before{
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
}
.debug-crosshair::after{
    height: 1px;
    width: 100%;
    top: 50%;
    left: 0;
}

/* Wenn Debug aktiv ist */
body.debug .debug-layer{
    display: block;
}

/* Optional: Grid separat toggeln */
body.no-grid .debug-grid{
    display: none;
}

/* =========================
   MONITOR DEBUG STYLING
   ========================= */
body.debug .monitor{
    outline: 2px solid rgba(60,255,106,.85); /* neon-grün */
    box-shadow: 0 0 0 2px rgba(0,0,0,.35);
}

/* Label oben links in jeder Monitorfläche */
body.debug .monitor::after{
    content: attr(data-label);
    position: absolute;
    left: 6px;
    top: 6px;
    font: 12px/1.2 monospace;
    color: rgba(60,255,106,.95);
    background: rgba(0,0,0,.55);
    padding: 3px 6px;
    border-radius: 6px;
    border: 1px solid rgba(60,255,106,.35);
}
