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

:root {
    --bg: #030b18;
    --bg-secondary: #071426;
    --card: rgba(12, 25, 46, 0.82);

    --primary: #1688ff;
    --primary-light: #4da6ff;

    --text: #ffffff;
    --text-secondary: #aeb9ca;
    --text-muted: #78869b;

    --border: rgba(255, 255, 255, 0.08);

    --radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(0, 119, 255, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 35%,
            rgba(100, 70, 255, 0.10),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #020814,
            #061529 50%,
            #020812
        );

    color: var(--text);

    min-height: 100vh;

    line-height: 1.75;
}

body::before {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 70%
    );
}

.container {
    width: min(1080px, calc(100% - 40px));

    margin: 0 auto;
}


/* =========================
   BACKGROUND GLOW
========================= */

.background-glow {
    position: fixed;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;

    opacity: 0.12;
}

.glow-1 {
    background: #087cff;

    top: -250px;
    left: -200px;
}

.glow-2 {
    background: #673eff;

    right: -250px;
    top: 45%;
}


/* =========================
   HEADER
========================= */

.header {
    position: sticky;

    top: 0;

    z-index: 20;

    background: rgba(3, 11, 24, 0.78);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.brand {
    display: flex;

    align-items: center;

    gap: 12px;

    color: white;

    text-decoration: none;

    font-size: 19px;

    font-weight: 750;

    letter-spacing: -0.3px;
}

.brand-icon {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #1688ff,
            #5b3cff
        );

    box-shadow:
        0 8px 30px rgba(22, 136, 255, 0.28);

    font-size: 21px;
}

.updated {
    color: var(--text-muted);

    font-size: 13px;
}


/* =========================
   HERO
========================= */

.hero {
    padding: 105px 0 70px;

    max-width: 800px;
}

.hero-badge {
    display: inline-flex;

    padding: 7px 14px;

    margin-bottom: 24px;

    border: 1px solid rgba(45, 146, 255, 0.25);

    border-radius: 999px;

    background: rgba(25, 126, 255, 0.08);

    color: #54a9ff;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.2px;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 82px);

    line-height: 1.03;

    letter-spacing: -4px;

    margin-bottom: 28px;

    background:
        linear-gradient(
            110deg,
            #ffffff 20%,
            #9bcaff 65%,
            #638cff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero p {
    max-width: 680px;

    color: var(--text-secondary);

    font-size: 19px;

    line-height: 1.8;
}


/* =========================
   POLICY CARD
========================= */

.policy-card {
    position: relative;

    overflow: hidden;

    padding: 65px;

    margin-bottom: 90px;

    border: 1px solid var(--border);

    border-radius: 32px;

    background:
        linear-gradient(
            145deg,
            rgba(16, 34, 61, 0.90),
            rgba(6, 18, 35, 0.88)
        );

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.30);

    backdrop-filter: blur(20px);
}

.policy-card::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    top: -250px;
    right: -200px;

    border-radius: 50%;

    background: rgba(27, 133, 255, 0.06);

    filter: blur(50px);

    pointer-events: none;
}


/* =========================
   INTRO
========================= */

.intro {
    padding-bottom: 45px;

    border-bottom: 1px solid var(--border);

    margin-bottom: 20px;
}

.intro p {
    color: var(--text-secondary);

    font-size: 17px;

    margin-bottom: 15px;
}

.intro strong {
    color: white;
}


/* =========================
   SECTIONS
========================= */

.policy-section {
    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 28px;

    padding: 48px 0;

    border-bottom: 1px solid var(--border);
}

.policy-section:last-of-type {
    border-bottom: none;
}

.section-number {
    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(22, 136, 255, 0.16),
            rgba(92, 60, 255, 0.10)
        );

    border: 1px solid rgba(22, 136, 255, 0.16);

    color: #52a7ff;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 0.5px;
}

.policy-section h2 {
    margin-bottom: 17px;

    font-size: 27px;

    line-height: 1.3;

    letter-spacing: -0.7px;
}

