:root {
    --color-bg: #000000;
    --color-text: #ffffff;
    --color-accent: #F59E0B;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-primary);
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.page-content {
    padding-top: 150px;
    padding-bottom: 120px;
    min-height: 80vh;
}

#webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Behind everything */
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    mix-blend-mode: difference;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-btn {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 12px 24px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.nav-btn:hover {
    background: white;
    color: black;
}

/* Sections */
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Hero */
.hero {
    align-items: flex-start;
}

.hero-content {
    max-width: 800px;
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 32px;
    mix-blend-mode: difference;
}

.subtitle {
    font-size: 1.5rem;
    opacity: 0.8;
    margin-bottom: 48px;
    max-width: 500px;
    font-weight: 300;
}

/* Features */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    text-transform: uppercase;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
    display: inline-block;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.feature-icon {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--color-accent);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    counter-reset: step;
}

.step-item {
    position: relative;
    padding-top: 60px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.pricing-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    text-align: center;
}

.pricing-card.featured {
    border-color: var(--color-accent);
    background: rgba(245, 158, 11, 0.05);
}

.price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin: 24px 0;
    color: white;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.6;
}

.pricing-features {
    list-style: none;
    margin: 32px 0;
    text-align: left;
    opacity: 0.8;
}

.pricing-features li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.pricing-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Footer */
.footer {
    padding: 80px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: black;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 4px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

/* Utilities */
.btn-primary {
    background: white;
    color: black;
    padding: 16px 32px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--color-accent);
    color: white;
}

.btn-outline {
    border: 1px solid white;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* Policy Pages */
.privacy-heading,
.terms-heading {
    color: white;
    margin: 32px 0 16px;
    font-size: 1.17em;
    font-weight: bold;
}

.privacy-paragraph,
.terms-paragraph {
    margin-bottom: 24px;
}