/* Foot Academy Responsive Styles
 * Handles: DataTables, AlpineJS, mobile tables, cards, print, Select2, column filters
 */

/* ── AlpineJS ── */
[x-cloak] { display: none !important; }
[x-collapse] { overflow: hidden; }

/* ── Responsive Table Containers ── */
.table-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0.5rem;
}
.table-scroll > table {
    min-width: 100%;
    margin-bottom: 0;
}

/* ── Base Table Styles ── */
main table { max-width: 100%; }
main table th, main table td { white-space: nowrap; }
main table th:first-child, main table td:first-child { white-space: normal; }

/* ── DataTables ── */
table.dataTable { border-collapse: collapse !important; }
table.dataTable thead th {
    background: #f0fdf4 !important;
    color: #166534 !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    border-bottom: 2px solid #dcfce7 !important;
    padding: 0.75rem 1rem !important;
    white-space: nowrap;
}
table.dataTable tbody td {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid #f1f5f9 !important;
    font-size: 0.875rem !important;
    color: #334155 !important;
}
table.dataTable tbody td:first-child { white-space: normal; }
table.dataTable tbody tr:hover { background-color: #f0fdf4 !important; }
table.dataTable tbody tr:nth-child(even) { background-color: #fafbfc; }

/* DataTables controls */
.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.15s;
}
.dataTables_wrapper .dataTables_filter input:focus {
    border-color: #43A047;
    box-shadow: 0 0 0 3px rgba(67,160,71,0.1);
}
.dataTables_wrapper .dataTables_length select {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.35rem 0.5rem;
    font-size: 0.875rem;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 0.375rem !important;
    border: 1px solid #e2e8f0 !important;
    margin: 0 0.125rem !important;
    padding: 0.35rem 0.75rem !important;
    font-size: 0.875rem !important;
    transition: all 0.15s !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #f0fdf4 !important;
    border-color: #43A047 !important;
    color: #166534 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #43A047 !important;
    border-color: #43A047 !important;
    color: #fff !important;
}
.dataTables_wrapper .dataTables_info {
    font-size: 0.8rem;
    color: #94a3b8;
    padding-top: 0.75rem;
}

/* ── Column Filters Row ── */
tr.fa-colfilters { background: #f8fafc !important; }
tr.fa-colfilters th { border-bottom: 1px solid #e2e8f0 !important; padding: 6px 8px !important; }
tr.fa-colfilters select {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 4px 8px;
    font-size: 0.75rem;
    background: #fff;
    width: 100%;
    cursor: pointer;
}
tr.fa-colfilters select:focus {
    border-color: #43A047;
    outline: none;
}

/* ── Select2 brand-green theming ── */
.select2-container .select2-selection--single {
    height: 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 2.5rem;
    padding-left: 0.75rem;
    color: #374151;
}
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 2.5rem; }
.select2-container--default .select2-selection--multiple {
    min-height: 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: #E8F5E9;
    border: 1px solid #A5D6A7;
    color: #1B5E20;
    border-radius: 0.5rem;
    padding: 2px 8px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove { color: #1B5E20; margin-right: 4px; }
.select2-container--default .select2-results__option--highlighted[aria-selected] { background: #2E7D32; }
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--single:focus {
    border-color: #43A047;
    box-shadow: 0 0 0 2px rgba(67,160,71,0.2);
}
.select2-dropdown { border-color: #d1d5db; border-radius: 0.75rem; }
.select2-search--dropdown .select2-search__field { border-radius: 0.5rem; border: 1px solid #e2e8f0; padding: 6px; }
.select2-container--default .select2-selection--multiple .select2-selection__choice { font-size: 0.813rem; }

/* ── Export/Filter toolbar ── */
.fa-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}
.fa-toolbar button, .fa-toolbar a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.813rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.15s;
}
.fa-toolbar .btn-csv { background: #E8F5E9; color: #1B5E20; border: 1px solid #A5D6A7; }
.fa-toolbar .btn-csv:hover { background: #C8E6C9; }
.fa-toolbar .btn-pdf { background: #FFEBEE; color: #B71C1C; border: 1px solid #EF9A9A; }
.fa-toolbar .btn-pdf:hover { background: #FFCDD2; }
.fa-toolbar .btn-print { background: #E3F2FD; color: #0D47A1; border: 1px solid #90CAF9; }
.fa-toolbar .btn-print:hover { background: #BBDEFB; }

/* ── Mobile search bar ── */
.fa-mobile-search {
    width: 100%;
    padding: 0.75rem 1rem;
    padding-left: 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%239CA3AF' viewBox='0 0 20 20'%3E%3Cpath d='M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z'/%3E%3C/svg%3E") no-repeat 0.75rem center;
    background-size: 1.25rem;
}
.fa-mobile-search:focus { border-color: #43A047; box-shadow: 0 0 0 3px rgba(67,160,71,0.1); }

/* ── Touch-friendly Buttons ── */
@media (hover: none) {
    .btn-touch { padding: 0.625rem 1.25rem; min-height: 44px; }
}

/* ── Mobile (phones) ── */
@media (max-width: 767.98px) {
    .table-scroll { border: 1px solid #f1f5f9; }
    .btn-block-mobile { display: block; width: 100%; margin-bottom: 0.5rem; }
    .dataTables_wrapper .dataTables_filter,
    .dataTables_wrapper .dataTables_length {
        float: none;
        text-align: left;
        margin-bottom: 0.5rem;
        width: 100%;
    }
    .dataTables_wrapper .dataTables_filter input { width: 100%; }
    .card-mobile-full { margin-left: -1rem; margin-right: -1rem; border-radius: 0; border-left: 0; border-right: 0; }
    .fa-toolbar { flex-direction: column; align-items: stretch; }
    .fa-toolbar button, .fa-toolbar a { justify-content: center; }

    /* DataTables bottom controls — touch-friendly on phones */
    .dataTables_wrapper .dataTables_info {
        text-align: center;
        padding: 0.5rem 0;
        font-size: 0.8rem;
        line-height: 1.3;
    }
    .dataTables_wrapper .dataTables_length {
        text-align: center;
        margin-bottom: 0.75rem;
    }
    .dataTables_wrapper .dataTables_length select {
        min-height: 36px;
        padding: 0.375rem 0.75rem;
    }
    .dataTables_wrapper .dataTables_paginate {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.375rem;
        padding-top: 0.25rem;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button {
        min-width: 40px !important;
        min-height: 40px !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 0.75rem !important;
        font-size: 0.938rem !important;
        margin: 0.125rem !important;
        border-radius: 0.5rem !important;
        line-height: 1 !important;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button.previous,
    .dataTables_wrapper .dataTables_paginate .paginate_button.next {
        min-width: auto !important;
        padding: 0.5rem 1rem !important;
        font-weight: 500;
    }
}

/* ── Very small screens (< 400px) ── */
@media (max-width: 399px) {
    main table.dataTable thead th,
    main table.dataTable tbody td {
        padding: 0.5rem 0.375rem !important;
        font-size: 0.75rem !important;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button {
        min-width: 34px !important;
        min-height: 34px !important;
        padding: 0.375rem 0.5rem !important;
        font-size: 0.8125rem !important;
    }
    .fa-toolbar {
        padding: 0.5rem;
    }
    .fa-toolbar button, .fa-toolbar a {
        font-size: 0.75rem;
        padding: 0.375rem 0.625rem;
    }
    .p-4 { padding: 0.75rem; }
    .p-6 { padding: 1rem; }
    .px-4 { padding-left: 0.75rem; padding-right: 0.75rem; }
    .px-6 { padding-left: 1rem; padding-right: 1rem; }
    .gap-4 { gap: 0.75rem; }
    .gap-6 { gap: 1rem; }
    .rounded-xl { border-radius: 0.625rem; }
}

/* ── Select2 mobile improvements ── */
@media (max-width: 767.98px) {
    .select2-container {
        width: 100% !important;
    }
    .select2-container--default .select2-selection--single {
        height: 2.75rem;
        font-size: 16px;
    }
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 2.75rem;
    }
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 2.75rem;
    }
    .select2-container--default .select2-selection--multiple {
        min-height: 2.75rem;
    }
}

/* ── Print ── */
@media print {
    aside, header, footer, nav, .fa-toolbar, .fa-mobile-search, .dataTables_wrapper .dataTables_filter,
    .dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_paginate,
    .dataTables_wrapper .dataTables_info, button[onclick*="print"], .fa-mobile-pagination { display: none !important; }
    main { padding: 0 !important; }
    .lg\:ml-72 { margin-left: 0 !important; }
    body { background: #fff !important; }
    .bg-white { background: #fff !important; box-shadow: none !important; border: none !important; }
    table { border-collapse: collapse !important; width: 100% !important; }
    table.dataTable thead th { background: #f0f0f0 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    a { text-decoration: none !important; color: inherit !important; }
}

/* ── Bootstrap-modal shim ── */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 50;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0,0,0,.5);
    overflow-y: auto;
}
.modal.show { display: flex; }
.modal .modal-dialog { width: 100%; max-width: 32rem; margin: auto; }
.modal .modal-content {
    background: #fff;
    border-radius: .75rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
}
body.fa-modal-open { overflow: hidden; }

/* ── Fallback styles for legacy Bootstrap classes in planning editor ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    border: 1px solid transparent;
}
.btn-primary { background: #2E7D32; color: #fff; border-color: #2E7D32; }
.btn-primary:hover { background: #1B5E20; border-color: #1B5E20; }
.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: #fff;
    outline: none;
    transition: border-color 0.15s;
}
.form-control:focus { border-color: #43A047; box-shadow: 0 0 0 2px rgba(67,160,71,0.2); }
.card-body { padding: 1.5rem; }
.input.form-control { text-align: last center; }

/* Foot Academy Global Accessibility Polish */
.fa-skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 100;
    transform: translateY(-180%);
    padding: 0.7rem 1rem;
    border-radius: 0.625rem;
    background: #14532d;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
    transition: transform 0.15s ease;
}
.fa-skip-link:focus,
.fa-skip-link:focus-visible {
    transform: translateY(0);
    color: #fff;
}
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 3px solid rgba(34, 197, 94, 0.65);
    outline-offset: 2px;
}
main#main-content {
    scroll-margin-top: 5rem;
}
img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 767.98px) {
    .fa-toolbar button,
    .fa-toolbar a,
    .dataTables_wrapper .dataTables_filter input,
    .dataTables_wrapper .dataTables_length select {
        min-height: 44px;
    }
    .fa-toolbar button,
    .fa-toolbar a {
        justify-content: center;
    }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
.fa-auth-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.35rem 0.5rem;
    border-radius: 0.5rem;
}
.fa-auth-link:focus-visible {
    outline: 3px solid rgba(34, 197, 94, 0.65);
    outline-offset: 2px;
}
/* ── FA Unified Authentication System ─────────────────────────── */
:root {
    --fa-navy-950: #0b1f33;
    --fa-navy-900: #102a43;
    --fa-navy-800: #163a5f;
    --fa-green-700: #1f7a3f;
    --fa-green-600: #258a48;
    --fa-green-100: #eaf7ee;
    --fa-gold-500: #d4a72c;
    --fa-slate-950: #142033;
    --fa-slate-700: #3d4b60;
    --fa-slate-500: #69778a;
    --fa-slate-200: #e5eaf0;
    --fa-slate-100: #f5f7fa;
}

.fa-auth-shell {
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 3vw, 2.5rem);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--fa-slate-950);
    background-color: var(--fa-navy-950);
    background-image:
        radial-gradient(circle at 10% 14%, rgba(37, 138, 72, .38), transparent 31rem),
        radial-gradient(circle at 91% 83%, rgba(212, 167, 44, .20), transparent 28rem),
        linear-gradient(135deg, #0b1f33 0%, #102a43 55%, #173b43 100%);
    overflow-x: hidden;
}
.fa-auth-shell--parent {
    background-image:
        radial-gradient(circle at 12% 9%, rgba(212, 167, 44, .20), transparent 28rem),
        radial-gradient(circle at 92% 88%, rgba(20, 91, 54, .52), transparent 30rem),
        linear-gradient(135deg, #103c2c 0%, #17623f 54%, #0d2f37 100%);
}
.fa-auth-shell::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .36;
    background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.78), transparent 92%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.78), transparent 92%);
}
.fa-auth-wrap { width: 100%; max-width: 70rem; position: relative; z-index: 1; }
.fa-auth-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(23rem, .8fr); align-items: stretch; gap: clamp(1.25rem, 4vw, 4.5rem); }
.fa-auth-intro { color: #fff; align-self: center; max-width: 34rem; padding: clamp(.25rem, 2vw, 1.25rem); }
.fa-auth-brand { display: inline-flex; align-items: center; gap: .85rem; margin-bottom: clamp(1.75rem, 4vw, 3rem); text-decoration: none; color: #fff; }
.fa-auth-brand__mark { width: 3.4rem; height: 3.4rem; padding: .35rem; display: grid; place-items: center; border-radius: 1rem; background: rgba(255,255,255,.96); box-shadow: 0 16px 34px rgba(0,0,0,.18); }
.fa-auth-brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.fa-auth-brand__name { display: grid; line-height: 1.05; }
.fa-auth-brand__name strong { font-size: 1rem; letter-spacing: .01em; }
.fa-auth-brand__name span { color: rgba(255,255,255,.72); font-size: .76rem; margin-top: .25rem; }
.fa-auth-kicker { display: inline-flex; align-items: center; gap: .45rem; padding: .42rem .7rem; margin: 0 0 1.15rem; border: 1px solid rgba(255,255,255,.23); border-radius: 999px; color: rgba(255,255,255,.88); background: rgba(8, 26, 42, .22); font-size: .72rem; line-height: 1; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.fa-auth-title { margin: 0; max-width: 15ch; font-size: clamp(2.15rem, 4.4vw, 4.3rem); line-height: 1.04; letter-spacing: -.045em; font-weight: 750; }
.fa-auth-copy { max-width: 33rem; margin: 1.3rem 0 0; color: rgba(255,255,255,.77); font-size: 1rem; line-height: 1.7; }
.fa-auth-points { display: flex; flex-wrap: wrap; gap: .7rem; list-style: none; padding: 0; margin: 2rem 0 0; }
.fa-auth-points li { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .7rem; border-radius: .7rem; background: rgba(255,255,255,.10); color: rgba(255,255,255,.9); font-size: .78rem; }
.fa-auth-points i { color: #f4cb56; }
.fa-auth-card { width: 100%; background: rgba(255,255,255,.98); border: 1px solid rgba(255,255,255,.74); border-radius: 1.4rem; box-shadow: 0 24px 70px rgba(4,18,31,.36); overflow: hidden; }
.fa-auth-card__head { padding: 1.7rem 1.8rem 1.15rem; border-bottom: 1px solid var(--fa-slate-200); }
.fa-auth-card__eyebrow { display: flex; align-items: center; gap: .5rem; color: var(--fa-green-700); font-size: .73rem; line-height: 1; text-transform: uppercase; letter-spacing: .095em; font-weight: 800; }
.fa-auth-card__eyebrow i { font-size: .9rem; }
.fa-auth-card__title { margin: .8rem 0 .35rem; color: var(--fa-slate-950); font-size: 1.45rem; letter-spacing: -.025em; line-height: 1.2; font-weight: 750; }
.fa-auth-card__text { margin: 0; color: var(--fa-slate-500); font-size: .88rem; line-height: 1.55; }
.fa-auth-card__body { padding: 1.35rem 1.8rem 1.55rem; }
.fa-auth-alert { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: 1.1rem; padding: .85rem .95rem; border: 1px solid #fecaca; border-radius: .8rem; color: #991b1b; background: #fef2f2; font-size: .84rem; line-height: 1.45; }
.fa-auth-alert i { margin-top: .08rem; color: #dc2626; }
.fa-auth-field { margin-bottom: 1rem; }
.fa-auth-label { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .45rem; color: var(--fa-slate-700); font-size: .81rem; line-height: 1.2; font-weight: 700; }
.fa-auth-input-wrap { position: relative; }
.fa-auth-input-wrap > i { position: absolute; top: 50%; left: .92rem; color: #7b8797; transform: translateY(-50%); pointer-events: none; }
.fa-auth-input { display: block; width: 100%; min-height: 3rem; padding: .75rem .9rem .75rem 2.65rem; border: 1px solid #ccd5df; border-radius: .75rem; color: var(--fa-slate-950); background: #fff; font: inherit; font-size: .92rem; line-height: 1.2; transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease; }
.fa-auth-input::placeholder { color: #9aa6b5; }
.fa-auth-input:hover { border-color: #aebac8; }
.fa-auth-input:focus { border-color: var(--fa-green-600); background: #fff; box-shadow: 0 0 0 4px rgba(37,138,72,.13); outline: 0; }
.fa-auth-submit { display: inline-flex; width: 100%; min-height: 3.15rem; align-items: center; justify-content: center; gap: .6rem; margin-top: .5rem; padding: .75rem 1rem; border: 0; border-radius: .8rem; color: #fff; background: linear-gradient(135deg, var(--fa-green-700), #176b39); box-shadow: 0 10px 18px rgba(25,103,55,.22); font: inherit; font-size: .9rem; font-weight: 750; cursor: pointer; transition: transform .16s ease, filter .16s ease, box-shadow .16s ease; }
.fa-auth-submit:hover { filter: brightness(1.06); box-shadow: 0 13px 24px rgba(25,103,55,.30); transform: translateY(-1px); }
.fa-auth-submit:active { transform: translateY(0); }
.fa-auth-divider { display: flex; align-items: center; gap: .75rem; margin: 1.3rem 0 .9rem; color: #8a96a5; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.fa-auth-divider::before, .fa-auth-divider::after { content: ''; height: 1px; flex: 1; background: var(--fa-slate-200); }
.fa-auth-links { display: grid; gap: .4rem; }
.fa-auth-link { display: inline-flex; min-height: 2.75rem; align-items: center; justify-content: center; gap: .55rem; padding: .55rem .75rem; border-radius: .7rem; color: var(--fa-navy-800); font-size: .84rem; font-weight: 700; text-align: center; text-decoration: none; transition: color .16s ease, background-color .16s ease; }
.fa-auth-link:hover { color: var(--fa-green-700); background: var(--fa-green-100); }
.fa-auth-link--muted { color: var(--fa-slate-500); font-weight: 600; }
.fa-auth-link--muted:hover { color: var(--fa-slate-700); background: var(--fa-slate-100); }
.fa-auth-footnote { margin: 1rem 0 0; color: rgba(255,255,255,.62); font-size: .74rem; text-align: center; }
.fa-auth-footnote a { color: inherit; }
@media (max-width: 840px) { .fa-auth-grid { grid-template-columns: minmax(0, 32rem); justify-content: center; } .fa-auth-intro { max-width: 32rem; padding: 0 .25rem; } .fa-auth-title { max-width: none; font-size: clamp(2rem, 8vw, 3rem); } .fa-auth-points { margin-top: 1.25rem; } }
@media (max-width: 520px) { .fa-auth-shell { padding: .85rem; align-items: start; } .fa-auth-intro { padding-top: .55rem; } .fa-auth-brand { margin-bottom: 1.5rem; } .fa-auth-title { font-size: 2rem; } .fa-auth-copy { font-size: .92rem; line-height: 1.55; } .fa-auth-points { display: none; } .fa-auth-card__head, .fa-auth-card__body { padding-right: 1.15rem; padding-left: 1.15rem; } .fa-auth-card { border-radius: 1.05rem; } }.fa-auth-notice { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: 1.1rem; padding: .85rem .95rem; border: 1px solid #bbf7d0; border-radius: .8rem; color: #166534; background: #f0fdf4; font-size: .84rem; line-height: 1.45; }
.fa-auth-notice i { margin-top: .08rem; color: #16a34a; }
.fa-auth-form-errors ul { margin: .35rem 0 0; padding: 0; list-style: none; color: #b91c1c; font-size: .76rem; line-height: 1.4; }
/* ============================================================
   FOOTACADEMY ADMIN SHELL REFRESH
   Shared visual layer for authenticated administration screens.
   ============================================================ */
.fa-admin-shell { color: var(--fa-slate-900); background: #f4f7fb; }
.fa-admin-layout { min-height: 100vh; background: linear-gradient(180deg, #f7fafc 0%, #f1f5f9 100%); }
.fa-admin-sidebar { background: linear-gradient(180deg, #102a43 0%, #12334b 48%, #0c253d 100%); box-shadow: 15px 0 38px rgba(11, 31, 51, .14); }
.fa-admin-sidebar::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,.1); pointer-events: none; }
.fa-admin-sidebar > a:first-child { background: linear-gradient(90deg, rgba(255,255,255,.055), transparent); }
.fa-admin-sidebar > a:first-child > div { box-shadow: 0 8px 20px rgba(18, 98, 57, .32); }
.fa-admin-nav { scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.22) transparent; }
.fa-admin-nav::-webkit-scrollbar { width: .45rem; }
.fa-admin-nav::-webkit-scrollbar-thumb { border-radius: 999px; background: rgba(255,255,255,.2); }
.fa-admin-nav-parent { min-height: 2.75rem; letter-spacing: .005em; }
.fa-admin-nav-parent:hover, .fa-admin-nav-parent:focus-visible { box-shadow: inset 3px 0 0 #f4cb56; }
.fa-admin-nav-item { position: relative; min-height: 2.35rem; }
.fa-admin-nav-item:hover, .fa-admin-nav-item:focus-visible { box-shadow: inset 2px 0 0 rgba(244,203,86,.9); }
.fa-admin-header { min-height: 4.2rem; background: rgba(255,255,255,.93); box-shadow: 0 1px 0 rgba(148,163,184,.2), 0 8px 24px rgba(15,23,42,.035); backdrop-filter: blur(14px); }
.fa-admin-content { width: 100%; max-width: 96rem; margin: 0 auto; }
.fa-admin-content > h1, .fa-admin-content h1:first-child { color: var(--fa-slate-950); letter-spacing: -.035em; }
.fa-admin-content h2, .fa-admin-content h3 { color: var(--fa-slate-900); letter-spacing: -.018em; }
.fa-admin-content .bg-white.rounded-lg, .fa-admin-content .bg-white.rounded-xl, .fa-admin-content .bg-white.rounded-2xl { border: 1px solid rgba(203,213,225,.82); box-shadow: 0 10px 26px rgba(15,23,42,.045); }
.fa-admin-content .table-scroll { position: relative; max-width: 100%; margin: 1rem 0; overflow-x: auto; border: 1px solid var(--fa-slate-200); border-radius: 1rem; background: #fff; box-shadow: 0 8px 22px rgba(15,23,42,.035); }
.fa-admin-content .table-scroll::after { content: '? Faites d?filer pour voir toutes les colonnes'; display: block; padding: .5rem .85rem; border-top: 1px solid var(--fa-slate-100); color: var(--fa-slate-500); font-size: .72rem; font-weight: 600; text-align: right; }
@media (min-width: 1024px) { .fa-admin-content .table-scroll::after { display: none; } }
.fa-admin-content table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; }
.fa-admin-content table thead th { padding: .9rem .95rem; border-bottom: 1px solid var(--fa-slate-200); color: var(--fa-slate-600); background: #f8fafc; font-size: .69rem; font-weight: 800; letter-spacing: .065em; line-height: 1.25; text-transform: uppercase; white-space: nowrap; }
.fa-admin-content table tbody td { padding: .85rem .95rem; border-bottom: 1px solid #edf2f7; color: var(--fa-slate-700); font-size: .84rem; line-height: 1.45; vertical-align: middle; }
.fa-admin-content table tbody tr:last-child td { border-bottom: 0; }
.fa-admin-content table tbody tr:hover td { background: #f8fbfd; }
.fa-admin-content .dataTables_wrapper { margin: 1rem 0; padding: 1rem; border: 1px solid var(--fa-slate-200); border-radius: 1rem; background: #fff; box-shadow: 0 8px 22px rgba(15,23,42,.035); overflow: hidden; }
.fa-admin-content .dataTables_wrapper .dataTables_filter input, .fa-admin-content .dataTables_wrapper .dataTables_length select { min-height: 2.45rem; margin-left: .45rem; padding: .45rem .65rem; border: 1px solid #cbd5e1; border-radius: .55rem; color: var(--fa-slate-700); background: #fff; outline: none; }
.fa-admin-content .dataTables_wrapper .dataTables_filter input:focus, .fa-admin-content .dataTables_wrapper .dataTables_length select:focus { border-color: var(--fa-green-600); box-shadow: 0 0 0 3px rgba(22,163,74,.14); }
.fa-admin-content .dataTables_wrapper .dataTables_paginate .paginate_button { margin: 0 .12rem; border: 1px solid transparent !important; border-radius: .5rem !important; color: var(--fa-slate-600) !important; }
.fa-admin-content .dataTables_wrapper .dataTables_paginate .paginate_button.current { border-color: rgba(22,101,52,.24) !important; color: #fff !important; background: var(--fa-green-700) !important; }
.fa-admin-content form label { color: var(--fa-slate-700); font-weight: 650; }
.fa-admin-content input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]), .fa-admin-content select, .fa-admin-content textarea { border-color: #cbd5e1; border-radius: .6rem; }
.fa-admin-content input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):focus, .fa-admin-content select:focus, .fa-admin-content textarea:focus { border-color: var(--fa-green-600); box-shadow: 0 0 0 3px rgba(22,163,74,.13); outline: none; }
.fa-admin-content button[type="submit"], .fa-admin-content input[type="submit"] { min-height: 2.65rem; font-weight: 700; box-shadow: 0 7px 15px rgba(22,101,52,.14); }
.fa-admin-content .fa-admin-empty { display: grid; place-items: center; gap: .5rem; min-height: 12rem; padding: 2rem; border: 1px dashed #cbd5e1; border-radius: 1rem; color: var(--fa-slate-500); background: rgba(255,255,255,.62); text-align: center; }
.fa-admin-content .fa-admin-empty i { color: var(--fa-green-700); font-size: 1.65rem; }
@media (max-width: 639px) { .fa-admin-content { padding-top: 1.1rem; padding-bottom: 1.5rem; } .fa-admin-content .dataTables_wrapper { padding: .75rem; border-radius: .8rem; } .fa-admin-content table thead th, .fa-admin-content table tbody td { padding: .7rem .75rem; } }
/* FA_ADMIN_MOBILE_REFRESH_20260814 */
@media (max-width: 840px) {
  body.fa-auth-shell--admin { align-items: start; }
  body.fa-auth-shell--admin .fa-auth-wrap { padding-top: .25rem; }
  body.fa-auth-shell--admin .fa-auth-grid { gap: 1.25rem; }
  body.fa-auth-shell--admin .fa-auth-intro { padding-top: .25rem; }
  body.fa-auth-shell--admin .fa-auth-brand { max-width: 100%; margin-bottom: 1.1rem; }
  body.fa-auth-shell--admin .fa-auth-title { max-width: 100%; font-size: clamp(2.15rem, 9vw, 3rem); line-height: 1.04; letter-spacing: -.045em; }
  body.fa-auth-shell--admin .fa-auth-copy { max-width: 100%; font-size: .94rem; line-height: 1.5; }
  body.fa-auth-shell--admin .fa-auth-points { display: none; }
  body.fa-auth-shell--admin .fa-auth-card { width: 100%; max-width: 100%; }
}
@media (max-width: 520px) {
  body.fa-auth-shell--admin { padding: .75rem; }
  body.fa-auth-shell--admin .fa-auth-wrap { padding-top: 0; }
  body.fa-auth-shell--admin .fa-auth-grid { gap: 1rem; }
  body.fa-auth-shell--admin .fa-auth-intro { padding: 0; }
  body.fa-auth-shell--admin .fa-auth-brand { margin-bottom: 1.15rem; }
  body.fa-auth-shell--admin .fa-auth-title { font-size: clamp(1.85rem, 8.6vw, 2.35rem); line-height: 1.04; }
  body.fa-auth-shell--admin .fa-auth-copy { font-size: .87rem; line-height: 1.48; }
  body.fa-auth-shell--admin .fa-auth-card__head,
  body.fa-auth-shell--admin .fa-auth-card__body { padding-right: 1.15rem; padding-left: 1.15rem; }
  body.fa-auth-shell--admin .fa-auth-submit { min-height: 3rem; }
}
/* FA_ADMIN_CONTRAST_REFRESH_20260814 */
body.fa-auth-shell--admin .fa-auth-intro { text-shadow: 0 2px 14px rgba(2,13,24,.42); }
body.fa-auth-shell--admin .fa-auth-brand__name span { color: rgba(255,255,255,.92); text-shadow: 0 1px 8px rgba(2,13,24,.38); }
body.fa-auth-shell--admin .fa-auth-kicker { color: #fff; border-color: rgba(255,255,255,.42); background: rgba(3,16,29,.48); box-shadow: 0 8px 18px rgba(3,16,29,.14); }
body.fa-auth-shell--admin .fa-auth-copy { color: rgba(255,255,255,.94); text-shadow: 0 1px 10px rgba(2,13,24,.44); }
body.fa-auth-shell--admin .fa-auth-points li { color: rgba(255,255,255,.96); background: rgba(3,16,29,.30); border: 1px solid rgba(255,255,255,.12); }
@media (max-width: 520px) { body.fa-auth-shell--admin .fa-auth-copy { font-size: .92rem; line-height: 1.55; } body.fa-auth-shell--admin .fa-auth-brand__name span { color: rgba(255,255,255,.95); } }


/* FA_REGISTRATION_DETAIL_REFRESH_20260814 */
.fa-detail-label { display: block; margin-bottom: .3rem; color: #64748b; font-size: .72rem; font-weight: 800; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase; }
.fa-detail-value { margin: 0; color: #0f172a; font-size: .98rem; font-weight: 600; line-height: 1.45; overflow-wrap: anywhere; }
@media (max-width: 640px) { .fa-detail-label { font-size: .68rem; } .fa-detail-value { font-size: .94rem; } }

/* FA_REGISTRATION_DETAIL_REFRESH_20260814_V2 */
.fa-registration-detail-page { min-height: calc(100vh - 72px); padding: 2rem 1.25rem 4rem; background: #f4f7fa; color: #102535; }
.fa-registration-detail-container { width: min(100%, 1280px); margin: 0 auto; }
.fa-registration-back { display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1rem; color: #17623c; font-size: .92rem; font-weight: 750; text-decoration: none; transition: color .2s ease, transform .2s ease; }
.fa-registration-back:hover { color: #0e4229; transform: translateX(-2px); }
.fa-registration-hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; padding: 2rem 2.1rem; border: 1px solid rgba(255,255,255,.16); border-radius: 1.5rem; background: linear-gradient(120deg, #0d2b40 0%, #123e49 58%, #196244 100%); box-shadow: 0 20px 45px rgba(15, 49, 62, .16); color: #fff; }
.fa-registration-hero-main { min-width: 0; }
.fa-registration-kicker { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; color: rgba(255,255,255,.72); font-size: .72rem; font-weight: 850; letter-spacing: .12em; }
.fa-registration-kicker-dot { width: .3rem; height: .3rem; border-radius: 999px; background: #74d79b; }
.fa-registration-hero h1 { margin: .65rem 0 .45rem; color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 850; letter-spacing: -.045em; line-height: 1.05; overflow-wrap: anywhere; }
.fa-registration-hero p { max-width: 660px; margin: 0; color: rgba(255,255,255,.78); font-size: .98rem; line-height: 1.6; }
.fa-registration-hero-actions { display: flex; flex: 0 0 auto; flex-direction: column; align-items: flex-end; gap: .75rem; }
.fa-registration-button { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 2.85rem; padding: .7rem 1rem; border: 1px solid transparent; border-radius: .8rem; font-size: .9rem; font-weight: 800; line-height: 1.25; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.fa-registration-button:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(15, 35, 46, .12); }
.fa-registration-button--primary { color: #fff; background: #218548; border-color: #218548; }
.fa-registration-button--primary:hover { background: #176c38; border-color: #176c38; }
.fa-registration-hero .fa-registration-button--primary { color: #0d2b40; background: #fff; border-color: #fff; }
.fa-registration-hero .fa-registration-button--primary:hover { color: #0d2b40; background: #eaf8ef; }
.fa-registration-button--success { width: 100%; color: #fff; background: #208247; border-color: #208247; }
.fa-registration-button--success:hover { background: #176b39; }
.fa-registration-button--danger-soft { width: 100%; color: #a52f3b; background: #fff3f3; border-color: #f3caca; }
.fa-registration-button--danger-soft:hover { background: #ffe8e8; }
.fa-registration-button--warning { width: 100%; color: #8a5513; background: #fff7e5; border-color: #f2d79d; }
.fa-registration-button--warning:hover { background: #ffefc8; }
.fa-registration-button--danger { width: 100%; color: #b1323d; background: #fff4f4; border-color: #f1cdcf; }
.fa-registration-button--danger:hover { background: #ffe9e9; }
.fa-registration-status { display: inline-flex; align-items: center; gap: .5rem; padding: .65rem .85rem; border-radius: 999px; font-size: .82rem; font-weight: 850; white-space: nowrap; }
.fa-registration-status--approved { color: #176d3a; background: #e9f9ef; border: 1px solid #bce9ca; }
.fa-registration-status--pending { color: #8a5c0d; background: #fff8e6; border: 1px solid #f0dcaa; }
.fa-registration-status--rejected { color: #a52f3b; background: #fff0f1; border: 1px solid #f0c3c8; }
.fa-registration-status--neutral { color: #536576; background: #f1f5f8; border: 1px solid #d8e1e8; }
.fa-registration-summary-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin: 1rem 0; }
.fa-registration-summary-card { display: flex; align-items: center; gap: .9rem; min-width: 0; padding: 1.1rem 1.15rem; border: 1px solid #dce6ec; border-radius: 1rem; background: #fff; box-shadow: 0 8px 22px rgba(26, 51, 66, .05); }
.fa-registration-summary-icon { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; width: 2.55rem; height: 2.55rem; border-radius: .8rem; color: #176b42; background: #e9f8ef; font-size: 1rem; }
.fa-registration-summary-label { display: block; margin-bottom: .15rem; color: #687d8c; font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.fa-registration-summary-card strong { display: block; color: #102535; font-size: 1rem; font-weight: 850; overflow-wrap: anywhere; }
.fa-registration-summary-card small { display: block; margin-top: .16rem; color: #738694; font-size: .78rem; overflow-wrap: anywhere; }
.fa-registration-content-grid { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(300px, .85fr); align-items: start; gap: 1.25rem; }
.fa-registration-main-column, .fa-registration-side-column { display: grid; gap: 1.25rem; min-width: 0; }
.fa-registration-side-column { position: sticky; top: 1rem; }
.fa-registration-section, .fa-registration-decision-card, .fa-registration-actions-card { overflow: hidden; border: 1px solid #dce6ec; border-radius: 1.15rem; background: #fff; box-shadow: 0 9px 28px rgba(26, 51, 66, .055); }
.fa-registration-section-heading, .fa-registration-decision-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.35rem 1.45rem; border-bottom: 1px solid #e9eff3; }
.fa-registration-section-heading h2, .fa-registration-decision-heading h2 { margin: .18rem 0 0; color: #102535; font-size: 1.16rem; font-weight: 850; letter-spacing: -.02em; }
.fa-registration-section-heading p, .fa-registration-decision-heading p { margin: .35rem 0 0; color: #728492; font-size: .87rem; line-height: 1.45; }
.fa-registration-section-eyebrow { display: block; color: #18804b; font-size: .67rem; font-weight: 900; letter-spacing: .13em; line-height: 1.2; }
.fa-registration-count { flex: 0 0 auto; padding: .45rem .7rem; border-radius: 999px; color: #176b42; background: #e9f8ef; font-size: .78rem; font-weight: 850; white-space: nowrap; }
.fa-registration-player-list { display: grid; gap: .8rem; padding: 1.15rem; }
.fa-registration-player-card { padding: 1.1rem 1.15rem; border: 1px solid #e0e9ee; border-radius: .95rem; background: #f8fbfc; }
.fa-registration-player-heading { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.fa-registration-player-number { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; width: 2.2rem; height: 2.2rem; border-radius: .7rem; color: #fff; background: #176b42; font-size: .92rem; font-weight: 900; }
.fa-registration-player-heading span:not(.fa-registration-player-number) { display: block; color: #718493; font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.fa-registration-player-heading h3 { margin: .12rem 0 0; color: #122c3c; font-size: 1rem; font-weight: 850; overflow-wrap: anywhere; }
.fa-registration-fields-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.25rem; padding: 1.3rem 1.45rem; }
.fa-registration-player-card .fa-registration-fields-grid { padding: 0; }
.fa-registration-field { min-width: 0; }
.fa-registration-field--wide { grid-column: 1 / -1; }
.fa-registration-field > span { display: block; margin-bottom: .34rem; color: #718493; font-size: .67rem; font-weight: 900; letter-spacing: .1em; line-height: 1.25; text-transform: uppercase; }
.fa-registration-field > strong { display: block; color: #122c3c; font-size: .96rem; font-weight: 750; line-height: 1.45; overflow-wrap: anywhere; }
.fa-registration-break, .fa-registration-preline { white-space: pre-line; }
.fa-registration-phone { display: inline-flex; align-items: center; gap: .55rem; color: #176b42; font-size: 1rem; font-weight: 850; letter-spacing: .04em; line-height: 1.45; text-decoration: none; white-space: nowrap; font-variant-numeric: tabular-nums; }
.fa-registration-phone i { display: inline-flex; align-items: center; justify-content: center; width: 1.65rem; height: 1.65rem; border-radius: 50%; color: #176b42; background: #e9f8ef; font-size: .72rem; }
.fa-registration-phone:hover { color: #0d4f2e; text-decoration: underline; text-underline-offset: .18em; }
.fa-registration-decision-card { border-color: #cfe1d7; }
.fa-registration-decision-heading { background: linear-gradient(135deg, #f4fbf6 0%, #fff 75%); }
.fa-registration-account-identity { display: flex; align-items: center; gap: .75rem; padding: 1.2rem 1.25rem 0; }
.fa-registration-account-avatar { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; width: 2.6rem; height: 2.6rem; border-radius: .8rem; color: #176b42; background: #e5f6eb; }
.fa-registration-account-identity strong { display: block; color: #142f40; font-size: .98rem; font-weight: 850; overflow-wrap: anywhere; }
.fa-registration-account-identity small { display: block; margin-top: .18rem; color: #728492; font-size: .78rem; overflow-wrap: anywhere; }
.fa-registration-account-fields { display: grid; gap: .95rem; padding: 1.2rem 1.25rem; }
.fa-registration-decision-state { display: flex; align-items: flex-start; gap: .6rem; margin: 0 1.25rem 1rem; padding: .8rem .85rem; border: 1px solid; border-radius: .8rem; font-size: .82rem; font-weight: 750; line-height: 1.4; }
.fa-registration-decision-state--approved { color: #176d3a; background: #effbf2; border-color: #bfe8c9; }
.fa-registration-decision-state--pending { color: #8a5c0d; background: #fff9e9; border-color: #f0dba8; }
.fa-registration-decision-state--rejected { color: #a52f3b; background: #fff2f3; border-color: #efc5ca; }
.fa-registration-decision-state--neutral { color: #536576; background: #f3f6f8; border-color: #d7e1e7; }
.fa-registration-decision-actions { display: grid; gap: .7rem; padding: 0 1.25rem 1.25rem; }
.fa-registration-decision-actions form, .fa-registration-action-list form { margin: 0; }
.fa-registration-empty-state { display: grid; justify-items: center; gap: .45rem; padding: 2rem 1.25rem; color: #728492; text-align: center; }
.fa-registration-empty-state i { color: #9caeba; font-size: 1.6rem; }
.fa-registration-empty-state strong { color: #385363; font-size: .94rem; }
.fa-registration-empty-state span { max-width: 250px; font-size: .82rem; line-height: 1.45; }
.fa-registration-actions-card .fa-registration-section-heading { padding-bottom: 1.05rem; }
.fa-registration-action-list { display: grid; gap: .7rem; padding: 1.15rem 1.25rem 1.25rem; }
@media (max-width: 1050px) { .fa-registration-content-grid { grid-template-columns: minmax(0, 1fr); } .fa-registration-side-column { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; } }
@media (max-width: 760px) { .fa-registration-detail-page { padding: 1rem .75rem 2.5rem; } .fa-registration-hero { align-items: stretch; flex-direction: column; padding: 1.35rem; border-radius: 1.1rem; } .fa-registration-hero-actions { align-items: stretch; } .fa-registration-hero .fa-registration-button, .fa-registration-hero .fa-registration-status { width: 100%; } .fa-registration-summary-grid { grid-template-columns: 1fr; } .fa-registration-side-column { grid-template-columns: 1fr; } .fa-registration-section-heading, .fa-registration-decision-heading { padding: 1.1rem; } .fa-registration-fields-grid { grid-template-columns: 1fr; gap: .95rem; padding: 1.1rem; } .fa-registration-player-list { padding: .8rem; } .fa-registration-player-card { padding: .95rem; } .fa-registration-field--wide { grid-column: auto; } .fa-registration-phone { font-size: .95rem; } }
@media (max-width: 430px) { .fa-registration-detail-page { padding-right: .55rem; padding-left: .55rem; } .fa-registration-kicker { font-size: .62rem; } .fa-registration-hero h1 { font-size: 1.75rem; } .fa-registration-summary-card { padding: .95rem; } .fa-registration-section-heading, .fa-registration-decision-heading { display: block; } .fa-registration-count { display: inline-block; margin-top: .85rem; } }

/* FA_PUBLIC_REGISTER_CTA_REFRESH_20260814 */
.fa-auth-links .fa-auth-link--register { display: flex; align-items: center; justify-content: center; gap: .55rem; width: 100%; min-height: 3.15rem; padding: .85rem 1rem; border: 1px solid #218548; border-radius: .8rem; color: #fff; background: linear-gradient(135deg, #218548, #176c38); box-shadow: 0 10px 24px rgba(23,108,56,.22); font-weight: 800; text-align: center; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.fa-auth-links .fa-auth-link--register:hover { color: #fff; background: linear-gradient(135deg, #176c38, #10552c); box-shadow: 0 13px 28px rgba(23,108,56,.3); transform: translateY(-1px); }
.fa-auth-links .fa-auth-link--register i { color: #d9ffe7; }
@media (max-width: 520px) { .fa-auth-links .fa-auth-link--register { min-height: 3.35rem; font-size: .98rem; } }

/* FA_LANDING_REFRESH_20260814_V1 */
.fa-landing {
  --fa-ink: #0b1f36;
  --fa-ink-soft: #29415b;
  --fa-muted: #6b7b8c;
  --fa-line: #dce5eb;
  --fa-paper: #f5f8f7;
  --fa-white: #fff;
  --fa-lime: #c9f26d;
  --fa-lime-dark: #8dbd36;
  --fa-coral: #ff735c;
  background: var(--fa-paper);
  color: var(--fa-ink);
  font-family: 'DM Sans', Inter, Arial, sans-serif;
  overflow: hidden;
}
.fa-landing *, .fa-landing *::before, .fa-landing *::after { box-sizing: border-box; }
.fa-landing a { color: inherit; text-decoration: none; }
.fa-landing__container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.fa-landing__nav { background: rgba(245,248,247,.94); border-bottom: 1px solid rgba(11,31,54,.08); position: relative; z-index: 10; }
.fa-landing__nav-inner { align-items: center; display: flex; gap: 30px; justify-content: space-between; min-height: 82px; }
.fa-landing__brand { align-items: center; display: inline-flex; flex: 0 0 auto; gap: 11px; }
.fa-landing__brand-mark { align-items: center; background: var(--fa-ink); border-radius: 14px; display: inline-flex; height: 43px; justify-content: center; overflow: hidden; width: 43px; }
.fa-landing__brand-mark img { height: 33px; object-fit: contain; width: 33px; }
.fa-landing__brand-copy { display: flex; flex-direction: column; gap: 2px; }
.fa-landing__brand-copy strong { font-family: 'Space Grotesk', sans-serif; font-size: 15px; letter-spacing: -.03em; line-height: 1.05; }
.fa-landing__brand-copy small { color: var(--fa-muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.fa-landing__links { display: flex; gap: 28px; margin-left: auto; }
.fa-landing__links a, .fa-landing__login { color: var(--fa-ink-soft); font-size: 13px; font-weight: 600; transition: color .18s ease; }
.fa-landing__links a:hover, .fa-landing__login:hover { color: var(--fa-coral); }
.fa-landing__nav-actions { align-items: center; display: flex; gap: 20px; }
.fa-landing__nav-cta { align-items: center; background: var(--fa-ink); border-radius: 999px; color: var(--fa-white) !important; display: inline-flex; font-size: 12px; font-weight: 700; gap: 10px; padding: 13px 18px; transition: background .18s ease, transform .18s ease; }
.fa-landing__nav-cta:hover { background: var(--fa-coral); transform: translateY(-2px); }
.fa-landing__hero { background: radial-gradient(circle at 85% 15%, rgba(201,242,109,.22), transparent 31%), var(--fa-paper); padding: 78px 0 92px; }
.fa-landing__hero-grid { align-items: center; display: grid; gap: 78px; grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr); }
.fa-landing__eyebrow { align-items: center; color: var(--fa-coral); display: flex; font-size: 11px; font-weight: 800; gap: 9px; letter-spacing: .14em; margin: 0 0 22px; text-transform: uppercase; }
.fa-landing__eyebrow span { background: currentColor; border-radius: 999px; display: inline-block; height: 7px; width: 7px; }
.fa-landing__hero h1, .fa-landing__section h2, .fa-landing__cta h2 { font-family: 'Space Grotesk', sans-serif; letter-spacing: -.06em; margin: 0; }
.fa-landing__hero h1 { font-size: clamp(46px, 6vw, 78px); line-height: .98; max-width: 650px; }
.fa-landing__hero h1 em { color: var(--fa-coral); display: block; font-style: normal; }
.fa-landing__hero-lead { color: var(--fa-ink-soft); font-size: 18px; line-height: 1.7; margin: 28px 0 31px; max-width: 520px; }
.fa-landing__hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 12px; }
.fa-landing__button { align-items: center; border-radius: 999px; display: inline-flex; font-size: 13px; font-weight: 800; gap: 18px; justify-content: center; padding: 16px 21px; transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease; }
.fa-landing__button:hover { transform: translateY(-2px); }
.fa-landing__button--primary { background: var(--fa-coral); color: var(--fa-white); }
.fa-landing__button--primary:hover { background: #e75c46; }
.fa-landing__button--ghost { border: 1px solid var(--fa-line); color: var(--fa-ink); }
.fa-landing__button--ghost:hover { border-color: var(--fa-ink); }
.fa-landing__reassurance { color: var(--fa-muted); font-size: 12px; margin: 20px 0 0; }
.fa-landing__reassurance span { color: var(--fa-lime-dark); font-size: 16px; font-weight: 800; margin-right: 6px; }
.fa-landing__hero-visual { min-height: 500px; position: relative; }
.fa-landing__hero-image { background: var(--fa-ink); border-radius: 190px 190px 22px 22px; height: 500px; overflow: hidden; position: absolute; right: 35px; top: 0; transform: rotate(4deg); width: min(100%, 438px); }
.fa-landing__hero-image::after { background: linear-gradient(180deg, transparent 44%, rgba(11,31,54,.58)); content: ''; inset: 0; position: absolute; }
.fa-landing__hero-image img { height: 100%; object-fit: cover; transform: rotate(-4deg) scale(1.1); width: 100%; }
.fa-landing__hero-note { background: var(--fa-white); box-shadow: 0 18px 46px rgba(11,31,54,.13); position: absolute; z-index: 2; }
.fa-landing__hero-note--top { border-radius: 12px; left: 0; padding: 17px 20px; top: 55px; transform: rotate(-5deg); }
.fa-landing__hero-note--top strong, .fa-landing__hero-note--top span { display: block; }
.fa-landing__hero-note--top strong { font-family: 'Space Grotesk', sans-serif; font-size: 18px; }
.fa-landing__hero-note--top span { color: var(--fa-coral); font-size: 12px; font-weight: 800; margin-top: 4px; }
.fa-landing__hero-note--bottom { align-items: center; border-radius: 14px; bottom: 30px; display: flex; gap: 12px; padding: 15px 18px; right: 0; }
.fa-landing__note-icon { align-items: center; background: var(--fa-lime); border-radius: 50%; display: inline-flex; height: 36px; justify-content: center; width: 36px; }
.fa-landing__hero-note--bottom strong, .fa-landing__hero-note--bottom small { display: block; }
.fa-landing__hero-note--bottom strong { font-size: 12px; }
.fa-landing__hero-note--bottom small { color: var(--fa-muted); font-size: 11px; margin-top: 3px; }
.fa-landing__trust { background: var(--fa-ink); color: var(--fa-white); }
.fa-landing__trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.fa-landing__trust-grid > div { border-right: 1px solid rgba(255,255,255,.13); min-height: 143px; padding: 32px 35px 28px 0; }
.fa-landing__trust-grid > div + div { padding-left: 35px; }
.fa-landing__trust-grid > div:last-child { border-right: 0; }
.fa-landing__trust-number, .fa-landing__feature-index { color: var(--fa-lime); display: block; font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .13em; margin-bottom: 12px; }
.fa-landing__trust-grid strong { display: block; font-size: 15px; }
.fa-landing__trust-grid p { color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.5; margin: 8px 0 0; }
.fa-landing__section { padding: 116px 0; }
.fa-landing__section-heading { max-width: 650px; }
.fa-landing__section-heading h2, .fa-landing__families-panel h2, .fa-landing__cta h2 { font-size: clamp(36px, 4vw, 56px); line-height: 1.03; }
.fa-landing__section-heading > p:last-child, .fa-landing__families-panel > p:last-of-type { color: var(--fa-muted); font-size: 16px; line-height: 1.7; margin: 23px 0 0; max-width: 590px; }
.fa-landing__feature-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); margin-top: 58px; }
.fa-landing__feature-card { background: var(--fa-white); border: 1px solid var(--fa-line); border-radius: 18px; min-height: 300px; padding: 29px; transition: box-shadow .2s ease, transform .2s ease; }
.fa-landing__feature-card:hover { box-shadow: 0 18px 40px rgba(11,31,54,.09); transform: translateY(-5px); }
.fa-landing__feature-card--dark { background: var(--fa-ink); color: var(--fa-white); }
.fa-landing__feature-card--dark .fa-landing__feature-index { color: var(--fa-coral); }
.fa-landing__feature-icon { display: block; font-size: 42px; font-weight: 300; margin: 30px 0 25px; }
.fa-landing__feature-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; letter-spacing: -.04em; margin: 0 0 12px; }
.fa-landing__feature-card p { color: var(--fa-muted); font-size: 13px; line-height: 1.65; margin: 0; }
.fa-landing__feature-card--dark p { color: rgba(255,255,255,.63); }
.fa-landing__section--families { background: #edf3ef; }
.fa-landing__families-grid { align-items: center; display: grid; gap: 90px; grid-template-columns: minmax(0, .85fr) minmax(0, 1fr); }
.fa-landing__families-panel { max-width: 500px; }
.fa-landing__text-link { color: var(--fa-coral); display: inline-flex; font-size: 13px; font-weight: 800; gap: 14px; margin-top: 29px; }
.fa-landing__steps { list-style: none; margin: 0; padding: 0; }
.fa-landing__steps li { align-items: flex-start; border-bottom: 1px solid rgba(11,31,54,.14); display: flex; gap: 22px; padding: 25px 0; }
.fa-landing__steps li:first-child { border-top: 1px solid rgba(11,31,54,.14); }
.fa-landing__steps li > span { color: var(--fa-coral); font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .1em; padding-top: 4px; }
.fa-landing__steps strong { display: block; font-size: 16px; }
.fa-landing__steps p { color: var(--fa-muted); font-size: 13px; line-height: 1.55; margin: 7px 0 0; }
.fa-landing__section--faq { background: var(--fa-white); }
.fa-landing__faq-grid { display: grid; gap: 90px; grid-template-columns: .8fr 1fr; }
.fa-landing__faq-list details { border-bottom: 1px solid var(--fa-line); padding: 20px 0; }
.fa-landing__faq-list details:first-child { border-top: 1px solid var(--fa-line); }
.fa-landing__faq-list summary { cursor: pointer; display: flex; font-size: 16px; font-weight: 700; justify-content: space-between; list-style: none; }
.fa-landing__faq-list summary::-webkit-details-marker { display: none; }
.fa-landing__faq-list summary span { color: var(--fa-coral); font-size: 22px; font-weight: 400; }
.fa-landing__faq-list details[open] summary span { transform: rotate(45deg); }
.fa-landing__faq-list details p { color: var(--fa-muted); font-size: 14px; line-height: 1.65; margin: 16px 30px 4px 0; }
.fa-landing__cta { background: var(--fa-coral); color: var(--fa-white); padding: 73px 0; }
.fa-landing__eyebrow--light { color: var(--fa-lime); margin-bottom: 16px; }
.fa-landing__cta h2 { font-size: clamp(36px, 5vw, 60px); max-width: 620px; }
.fa-landing__cta-inner { align-items: center; display: flex; gap: 35px; justify-content: space-between; }
.fa-landing__button--light { background: var(--fa-lime) !important; border: 1px solid rgba(11,31,54,.08); box-shadow: 0 10px 24px rgba(11,31,54,.12); color: var(--fa-ink) !important; }
.fa-landing__button--light:hover { background: #b7df4e; border-color: rgba(11,31,54,.16); color: var(--fa-ink) !important; }
.fa-landing__button--light:focus-visible { outline: 3px solid rgba(201,242,109,.7); outline-offset: 4px; }
.fa-landing__footer { background: var(--fa-ink); color: var(--fa-white); padding: 32px 0; }
.fa-landing__footer-inner { align-items: center; display: flex; gap: 30px; justify-content: space-between; }
.fa-landing__footer .fa-landing__brand-copy small { color: rgba(255,255,255,.55); }
.fa-landing__footer p, .fa-landing__footer a:not(.fa-landing__brand) { color: rgba(255,255,255,.56); font-size: 11px; }
.fa-landing__footer-inner > div { display: flex; gap: 20px; }
.fa-landing__footer a:not(.fa-landing__brand):hover { color: var(--fa-lime); }
@media (max-width: 900px) {
  .fa-landing__links { display: none; }
  .fa-landing__hero-grid { gap: 45px; grid-template-columns: 1fr; }
  .fa-landing__hero-copy { max-width: 680px; }
  .fa-landing__hero-visual { margin: 0 auto; max-width: 560px; width: 100%; }
  .fa-landing__feature-grid { grid-template-columns: 1fr; }
  .fa-landing__feature-card { min-height: 0; }
  .fa-landing__families-grid, .fa-landing__faq-grid { gap: 50px; grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .fa-landing__container { width: min(100% - 32px, 500px); }
  .fa-landing__nav-inner { min-height: 70px; }
  .fa-landing__nav-actions { gap: 10px; }
  .fa-landing__login { display: none; }
  .fa-landing__nav-cta { font-size: 11px; padding: 11px 13px; }
  .fa-landing__brand-copy strong { font-size: 13px; }
  .fa-landing__hero { padding: 55px 0 68px; }
  .fa-landing__hero h1 { font-size: clamp(42px, 14vw, 62px); }
  .fa-landing__hero-lead { font-size: 16px; }
  .fa-landing__hero-visual { min-height: 390px; }
  .fa-landing__hero-image { height: 390px; right: 17px; width: calc(100% - 34px); }
  .fa-landing__hero-note--top { left: -5px; top: 30px; }
  .fa-landing__hero-note--bottom { bottom: 15px; right: -3px; }
  .fa-landing__trust-grid { grid-template-columns: 1fr; }
  .fa-landing__trust-grid > div, .fa-landing__trust-grid > div + div { border-bottom: 1px solid rgba(255,255,255,.13); border-right: 0; min-height: 0; padding: 23px 0; }
  .fa-landing__trust-grid > div:last-child { border-bottom: 0; }
  .fa-landing__section { padding: 76px 0; }
  .fa-landing__cta { padding: 56px 0; }
  .fa-landing__cta-inner, .fa-landing__footer-inner { align-items: flex-start; flex-direction: column; }
  .fa-landing__footer-inner { gap: 20px; }
  .fa-landing__footer p { margin: 0; }
}
@media (prefers-reduced-motion: reduce) { .fa-landing *, .fa-landing *::before, .fa-landing *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; } }


/* ============================================================
   FA_ADMIN_UI_REFRESH_20260815_V1
   Calm, readable visual system for authenticated administration.
   This layer is intentionally scoped to .fa-admin-shell.
   ============================================================ */
body.fa-admin-shell {
  --fa-ui-ink: #17324a;
  --fa-ui-text: #40556a;
  --fa-ui-muted: #718398;
  --fa-ui-line: #dce6ed;
  --fa-ui-line-soft: #e9eff3;
  --fa-ui-surface: #ffffff;
  --fa-ui-page: #f4f7fa;
  --fa-ui-green: #238348;
  --fa-ui-green-dark: #176a39;
  --fa-ui-green-soft: #edf8f1;
  --fa-ui-focus: rgba(35, 131, 72, .2);
  color: var(--fa-ui-text);
  background: var(--fa-ui-page);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.fa-admin-shell .fa-admin-layout {
  background: linear-gradient(180deg, #f8fafc 0%, var(--fa-ui-page) 100%);
}

body.fa-admin-shell .fa-admin-sidebar {
  box-shadow: 12px 0 32px rgba(17, 43, 65, .12);
}

body.fa-admin-shell .fa-admin-sidebar > a:first-child {
  min-height: 4.25rem;
  border-bottom-color: rgba(255, 255, 255, .12);
}

body.fa-admin-shell .fa-admin-sidebar > a:first-child > span {
  color: rgba(255, 255, 255, .96);
  font-size: 1.04rem;
  letter-spacing: -.015em;
}

body.fa-admin-shell .fa-admin-nav-parent {
  min-height: 2.85rem;
  color: rgba(255, 255, 255, .78);
  font-size: .85rem;
  font-weight: 650;
  border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

body.fa-admin-shell .fa-admin-nav-parent:hover,
body.fa-admin-shell .fa-admin-nav-parent:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .085);
  border-color: rgba(255, 255, 255, .08);
  box-shadow: inset 3px 0 0 #c9f26d;
}

body.fa-admin-shell .fa-admin-nav-item {
  min-height: 2.45rem;
  color: rgba(255, 255, 255, .66);
  font-size: .82rem;
  border: 1px solid transparent;
}

body.fa-admin-shell .fa-admin-nav-item:hover,
body.fa-admin-shell .fa-admin-nav-item:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .065);
  border-color: rgba(255, 255, 255, .07);
}

body.fa-admin-shell .fa-admin-header {
  min-height: 4.35rem;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid var(--fa-ui-line-soft);
  box-shadow: 0 4px 18px rgba(20, 46, 67, .035);
}

body.fa-admin-shell .fa-admin-content {
  color: var(--fa-ui-text);
}

body.fa-admin-shell .fa-admin-content h1,
body.fa-admin-shell .fa-admin-content h2,
body.fa-admin-shell .fa-admin-content h3,
body.fa-admin-shell .fa-admin-content h4 {
  color: var(--fa-ui-ink);
  font-weight: 760;
  letter-spacing: -.025em;
}

body.fa-admin-shell .fa-admin-content h1 {
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1.12;
}

body.fa-admin-shell .fa-admin-content h2 {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.2;
}

body.fa-admin-shell .fa-admin-content p,
body.fa-admin-shell .fa-admin-content .text-gray-500,
body.fa-admin-shell .fa-admin-content .text-gray-600,
body.fa-admin-shell .fa-admin-content .text-slate-500,
body.fa-admin-shell .fa-admin-content .text-slate-600 {
  color: var(--fa-ui-muted);
}

body.fa-admin-shell .fa-admin-content .bg-white.rounded-lg,
body.fa-admin-shell .fa-admin-content .bg-white.rounded-xl,
body.fa-admin-shell .fa-admin-content .bg-white.rounded-2xl {
  border-color: var(--fa-ui-line);
  box-shadow: 0 12px 30px rgba(25, 54, 76, .055);
}

/* Shared table surfaces and controls. */
body.fa-admin-shell .fa-admin-content .dataTables_wrapper,
body.fa-admin-shell .fa-admin-content .table-scroll {
  position: relative;
  margin: 1.15rem 0 0;
  padding: 1rem;
  overflow-x: auto;
  border: 1px solid var(--fa-ui-line);
  border-radius: 1.05rem;
  background: var(--fa-ui-surface);
  box-shadow: 0 10px 25px rgba(25, 54, 76, .045);
  scrollbar-color: #b7c7d2 #f4f7fa;
  scrollbar-width: thin;
}

body.fa-admin-shell .fa-admin-content .dataTables_wrapper::after {
  content: '';
  display: table;
  clear: both;
}

body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_length,
body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_filter {
  min-height: 2.6rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .85rem;
  color: var(--fa-ui-muted);
  font-size: .8rem;
  font-weight: 650;
}

body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_filter {
  float: right;
}

body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_length select,
body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_filter input {
  min-height: 2.35rem;
  margin-left: .2rem;
  padding: .45rem .7rem;
  border: 1px solid #cbd8e1;
  border-radius: .65rem;
  color: #40556a;
  background: #fff;
  font: inherit;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_filter input {
  width: min(18rem, 42vw);
}

body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_length select:focus,
body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_filter input:focus,
body.fa-admin-shell .fa-admin-content table thead select:focus {
  border-color: var(--fa-ui-green);
  box-shadow: 0 0 0 3px var(--fa-ui-focus);
}

body.fa-admin-shell .fa-admin-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--fa-ui-text);
}

body.fa-admin-shell .fa-admin-content table thead th {
  padding: .78rem .85rem;
  border-top: 1px solid var(--fa-ui-line-soft);
  border-bottom: 1px solid #d7e5dc;
  color: #527263;
  background: #f0faf4;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .075em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

body.fa-admin-shell .fa-admin-content table thead th:first-child {
  border-top-left-radius: .7rem;
}

body.fa-admin-shell .fa-admin-content table thead th:last-child {
  border-top-right-radius: .7rem;
}

body.fa-admin-shell .fa-admin-content table tbody td {
  padding: .9rem .85rem;
  border-bottom: 1px solid #edf2f5;
  color: #4b6073;
  font-size: .86rem;
  line-height: 1.45;
  vertical-align: middle;
}

body.fa-admin-shell .fa-admin-content table tbody tr:last-child td {
  border-bottom: 0;
}

body.fa-admin-shell .fa-admin-content table tbody tr:hover td {
  background: #f8fcfa;
}

body.fa-admin-shell .fa-admin-content table tbody td a:not(.btn),
body.fa-admin-shell .fa-admin-content table tbody td button {
  font-weight: 700;
}

/* Column filter rows: calmer and easier to scan than tiny native controls. */
body.fa-admin-shell .fa-admin-content table thead tr:nth-child(2) th {
  padding: .55rem .45rem;
  border-top: 0;
  background: #fbfdfc;
}

body.fa-admin-shell .fa-admin-content table thead tr:nth-child(2) select,
body.fa-admin-shell .fa-admin-content table thead tr:nth-child(2) input {
  width: 100%;
  min-height: 2.25rem;
  padding: .4rem .55rem;
  border: 1px solid #d4e0e6;
  border-radius: .55rem;
  color: #53697b;
  background: #fff;
  font-size: .76rem;
  outline: none;
}

/* Export and primary actions. */
body.fa-admin-shell .fa-admin-content .btn-csv,
body.fa-admin-shell .fa-admin-content .btn-pdf,
body.fa-admin-shell .fa-admin-content .btn-print,
body.fa-admin-shell .fa-admin-content .btn.btn-primary,
body.fa-admin-shell .fa-admin-content input[type="submit"].bg-brand-600,
body.fa-admin-shell .fa-admin-content button.bg-brand-600,
body.fa-admin-shell .fa-admin-content a.bg-brand-600 {
  min-height: 2.65rem;
  border-radius: .7rem;
  font-size: .82rem;
  font-weight: 750;
  box-shadow: 0 5px 12px rgba(25, 54, 76, .06);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

body.fa-admin-shell .fa-admin-content .btn-csv:hover,
body.fa-admin-shell .fa-admin-content .btn-pdf:hover,
body.fa-admin-shell .fa-admin-content .btn-print:hover,
body.fa-admin-shell .fa-admin-content .btn.btn-primary:hover,
body.fa-admin-shell .fa-admin-content input[type="submit"].bg-brand-600:hover,
body.fa-admin-shell .fa-admin-content button.bg-brand-600:hover,
body.fa-admin-shell .fa-admin-content a.bg-brand-600:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(25, 54, 76, .11);
  filter: brightness(.98);
}

body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_info {
  margin-top: .9rem;
  color: var(--fa-ui-muted);
  font-size: .78rem;
}

body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_paginate {
  margin-top: .65rem;
  color: var(--fa-ui-muted);
}

body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_paginate .paginate_button {
  min-width: 2.15rem;
  min-height: 2.15rem;
  margin: 0 .12rem;
  padding: .45rem .65rem;
  border: 1px solid transparent !important;
  border-radius: .65rem !important;
  color: #5d7182 !important;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.1;
}

body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border-color: #c9dfd0 !important;
  color: var(--fa-ui-green-dark) !important;
  background: var(--fa-ui-green-soft) !important;
}

body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_paginate .paginate_button.current {
  border-color: var(--fa-ui-green) !important;
  color: #fff !important;
  background: var(--fa-ui-green) !important;
  box-shadow: 0 5px 12px rgba(35, 131, 72, .18);
}

/* Forms and date picker. */
body.fa-admin-shell .fa-admin-content form label {
  display: block;
  margin-bottom: .38rem;
  color: #5c7182;
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .015em;
}

body.fa-admin-shell .fa-admin-content input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]),
body.fa-admin-shell .fa-admin-content select,
body.fa-admin-shell .fa-admin-content textarea {
  color: #3d5367;
  border-color: #cbd8e1;
  border-radius: .65rem;
  background: #fff;
  font-size: .9rem;
}

body.fa-admin-shell .fa-admin-content input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):focus,
body.fa-admin-shell .fa-admin-content select:focus,
body.fa-admin-shell .fa-admin-content textarea:focus {
  border-color: var(--fa-ui-green);
  box-shadow: 0 0 0 3px var(--fa-ui-focus);
  outline: none;
}

body.fa-admin-shell .fa-admin-content .datepicker,
body.fa-admin-shell .fa-admin-content .datepicker-dropdown {
  z-index: 1055 !important;
  padding: .55rem;
  border: 1px solid var(--fa-ui-line);
  border-radius: .9rem;
  background: #fff;
  box-shadow: 0 18px 40px rgba(20, 46, 67, .16);
}

body.fa-admin-shell .fa-admin-content .datepicker table tr td.active,
body.fa-admin-shell .fa-admin-content .datepicker table tr td.active:hover {
  color: #fff;
  background: var(--fa-ui-green);
  border-radius: .45rem;
}

/* Select2 controls used by parent filters and imports. */
body.fa-admin-shell .fa-admin-content .select2-container--default .select2-selection--single,
body.fa-admin-shell .fa-admin-content .select2-container--default .select2-selection--multiple {
  min-height: 2.35rem;
  border: 1px solid #cbd8e1;
  border-radius: .65rem;
  background: #fff;
}

body.fa-admin-shell .fa-admin-content .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: .45rem .7rem;
  color: #53697b;
  font-size: .8rem;
  line-height: 1.35rem;
}

body.fa-admin-shell .fa-admin-content .select2-container--default .select2-selection--multiple {
  padding: .18rem .35rem;
}

body.fa-admin-shell .fa-admin-content .select2-container--default.select2-container--focus .select2-selection--single,
body.fa-admin-shell .fa-admin-content .select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: var(--fa-ui-green);
  box-shadow: 0 0 0 3px var(--fa-ui-focus);
}

body.fa-admin-shell .fa-admin-content .select2-container--default .select2-selection__choice {
  margin-top: .2rem;
  border: 0;
  border-radius: .45rem;
  color: #27613e;
  background: #e5f5eb;
  font-size: .75rem;
}

body.fa-admin-shell .fa-admin-content .fa-admin-empty {
  min-height: 13rem;
  border-color: #c9d9e2;
  border-radius: 1rem;
  color: var(--fa-ui-muted);
  background: rgba(255, 255, 255, .75);
}

@media (max-width: 900px) {
  body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_filter,
  body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_length {
    float: none;
    display: flex;
    width: 100%;
    justify-content: space-between;
  }

  body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_filter input {
    width: min(20rem, 62vw);
  }
}

@media (max-width: 640px) {
  body.fa-admin-shell {
    font-size: 14px;
  }

  body.fa-admin-shell .fa-admin-content {
    padding: 1.15rem .8rem 2.4rem !important;
  }

  body.fa-admin-shell .fa-admin-content .dataTables_wrapper,
  body.fa-admin-shell .fa-admin-content .table-scroll {
    padding: .7rem;
    border-radius: .9rem;
  }

  body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_filter,
  body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_length {
    align-items: flex-start;
    flex-direction: column;
    gap: .35rem;
    margin-bottom: .7rem;
  }

  body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_filter input,
  body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_length select {
    width: 100%;
    margin-left: 0;
  }

  body.fa-admin-shell .fa-admin-content table {
    min-width: 720px;
  }

  body.fa-admin-shell .fa-admin-content table tbody td {
    padding: .75rem .7rem;
  }

  body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_paginate {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: .2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.fa-admin-shell *,
  body.fa-admin-shell *::before,
  body.fa-admin-shell *::after {
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}



/* FA_ADMIN_UI_REFRESH_20260815_V2: component-level refinements */
body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_length label,
body.fa-admin-shell .fa-admin-content .dataTables_wrapper .dataTables_filter label {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin: 0;
  color: var(--fa-ui-muted);
  font-size: .8rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

body.fa-admin-shell .fa-admin-content .fa-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  margin: 1rem 0;
  padding: .75rem;
  border: 1px solid var(--fa-ui-line);
  border-radius: .95rem;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 8px 20px rgba(25, 54, 76, .035);
}

body.fa-admin-shell .fa-admin-content .fa-toolbar button,
body.fa-admin-shell .fa-admin-content .fa-toolbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 2.55rem;
  padding: .55rem .85rem;
  border-radius: .65rem;
  font-size: .8rem;
  font-weight: 750;
}

body.fa-admin-shell .fa-admin-content #csv-import-toggle {
  min-height: 3.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .75rem 1rem;
  border: 1px solid var(--fa-ui-line);
  border-radius: .9rem;
  color: var(--fa-ui-ink);
  background: #fff;
  box-shadow: 0 8px 18px rgba(25, 54, 76, .035);
  font-size: .9rem;
  font-weight: 700;
}

body.fa-admin-shell .fa-admin-content #csv-import-toggle:hover {
  border-color: #c5dbce;
  background: #fbfefc;
}

body.fa-admin-shell .fa-admin-content .fa-toolbar + .dataTables_wrapper,
body.fa-admin-shell .fa-admin-content #csv-import-toggle + * {
  margin-top: .85rem;
}

@media (max-width: 640px) {
  body.fa-admin-shell .fa-admin-content .fa-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  body.fa-admin-shell .fa-admin-content .fa-toolbar button,
  body.fa-admin-shell .fa-admin-content .fa-toolbar a {
    width: 100%;
  }
}



/* ============================================================
   FA_PARENT_PORTAL_REFRESH_20260815_V1
   Calm, readable visual system for the authenticated parent portal.
   ============================================================ */
body.fa-parent-portal {
  --fa-parent-ink: #17324a;
  --fa-parent-text: #40586b;
  --fa-parent-muted: #718398;
  --fa-parent-line: #dce6ed;
  --fa-parent-green: #238348;
  --fa-parent-green-dark: #176a39;
  --fa-parent-green-soft: #edf8f1;
  --fa-parent-focus: rgba(35, 131, 72, .2);
  color: var(--fa-parent-text);
  background: linear-gradient(180deg, #f8fafc 0%, #f4f7fa 100%) !important;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.fa-parent-portal nav {
  border-bottom: 1px solid var(--fa-parent-line);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 4px 18px rgba(20, 46, 67, .055);
}

body.fa-parent-portal nav a {
  color: var(--fa-parent-text);
  border-color: #cbd8e1;
  transition: color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

body.fa-parent-portal nav a:hover,
body.fa-parent-portal nav a:focus-visible {
  color: var(--fa-parent-green-dark);
  border-color: #9bc8aa;
  background: var(--fa-parent-green-soft);
  box-shadow: 0 5px 14px rgba(25, 54, 76, .08);
  transform: translateY(-1px);
}

body.fa-parent-portal main,
body.fa-parent-portal .max-w-5xl {
  color: var(--fa-parent-text);
}

body.fa-parent-portal h1,
body.fa-parent-portal h2,
body.fa-parent-portal h3,
body.fa-parent-portal h4,
body.fa-parent-portal h5 {
  color: var(--fa-parent-ink);
  letter-spacing: -.02em;
}

body.fa-parent-portal .text-gray-400 { color: #8999a6 !important; }
body.fa-parent-portal .text-gray-500 { color: var(--fa-parent-muted) !important; }
body.fa-parent-portal .text-gray-600 { color: #5c7182 !important; }
body.fa-parent-portal .text-gray-700 { color: var(--fa-parent-text) !important; }
body.fa-parent-portal .text-gray-900 { color: var(--fa-parent-ink) !important; }
body.fa-parent-portal .text-brand-600 { color: var(--fa-parent-green) !important; }
body.fa-parent-portal .text-brand-700 { color: var(--fa-parent-green-dark) !important; }

body.fa-parent-portal .bg-white.rounded-lg,
body.fa-parent-portal .bg-white.rounded-xl,
body.fa-parent-portal .bg-white.rounded-2xl {
  border-color: var(--fa-parent-line);
  box-shadow: 0 12px 30px rgba(25, 54, 76, .055);
}

body.fa-parent-portal .bg-brand-600 {
  background: linear-gradient(135deg, #238348 0%, #176a39 100%) !important;
}

body.fa-parent-portal table {
  border-collapse: separate;
  border-spacing: 0;
  color: var(--fa-parent-text);
}

body.fa-parent-portal table th {
  color: #527263 !important;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .065em;
  text-transform: uppercase;
}

body.fa-parent-portal table td {
  color: var(--fa-parent-text) !important;
  border-color: #edf2f5 !important;
  line-height: 1.45;
}

body.fa-parent-portal table tr:hover td {
  background: #f8fcfa;
}

body.fa-parent-portal .score-badge {
  box-shadow: 0 4px 10px rgba(25, 54, 76, .08);
}

body.fa-parent-portal .score-empty {
  border: 1px solid #dbe4e9;
}

body.fa-parent-portal footer {
  color: #8293a0;
  border-color: var(--fa-parent-line) !important;
}

body.fa-parent-portal a:focus-visible,
body.fa-parent-portal button:focus-visible {
  outline: 3px solid var(--fa-parent-focus);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  body.fa-parent-portal {
    font-size: 14px;
  }

  body.fa-parent-portal nav .max-w-5xl,
  body.fa-parent-portal .max-w-5xl {
    padding-left: .85rem;
    padding-right: .85rem;
  }

  body.fa-parent-portal .grid {
    gap: .8rem;
  }

  body.fa-parent-portal table {
    min-width: 620px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.fa-parent-portal *,
  body.fa-parent-portal *::before,
  body.fa-parent-portal *::after {
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}



/* ============================================================
   FA_ADMIN_UI_REFRESH_20260815_V3
   Preserve intentional white text on colored admin surfaces.
   ============================================================ */
body.fa-admin-shell .fa-admin-content .text-white,
body.fa-admin-shell .fa-admin-content h1.text-white,
body.fa-admin-shell .fa-admin-content h2.text-white,
body.fa-admin-shell .fa-admin-content h3.text-white,
body.fa-admin-shell .fa-admin-content h4.text-white {
  color: #fff !important;
}



/* ============================================================
   FA_PARENT_DASHBOARD_REFRESH_20260815_V1
   Structured family dashboard and child detail presentation.
   ============================================================ */
body.fa-parent-dashboard,
body.fa-parent-detail {
  --fa-parent-surface: #ffffff;
  --fa-parent-surface-soft: #f7faf9;
  --fa-parent-ink: #17324a;
  --fa-parent-text: #40586b;
  --fa-parent-muted: #718398;
  --fa-parent-line: #dce6ed;
  --fa-parent-green: #238348;
  --fa-parent-green-dark: #176a39;
  --fa-parent-green-soft: #edf8f1;
  --fa-parent-navy-soft: #eef4f8;
  --fa-parent-warning-soft: #fff8e7;
  --fa-parent-shadow: 0 14px 34px rgba(25, 54, 76, .07);
}

body.fa-parent-dashboard .fa-parent-shell,
body.fa-parent-detail .fa-parent-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

body.fa-parent-dashboard .fa-parent-nav,
body.fa-parent-detail .fa-parent-nav {
  min-height: 70px;
}

.fa-parent-brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
  color: var(--fa-parent-ink);
  font-weight: 800;
  letter-spacing: -.02em;
}

.fa-parent-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.fa-parent-brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.fa-parent-brand__name { font-size: 1rem; }
.fa-parent-brand__section {
  margin-top: .28rem;
  color: var(--fa-parent-muted);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fa-parent-nav__actions {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.fa-parent-user {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--fa-parent-text);
  font-size: .85rem;
  font-weight: 700;
}

.fa-parent-user__avatar,
.fa-parent-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--fa-parent-green), var(--fa-parent-green-dark));
  font-weight: 800;
  box-shadow: 0 7px 16px rgba(35, 131, 72, .2);
}

.fa-parent-user__avatar { width: 34px; height: 34px; font-size: .78rem; }
.fa-parent-avatar { width: 54px; height: 54px; font-size: 1.15rem; flex: 0 0 auto; }

.fa-parent-dashboard__hero,
.fa-parent-detail__hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.45rem;
}

.fa-parent-dashboard__eyebrow,
.fa-parent-detail__eyebrow {
  margin-bottom: .45rem;
  color: var(--fa-parent-green);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.fa-parent-dashboard__hero h1,
.fa-parent-detail__hero h1 {
  margin: 0;
  color: var(--fa-parent-ink) !important;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -.045em;
}

.fa-parent-dashboard__hero p,
.fa-parent-detail__hero p {
  max-width: 680px;
  margin: .65rem 0 0;
  color: var(--fa-parent-muted);
  font-size: .96rem;
}

.fa-parent-status-chip,
.fa-parent-status {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid #bfe0c9;
  border-radius: 999px;
  padding: .48rem .75rem;
  background: var(--fa-parent-green-soft);
  color: var(--fa-parent-green-dark);
  font-size: .74rem;
  font-weight: 800;
  white-space: nowrap;
}

.fa-parent-status--pending {
  border-color: #f3d89b;
  background: var(--fa-parent-warning-soft);
  color: #9b6811;
}

.fa-parent-alert {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.35rem;
  border: 1px solid #f1d491;
  border-left: 4px solid #d99815;
  border-radius: 14px;
  padding: .95rem 1rem;
  background: #fffaf0;
  color: #795716;
  font-size: .86rem;
}

.fa-parent-alert i { color: #c6830f; margin-top: .15rem; }
.fa-parent-alert strong { display: block; color: #704d0d; }
.fa-parent-alert span { display: block; margin-top: .2rem; color: #8a6c33; }

.fa-parent-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-bottom: 2rem;
}

.fa-parent-summary-card {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-height: 112px;
  border: 1px solid var(--fa-parent-line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  background: var(--fa-parent-surface);
  box-shadow: var(--fa-parent-shadow);
}

.fa-parent-summary-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--fa-parent-green-soft);
  color: var(--fa-parent-green);
  font-size: 1.05rem;
  flex: 0 0 auto;
}

.fa-parent-summary-card__icon--blue { background: #edf5ff; color: #3175b8; }
.fa-parent-summary-card__icon--amber { background: #fff7e8; color: #b57915; }
.fa-parent-summary-card__value {
  color: var(--fa-parent-ink);
  font-size: 1.45rem;
  font-weight: 850;
  line-height: 1;
}
.fa-parent-summary-card__label {
  margin-top: .32rem;
  color: var(--fa-parent-muted);
  font-size: .74rem;
  font-weight: 700;
}

.fa-parent-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 .9rem;
}
.fa-parent-section-heading h2 {
  margin: 0;
  color: var(--fa-parent-ink) !important;
  font-size: 1.18rem;
  letter-spacing: -.03em;
}
.fa-parent-section-heading p {
  margin: .35rem 0 0;
  color: var(--fa-parent-muted);
  font-size: .82rem;
}
.fa-parent-section-heading__count {
  color: var(--fa-parent-green-dark);
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

.fa-parent-children-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.fa-parent-child-card,
.fa-parent-panel,
.fa-parent-empty {
  border: 1px solid var(--fa-parent-line);
  border-radius: 18px;
  background: var(--fa-parent-surface);
  box-shadow: var(--fa-parent-shadow);
}

.fa-parent-child-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
}

.fa-parent-child-card__header {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.05rem 1.1rem;
  background: linear-gradient(135deg, #f4fbf6, #edf7f1);
  border-bottom: 1px solid #d9ece0;
}
.fa-parent-child-card__header h3 {
  margin: 0;
  color: var(--fa-parent-ink) !important;
  font-size: 1.05rem;
  letter-spacing: -.025em;
}
.fa-parent-child-card__header p {
  margin: .22rem 0 0;
  color: var(--fa-parent-muted);
  font-size: .78rem;
}
.fa-parent-child-card__header a { margin-left: auto; color: var(--fa-parent-green-dark); }
.fa-parent-child-card__body { padding: 1.05rem 1.1rem; }
.fa-parent-child-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: auto;
  border-top: 1px solid #edf2f5;
  padding: .85rem 1.1rem;
}

.fa-parent-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.fa-parent-info-item {
  min-width: 0;
  border: 1px solid #edf2f5;
  border-radius: 12px;
  padding: .68rem .75rem;
  background: #fbfcfd;
}
.fa-parent-info-item__label {
  color: var(--fa-parent-muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.fa-parent-info-item__value {
  margin-top: .26rem;
  overflow-wrap: anywhere;
  color: var(--fa-parent-ink);
  font-size: .83rem;
  font-weight: 700;
}

.fa-parent-card-evaluation {
  margin-top: 1rem;
  border-top: 1px solid #edf2f5;
  padding-top: .9rem;
}
.fa-parent-card-evaluation__title {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .65rem;
  color: var(--fa-parent-green-dark);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.fa-parent-rating-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .55rem;
}
.fa-parent-rating {
  min-width: 0;
  text-align: center;
}
.fa-parent-rating__value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.3rem;
  min-height: 2.05rem;
  border-radius: 10px;
  padding: .25rem .38rem;
  color: #fff;
  font-size: .78rem;
  font-weight: 850;
  box-shadow: 0 4px 10px rgba(25, 54, 76, .08);
}
.fa-parent-rating__value--empty { background: #edf1f4; color: #94a3ad; box-shadow: none; }
.fa-parent-rating__label {
  margin-top: .3rem;
  color: var(--fa-parent-muted);
  font-size: .64rem;
  line-height: 1.15;
}

.fa-parent-link,
.fa-parent-primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.fa-parent-link { color: var(--fa-parent-green-dark); }
.fa-parent-primary-link {
  padding: .62rem .85rem;
  background: var(--fa-parent-green);
  color: #fff !important;
  box-shadow: 0 7px 14px rgba(35, 131, 72, .16);
}
.fa-parent-link:hover,
.fa-parent-primary-link:hover { transform: translateY(-1px); }
.fa-parent-primary-link:hover { background: var(--fa-parent-green-dark); }

.fa-parent-empty {
  padding: 2rem 1.2rem;
  text-align: center;
}
.fa-parent-empty i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: .75rem;
  border-radius: 15px;
  background: var(--fa-parent-navy-soft);
  color: #56809d;
}
.fa-parent-empty h3 { margin: 0; color: var(--fa-parent-ink) !important; font-size: 1rem; }
.fa-parent-empty p { max-width: 450px; margin: .45rem auto 0; color: var(--fa-parent-muted); font-size: .84rem; }

.fa-parent-detail__hero {
  align-items: center;
  margin-bottom: 1rem;
}
.fa-parent-detail__hero-card {
  display: flex;
  align-items: center;
  gap: .95rem;
  min-width: 0;
}
.fa-parent-detail__hero-card h1 { overflow-wrap: anywhere; }
.fa-parent-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .8rem;
  margin-top: .55rem;
  color: var(--fa-parent-muted);
  font-size: .78rem;
  font-weight: 650;
}
.fa-parent-detail__meta span { display: inline-flex; align-items: center; gap: .32rem; }
.fa-parent-detail__meta i { color: var(--fa-parent-green); }

.fa-parent-detail__actions { display: flex; gap: .55rem; flex-wrap: wrap; }
.fa-parent-detail__identity {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--fa-parent-line);
  border-radius: 16px;
  padding: .85rem;
  background: rgba(255,255,255,.75);
}
.fa-parent-detail__identity .fa-parent-info-item { border: 0; background: transparent; padding: .5rem .65rem; }

.fa-parent-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: 1.1rem;
}
.fa-parent-stat {
  border: 1px solid var(--fa-parent-line);
  border-radius: 14px;
  padding: .8rem .7rem;
  background: var(--fa-parent-surface);
  text-align: center;
}
.fa-parent-stat__value { color: var(--fa-parent-ink); font-size: 1.35rem; font-weight: 850; line-height: 1; }
.fa-parent-stat__label { margin-top: .35rem; color: var(--fa-parent-muted); font-size: .67rem; font-weight: 750; line-height: 1.2; }
.fa-parent-stat--green { background: #f1fbf4; border-color: #cce9d4; }
.fa-parent-stat--green .fa-parent-stat__value { color: #217a42; }
.fa-parent-stat--blue { background: #f1f7ff; border-color: #d4e5f8; }
.fa-parent-stat--blue .fa-parent-stat__value { color: #2c6ea9; }
.fa-parent-stat--amber { background: #fff9ed; border-color: #f3e1b6; }
.fa-parent-stat--amber .fa-parent-stat__value { color: #a57112; }
.fa-parent-stat--red { background: #fff3f3; border-color: #f2d3d3; }
.fa-parent-stat--red .fa-parent-stat__value { color: #b64f4f; }

.fa-parent-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .8fr);
  align-items: start;
  gap: 1rem;
}
.fa-parent-panel { overflow: hidden; }
.fa-parent-panel + .fa-parent-panel { margin-top: 1rem; }
.fa-parent-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid #e4edf1;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, #f7fbf8, #f1f8f4);
}
.fa-parent-panel__header h2 {
  margin: 0;
  color: var(--fa-parent-ink) !important;
  font-size: 1rem;
  letter-spacing: -.025em;
}
.fa-parent-panel__header p { margin: .3rem 0 0; color: var(--fa-parent-muted); font-size: .76rem; }
.fa-parent-panel__body { padding: 1rem 1.1rem; }
.fa-parent-panel__body--compact { padding: .85rem; }

.fa-parent-evaluation-group + .fa-parent-evaluation-group { margin-top: 1.25rem; }
.fa-parent-evaluation-group__heading {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .7rem;
  color: var(--fa-parent-green-dark);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.fa-parent-evaluation-group__heading::after { content: ''; height: 1px; flex: 1; background: #e4edf1; }
.fa-parent-score-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .65rem; }
.fa-parent-score-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fa-parent-score-grid--five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.fa-parent-score-cell {
  border: 1px solid #edf2f5;
  border-radius: 12px;
  padding: .58rem .4rem;
  background: #fbfcfd;
  text-align: center;
}
.fa-parent-score-cell__badge { display: inline-flex; align-items: center; justify-content: center; width: 2.4rem; height: 2.4rem; border-radius: 10px; color: #fff; font-size: .78rem; font-weight: 850; box-shadow: 0 4px 10px rgba(25, 54, 76, .08); }
.fa-parent-score-cell__badge--empty { background: #edf1f4; color: #94a3ad; box-shadow: none; }
.fa-parent-score-cell__label { margin-top: .38rem; color: var(--fa-parent-muted); font-size: .63rem; line-height: 1.15; }
.fa-parent-note {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  margin-top: 1rem;
  border: 1px solid #f0dfaf;
  border-radius: 12px;
  padding: .75rem;
  background: #fffaf0;
  color: #80632a;
  font-size: .78rem;
}
.fa-parent-note i { color: #c88b1a; margin-top: .1rem; }

.fa-parent-summary-list { display: grid; gap: .6rem; }
.fa-parent-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  border-bottom: 1px solid #edf2f5;
  padding-bottom: .6rem;
  color: var(--fa-parent-muted);
  font-size: .78rem;
}
.fa-parent-summary-row:last-child { border-bottom: 0; padding-bottom: 0; }
.fa-parent-summary-row strong { color: var(--fa-parent-ink); font-weight: 800; text-align: right; }
.fa-parent-legend { margin-top: 1rem; color: var(--fa-parent-muted); font-size: .72rem; line-height: 1.55; }

.fa-parent-session-table { width: 100%; }
.fa-parent-session-table th { padding: .65rem .7rem; background: #f5faf7; }
.fa-parent-session-table td { padding: .72rem .7rem; vertical-align: top; }
.fa-parent-session-table tbody tr:nth-child(even) td { background: #fcfefd; }
.fa-parent-session-table__number { display: inline-flex; align-items: center; justify-content: center; min-width: 1.8rem; min-height: 1.8rem; border-radius: 8px; padding: .15rem .35rem; color: #fff; font-weight: 850; }
.fa-parent-session-mobile { display: grid; gap: .7rem; }
.fa-parent-session-mobile__item { border: 1px solid #e5edf1; border-radius: 13px; padding: .8rem; background: #fbfcfd; }
.fa-parent-session-mobile__top { display: flex; justify-content: space-between; gap: .6rem; align-items: center; }
.fa-parent-session-mobile__date { color: var(--fa-parent-ink); font-size: .84rem; font-weight: 850; }
.fa-parent-session-mobile__meta { display: grid; gap: .3rem; margin-top: .6rem; color: var(--fa-parent-text); font-size: .75rem; }
.fa-parent-session-mobile__meta i { width: 1rem; color: var(--fa-parent-green); }

@media (max-width: 900px) {
  .fa-parent-detail-grid { grid-template-columns: 1fr; }
  .fa-parent-detail__identity { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fa-parent-stat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  body.fa-parent-dashboard .fa-parent-shell,
  body.fa-parent-detail .fa-parent-shell { padding: 1.35rem .9rem 2.2rem; }
  .fa-parent-dashboard__hero,
  .fa-parent-detail__hero { align-items: flex-start; flex-direction: column; }
  .fa-parent-dashboard__hero p,
  .fa-parent-detail__hero p { font-size: .86rem; }
  .fa-parent-summary-grid,
  .fa-parent-children-grid { grid-template-columns: 1fr; }
  .fa-parent-summary-card { min-height: 92px; }
  .fa-parent-section-heading { align-items: flex-start; flex-direction: column; gap: .35rem; }
  .fa-parent-nav__actions { gap: .35rem; }
  .fa-parent-user__name { display: none; }
  .fa-parent-brand__name { font-size: .88rem; }
  .fa-parent-brand__section { font-size: .6rem; }
  .fa-parent-detail__identity { grid-template-columns: 1fr 1fr; }
  .fa-parent-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fa-parent-score-grid,
  .fa-parent-score-grid--three,
  .fa-parent-score-grid--five { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 420px) {
  .fa-parent-detail__identity { grid-template-columns: 1fr; }
  .fa-parent-info-grid { grid-template-columns: 1fr; }
  .fa-parent-rating-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fa-parent-score-grid,
  .fa-parent-score-grid--three,
  .fa-parent-score-grid--five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}



/* FA_PARENT_MEASURE_REFRESH_20260815_V1 */
.fa-parent-measure-table { width: 100%; border-collapse: separate; border-spacing: 0; overflow: hidden; border: 1px solid #e4edf1; border-radius: 12px; background: #fbfcfd; color: var(--fa-parent-text); font-size: .76rem; }
.fa-parent-measure-table th,
.fa-parent-measure-table td { padding: .62rem .7rem; border-bottom: 1px solid #edf2f5; text-align: center; white-space: nowrap; }
.fa-parent-measure-table thead th { background: #f5faf7; color: var(--fa-parent-green-dark); font-size: .68rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.fa-parent-measure-table tbody th { background: #f8fbfc; color: var(--fa-parent-ink); font-weight: 800; text-align: left; }
.fa-parent-measure-table tbody tr:last-child th,
.fa-parent-measure-table tbody tr:last-child td { border-bottom: 0; }

@media (max-width: 520px) {
  .fa-parent-measure-table { font-size: .7rem; }
  .fa-parent-measure-table th,
  .fa-parent-measure-table td { padding: .55rem .45rem; }
}

/* End FA_PARENT_MEASURE_REFRESH_20260815_V1 */
/* FA_DOCS_UI_REFRESH_20260825_V1 -- documented Formules / Suivi refinements */
.fa-formules-search-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.125rem;
    background: #f8fafc;
    border: 1px solid #dbe4ee;
    border-radius: 0.9rem;
    box-shadow: 0 4px 14px rgba(16, 42, 67, 0.05);
}
.fa-formules-search-copy {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}
.fa-formules-search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    flex: 0 0 2.35rem;
    color: #0f766e;
    background: #ccfbf1;
    border-radius: 0.7rem;
}
.fa-formules-search-label {
    display: block;
    color: #102a43;
    font-size: 0.875rem;
    font-weight: 700;
}
.fa-formules-search-help {
    margin: 0.15rem 0 0;
    color: #64748b;
    font-size: 0.75rem;
}
.fa-formules-search-control {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: min(100%, 23rem);
}
.fa-formules-search-input {
    width: 100%;
    min-height: 2.7rem;
    padding: 0.65rem 0.85rem;
    color: #102a43;
    background: #fff;
    border: 1px solid #b8c7d9;
    border-radius: 0.65rem;
    outline: none;
    font-size: 0.875rem;
}
.fa-formules-search-input:focus {
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}
.fa-formules-search-count {
    flex: 0 0 auto;
    color: #526579;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}
.fa-suivi-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    background: #f8fafc;
    border: 1px solid #dbe4ee;
    border-radius: 0.85rem;
}
.fa-suivi-toolbar__eyebrow {
    margin: 0;
    color: #102a43;
    font-size: 0.8rem;
    font-weight: 700;
}
.fa-suivi-toolbar__eyebrow i { color: #0f766e; margin-right: 0.35rem; }
.fa-suivi-toolbar__help {
    margin: 0.2rem 0 0;
    color: #64748b;
    font-size: 0.75rem;
}
.fa-suivi-sort-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.45rem;
    padding: 0.55rem 0.8rem;
    color: #102a43;
    background: #fff;
    border: 1px solid #b8c7d9;
    border-radius: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.fa-suivi-sort-button:hover { background: #eef6f6; border-color: #0f766e; }
.fa-suivi-sort-button:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.16); }
.fa-suivi-table__head,
.fa-suivi-table__head th {
    color: #fff !important;
    background: #102a43 !important;
}
@media (max-width: 640px) {
    .fa-formules-search-panel,
    .fa-suivi-toolbar { align-items: stretch; flex-direction: column; }
    .fa-formules-search-control { min-width: 0; }
    .fa-suivi-sort-button { justify-content: center; width: 100%; }
}
/* FA_DOCS_JOUEUR_UI_20260825_V1 -- documented player search surface */
.fa-joueur-search-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.125rem;
    background: #f8fafc;
    border: 1px solid #dbe4ee;
    border-radius: 0.9rem;
    box-shadow: 0 4px 14px rgba(16, 42, 67, 0.05);
}
.fa-joueur-search-copy {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}
.fa-joueur-search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    flex: 0 0 2.35rem;
    color: #0f766e;
    background: #ccfbf1;
    border-radius: 0.7rem;
}
.fa-joueur-search-label {
    display: block;
    color: #102a43;
    font-size: 0.875rem;
    font-weight: 700;
}
.fa-joueur-search-help {
    margin: 0.15rem 0 0;
    color: #64748b;
    font-size: 0.75rem;
}
.fa-joueur-search-control {
    min-width: min(100%, 23rem);
}
.fa-joueur-search-input {
    width: 100%;
    min-height: 2.7rem;
    padding: 0.65rem 0.85rem;
    color: #102a43;
    background: #fff;
    border: 1px solid #b8c7d9;
    border-radius: 0.65rem;
    outline: none;
    font-size: 0.875rem;
}
.fa-joueur-search-input:focus {
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}
@media (max-width: 640px) {
    .fa-joueur-search-panel { align-items: stretch; flex-direction: column; }
    .fa-joueur-search-control { min-width: 0; }
}
/* FA_LANDING_REFRESH_20260826_V1 */
.fa-landing__section-heading--wide { max-width: 790px; }
.fa-landing__section-heading + .fa-landing__section-heading { margin-top: 56px; }
.fa-landing__hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 24px; }
.fa-landing__hero-badge { display: inline-flex; flex-direction: column; gap: 3px; min-width: 112px; padding: 12px 14px; border: 1px solid rgba(11,31,54,.12); border-radius: 14px; background: rgba(255,255,255,.72); box-shadow: 0 8px 18px rgba(11,31,54,.05); }
.fa-landing__hero-badge strong { color: var(--fa-ink); font-family: 'Space Grotesk', sans-serif; font-size: 21px; letter-spacing: -.04em; line-height: 1; }
.fa-landing__hero-badge small { color: var(--fa-muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.fa-landing__age-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 38px; }
.fa-landing__age-card { position: relative; min-height: 260px; padding: 30px; border: 1px solid rgba(11,31,54,.10); border-radius: 24px; overflow: hidden; box-shadow: 0 18px 38px rgba(11,31,54,.07); }
.fa-landing__age-card--lime { background: var(--fa-lime); }
.fa-landing__age-card--navy { color: var(--fa-white); background: var(--fa-ink); }
.fa-landing__card-kicker { margin-bottom: 18px; font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.fa-landing__age-card--lime .fa-landing__card-kicker { color: rgba(11,31,54,.64); }
.fa-landing__age-card--navy .fa-landing__card-kicker { color: rgba(255,255,255,.62); }
.fa-landing__age-card h3 { max-width: 390px; margin: 0 0 12px; font-family: 'Space Grotesk', sans-serif; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.05em; line-height: 1.02; }
.fa-landing__age-card p { max-width: 430px; margin: 0; font-size: 14px; line-height: 1.65; opacity: .82; }
.fa-landing__card-line { position: absolute; right: 30px; bottom: 26px; left: 30px; display: flex; align-items: center; gap: 8px; padding-top: 15px; border-top: 1px solid rgba(11,31,54,.16); font-size: 11px; font-weight: 800; letter-spacing: .02em; }
.fa-landing__age-card--navy .fa-landing__card-line { border-color: rgba(255,255,255,.18); }
.fa-landing__card-line span { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.46); }
.fa-landing__program-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 38px; }
.fa-landing__program-card { min-height: 275px; padding: 27px; border: 1px solid rgba(11,31,54,.10); border-radius: 20px; background: #fff; box-shadow: 0 14px 30px rgba(11,31,54,.05); }
.fa-landing__program-card--dark { color: #fff; background: var(--fa-ink); }
.fa-landing__program-number { display: block; color: var(--fa-coral); font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.fa-landing__program-icon { display: block; margin: 32px 0 23px; color: var(--fa-coral); font-size: 32px; line-height: 1; }
.fa-landing__program-card h3 { margin: 0 0 11px; font-family: 'Space Grotesk', sans-serif; font-size: 23px; letter-spacing: -.04em; line-height: 1.05; }
.fa-landing__program-card p { margin: 0; color: var(--fa-muted); font-size: 13px; line-height: 1.65; }
.fa-landing__program-card--dark p { color: rgba(255,255,255,.72); }
.fa-landing__expertise { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 42px; align-items: center; margin-top: 56px; padding: 29px 32px; border: 1px solid rgba(11,31,54,.10); border-radius: 20px; background: rgba(255,255,255,.62); }
.fa-landing__expertise h3 { max-width: 380px; margin: 0; font-family: 'Space Grotesk', sans-serif; font-size: 27px; letter-spacing: -.045em; line-height: 1.05; }
.fa-landing__expertise p:last-child { margin: 0; color: var(--fa-muted); font-size: 14px; line-height: 1.75; }
.fa-landing__family-details { display: flex; flex-direction: column; gap: 25px; }
.fa-landing__schedule-card { padding: 24px; border-radius: 19px; color: #fff; background: var(--fa-ink); box-shadow: 0 16px 30px rgba(11,31,54,.14); }
.fa-landing__schedule-row { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.fa-landing__schedule-row strong { font-size: 13px; }
.fa-landing__schedule-row span { flex: 0 0 auto; color: var(--fa-lime); font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 800; }
.fa-landing__schedule-card p { display: flex; gap: 8px; margin: 17px 0 0; color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.55; }
.fa-landing__schedule-card p span { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; width: 17px; height: 17px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-weight: 800; }
.fa-landing__section--program { background: #f6f9f7; }
.fa-landing__section--formula { background: var(--fa-paper); }
.fa-landing__formula-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(290px, .9fr); gap: 60px; align-items: center; }
.fa-landing__formula-copy h2 { max-width: 590px; }
.fa-landing__formula-copy > p { max-width: 600px; color: var(--fa-muted); font-size: 15px; line-height: 1.75; }
.fa-landing__formula-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 28px; }
.fa-landing__formula-points span { display: flex; flex-direction: column; gap: 7px; padding: 16px 14px; border-left: 3px solid var(--fa-coral); border-radius: 0 12px 12px 0; background: #fff; color: var(--fa-muted); font-size: 11px; line-height: 1.4; }
.fa-landing__formula-points b { color: var(--fa-ink); font-family: 'Space Grotesk', sans-serif; font-size: 22px; letter-spacing: -.04em; }
.fa-landing__price-card { position: relative; padding: 34px 30px 30px; border-radius: 23px; color: #fff; background: var(--fa-coral); box-shadow: 0 18px 38px rgba(235,106,75,.22); }
.fa-landing__price-card__mark { position: absolute; top: 22px; right: 28px; color: rgba(255,255,255,.58); font-size: 27px; }
.fa-landing__price-card .fa-landing__card-kicker { color: rgba(255,255,255,.75); }
.fa-landing__price-card h3 { max-width: 320px; margin: 0 0 13px; font-family: 'Space Grotesk', sans-serif; font-size: 27px; letter-spacing: -.05em; line-height: 1.04; }
.fa-landing__price-card p { margin: 0 0 26px; color: rgba(255,255,255,.86); font-size: 13px; line-height: 1.65; }
.fa-landing__price-card .fa-landing__button--primary { color: var(--fa-ink) !important; background: #fff; }
.fa-landing__price-card .fa-landing__button--primary:hover { color: var(--fa-ink) !important; background: var(--fa-lime); }
@media (max-width: 900px) {
  .fa-landing__program-grid { grid-template-columns: 1fr; }
  .fa-landing__program-card { min-height: auto; }
  .fa-landing__program-icon { margin: 20px 0 14px; }
  .fa-landing__formula-grid { gap: 35px; }
}
@media (max-width: 720px) {
  .fa-landing__age-grid, .fa-landing__formula-grid, .fa-landing__expertise { grid-template-columns: 1fr; }
  .fa-landing__age-card { min-height: 245px; padding: 24px; }
  .fa-landing__expertise { gap: 20px; padding: 24px; }
  .fa-landing__formula-points { grid-template-columns: 1fr; }
  .fa-landing__formula-points span { flex-direction: row; align-items: center; gap: 12px; }
}
@media (max-width: 560px) {
  .fa-landing__hero-badge { min-width: calc(33.333% - 7px); padding: 11px 9px; }
  .fa-landing__hero-badge strong { font-size: 18px; }
  .fa-landing__hero-badge small { font-size: 8px; letter-spacing: .04em; }
  .fa-landing__age-card h3 { font-size: 26px; }
  .fa-landing__card-line { right: 24px; bottom: 21px; left: 24px; }
  .fa-landing__schedule-row { align-items: flex-start; flex-direction: column; gap: 5px; }
  .fa-landing__price-card { padding: 28px 23px 24px; }
}
/* ===== V2 2026-09 : CTA inscription tres visible + presentation logo + CTA mobile ===== */
.fa-landing__nav { position: sticky; top: 0; }
.fa-landing__brand-mark { background: var(--fa-white); border: 1px solid rgba(11,31,54,.14); box-shadow: 0 2px 10px rgba(11,31,54,.12); }
.fa-landing__nav-cta { background: var(--fa-coral); box-shadow: 0 6px 18px rgba(240,84,60,.30); }
.fa-landing__nav-cta:hover { background: #e75c46; }
.fa-landing__hero-actions .fa-landing__button--primary { font-size: 15px; padding: 19px 30px; box-shadow: 0 14px 32px rgba(240,84,60,.35); animation: fa-cta-pulse 2.6s infinite; }
@keyframes fa-cta-pulse { 0% { box-shadow: 0 14px 32px rgba(240,84,60,.35), 0 0 0 0 rgba(240,84,60,.45); } 70% { box-shadow: 0 14px 32px rgba(240,84,60,.35), 0 0 0 16px rgba(240,84,60,0); } 100% { box-shadow: 0 14px 32px rgba(240,84,60,.35), 0 0 0 0 rgba(240,84,60,0); } }
.fa-landing__mobile-cta { align-items: center; background: var(--fa-coral); border-radius: 999px; bottom: 14px; box-shadow: 0 12px 28px rgba(240,84,60,.42); color: var(--fa-white) !important; display: none; font-size: 15px; font-weight: 800; gap: 12px; justify-content: center; left: 16px; padding: 16px 22px; position: fixed; right: 16px; z-index: 60; }
@media (max-width: 1023px) { .fa-landing__mobile-cta { display: flex; } .fa-landing { padding-bottom: 84px; } }
@media (prefers-reduced-motion: reduce) { .fa-landing__hero-actions .fa-landing__button--primary { animation: none; } }
