:root {
    --accent-color: #D9A93C;
    --accent-dark: #B98621;
    --accent-soft: rgba(217, 169, 60, 0.1);
    --bg-dark: #090909;
    --bg-darker: #050505;
    --bg-panel: #111111;
    --bg-card: #151515;
    --text-primary: #FFFFFF;
    --text-secondary: #BEBEBE;
    --text-muted: #6F6F6F;
    --border-color: #1E1E1E;
    --glow-gold: 0 0 22px rgba(217, 169, 60, 0.35);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 20%, rgba(217, 169, 60, 0.08), transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(217, 169, 60, 0.05), transparent 35%),
        radial-gradient(circle at 75% 85%, rgba(217, 169, 60, 0.06), transparent 35%);
    opacity: 0.9;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1040px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(217, 169, 60, 0.15);
    border-radius: 48px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0;
}

.navbar:hover {
    background: rgba(10, 10, 10, 0.96);
    border-color: rgba(217, 169, 60, 0.25);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45), 0 0 24px rgba(217, 169, 60, 0.1);
}

.navbar .container {
    padding: 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 28px;
}

.nav-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icon {
    height: 32px;
    width: 32px;
    object-fit: contain;
}

.nav-logo-text {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.instagram-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color) !important;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(217, 169, 60, 0.12);
    border: 1px solid rgba(217, 169, 60, 0.2);
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: var(--bg-dark) !important;
    background: var(--accent-color);
    border-color: rgba(217, 169, 60, 0.35);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.98) 0%, rgba(6, 6, 6, 0.96) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 169, 60, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: -40%;
    bottom: -30%;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(217, 169, 60, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-family: 'Archivo', 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-variation-settings: "wdth" 115;
}

.title-main {
    color: var(--text-primary);
}

.title-accent {
    color: var(--accent-color);
}

.hero-kicker {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.hero-subheadline {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    color: var(--accent-color);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 36px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(217, 169, 60, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217, 169, 60, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.metric-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.metric-strike {
    position: relative;
}

.metric-strike::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(217, 169, 60, 0.6), transparent);
    transform: translateY(-50%);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217, 169, 60, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-icon {
    width: 280px;
    height: 280px;
    border-radius: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(217, 169, 60, 0.4);
    background: linear-gradient(145deg, rgba(217, 169, 60, 0.08), transparent 60%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Signature Banner */
.signature-banner {
    background: linear-gradient(90deg, rgba(217, 169, 60, 0.15), rgba(9, 9, 9, 0.6));
    border-top: 1px solid rgba(217, 169, 60, 0.16);
    border-bottom: 1px solid rgba(217, 169, 60, 0.16);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.marquee {
    display: flex;
    gap: 60px;
    animation: marquee 18s linear infinite;
    white-space: nowrap;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 10px 0;
}

.marquee-alt {
    animation-direction: reverse;
    opacity: 0.7;
}

.marquee-item {
    color: var(--text-primary);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Flavor Lab */
.flavor-lab {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, rgba(9, 9, 9, 0.92) 0%, rgba(5, 5, 5, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.flavor-lab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(217, 169, 60, 0.12), transparent 55%);
    opacity: 0.7;
    pointer-events: none;
}

.lab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.lab-intro p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.lab-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lab-badge {
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 11px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(217, 169, 60, 0.12);
    border: 1px solid rgba(217, 169, 60, 0.2);
    color: var(--accent-color);
}

.lab-cards {
    display: grid;
    gap: 24px;
}

.lab-card {
    background: var(--bg-panel);
    border: 1px solid rgba(217, 169, 60, 0.12);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.lab-card::after {
    content: '';
    position: absolute;
    inset: -40% 40% 40% -40%;
    background: radial-gradient(circle, rgba(217, 169, 60, 0.16), transparent 65%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.lab-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), var(--glow-gold);
}

.lab-card:hover::after {
    opacity: 1;
}

.lab-card-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.28em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.lab-card-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 28px;
    margin: 18px 0 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lab-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}
/* Section Treatments */
.section-subtitle {
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.28em;
    font-size: 13px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 18px;
    text-align: center;
}

.lab-intro .section-subtitle,
.about .section-subtitle {
    text-align: left;
    margin-left: 0;
}

/* Features Section */
.features {
    padding: 100px 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(217, 169, 60, 0.08), transparent 55%),
        linear-gradient(180deg, var(--bg-darker) 0%, #080808 100%);
}

.section-title {
    font-family: 'Archivo', 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-variation-settings: "wdth" 112;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    margin: 18px auto 0;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.7;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(217, 169, 60, 0.14);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-6px);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.35), 0 0 28px rgba(217, 169, 60, 0.14);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
    position: relative;
    padding-left: 24px;
}

.about-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.35;
}

.excellency-note {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted) !important;
    font-size: 16px !important;
    padding-left: 0;
}

.excellency-note::before {
    display: none;
}

.excellency-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.excellency-link:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* Download Section */
.download {
    padding: 100px 0;
    background-color: var(--bg-darker);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(217, 169, 60, 0.12), transparent 70%);
    opacity: 0.7;
    pointer-events: none;
}

.download-content {
    max-width: 600px;
    margin: 0 auto;
}

.download-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 12px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.domain {
    color: var(--accent-color);
    font-weight: 500;
}

/* Excellency bottom bar */
.excellency-bottom-bar {
    background: rgba(9, 9, 9, 0.92);
    border-top: 1px solid rgba(217, 169, 60, 0.18);
    padding: 18px 32px;
    display: flex;
    justify-content: center;
    position: relative;
}

.excellency-bottom-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(217, 169, 60, 0.08), transparent, rgba(217, 169, 60, 0.08));
    opacity: 0.8;
    pointer-events: none;
}

.excellency-bar-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(217, 169, 60, 0.08);
    border: 1px solid rgba(217, 169, 60, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.excellency-bar-link:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--glow-gold);
}

.excellency-bar-logo {
    height: 28px;
    width: 28px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.excellency-bar-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.excellency-bar-mono {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--text-secondary);
}

.excellency-bar-display {
    font-family: 'Archivo', 'Space Grotesk', sans-serif;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 0.18em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        top: 15px;
        width: calc(100% - 24px);
        border-radius: 40px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    }

    .nav-content {
        padding: 12px 22px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
    }

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

    .app-icon {
        width: 200px;
        height: 200px;
    }

    .section-title {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .nav-logo-container {
        gap: 8px;
    }

    .nav-icon {
        height: 28px;
        width: 28px;
    }

    .nav-logo-text {
        height: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .footer-content {
        flex-direction: column;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .lab-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-subtitle {
        letter-spacing: 0.2em;
    }

    .marquee {
        animation-duration: 24s;
    }

    .excellency-bar-text {
        flex-direction: column;
        gap: 2px;
        letter-spacing: 0.16em;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        top: 10px;
        width: calc(100% - 18px);
        border-radius: 32px;
    }

    .nav-content {
        padding: 12px 18px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-subheadline {
        font-size: 15px;
        letter-spacing: 0.12em;
    }

    .hero-metrics {
        gap: 12px;
    }

    .lab-card {
        padding: 24px;
    }

    .excellency-bottom-bar {
        padding: 16px;
    }

    .nav-links {
        gap: 16px;
    }

    .instagram-link span {
        display: none;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: var(--accent-color);
    color: var(--bg-dark);
}

