/* Google Antigravity Style - Refined Match */

:root {
    --bg-color: #ffffff;
    --text-primary: #202124;
    --text-secondary: #5f6368;
    --accent-blue: #38bdf8;
    /* Teal from logo.svg */
    --font-family: 'Google Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

@font-face {
    font-family: 'Google Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Google Sans Regular'), local('GoogleSans-Regular'), url(https://fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owp5eKQtG.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Google Sans';
    font-style: normal;
    font-weight: 500;
    src: local('Google Sans Medium'), local('GoogleSans-Medium'), url(https://fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owp5eKQtG.woff2) format('woff2');
    /* Fallback */
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    overflow-x: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    color: #5f6368;
    /* Default greyish */
}

.brand-icon {
    width: 24px;
    height: 24px;
}

.brand-text {
    color: #5f6368;
    letter-spacing: -0.5px;
}

.brand-text .highlight {
    color: var(--accent-blue);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #5f6368;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s;
}

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

/* Hero Section */
.hero {
    min-height: 85vh;
    /* Reduced from 100vh to bring content up */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 100px;
    /* Added bottom padding */
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

.hero h1 {
    font-family: 'Google Sans', sans-serif;
    font-size: 80px;
    /* Large scale */
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 10px 0;
    letter-spacing: -1px;
    color: #202124;
}

.hero h2 {
    font-family: 'Google Sans', sans-serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 48px 0;
    color: #5f6368;
    /* Lighter grey */
    letter-spacing: -0.5px;
}

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

.btn-primary {
    background-color: #202124;
    color: white;
    padding: 12px 32px;
    border-radius: 4px;
    /* Slightly rounded but not pill */
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #202124;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #3c4043;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3);
}

.btn-secondary {
    background-color: white;
    color: #202124;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #dadce0;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
    border-color: #dadce0;
}

/* Floating Particles (Houses) */
/* Floating Particles (Houses) */
.particles-container {
    position: absolute;
    /* Absolute within the parent section */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle-wrapper {
    position: absolute;
    animation: float 20s infinite linear;
}

.particle {
    width: 100%;
    height: 100%;
    opacity: 0.2;
    /* Increased visibility as requested */
    transition: transform 0.1s ease-out;
    /* Smooth interaction */
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* ... existing keyframes ... */

/* Angled Section */
.angled-section {
    position: relative;
    /* Just the Teal Gradient as requested */
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    padding: 120px 0 500px;
    /* Reduced padding slightly but kept enough for the dashboard image */
    margin-top: -80px;
    /* Negative margin to pull it up closer to hero */
    color: white;
    overflow: visible;
    /* Allow content to flow if needed */
    z-index: 20;
    /* Ensure it sits on top of particles container if it was lower, but particles are now 21 */
}

/* ... existing angled-section styles ... */

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: white;
    position: relative;
    z-index: 22;
    /* Ensure it sits on top of particles */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    padding: 30px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: transform 0.2s;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    font-family: 'Google Sans', sans-serif;
    font-size: 24px;
    margin-bottom: 16px;
    color: #202124;
}

.feature-item p {
    color: #5f6368;
    line-height: 1.6;
}

.feature-icon {
    font-size: 32px;
    color: #38bdf8;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 60px 0 30px;
    color: #5f6368;
    font-size: 14px;
    border-top: 1px solid #dadce0;
    position: relative;
    z-index: 22;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Google Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #202124;
}

.footer-nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    text-decoration: none;
    color: #5f6368;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #38bdf8;
}

.social-icons ul {
    display: flex;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons a {
    color: #5f6368;
    font-size: 18px;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #38bdf8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e8eaed;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f8f9fa;
    padding: 16px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #dadce0;
    z-index: 200;
    font-size: 14px;
    color: #5f6368;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

.btn-cookie-reject {
    background-color: white;
    color: #5f6368;
    border: 1px solid #dadce0;
    padding: 8px 24px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}



.angled-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    transform: skewY(-3deg);
    /* The angle */
    transform-origin: top left;
    z-index: 1;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

.showcase-text {
    flex: 1;
}

.showcase-text h2 {
    font-family: 'Google Sans', sans-serif;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.1;
}

.showcase-text p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 32px;
}

.showcase-visual {
    flex: 1.2;
    position: relative;
}

/* Floating App Cards */
.app-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    /* 3D effect */
    transition: transform 0.3s ease;
}

.app-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.app-card img {
    width: 100%;
    height: auto;
    display: block;
}

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

    .hero h2 {
        font-size: 32px;
    }

    .navbar {
        padding: 20px;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 992px) {
    .showcase-container {
        flex-direction: column;
        text-align: center;
    }

    .showcase-visual {
        width: 100%;
        margin-top: 40px;
    }

    .app-card {
        transform: none;
    }
}

```