:root {
    /* Colours */
    --primary: hsl(111, 66%, 41%);
    --primary-soft: hsl(111, 66%, 92%);
    --primary-dark: hsl(111, 66%, 30%);
    --secondary: hsl(14, 92%, 41%);
    --secondary-soft: hsl(14, 92%, 92%);
    /* Greys */
    --bg: #f8f9fa;
    --surface: #ffffff;
    --text: #1f2933;
    --muted: #6b7280;
    --border: #e5e7eb;
}

* {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
}

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

header {
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    text-decoration: none;
}

.logo img {
    width: 15%;
}

.badge {
    background: var(--primary-soft);
    color: var(--primary-dark);
    padding: .25rem .5rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
}

/* Hero */
.hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 3rem;
    align-items: center;
}

h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin: 0 0 1rem;
}

.subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 38rem;
}

.highlight {
    color: var(--primary);
}

.waitlist-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.waitlist-card h3 {
    margin-top: 0;
    margin-bottom: .25rem;
}

.waitlist-card p {
    margin-top: 0;
    color: var(--muted);
    font-size: .95rem;
}

.waitlist-button {
    display: inline-block;
    margin-top: 1rem;
    padding: .9rem 1.5rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #22a55e, #16a34a);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0,0,0,.2);
    transition: transform .08s ease, box-shadow .08s ease;
}

.waitlist-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,.25);
}

form {
    display: flex;
    gap: .5rem;
    margin-top: 1rem;
}

input[type="email"] {
    flex: 1;
    padding: .7rem .75rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: .95rem;
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
}

button {
    padding: .7rem 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: var(--primary);
    color: white;
    font-weight: 600;
    transition: transform .05s ease, box-shadow .05s ease;
}

button:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, .12);
    transform: translateY(-1px);
}

.note {
    margin-top: .5rem;
    font-size: .75rem;
    color: var(--muted);
}

/* Features */
.features {
    padding: 3rem 0 4rem;
}

.features h2 {
    margin-top: 0;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.75rem;
    position: relative;
}

.features h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: .5rem auto 0;
    border-radius: 2px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    transition: transform .2s ease, box-shadow .2s ease;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .15);
}

.icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    margin-bottom: .75rem;
    transition: transform .2s ease;
}

.feature:hover .icon {
    transform: scale(1.1);
}

.icon.primary {
    background: var(--primary);
}

.icon.secondary {
    background: var(--secondary);
}

.feature p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .95rem;
}

/* CTA strip */
.cta {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.cta h2 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-size: 1.8rem;
    animation: fadeInUp 0.8s ease forwards;
}

.cta p {
    margin-top: 0;
    opacity: .9;
    animation: fadeInUp 1s ease forwards;
}

.cta button {
    margin-top: 1rem;
    padding: .9rem 1.5rem;
    font-size: 1rem;
    background: linear-gradient(135deg, #22a55e, #16a34a);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .2);
}

footer {
    padding: 2rem 0;
    margin: 0 2rem;
    text-align: left;
    font-size: .85rem;
    color: var(--muted);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .logo img {
        width: 25%;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}
