/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0c0c14;
    --surface: #14141f;
    --surface-hover: #1a1a2e;
    --border: rgba(167, 139, 250, 0.1);
    --border-hover: rgba(167, 139, 250, 0.25);
    --text: #e2e2ee;
    --text-muted: #8888a4;
    --accent: #a78bfa;
    --accent-dim: #6366f1;
    --radius: 16px;
    --radius-sm: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== Background Glow ===== */
.bg-glow {
    position: fixed;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ===== Container ===== */
.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ===== Header ===== */
header {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(12, 12, 20, 0.8);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Hero ===== */
.hero {
    text-align: center;
    padding: 72px 0 48px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 30%, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== Cards ===== */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.card-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.card h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

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

.card strong {
    color: var(--text);
}

.card ul {
    list-style: none;
    padding: 0;
    margin-top: 8px;
}

.card ul li {
    position: relative;
    padding-left: 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-dim);
    opacity: 0.6;
}

.card ul li:last-child {
    margin-bottom: 0;
}

/* ===== Contact Email ===== */
.contact-email {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-weight: 500;
    color: var(--accent) !important;
    letter-spacing: 0.01em;
    margin-top: 4px;
}

/* ===== Effective Date ===== */
.effective-date {
    text-align: center;
    padding: 32px 0 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.effective-date p {
    margin-bottom: 4px;
}

.effective-date strong {
    color: var(--text);
    font-weight: 500;
}

/* ===== Footer ===== */
footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    margin-top: 24px;
}

footer p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
    .container {
        padding: 0 18px;
    }

    .hero {
        padding: 52px 0 36px;
    }

    .card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .card-icon {
        font-size: 1.4rem;
    }

    .card h2 {
        font-size: 1.1rem;
    }

    .logo-icon svg {
        width: 30px;
        height: 30px;
    }

    .logo-text {
        font-size: 1rem;
    }
}

@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .card {
        padding: 20px 16px;
    }
}
