/* ── Root variables ──────────────────────────────────────────────────── */
:root {
    --purple:       #512BD4;
    --purple-light: #7B5EA7;
    --purple-dark:  #3A1FA0;
    --purple-pale:  #F0ECFF;
    --rose:         #E8576B;
    --gold:         #F5A623;
    --text:         #1A1A2E;
    --text-muted:   #6B7280;
    --border:       #E5E7EB;
    --bg:           #F8F7FF;
    --sidebar-w:    240px;
    --radius:       12px;
    --shadow:       0 4px 20px rgba(81,43,212,.08);
}

/* ── Reset ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    color: var(--text);
    background: var(--bg);
    height: 100%;
}

a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Splash screen ────────────────────────────────────────────────────── */
.splash-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
}
.splash-logo { text-align: center; color: white; }
.splash-ring { font-size: 3rem; display: block; margin-bottom: .5rem; animation: pulse 1.2s ease-in-out infinite; }
.splash-logo h1 { font-size: 2.2rem; font-weight: 700; letter-spacing: -1px; }
.splash-logo p  { opacity: .75; margin-top: .25rem; }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.1)} }

/* ── Layout shell ────────────────────────────────────────────────────── */
.app-shell {
    display: flex;
    min-height: 100vh;
}

/* ── Sidebar ─────────────────────────────────────────────────────────── */
.sidebar {
    width: var(--sidebar-w);
    background: linear-gradient(180deg, var(--purple-dark) 0%, var(--purple) 100%);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    z-index: 100;
    overflow-y: auto;
    transition: transform .3s;
}
.sidebar-brand {
    padding: 1.5rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.sidebar-brand .brand-icon { font-size: 1.6rem; }
.sidebar-brand .brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: -.5px;
}
.sidebar-brand .brand-sub { font-size: .7rem; color: rgba(255,255,255,.6); }

.sidebar-nav { flex: 1; padding: .75rem 0; }
.nav-section-label {
    font-size: .65rem;
    font-weight: 600;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: .75rem 1.25rem .25rem;
}
.nav-link-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .6rem 1.25rem;
    color: rgba(255,255,255,.8);
    font-size: .88rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 0;
    transition: background .15s, color .15s;
    text-decoration: none;
}
.nav-link-item:hover { background: rgba(255,255,255,.1); color: white; text-decoration: none; }
.nav-link-item.active { background: rgba(255,255,255,.18); color: white; }
.nav-link-item .nav-icon { font-size: 1rem; width: 1.1rem; text-align: center; }

.sidebar-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,.12);
}
.sidebar-user { display: flex; align-items: center; gap: .6rem; }
.sidebar-avatar {
    width: 32px; height: 32px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; color: white; font-weight: 600;
}
.sidebar-user-info { flex: 1; min-width: 0; }
.sidebar-user-name { font-size: .8rem; font-weight: 600; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-user-role { font-size: .68rem; color: rgba(255,255,255,.5); }
.sidebar-logout { background: none; border: none; color: rgba(255,255,255,.6); cursor: pointer; font-size: .85rem; padding: 0; }
.sidebar-logout:hover { color: white; }

/* Mobile hamburger */
.mobile-topbar {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 56px;
    background: var(--purple);
    align-items: center;
    padding: 0 1rem;
    z-index: 200;
    color: white;
}
.mobile-topbar .brand { font-size: 1.1rem; font-weight: 700; flex: 1; }
.hamburger-btn { background: none; border: none; color: white; font-size: 1.4rem; cursor: pointer; }

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 99;
}

/* ── Main content ────────────────────────────────────────────────────── */
.main-content {
    margin-left: var(--sidebar-w);
    flex: 1;
    min-height: 100vh;
    padding: 2rem;
}

/* ── Page header ─────────────────────────────────────────────────────── */
.page-header { margin-bottom: 1.5rem; }
.page-header h1 { font-size: 1.6rem; font-weight: 700; color: var(--text); }
.page-header p  { color: var(--text-muted); margin-top: .25rem; }

