/* ========================================
   RESET
======================================== */

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

html {
    scroll-behavior: smooth;
}





/* ========================================
   CIRCLES
======================================== */



.circle {
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: 0 7px;
    vertical-align: middle;
		border-radius: 50%;
}

.circle.blue {
    background: #009eff;
}

.circle.light-blue {
    background: #99ddff;
}


/* ========================================
   GENERAL
======================================== */

body {
    font-family: "Stack Sans Notch", Helvetica, Arial, sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    background: #111111;
    line-height: 30px;
    color: white;
}

p {
    margin-bottom: 20px;
}

h1,
h2,
h3,
h4 {
    font-family: "Stack Sans Notch", Helvetica, Arial, sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: white;
}

h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-top: 60px;
    margin-bottom: 25px;
}

h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-top: 40px;
    margin-bottom: 20px;
}

a,
a:visited {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}



h1 {
	margin-top: 50px;
}
/* ========================================
   SELECTION
======================================== */

::selection {
    background: #009eff;
    color: #ffffff;
}

::-moz-selection {
    background: #009eff;
    color: #ffffff;
}


/* ========================================
   LAYOUT
======================================== */

.container {
    width: min(1100px, 90%);
    margin: auto;
}


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

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    padding: 20px 0;

    background: rgba(17, 17, 17, 0.82);

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

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header-logo {
    width: 160px;
}

nav {
    display: flex;
    align-items: center;
    gap: 50px;

    font-family: "Stack Sans Notch", Helvetica, Arial, sans-serif;
    letter-spacing: 3px;
    font-size: 0.7rem;

    transition: transform 0.2s ease;
		font-weight: 400;
}

nav a:hover {
    text-decoration: none;
transform: translateY(-3px);
	transition: transform 0.5s ease, background 0.5s ease; }
	font-weight: 400;

nav a:last-child {
    background: #009eff;
    color: #fff !important;

    padding: 5px 20px;

    border-radius: 8px;
		font-weight: 400;
}

nav a:last-child:hover {
    background: #fff;
    color: #111 !important;
		font-weight: 400; !important;
}


/* ========================================
   MOBILE MENU
======================================== */

.menu-toggle {
    display: none;

    width: 48px;
    height: 48px;
    padding: 0;

    background: transparent;
    border: 0;

    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 2rem;
    line-height: 1;

    cursor: pointer;
}


/* ========================================
   PRIVACY PAGE
======================================== */

.privacy {
    padding: 100px 0 100px;
}

.privacy-header {
    max-width: 850px;
    margin-bottom: 70px;
}

.privacy-header .small-intro {
    margin-bottom: 20px;
}

.privacy-header h1 {
    font-size: 4rem;
    margin-bottom: 25px;
}

.privacy-intro {
    max-width: 750px;

    font-size: 18px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.5);
}


/* ========================================
   PRIVACY CONTENT
======================================== */

.privacy-content {
    max-width: 850px;
}

.privacy-content section {
    padding: 40px 0;
    border-top: 1px solid #222;
}

.privacy-content section:first-child {
    border-top: 0;
    padding-top: 0;
}

.privacy-content h2 {
    margin-top: 0;
}

.privacy-content h3 {
    margin-top: 35px;
}

.privacy-content p {
    max-width: 800px;

    font-size: 16px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.75);
}

.privacy-content ul,
.privacy-content ol {
    margin: 0 0 25px 25px;

    color: rgba(255, 255, 255, 0.75);
}

.privacy-content li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.privacy-content strong {
    font-weight: 400;
    color: #ffffff;
}

.privacy-content a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 4px;
}

.privacy-content a:hover {
    color: #009eff;
    text-decoration-color: #009eff;
}


/* ========================================
   PRIVACY META
======================================== */

.privacy-meta {
    font-size: 0.7rem;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.45);
}


/* ========================================
   DIVIDER
======================================== */

.divider {
    width: 100%;
    height: 1px;

    background: #222;

    margin-top: 60px;
    margin-bottom: 60px;
}


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

footer {
    padding: 40px 0;
    border-top: 1px solid #222;
}

footer p {
    font-family: "Stack Sans Notch", Helvetica, Arial, sans-serif;

    font-size: 0.7rem;
    line-height: normal;

    margin: 0;

    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;

    text-transform: uppercase;
    letter-spacing: 3px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    transform: translateY(-3px);
	transition: transform 0.5s ease, background 0.5s ease; 
}


/* ========================================
   SOCIAL LINKS
======================================== */

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 25px;
}

.social-links a {
    display: flex;
    align-items: center;

    color: #fff;
    text-decoration: none;
}

.social-links svg {
    width: 30px;
    height: 30px;
    display: block;
    fill: #fff;

    transition: transform 0.2s ease;
}

.social-links svg:hover {
    transform: scale(1.06);
}


/* ========================================
   BACK TO TOP
======================================== */

.back-to-top {
    position: fixed;

    right: 24px;
    bottom: 24px;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #444;
    border-radius: 50%;

    background: #111;
    color: #fff;

    text-decoration: none;

    font-size: 2rem;
    line-height: 1;

    transition: all 0.2s ease;

    z-index: 1000;
}

.back-to-top:hover,
.back-to-top:focus {
    color: #fff !important;
    transform: translateY(-3px);

    border-color: #666;

    text-decoration: none !important;
}


/* ========================================
   SKIP LINK
======================================== */

.skip-link {
    position: absolute;

    left: 10px;
    top: -100px;

    background: #fff;
    color: #111111;

    padding: 12px 18px;

    z-index: 10000;
}

.skip-link:focus {
    top: 10px;
}


/* ========================================
   ENTRANCE ANIMATION
======================================== */

.privacy-header,
.privacy-content section {
    opacity: 0;
    transform: translateY(25px);

    animation: privacyReveal 0.8s ease forwards;
}

.privacy-header {
    animation-delay: 0.1s;
}

.privacy-content section:nth-child(1) {
    animation-delay: 0.2s;
}

.privacy-content section:nth-child(2) {
    animation-delay: 0.3s;
}

.privacy-content section:nth-child(3) {
    animation-delay: 0.4s;
}

.privacy-content section:nth-child(4) {
    animation-delay: 0.5s;
}

@keyframes privacyReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav {
        display: none;
    }

    nav.active {
        display: flex;

        flex-direction: column;
        align-items: flex-start;

        position: absolute;

        top: calc(100% + 10px);
        right: 0;

        width: 200px;

        padding: 20px;

        background: #171717;

        border: 1px solid #333;
        border-radius: 12px;

        gap: 15px;

        z-index: 1001;
    }

    nav.active a {
        text-align: left;
    }

    .privacy {
        padding: 60px 0 70px;
    }

    .privacy-header {
        margin-bottom: 50px;
    }

    .privacy-header h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .privacy-intro {
        font-size: 16px;
        line-height: 1.6;
    }

    .privacy-content section {
        padding: 35px 0;
    }

    .privacy-content h2 {
        font-size: 1.7rem;
    }

    .privacy-content h3 {
        font-size: 1.2rem;
    }

    .privacy-content p,
    .privacy-content li {
        font-size: 15px;
        line-height: 1.7;
    }

    .back-to-top {
        width: 54px;
        height: 54px;

        right: 18px;
        bottom: 18px;

        font-size: 1.7rem;
    }
}


/* ========================================
   REDUCED MOTION
======================================== */

@media (prefers-reduced-motion: reduce) {

    .privacy-header,
    .privacy-content section {
        opacity: 1;
        transform: none;
        animation: none;
    }
}