:root {
    --bg: #fbfdfb;
    --paper: #ffffff;
    --paper-soft: #f7fbf8;
    --paper-tint: #eef8f2;
    --text: #172620;
    --heading: #071611;
    --muted: #697b73;
    --soft-muted: #8a9a93;
    --green: #17895d;
    --green-2: #0c6b49;
    --green-3: #3ed58b;
    --mint: #eaf8f1;
    --mint-2: #dff5ea;
    --blue: #2c8aaa;
    --yellow: #9c6b18;
    --red: #bb3f4e;
    --purple: #6f5ab8;
    --line: #e4ede8;
    --line-strong: #cfddd6;
    --shadow-xs: 0 1px 2px rgba(18, 38, 29, 0.05);
    --shadow-sm: 0 12px 30px rgba(20, 42, 33, 0.08);
    --shadow-md: 0 24px 70px rgba(20, 42, 33, 0.11);
    --shadow-lg: 0 36px 110px rgba(20, 42, 33, 0.14);
    --radius: 28px;
    --radius-sm: 16px;
    --radius-lg: 42px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 4%, rgba(23, 137, 93, 0.10), transparent 28rem),
        radial-gradient(circle at 92% 2%, rgba(62, 213, 139, 0.09), transparent 34rem),
        linear-gradient(180deg, #ffffff 0%, #fbfdfb 40%, #ffffff 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 45, 31, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 45, 31, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.38), transparent 70%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    gap: 14px;
    color: var(--muted);
    background: #ffffff;
    transition: opacity .45s ease, visibility .45s ease;
}
.page-loader.hide { opacity: 0; visibility: hidden; }
.loader-orbit {
    width: 46px;
    height: 46px;
    border: 3px solid rgba(23,137,93,.12);
    border-top-color: var(--green);
    border-right-color: var(--green-3);
    border-radius: 999px;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.site-header {
    position: sticky;
    top: 14px;
    z-index: 50;
    width: min(1180px, calc(100% - 32px));
    margin: 16px auto 0;
    padding: 9px 12px 9px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(203, 220, 211, .74);
    border-radius: 999px;
    background: rgba(255,255,255,.90);
    backdrop-filter: blur(24px) saturate(145%);
    -webkit-backdrop-filter: blur(24px) saturate(145%);
    box-shadow: 0 16px 45px rgba(27, 55, 43, .10);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--heading);
    font-weight: 900;
    letter-spacing: -.04em;
}
.brand-image { gap: 0; }
.brand-logo {
    width: 172px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(23, 77, 55, .08));
}
.brand-logo-footer { width: 190px; }
.admin-brand { gap: 12px; align-items: center; flex-wrap: wrap; }
.admin-brand .brand-logo { width: 150px; }
.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--green-2));
    box-shadow: 0 10px 24px rgba(23,137,93,.22);
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}
.main-nav a {
    color: #566a61;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 780;
    font-size: 14px;
    transition: color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--heading);
    background: #f3f8f5;
}
.main-nav .nav-pill {
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--green-2));
    box-shadow: 0 14px 30px rgba(23,137,93,.22);
}
.main-nav .nav-pill:hover { transform: translateY(-1px); color: #fff; }
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--heading);
    background: #fff;
    font-size: 24px;
    line-height: 1;
}