/* ── Cards ───────────────────────────────────────────────────────────── */
.card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    padding: 1.5rem;
}
.card-title { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; color: var(--text); }
.stat-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.stat-icon { font-size: 1.6rem; }
.stat-label { font-size: .78rem; color: var(--text-muted); font-weight: 500; }
.stat-value { font-size: 1.4rem; font-weight: 700; color: var(--text); }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn-primary {
    background: var(--purple);
    border-color: var(--purple);
    color: white;
    border-radius: 8px;
    font-weight: 500;
    padding: .5rem 1.25rem;
}
.btn-primary:hover { background: var(--purple-dark); border-color: var(--purple-dark); color: white; }
.btn-primary:disabled { opacity: .6; }

.btn-outline-primary {
    border-color: var(--purple);
    color: var(--purple);
    border-radius: 8px;
    font-weight: 500;
}
.btn-outline-primary:hover { background: var(--purple); color: white; }

.btn-ghost {
    background: none; border: none;
    color: var(--text-muted);
    padding: .4rem .75rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: .85rem;
}
.btn-ghost:hover { background: var(--purple-pale); color: var(--purple); }

/* ── Forms ───────────────────────────────────────────────────────────── */
.form-control, .form-select {
    border-radius: 8px;
    border: 1.5px solid var(--border);
    padding: .6rem .9rem;
    font-size: .9rem;
    transition: border-color .15s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(81,43,212,.12);
}
.form-label { font-weight: 500; font-size: .85rem; margin-bottom: .35rem; }

/* ── Auth pages ──────────────────────────────────────────────────────── */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-light) 100%);
    padding: 2rem;
}
.auth-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.auth-logo { text-align: center; margin-bottom: 1.5rem; }
.auth-logo .logo-ring { font-size: 2.5rem; }
.auth-logo h1 { font-size: 1.6rem; font-weight: 700; color: var(--purple); margin-top: .25rem; }
.auth-logo p  { color: var(--text-muted); font-size: .85rem; }

/* ── Badges ──────────────────────────────────────────────────────────── */
.badge {
    padding: .25rem .65rem;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 600;
}
.badge-purple { background: var(--purple-pale); color: var(--purple); }
.badge-green  { background: #ECFDF5; color: #059669; }
.badge-yellow { background: #FFF9E6; color: #B45309; }
.badge-red    { background: #FEF2F2; color: #DC2626; }
.badge-gray   { background: #F3F4F6; color: #6B7280; }

/* ── Progress ────────────────────────────────────────────────────────── */
.progress { height: 8px; border-radius: 20px; background: var(--border); }
.progress-bar {
    background: linear-gradient(90deg, var(--purple) 0%, var(--purple-light) 100%);
    border-radius: 20px;
    transition: width .4s ease;
}

/* ── Phase list ──────────────────────────────────────────────────────── */
.phase-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s;
    text-decoration: none;
    color: var(--text);
}
.phase-item:hover { background: var(--purple-pale); text-decoration: none; }
.phase-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.phase-info { flex: 1; min-width: 0; }
.phase-name { font-weight: 600; font-size: .9rem; }
.phase-tasks { font-size: .78rem; color: var(--text-muted); margin-top: .1rem; }
.phase-arrow { color: var(--text-muted); }

/* ── Task items ──────────────────────────────────────────────────────── */
.task-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .85rem 0;
    border-bottom: 1px solid var(--border);
}
.task-item:last-child { border-bottom: none; }
.task-check {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: white;
    cursor: pointer;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: all .15s;
    margin-top: 2px;
}
.task-check.done { background: #059669; border-color: #059669; color: white; font-size: .7rem; }
.task-check:hover { border-color: var(--purple); }
.task-body { flex: 1; }
.task-title { font-size: .9rem; font-weight: 500; }
.task-title.done { text-decoration: line-through; color: var(--text-muted); }
.task-meta { font-size: .75rem; color: var(--text-muted); margin-top: .15rem; }

/* ── Budget ──────────────────────────────────────────────────────────── */
.budget-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.budget-stat {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid var(--border);
    text-align: center;
}
.budget-stat .amount { font-size: 1.4rem; font-weight: 700; }
.budget-stat .label  { font-size: .75rem; color: var(--text-muted); margin-top: .2rem; }

/* ── Vendor cards ────────────────────────────────────────────────────── */
.vendor-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.vendor-cat {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--purple);
}
.vendor-name { font-weight: 600; font-size: .95rem; }
.vendor-details { font-size: .8rem; color: var(--text-muted); }
.vendor-status { margin-top: auto; }

/* ── Filter pills ────────────────────────────────────────────────────── */
.filter-pills { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.filter-pill {
    padding: .3rem .85rem;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--text-muted);
    font-size: .8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .15s;
}
.filter-pill.active { background: var(--purple); border-color: var(--purple); color: white; }

/* ── Mood buttons ────────────────────────────────────────────────────── */
.mood-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.mood-btn {
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem .5rem;
    text-align: center;
    cursor: pointer;
    transition: all .15s;
}
.mood-btn:hover { border-color: var(--purple); }
.mood-btn.selected { border-color: var(--purple); background: var(--purple-pale); }
.mood-emoji { font-size: 1.8rem; display: block; }
.mood-label { font-size: .75rem; margin-top: .35rem; color: var(--text-muted); font-weight: 500; }

/* ── Onboarding ──────────────────────────────────────────────────────── */
.onboarding-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.step-dots { display: flex; gap: .5rem; justify-content: center; margin-bottom: 2rem; }
.step-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: all .3s;
}
.step-dot.active { background: var(--purple); width: 24px; border-radius: 4px; }

/* ── Admin ───────────────────────────────────────────────────────────── */
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }

