/*
Theme Name: Cosmic History
Theme URI: https://cosmichistory.love
Author: Cosmic History
Description: Русская версия сайта о Законе Времени
Version: 1.0
*/

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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #e8e8e8;
    line-height: 1.5;
    min-height: 100vh;
}

/* ===== КОСМИЧЕСКИЙ СИНИЙ ФОН КАК НА ORIGINAL ===== */
body {
    background: #050b1a;
}

/* Основной градиент как на cosmichistory.love */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 40% 30%, #0e1a3a 0%, #030612 100%);
    z-index: -2;
}

/* Туманность / галактический эффект */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(50, 80, 150, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(100, 60, 150, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(30, 100, 130, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* Звёзды */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -0.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Герой секция */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Times New Roman', serif;
}

.hero h2 {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 6px;
    color: #d4a853;
    margin-bottom: 1.5rem;
}

.hero p {
    max-width: 550px;
    margin: 0 auto 2rem;
    color: #aaa;
    font-size: 0.95rem;
}

.btn {
    display: inline-block;
    background: #d4a853;
    color: #0a0c15;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-outline {
    background: transparent;
    border: 1px solid #d4a853;
    color: #d4a853;
}

.btn-outline:hover {
    background: #d4a853;
    color: #0a0c15;
}

/* Секции */
.section {
    padding: 80px 0;
}

.section-dark {
    background: rgba(0, 0, 0, 0.25);
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    color: #fff;
}

.section-title span {
    color: #d4a853;
}

/* Сетки */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

/* Карточки */
.card {
    background: rgba(15, 25, 50, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(212, 168, 83, 0.15);
    transition: 0.3s;
}

.card:hover {
    border-color: #d4a853;
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #d4a853;
}

.card p {
    font-size: 0.85rem;
    color: #bbb;
}

/* Подвал */
.site-footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(212, 168, 83, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #d4a853;
    margin-bottom: 15px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-col a {
    color: #888;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.footer-col a:hover {
    color: #d4a853;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.7rem;
    color: #666;
}

/* Адаптив */
@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero h2 {
        font-size: 0.7rem;
        letter-spacing: 4px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ГЛАВНЫЙ БЛОК ПОСЛЕ ШАПКИ ===== */
.hero-main {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: auto;
}

.hero-content-block {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Times New Roman', serif;
    text-align: center;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #d4a853;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.hero-invitation {
    border-top: 1px solid rgba(212, 168, 83, 0.3);
    padding-top: 2.5rem;
}

.invitation-text {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #d4a853;
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center;
}

.hero-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
}

.join-text {
    font-style: italic;
    color: #e8e8e8;
    margin: 1.8rem 0;
}

.hero-quote {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(212, 168, 83, 0.08);
    border-left: 3px solid #d4a853;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #c8c8c8;
}

.quote-author {
    display: block;
    margin-top: 0.8rem;
    font-style: normal;
    color: #d4a853;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hero-main {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    .invitation-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    .hero-description p {
        font-size: 0.9rem;
    }
    .hero-quote {
        padding: 1rem;
    }
}

/* ===== СЕКЦИЯ С КАРТИНКАМИ ===== */
.section-images {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.image-card {
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(212, 168, 83, 0.2);
}

.image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 168, 83, 0.5);
}

.image-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .images-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .image-card img {
        height: 250px;
    }
    .section-images {
        padding: 40px 0;
    }
}

/* ===== СЕКЦИЯ С КАРТИНКАМИ (ДВЕ КОЛОНКИ) ===== */
.images-grid.two-columns {
    grid-template-columns: repeat(2, 1fr);
}

/* ===== БЛОК О STEPHANIE ===== */
.section-stephanie {
    padding: 70px 0;
    background: rgba(0, 0, 0, 0.25);
}

.stephanie-content {
    max-width: 1000px;
    margin: 0 auto;
}

.stephanie-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
}

.stephanie-link {
    color: #d4a853;
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 168, 83, 0.4);
    transition: 0.3s;
}

.stephanie-link:hover {
    color: #e8c06e;
    border-bottom-color: #e8c06e;
}

@media (max-width: 768px) {
    .images-grid.two-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .section-stephanie {
        padding: 50px 0;
    }
    .stephanie-content p {
        font-size: 0.9rem;
    }
}

/* ===== СЕКЦИЯ С КАРТИНКАМИ ===== */
.section-images {
    padding: 40px 0;
}

.images-grid.two-columns {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.image-card {
    flex: 0 1 auto;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: transparent;
    border: none;
    box-shadow: none;
}

.image-card:hover {
    transform: translateY(-5px);
}

.image-card img.small-image {
    width: 280px;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .images-grid.two-columns {
        gap: 25px;
    }
    .image-card img.small-image {
        width: 220px;
    }
}

@media (max-width: 550px) {
    .images-grid.two-columns {
        flex-direction: column;
        align-items: center;
    }
    .image-card img.small-image {
        width: 260px;
    }
}

/* ===== БЛОК STEPHANIE ТОЧНО КАК НА СКРИНШОТЕ ===== */
.stephanie-block {
    padding: 60px 0;
    background: transparent;
}

.stephanie-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.stephanie-text {
    flex: 2;
    min-width: 280px;
}

.stephanie-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 1.2rem;
}

.stephanie-link {
    color: #d4a853;
    text-decoration: none;
    border-bottom: 1px solid #d4a853;
    transition: 0.3s;
}

.stephanie-link:hover {
    color: #e8c06e;
    border-bottom-color: #e8c06e;
}

