@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    box-sizing: border-box;
    min-width: 0;
}

:root {
    color-scheme: dark;
    --bg: #07080c;
    --panel: #101219;
    --panel-soft: #171a24;
    --line: rgba(255, 255, 255, .13);
    --text: #f8fafc;
    --muted: #a8b0c2;
    --muted-2: #7f8798;
    --orange: #ff9f0a;
    --blue: #2f6bff;
    --green: #24d17e;
    --pink: #ff3d7f;
    --purple: #8b5cf6;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 159, 10, .14), transparent 26%),
        radial-gradient(circle at 88% 8%, rgba(47, 107, 255, .12), transparent 30%),
        linear-gradient(180deg, #050507 0%, #0b0d14 44%, #07080c 100%);
    overflow-x: hidden;
}

a {
    color: inherit;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background: rgba(8, 9, 14, .9);
    backdrop-filter: blur(14px);
}

.wrap {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
}

.site-nav .nav-inner {
    width: min(1220px, calc(100% - 40px));
    margin: 0 auto;
}

.topbar-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 5px;
    background:
        linear-gradient(#09090c, #09090c) padding-box,
        linear-gradient(135deg, #ff2f7d 0%, #ff9f0a 42%, #6b4cff 100%) border-box;
}

.brand-word {
    width: auto;
    height: 28px;
    max-width: 180px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #c5cad7;
    font-size: 14px;
    font-weight: 800;
}

.nav a {
    text-decoration: none;
}

.nav a:hover {
    color: #fff;
}

.hero {
    padding: 64px 0 28px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    max-width: 900px;
    font-size: clamp(34px, 6vw, 68px);
    line-height: .98;
    letter-spacing: 0;
}

.lead {
    margin: 18px 0 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.meta-row {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    color: #dbe2ee;
    font-size: 13px;
    font-weight: 800;
}

.layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 22px;
    align-items: start;
    padding: 22px 0 60px;
}

.content {
    display: grid;
    gap: 14px;
}

.section {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
    background: linear-gradient(160deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.section h2 {
    margin: 0 0 12px;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.18;
}

.section h3 {
    margin: 22px 0 8px;
    color: #fff;
    font-size: 18px;
}

.section p {
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.75;
}

.section p:last-child {
    margin-bottom: 0;
}

.section ul {
    margin: 12px 0 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.75;
}

.section li + li {
    margin-top: 7px;
}

.notice {
    border-color: rgba(255, 159, 10, .38);
    background: linear-gradient(160deg, rgba(255, 159, 10, .13), rgba(255, 255, 255, .018));
}

.sidebar {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 14px;
}

.side-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    background: rgba(16, 18, 25, .86);
}

.side-card h2,
.side-card h3 {
    margin: 0 0 12px;
    font-size: 16px;
}

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

.quick-links {
    display: grid;
    gap: 8px;
}

.quick-links a,
.contact-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    background: rgba(255, 255, 255, .035);
    color: #e7ecf6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.quick-links a:hover,
.contact-link:hover {
    border-color: rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .07);
}

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

.contact-tile {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 18px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(160deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
    transition: transform .18s, border-color .18s;
}

.contact-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .3);
}

.contact-tile .icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    font-size: 20px;
}

.contact-tile strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.contact-tile span {
    color: var(--muted);
    line-height: 1.45;
    word-break: break-word;
}

.whatsapp {
    border-color: rgba(36, 209, 126, .38);
    background: linear-gradient(160deg, rgba(36, 209, 126, .16), rgba(255, 255, 255, .015));
}

.email {
    border-color: rgba(47, 107, 255, .38);
    background: linear-gradient(160deg, rgba(47, 107, 255, .16), rgba(255, 255, 255, .015));
}

.youtube {
    border-color: rgba(255, 61, 127, .38);
    background: linear-gradient(160deg, rgba(255, 61, 127, .15), rgba(255, 255, 255, .015));
}

.instagram {
    border-color: rgba(139, 92, 246, .38);
    background: linear-gradient(160deg, rgba(139, 92, 246, .15), rgba(255, 255, 255, .015));
}

.facebook {
    border-color: rgba(47, 107, 255, .38);
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 26px 0 34px;
    color: var(--muted-2);
    font-size: 13px;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer a {
    color: #c4cada;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

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

    .sidebar {
        position: static;
    }

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

@media (max-width: 680px) {
    .wrap {
        width: min(100% - 28px, 1120px);
    }

    .topbar {
        padding-top: env(safe-area-inset-top);
    }

    .topbar-inner {
        min-height: 62px;
        gap: 10px;
    }

    .brand {
        gap: 8px;
        min-width: 0;
    }

    .brand-logo {
        width: 34px;
        height: 34px;
        padding: 4px;
    }

    .brand-word {
        max-width: 132px;
        height: 24px;
    }

    .nav {
        gap: 10px;
        font-size: 12px;
    }

    .nav .hide-mobile {
        display: none;
    }

    .hero {
        padding-top: 42px;
    }

    .section {
        padding: 19px;
        border-radius: 16px;
    }

    .quick-links a,
    .contact-link,
    .contact-tile {
        min-height: 44px;
    }

    .footer-inner,
    .footer-links {
        justify-content: center;
        text-align: center;
    }
}
