@font-face {
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/orbitron/v34/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xpg.ttf') format('truetype');
}

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

html {
    scroll-behavior: smooth;
}

body.snp-home {
    min-height: 100vh;
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
    color: #f8fafc;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    background: #0f172a;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 15% 20%, rgba(217, 120, 86, 0.28), transparent 55%),
        radial-gradient(ellipse 70% 50% at 85% 75%, rgba(96, 165, 250, 0.18), transparent 50%),
        linear-gradient(-45deg, #3b1218, #573d24, #180b18, #1e293b);
    background-size: 100% 100%, 100% 100%, 280% 280%;
    animation: hero-shift 18s ease-in-out infinite alternate;
}

@keyframes hero-shift {
    from { background-position: 0% 40%, 100% 60%, 0% 50%; }
    to { background-position: 20% 60%, 80% 40%, 100% 50%; }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-inner {
    padding: clamp(3.5rem, 10vh, 5.5rem) 0;
}

.hero-brand {
    display: block;
    text-align: center;
    margin: 0 0 1.25rem;
}

.hero-brand-text {
    font-family: Orbitron, "Segoe UI", sans-serif;
    font-size: 72px;
    letter-spacing: 0.08em;
}

.hero-brand-sed {
    fill: #f8fafc;
}

.hero-brand-nox {
    fill: #d97856;
}

.hero-eyebrow {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.72);
    margin-bottom: 0.85rem;
}

.hero-title {
    text-align: center;
    font-size: clamp(1.65rem, 4.8vw, 2.75rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 18ch;
    margin: 0 auto 1rem;
}

.hero-subtitle {
    text-align: center;
    font-size: clamp(0.95rem, 2.4vw, 1.0625rem);
    color: #e2e8f0;
    line-height: 1.7;
    max-width: 36rem;
    margin: 0 auto 1.5rem;
}

.hero-benefits {
    list-style: none;
    max-width: 28rem;
    margin: 0 auto 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: #fff;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    font-weight: 500;
    line-height: 1.4;
}

.hero-benefits img {
    flex: 0 0 20px;
    margin-top: 0.15rem;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.7rem 1.35rem;
    border-radius: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn--primary {
    background: #d97856;
    color: #fff;
    border: 1px solid #d97856;
}

.btn--primary:hover {
    background: color-mix(in srgb, #d97856 86%, #1a1a1a);
    border-color: color-mix(in srgb, #d97856 86%, #1a1a1a);
}

.btn--outline {
    background: transparent;
    color: #f8fafc;
    border: 1px solid rgba(248, 250, 252, 0.45);
}

.btn--outline:hover {
    border-color: #f8fafc;
    background: rgba(248, 250, 252, 0.08);
}

@media (max-width: 640px) {
    .hero-brand svg {
        width: 220px;
        height: 55px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-backdrop {
        animation: none;
    }
}