/* ── Dashboard countdown ─────────────────────────────────────────────── */
.countdown-card {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    color: white;
    border-radius: var(--radius);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}
.countdown-card h2 { font-size: 1.1rem; opacity: .85; margin-bottom: .5rem; }
.countdown-days { font-size: 3.5rem; font-weight: 800; line-height: 1; }
.countdown-label { opacity: .7; font-size: .85rem; margin-top: .25rem; }
.countdown-date { opacity: .6; font-size: .8rem; margin-top: 1rem; }

/* ── Grid helpers ────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

/* ── Alert ───────────────────────────────────────────────────────────── */
.alert-error { background: #FEF2F2; border: 1px solid #FECACA; color: #DC2626; border-radius: 8px; padding: .75rem 1rem; font-size: .85rem; margin-bottom: 1rem; }
.alert-success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #059669; border-radius: 8px; padding: .75rem 1rem; font-size: .85rem; margin-bottom: 1rem; }

/* ── Table ───────────────────────────────────────────────────────────── */
.sayido-table { width: 100%; border-collapse: collapse; }
.sayido-table th { font-size: .75rem; font-weight: 600; text-transform: uppercase; color: var(--text-muted); padding: .6rem .75rem; border-bottom: 2px solid var(--border); text-align: left; }
.sayido-table td { padding: .75rem; border-bottom: 1px solid var(--border); font-size: .88rem; }
.sayido-table tr:last-child td { border-bottom: none; }
.sayido-table tr:hover td { background: var(--purple-pale); }

/* ── Divider ─────────────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 1rem 0; }

/* ── Error UI ────────────────────────────────────────────────────────── */
#blazor-error-ui {
    background: #FEF2F2;
    bottom: 0; left: 0; right: 0;
    padding: .75rem 1.5rem;
    position: fixed;
    display: none;
    z-index: 9999;
    font-size: .85rem;
    color: #DC2626;
    box-shadow: 0 -2px 8px rgba(0,0,0,.1);
}
#blazor-error-ui .reload { color: var(--purple); font-weight: 600; margin-left: 1rem; }
#blazor-error-ui .dismiss { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); cursor: pointer; }

