.elementor-254 .elementor-element.elementor-element-f8b38d0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-254 .elementor-element.elementor-element-fb25813{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-254 .elementor-element.elementor-element-774572b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-254 .elementor-element.elementor-element-2cde19e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-f3e1496 *//* ========================================================== */
/* --- OYMEDIA: ABOUT US (HERO & MANIFESTO) ---               */
/* ========================================================== */

body {
    background-color: #050505; /* Absolutes Deep Black für die About Page */
}

/* --- 1. HERO SEKTION --- */
.oy-about-hero {
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background: radial-gradient(circle at center, rgba(224, 43, 32, 0.05) 0%, transparent 60%);
    font-family: inherit;
}

.oy-hero-content {
    max-width: 900px;
    /* Animation Start */
    opacity: 0;
    transform: translateY(40px);
}

.oy-about-hero.oy-in-view .oy-hero-content {
    animation: oy-fade-up 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes oy-fade-up {
    to { opacity: 1; transform: translateY(0); }
}

.oy-hero-label {
    font-family: monospace;
    color: #E02B20;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 20px;
}

.oy-hero-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.1;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

.oy-text-red {
    color: #E02B20;
    text-shadow: 0 0 20px rgba(224, 43, 32, 0.4);
}

.oy-hero-sub {
    color: #888;
    font-size: 18px;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}


/* --- 2. DAS MANIFEST (CORE VALUES) --- */
.oy-manifesto-section {
    width: 100%;
    padding: 100px 0;
    font-family: inherit;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.oy-manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 1 Drittel Links, 2 Drittel Rechts */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
}

/* Linke Seite */
.oy-manifesto-left {
    position: sticky;
    top: 120px; /* Bleibt beim Scrollen kleben */
    height: fit-content;
    
    /* Animation Start */
    opacity: 0;
    transform: translateX(-30px);
}

.oy-manifesto-section.oy-in-view .oy-manifesto-left {
    animation: oy-slide-right 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes oy-slide-right { to { opacity: 1; transform: translateX(0); } }

.oy-manifesto-left h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
}

.oy-red-line {
    width: 60px;
    height: 4px;
    background: #E02B20;
    box-shadow: 0 0 10px rgba(224, 43, 32, 0.5);
}

/* Rechte Seite (Die Werte) */
.oy-manifesto-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.oy-core-value {
    display: flex;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    
    /* Animation Start */
    opacity: 0;
    transform: translateY(30px);
}

.oy-core-value:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Kaskaden-Aufbau */
.oy-manifesto-section.oy-in-view .oy-core-value {
    animation: oy-fade-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.oy-manifesto-section.oy-in-view .oy-core-value:nth-child(1) { animation-delay: 0.2s; }
.oy-manifesto-section.oy-in-view .oy-core-value:nth-child(2) { animation-delay: 0.4s; }
.oy-manifesto-section.oy-in-view .oy-core-value:nth-child(3) { animation-delay: 0.6s; }

.oy-value-num {
    font-family: monospace;
    font-size: 16px;
    font-weight: 800;
    color: #E02B20;
    margin-top: 5px; /* Angleichung an die Überschrift */
}

.oy-value-text h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    transition: color 0.4s ease;
}

.oy-value-text p {
    color: #777;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    transition: color 0.4s ease;
}

/* Minimal Hover (Kein Wackeln!) */
.oy-core-value:hover .oy-value-text h3 { color: #E02B20; }
.oy-core-value:hover .oy-value-text p { color: #aaaaaa; }

/* Mobile Optimierung */
@media (max-width: 900px) {
    .oy-hero-title { font-size: 38px; }
    .oy-manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
    .oy-manifesto-left { position: relative; top: 0; }
    .oy-core-value { flex-direction: column; gap: 15px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-df9c910 *//* ========================================================== */
/* --- OYMEDIA: THE BENTO GRID (STANDARDS) ---                */
/* ========================================================== */

.oy-bento-section {
    width: 100%;
    padding: 100px 0;
    font-family: inherit;
    background: transparent;
}

.oy-bento-header {
    text-align: center;
    margin-bottom: 60px;
}

.oy-bento-header h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.oy-bento-header p {
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

/* --- THE GRID --- */
.oy-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Spalten */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- THE CARDS --- */
.oy-bento-card {
    background: rgba(12, 12, 12, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px; /* Im Bento-Style sind die Ecken oft runder (Apple-Like) */
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: default; /* KEIN Link-Pointer */
    
    /* Scroll Reveal Start */
    opacity: 0;
    transform: translateY(40px);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Die Asymmetrie (Spans) */
.oy-span-2 { grid-column: span 2; }
.oy-span-1 { grid-column: span 1; }

/* Die Akzent-Karte (z.B. IN-HOUSE) */
.oy-accent-card {
    background: linear-gradient(135deg, rgba(224, 43, 32, 0.1) 0%, rgba(12, 12, 12, 0.8) 100%);
    border-color: rgba(224, 43, 32, 0.2);
}

.oy-accent-card .oy-bento-icon {
    color: #E02B20 !important;
}

/* --- 1. SCROLL REVEAL ANIMATION --- */
@keyframes oy-bento-intro {
    to { opacity: 1; transform: translateY(0); }
}

.oy-bento-section.oy-in-view .oy-bento-card {
    animation: oy-bento-intro 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.oy-bento-section.oy-in-view .oy-bento-card:nth-child(1) { animation-delay: 0.1s; }
.oy-bento-section.oy-in-view .oy-bento-card:nth-child(2) { animation-delay: 0.2s; }
.oy-bento-section.oy-in-view .oy-bento-card:nth-child(3) { animation-delay: 0.3s; }
.oy-bento-section.oy-in-view .oy-bento-card:nth-child(4) { animation-delay: 0.4s; }


/* --- STATIC STYLES --- */
.oy-bento-icon {
    width: 48px;
    height: 48px;
    color: #555;
    margin-bottom: 40px;
    transition: color 0.4s ease;
}

.oy-bento-icon svg { width: 100%; height: 100%; }

.oy-bento-content h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    transition: color 0.4s ease;
}

.oy-bento-content p {
    color: #777;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
    transition: color 0.4s ease;
}

/* Der unsichtbare Glow-Effekt im Hintergrund der Karte */
.oy-bento-glow {
    position: absolute;
    bottom: -50px; right: -50px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(224, 43, 32, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}


/* ========================================================== */
/* --- 2. AMBIENT HOVER (Seriös & Technisch) ---              */
/* ========================================================== */

.oy-bento-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.oy-accent-card:hover {
    border-color: rgba(224, 43, 32, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(224, 43, 32, 0.05);
}

/* Icon & Text leuchten sanft auf */
.oy-bento-card:hover .oy-bento-icon { color: #ffffff; }
.oy-accent-card:hover .oy-bento-icon { color: #ff3b30 !important; filter: drop-shadow(0 0 10px rgba(224, 43, 32, 0.5)); }

.oy-bento-card:hover .oy-bento-content p { color: #aaaaaa; }

/* Der rote Nebel steigt in der Ecke auf */
.oy-bento-card:hover .oy-bento-glow { opacity: 1; }


/* Mobile Optimierung */
@media (max-width: 992px) {
    .oy-bento-grid {
        grid-template-columns: 1fr; /* Alles wird untereinander gestapelt */
    }
    .oy-span-2, .oy-span-1 {
        grid-column: span 1; /* Überschreibt die Spans für Handy/Tablet */
    }
    .oy-bento-card { padding: 30px; }
    .oy-bento-icon { margin-bottom: 25px; }
    .oy-bento-content h3 { font-size: 20px; }
    .oy-bento-content p { max-width: 100%; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-aafcd56 *//* ========================================================== */
/* --- OYMEDIA: TERMINAL FAQ (HACKER STYLE) ---               */
/* ========================================================== */

.oy-terminal-section {
    width: 100%;
    padding: 100px 0;
    font-family: 'Courier New', Courier, monospace; /* Echter Terminal Vibe */
    background: transparent;
}

.oy-terminal-header {
    text-align: center;
    margin-bottom: 60px;
    font-family: inherit;
}

.oy-terminal-header h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.oy-terminal-header p {
    color: #E02B20;
    font-size: 16px;
    letter-spacing: 1px;
}

/* --- THE WINDOW --- */
.oy-terminal-window {
    max-width: 900px;
    margin: 0 auto;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 20px rgba(224, 43, 32, 0.05);
    
    /* Scroll Reveal Start */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.oy-terminal-top {
    background: #111;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.oy-terminal-dots { display: flex; gap: 8px; }
.oy-terminal-dots span { width: 10px; height: 10px; border-radius: 50%; background: #333; }

.oy-terminal-title {
    margin-left: 20px;
    font-size: 10px;
    color: #444;
    letter-spacing: 2px;
    font-weight: 800;
}

/* --- THE BODY --- */
.oy-terminal-body {
    padding: 30px;
}

.oy-faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 20px;
}

.oy-faq-item:last-child { border-bottom: none; }

.oy-faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer; /* Hier ist ein Klick erwünscht! */
}

.oy-prompt {
    color: #E02B20;
    font-weight: 900;
    font-size: 18px;
}

.oy-faq-question h3 {
    color: #ffffff;
    font-size: 18px;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.oy-faq-answer {
    max-height: 0; /* Versteckt am Anfang */
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 32px;
}

.oy-faq-answer p {
    color: #888;
    font-size: 15px;
    line-height: 1.6;
    margin: 15px 0 0 0;
}

/* --- HOVER & ACTIVE --- */
.oy-faq-item:hover h3 {
    color: #E02B20;
    text-shadow: 0 0 10px rgba(224, 43, 32, 0.3);
}

.oy-faq-item.is-open .oy-faq-answer {
    max-height: 300px; /* Genug Raum für die Antwort */
}

.oy-faq-item.is-open h3 {
    color: #E02B20;
}

/* Scroll Reveal Trigger */
.oy-terminal-section.oy-in-view .oy-terminal-window {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .oy-terminal-body { padding: 20px; }
    .oy-faq-question h3 { font-size: 16px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c79f2b9 *//* ========================================================== */
/* --- OYMEDIA: READY TO LAUNCH (FINAL CTA) ---               */
/* ========================================================== */

.oy-launch-section {
    position: relative;
    width: 100%;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    font-family: inherit;
}

/* --- DER REAKTOR (Hintergrund-Glow) --- */
.oy-launch-reactor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 43, 32, 0.1) 0%, rgba(224, 43, 32, 0.02) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    
    /* Scroll Reveal Start */
    opacity: 0;
    transition: opacity 1.5s ease;
}

/* --- DER INHALT --- */
.oy-launch-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    /* Scroll Reveal Start */
    opacity: 0;
    transform: translateY(40px);
}

/* --- 1. SCROLL REVEAL ANIMATION --- */
@keyframes oy-launch-intro {
    to { opacity: 1; transform: translateY(0); }
}

.oy-launch-section.oy-in-view .oy-launch-content {
    animation: oy-launch-intro 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.oy-launch-section.oy-in-view .oy-launch-reactor {
    opacity: 1;
}

/* --- STATIC STYLES --- */
.oy-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(224, 43, 32, 0.05);
    border: 1px solid rgba(224, 43, 32, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: monospace;
    font-size: 11px;
    font-weight: 800;
    color: #E02B20;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.oy-live-dot {
    width: 8px;
    height: 8px;
    background: #E02B20;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(224, 43, 32, 0.8);
    animation: oy-status-pulse 2s infinite;
}

@keyframes oy-status-pulse {
    0% { transform: scale(0.8); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.4; }
    100% { transform: scale(0.8); opacity: 1; }
}

.oy-launch-content h2 {
    color: #ffffff;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.oy-launch-content p {
    color: #888;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 550px;
}

/* --- THE BUTTON (Brutalist Tech) --- */
.oy-launch-btn {
    display: inline-flex;
    align-items: center;
    background: #E02B20;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 4px; /* Eckiger, maskuliner, technischer */
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    box-shadow: 0 15px 30px rgba(224, 43, 32, 0.2);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.oy-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    transition: transform 0.4s ease;
}

.oy-btn-icon svg {
    width: 18px;
    height: 18px;
}

/* --- 2. AMBIENT HOVER (Power Surge) --- */
.oy-launch-btn:hover {
    background: #ff2a1f; /* Noch grelleres Rot */
    box-shadow: 0 20px 40px rgba(224, 43, 32, 0.4), 0 0 20px rgba(224, 43, 32, 0.4);
    transform: translateY(-2px); /* Nur ein minimaler Push, kein wildes Wackeln */
}

.oy-launch-btn:hover .oy-btn-icon {
    transform: translateX(5px); /* Pfeil schießt leicht nach rechts */
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .oy-launch-section { padding: 80px 20px; }
    .oy-launch-content h2 { font-size: 40px; }
    .oy-launch-content p { font-size: 16px; }
    .oy-launch-btn { width: 100%; justify-content: center; }
}/* End custom CSS */