:root {
    --bg-dark: #12100a;
    --card-bg: rgba(243, 168, 39, 0.03);
    --text-primary: #f0e6d2;
    --text-secondary: #b5a38a;
    --accent-primary: #f3a827;
    /* Aztec Gold */
    --accent-secondary: #d85b30;
    /* Terracotta */
    --font-main: 'Outfit', sans-serif;
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.accent-text {
    background: linear-gradient(135deg, var(--accent-primary), #ffc857);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(243, 168, 39, 0.4);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(18, 16, 10, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-secondary);
    box-shadow: 0 0 15px rgba(243, 168, 39, 0.3);
}

.brand-name {
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.highlight-link {
    color: var(--accent-secondary) !important;
    text-shadow: 0 0 10px rgba(216, 91, 48, 0.5);
}

.highlight-link-primary {
    color: var(--accent-primary) !important;
    text-shadow: 0 0 10px rgba(243, 168, 39, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    margin-top: 60px;
    position: relative;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-secondary);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-primary), #ffc857);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(243, 168, 39, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(243, 168, 39, 0.6);
}

.cta-button.outline {
    background: transparent;
    border: 2px solid var(--accent-secondary);
    color: var(--accent-secondary);
    box-shadow: 0 0 20px rgba(216, 91, 48, 0.2);
}

.cta-button.outline:hover {
    background: rgba(216, 91, 48, 0.1);
    box-shadow: 0 0 30px rgba(216, 91, 48, 0.4);
}

.hero-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.05);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.glow-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(243, 168, 39, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    filter: blur(40px);
}

/* Philosophies Section */
.philosophies {
    padding: 8rem 10%;
    background: linear-gradient(180deg, var(--bg-dark), #1d1911);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3.5rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(243, 168, 39, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card p {
    color: var(--text-secondary);
}

/* Featured Product Section */
.featured-product {
    padding: 10rem 10%;
    background: #0f0d08;
    position: relative;
    overflow: hidden;
}

.primary-product {
    padding-bottom: 5rem;
}

.secondary-product {
    padding-top: 5rem;
    background: linear-gradient(180deg, #0f0d08, #12100a);
}

.split-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.reverse-layout {
    flex-direction: row-reverse;
}

.content-side {
    flex: 1;
    z-index: 2;
}

.pre-heading {
    color: var(--accent-secondary);
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.massive-title {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 2rem;
}

.product-description {
    margin-bottom: 3rem;
}

.highlight-quote {
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-secondary);
    padding-left: 1.5rem;
}

.product-description p:last-child {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-showcase {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 60px rgba(243, 168, 39, 0.3);
    animation: spin 120s linear infinite;
    /* Symbolizing the earth spinning */
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.orbit-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: spin 40s linear infinite reverse;
}

.primary-ring {
    border-color: rgba(243, 168, 39, 0.4);
}

.orbit-ring.delay {
    width: 120%;
    height: 120%;
    border: 1px dashed rgba(216, 91, 48, 0.3);
    animation: spin 60s linear infinite;
}

/* Footer */
footer {
    background: var(--bg-dark);
    padding: 4rem 10%;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-tagline {
    color: var(--accent-primary);
    font-weight: 700;
    letter-spacing: 2px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease, transform 1s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 968px) {
    .navbar {
        flex-direction: column;
        padding: 1rem 5%;
        gap: 1rem;
    }

    .nav-links a {
        margin: 0 0.5rem;
        font-size: 0.9rem;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 3rem;
        margin-top: 140px;
    }

    .hero-badges {
        justify-content: center;
    }

    .split-layout,
    .reverse-layout {
        flex-direction: column;
        text-align: center;
    }

    .highlight-quote {
        border-left: none;
        border-top: 4px solid var(--accent-secondary);
        padding-left: 0;
        padding-top: 1.5rem;
    }

    .product-showcase {
        width: 100%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 1/1;
    }

    .product-image {
        width: 80%;
        height: 80%;
    }
}