:root {
    --primary: #FA2A55;
    --white: #ffffff;
    --dark: #121212;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    scroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    background-color: var(--primary);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.15;
    pointer-events: none;
    z-index: 50;
    mix-blend-mode: overlay;
}

.floating-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 60;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    filter: blur(30px);
    transition: all 1s ease-in-out;
}

.s-1 { width: 400px; height: 400px; left: -10%; top: -10%; animation: move 10s infinite alternate ease-in-out; }
.s-2 { width: 300px; height: 300px; right: -5%; top: 20%; animation: move 15s infinite alternate-reverse ease-in-out; }
.s-3 { width: 500px; height: 500px; left: 20%; bottom: -20%; animation: move 20s infinite alternate ease-in-out; }
.s-4 { width: 250px; height: 250px; right: 20%; bottom: 10%; animation: move 7s infinite alternate-reverse ease-in-out; }
.s-5 { width: 150px; height: 150px; left: 50%; top: 40%; animation: move 13s infinite alternate ease-in-out; }
.s-6 { width: 600px; height: 600px; right: 30%; top: -20%; animation: move 25s infinite alternate-reverse ease-in-out; }

@keyframes move {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.2; }
    33% { transform: translate(150px, 80px) scale(1.2) rotate(15deg); opacity: 0.4; }
    66% { transform: translate(-100px, 150px) scale(0.8) rotate(-15deg); opacity: 0.25; }
    100% { transform: translate(80px, -80px) scale(1.1) rotate(10deg); opacity: 0.3; }
}

@keyframes title-reveal {
    0% { transform: translateY(100%); opacity: 0; filter: blur(20px); }
    100% { transform: translateY(0); opacity: 1; filter: blur(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-1.5deg); }
    50% { transform: translateY(-25px) rotate(1.5deg); }
}

@keyframes breathing {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes breath-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(15px) scale(1.05); }
}

.slogan-container {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    user-select: none;
    z-index: 10;
    padding: 0 24px;
}

.slogan-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.slogan-content h1 {
    font-size: clamp(2.8rem, 12vw, 19rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 0.85;
    font-style: italic;
    color: var(--white);
    margin: 0;
    width: 100%;
    word-break: break-word;
    animation: title-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards, float 6s ease-in-out infinite 1.2s;
}

.slogan-content p {
    margin-top: 1.5rem;
    font-size: clamp(0.65rem, 1.5vw, 1.1rem);
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    opacity: 0;
    color: var(--white);
    padding: 0 10px;
    animation: title-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.dots-separator {
    display: flex;
    gap: 12px;
    margin-top: 2rem;
}

.dots-separator span {
    width: 6px;
    height: 6px;
    background-color: var(--white);
    border-radius: 50%;
    opacity: 0.5;
}

.dots-separator span:nth-child(1) { animation: breathing 3s ease-in-out infinite; }
.dots-separator span:nth-child(2) { animation: breathing 3s ease-in-out infinite 0.5s; }
.dots-separator span:nth-child(3) { animation: breathing 3s ease-in-out infinite 1s; }

.slogan-container button {
    position: absolute;
    bottom: 40px;
    background: transparent;
    border: none;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: breath-float 4s ease-in-out infinite;
    outline: none;
}

.slogan-container button:hover { transform: translateY(5px) scale(1.2); }
.slogan-container button:hover svg { opacity: 1; }
.slogan-container button svg { transition: all 0.3s ease; opacity: 0.7; }

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 120px;
    transition: padding 0.3s ease, background 0.3s ease;
}

.menu-toggle-cb {
    display: none;
}

.menu-toggle-label {
    display: none;
    cursor: pointer;
    z-index: 160;
    padding: 10px;
}

.menu-toggle-label svg {
    stroke: var(--white);
    transition: transform 0.3s ease;
}

.logo-top-left {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 110;
    text-decoration: none;
    color: var(--white);
}

.logo-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-symbol:hover { transform: rotate(5deg) scale(1.1); }
.logo-text { display: flex; flex-direction: column; }

.logo-text em {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    font-style: normal;
}

.logo-text strong {
    font-size: 0.53rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.8;
    margin-top: 5px;
}

.main-nav {
    display: flex;
    gap: 5px;
}

.main-nav a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.65rem;
    padding: 10px 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.8;
    transition: all 0.3s ease-out;
    position: relative;
    border-radius: 100px;
    display: inline-block;
}

