:root {
    --primary: #FF8C42;
    /* Vibrant Orange from Logo vibe */
    --primary-dark: #E66A1E;
    --secondary: #FFD166;
    /* Soft Yellow */
    --accent: #4D908E;
    /* Teal for balance */
    --tech-blue: #277DA1;

    /* Updated for SUPER VIBRANT Orange & Pet Vibe */
    --text-main: #FFFFFF;
    --text-muted: #FFEFD5;
    /* PapayaWhip - very soft warm white */

    /* Neon/Vibrant Orange Gradient */
    --primary: #FF5E00;
    --bg-gradient: linear-gradient(135deg, #FF4500 0%, #FFA800 100%);

    --glass-bg: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.4);

    --font-main: 'Outfit', sans-serif;

    --radius-lg: 32px;
    /* Rounder corners for Friendlier/Pet vibe */
    --radius-md: 20px;
    --radius-sm: 12px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(255, 255, 255, 0.5);
}

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

body {
    font-family: var(--font-main);
    background: var(--bg-gradient);
    /* Paw Print Pattern Overlay */
    background-image:
        var(--bg-gradient),
        url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="rgba(255,255,255,0.07)"><circle cx="20" cy="30" r="9"/><circle cx="50" cy="15" r="9"/><circle cx="80" cy="30" r="9"/><path d="M50 45 C 30 45, 25 75, 45 85 C 50 87, 55 87, 60 83 C 75 75, 70 45, 50 45 Z"/></g></svg>');
    background-blend-mode: overlay;
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Blobs */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

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

.blob-1 {
    width: 500px;
    height: 500px;
    background: #FFD700;
    /* Gold */
    top: -100px;
    right: -100px;
    animation-delay: 0s;
    opacity: 0.3;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #FF4500;
    /* OrangeRed */
    bottom: -50px;
    left: -100px;
    animation-delay: -5s;
    opacity: 0.4;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #FFFFFF;
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    opacity: 0.15;
    /* Subtle white glow */
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, 50px) rotate(10deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Navbar */
.navbar {
    padding: 40px 0 24px 0;
    /* Increased top padding to push it down */
    width: 100%;
    display: flex;
    justify-content: center;
    /* Center the container content */
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the logo and text */
    gap: 12px;
}

.logo {
    height: 72px;
    /* Reduced from 90px to be balanced */
    object-fit: contain;
}

.brand-name {
    font-weight: 700;
    font-size: 1.75rem;
    /* Larger brand name */
    color: var(--text-main);
    letter-spacing: -0.02em;
}

/* Hero Section - Perfect Centering */
.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 24px;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    /* Better spacing */
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.badge {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Added shadow for pop */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.main-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    /* Improved legibility */
}

.highlight {
    background: linear-gradient(135deg, #FFFAE0 0%, #FFFFFF 100%);
    /* Brighter white gradient */
    -webkit-background-clip: text;
    background-clip: text;
    /* Standard property for compatibility */
    -webkit-text-fill-color: transparent;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-description {
    font-size: 1.25rem;
    color: #FFF0F5;
    /* Cleaning up the muted color to almost white */
    line-height: 1.6;
    max-width: 600px;
    font-weight: 500;
    /* Slightly bolder */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Form - Enhanced Focus */
.waitlist-form {
    width: 100%;
    max-width: 480px;
    margin-top: 24px;
}

.input-group {
    display: flex;
    background: white;
    padding: 8px;
    /* Slightly thicker */
    border-radius: 100px;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    /* Prepare for border transition */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.input-group:focus-within {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
}

.waitlist-form input {
    flex: 1;
    border: none;
    padding: 16px 24px;
    font-size: 1.1rem;
    outline: none;
    font-family: var(--font-main);
    background: transparent;
    color: #333;
    font-weight: 500;
}

.cta-button {
    background: #2D3436;
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy spring transition */
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #000000;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.cta-button:active {
    transform: scale(0.95);
}

/* Features - Juicy Rollovers */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    /* Increased gap */
    margin-top: 64px;
    width: 100%;
    max-width: 1000px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.92);
    /* Much more opaque for better contrast */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy hover */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Defined shadow */
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.icon-box {
    font-size: 3rem;
    background: white;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.feature-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #2D3436;
    /* Dark text for high contrast on white card */
}

.feature-card p {
    font-size: 1rem;
    color: #636E72;
    /* Dark grey for readability */
    line-height: 1.6;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 32px 0;
    text-align: center;
    color: white;
    /* Footer text to white */
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

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

/* Responsive */
/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 32px 0 16px 0;
        /* More space on mobile from top too */
    }

    .logo {
        height: 50px;
        /* Adjusted for mobile */
    }

    .brand-name {
        font-size: 1.4rem;
    }

    .main-title {
        font-size: 2.5rem;
        /* Smaller title for mobile */
        padding: 0 16px;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 48px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .input-group {
        flex-direction: column;
        padding: 8px;
        border-radius: 24px;
        /* Less round on mobile for stacking */
        gap: 12px;
        width: 100%;
    }

    .waitlist-form {
        padding: 0 16px;
    }

    .waitlist-form input {
        text-align: center;
        padding: 12px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 1rem;
    }

    .hero-section {
        padding: 40px 0;
    }

    /* Tame the blobs on mobile */
    .blob {
        opacity: 0.2;
        filter: blur(60px);
    }

    .blob-1 {
        width: 300px;
        height: 300px;
        right: -150px;
    }

    .blob-2 {
        width: 250px;
        height: 250px;
        left: -100px;
    }
}