﻿* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top left, rgba(72, 84, 110, 0.18), transparent 30%),
                linear-gradient(180deg, #090b10 0%, #0e121a 100%);
    color: #eef2ff;
}

.page-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    padding: 1.5rem 0 0.75rem;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}

.brand {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
}

.tagline {
    margin: 0.5rem 0 0;
    color: #b7bfcc;
    max-width: 460px;
    line-height: 1.7;
}

.meta {
    margin: 0;
    color: #9aa3b2;
    font-size: 0.95rem;
    text-align: right;
}

.hero-section {
    padding: 3rem 0 4rem;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr minmax(350px, 520px) 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-sign {
    display: grid;
    place-items: center;
}

.hero-copy {
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: #7d8aa6;
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(2.8rem, 4vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.hero-copy p {
    margin: 1.6rem auto 2rem;
    max-width: 42rem;
    color: #d5d9e6;
    font-size: 1.05rem;
    line-height: 1.8;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    gap: 0.9rem;
}

.hero-list li {
    color: #c3c8d6;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.9rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    font-weight: 700;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, #697cff, #4163f1);
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(66, 99, 241, 0.18);
}

.hanger {
    position: relative;
    width: min(260px, 100%);
    transform-origin: top center;
}

.rope {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 160px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(180deg, #b8b6af 0%, #6d6b63 40%, #8a8578 100%);
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.24);
}

.rope::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at top left, #d8d3c4, #8f8b7f);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.sign {
    position: relative;
    margin-top: 150px;
    padding: 1.9rem 1.8rem;
    border-radius: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(18, 22, 30, 0.96), rgba(13, 17, 24, 0.98));
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sign::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.06), transparent 35%);
    pointer-events: none;
}

.sign-title {
    margin: 0 0 0.9rem;
    color: #f7f8ff;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.sign-link {
    display: inline-block;
    color: #8fa4ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.sign-link:hover {
    color: #dfe4ff;
}

.hanger:hover .sign {
    transform: translateY(10px) rotate(1deg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42);
}

.hanger:hover {
    animation: hover-drop 0.8s ease forwards;
}

@keyframes hover-drop {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    30% {
        transform: translateY(10px) rotate(1deg);
    }
    55% {
        transform: translateY(8px) rotate(-0.5deg);
    }
    100% {
        transform: translateY(10px) rotate(0deg);
    }
}

.features-section {
    padding: 3rem 0 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.24);
}

.feature-card h2 {
    margin: 0 0 1rem;
    color: #f4f6ff;
    font-size: 1.2rem;
}

.feature-card p {
    margin: 0;
    line-height: 1.8;
    color: #c4c9d8;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0 2rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: #8892aa;
    font-size: 0.95rem;
}

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

    .hero-copy {
        order: -1;
    }
}

@media (max-width: 680px) {
    .header-inner,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-copy h1 {
        font-size: 2.8rem;
    }

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

    .sign {
        margin-top: 120px;
    }
}
