:root {
    --peach: #fde2d2;
    --mint: #d9f7e8;
    --sky: #d6f3ff;
    --sun: #fff6c7;
    --ink: #0f172a;
    --card: rgba(255, 255, 255, 0.86);
}

body {
    color: var(--ink);
    background: linear-gradient(135deg, var(--peach), var(--sky), var(--mint));
    background-attachment: fixed;
    font-family: 'Sora', sans-serif;
}

.bg-pattern {
    background-image: radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.05) 1px, transparent 0);
    background-size: 20px 20px;
}

.glass-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
}

.hover-grow {
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.hover-grow:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.15);
}

.btn-hero {
    background: linear-gradient(135deg, #ffb4a2, #86d4f7);
    color: #1e293b;
}

.text-gradient {
    background: linear-gradient(120deg, #1f2937, #0f766e);
    -webkit-background-clip: text;
    color: transparent;
}

.display-font {
    font-family: 'Fraunces', serif;
}

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

.fade-up {
    animation: fadeUp 0.6s ease both;
}

.stagger-1 {
    animation-delay: 0.05s;
}

.stagger-2 {
    animation-delay: 0.12s;
}

.stagger-3 {
    animation-delay: 0.18s;
}

.ring-soft {
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.4);
}
