:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --brand-sunset: #FF3D00;
    --brand-deep: #BF360C;
    --brand-core: #FF6D00;
    --font-main: 'Neue Haas Grotesk Display Pro', 'Helvetica Neue', Arial, system-ui, sans-serif;
    --border-color: rgba(255, 255, 255, 0.08);
}

@font-face {
    font-family: 'Neue Haas Grotesk Display Pro';
    font-style: normal;
    font-weight: 400;
    src: local('Neue Haas Grotesk Display Pro'), local('HelveticaNeue'), local('Helvetica Neue');
}
@font-face {
    font-family: 'Neue Haas Grotesk Display Pro';
    font-style: normal;
    font-weight: 500;
    src: local('Neue Haas Grotesk Display Pro Medium'), local('HelveticaNeue-Medium'), local('Helvetica Neue');
}
@font-face {
    font-family: 'Neue Haas Grotesk Display Pro';
    font-style: normal;
    font-weight: 700;
    src: local('Neue Haas Grotesk Display Pro Bold'), local('HelveticaNeue-Bold'), local('Helvetica Neue');
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    width: 100%;
    position: static;
    z-index: 100;
    padding: 2rem 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.navbar.scrolled {
    background: transparent;
    padding: 2rem 0;
    border-bottom: none;
}

.nav-link-custom {
    position: relative;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    transition: all 0.3s ease;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: #ffffff;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--brand-sunset);
    transition: width 0.3s ease;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    width: 100%;
}

/* Home overrides */
body.home .nav-link-custom::after {
    width: 0 !important;
    height: 0 !important;
}
body.home .nav-link-custom:hover::after,
body.home .nav-link-custom.active::after {
    width: 0 !important;
}

/* Disable underline specifically for Home link */
.home-link::after,
.home-link:hover::after,
.home-link.active::after {
    width: 0 !important;
    height: 0 !important;
}
/* Shiny Button */
.shiny-button {
    position: relative;
    padding: 0.75rem 1.5rem; /* px-6 py-3 */
    background: linear-gradient(135deg, var(--brand-sunset) 0%, var(--brand-deep) 100%);
    color: white;
    border-radius: 9999px;
    font-size: 0.625rem; /* 10px */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.shiny-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 61, 0, 0.5);
    background: linear-gradient(135deg, var(--brand-core) 0%, #E65100 100%);
}

.shiny-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: 0.5s;
}

.shiny-button:hover::after {
    left: 100%;
}

/* Glass Panel Effect */
.glass-panel {
    background: rgba(10, 2, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 61, 0, 0.1);
    border-radius: 32px;
    padding: 3rem;
}

/* Apple Aesthetic Title */
.apple-title {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.9;
    text-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: 140px;
    background-image: url('../assets/hero-bg-real.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(3, 3, 3, 0.8) 0%,
            rgba(3, 3, 3, 0.4) 30%,
            rgba(3, 3, 3, 0.1) 60%,
            rgba(3, 3, 3, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.credibility-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.badge-text {
    font-size: 0.85rem;
    line-height: 1.4;
    text-align: center;
}

.badge-highlight {
    color: var(--text-primary);
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #cbd5e1;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.6s;
}

.hero-cta {
    /* Use shiny button style instead if possible, but keeping this for now */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-main);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.8s;
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.footer-note {
    position: absolute;
    bottom: 15vh;
    z-index: 2;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
    line-height: 1.5;
    width: 100%;
    padding: 0 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 1);
}

.logos-strip {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.logos-track {
    display: flex;
    gap: 3rem;
    align-items: center;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: opacity 0.3s;
}

.logos-track:hover {
    opacity: 0.8;
}

.brand-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
}