/* ── Not found ───────────────────────────────────────────────────────── */
.not-found-container { text-align: center; padding: 4rem 1rem; }
.not-found-container h1 { font-size: 5rem; font-weight: 800; color: var(--purple); }
.not-found-container p  { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .sidebar { transform: translateX(-100%); }
    .sidebar.open { transform: translateX(0); }
    .sidebar-overlay.open { display: block; }
    .mobile-topbar { display: flex; }
    .main-content { margin-left: 0; padding: 1rem; padding-top: 70px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .grid-2.keep-2 { grid-template-columns: repeat(2, 1fr); }
    .mood-grid { grid-template-columns: repeat(3, 1fr); }
    .auth-card { padding: 1.75rem; }
}

/* ── Modal backdrop + panel ──────────────────────────────────────────── */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1000;
    animation: fadeIn .15s ease;
}
.modal-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    width: calc(100% - 2rem);
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1001;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    animation: slideUp .2s ease;
}
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translate(-50%, -46%); } to { opacity: 1; transform: translate(-50%, -50%); } }

/* ── Budget summary row ──────────────────────────────────────────────── */
.budget-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
    .budget-summary { grid-template-columns: repeat(2, 1fr); }
    .modal-panel { padding: 1.25rem; }
}

/* ── Toast notifications ─────────────────────────────────────────────── */
.toast-wrap {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 2000;
    transition: opacity .3s ease, transform .3s ease;
}
.toast-wrap.toast-in  { opacity: 1; transform: translateY(0); }
.toast-wrap.toast-out { opacity: 0; transform: translateY(12px); pointer-events: none; }
.toast {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .85rem 1.1rem;
    border-radius: 10px;
    min-width: 240px;
    max-width: 360px;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    font-size: .88rem;
    font-weight: 500;
    color: white;
}
.toast-success { background: #059669; }
.toast-error   { background: #DC2626; }
.toast-warning { background: #D97706; }
.toast-info    { background: var(--purple); }
.toast-icon    { font-size: 1rem; flex-shrink: 0; }
.toast-text    { flex: 1; }
.toast-close   { background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer; font-size: .85rem; padding: 0; flex-shrink: 0; }
.toast-close:hover { color: white; }
@media (max-width: 600px) {
    .toast-wrap { bottom: 1rem; right: .75rem; left: .75rem; }
    .toast { max-width: 100%; }
}

/* ── Landing page ────────────────────────────────────────────────────── */
.landing { min-height: 100vh; font-family: 'Inter', sans-serif; }

.landing-hero {
    background: linear-gradient(135deg, #4c1d95 0%, var(--purple) 60%, #7c3aed 100%);
    color: white;
    padding: 0 0 5rem;
    position: relative;
    overflow: hidden;
}
.landing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    position: relative;
    z-index: 1;
}
.landing-brand {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -.5px;
}
.landing-hero-body {
    text-align: center;
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}
.landing-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 20px;
    padding: .3rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .3px;
    margin-bottom: 1.5rem;
}
.landing-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.5px;
    margin-bottom: 1rem;
}
.landing-subtitle {
    font-size: 1.05rem;
    opacity: .85;
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto;
}
.landing-rings {
    text-align: center;
    font-size: 5rem;
    margin-top: 3rem;
    opacity: .25;
    position: relative;
    z-index: 1;
}

.landing-section { padding: 5rem 1.5rem; }
.landing-container { max-width: 1080px; margin: 0 auto; }
.landing-section-label {
    text-align: center;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--purple);
    margin-bottom: .75rem;
}
.landing-section-title {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.5px;
    margin-bottom: .75rem;
    color: var(--text);
}
.landing-section-sub {
    text-align: center;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 3rem;
    font-size: .95rem;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(124,58,237,.1); }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card p  { font-size: .87rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.step-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.step-num {
    width: 44px; height: 44px;
    background: var(--purple);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 800;
    margin: 0 auto 1rem;
}
.step-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; }
.step-card p  { font-size: .83rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.step-arrow { font-size: 1.5rem; color: var(--purple); opacity: .4; align-self: center; padding-top: .5rem; }

.landing-footer {
    background: #1e1b4b;
    color: white;
    padding: 3rem 1.5rem;
}

@media (max-width: 900px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .step-arrow   { display: none; }
}
@media (max-width: 600px) {
    .feature-grid { grid-template-columns: 1fr; }
    .landing-hero-body { padding: 2.5rem 1.25rem 1.5rem; }
    .steps-grid   { flex-direction: column; align-items: center; }
    .step-card    { max-width: 100%; }
}
