:root {
    --bg: #121212;
    --bg-2: #212121;
    --card: rgba(13, 13, 13, 0.72);
    --card-hover: rgba(13, 13, 13, 0.9);
    --line: rgba(255, 255, 255, 0.08);
    --text: #eaeaea;
    --muted: rgba(238, 242, 255, 0.72);
    --accent: #fe735b;
    --accent-2: #e66550;
    --glow: rgba(254, 115, 91, 0.22);
    --success: #94f7c5;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #121212;
    color: var(--text);
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: 0;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.45;
}

body::before {
    width: 260px;
    height: 260px;
    top: 8%;
    left: -60px;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: .25s ease;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}

.page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.shell {
    width: 100%;
    max-width: 1180px;
}

.hero {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    padding: 42px 28px 28px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(254,115,91,0.2);
    background: rgba(254,115,91,0.08);
    color: #ffd8d0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 22px;
}

.top-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 14px var(--accent);
    animation: pulse 1.8s infinite;
}

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

.hero-main {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.left h1 {
    margin: 0 0 12px;
    font-size: clamp(1rem, 2vw, 3.3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.left h1 .brand {
    color: var(--accent);
}

.left p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
    max-width: 680px;
}

.status-line {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    color: var(--text);
    font-size: 14px;
}

.status-pill .mini-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 10px rgba(148,247,197,0.6);
}

.right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.viewer-wrap {
    position: relative;
    width: 30%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

model-viewer {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    --poster-color: transparent;
}

.cards {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card {
    position: relative;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: var(--card);
    padding: 22px 20px;
    transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(254,115,91,0.18);
    background:
        linear-gradient(180deg, rgba(254,115,91,0.03), rgba(255,255,255,0.01)),
        var(--card-hover);
    box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

.icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 24px;
    background: rgba(254,115,91,0.08);
    border: 1px solid rgba(254,115,91,0.14);
    box-shadow: inset 0 0 18px rgba(254,115,91,0.05);
}

.card h3 {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

.footer-note {
    margin-top: 24px;
    text-align: center;
    color: rgba(238,242,255,0.55);
    font-size: 13px;
    line-height: 1.7;
}

.footer-note strong {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

@media (max-width: 991px) {
    .hero-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .left p {
        margin: 0 auto;
    }

    .status-line {
        justify-content: center;
    }

    .right {
        order: -1;
    }

    .viewer-wrap {
        max-width: 260px;
    }

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

@media (max-width: 575px) {
    .hero {
        padding: 24px 16px 16px;
        border-radius: 22px;
    }

    .card {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .top-badge {
        font-size: 12px;
        padding: 7px 12px;
    }
}
