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

:root {
    --primary: #4f46e5;
    --accent: #ec4899;
    --bg: #ffffff;
    --text: #111827;
    --blue-1: rgba(99, 102, 241, 0.3);
    --blue-2: rgba(59, 130, 246, 0.3);
    --blue-3: rgba(96, 165, 250, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background-color: #fafaff;
    background-image:
        radial-gradient(240px 240px at 10% 15%, rgba(99, 102, 241, 0.35), transparent 65%),
        radial-gradient(220px 220px at 25% 30%, rgba(59, 130, 246, 0.3), transparent 60%),
        radial-gradient(230px 230px at 40% 10%, rgba(96, 165, 250, 0.28), transparent 70%),
        radial-gradient(210px 210px at 55% 25%, rgba(99, 102, 241, 0.32), transparent 65%),
        radial-gradient(230px 230px at 70% 15%, rgba(59, 130, 246, 0.3), transparent 65%),
        radial-gradient(220px 220px at 85% 30%, rgba(96, 165, 250, 0.28), transparent 70%),
        radial-gradient(200px 200px at 20% 60%, rgba(59, 130, 246, 0.3), transparent 60%),
        radial-gradient(210px 210px at 35% 50%, rgba(99, 102, 241, 0.35), transparent 65%),
        radial-gradient(230px 230px at 80% 45%, rgba(96, 165, 250, 0.28), transparent 60%),
        radial-gradient(220px 220px at 75% 60%, rgba(59, 130, 246, 0.3), transparent 60%);
    background-repeat: no-repeat;
    color: var(--text);
}

header {
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    backdrop-filter: blur(10px);
}

.logoText {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

nav {
    display: flex;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.headerElement {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.headerElement::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.headerElement:hover::after {
    width: 100%;
}

.hero,
.features-section,
.impact {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    margin-top: -2rem;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero h2 {
    font-size: 1.5rem;
    max-width: 700px;
    margin-bottom: 2rem;
    color: #1f2937;
    opacity: 0.9;
}

.cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta .getStarted {
    background: linear-gradient(to right, #6366f1, #3b82f6);
}

.getStarted {
    background: linear-gradient(to right, #4f46e5, #3b82f6);
    padding: 0.75rem 1.75rem;
    font-size: 1.125rem;
    border-radius: 9999px;
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.getStarted:hover {
    transform: translateY(-2px);
    cursor: pointer;
}

.google {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    color: #3c4043;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #dadce0;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    border-radius: 9999px;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
}

.google:hover {
    box-shadow: 0 2px 4px rgba(60, 64, 67, 0.3);
    transform: translateY(-1px);
    cursor: pointer;
}

.google img {
    width: 20px;
    height: 20px;
}

.features-section {
    padding: 3rem 2rem;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1e3a8a;
}

.features-section h2,
.impact h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(to right, #4f46e5, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

feature {
    border: 1px solid #e5e7eb;
    background: #ffffffcc;
    backdrop-filter: blur(6px);
}


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

.feature img {
    width: 64px;
    height: 64px;
    margin-right: 1.25rem;
}

.feature-content h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #374151;
    font-size: 1.1rem;
    margin: 0;
}

.impact {
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.impact h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat {
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.35);
}

.stat h3 {
    font-size: 4.5rem;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.stat p {
    font-size: 1.25rem;
    color: #374151;
}

footer {
    background-color: var(--primary);
    color: white;
    padding: 2rem 4rem;
    font-weight: 600;
    box-shadow: 0 -4px 15px rgba(79, 70, 229, 0.4);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 50px auto 0px auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-col {
    flex: 1 1 200px;
    min-width: 150px;
}

.footer-col h2,
.footer-col h3 {
    margin-bottom: 0.75rem;
}

.footer-col p {
    font-weight: 400;
    opacity: 0.8;
    max-width: 180px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.footer-github {
    margin-top: 2rem;
    text-align: center;
}

.footer-github img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
    cursor: pointer;
}

.footer-github img:hover {
    filter: brightness(0.7) invert(0.7);
}
