/* ===== CSS Variables ===== */
:root {
    --black: #000000;
    --black-light: #0a0a0a;
    --black-card: #111111;
    --black-hover: #1a1a1a;
    --white: #ffffff;
    --white-off: #f5f5f5;
    --gray-100: #e5e5e5;
    --gray-200: #cccccc;
    --gray-300: #999999;
    --gray-400: #666666;
    --gray-500: #444444;
    --gray-600: #333333;
    --gray-700: #222222;
    --accent: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.05);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.8);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

h1 { font-size: clamp(3rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.125rem; }

.highlight {
    color: var(--gray-300);
}

.lead {
    font-size: 1.25rem;
    color: var(--gray-200);
    line-height: 1.7;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--white);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ===== Section Styles ===== */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 16px 0;
    border-bottom-color: var(--border-color);
}

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

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: var(--transition);
}

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

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

.nav-cta {
    padding: 12px 24px;
    font-size: 13px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    left: 0;
    transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Mobile Navigation */
@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transition: var(--transition-slow);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

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

    .nav-toggle.active .hamburger {
        background: transparent;
    }

    .nav-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: 120px;
}

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

.hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 24px;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
}

.hero-content h1 {
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 1;
}

.hero-scroll span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-400);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gray-400), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ===== Stats Section ===== */
.stats {
    padding: 80px 0;
    background: var(--black-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-suffix {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: var(--gray-400);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== About Section ===== */
.about {
    padding: 140px 0;
    background: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    color: var(--gray-300);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-700);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
    color: var(--white);
}

.feature-text h4 {
    margin-bottom: 4px;
    color: var(--white);
}

.feature-text p {
    font-size: 14px;
    color: var(--gray-400);
    margin: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: var(--gray-700);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--white), transparent);
}

.visual-year {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-400);
}

.visual-card h3 {
    margin: 16px 0;
    color: var(--white);
}

.visual-card p {
    color: var(--gray-300);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== Sectors Section ===== */
.sectors {
    padding: 140px 0;
    background: var(--black-light);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
}

.sector-card {
    background: var(--black-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sector-card:hover {
    border-color: var(--border-color);
    transform: translateY(-8px);
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition-slow);
}

.sector-card:hover::before {
    width: 100%;
}

.sector-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-700);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.sector-icon i {
    font-size: 24px;
    color: var(--white);
}

.sector-card h3 {
    margin-bottom: 12px;
    color: var(--white);
}

.sector-card p {
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.7;
}

.sector-tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
    padding: 6px 12px;
    background: var(--gray-700);
    border-radius: 50px;
}

/* Sector Banners */
.sectors-banners {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sector-banner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.sector-banner:hover {
    transform: translateY(-4px);
}

.sector-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Portfolio Section ===== */
.portfolio {
    padding: 140px 0;
    background: var(--black);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-card {
    background: var(--black-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color);
}

.portfolio-card.featured {
    grid-column: span 2;
}

@media (max-width: 576px) {
    .portfolio-card.featured {
        grid-column: span 1;
    }
}

.portfolio-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.portfolio-card.featured .portfolio-image {
    height: 320px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-slow);
}

.portfolio-card:hover .portfolio-image img {
    filter: grayscale(50%);
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--black-card), transparent);
}

.portfolio-content {
    padding: 32px;
}

.portfolio-sector {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
}

.portfolio-content h3 {
    margin: 12px 0;
    color: var(--white);
}

.portfolio-content p {
    color: var(--gray-400);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-link:hover {
    color: var(--white);
}

.portfolio-link i {
    transition: var(--transition);
}

.portfolio-link:hover i {
    transform: translateX(4px);
}

/* ===== Quote Section ===== */
.quote-section {
    padding: 140px 0;
    background: var(--black-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-content blockquote {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 40px;
    position: relative;
}

.quote-content blockquote::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    color: var(--gray-700);
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.author-title {
    font-size: 13px;
    color: var(--gray-500);
}

/* ===== Sustainability Section ===== */
.sustainability {
    padding: 140px 0;
    background: var(--black);
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .sustainability-grid {
        grid-template-columns: 1fr;
    }
}

.sustainability-card {
    background: var(--black-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 48px;
    transition: var(--transition);
}

.sustainability-card:hover {
    border-color: var(--border-color);
}

.sustainability-icon {
    width: 64px;
    height: 64px;
    background: var(--gray-700);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.sustainability-icon i {
    font-size: 28px;
    color: var(--white);
}

.sustainability-card h3 {
    margin-bottom: 16px;
    color: var(--white);
}

.sustainability-card > p {
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.sustainability-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sustainability-list li {
    font-size: 14px;
    color: var(--gray-300);
    padding-left: 20px;
    position: relative;
}

.sustainability-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--gray-500);
    border-radius: 50%;
}

/* ===== Careers Section ===== */
.careers {
    padding: 140px 0;
    background: var(--black-light);
}

.careers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 991px) {
    .careers-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.careers-content h2 {
    margin-bottom: 20px;
}

.careers-content > p {
    color: var(--gray-300);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.careers-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.career-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-300);
    font-size: 14px;
}

.career-highlight i {
    font-size: 20px;
    color: var(--white);
}

.job-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-card {
    background: var(--black-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.job-card:hover {
    border-color: var(--border-color);
    transform: translateX(8px);
}

.job-type {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
}

.job-card h4 {
    margin: 8px 0 4px;
    color: var(--white);
}

.job-card p {
    font-size: 14px;
    color: var(--gray-400);
    margin: 0;
}

/* ===== Contact Section ===== */
.contact {
    padding: 140px 0;
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray-300);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-700);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--white);
}

.contact-text h4 {
    margin-bottom: 4px;
    color: var(--white);
}

.contact-text p {
    font-size: 15px;
    color: var(--gray-400);
    margin: 0;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--black-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--gray-700);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group select {
    color: var(--gray-500);
    cursor: pointer;
}

.form-group select option {
    background: var(--black-card);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gray-500);
    background: var(--gray-600);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 40px;
    background: var(--black-card);
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-700);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gray-600);
}

.social-links i {
    font-size: 18px;
    color: var(--white);
}

.footer-links h5 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-500);
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
}

.footer-tagline {
    font-style: italic;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-content {
    animation: fadeInUp 1s ease forwards;
}

.hero-scroll {
    animation: fadeIn 1s ease 1s forwards;
    opacity: 0;
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

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