:root {
    /* Colors */
    --bg-dark: #0a0e11;
    --bg-darker: #050709;
    --bg-glass: rgba(18, 25, 30, 0.6);
    --bg-glass-hover: rgba(25, 35, 42, 0.8);
    --text-primary: #f0f4f8;
    --text-secondary: #9aa4b0;
    
    /* Brand Colors (Aligned with Logo) */
    --emerald-primary: #128c31; /* Deeper vibrant green from logo */
    --emerald-glow: rgba(18, 140, 49, 0.4);
    --gold-primary: #ffc107; /* Vibrant yellow/gold from logo text */
    --gold-glow: rgba(255, 193, 7, 0.3);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-max: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, var(--emerald-primary), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Layout Elements */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 8rem 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    background: transparent;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 14, 17, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo {
    width: 60px;
    height: auto;
    object-fit: contain;
    /* Removed border-radius so the canvas replacement looks natural without cutting edges */
}

.logo-text {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--gold-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--emerald-primary);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px; /* Offset for navbar */
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, var(--emerald-glow) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, var(--gold-glow) 0%, transparent 50%);
    z-index: -1;
    opacity: 0.6;
}

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

.subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--emerald-primary);
    color: var(--bg-darker);
    box-shadow: 0 4px 20px var(--emerald-glow);
}

.btn-primary:hover {
    background: #0ea5e9; /* Slight shift to blue/emerald */
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--emerald-glow);
}

.social-icons-hero {
    display: flex;
    gap: 1rem;
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-link:hover {
    background: var(--bg-glass);
    color: var(--emerald-primary);
    border-color: var(--emerald-primary);
    transform: translateY(-3px);
}

/* About / Meaning */
.about {
    background-color: var(--bg-darker);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
}

.jaguar-symbol {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jaguar-symbol i {
    font-size: 4rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

/* Dimensions Section */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.dim-card {
    background: var(--bg-glass);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.dim-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-primary), var(--gold-primary));
    opacity: 0;
    transition: var(--transition-smooth);
}

.dim-card:hover {
    background: var(--bg-glass-hover);
    transform: translateY(-10px);
}

.dim-card:hover::before {
    opacity: 1;
}

.dim-icon {
    font-size: 2.5rem;
    color: var(--emerald-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.dim-card:hover .dim-icon {
    color: var(--gold-primary);
}

/* Host Section */
.host {
    background-color: var(--bg-darker);
    position: relative;
}

.host::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.host-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.host-image-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.image-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--emerald-primary);
    border-radius: 24px;
    transform: translate(20px, 20px);
    z-index: -1;
    transition: var(--transition-smooth);
}

.host-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    filter: grayscale(10%) contrast(1.1);
    transition: var(--transition-smooth);
}

.host-image-wrapper:hover .image-accent {
    transform: translate(10px, 10px);
}

.host-image-wrapper:hover .host-image {
    filter: grayscale(0%) contrast(1.1);
}

.host-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    border-left: 4px solid var(--gold-primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.social-icons-host {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    width: 80px;
    margin-bottom: 1rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.social-icons-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-icons-footer a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.social-icons-footer a i {
    font-size: 1.5rem;
}

.social-icons-footer a:hover {
    color: var(--emerald-primary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations & Utility */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .host-container {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none; /* In a full app, add a hamburger menu */
    }
    
    .image-accent {
        display: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}