.main-nav a::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
    z-index: -1;
}

.main-nav a:hover { opacity: 1; transform: translateY(-2px); }
.main-nav a:hover::before { opacity: 1; transform: scale(1); }

.header-right-zone {
    display: flex;
    align-items: center;
    gap: 35px;
}

.transparent-account-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--white);
    opacity: 0.7;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    padding: 8px 0;
}

.transparent-account-link .account-text {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.transparent-account-link .account-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.transparent-account-link:hover { opacity: 1; color: var(--white); transform: translateY(-1px); }
.transparent-account-link:hover .account-icon { transform: scale(1.15); }

.transparent-account-link::after {
    content: "";
    position: absolute;
    bottom: 4px; left: 0; width: 100%; height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.4;
}

.transparent-account-link:hover::after { transform: scaleX(1); transform-origin: left; }

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-links a {
    color: var(--white);
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.social-links a:hover { opacity: 1 !important; color: var(--white); transform: translateY(-2px); }



.vision-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 120px 60px;
    position: relative;
    z-index: 10;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vision-header {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
}

.vision-header-center { align-items: center; text-align: center; }

.vision-header strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.6;
    margin-bottom: 15px;
}

.vision-header h2 {
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.9;
}

.vision-line { width: 100px; height: 4px; background-color: var(--white); margin: 25px 0; opacity: 0.3; }
.vision-line-center { margin: 25px auto 0; }
.vision-line-margin { margin: 15px auto 25px auto; }

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vision-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon { margin-bottom: 25px; color: var(--white); opacity: 0.9; display: flex; }
.vision-card h3 { font-size: 1.4rem; font-weight: 900; text-transform: uppercase; margin-bottom: 15px; letter-spacing: -0.02em; color: var(--white); }
.vision-card p { font-size: 1rem; line-height: 1.6; opacity: 0.8; }



.about-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 120px 60px;
    position: relative;
    z-index: 10;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-block.reverse {
    direction: rtl;
}

.story-block.reverse .story-text {
    direction: ltr;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.block-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.story-text h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.story-text p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
    max-width: 540px;
    margin-top: 5px;
}

.story-image {
    width: 100%;
    aspect-ratio: 3/4; 
    max-height: 550px;
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18, 12, 12, 0) 50%, rgba(18, 12, 12, 0.5) 100%);
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-img-src {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.15;
    font-size: 0.75rem;
    text-align: center;
    padding: 30px;
    z-index: 0;
}

.story-block:hover .story-image { transform: translateY(-5px) scale(1.01); border-color: rgba(255, 255, 255, 0.3); }
.story-block:hover .story-img-src { transform: scale(1.06); }
.story-block:hover .story-image::after { opacity: 0.8; }



@keyframes CSSReveal {
    from { opacity: 0; transform: translateY(60px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.scroll-reveal {
    animation-name: CSSReveal;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: cover 0% cover 45%;
}

@supports not (animation-timeline: view()) {
    .scroll-reveal { opacity: 1; transform: none; filter: none; }
}



.program-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 120px 60px;
    position: relative;
    z-index: 10;
}

.program-container {
    max-width: 1000px;
    margin: 0 auto;
}

.program-relative-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 50px;
    gap: 30px;
}

.program-accordion {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-accordion:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    cursor: pointer;
    user-select: none;
}

.accordion-title-block {
    display: flex;
    align-items: center;
    gap: 30px;
}

.program-number {
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    opacity: 0.4;
    color: var(--white);
}

.program-title {
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--white);
}

.accordion-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.7;
}

.accordion-checkbox {
    display: none;
}

.accordion-checkbox:checked ~ .accordion-trigger .accordion-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.accordion-checkbox:checked ~ .accordion-trigger {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-checkbox:checked ~ .accordion-panel {
    max-height: 1000px;
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel-content {
    padding: 0 40px 40px 100px;
}

.panel-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 25px;
}

.program-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.program-bullets li {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.85;
    position: relative;
    padding-left: 25px;
}

.program-bullets li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--white);
    opacity: 0.5;
    font-weight: 700;
}