.stephanie-images {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stephanie-img-top,
.stephanie-img-bottom {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 12px;
    display: block;
    transition: transform 0.3s ease;
}

.stephanie-img-top:hover,
.stephanie-img-bottom:hover {
    transform: translateY(-5px);
}

/* Для планшетов */
@media (max-width: 850px) {
    .stephanie-wrapper {
        flex-direction: column;
    }
    .stephanie-images {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    .stephanie-img-top,
    .stephanie-img-bottom {
        max-width: 200px;
    }
}

/* Для мобильных */
@media (max-width: 550px) {
    .stephanie-images {
        flex-direction: column;
        align-items: center;
    }
    .stephanie-img-top,
    .stephanie-img-bottom {
        max-width: 220px;
    }
    .stephanie-text p {
        font-size: 0.85rem;
    }
}

/* ===== БЛОК 1: КОСМИЧЕСКАЯ ИСТОРИЯ В КЛЕТКАХ ===== */
.info-block {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 2rem;
}

.info-highlight {
    margin-top: 30px;
    padding: 25px 30px;
    background: rgba(212, 168, 83, 0.08);
    border-left: 3px solid #d4a853;
}

.highlight-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #d4a853;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.info-highlight p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ===== БЛОК 2: БОЛЬШАЯ ЦИТАТА ===== */
.quote-block-large {
    padding: 80px 0;
    background: transparent;
    text-align: center;
}

.quote-large-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-line {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #e8e8e8;
    margin-bottom: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.quote-author-large {
    margin-top: 30px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #d4a853;
    text-transform: uppercase;
}

/* ===== БЛОК 3: ЗАКОН ВРЕМЕНИ ===== */
.law-of-time-block {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.25);
}

.law-content {
    max-width: 900px;
    margin: 0 auto;
}

.law-title {
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.law-subtitle {
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #d4a853;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.law-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 2rem;
}

.law-quote-large {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(212, 168, 83, 0.06);
    border-left: 3px solid #d4a853;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #c8c8c8;
}

.law-quote-author {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: #d4a853;
    font-size: 0.85rem;
}

/* Адаптив для новых блоков */
@media (max-width: 768px) {
    .info-block, .law-of-time-block {
        padding: 40px 0;
    }
    .quote-block-large {
        padding: 50px 0;
    }
    .quote-line {
        font-size: 1.1rem;
    }
    .law-title {
        font-size: 1.3rem;
    }
    .info-highlight {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .quote-line {
        font-size: 0.95rem;
    }
    .law-quote-large {
        padding: 1.2rem;
    }
}

/* ===== БЛОК 1: С КАРТИНКОЙ (КОСМИЧЕСКАЯ ИСТОРИЯ В КЛЕТКАХ) ===== */
.info-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.info-text {
    flex: 2;
    min-width: 280px;
}

.info-image {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.info-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.info-img:hover {
    transform: scale(1.02);
}

/* ===== БЛОК 2: С КАРТИНКОЙ (ЦИТАТА) ===== */
.quote-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.quote-image {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.quote-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.quote-content {
    flex: 2;
    min-width: 280px;
    text-align: left;
}

/* ===== БЛОК 3: С КАРТИНКОЙ (ЗАКОН ВРЕМЕНИ) ===== */
.law-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.law-image {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.law-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.law-text {
    flex: 2;
    min-width: 280px;
}

/* Адаптив для блоков с картинками */
@media (max-width: 768px) {
    .info-wrapper,
    .quote-wrapper,
    .law-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .info-image,
    .quote-image,
    .law-image {
        order: -1;
    }
    
    .quote-content {
        text-align: center;
    }
    
    .info-img,
    .quote-img,
    .law-img {
        max-width: 280px;
    }
}

/* ===== НОВЫЙ БЛОК: ПРОБУЖДЕНИЕ 9 ВРЕМЕННЫХ ИЗМЕРЕНИЙ ===== */
.course-block {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(10, 15, 35, 0.6), rgba(5, 8, 20, 0.8));
    border-top: 1px solid rgba(212, 168, 83, 0.15);
    border-bottom: 1px solid rgba(212, 168, 83, 0.15);
}

.course-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.course-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.course-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.course-img:hover {
    transform: scale(1.02);
}

.course-content {
    flex: 1.5;
    min-width: 280px;
}

.course-title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 0.8rem;
    font-family: 'Times New Roman', serif;
}

.course-subtitle {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #d4a853;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.course-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 1.8rem;
}

.course-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid #d4a853;
    color: #d4a853;
    padding: 10px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.course-btn:hover {
    background: #d4a853;
    color: #0a0c15;
}

/* Адаптив */
@media (max-width: 850px) {
    .course-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }
    
    .course-title {
        font-size: 1.5rem;
    }
    
    .course-subtitle {
        font-size: 0.6rem;
    }
    
    .course-content p {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .course-block {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .course-title {
        font-size: 1.2rem;
    }
    
    .course-img {
        max-width: 90%;
    }
}

/* ===== БЛОК 4: HOLOMIND PERCEIVER ===== */
.holomind-block {
    padding: 70px 0;
    background: rgba(0, 0, 0, 0.2);
}

.holomind-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.holomind-content {
    flex: 1.5;
    min-width: 280px;
}

.holomind-title {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 1.2rem;
    font-family: 'Times New Roman', serif;
}

.holomind-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 1.8rem;
}

.holomind-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid #d4a853;
    color: #d4a853;
    padding: 10px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.holomind-btn:hover {
    background: #d4a853;
    color: #0a0c15;
}

.holomind-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.holomind-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ===== БЛОК 5: RESOURCES ===== */
.resources-block {
    padding: 70px 0;
    background: linear-gradient(135deg, rgba(8, 12, 28, 0.8), rgba(3, 6, 15, 0.9));
}

.resources-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.resources-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.resources-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.resources-content {
    flex: 1.5;
    min-width: 280px;
}

.resources-title {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 0.5rem;
}

.resources-subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #d4a853;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.resources-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 1.8rem;
}

.resources-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid #d4a853;
    color: #d4a853;
    padding: 10px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.resources-btn:hover {
    background: #d4a853;
    color: #0a0c15;
}

/* Адаптив новых блоков */
@media (max-width: 768px) {
    .holomind-wrapper,
    .resources-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .holomind-title,
    .resources-title {
        font-size: 1.4rem;
    }
    
    .holomind-image,
    .resources-image {
        order: -1;
    }
    
    .holomind-img,
    .resources-img {
        max-width: 260px;
    }
}

/* ===== НОВЫЙ HERO БЛОК С ЛОГОТИПОМ ===== */
.hero-logo {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: #ffffff;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.hero-subtitle-new {
    font-size: 0.8rem;
    letter-spacing: 6px;
    color: #d4a853;
    font-weight: 300;
    text-transform: lowercase;
}

@media (max-width: 768px) {
    .hero-logo-img {
        height: 55px;
    }
    .hero-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    .hero-subtitle-new {
        font-size: 0.6rem;
        letter-spacing: 4px;
    }
}

/* ===== HOLOMIND БЛОК БЕЗ КАРТИНКИ (ЦЕНТРИРОВАННЫЙ) ===== */
.holomind-wrapper.centered {
    display: block;
    text-align: center;
}

.holomind-content.centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.holomind-content.centered p {
    text-align: center;
}

/* ===== СТРАНИЦА ВИДЕНИЕ (VISION) ===== */
.vision-page {
    padding-bottom: 80px;
}

.vision-header {
    text-align: center;
    margin-bottom: 3rem;
}

.vision-title {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: #fff;
    font-family: 'Times New Roman', serif;
}

.vision-section {
    margin-bottom: 3rem;
}

.vision-section-title {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #d4a853;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 168, 83, 0.3);
}

.vision-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 1.2rem;
}

.vision-quote {
    margin: 3rem 0;
    padding: 2rem 2rem;
    background: rgba(212, 168, 83, 0.08);
    border-left: 3px solid #d4a853;
    font-style: italic;
}

.vision-quote p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 0.8rem;
}

.vision-quote .quote-author {
    display: block;
    margin-top: 0.8rem;
    font-style: normal;
    color: #d4a853;
    font-size: 0.85rem;
}

.vision-map-link {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 168, 83, 0.2);
}

.vision-map-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid #d4a853;
    color: #d4a853;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.vision-map-btn:hover {
    background: #d4a853;
    color: #0a0c15;
}

