/* MondoDTF — Coming Soon */

:root {
    --primary: #004a80;
    --primary-dark: #003660;
    --primary-light: #1a6aad;
    --accent: #f1a139;
    --accent-dark: #d88a1f;
    --dark: #0b1a2e;
    --dark-soft: #132640;
    --text: #e8f0fa;
    --text-muted: #8ba3be;
    --white: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.06);
    --card-border: rgba(255, 255, 255, 0.1);
    --radius: 16px;
    --shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--dark);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background */
.bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(0, 74, 128, 0.28) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(241, 161, 57, 0.14) 0%, transparent 55%),
        linear-gradient(160deg, #0b1a2e 0%, #0d2240 50%, #091525 100%);
}

.bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 80%);
}

.bg__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.bg__orb--1 {
    width: 420px;
    height: 420px;
    background: rgba(0, 74, 128, 0.22);
    top: -120px;
    right: -80px;
}

.bg__orb--2 {
    width: 300px;
    height: 300px;
    background: rgba(241, 161, 57, 0.12);
    bottom: 10%;
    left: -60px;
    animation-delay: -4s;
}

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

/* Layout */
.page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    padding: 28px 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--white);
}

.logo__wrap {
    display: inline-block;
    background: var(--white);
    padding: 14px 22px;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.logo__img {
    height: 88px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
}

.logo__fallback {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: -0.5px;
    box-shadow: 0 8px 24px rgba(0, 110, 198, 0.4);
}

.logo__text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo__text span {
    color: var(--accent);
}

/* Hero */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 40px 0 64px;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(241, 161, 57, 0.12);
    border: 1px solid rgba(241, 161, 57, 0.35);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 20px;
}

.hero__title em {
    font-style: normal;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 36px;
}

/* Progress */
.progress-block {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 24px;
    backdrop-filter: blur(12px);
}

.progress-block__label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.875rem;
}

.progress-block__label strong {
    color: var(--white);
}

.progress-block__label span {
    color: var(--accent);
    font-weight: 600;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    overflow: hidden;
}

.progress-bar__fill {
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 100px;
    animation: progress-shimmer 2.5s ease-in-out infinite;
}

@keyframes progress-shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

.progress-block__note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Service cards */
.services {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 24px 28px;
    backdrop-filter: blur(12px);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
    border-color: rgba(0, 74, 128, 0.45);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.service-card__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.service-card__icon--dtf {
    background: linear-gradient(135deg, rgba(0, 74, 128, 0.35), rgba(0, 74, 128, 0.12));
    border: 1px solid rgba(0, 74, 128, 0.35);
}

.service-card__icon--uv {
    background: linear-gradient(135deg, rgba(241, 161, 57, 0.28), rgba(241, 161, 57, 0.1));
    border: 1px solid rgba(241, 161, 57, 0.35);
}

.service-card__tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.service-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.service-card__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.service-card__soon {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
    background: rgba(0, 74, 128, 0.15);
    padding: 4px 10px;
    border-radius: 100px;
}

/* Contact strip */
.contact-strip {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.contact-strip__text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-strip__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 12px 24px;
    border-radius: 100px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(0, 74, 128, 0.35);
}

.contact-strip__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 74, 128, 0.45);
}

/* Features row */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--card-border);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 64px;
}

.feature {
    background: var(--dark-soft);
    padding: 24px 20px;
    text-align: center;
}

.feature__num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 4px;
}

.feature__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--card-border);
    margin-top: auto;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer__domain {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer__domain strong {
    color: var(--primary-light);
}

/* Responsive */
@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .hero {
        padding: 24px 0 48px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .contact-strip {
        flex-direction: column;
        align-items: flex-start;
    }
}
