@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Sora:wght@500;600;700&display=swap');

.home-shell {
    font-family: 'Manrope', sans-serif;
    background: radial-gradient(circle at top, #ecfeff 0%, #f8fafc 45%, #f1f5f9 100%);
    color: #0f172a;
}

.home-shell h1,
.home-shell h2,
.home-shell h3 {
    font-family: 'Sora', sans-serif;
}

.hero-badge {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0f766e;
}

.hero-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 24px 40px -35px rgba(15, 23, 42, 0.6);
}

.cta-primary {
    background: #0f766e;
    color: white;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px -12px rgba(15, 118, 110, 0.6);
}

.cta-secondary {
    border: 1px solid #0f766e;
    color: #0f766e;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.metric-card {
    background: white;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
}

.metric-card p {
    color: #475569;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #475569;
}

.feature-card {
    background: white;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    display: grid;
    gap: 0.75rem;
    box-shadow: 0 18px 30px -30px rgba(15, 23, 42, 0.5);
}

.step {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
}

.access-panel {
    background: linear-gradient(120deg, #0f766e, #14b8a6 50%, #22c55e);
    color: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.access-panel p {
    color: rgba(255, 255, 255, 0.85);
}