.unblurred-accordion {
    width: 100%;
    position: relative;
    z-index: 30;
    pointer-events: auto;
    user-select: auto;
}

.blurred-container-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    width: 100%;
    position: relative;
}

.blurred-container-wrapper .program-teaser-card,
.blurred-container-wrapper .program-grid {
    grid-area: 1 / 1;
}

.blurred-container-wrapper .program-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
    z-index: 10;
}

.blurred-container-wrapper .program-teaser-card {
    position: relative;
    z-index: 20;
    width: 90%;
    max-width: 550px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
    pointer-events: auto;
}

.teaser-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #38bdf8;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.pulse-dot::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #38bdf8;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: beaconPulse 2s infinite ease-out;
}

.program-teaser-card h3 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    color: var(--white);
}

.program-teaser-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

@keyframes beaconPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3.5); opacity: 0; }
}

@media (max-width: 600px) {
    .program-section {
        padding: 80px 20px;
    }
    
    .panel-content {
        padding: 0 20px 30px 20px;
    }

    .blurred-container-wrapper .program-teaser-card {
        width: 105%;
        padding: 30px 20px;
    }
}



.unified-dark-section {
    background-color: var(--dark);
    color: var(--white);
    padding: 140px 60px;
    position: relative;
    z-index: 60;
    overflow: hidden;
}

.unified-container {
    max-width: 1200px;
    margin: 0 auto;
}

.appeal-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
}

.appeal-badge {
    background: rgba(250, 42, 85, 0.15);
    border: 1px solid rgba(250, 42, 85, 0.3);
    padding: 10px 24px;
    border-radius: 100px;
    margin-bottom: 60px;
    display: inline-block;
}

.appeal-badge span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary);
}

.appeal-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.appeal-text-left h2 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-style: italic;
}

.appeal-text-left .highlight-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
    opacity: 0.8;
}

.appeal-image-center {
    display: flex;
    justify-content: center;
    position: relative;
}

.avatar-glass-ring {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.appeal-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    filter: grayscale(15%);
    transition: filter 0.4s ease;
}

.appeal-text-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.appeal-text-right h3 {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.appeal-text-right p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

.signature-block {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
}

.sig-name { font-size: 1.2rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; }
.sig-title { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; opacity: 0.5; margin-top: 3px; }

.appeal-block:hover .avatar-glass-ring { transform: scale(1.03) rotate(2deg); }
.appeal-block:hover .appeal-avatar { filter: grayscale(0%); }

.section-divider {
    height: 1px;
    width: 100%;
    margin: 40px 0 100px 0;
    background: radial-gradient(circle, rgba(250, 42, 85, 0.4) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0) 100%);
}



.contact-block { width: 100%; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 90px;
    align-items: flex-start;
}

.contact-info-side strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-info-side h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.9;
}

.contact-lead { font-size: 1.1rem; line-height: 1.7; opacity: 0.8; margin-bottom: 40px; }

.glass-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
    border-radius: 32px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
    padding-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 20px;
    border-radius: 14px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white); opacity: 0.3; }

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 45px;
}

.form-group select option { background: var(--dark); color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(250, 42, 85, 0.2);
}

.form-checkbox-group { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; padding-left: 4px; }
.form-checkbox-group a {color: var(--white); text-decoration: underline; opacity: 0.9; cursor: pointer; }