.section, .hero, .page-hero {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}
.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    padding: clamp(58px, 8vw, 92px) 0 54px;
}
.hero::after {
    content: '';
    position: absolute;
    right: 4%;
    top: 18%;
    width: 410px;
    height: 410px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(23,137,93,.11), transparent 66%);
    filter: blur(4px);
    z-index: -1;
}
.hero-copy { max-width: 760px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(23,137,93,.18);
    border-radius: 999px;
    color: var(--green-2);
    background: rgba(234, 248, 241, .86);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .02em;
    box-shadow: var(--shadow-xs);
}
.hero h1,
.page-hero h1 {
    margin: 18px 0 20px;
    color: var(--heading);
    font-size: clamp(48px, 7.4vw, 92px);
    line-height: .92;
    letter-spacing: -.082em;
}
.gradient-text {
    color: transparent;
    background: linear-gradient(135deg, #071611 0%, #17895d 50%, #37b87d 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.lead {
    max-width: 710px;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.72;
}
.hero-actions, .page-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.btn {
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 900;
    line-height: 1;
    transition: transform .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease, color .24s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #24a972, var(--green-2));
    box-shadow: 0 18px 40px rgba(23,137,93,.25);
}
.btn-secondary {
    color: var(--heading);
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,.90);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: rgba(23,137,93,.32); color: var(--green-2); }
.btn-danger { color: #fff; background: var(--red); border: 1px solid rgba(187,63,78,.22); }
.btn-small { padding: 9px 13px; font-size: 13px; }
.full-width { width: 100%; }

.hero-panel {
    position: relative;
    min-height: 560px;
}
.floating-card {
    position: absolute;
    border: 1px solid rgba(207, 221, 214, .82);
    border-radius: var(--radius);
    background: rgba(255,255,255,.84);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    box-shadow: var(--shadow-md);
    animation: floaty 7s ease-in-out infinite;
}
.floating-card.main-card {
    inset: 26px 0 auto 4%;
    min-height: 390px;
    padding: clamp(22px, 3vw, 30px);
    background:
        linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,252,250,.90)),
        radial-gradient(circle at 18% 8%, rgba(23,137,93,.10), transparent 22rem);
}
.floating-card.small-card {
    right: 10px;
    bottom: 22px;
    width: 252px;
    padding: 22px;
    animation-delay: -1.1s;
}
.floating-card.side-card {
    left: 0;
    bottom: 114px;
    width: 272px;
    padding: 22px;
    animation-delay: -2s;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.card-top, .task-top, .application-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.dot-grid {
    display: grid;
    grid-template-columns: repeat(3, 8px);
    gap: 5px;
}
.dot-grid span { width:8px; height:8px; border-radius:50%; background: rgba(23,137,93,.18); }
.main-card h2 {
    margin: 34px 0 14px;
    color: var(--heading);
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -.06em;
    line-height: 1;
}
.metric-row {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 24px 0;
}
.metric {
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-xs);
}
.metric strong { display:block; color: var(--heading); font-size: 25px; letter-spacing:-.04em; }
.metric span { color: var(--muted); font-size: 12px; }
.progress-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #f6fbf8);
}
.progress-line { height: 10px; background: #e7f1ec; border-radius: 999px; overflow:hidden; margin: 16px 0 8px; }
.progress-fill { height:100%; width: 78%; border-radius: 999px; background: linear-gradient(90deg, var(--green), var(--green-3)); }
.avatar-stack { display:flex; margin-top: 16px; }
.avatar-stack span {
    width: 34px;
    height: 34px;
    margin-left: -7px;
    border: 2px solid #fff;
    border-radius: 50%;
    display:grid;
    place-items:center;
    background: linear-gradient(135deg, #e5fbef, #eefaf5);
    color: var(--green-2);
    font-weight: 900;
    font-size: 12px;
    box-shadow: 0 6px 12px rgba(23,137,93,.10);
}
.avatar-stack span:first-child { margin-left: 0; }

.section { padding: 74px 0; }
.section-heading {
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap: 28px;
    margin-bottom: 30px;
}
.section-heading h2, .content-card h2 {
    margin: 10px 0;
    color: var(--heading);
    font-size: clamp(32px, 4vw, 56px);
    line-height: .98;
    letter-spacing: -.065em;
}
.section-heading p { max-width: 560px; color: var(--muted); line-height:1.75; }
.stats-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card, .feature-card, .task-card, .content-card, .form-card, .admin-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow-sm);
}
.stat-card {
    padding: 24px;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.stat-card:hover { transform: translateY(-4px); border-color: rgba(23,137,93,.24); box-shadow: var(--shadow-md); }
.stat-card strong { display:block; color: var(--heading); font-size: 36px; letter-spacing:-.06em; }
.stat-card span { color: var(--muted); line-height: 1.55; }
.features-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 28px; position: relative; overflow:hidden; }
.feature-card::after {
    content:'';
    position:absolute;
    inset: auto -42px -70px auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(23,137,93,.075);
}
.icon-bubble {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    display:grid;
    place-items:center;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--green-2));
    margin-bottom: 18px;
    font-size: 22px;
    box-shadow: 0 12px 28px rgba(23,137,93,.20);
}
.feature-card h3, .task-card h3, .content-card h3 { color: var(--heading); }
.feature-card p, .task-card p, .content-card p, .form-help { color: var(--muted); line-height: 1.72; }

