/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Brand colors from logo */
:root {
    --primary-green: #74A188;
    --primary-green-light: #8FB9A0;
    --primary-green-dark: #5D8670;
    --dark-text: #101612;
    --light-bg: #FAFAFA;
    --white: #FFFFFF;
    --gray-100: #F5F7F6;
    --gray-200: #E8ECEB;
    --gray-300: #D1D8D6;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Elements */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(116, 161, 136, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(116, 161, 136, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(116, 161, 136, 0.2), rgba(116, 161, 136, 0.05));
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(116, 161, 136, 0.15), rgba(116, 161, 136, 0.03));
    bottom: -50px;
    right: -50px;
    animation-delay: -7s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(116, 161, 136, 0.12), rgba(116, 161, 136, 0.04));
    top: 50%;
    right: 10%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatUpDown 15s infinite ease-in-out;
}

.float-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.float-2 {
    top: 60%;
    right: 20%;
    animation-delay: -5s;
}

.float-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: -10s;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-40px) translateX(20px);
        opacity: 0.6;
    }
}

/* Main Container */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo-wrapper {
    animation: fadeIn 1.2s ease-out;
}

.logo {
    max-width: 650px;
    width: 100%;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(116, 161, 136, 0.15));
}

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

/* Hero Text */
.hero-text {
    max-width: 900px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.tagline {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.tagline-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.tagline-normal {
    display: block;
    color: var(--dark-text);
    font-weight: 400;
}

.subtitle {
    font-size: 1.25rem;
    color: #5A6562;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Coming Soon Badge */
.coming-soon-badge {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.badge-inner {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(116, 161, 136, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.badge-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.badge-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.badge-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
}

/* Notify Section */
.notify-section {
    animation: fadeInUp 1s ease-out 0.6s both;
    width: 100%;
    max-width: 550px;
}

.notify-text {
    font-size: 1rem;
    color: #5A6562;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.notify-form {
    display: flex;
    gap: 1rem;
    width: 100%;
    padding: 0.5rem;
    background: var(--white);
    border-radius: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(116, 161, 136, 0.1);
    transition: all 0.3s ease;
}

.notify-form:focus-within {
    box-shadow: 0 15px 50px rgba(116, 161, 136, 0.15),
                0 0 0 2px var(--primary-green);
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--dark-text);
    outline: none;
    font-family: 'Inter', sans-serif;
}

.email-input::placeholder {
    color: #9CA5A2;
}

.notify-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(116, 161, 136, 0.3);
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(116, 161, 136, 0.4);
}

.notify-btn:active {
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 1024px) {
    .logo {
        max-width: 550px;
    }

    .tagline {
        font-size: 2.5rem;
    }
}

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

    .content {
        gap: 2rem;
    }

    .logo {
        max-width: 420px;
    }

    .tagline {
        font-size: 2rem;
    }

    .badge-inner {
        padding: 0.8rem 2rem;
        gap: 0.75rem;
    }

    .badge-text {
        font-size: 0.9rem;
    }

    .badge-year {
        font-size: 1.2rem;
        padding-left: 0.75rem;
    }

    .shape {
        filter: blur(40px);
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 320px;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .badge-inner {
        padding: 0.7rem 1.5rem;
    }

    .badge-text {
        font-size: 0.85rem;
    }

    .badge-year {
        font-size: 1.1rem;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
