:root {
    --bg-glass: rgba(255, 255, 255, 0.74);
    --border-soft: rgba(148, 163, 184, 0.18);
    --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 30%),
        radial-gradient(circle at right, rgba(14, 165, 233, 0.1), transparent 35%),
        linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
    font-family: Inter, "Segoe UI", sans-serif;
}

.hero-gradient {
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.24), transparent 30%),
        radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.12), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,0.9), rgba(239,246,255,0.92));
}

.hero-premium {
    position: relative;
}

.hero-premium::after {
    content: '';
    position: absolute;
    inset: auto -60px -60px auto;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    filter: blur(8px);
}

.glass-card {
    background: var(--bg-glass);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.hero-proof-panel {
    position: relative;
    overflow: hidden;
}

.hero-proof-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.soft-stat {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.section-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2563eb;
}

.landing-card-hover {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.landing-card-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.step-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.pricing-card-featured {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.14);
}

.calendar-day {
    min-height: 74px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(255, 255, 255, 0.86);
    padding: 0.65rem 0.45rem;
    text-align: left;
    transition: transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.calendar-day:hover {
    transform: translateY(-1px);
    border-color: rgba(37, 99, 235, 0.35);
}

.calendar-day--selected {
    border-color: rgba(37, 99, 235, 0.45);
    background: #dbeafe;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.12);
}

.calendar-day--today {
    outline: 2px solid rgba(37, 99, 235, 0.22);
}

.calendar-day--muted {
    opacity: 0.48;
}

.calendar-day__date {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
}

.calendar-day__meta {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.7rem;
    color: #64748b;
}

.task-filter-group {
    display: inline-flex;
    gap: 0.45rem;
    padding: 0.3rem;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.task-filter-pill {
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    transition: all 0.2s ease;
}

.task-filter-pill:hover {
    color: #0f172a;
}

.task-filter-pill.is-active {
    background: linear-gradient(135deg, #0f172a, #2563eb);
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.16);
}

.input-field {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(255, 255, 255, 0.92);
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.input-field:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.input-field:disabled,
.primary-button:disabled,
.secondary-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.primary-button,
.secondary-button,
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 16px;
    padding: 0.85rem 1.1rem;
    font-weight: 700;
    transition: transform 0.15s ease, opacity 0.2s ease;
}

.primary-button:hover,
.secondary-button:hover,
.whatsapp-button:hover {
    transform: translateY(-1px);
}

.primary-button {
    background: linear-gradient(135deg, #0f172a, #2563eb);
    color: #fff;
}

.secondary-button {
    background: #e2e8f0;
    color: #0f172a;
}

.whatsapp-button {
    background: #22c55e;
    color: #fff;
    padding: 0.7rem 1rem;
}

.priority-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.priority-high {
    background: #fef2f2;
    color: #dc2626;
}

.priority-medium {
    background: #fff7ed;
    color: #ea580c;
}

.priority-low {
    background: #ecfdf5;
    color: #059669;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%) translateY(120px);
    min-width: 240px;
    max-width: calc(100% - 32px);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.92);
    color: #fff;
    padding: 0.9rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease;
    z-index: 50;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}
