:root {
    --mint: #2dd4bf;
    --salmon: #fb7185;
    --primary: #2dd4bf; /* Mint focus */
    --primary-light: rgba(45, 212, 191, 0.1);
    --secondary: #fb7185; /* Salmon accent */
    --bg: #f8fafc;
    --text-main: #1e293b;
    --text-dim: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.03), 0 4px 12px -3px rgba(0, 0, 0, 0.02);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .logo-container {
    font-family: 'Outfit', sans-serif;
}

.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(100px);
}

.blob {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    opacity: 0.25;
    animation: move 25s infinite alternate ease-in-out;
}

.blob-1 { background: var(--mint); top: -20%; left: -10%; }
.blob-2 { background: var(--salmon); bottom: -20%; right: -10%; animation-delay: -5s; }
.blob-3 { background: #fee2e2; top: 30%; left: 30%; animation-delay: -10s; }

@keyframes move {
    from { transform: translate(0, 0) scale(1.0); }
    to { transform: translate(120px, 90px) scale(1.1); }
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.glass-nav {
    position: sticky;
    top: 1.5rem;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-top: 1.5rem;
    box-shadow: var(--card-shadow);
}

.main-logo {
    height: 28px;
    width: auto;
    display: block;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s;
}

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

/* Hero */
.hero {
    padding: 10rem 0 7rem;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--mint);
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: #0f172a;
}

.highlight {
    background: linear-gradient(135deg, var(--mint), var(--salmon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-dim);
    max-width: 650px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

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

.keywords span {
    padding: 0.6rem 1.4rem;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

/* Sections */
.section {
    padding: 8rem 0;
}

.section-tag {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--salmon);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.glass-card {
    background: white;
    padding: 3.5rem 2.8rem;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-12px);
    border-color: var(--mint);
}

.glass-card.feature-highlight {
    background: linear-gradient(135deg, #ffffff, #f0fdfa);
    border-left: 6px solid var(--mint);
}

.icon {
    font-size: 3.2rem;
    margin-bottom: 1.8rem;
}

h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-list {
    margin-top: 2.5rem;
}

.feature-item {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
}

.feature-item span {
    color: var(--mint);
    font-size: 1.5rem;
    margin-right: 12px;
}

/* Footer */
footer {
    padding: 7rem 0 4rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    background: white;
}

.footer-logo {
    height: 24px;
    margin-bottom: 1.5rem;
}

.footer-note {
    color: var(--text-dim);
    font-weight: 500;
    margin-bottom: 2rem;
}

.copyright {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-text { animation: fadeInUp 1s ease forwards; }
.animate-text-delay { animation: fadeInUp 1s ease 0.3s forwards; opacity: 0; }
.animate-text-delay-2 { animation: fadeInUp 1s ease 0.6s forwards; opacity: 0; }

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

@media (max-width: 768px) {
    h1 { font-size: 3.2rem; }
    h2 { font-size: 2.4rem; }
    .glass-nav { padding: 0.8rem 1.5rem; }
    .nav-links { display: none; }
}
