/* Base layout */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #1b1640 0, #050814 40%, #02030a 100%);
    color: #f7f7ff;
    line-height: 1.6;
}

/* Navigation */
.site-header {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 5vw;
    background: rgba(3, 4, 14, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-title {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f7f7ff;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    font-size: 0.85rem;
}

.nav-links a {
    color: #f7f7ff;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.8;
    padding-bottom: 0.2rem;
    border-bottom: 2px solid transparent;
    transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    opacity: 1;
    border-color: #ff2e9f;
    transform: translateY(-1px);
}

/* Hero */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5vw 4rem;
    text-align: left;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    color: #ff5fb8;
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-size: clamp(2.3rem, 4vw, 3rem);
    line-height: 1.1;
    margin: 0 0 1rem;
}

.hero-text {
    max-width: 34rem;
    color: #d3d4ff;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff2e9f, #8a4dff);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    opacity: 0.96;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7);
}

/* Hero decorative elements */
.hero-orbit,
.hero-glow {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-orbit {
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    top: 52%;
    right: -120px;
    transform: translateY(-50%);
}

.hero-glow {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 30% 20%, rgba(255, 54, 166, 0.9), transparent 60%);
    top: 60%;
    right: -60px;
    transform: translateY(-50%);
    filter: blur(4px);
    opacity: 0.9;
}

/* Sections */
.section {
    padding: 4rem 5vw;
}

.section-alt {
    background: radial-gradient(circle at top right, #181a3b 0, #050814 60%);
}

.section-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.section h2 {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.section p {
    color: #d3d4ff;
}

/* Grid */
.grid-2 {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Cards */
.cards {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.card {
    background: rgba(10, 10, 32, 0.85);
    border-radius: 1rem;
    padding: 1.4rem 1.3rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 46, 159, 0.1), transparent);
    opacity: 0.9;
    mix-blend-mode: screen;
    pointer-events: none;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.card p {
    font-size: 0.92rem;
}

/* Commitment */
.commitment-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.4rem;
}

@media (min-width: 768px) {
    .commitment-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.commitment-item {
    background: rgba(11, 10, 40, 0.9);
    border-radius: 1rem;
    padding: 1.4rem 1.3rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.commitment-number {
    position: absolute;
    top: 0.85rem;
    right: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff5fb8;
    opacity: 0.4;
}

/* Policies */
.policy-meta {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ff5fb8;
}

.section ul {
    padding-left: 1.2rem;
    margin-top: 0.5rem;
}

.section li {
    margin-bottom: 0.35rem;
    font-size: 0.94rem;
    color: #d3d4ff;
}

.section a {
    color: #ff5fb8;
    text-decoration: none;
}

.section a:hover {
    text-decoration: underline;
}

/* Contact */
.section-contact {
    background: radial-gradient(circle at top left, #241b57 0, #050814 60%);
}

.contact-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.4rem;
}

@media (min-width: 640px) {
    .contact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.contact-item h3 {
    margin-top: 0;
    margin-bottom: 0.3rem;
}

.contact-item a,
.contact-item span {
    font-size: 0.94rem;
    color: #d3d4ff;
    text-decoration: none;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #050814;
    padding: 1rem 5vw 1.4rem;
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #9b9dff;
}

.footer-domain {
    opacity: 0.8;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .hero-orbit,
    .hero-glow {
        display: none;
    }
}