.form-checkbox-group input[type="checkbox"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.form-checkbox-group label { font-size: 0.8rem; line-height: 1.4; opacity: 0.5; user-select: none; }

.form-submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 18px 35px;
    border-radius: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-submit-btn svg { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }

.form-submit-btn:hover {
    background: #e01b43;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(250, 42, 85, 0.3);
}

.form-submit-btn:hover svg { transform: translateX(5px); }

.display-none { display:none !important; }



.main-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px;
    position: relative;
    z-index: 60;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-logo { display: flex; align-items: center; gap: 15px; text-decoration: none; color: var(--white); }
.footer-logo-symbol { display: flex; align-items: center; justify-content: center; }
.footer-logo-text { display: flex; flex-direction: column; }
.footer-logo-name { font-size: 1.4rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; }
.footer-logo-title { font-size: 0.5rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.3em; opacity: 0.6; margin-top: 4px; }

.footer-credits { display: flex; flex-direction: column; gap: 6px; text-align: center; }
.footer-credits .copyright { font-size: 0.8rem; opacity: 0.5; letter-spacing: 0.02em; }
.footer-credits .author { font-size: 0.8rem; opacity: 0.4; letter-spacing: 0.05em; text-transform: uppercase; }

.author-link { color: var(--white); text-decoration: none; font-weight: 700; transition: color 0.3s ease, opacity 0.3s ease; position: relative; }
.author-link:hover { color: var(--primary); opacity: 1; }

.footer-socials { display: flex; gap: 16px; align-items: center; }

.footer-social-item {
    width: 44px; height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--white);
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social-item:hover {
    opacity: 1;
    background: rgba(250, 42, 85, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(250, 42, 85, 0.15);
}



@media (max-width: 1400px) {
    .main-header { padding: 40px 60px; }
}

@media (max-width: 1200px) {
    .main-header { padding: 30px 40px; }
    .vision-section, .about-section, .program-section, .unified-dark-section { padding: 100px 40px; }
    .contact-grid { gap: 50px; }
    .story-block { gap: 40px; }
}

@media (max-width: 1024px) {
    .menu-toggle-label {
        display: flex;
        z-index: 170;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background: rgba(18, 12, 12, 0.96);
        
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 50px 20px;
        gap: 15px;
        
        transform: translateX(100%);
        
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        will-change: transform;
        
        z-index: 150;
    }

    .main-nav a {
        font-size: 0.9rem;
        width: 100%;
        padding: 12px 20px;
    }

    .header-right-zone {
        position: fixed;
        bottom: 40px;
        left: 40px;
        right: 40px;
        top: auto;
        flex-direction: column;
        gap: 20px;
        width: auto;
        transform: translateY(150px);
        opacity: 0;
        transition: transform 0.7s ease, opacity 0.7s ease;
        z-index: 155;
        pointer-events: none;
    }

    .transparent-account-link .account-text { font-size: 0.75rem; }
    .social-links { width: 100%; justify-content: center; gap: 30px; }

    .menu-toggle-cb:checked ~ .main-nav {
        transform: translateX(0);
        position: fixed;
    }
    
    .menu-toggle-cb:checked ~ .header-right-zone {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .menu-toggle-cb:checked ~ .menu-toggle-label svg {
        transform: rotate(90deg);
    }

    .vision-grid { grid-template-columns: 1fr; gap: 24px; }
    
    .story-block, .story-block.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        direction: ltr;
    }
    .story-block.reverse .story-text { direction: ltr; }
    .story-text { align-items: center; }
    .story-text p { max-width: 100%; }
    .story-image { max-height: 450px; max-width: 500px; margin: 0 auto; }

    .appeal-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .appeal-text-left h2 { font-size: 3rem; }
    .appeal-text-right { align-items: center; max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .main-header { padding: 24px; }
    .vision-section, .about-section, .program-section, .unified-dark-section { padding: 80px 24px; }
    
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .glass-form { padding: 35px 24px; border-radius: 24px; }
    .form-row { grid-template-columns: 1fr; gap: 24px; }

    .panel-content { padding: 0 24px 30px 24px; }
    .accordion-trigger { padding: 24px; }
    .accordion-title-block { gap: 15px; }
    .program-number { font-size: 1.2rem; }

    .main-footer { padding: 40px 24px; }
    .footer-container { flex-direction: column; gap: 30px; text-align: center; }
    .footer-logo { flex-direction: column; gap: 8px; }
    .footer-logo-text { align-items: center; }
    .footer-credits { order: 3; }
    .footer-socials { order: 2; }

    .vision-header h2 {
        font-size: 4.2rem;
    }

    .slogan-content h1 {
        font-size: 4.8rem;
    }

    .story-text h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .logo-text em { font-size: 1.25rem; }
    .logo-text strong { font-size: 0.48rem; letter-spacing: 0.25em; }
    .avatar-glass-ring { width: 220px; height: 220px; padding: 10px; }
    .appeal-text-left h2 { font-size: 2.2rem; }
    .vision-card { padding: 30px 20px; }
    .story-image { border-radius: 28px; }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glass-modal-content {
    background: rgba(20, 20, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    transform: scale(0.85);
    opacity: 0;
    display: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.glass-modal-content.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-success {
    background: rgba(74, 222, 128, 0.05);
    border: 1px solid rgba(74, 222, 128, 0.2);
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.1);
}

.icon-error {
    background: rgba(248, 113, 113, 0.05);
    border: 1px solid rgba(248, 113, 113, 0.2);
    box-shadow: 0 0 30px rgba(248, 113, 113, 0.1);
}

.glass-modal-content h2 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.glass-modal-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.modal-close-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.modal-close-btn.btn-error {
    background: rgba(248, 113, 113, 0.15);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.modal-close-btn.btn-error:hover {
    background: rgba(248, 113, 113, 0.25);
    box-shadow: 0 8px 20px rgba(248, 113, 113, 0.1);
}

.modal-error-list {
    text-align: left;
    margin: 15px auto 25px auto;
    padding: 0 0 0 20px;
    max-width: 380px;
    display: inline-block;
}

.modal-error-list li {
    color: #f87171;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
    list-style-type: square;
}

#error-modal-message p {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
}



.cookie-bar {
    position: fixed;
    bottom: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 800px;
    
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    
    padding: 30px 40px;
    z-index: 200;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    
    transition: bottom 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-bar.show {
    bottom: 40px;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.cookie-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.85;
    margin: 0;
    font-weight: 300;
}

.cookie-btn {
    background: var(--white);
    color: var(--dark);
    border: none;
    padding: 14px 28px;
    border-radius: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(250, 42, 85, 0.3);
}

.cookie-btn:active {
    transform: translateY(0) scale(0.98);
}

#open-gdpr-cookie-link { color: var(--white); text-decoration: underline; opacity: 0.9; cursor: pointer; }

@media (max-width: 768px) {
    .cookie-bar {
        width: calc(100% - 32px);
        padding: 24px;
        bottom: -340px;
    }
    
    .cookie-bar.show {
        bottom: 24px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookie-content p {
        font-size: 0.9rem;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
        padding: 16px;
    }
}



#gdpr-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 12, 12, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 24px;
}

#gdpr-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.gdpr-modal-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: 40px;
    max-width: 650px;
    max-height: 80vh;
    display: none;
    
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: left !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

#gdpr-modal-overlay.active .gdpr-modal-content {
    display: flex;
}

.gdpr-modal-scrollable {
    width: 100% !important;
    overflow-y: auto;
    padding-right: 15px;
}

.gdpr-text-block {
    width: 100% !important;
}

.gdpr-modal-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px 0;
    text-align: left;
    width: 100%;
}

.gdpr-modal-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.85;
    margin-bottom: 15px;
    font-weight: 300;
    text-align: left;
    width: 100%;
}

.gdpr-text-block h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 25px 0 8px 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    text-align: left;
    width: 100%;
}

.gdpr-text-block p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.75;
    margin-bottom: 12px;
    font-weight: 300;
    text-align: left;
    width: 100%;
}

.gdpr-modal-content .vision-line {
    width: 100% !important;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 20px 0 25px 0 !important;
}

.gdpr-modal-content .modal-close-btn {
    align-self: flex-end;
    background: var(--white);
    color: var(--dark);
    border: none;
    padding: 14px 30px;
    border-radius: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 25px;
    margin-bottom: 0;
    white-space: nowrap;
}

.gdpr-modal-content .modal-close-btn:hover {
    transform: translateY(-2px);
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(250, 42, 85, 0.3);
}

.gdpr-modal-content .modal-close-btn:active {
    transform: translateY(0) scale(0.98);
}

.gdpr-modal-scrollable::-webkit-scrollbar {
    width: 6px;
}

.gdpr-modal-scrollable::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.gdpr-modal-scrollable::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

.gdpr-modal-scrollable::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

@media (max-width: 768px) {
    .gdpr-modal-content {
        padding: 24px;
        max-height: 85vh;
    }

    .gdpr-modal-content h2 {
        font-size: 1.4rem;
    }
    
    .gdpr-modal-content .modal-close-btn {
        align-self: center;
        width: 100%;
        text-align: center;
        padding: 16px;
    }
}
