:root {
    --primary: #6366f1;
    --primary-soft: #eef2ff;
    --accent: #22d3ee;
    --dark: #0f172a;
    --bg: #ffffff;
    --bg-offset: #f8fafc;
    --text-main: #1e293b;
    --text-sub: #64748b;
    --border: #e2e8f0;
    --glass: rgba(255, 255, 255, 0.7);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* --- DYNAMIC BACKGROUND & PARTICLES --- */
.bg-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: drift 25s infinite alternate ease-in-out;
}

.bg-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -150px;
    left: -150px;
}

.bg-2 {
    width: 700px;
    height: 700px;
    background: var(--accent);
    bottom: -200px;
    right: -150px;
    animation-duration: 35s;
    animation-delay: -5s;
}

/* Particles */
.particle {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.2;
    animation: floatParticle 15s infinite linear;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 80px) scale(1.1); }
}

@keyframes floatParticle {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translate(100px, -100vh); opacity: 0; }
}

/* --- MAIN CONTENT --- */
.page-wrapper {
    min-height: 100vh; /* Make main content full height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.brand-mark {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.brand-icon {
    width: clamp(72px, 10vw, 108px);
    height: auto;
    filter: drop-shadow(0 18px 36px rgba(0, 103, 113, 0.18));
}

.main-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.main-hero p {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    font-weight: 400;
    color: var(--text-sub);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

/* --- HERO IMAGE --- */
.hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    animation: floatHero 6s ease-in-out infinite;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 45vh;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(99, 102, 241, 0.15));
    border-radius: 24px;
}

@keyframes floatHero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

/* --- FOOTER --- */
footer {
    width: 100%;
    padding: 4rem 2rem;
    text-align: center;
    background: var(--bg-offset);
    border-top: 1px solid var(--border);
}

.footer-divider {
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 2.5rem;
    border-radius: 10px;
    opacity: 0.4;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    padding: 14px 28px;
    background: var(--primary);
    border-radius: 100px;
    transition: var(--transition);
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.footer-cta:hover {
    transform: translateY(-4px);
    background: #4f46e5;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.footer-cta svg:last-child {
    transition: transform 0.3s ease;
}

.footer-cta:hover svg:last-child {
    transform: translateX(5px);
}

.footer-credits {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
}

.footer-credits a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.footer-credits a:hover {
    text-decoration: underline;
}

.footer-bottom {
    font-size: 0.85rem;
    color: var(--text-sub);
}

@media (max-width: 600px) {
    .page-wrapper { padding: 2rem 1.5rem; }
    .footer-cta { width: 100%; justify-content: center; }
    .hero-image { max-height: 35vh; }
}