@media (max-width: 768px) {
    .vision-title {
        font-size: 2rem;
    }
    .vision-section-title {
        font-size: 1.2rem;
    }
    .vision-quote {
        padding: 1.2rem;
    }
    .vision-quote p {
        font-size: 0.9rem;
    }
}

/* ===== СТИЛИ ДЛЯ ВНУТРЕННИХ СТРАНИЦ ===== */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #fff;
    font-family: 'Times New Roman', serif;
}

.page-content-inner {
    max-width: 900px;
    margin: 0 auto;
}

.page-content-inner p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 1.2rem;
}

.reflections-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.reflections-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

/* ===== СТРАНИЦА ОСНОВНЫЕ УЧЕНИЯ ===== */
.teachings-page {
    padding-bottom: 80px;
}

.teachings-header {
    text-align: center;
    margin-bottom: 3rem;
}

.teachings-title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: #fff;
    font-family: 'Times New Roman', serif;
    margin-bottom: 0.5rem;
}

.teachings-subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #d4a853;
    text-transform: uppercase;
}

.teachings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 2rem;
}

.teaching-card {
    display: block;
    background: rgba(15, 25, 50, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(212, 168, 83, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

.teaching-card:hover {
    transform: translateY(-8px);
    border-color: #d4a853;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.teaching-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.teaching-card-title {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #d4a853;
    margin-bottom: 0.8rem;
}

.teaching-card-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 1.2rem;
}

.teaching-link {
    display: inline-block;
    color: #d4a853;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-bottom: 1px solid #d4a853;
    padding-bottom: 3px;
    transition: 0.3s;
}

.teaching-card:hover .teaching-link {
    color: #e8c06e;
    border-bottom-color: #e8c06e;
}

@media (max-width: 850px) {
    .teachings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 550px) {
    .teachings-grid {
        grid-template-columns: 1fr;
    }
    .page-title {
        font-size: 1.8rem;
    }
}

/* ===== ПОДВАЛ (FOOTER) КАК НА СКРИНШОТЕ ===== */
.site-footer {
    background: rgba(3, 5, 12, 0.9);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(212, 168, 83, 0.2);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.footer-logo-section {
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-main {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 6px;
    color: #ffffff;
    font-family: 'Times New Roman', serif;
    display: block;
}

.footer-logo-sub {
    font-size: 1rem;
    letter-spacing: 8px;
    color: #d4a853;
    font-weight: 300;
    margin-top: 5px;
    display: block;
}

.footer-description {
    max-width: 600px;
    margin: 0 auto;
}

.footer-description p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b0b0c0;
    margin-bottom: 0.8rem;
}

.footer-tagline {
    color: #d4a853 !important;
    font-style: italic;
    margin-top: 15px !important;
    letter-spacing: 1px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 168, 83, 0.15);
}

.footer-bottom p {
    font-size: 0.7rem;
    color: #7a7a8a;
    margin-bottom: 0.5rem;
}

.footer-law {
    font-style: italic;
    color: #9a9aae !important;
}

/* Адаптив для подвала */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 25px;
        margin-top: 40px;
    }
    
    .footer-logo-main {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
    
    .footer-logo-sub {
        font-size: 0.7rem;
        letter-spacing: 5px;
    }
    
    .footer-description p {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-description p br {
        display: none;
    }
    
    .footer-logo-main {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
}

/* ===== ГАЛЕРЕЯ ДЛЯ СТРАНИЦЫ КОСМИЧЕСКАЯ ИСТОРИЯ ===== */
.cosmic-gallery {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 168, 83, 0.2);
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(15, 25, 50, 0.3);
    border: 1px solid rgba(212, 168, 83, 0.15);
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: #d4a853;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

/* Адаптив для галереи */
@media (max-width: 850px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 550px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ===== СТРАНИЦА КОСМИЧЕСКАЯ ИСТОРИЯ: БЛОКИ КАК НА СКРИНШОТЕ ===== */
.cosmic-history-page {
    padding-bottom: 80px;
}

.cosmic-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cosmic-main-title {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: #fff;
    font-family: 'Times New Roman', serif;
    margin-bottom: 1rem;
}

.cosmic-header > p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
}

/* Разделительная линия */
.cosmic-header hr {
    width: 80px;
    margin: 1.5rem auto;
    border: none;
    height: 1px;
    background: #d4a853;
    opacity: 0.5;
}

/* Сетка блоков */
.cosmic-blocks-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

/* Каждый блок — как карточка с картинкой слева */
.cosmic-block {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: rgba(15, 25, 50, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(212, 168, 83, 0.15);
    transition: all 0.3s ease;
}

.cosmic-block:hover {
    border-color: #d4a853;
    background: rgba(20, 30, 60, 0.4);
}

/* Картинка блока */
.cosmic-block-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 16px;
}

.cosmic-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cosmic-block:hover .cosmic-block-image img {
    transform: scale(1.05);
}

/* Контент блока */
.cosmic-block-content {
    flex: 1;
}

.cosmic-block-title {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #d4a853;
    margin-bottom: 0.5rem;
}

.cosmic-block-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #c0c0c0;
    margin-bottom: 0.8rem;
}

.cosmic-block-link {
    display: inline-block;
    color: #d4a853;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: 0.3s;
}

.cosmic-block-link:hover {
    color: #e8c06e;
    transform: translateX(3px);
}

/* Адаптив */
@media (max-width: 768px) {
    .cosmic-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.2rem;
    }
    
    .cosmic-block-image {
        width: 100px;
        height: 100px;
        margin-bottom: 0.5rem;
    }
    
    .cosmic-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cosmic-block-image {
        width: 80px;
        height: 80px;
    }
    
    .cosmic-block-title {
        font-size: 1rem;
    }
    
    .cosmic-block-text {
        font-size: 0.75rem;
    }
}

/* ===== СТРАНИЦА КОСМИЧЕСКАЯ ИСТОРИЯ (БЛОКИ С КАРТИНКАМИ) ===== */
.cosmic-history-page {
    padding-bottom: 80px;
}

.cosmic-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cosmic-main-title {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: #fff;
    font-family: 'Times New Roman', serif;
    margin-bottom: 1rem;
}

.cosmic-intro-text {
    max-width: 800px;
    margin: 0 auto;
}

.cosmic-intro-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 1rem;
}