.policy-section h3 {
    margin-top: 28px;
    margin-bottom: 10px;

    font-size: 17px;

    color: #dce7f5;
}

.policy-section p {
    color: var(--text-secondary);

    margin-bottom: 16px;
}

.policy-section ul {
    margin: 15px 0 20px;

    padding-left: 20px;
}

.policy-section li {
    color: var(--text-secondary);

    margin: 8px 0;

    padding-left: 6px;
}

.policy-section li::marker {
    color: var(--primary);
}

.policy-section a {
    color: #54a9ff;

    text-decoration: none;

    border-bottom: 1px solid rgba(84, 169, 255, 0.3);

    transition: 0.2s ease;
}

.policy-section a:hover {
    color: white;

    border-color: white;
}


/* =========================
   THIRD PARTY SERVICES
========================= */

.service-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    margin-top: 25px;
}

.service-item {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 17px;

    border-radius: 16px;

    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.025);

    text-decoration: none !important;

    color: white !important;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.service-item:hover {
    transform: translateY(-2px);

    background: rgba(255, 255, 255, 0.05);

    border-color: rgba(84, 169, 255, 0.25);
}

.service-item > span {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.06);

    font-size: 20px;
}

.service-item strong {
    display: block;

    font-size: 14px;
}

.service-item small {
    display: block;

    margin-top: 2px;

    color: var(--text-muted);

    font-size: 12px;
}


/* =========================
   CONTACT
========================= */

.contact-button {
    display: inline-flex !important;

    align-items: center;

    gap: 12px;

    margin-top: 15px;

    padding: 13px 20px;

    border: none !important;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #1688ff,
            #426cff
        );

    color: white !important;

    font-weight: 700;

    box-shadow:
        0 10px 30px rgba(22, 136, 255, 0.22);

    transition: 0.2s ease;
}

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

    box-shadow:
        0 15px 35px rgba(22, 136, 255, 0.30);
}

.contact-button span {
    font-size: 18px;
}


/* =========================
   EFFECTIVE DATE
========================= */

.effective-date {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 45px;

    padding: 20px;

    border-radius: 18px;

    background: rgba(22, 136, 255, 0.06);

    border: 1px solid rgba(22, 136, 255, 0.12);
}

.check-icon {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: rgba(22, 136, 255, 0.14);

    color: #50a7ff;

    font-weight: 800;
}

.effective-date strong {
    font-size: 14px;
}

.effective-date p {
    margin: 2px 0 0;

    color: var(--text-muted);

    font-size: 13px;
}


/* =========================
   FOOTER
========================= */

.footer {
    border-top: 1px solid var(--border);

    background: rgba(0, 0, 0, 0.16);
}

.footer-inner {
    min-height: 150px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.footer strong {
    font-size: 15px;
}

.footer p {
    margin-top: 4px;

    color: var(--text-muted);

    font-size: 13px;
}

.copyright {
    color: var(--text-muted);

    font-size: 12px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .container {
        width: min(
            100% - 28px,
            1080px
        );
    }

    .header-inner {
        min-height: 68px;
    }

    .updated {
        display: none;
    }

    .hero {
        padding: 70px 0 45px;
    }

    .hero h1 {
        font-size: 50px;

        letter-spacing: -2.5px;
    }

    .hero p {
        font-size: 16px;
    }

    .policy-card {
        padding: 32px 22px;

        border-radius: 24px;
    }

    .policy-section {
        grid-template-columns: 1fr;

        gap: 17px;

        padding: 38px 0;
    }

    .section-number {
        width: 42px;
        height: 42px;
    }

    .policy-section h2 {
        font-size: 23px;
    }

    .policy-section p,
    .policy-section li {
        font-size: 15px;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        padding: 35px 0;
    }
}


@media (max-width: 420px) {

    .hero h1 {
        font-size: 43px;
    }

    .policy-card {
        padding: 25px 18px;
    }

    .brand {
        font-size: 16px;
    }

    .brand-icon {
        width: 36px;
        height: 36px;

        font-size: 18px;
    }
}
