:root {
    --salmon: #ff9b9b;
    --salmon-dim: #e58b8b;
    --charcoal: #1a1a1a;
    --midnight: #0a0a0a;
    --pure-white: #ffffff;
    --off-white: #f8f9fa;
    --border: rgba(255, 255, 255, 0.1);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background-color: var(--pure-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--salmon);
    margin-bottom: 1.5rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(25px);
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border);
}

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

.logo img {
    height: 48px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--salmon);
    color: var(--midnight) !important;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
}

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

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: subtleZoom 30s infinite alternate ease-in-out;
}

@keyframes subtleZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--pure-white);
    max-width: 900px;
}

.mega-coming-soon {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 12px;
    color: var(--salmon);
    margin-bottom: 2rem;
    display: block;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDown 1.2s forwards 0.2s;
}

.hero h1 {
    font-size: 6rem;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: -4px;
    color: var(--pure-white);
}

.hero .subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    letter-spacing: -0.5px;
}

.cta-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1.4rem 3.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--salmon);
    color: var(--midnight);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 155, 155, 0.4);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--salmon);
}

.centered {
    text-align: center;
}

.hero-scroller {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.scroll-line {
    display: block;
    width: 100%;
    height: 30%;
    background: var(--salmon);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(400%);
    }
}

/* Approach Section */
.approach {
    padding: 12rem 0;
    background: var(--charcoal);
    color: var(--pure-white);
    position: relative;
}

.section-header {
    margin-bottom: 6rem;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    color: var(--pure-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    position: relative;
    transition: var(--transition);
    padding-top: 2rem;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-num {
    font-size: 5rem;
    font-weight: 800;
    font-family: 'Outfit';
    color: rgba(255, 155, 155, 0.15);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--pure-white);
    font-weight: 700;
}

.step-card p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 10rem 0;
    background: var(--midnight);
    color: var(--pure-white);
    border-top: 1px solid var(--border);
}

.contact-email {
    margin: 3rem 0;
}

.contact-email a {
    font-size: 4rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--salmon);
    text-decoration: none;
    letter-spacing: -2px;
    transition: var(--transition);
}

.contact-email a:hover {
    letter-spacing: 0;
    color: var(--pure-white);
}

.contact p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

.fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1.5s 0.5s forwards;
}

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

/* Footer */
footer {
    padding: 10rem 0 4rem;
    background: var(--midnight);
    color: var(--pure-white);
}

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

.footer-brand h4 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--salmon);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
}

.footer-nav h5,
.footer-contact h5 {
    color: var(--pure-white);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 2.5rem;
    opacity: 0.5;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 1.2rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--salmon);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 4rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4.5rem;
    }

    .hero .subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }

    .nav-links {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .btn {
        padding: 1.2rem 2.5rem;
        width: 100%;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}