.cosmic-intro-text hr {
    width: 80px;
    margin: 1.5rem auto;
    border: none;
    height: 1px;
    background: #d4a853;
    opacity: 0.5;
}

/* Сетка блоков */
.cosmic-blocks-grid {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 2rem;
}

/* Карточка блока */
.cosmic-block {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: rgba(15, 25, 50, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(212, 168, 83, 0.15);
    transition: all 0.3s ease;
}

.cosmic-block:hover {
    border-color: #d4a853;
    background: rgba(20, 30, 60, 0.4);
    transform: translateX(5px);
}

/* Картинка блока */
.cosmic-block-image {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    overflow: hidden;
    border-radius: 16px;
    background: #0a0f1a;
}

.cosmic-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cosmic-block:hover .cosmic-block-image img {
    transform: scale(1.05);
}

/* Контент блока */
.cosmic-block-content {
    flex: 1;
}

.cosmic-block-title {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #d4a853;
    margin-bottom: 0.5rem;
}

.cosmic-block-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #c0c0c0;
    margin-bottom: 0.8rem;
}

.cosmic-block-link {
    display: inline-block;
    color: #d4a853;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: 0.3s;
}

.cosmic-block-link:hover {
    color: #e8c06e;
    transform: translateX(3px);
}

/* Адаптив */
@media (max-width: 768px) {
    .cosmic-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.2rem;
    }
    
    .cosmic-block-image {
        width: 100px;
        height: 100px;
        margin-bottom: 0.5rem;
    }
    
    .cosmic-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cosmic-block-image {
        width: 80px;
        height: 80px;
    }
    
    .cosmic-block-title {
        font-size: 1rem;
    }
    
    .cosmic-block-text {
        font-size: 0.75rem;
    }
}

/* ===== СТРАНИЦА COSMIC HISTORY - ТОЧНО КАК НА СКРИНШОТЕ ===== */
.cosmic-history-page {
    padding-bottom: 80px;
}

/* Заголовок и вступление */
.cosmic-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cosmic-main-title {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: #fff;
    font-family: 'Times New Roman', serif;
    margin-bottom: 1rem;
}

.cosmic-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.separator {
    color: #d4a853;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin: 1rem 0;
}

/* Вертикальный список блоков */
.cosmic-blocks-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Каждый блок — картинка слева, текст справа */
.cosmic-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 168, 83, 0.15);
}

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

/* Картинка */
.cosmic-item-image {
    flex-shrink: 0;
    width: 100px;
}

.cosmic-item-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Контент */
.cosmic-item-content {
    flex: 1;
}

.cosmic-item-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #d4a853;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.cosmic-item-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #c0c0c0;
    margin-bottom: 0.5rem;
}

.cosmic-item-link {
    display: inline-block;
    color: #d4a853;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: 0.3s;
}

.cosmic-item-link:hover {
    color: #e8c06e;
    transform: translateX(3px);
}

/* Адаптив */
@media (max-width: 650px) {
    .cosmic-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cosmic-item-image {
        width: 80px;
        margin-bottom: 0.5rem;
    }
    
    .cosmic-main-title {
        font-size: 2rem;
    }
}

/* ===== СТРАНИЦА КОСМИЧЕСКАЯ ИСТОРИЯ (ТОЧНО КАК НА СКРИНШОТЕ) ===== */
.cosmic-history-page {
    padding-bottom: 80px;
}

/* Заголовок и вступление */
.cosmic-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cosmic-main-title {
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: #fff;
    font-family: 'Times New Roman', serif;
    margin-bottom: 1rem;
}

.cosmic-intro-text {
    max-width: 800px;
    margin: 0 auto;
}

.cosmic-intro-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 1.5rem;
}

.divider {
    width: 80px;
    height: 2px;
    background: #d4a853;
    margin: 1.5rem auto;
    opacity: 0.6;
}

/* Список блоков (вертикальный, как на скриншоте) */
.cosmic-blocks-list {
    max-width: 1000px;
    margin: 0 auto;
}

/* Каждый блок — горизонтальная карточка */
.cosmic-block-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 168, 83, 0.15);
}

.cosmic-block-item:last-child {
    border-bottom: none;
}

/* Картинка блока */
.cosmic-block-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 12px;
}

.cosmic-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cosmic-block-item:hover .cosmic-block-image img {
    transform: scale(1.05);
}

/* Контент блока */
.cosmic-block-details {
    flex: 1;
}

.cosmic-block-title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #d4a853;
    margin-bottom: 0.5rem;
}

.cosmic-block-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #c0c0c0;
    margin-bottom: 0.8rem;
}

.cosmic-block-link {
    display: inline-block;
    color: #d4a853;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.cosmic-block-link:hover {
    color: #e8c06e;
    transform: translateX(3px);
}

/* Адаптив */
@media (max-width: 768px) {
    .cosmic-block-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .cosmic-block-image {
        width: 80px;
        height: 80px;
    }
    
    .cosmic-main-title {
        font-size: 2rem;
    }
    
    .cosmic-intro-text p {
        font-size: 0.9rem;
    }
    
    .cosmic-block-title {
        font-size: 1rem;
    }
    
    .cosmic-block-description {
        font-size: 0.8rem;
    }
}

/* ===== СЕТКА 3x3 ДЛЯ СТРАНИЦЫ КОСМИЧЕСКАЯ ИСТОРИЯ ===== */
.cosmic-grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.cosmic-card {
    background: rgba(15, 25, 50, 0.4);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 168, 83, 0.2);
    transition: all 0.3s ease;
}

.cosmic-card:hover {
    transform: translateY(-8px);
    border-color: #d4a853;
    background: rgba(25, 35, 65, 0.5);
}