.task-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.task-card {
    padding: 22px;
    display:flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.task-card:hover { transform: translateY(-5px); border-color: rgba(23,137,93,.30); box-shadow: var(--shadow-md); }
.task-card h3 { margin: 0; font-size: 21px; letter-spacing:-.035em; line-height: 1.2; }
.task-meta { display:flex; gap: 8px; flex-wrap: wrap; }
.pill, .badge {
    display:inline-flex;
    align-items:center;
    border-radius: 999px;
    padding: 7px 10px;
    background: #f7faf8;
    border: 1px solid var(--line);
    color: #53675e;
    font-size: 12px;
    font-weight: 850;
}
.pill.green { background: #eef9f4; border-color: #cfeedd; color: var(--green-2); }
.pill.blue { background: #f0f8fb; border-color: #d5ebf2; color: #246b87; }
.pill.yellow { background: #fff8e8; border-color: #f2dfae; color: #865b13; }
.task-footer { margin-top:auto; display:flex; justify-content:space-between; align-items:center; gap: 14px; }
.reward { color: var(--green); font-weight: 950; }

.page-hero { padding: 76px 0 34px; text-align:center; }
.page-hero .lead { margin-inline:auto; }
.breadcrumb { color: var(--soft-muted); font-weight: 820; font-size: 13px; }
.filters {
    display:flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow-sm);
}
.filter-input, .form-control {
    width: 100%;
    border: 1px solid var(--line-strong);
    outline: none;
    color: var(--text);
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 15px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.filter-input { max-width: 320px; }
select.form-control, select.filter-input { color-scheme: light; }
.form-control:focus, .filter-input:focus {
    border-color: rgba(23,137,93,.48);
    box-shadow: 0 0 0 4px rgba(23,137,93,.10);
    background: #fff;
}

.form-shell { width: min(860px, calc(100% - 32px)); margin: 0 auto; padding: 50px 0 90px; }
.form-card { padding: clamp(22px, 4vw, 42px); }
.form-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-group { display:flex; flex-direction:column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { color: #20342c; font-weight: 850; font-size: 14px; }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-error { color: #9e2636; background: #fff0f2; border: 1px solid #f2c7cd; padding: 12px 14px; border-radius: 16px; margin-bottom: 18px; }
.success-card { text-align:center; padding: 56px 28px; }
.success-mark { width: 74px; height: 74px; border-radius: 28px; display:grid; place-items:center; margin: 0 auto 18px; color:#fff; font-size:32px; background:linear-gradient(135deg,var(--green),var(--green-2)); }

.content-shell { width: min(920px, calc(100% - 32px)); margin: 0 auto; padding: 38px 0 90px; }
.content-card { padding: clamp(24px, 4vw, 44px); margin-bottom: 18px; }
.content-card ul { color: var(--muted); line-height: 1.9; }
.content-card h3 { font-size: 24px; letter-spacing:-.03em; margin-top: 26px; }

.cta-band {
    width: min(1180px, calc(100% - 32px));
    margin: 40px auto 80px;
    padding: clamp(28px, 5vw, 58px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap: 24px;
    border: 1px solid rgba(23,137,93,.20);
    border-radius: var(--radius-lg);
    background:
      radial-gradient(circle at 12% 14%, rgba(23,137,93,.10), transparent 22rem),
      linear-gradient(135deg, #ffffff, #f3faf6);
    box-shadow: var(--shadow-md);
}
.cta-band h2 { color: var(--heading); margin: 0 0 10px; font-size: clamp(30px, 4vw, 52px); letter-spacing:-.06em; }
.cta-band p { color: var(--muted); max-width: 650px; line-height:1.72; margin:0; }

.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 24px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow-sm);
}
.footer-grid { display:grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 24px; }
.site-footer h4 { margin: 0 0 12px; color: var(--heading); }
.site-footer p, .tiny { color: var(--muted); line-height: 1.72; }
.site-footer a:not(.brand) { display:block; color: var(--muted); padding: 6px 0; }
.site-footer a:not(.brand):hover { color: var(--green-2); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 24px; padding-top: 18px; color: var(--muted); display:flex; justify-content:space-between; gap: 18px; flex-wrap:wrap; }

[data-animate] { opacity:0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-animate].in-view { opacity:1; transform: translateY(0); }

/* Admin */
.admin-body {
    background:
        radial-gradient(circle at 0% 0%, rgba(23,137,93,.08), transparent 25rem),
        #f7faf8;
}
.admin-layout { min-height: 100vh; display:grid; grid-template-columns: 280px 1fr; }
.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 22px;
    border-right: 1px solid var(--line);
    background: rgba(255,255,255,.90);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.admin-nav { display:flex; flex-direction:column; gap: 8px; margin-top: 28px; }
.admin-nav a {
    color: var(--muted);
    padding: 13px 14px;
    border-radius: 16px;
    font-weight: 850;
    transition: .2s ease;
}
.admin-nav a.active, .admin-nav a:hover { color: var(--heading); background: #edf7f2; }
.admin-main { padding: 28px; }
.admin-topbar { display:flex; justify-content:space-between; gap: 18px; align-items:center; margin-bottom: 22px; }
.admin-topbar h1 { color: var(--heading); margin:0; font-size: clamp(30px, 4vw, 48px); letter-spacing:-.06em; }
.admin-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 20px; }
.admin-card { padding: 22px; }
.admin-card strong { display:block; font-size: 34px; letter-spacing:-.05em; color: var(--heading); }
.admin-card span { color: var(--muted); }
.table-card { overflow:hidden; border: 1px solid var(--line); border-radius: 24px; background: #ffffff; box-shadow: var(--shadow-sm); }
.table-scroll { overflow:auto; }
table { width:100%; border-collapse: collapse; min-width: 860px; }
th, td { padding: 15px 16px; border-bottom: 1px solid #edf2ef; text-align:left; vertical-align: top; }
th { color: #2e493d; font-size: 13px; text-transform: uppercase; letter-spacing:.06em; background: #f7faf8; }
td { color: var(--muted); }
td strong { color: var(--heading); }
.badge-warning { background: #fff8e8; border-color: #f3dfae; color: #8b5f18; }
.badge-info { background: #eef7fb; border-color: #d3eaf3; color: #1f6688; }
.badge-success { background: #edf9f3; border-color: #cfecdd; color: var(--green-2); }
.badge-danger { background: #fff0f2; border-color: #f2c7cd; color: #9e2636; }
.badge-muted { color: var(--muted); }
.admin-actions { display:flex; gap: 8px; flex-wrap:wrap; }
.admin-filter { display:flex; gap: 10px; flex-wrap:wrap; margin-bottom: 16px; }
.admin-filter .filter-input { max-width: 240px; }
.login-screen { min-height:100vh; display:grid; place-items:center; padding: 28px; }
.login-card { width:min(460px, 100%); border: 1px solid var(--line); border-radius: 32px; background: #ffffff; padding: 34px; box-shadow: var(--shadow-md); }
.login-card h1 { color: var(--heading); margin: 20px 0 8px; letter-spacing:-.05em; font-size: 38px; }
.alert-success, .alert-error { padding: 13px 15px; border-radius: 16px; margin-bottom: 16px; }
.alert-success { background: #edf9f3; border:1px solid #cfecdd; color:var(--green-2); }
.alert-error { background: #fff0f2; border:1px solid #f2c7cd; color:#9e2636; }
.detail-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.detail-box { padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: #f8fbfa; }
.detail-box span { display:block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing:.07em; margin-bottom: 7px; }
.detail-box strong, .detail-box p { color: var(--heading); margin:0; line-height:1.7; }

@media (max-width: 980px) {
    .hero { grid-template-columns: 1fr; min-height:auto; padding-top: 58px; }
    .hero-panel { min-height: 520px; }
    .stats-grid, .admin-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid, .task-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-band { flex-direction:column; align-items:flex-start; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { position: relative; height:auto; }
}
@media (max-width: 720px) {
    body::before { background-size: 34px 34px; }
    .site-header { top: 8px; margin-top: 10px; padding: 9px 10px 9px 14px; border-radius: 24px; }
    .brand-logo { width: 150px; max-width: 56vw; }
    .nav-toggle { display:grid; place-items:center; }
    .main-nav {
        display:none;
        position:absolute;
        top: calc(100% + 10px);
        left:0;
        right:0;
        flex-direction:column;
        align-items:stretch;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: rgba(255,255,255,.98);
        box-shadow: var(--shadow-md);
    }
    .main-nav.open { display:flex; }
    .hero { padding-top: 44px; gap: 22px; }
    .hero h1, .page-hero h1 { font-size: clamp(42px, 12vw, 54px); letter-spacing: -.07em; }
    .lead { font-size: 17px; }
    .hero-panel { min-height: 500px; }
    .floating-card.main-card { left: 0; right: 0; top: 20px; }
    .floating-card.side-card { left: 0; bottom: 105px; width: 66%; min-width: 230px; }
    .floating-card.small-card { right: 0; bottom: 42px; width: 58%; min-width: 210px; }
    .metric-row { grid-template-columns: 1fr; }
    .features-grid, .task-grid, .stats-grid, .form-grid, .detail-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .admin-main { padding: 18px; }
    .admin-topbar { flex-direction:column; align-items:flex-start; }
    .filters { align-items: stretch; }
    .filter-input { max-width: 100%; }
}
@media (max-width: 430px) {
    .hero-panel { min-height: 560px; }
    .floating-card.main-card { padding: 20px; }
    .floating-card.side-card { bottom: 132px; width: 72%; }
    .floating-card.small-card { bottom: 36px; width: 62%; }
}
.mini-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0,0,0,.18);
    border-top-color: rgba(0,0,0,.64);
    border-radius: 999px;
    display: inline-block;
    animation: spin .7s linear infinite;
}
.btn-primary .mini-spinner, .btn-danger .mini-spinner {
    border-color: rgba(255,255,255,.35);
    border-top-color: rgba(255,255,255,.96);
}
