@font-face {
    font-family: 'Buzzer';
    src: url("/font/Buzzer.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

:root {
    --scroll: 0px; /* globale Scroll-Variable für Parallax */
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Body nicht scrollen */
    border-top: 6px solid #9fd9ee;
    border-left: 3px solid #9fd9ee;
}

.wrapper {
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

/* Sticky "Let's Talk" oben rechts */
.cta-talk {
    position: sticky;
    width: 100%;
    display: block;
    top: 0;
    z-index: 1000;
    text-align: right;
    padding: 8px;


}
.cta-talk a{
    padding: 8px;
    color:#fff;
    font-family: "Buzzer", sans-serif;
    font-weight: 400;
    font-size: 1.8em;
    background:rgba(0,0,0,0.8);
    border-bottom: 1px solid #9fd9ee;
}


.page {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
}

/* REVEAL-ANIMATION – fallend von oben + Fade-In */
.reveal {
    opacity: 0;
    transform: translateY(-30px);
    animation: revealDown 0.8s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes revealDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

a{
    font-family: Arial, Helvetica, sans-serif;
    color: #9fd9ee;
    font-weight: 400;
    font-size: 1em;
    text-decoration: none;
}

hr.blue{
    border: 2px solid #9fd9ee;
}

header.title {
    margin-top: 0.5rem;
}

.title-line {
    display: block;
}

header.title h1 {
    margin: 0;
    font-family: "Buzzer", sans-serif;
    font-weight: 400;
    color: #9fd9ee;
    font-size: clamp(3rem, 6vw, 4.5rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

header.title h2 {
    margin: 0.35rem 0 0;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-family: "Buzzer", sans-serif;
    font-weight: 400;
    width: 100%;
}

/* Parallax auf Titel */
.parallax-title-1 {
    display: inline-block;
    transform: rotate(-3deg) translateY(calc(var(--scroll) * -0.1));
}

.parallax-title-2 {
    display: inline-block;
    transform: rotate(-3deg) translateY(calc(var(--scroll) * -0.1));
}

.content {
    max-width: 500px;
    margin-top: 1.5rem;
    text-align: left;
    line-height: 1.7;
    font-size: 1rem;
}

.content p {
    margin: 0 0 1.1rem;
    font-weight: 400;
    font-size: 1em;
}

.highlight-block {
    margin: 1.2rem 0 1.4rem;
}

.highlight-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.7;
}

.highlight {
    display: inline-block;
    margin-top: 0.4rem;
    font-family: "Buzzer", Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #9fd9ee;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: 100%;
    line-height: 1.3;
    text-align: center;
}

.highlight span {
    display: block;
}

/* Bullet-Liste mit minimalistischen Icons in rgba(159, 217, 238, 0.8) */
.bullet-intro {
    font-weight: 600;
    margin-top: 0.4rem;
}

.bullet-list {
    list-style: none;
    padding: 0.8rem 0 0.4rem;
    margin: 0 0 1.1rem;
    border-left: 2px solid rgba(159, 217, 238, 0.8);
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.25rem 0.4rem 0.25rem 0.9rem;
    font-size: 0.98rem;
}

.bullet-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid rgba(159, 217, 238, 0.8);
    box-shadow: 0 0 6px rgba(159, 217, 238, 0.6);
    position: relative;
    margin-top: 0.15rem;
}

.bullet-icon::before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: inherit;
    background: rgba(159, 217, 238, 0.45);
}

/* Subtile Variationen pro Bullet-Typ */
.bullet-icon--rocket::after,
.bullet-icon--ai::after,
.bullet-icon--api::after,
.bullet-icon--cms::after,
.bullet-icon--cloud::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.7);
}

.bullet-icon--rocket::after {
    inset: 4px 6px 6px 6px;
}

.bullet-icon--ai::after {
    inset: 5px;
    border-radius: 4px;
}

.bullet-icon--api::after {
    inset: 4px;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(159, 217, 238, 0.9);
    background: transparent;
}

.bullet-icon--cms::after {
    inset: 4px;
    border-radius: 2px;
}

.bullet-icon--cloud::after {
    inset: 6px 3px 5px 3px;
}

.bullet-text {
    flex: 1;
}

.bullet-text strong {
    display: block;
    font-weight: 600;
}

/* Gekipptes, weniger spitzes Dreieck mit Parallax auf das Bild */
.triangle-reveal {
    margin-top: 0.5rem;
}

.triangle-outer {
    position: relative;
    width: 280px;
    aspect-ratio: 1 / 1;
    transform: translateY(calc(var(--scroll) * -0.08)) rotate(-3deg);
    transition: transform 0.15s ease-out;
    margin-top: 1.5rem;
}

.triangle-outer::before {
    content: "";
    position: absolute;
    inset: -8px;
    clip-path: polygon(50% 22%, 0% 100%, 100% 100%);
    border: 3px solid #9fd9ee;
    opacity: 0.8;
    pointer-events: none;
}

.triangle-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: polygon(50% 22%, 0% 100%, 100% 100%);
}

.triangle-inner img {
    width: 120%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    transform: translate(-15%, 28%) translateY(calc(var(--scroll) * 0.04));
}

footer{
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

@media (max-width: 600px) {
    .page {
        padding: 24px 16px 40px;
    }
    .content {
        font-size: 0.95rem;
    }
}