.cosmic-card-link-wrapper {
    display: block;
    text-decoration: none;
    padding: 20px;
}

.cosmic-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

.cosmic-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cosmic-card:hover .cosmic-card-image img {
    transform: scale(1.05);
}

.cosmic-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #d4a853;
    margin-bottom: 10px;
    line-height: 1.4;
}

.cosmic-card-excerpt {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #c0c0c0;
    margin-bottom: 12px;
}

.cosmic-card-readmore {
    display: inline-block;
    color: #d4a853;
    font-size: 0.7rem;
    letter-spacing: 1px;
    border-bottom: 1px solid #d4a853;
    padding-bottom: 3px;
    transition: 0.3s;
}

.cosmic-card:hover .cosmic-card-readmore {
    color: #e8c06e;
    border-bottom-color: #e8c06e;
}

.no-topics {
    text-align: center;
    color: #c0c0c0;
    font-size: 1rem;
    padding: 40px;
}

/* Адаптив */
@media (max-width: 850px) {
    .cosmic-grid-3x3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 550px) {
    .cosmic-grid-3x3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== СТИЛИ ДЛЯ КРАСИВЫХ СТРАНИЦ ===== */
.fullwidth-header {
    width: 100%;
    margin-bottom: 2rem;
}
.fullwidth-header img {
    width: 100%;
    height: auto;
    display: block;
}
.cosmic-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 20px;
}
.cosmic-title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #d4a853;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Times New Roman', serif;
}
.cosmic-lead p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e8e8e8;
    text-align: center;
}
.cosmic-divider {
    width: 80px;
    height: 2px;
    background: #d4a853;
    margin: 2rem auto;
    opacity: 0.5;
}
.cosmic-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 1.2rem;
}
.cosmic-text strong {
    color: #d4a853;
}
.cosmic-quote {
    background: rgba(212,168,83,0.06);
    border-left: 3px solid #d4a853;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
}
.quote-author {
    margin-top: 0.8rem;
    text-align: right;
    font-style: normal;
    color: #d4a853;
}
.cosmic-pdf-section {
    text-align: center;
    margin: 2rem 0;
}
.cosmic-pdf-button {
    display: inline-block;
    background: #d4a853;
    color: #0a0c15;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
}
@media (max-width: 768px) {
    .cosmic-title { font-size: 1.8rem; }
    .cosmic-container { padding: 1rem 15px; }
}

/* ===== СТРАНИЦА ВНУТРЕННЕЕ ВРЕМЯ ===== */
.innertime-page {
    background: #070b16;
    color: #d0d0d0;
    padding-top: 96px;
}

.innertime-hero {
    background:
        linear-gradient(110deg, rgba(4, 7, 17, 0.96), rgba(11, 16, 31, 0.82)),
        radial-gradient(circle at 78% 24%, rgba(212, 168, 83, 0.18), transparent 30%),
        radial-gradient(circle at 18% 82%, rgba(65, 113, 160, 0.22), transparent 36%);
    min-height: 76vh;
    padding: 90px 0 78px;
}

.innertime-hero-inner {
    align-items: center;
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.74fr);
}

