:root {
    --primary-blue: #002C5F;
    --accent-orange: #FF8C00;
    --deep-blue: #001A3A;
    --light-gray: #f6f5f1;
    --text-main: #1A1A1A;
}

* {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--primary-blue);
    font-family: 'Manrope', sans-serif;
}

#app > section {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
}

#app > section > .container {
    width: 100%;
}

#app > section.section-compact {
    min-height: auto;
    display: block;
}

@supports (min-height: 100dvh) {
    #app > section {
        min-height: 100dvh;
    }

    #app > section.section-compact {
        min-height: auto;
    }
}

h1, h2, h3, h4, .font-display {
    font-family: 'Sora', sans-serif;
    letter-spacing: 0;
}

/* Accessibility: Clear focus indicators */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--accent-orange);
    outline-offset: 2px;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-orange);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link.is-active::after {
    width: 100%;
}

.nav-link.is-active {
    color: var(--accent-orange);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 0.125rem;
    font-weight: 700;
    color: #ffffff;
    background: #FF8C00;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.22);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background: #E67E00;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(255, 140, 0, 0.28);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 0.125rem;
    border: 2px solid #002C5F;
    color: #002C5F;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
    background: #002C5F;
    color: #ffffff;
    transform: translateY(-2px);
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #dfe5eb;
    border-radius: 0.125rem;
    outline: none;
    color: #002C5F;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    border-color: #FF8C00;
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.12);
}

/* Scroll Animations Base State */
.reveal {
    opacity: 0;
    will-change: transform, opacity;
}

/* Hero Animations */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-slide-up {
    animation: slideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-fade-in {
    animation: fadeIn 1.2s ease forwards;
}

/* Mobile Nav Link Styles */
.mobile-nav-link {
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 0.5rem;
    border-radius: 0.125rem;
    transition: color 0.2s ease, background-color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-link:hover {
    color: #FF8C00;
}

.mobile-nav-link.is-active {
    border-bottom-color: rgba(255, 140, 0, 0.3);
}

.company-info-strip {
    scrollbar-width: thin;
}

.clip-diagonal {
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}

/* Hide scrollbar but keep functionality if needed */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
