/*under-construction.css*/
/* ===================================
   ПЕРЕМЕННЫЕ (из основного сайта)
   =================================== */
:root {
    --color-primary: #30A6DAFF;
    --color-accent: #05ABF2;
    --color-primary-dark: #048DC8;
    --color-text: #333333;
    --color-text-secondary: #666666;
    --color-text-light: #999999;
    --color-bg: #FFFFFF;
    --color-bg-light: #F9FAFB;
    --color-bg-blue: #F4F7FF;
    --color-primary-light: #EBF8FF;
    --color-border: #E5E7EB;
    --color-white: #FFFFFF;

    --font-heading: 'Playpen Sans', cursive, sans-serif;
    --font-body: 'Manrope', sans-serif;

    --fz-xs: 0.75rem;
    --fz-sm: 0.875rem;
    --fz-base: 1rem;
    --fz-md: 1.125rem;
    --fz-lg: 1.25rem;
    --fz-xl: 1.5rem;
    --fz-2xl: 1.875rem;
    --fz-3xl: 2.25rem;

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 600;
    --fw-black: 650;

    --lh-normal: 1.6;

    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, .05), 0 8px 10px -6px rgba(15, 23, 42, .02);
    --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, .08);
    --shadow-blue: 0 8px 24px rgba(48, 166, 218, .3);
    --shadow-blue-hover: 0 12px 32px rgba(48, 166, 218, .45);

    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ===================================
   СБРОС
   =================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body), serif;
    font-size: var(--fz-base);
    font-weight: var(--fw-regular);
    line-height: var(--lh-normal);
    color: var(--color-text);
    background-color: var(--color-bg-blue);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

::selection {
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
}

/* ===================================
   СТРАНИЦА В РАЗРАБОТКЕ
   =================================== */
.uc-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    overflow: hidden;
}

/* ===================================
   АНИМИРОВАННЫЙ ФОН
   =================================== */
.uc-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Голубое пятно */
.uc-bg__blob {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg,
    rgba(48, 166, 218, .12) 0%,
    rgba(5, 171, 242, .08) 100%
    );
    filter: blur(80px);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphBlob 20s ease-in-out infinite alternate;
}

@keyframes morphBlob {
    0% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate3d(-5%, 5%, 0) scale(1.1) rotate(10deg);
    }
    100% {
        transform: translate3d(5%, -5%, 0) scale(0.9) rotate(-10deg);
    }
}

/* Точечный паттерн */
.uc-bg__dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--color-primary) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    opacity: 0.1;
    animation: driftDots 60s linear infinite;
}

@keyframes driftDots {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(40px, 40px, 0);
    }
}

/* Фрактальное дерево */
.uc-bg__tree {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    opacity: 0.12;
    -webkit-mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            black 20%,
            black 70%,
            transparent 100%
    );
    mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            black 20%,
            black 70%,
            transparent 100%
    );
}

/* ===================================
   КОНТЕНТ
   =================================== */
.uc-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Иконка инструментов */
.uc-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius-lg);
    color: var(--color-white);
    box-shadow: var(--shadow-blue);
    animation: float 3s ease-in-out infinite, rotate 10s linear infinite;
}

.uc-icon svg {
    width: 40px;
    height: 40px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Заголовок */
.uc-title {
    font-family: var(--font-body), serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--fw-regular);
    color: var(--color-text);
    line-height: 1.2;
    margin: 0;
}

.uc-title__accent {
    display: block;
    font-family: var(--font-heading), serif;
    font-weight: var(--fw-black);
    color: var(--color-accent);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-top: var(--space-2);
}

/* Подзаголовок */
.uc-subtitle {
    font-size: var(--fz-md);
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 500px;
}

/* ===================================
   КНОПКА
   =================================== */
.uc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading), serif;
    font-size: var(--fz-sm);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: var(--shadow-blue);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    margin-top: var(--space-4);
}

.uc-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.uc-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue-hover);
}

.uc-btn:hover::before {
    opacity: 1;
}

.uc-btn svg {
    position: relative;
    z-index: 1;
}

.uc-btn span {
    position: relative;
    z-index: 1;
}

/* ===================================
   КОНТАКТНАЯ ИНФОРМАЦИЯ
   =================================== */
.uc-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border);
    width: 100%;
}

.uc-contact__text {
    font-size: var(--fz-sm);
    color: var(--color-text-secondary);
}

.uc-contact__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading), serif;
    font-size: var(--fz-md);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.uc-contact__link:hover {
    color: var(--color-primary-dark);
}

/* ===================================
   АДАПТИВНОСТЬ
   =================================== */
@media (max-width: 768px) {
    .uc-page {
        padding: var(--space-4);
    }

    .uc-icon {
        width: 64px;
        height: 64px;
    }

    .uc-icon svg {
        width: 32px;
        height: 32px;
    }

    .uc-title {
        font-size: 1.5rem;
    }

    .uc-title__accent {
        font-size: 1.875rem;
    }

    .uc-subtitle {
        font-size: var(--fz-base);
    }

    .uc-btn {
        padding: 0.75rem 1.5rem;
        font-size: var(--fz-xs);
    }

    .uc-bg__tree {
        width: 600px;
        height: 600px;
        left: -30%;
    }

    .uc-bg__blob {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .uc-content {
        gap: var(--space-4);
    }

    .uc-title br {
        display: none;
    }

    .uc-subtitle br {
        display: none;
    }

    .uc-contact {
        margin-top: var(--space-4);
        padding-top: var(--space-4);
    }
}

/* ===================================
   ПЕЧАТЬ
   =================================== */
@media print {
    .uc-bg,
    .uc-icon,
    .uc-progress,
    .uc-btn {
        display: none !important;
    }

    body {
        background: white;
    }

    .uc-content {
        color: black;
    }
}