.innertime-kicker {
    color: #d4a853;
    font-size: 0.72rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.innertime-title {
    color: #d4a853;
    font-family: 'Times New Roman', serif;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.innertime-subtitle {
    color: #e8e8e8;
    font-family: 'Times New Roman', serif;
    font-size: 1.75rem;
    line-height: 1.35;
    margin: 0 auto 1.3rem;
    max-width: 720px;
}

.innertime-mantra {
    color: #d4a853;
    font-size: 0.82rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.innertime-hero-media,
.innertime-image-wrap,
.innertime-video-card {
    margin: 0;
}

.innertime-hero-media img,
.innertime-image-wrap img,
.innertime-video-card img {
    border-radius: 14px;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
    display: block;
    height: auto;
    width: 100%;
}

.innertime-hero-media img {
    border: 1px solid rgba(212, 168, 83, 0.26);
}

.innertime-section {
    background: #0b1223;
    padding: 76px 0;
}

.innertime-section:nth-of-type(odd) {
    background: #080d19;
}

.innertime-section-dark {
    background:
        linear-gradient(rgba(3, 6, 14, 0.88), rgba(3, 6, 14, 0.88)),
        radial-gradient(circle at 12% 16%, rgba(212, 168, 83, 0.12), transparent 34%);
}

.innertime-section-stephanie {
    background:
        linear-gradient(120deg, rgba(11, 17, 32, 0.96), rgba(3, 6, 14, 0.94)),
        radial-gradient(circle at 80% 30%, rgba(212, 168, 83, 0.16), transparent 30%);
}

.innertime-two-column {
    align-items: center;
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.innertime-aligned-start {
    align-items: start;
}

.innertime-copy h2,
.innertime-centered h2 {
    color: #d4a853;
    font-family: 'Times New Roman', serif;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.22;
    margin-bottom: 1rem;
}

.innertime-copy p:not(.innertime-kicker) {
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.1rem;
}

.innertime-copy h3,
.innertime-centered h3 {
    color: #d4a853;
    font-family: 'Times New Roman', serif;
    font-size: 1.45rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.innertime-text p,
.innertime-centered p,
.innertime-plan p {
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.1rem;
}

.innertime-text strong {
    color: #d4a853;
    font-weight: 500;
}

.innertime-centered {
    margin: 0 auto;
    max-width: 880px;
    text-align: center;
}

.innertime-join {
    margin-bottom: 44px;
}

.innertime-small {
    color: #d0d0d0;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.innertime-symbol {
    display: block;
    height: auto;
    margin: 0 auto 24px;
    opacity: 0.86;
    width: 108px;
}

.innertime-list,
.innertime-plan-list {
    list-style: none;
    margin: 1.6rem 0 0;
    padding: 0;
}

.innertime-list li,
.innertime-plan-list li {
    color: #d0d0d0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.innertime-list li::before,
.innertime-plan-list li::before {
    color: #d4a853;
    content: '+';
    left: 0;
    position: absolute;
    top: 0;
}

.innertime-video-link {
    color: #d4a853;
    display: inline-block;
    font-size: 0.82rem;
    letter-spacing: 1.4px;
    margin: 0.8rem 0 1.4rem;
    text-decoration: underline;
    text-transform: uppercase;
    text-underline-offset: 5px;
}

.innertime-video-link:hover {
    color: #ffffff;
}

.innertime-video-card {
    border: 1px solid rgba(212, 168, 83, 0.28);
    border-radius: 14px;
    display: block;
    overflow: hidden;
    position: relative;
}

.innertime-video-card::after {
    align-items: center;
    background: rgba(212, 168, 83, 0.92);
    border-radius: 50%;
    color: #07101d;
    content: '';
    display: flex;
    height: 58px;
    justify-content: center;
    left: 50%;
    padding-left: 4px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, background 0.25s ease;
    width: 58px;
}

.innertime-video-card::before {
    border-bottom: 11px solid transparent;
    border-left: 16px solid #07101d;
    border-top: 11px solid transparent;
    content: '';
    left: 50%;
    margin-left: 3px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.innertime-video-card:hover::after {
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.06);
}

.innertime-pricing {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.innertime-plan {
    background: rgba(10, 17, 34, 0.78);
    border: 1px solid rgba(212, 168, 83, 0.22);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    padding: 34px;
}

.innertime-plan h4 {
    color: #d4a853;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
}

.innertime-price {
    color: #ffffff !important;
    font-family: 'Times New Roman', serif;
    font-size: 2.15rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}

.innertime-btn {
    background: transparent;
    border: 1px solid #d4a853;
    border-radius: 40px;
    color: #d4a853;
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    margin-top: 1.2rem;
    padding: 12px 28px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.innertime-btn:hover,
.innertime-btn-primary {
    background: #d4a853;
    color: #0a0c15;
}

.innertime-btn-primary:hover {
    background: transparent;
    color: #d4a853;
}

@media (max-width: 850px) {
    .innertime-page {
        padding-top: 86px;
    }

    .innertime-hero {
        min-height: 68vh;
        padding: 70px 0 54px;
    }

    .innertime-hero-inner {
        gap: 34px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .innertime-hero-media {
        justify-self: center;
        max-width: 360px;
        width: 100%;
    }

    .innertime-title {
        font-size: 2.6rem;
        letter-spacing: 2px;
    }

    .innertime-subtitle {
        font-size: 1.25rem;
    }

    .innertime-two-column,
    .innertime-pricing {
        grid-template-columns: 1fr;
    }

    .innertime-two-column {
        gap: 28px;
    }

    .innertime-section {
        padding: 54px 0;
    }

    .innertime-copy,
    .innertime-text {
        text-align: center;
    }

    .innertime-copy h2,
    .innertime-centered h2 {
        font-size: 1.65rem;
    }

    .innertime-list,
    .innertime-plan-list {
        text-align: left;
    }

    .innertime-video-link {
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .innertime-title {
        font-size: 2.15rem;
    }

    .innertime-kicker,
    .innertime-mantra {
        letter-spacing: 1.5px;
    }

    .innertime-plan {
        padding: 24px 20px;
    }

    .innertime-video-card::after {
        height: 48px;
        width: 48px;
    }
}

/* ===== ЕДИНЫЙ КОСМИЧЕСКИЙ СТИЛЬ ===== */
:root {
    --cosmic-night: #01040d;
    --cosmic-deep: #06142d;
    --cosmic-blue: #0f4f84;
    --cosmic-cyan: #61b4d1;
    --cosmic-gold: #d4a853;
    --cosmic-gold-soft: rgba(212, 168, 83, 0.3);
    --cosmic-text: #edf3ff;
    --cosmic-muted: #c7d0df;
    --cosmic-panel: rgba(5, 15, 36, 0.72);
    --cosmic-panel-strong: rgba(8, 24, 55, 0.84);
    --cosmic-border: rgba(212, 168, 83, 0.3);
    --cosmic-shadow: 0 26px 70px rgba(0, 0, 0, 0.42), 0 0 34px rgba(39, 116, 174, 0.12);
    --cosmic-wave: rgba(64, 142, 198, 0.22);
}

html {
    background: var(--cosmic-night);
    min-height: 100%;
}

body {
    background:
        radial-gradient(ellipse at 22% 18%, rgba(52, 137, 202, 0.42) 0, rgba(20, 63, 114, 0.2) 29%, transparent 58%),
        radial-gradient(ellipse at 78% 10%, rgba(212, 168, 83, 0.22) 0, rgba(121, 91, 47, 0.11) 24%, transparent 47%),
        radial-gradient(ellipse at 66% 66%, rgba(21, 87, 154, 0.36) 0, rgba(10, 42, 86, 0.22) 34%, transparent 62%),
        radial-gradient(ellipse at 34% 82%, rgba(63, 171, 205, 0.2) 0, transparent 42%),
        linear-gradient(180deg, #030817 0%, #06142d 38%, #020613 72%, #01030a 100%);
    color: var(--cosmic-text);
    isolation: isolate;
    overflow-x: hidden;
    position: relative;
}

body::before {
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 0.8px, transparent 1.4px) 0 0 / 72px 72px,
        radial-gradient(circle, rgba(139, 207, 232, 0.78) 0 0.9px, transparent 1.5px) 22px 34px / 108px 108px,
        radial-gradient(circle, rgba(212, 168, 83, 0.7) 0 0.8px, transparent 1.6px) 54px 18px / 148px 148px,
        repeating-radial-gradient(circle at 40% 32%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 18px),
        linear-gradient(180deg, rgba(1, 3, 11, 0.02), rgba(1, 3, 11, 0.58));
    content: '';
    inset: 0;
    opacity: 0.64;
    pointer-events: none;
    position: fixed;
    z-index: -2;
}

body::after {
    background:
        radial-gradient(ellipse at 18% 36%, rgba(65, 164, 214, 0.3), transparent 44%),
        radial-gradient(ellipse at 72% 22%, rgba(32, 112, 176, 0.28), transparent 42%),
        radial-gradient(ellipse at 48% 92%, rgba(88, 174, 210, 0.22), transparent 48%),
        radial-gradient(ellipse at 84% 74%, rgba(212, 168, 83, 0.12), transparent 38%);
    content: '';
    filter: blur(3px);
    inset: 0;
    opacity: 0.95;
    pointer-events: none;
    position: fixed;
    z-index: -1;
}

.stars {
    opacity: 0.6;
}

body,
.page-content,
.page-content-inner,
.vision-content,
.cosmic-intro-text,
.cosmic-text p,
.innertime-text p,
.innertime-centered p,
.innertime-copy p:not(.innertime-kicker),
.cosmic-card-excerpt,
.item-excerpt {
    color: var(--cosmic-muted);
}

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

.hero,
.hero-main,
.section,
.section-images,
.section-stephanie,
.stephanie-block,
.info-block,
.quote-block-large,
.law-of-time-block,
.course-block,
.holomind-block,
.resources-block,
.vision-page,
.reflections-page,
.cosmic-history-page,
.innertime-page,
.innertime-hero,
.innertime-section {
    background: transparent;
    position: relative;
}

main {
    position: relative;
    z-index: 1;
}

.section,
.section-images,
.section-stephanie,
.info-block,
.quote-block-large,
.law-of-time-block,
.course-block,
.holomind-block,
.resources-block,
.innertime-section {
    overflow: hidden;
}

.section::before,
.section-images::before,
.section-stephanie::before,
.info-block::before,
.quote-block-large::before,
.law-of-time-block::before,
.course-block::before,
.holomind-block::before,
.resources-block::before,
.innertime-section::before {
    background:
        radial-gradient(90% 100% at 18% 100%, rgba(83, 176, 219, 0.24), transparent 62%),
        radial-gradient(80% 100% at 82% 100%, rgba(212, 168, 83, 0.16), transparent 58%),
        linear-gradient(90deg, transparent, rgba(92, 177, 218, 0.24), rgba(212, 168, 83, 0.14), transparent);
    border-bottom: 1px solid rgba(212, 168, 83, 0.18);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    content: '';
    height: 112px;
    left: -10%;
    opacity: 0.76;
    pointer-events: none;
    position: absolute;
    right: -10%;
    top: -70px;
    z-index: 0;
}

.section::after,
.section-images::after,
.section-stephanie::after,
.info-block::after,
.quote-block-large::after,
.law-of-time-block::after,
.course-block::after,
.holomind-block::after,
.resources-block::after,
.innertime-section::after {
    background:
        radial-gradient(60% 100% at 50% 0%, rgba(80, 162, 210, 0.22), transparent 66%),
        radial-gradient(44% 80% at 22% 0%, rgba(212, 168, 83, 0.12), transparent 62%),
        radial-gradient(40% 74% at 82% 0%, rgba(69, 146, 202, 0.16), transparent 64%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    content: '';
    height: 94px;
    left: -8%;
    opacity: 0.72;
    pointer-events: none;
    position: absolute;
    right: -8%;
    top: 0;
    z-index: 0;
}

.section > .container,
.section-images > .container,
.section-stephanie > .container,
.info-block > .container,
.quote-block-large > .container,
.law-of-time-block > .container,
.course-block > .container,
.holomind-block > .container,
.resources-block > .container,
.innertime-section > .container {
    position: relative;
    z-index: 1;
}

.cosmic-container,
.page-content,
.page-content .cosmic-container,
.page-content-inner,
.vision-content,
.cosmic-intro-text,
.innertime-centered,
.cosmic-history-page .cosmic-header,
.reflections-page .page-header,
.vision-header {
    background:
        linear-gradient(145deg, rgba(7, 20, 46, 0.78), rgba(2, 8, 22, 0.48)),
        radial-gradient(circle at 14% 16%, rgba(212, 168, 83, 0.11), transparent 38%),
        radial-gradient(circle at 88% 12%, rgba(72, 160, 212, 0.16), transparent 38%);
    border: 1px solid rgba(212, 168, 83, 0.18);
    border-radius: 8px;
    box-shadow: 0 22px 68px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.page-content,
.page-content-inner,
.vision-content,
.cosmic-intro-text,
.cosmic-history-page .cosmic-header,
.reflections-page .page-header {
    padding: clamp(24px, 4vw, 42px);
}

.page-content .fullwidth-header {
    margin-left: calc(clamp(24px, 4vw, 42px) * -1);
    margin-right: calc(clamp(24px, 4vw, 42px) * -1);
    margin-top: calc(clamp(24px, 4vw, 42px) * -1);
    overflow: hidden;
}

.page-content .fullwidth-header img,
.fullwidth-header img,
.item-image img,
.cosmic-card-image img,
.innertime-hero-media img,
.innertime-image-wrap img,
.gallery-item img,
.info-img,
.quote-img,
.law-img,
.course-img,
.holomind-img,
.resources-img {
    border: 1px solid rgba(212, 168, 83, 0.18);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.card,
.teaching-card,
.grid-1x3 .grid-item,
.cosmic-card,
.cosmic-block,
.cosmic-block-item,
.gallery-item,
.innertime-plan,
.innertime-video-card,
.image-card {
    background:
        linear-gradient(150deg, rgba(10, 30, 68, 0.84), rgba(3, 10, 25, 0.82)),
        radial-gradient(circle at 18% 12%, rgba(212, 168, 83, 0.12), transparent 38%),
        radial-gradient(circle at 88% 4%, rgba(91, 187, 229, 0.18), transparent 34%);
    border: 1px solid var(--cosmic-border);
    border-radius: 8px;
    box-shadow: var(--cosmic-shadow);
    backdrop-filter: blur(10px);
    transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, transform 0.28s ease;
}

.card:hover,
.teaching-card:hover,
.grid-1x3 .grid-item:hover,
.cosmic-card:hover,
.cosmic-block:hover,
.cosmic-block-item:hover,
.gallery-item:hover,
.innertime-plan:hover,
.innertime-video-card:hover,
.image-card:hover {
    background:
        linear-gradient(150deg, rgba(14, 42, 88, 0.88), rgba(5, 16, 36, 0.82)),
        radial-gradient(circle at 18% 12%, rgba(212, 168, 83, 0.16), transparent 40%),
        radial-gradient(circle at 88% 4%, rgba(100, 197, 236, 0.22), transparent 36%);
    border-color: rgba(212, 168, 83, 0.54);
    box-shadow: 0 28px 76px rgba(0, 0, 0, 0.42), 0 0 34px rgba(61, 159, 212, 0.16), 0 0 24px rgba(212, 168, 83, 0.1);
    transform: translateY(-4px);
}

.grid-1x3 {
    align-items: stretch;
}

.grid-1x3 .grid-item,
.cosmic-card,
.innertime-plan {
    display: flex;
    flex-direction: column;
}

.grid-1x3 .grid-item .item-link,
.cosmic-card-readmore {
    margin-top: auto;
}

.grid-1x3 .grid-item .item-link {
    border-bottom: 1px solid rgba(212, 168, 83, 0.82);
    font-size: 0.8rem;
    padding: 10px 22px;
}

.grid-1x3 .grid-item .item-link:hover {
    border-bottom-color: var(--cosmic-gold);
    color: #07101d;
    text-decoration: none;
}

main .page-content .cosmic-container {
    background:
        linear-gradient(145deg, rgba(7, 20, 46, 0.78), rgba(2, 8, 22, 0.48)),
        radial-gradient(circle at 14% 16%, rgba(212, 168, 83, 0.11), transparent 38%),
        radial-gradient(circle at 88% 12%, rgba(72, 160, 212, 0.16), transparent 38%);
    border: 1px solid rgba(212, 168, 83, 0.18);
    border-radius: 8px;
    box-shadow: 0 22px 68px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    padding: clamp(24px, 4vw, 42px);
}

.btn,
.btn-outline,
.course-btn,
.holomind-btn,
.resources-btn,
.vision-map-btn,
.cosmic-pdf-button,
.innertime-btn,
.item-link,
.teaching-link,
.cosmic-card-readmore,
.cosmic-block-link,
.cosmic-item-link {
    background: transparent;
    border: 1px solid rgba(212, 168, 83, 0.82);
    border-radius: 40px;
    box-shadow: 0 0 0 rgba(212, 168, 83, 0);
    color: var(--cosmic-gold);
    display: inline-block;
    padding: 10px 24px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.btn:hover,
.btn-outline:hover,
.course-btn:hover,
.holomind-btn:hover,
.resources-btn:hover,
.vision-map-btn:hover,
.cosmic-pdf-button:hover,
.innertime-btn:hover,
.item-link:hover,
.teaching-link:hover,
.cosmic-card:hover .cosmic-card-readmore,
.cosmic-block-link:hover,
.cosmic-item-link:hover {
    background: var(--cosmic-gold);
    border-color: var(--cosmic-gold);
    box-shadow: 0 0 24px rgba(212, 168, 83, 0.2);
    color: #07101d;
    transform: translateY(-1px);
}

.innertime-btn-primary {
    background: var(--cosmic-gold);
    color: #07101d;
}

.innertime-btn-primary:hover {
    background: transparent;
    color: var(--cosmic-gold);
}

.hero-title,
.hero h1,
.vision-title,
.page-title,
.cosmic-main-title,
.innertime-title,
.cosmic-title {
    text-shadow: 0 0 34px rgba(84, 158, 208, 0.22);
}

.hero-subtitle,
.hero-subtitle-new,
.innertime-kicker,
.innertime-mantra,
.section-title span,
.cosmic-title,
.vision-section-title,
.children-title,
.card h3,
.item-title a,
.cosmic-card-title,
.innertime-copy h2,
.innertime-centered h2 {
    color: var(--cosmic-gold);
}

.section-dark,
.innertime-section-dark,
.innertime-section:nth-of-type(odd),
.law-of-time-block,
.resources-block,
.course-block {
    background:
        linear-gradient(180deg, rgba(3, 9, 23, 0.74), rgba(9, 25, 55, 0.5) 48%, rgba(3, 8, 20, 0.68)),
        radial-gradient(ellipse at 22% 0%, rgba(212, 168, 83, 0.14), transparent 38%),
        radial-gradient(ellipse at 80% 92%, rgba(56, 145, 204, 0.22), transparent 42%);
}

.section:nth-of-type(even),
.section-images,
.section-stephanie,
.info-block,
.quote-block-large,
.holomind-block,
.innertime-section:nth-of-type(even) {
    background:
        linear-gradient(180deg, rgba(5, 16, 38, 0.44), rgba(2, 7, 18, 0.36)),
        radial-gradient(ellipse at 12% 8%, rgba(55, 142, 202, 0.16), transparent 34%),
        radial-gradient(ellipse at 88% 100%, rgba(212, 168, 83, 0.09), transparent 38%);
}

.innertime-hero {
    background:
        linear-gradient(110deg, rgba(2, 6, 18, 0.9), rgba(7, 20, 45, 0.74)),
        radial-gradient(circle at 76% 24%, rgba(212, 168, 83, 0.24), transparent 30%),
        radial-gradient(circle at 18% 82%, rgba(67, 157, 210, 0.34), transparent 38%),
        radial-gradient(ellipse at 48% 20%, rgba(24, 89, 158, 0.32), transparent 52%);
}

.cosmic-quote,
.vision-quote,
.hero-quote,
.law-quote-large,
.info-highlight {
    background: rgba(212, 168, 83, 0.08);
    border-color: var(--cosmic-gold);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.site-footer {
    background:
        linear-gradient(180deg, rgba(3, 9, 22, 0.94), rgba(1, 4, 12, 0.98)),
        radial-gradient(ellipse at 50% 0%, rgba(57, 142, 198, 0.18), transparent 58%);
    border-top: 1px solid rgba(212, 168, 83, 0.28);
    box-shadow: 0 -18px 54px rgba(0, 0, 0, 0.28);
}

@media (max-width: 850px) {
    .cosmic-container,
    .page-content,
    .page-content .cosmic-container,
    .page-content-inner,
    .vision-content,
    .cosmic-intro-text,
    .cosmic-history-page .cosmic-header {
        padding: 24px;
    }

    .grid-1x3 .grid-item,
    .cosmic-card,
    .innertime-plan,
    .teaching-card,
    .card {
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
    }

    .section::before,
    .section-images::before,
    .section-stephanie::before,
    .info-block::before,
    .quote-block-large::before,
    .law-of-time-block::before,
    .course-block::before,
    .holomind-block::before,
    .resources-block::before,
    .innertime-section::before {
        height: 78px;
        top: -48px;
    }

    .section::after,
    .section-images::after,
    .section-stephanie::after,
    .info-block::after,
    .quote-block-large::after,
    .law-of-time-block::after,
    .course-block::after,
    .holomind-block::after,
    .resources-block::after,
    .innertime-section::after {
        height: 68px;
    }
}

@media (max-width: 550px) {
    body::before {
        background-size: 64px 64px, 98px 98px, 128px 128px, auto, auto;
        opacity: 0.48;
    }

    .cosmic-container,
    .page-content,
    .page-content .cosmic-container,
    .page-content-inner,
    .vision-content,
    .cosmic-intro-text,
    .cosmic-history-page .cosmic-header {
        border-radius: 8px;
        padding: 20px 16px;
    }

    .btn,
    .btn-outline,
    .course-btn,
    .holomind-btn,
    .resources-btn,
    .vision-map-btn,
    .cosmic-pdf-button,
    .innertime-btn,
    .item-link,
    .teaching-link,
    .cosmic-card-readmore,
    .cosmic-block-link,
    .cosmic-item-link {
        max-width: 100%;
        padding: 10px 18px;
        text-align: center;
    }
}
