:root {
    --green-900: #0c3324;
    --green-800: #0f4a33;
    --green-700: #15734a;
    --green-600: #18794f;
    --green-500: #1f9d63;
    --green-400: #34b878;
    --green-50: #eafaf1;
    --green-100: #d6f3e3;
    --gold-600: #b8860b;
    --gold-500: #d4a017;
    --gold-100: #fbf0cf;
    --ink: #15231d;
    --muted: #5b6b63;
    --line: #e3ece7;
    --bg: #f4faf7;
    --landing-radius-card: 16px;
    --landing-radius-tile: 12px;
    --landing-radius-chip: 10px;
    --landing-radius-pill: 999px;
}

input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='hidden']):not([type='file']),
select,
textarea {
    border-radius: var(--landing-radius-chip);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='hidden']):not([type='file']):hover,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='hidden']):not([type='file']):focus,
select:hover,
select:focus,
textarea:hover,
textarea:focus {
    outline: none;
    border-color: #2fa77a;
    /* box-shadow: 0 0 0 3px rgba(47, 167, 122, 0.15); */
}

.bg-health {
    background-color: var(--bg);
    background-image:
        radial-gradient(ellipse 42% 34% at 14% 18%, rgba(255, 255, 255, 0.92) 0%, transparent 68%),
        radial-gradient(ellipse 36% 28% at 82% 12%, rgba(255, 255, 255, 0.75) 0%, transparent 62%),
        radial-gradient(ellipse 30% 24% at 58% 72%, rgba(255, 255, 255, 0.55) 0%, transparent 65%),
        radial-gradient(ellipse 75% 55% at 8% 0%, rgba(163, 215, 193, 0.18) 0%, transparent 52%),
        radial-gradient(ellipse 65% 45% at 94% 8%, rgba(209, 235, 224, 0.22) 0%, transparent 48%);
    background-size: cover, cover, cover, cover, cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    color: var(--ink);
}

@media (max-width: 767px) {
    .bg-health {
        background-attachment: scroll;
    }
}

.bg-health::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(ellipse 30% 24% at 72% 36%, rgba(255, 255, 255, 0.7) 0%, transparent 58%),
        radial-gradient(ellipse 20% 16% at 48% 16%, rgba(255, 255, 255, 0.55) 0%, transparent 50%),
        radial-gradient(ellipse 18% 14% at 12% 44%, rgba(255, 255, 255, 0.4) 0%, transparent 48%),
        radial-gradient(ellipse 75% 55% at 8% 15%, rgba(163, 215, 193, 0.28) 0%, transparent 52%),
        radial-gradient(ellipse 65% 50% at 92% 8%, rgba(209, 235, 224, 0.25) 0%, transparent 48%),
        radial-gradient(ellipse 60% 45% at 88% 88%, rgba(71, 175, 131, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 55% 40% at 12% 92%, rgba(232, 245, 239, 0.45) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: meshPulse 48s infinite ease-in-out alternate;
}

.bg-health::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(47, 167, 122, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 167, 122, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 20%, transparent 85%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

@keyframes meshPulse {
    0% { opacity: 0.85; }
    50% { opacity: 1; }
    100% { opacity: 0.9; }
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    animation: blobDrift 40s infinite ease-in-out;
}

@keyframes blobDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 25px) scale(0.95); }
}

.btn-flat {
    background: linear-gradient(135deg, var(--green-500), var(--green-700));
    border: none;
    border-radius: var(--landing-radius-chip);
    color: #fff;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 8px 20px rgba(24, 121, 79, 0.3);
}

.btn-flat:hover { background: linear-gradient(135deg, var(--green-500), var(--green-700)); color: #fff; }
.btn-flat:active { background: linear-gradient(135deg, var(--green-600), var(--green-800)); }

.btn-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    color: #374151;
    border-radius: var(--landing-radius-chip);
    transition: all 0.2s ease;
}

.card-flat:hover .btn-card {
    background-color: #f9fafb;
    border-color: #d1d5db;
    color: #111827;
}

.card-flat {
    background-color: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--landing-radius-card);
    box-shadow: 0 10px 28px rgba(24, 121, 79, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

#modulesGrid {
    align-items: stretch;
}

.card-flat:hover {
    border-color: #75c3a2;
    box-shadow: -4px 0 20px rgba(47, 167, 122, 0.35);
    color: inherit;
    text-decoration: none;
}

.card-flat.module-card:hover,
.service-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 20px 44px rgba(24, 121, 79, 0.16);
}

.icon-flat {
    background-color: #ecfdf5;
    border-radius: var(--landing-radius-tile);
    transition: all 0.2s ease;
}

.card-flat:hover .icon-flat { background-color: #a3d7c1; }

.logo-flat {
    border-radius: var(--landing-radius-tile);
}

.nav-link {
    position: relative;
    color: #1e7754;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
}

.nav-link:hover { color: #0e4730; }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2fa77a;
    transition: width 0.3s ease;
}

.nav-link:hover::after { width: 100%; }

.nav-menu {
    align-items: center;
    gap: 1.75rem;
}

.nav-menu__links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(24, 121, 79, 0.12);
}

/* Bootstrap: .py-4 is 1.5rem (vs Tailwind 1rem); Reboot underlines all anchors */
.site-header > div,
.site-header.py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.site-header a.site-brand,
.site-header a.site-brand:hover,
.site-header a.site-brand:focus,
.site-header a.nav-btn,
.site-header a.nav-btn:hover,
.site-header a.nav-btn:focus {
    text-decoration: none !important;
}

/* Skeleton header — padding lives on inner wrapper (matches live header) */
.site-header.portal-skeleton__header {
    padding: 0 !important;
}

.landing-skeleton .site-header *,
#load_screen.portal-public-skeleton .portal-skeleton__brand,
#load_screen.portal-public-skeleton .portal-skeleton__brand * {
    text-decoration: none !important;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--ink);
    text-decoration: none;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--landing-radius-tile);
    /* background: linear-gradient(135deg, var(--green-500), var(--green-700)); */
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 16px rgba(24, 121, 79, 0.35);
    overflow: hidden;
}

.site-brand__name {
    color: var(--ink);
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--landing-radius-chip);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.btn-ghost {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--green-700);
}

.btn-ghost:hover {
    border-color: var(--green-500);
    color: var(--green-700);
    /* transform: translateY(-1px); */
}

.btn-brand {
    background: linear-gradient(135deg, var(--green-500), var(--green-700));
    border: none;
    color: #fff;
    box-shadow: 0 8px 20px rgba(24, 121, 79, 0.3);
}

.btn-brand:hover {
    color: #fff;
    /* transform: translateY(-1px); */
    box-shadow: 0 10px 26px rgba(24, 121, 79, 0.42);
}

@media (max-width: 767px) {
    .nav-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
}

.search-toolbar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    background-color: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--landing-radius-card);
    box-shadow: 0 8px 24px rgba(24, 121, 79, 0.12);
    overflow: visible;
}

.search-toolbar__inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
    overflow: visible;
}

@media (min-width: 640px) {
    .search-toolbar__inner {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
}

.search-toolbar .search-bar {
    flex: 1 1 auto;
    min-width: 0;
    border: none;
    background: transparent;
}

.search-bar__icon {
    color: var(--muted);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.search-bar__input {
    color: var(--ink);
    font-size: 0.9375rem;
}

.search-toolbar .search-bar__input:hover,
.search-toolbar .search-bar__input:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
}

.search-bar__input::placeholder {
    color: var(--muted);
}

.search-toolbar:has(.search-bar__input:hover),
.search-toolbar:has(.search-bar__input:focus) {
    outline: none;
    border-color: #2fa77a;
    box-shadow: 0 8px 24px rgba(24, 121, 79, 0.12);
}

.search-toolbar__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    overflow: visible;
}

.toolbar-dropdown {
    position: relative;
    overflow: visible;
}

.toolbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background-color: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--landing-radius-chip);
    color: var(--green-700);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
    cursor: pointer;
    transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.toolbar-btn:hover {
    border-color: var(--green-500);
    /* transform: translateY(-1px); */
}

.toolbar-btn.is-open {
    /* border-color: var(--green-600); */
    box-shadow: 0 0 0 1px var(--green-500);
}

.toolbar-btn__caret {
    font-size: 0.625rem;
    opacity: 0.75;
}

.filter-dropdown {
    position: absolute;
    top: calc(100% + 0.375rem);
    left: 0;
    z-index: 110;
    min-width: 11rem;
    padding: 0.375rem 0;
    background-color: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--landing-radius-tile);
    box-shadow: 0 10px 28px rgba(16, 40, 30, 0.14);
}

.filter-dropdown--end {
    left: auto;
    right: 0;
}

.filter-option {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    color: var(--ink);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.filter-option:hover,
.filter-option:focus {
    background-color: var(--green-50);
    color: var(--ink);
    outline: none;
}

.filter-option.active {
    background-color: var(--green-100);
    color: var(--green-800);
    font-weight: 600;
}

@media (max-width: 639px) {
    .search-toolbar__actions {
        width: 100%;
        justify-content: flex-end;
    }
}

.faq-flat {
    background-color: #ffffff;
    border: 1px solid #eef2f1;
    border-radius: var(--landing-radius-card);
    transition: all 0.2s ease;
}

.faq-flat:hover {
    background-color: #ffffff;
    border-color: #d1ebe0;
    box-shadow: 0 4px 16px rgba(47, 167, 122, 0.1);
}

.faq-answer { display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.pulse-dot {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), rgba(163, 215, 193, 0.35));
    opacity: 0.45;
    animation: float 32s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.floating-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(47, 167, 122, 0.15);
    pointer-events: none;
    z-index: 0;
    animation: float 38s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* ===== Public notice modal (welcome page) ===== */
body.public-notice-modal-open {
    overflow: hidden;
}

.public-notice-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: grid;
    place-items: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.public-notice-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.public-notice-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 71, 48, 0.62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.public-notice-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 42rem);
    max-height: min(90vh, 44rem);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.28s ease;
}

.public-notice-modal.is-visible .public-notice-modal__dialog {
    transform: translateY(0) scale(1);
}

.public-notice-modal__card {
    display: flex;
    flex-direction: column;
    max-height: min(90vh, 44rem);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--landing-radius-card);
    box-shadow: 0 24px 60px rgba(14, 71, 48, 0.22);
}

.public-notice-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, var(--green-500), var(--green-700));
}

.public-notice-modal__header-copy {
    min-width: 0;
    flex: 1;
}

.public-notice-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.public-notice-modal__logo {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: var(--landing-radius-tile);
    background: rgba(255, 255, 255, 0.16);
    overflow: hidden;
    flex-shrink: 0;
}

.public-notice-modal__logo img {
    width: 1.375rem;
    height: 1.375rem;
    object-fit: contain;
}

.public-notice-modal__timer {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.92);
}

.public-notice-modal__timer strong {
    font-weight: 800;
    color: #ffffff;
}

.public-notice-modal__progress {
    width: min(100%, 14rem);
    height: 0.25rem;
    margin-top: 0.625rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
}

.public-notice-modal__progress-fill {
    height: 100%;
    width: 100%;
    border-radius: inherit;
    background: #ffffff;
    animation: publicNoticeProgress linear;
}

@keyframes publicNoticeProgress {
    from { width: 100%; }
    to { width: 0%; }
}

.public-notice-modal__close {
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--landing-radius-chip);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.15s ease;
    flex-shrink: 0;
}

.public-notice-modal__close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.public-notice-modal__body {
    padding: 1.5rem 1.5rem 1.25rem;
    overflow-y: auto;
    line-height: 1.65;
    color: #374151;
}

.public-notice-modal__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.public-notice-modal__badge--info {
    color: #1e40af;
    background: #dbeafe;
}

.public-notice-modal__badge--warning {
    color: #92400e;
    background: #fef3c7;
}

.public-notice-modal__badge--danger {
    color: #b91c1c;
    background: #fee2e2;
}

.public-notice-modal__badge--success {
    color: #047857;
    background: #d1fae5;
}

.public-notice-modal__title {
    margin: 0 0 1rem;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--ink);
}

.public-notice-modal__content {
    font-size: 0.9375rem;
}

.public-notice-modal__content p:last-child {
    margin-bottom: 0;
}

.public-notice-modal__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.875rem;
    padding: 1rem 1.5rem 1.25rem;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(236, 253, 245, 0.35) 0%, rgba(255, 255, 255, 0) 100%);
}

.public-notice-modal__signature {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green-700);
}

.public-notice-modal__action {
    margin-left: auto;
}

@media (max-width: 639px) {
    .public-notice-modal {
        padding: 0.75rem;
    }

    .public-notice-modal__header,
    .public-notice-modal__body,
    .public-notice-modal__footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .public-notice-modal__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .public-notice-modal__action {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

#mobileNav { display: none; }
#mobileNav.open { display: block; }

/* ===== Landing page skeleton loading ===== */
body.landing-loading {
    overflow-x: hidden;
}

body.landing-loading #support-ticket-launcher {
    display: none !important;
}

.landing-skeleton {
    opacity: 1;
    visibility: visible;
    overflow-x: hidden;
    max-width: 100vw;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.landing-skeleton--hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.landing-content--hidden {
    display: none;
}

.landing-content--visible {
    display: block;
    max-width: 100vw;
    position: relative;
    z-index: 1;
    animation: contentFadeIn 0.45s ease;
    overflow-x: clip;
}

.skeleton-block {
    border-radius: var(--landing-radius-tile);
    background: linear-gradient(90deg, #cfe8dc 0%, #edf7f1 45%, #cfe8dc 90%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
}

.skeleton-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--line);
    border-radius: var(--landing-radius-card);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 28px rgba(24, 121, 79, 0.08);
}

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== Landing design (reference index.html) ===== */
@keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.08); }
}

@keyframes shine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.hero-wrap {
    position: relative;
}

.aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.aurora-1 {
    width: 340px;
    height: 340px;
    background: rgba(52, 184, 120, 0.3);
    top: -80px;
    left: -60px;
    animation: drift 14s ease-in-out infinite;
}

.aurora-2 {
    width: 260px;
    height: 260px;
    background: rgba(212, 160, 23, 0.2);
    top: 40px;
    right: -40px;
    animation: drift 18s ease-in-out infinite reverse;
}

.hero-section__top {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.hero-section__content {
    flex: 1;
    min-width: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-700);
    background: var(--green-100);
    padding: 0.4375rem 0.875rem;
    border-radius: var(--landing-radius-chip);
    margin-bottom: 0.75rem;
}

.eyebrow__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-500);
    /* animation: floaty 2.5s ease-in-out infinite; */
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.hero-title__accent {
    background: linear-gradient(100deg, var(--green-500), var(--gold-500), var(--green-600));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 5s linear infinite;
}

.hero-subtitle {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--muted);
    max-width: 52ch;
    /* margin-bottom: 1.25rem; */
}

.hero-actions-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .hero-actions-row {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 1rem;
        align-items: stretch;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-actions {
        grid-column: span 6;
    }
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--landing-radius-chip);
}

.hero-emblem {
    display: none;
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #fff, var(--green-50));
    border: 1px solid var(--line);
    border-radius: var(--landing-radius-tile);
    place-items: center;
    box-shadow: 0 18px 40px rgba(16, 40, 30, 0.12);
    animation: floaty 4s ease-in-out infinite;
}

.hero-stats-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .hero-stats-cards {
        grid-column: span 6;
    }
}

.hero-stat-card {
    min-width: 0;
    padding: 0.875rem 0.75rem;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--landing-radius-tile);
    box-shadow: 0 10px 28px rgba(24, 121, 79, 0.08);
    text-align: center;
}

.hero-stat-card__icon {
    display: block;
    margin: 0 auto 0.375rem;
    font-size: 2rem;
    color: var(--green-500);
    opacity: 0.9;
}

.hero-stat-card__value {
    display: block;
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--green-700);
}

.hero-stat-card__label {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
}

.stats-band {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--green-800), var(--green-600));
    border-radius: var(--landing-radius-card);
    color: #fff;
    box-shadow: 0 18px 44px rgba(16, 40, 30, 0.22);
}

.stats-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.16), transparent 40%);
    pointer-events: none;
}

.stats-band__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    align-items: center;
}

.stat {
    padding: 0.5rem;
}

.stat + .stat {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.stat__icon {
    display: block;
    margin: 0 auto 0.25rem;
    font-size: 1.25rem;
    opacity: 0.85;
}

.stat__value {
    display: block;
    font-size: clamp(1.625rem, 4vw, 2.375rem);
    font-weight: 800;
    line-height: 1;
}

.stat__label {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.82);
}

.landing-section-tools {
    position: relative;
    z-index: 40;
    overflow: visible;
}

.landing-section-tools.is-dropdown-open {
    z-index: 100;
}

.landing-section-modules {
    position: relative;
    z-index: 1;
}

.service-card {
    --accent: var(--green-600);
    --accent-soft: var(--green-50);
    border: 3px dashed #1e935d59;
}

.module-card {
    position: relative;
    opacity: 0;
    transform: translateY(14px);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(100deg, var(--green-500), var(--gold-500), var(--green-600));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    z-index: 1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

body.landing-revealed .module-card {
    animation: cardReveal 0.55s ease forwards;
    animation-delay: var(--card-delay, 0s);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--landing-radius-tile);
    flex-shrink: 0;
    background: var(--accent-soft, var(--green-50));
    color: var(--accent, var(--green-600));
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    transition: transform 0.25s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-4deg);
}

.badge-popular {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    padding: 0.25rem 0.625rem;
    border-radius: var(--landing-radius-pill);
    box-shadow: 0 6px 14px rgba(184, 134, 11, 0.35);
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--accent, var(--green-700));
    padding: 0.375rem 1.125rem;
    border-radius: var(--landing-radius-chip);
    border: 1px solid var(--accent-soft, var(--green-100));
    background: #fff;
    transition: all 0.18s ease;
}

.card-cta i {
    transition: transform 0.18s ease;
}

.service-card:hover .card-cta {
    background: var(--accent, var(--green-600));
    color: #fff;
    border-color: var(--accent, var(--green-600));
    gap: 0.75rem;
}

.service-card:hover .card-cta i {
    transform: translateX(3px);
}

.module-card__cta {
    width: auto;
    align-self: flex-start;
}

.fq-header-wrapper .eyebrow,
.fq-header-wrapper .hero-title,
.fq-header-wrapper .hero-subtitle,
.fq-header-wrapper .hero-actions-row {
    opacity: 0;
}

body.landing-revealed .fq-header-wrapper .eyebrow {
    animation: heroFadeUp 0.6s ease 0.05s forwards;
}

body.landing-revealed .fq-header-wrapper .hero-title {
    animation: heroFadeUp 0.6s ease 0.15s forwards;
}

body.landing-revealed .fq-header-wrapper .hero-subtitle {
    animation: heroFadeUp 0.6s ease 0.25s forwards;
}

body.landing-revealed .fq-header-wrapper .hero-actions-row {
    animation: heroFadeUp 0.6s ease 0.35s forwards;
}

.faq-icon {
    background-color: #ecfdf5;
    border-radius: var(--landing-radius-tile);
    flex-shrink: 0;
}

.footer-link {
    color: #1e7754;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

button.footer-link {
    border: none;
    background: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
}

.footer-link:hover {
    color: #0e4730;
    text-decoration: underline;
}

.landing-section-footer {
    border-top: 1px solid rgba(209, 235, 224, 0.8);
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.45) 100%);
}

.no-results-illustration {
    background: #e8f5ef;
    border: 1px solid #d1ebe0;
    border-radius: var(--landing-radius-tile);
}

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

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

@keyframes logoPop {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .aurora,
    .bg-blob,
    .bg-health::before,
    .eyebrow__dot,
    .hero-emblem,
    .hero-title__accent,
    .floating-shape,
    .floating-ring,
    .pulse-dot,
    .skeleton-block {
        animation: none !important;
    }

    body.landing-revealed .module-card,
    body.landing-revealed .fq-header-wrapper .eyebrow,
    body.landing-revealed .fq-header-wrapper .hero-title,
    body.landing-revealed .fq-header-wrapper .hero-subtitle,
    body.landing-revealed .fq-header-wrapper .hero-actions-row {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .module-card,
    .service-card:hover {
        opacity: 1;
        transform: none;
    }

    .landing-content--visible {
        animation: none;
    }
}

/* ===== Support ticket panel ===== */
body.support-ticket-open {
    overflow: hidden;
}

#support-ticket-launcher {
    position: fixed !important;
    right: 0 !important;
    top: 50% !important;
    bottom: auto !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    z-index: 2147483646 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none;
}

.support-ticket-tab {
    position: relative;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0.65rem;
    margin: 0;
    background-color: #2fa77a !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: var(--landing-radius-chip);
    box-shadow: -4px 0 20px rgba(47, 167, 122, 0.35);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.support-ticket-tab__label {
    display: block;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
}

.support-ticket-tab i {
    font-size: 1rem;
    line-height: 1;
}

.support-ticket-tab:hover,
.support-ticket-tab:active {
    background-color: #268f66 !important;
    transform: translateX(-2px);
}

.support-ticket-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 71, 48, 0.45);
    z-index: 10055;
}

.support-ticket-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(24rem, 100vw);
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    z-index: 10060;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(47, 167, 122, 0.2);
}

.support-ticket-panel.open {
    transform: translateX(0);
}

.support-ticket-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background-color: #2fa77a;
    color: #ffffff;
}

.support-ticket-panel__title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.support-ticket-panel__close {
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: var(--landing-radius-chip);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    cursor: pointer;
}

.support-ticket-panel__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
}

.support-ticket-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.375rem;
    padding: 0.25rem;
    background-color: #f3faf6;
    border: 1px solid #d1ebe0;
    border-radius: var(--landing-radius-chip);
    margin-bottom: 1rem;
}

.support-ticket-tabs__btn {
    border: none;
    background: transparent;
    color: #1e7754;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 0.75rem;
    border-radius: var(--landing-radius-chip);
    cursor: pointer;
}

.support-ticket-tabs__btn.active {
    background-color: #2fa77a;
    color: #ffffff;
}

.support-ticket-pane {
    display: none;
}

.support-ticket-pane.active {
    display: block;
}

.support-ticket-intro {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.support-ticket-form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.support-ticket-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e7754;
    margin-bottom: 0.375rem;
}

.support-ticket-field .required {
    color: #dc2626;
}

.support-ticket-field input,
.support-ticket-field select,
.support-ticket-field textarea {
    width: 100%;
    border: 1px solid #d1ebe0;
    border-radius: var(--landing-radius-chip);
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    color: #0e4730;
    background: #ffffff;
}

.support-ticket-field small {
    display: block;
    margin-top: 0.25rem;
    color: #6b7280;
    font-size: 0.75rem;
}

.support-ticket-submit {
    width: 100%;
    border: none;
    border-radius: var(--landing-radius-chip);
    background-color: #2fa77a;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.support-ticket-submit:hover:not(:disabled) {
    background-color: #268f66;
}

.support-ticket-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.support-ticket-submit--secondary {
    background-color: #e8f5ef;
    color: #1e7754;
}

.support-ticket-submit--secondary:hover:not(:disabled) {
    background-color: #d1ebe0;
}

.support-ticket-alert {
    padding: 0.75rem 0.875rem;
    border-radius: var(--landing-radius-chip);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.support-ticket-alert.success {
    background: #e8f5ef;
    color: #1e7754;
    border: 1px solid #a3d7c1;
}

.support-ticket-alert.error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.support-ticket-alert.info {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.support-track-result {
    margin-top: 1rem;
}

.support-track-card {
    border: 1px solid #d1ebe0;
    border-radius: var(--landing-radius-card);
    padding: 1rem;
    background: #f9fdfb;
}

.support-track-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.support-track-card__head strong {
    display: block;
    color: #0e4730;
    margin-bottom: 0.25rem;
}

.support-status {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: var(--landing-radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    background: #d1ebe0;
    color: #1e7754;
}

.support-status--in_progress {
    background: #fef3c7;
    color: #92400e;
}

.support-status--resolved {
    background: #dcfce7;
    color: #166534;
}

.support-status--closed {
    background: #e5e7eb;
    color: #374151;
}

.support-track-message,
.support-track-comment p {
    white-space: pre-wrap;
    font-size: 0.875rem;
    color: #374151;
}

.support-track-thread {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
    max-height: 18rem;
    overflow: auto;
}

.support-track-comment {
    border: 1px solid #d8ebe3;
    border-radius: 12px;
    padding: 0.75rem 0.875rem;
    background: #ffffff;
}

.support-track-comment--requester {
    background: #f8fafc;
}

.support-track-comment--admin {
    border-color: #b8e6cf;
    background: #f0fdf7;
}

.support-track-comment__tag {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #e2e8f0;
    color: #475569;
}

.support-track-comment__meta {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.375rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.support-track-empty {
    color: #6b7280;
    font-size: 0.875rem;
}

.support-reply-form {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #d1ebe0;
}

/* ===== Guides drawer ===== */
body.guides-drawer-open {
    overflow: hidden;
}

.guides-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 71, 48, 0.45);
    z-index: 10075;
}

.guides-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(28rem, 100vw);
    height: 100vh;
    height: 100dvh;
    background: #f4f6f5;
    z-index: 10080;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(47, 167, 122, 0.2);
}

.guides-drawer.open {
    transform: translateX(0);
}

.guides-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background-color: #2fa77a;
    color: #ffffff;
    flex-shrink: 0;
}

.guides-drawer__title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.guides-drawer__close {
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: var(--landing-radius-chip);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background-color 0.15s ease;
}

.guides-drawer__close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.guides-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
}

.guides-drawer__section + .guides-drawer__section {
    margin-top: 1.5rem;
}

.guides-drawer__section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid #d1ebe0;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #2fa77a;
}

.guides-drawer__card {
    background: #ffffff;
    border: 1px solid #e3ece7;
    border-radius: var(--landing-radius-card);
    box-shadow: 0 8px 24px rgba(24, 121, 79, 0.08);
    overflow: hidden;
}

.guides-drawer__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1rem;
    text-decoration: none;
    text-align: left;
    color: inherit;
    background: #ffffff;
    border: none;
    border-left: 4px solid #2fa77a;
    cursor: pointer;
    font: inherit;
    transition: background-color 0.15s ease;
}

.guides-drawer__item + .guides-drawer__item {
    border-top: 1px solid #e3ece7;
}

.guides-drawer__item:hover {
    background: #f4faf7;
}

.guides-drawer__item-content {
    flex: 1;
    min-width: 0;
}

.guides-drawer__item-title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #15231d;
    line-height: 1.3;
}

.guides-drawer__item-desc {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    color: #5b6b63;
    line-height: 1.4;
}

.guides-drawer__item-arrow {
    flex-shrink: 0;
    font-size: 0.75rem;
    color: #a3b5ad;
}

.guides-drawer__card--videos {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guides-drawer__video {
    display: block;
    text-decoration: none;
    color: inherit;
    border-left: 4px solid #2fa77a;
    padding-left: 0.75rem;
    transition: opacity 0.15s ease;
}

.guides-drawer__video:hover {
    opacity: 0.92;
}

.guides-drawer__video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #e8f0ec, #d1ebe0);
    border: 1px solid #e3ece7;
    border-radius: var(--landing-radius-tile);
    display: grid;
    place-items: center;
}

.guides-drawer__video-play {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #2fa77a;
    color: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 20px rgba(47, 167, 122, 0.35);
}

.guides-drawer__video-play i {
    font-size: 0.875rem;
    margin-left: 2px;
}

.guides-drawer__video-content {
    padding: 0.625rem 0 0;
}

/* ===== Guide detail modal ===== */
body.guide-modal-open {
    overflow: hidden;
}

.guide-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 71, 48, 0.55);
    z-index: 10090;
}

.guide-modal {
    position: fixed;
    inset: 0;
    z-index: 10095;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.guide-modal.open {
    pointer-events: auto;
    opacity: 1;
}

.guide-modal[hidden] {
    display: none !important;
}

.guide-modal__dialog {
    width: min(42rem, 100%);
    max-height: min(90vh, 52rem);
    max-height: min(90dvh, 52rem);
    background: #f4f6f5;
    border: 1px solid #e3ece7;
    border-radius: var(--landing-radius-card);
    box-shadow: 0 24px 56px rgba(14, 71, 48, 0.28);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.guide-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #2fa77a;
    color: #ffffff;
    flex-shrink: 0;
}

.guide-modal__title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.guide-modal__close {
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: var(--landing-radius-chip);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    cursor: pointer;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: background-color 0.15s ease;
}

.guide-modal__close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.guide-modal__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
}

.guide-step {
    background: #ffffff;
    border: 1px solid #e3ece7;
    box-shadow: 0 8px 24px rgba(24, 121, 79, 0.06);
    padding: 1rem 1.125rem;
}

.guide-step + .guide-step {
    margin-top: 1rem;
}

.guide-step__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.625rem;
}

.guide-step__number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #2fa77a;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.guide-step__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #15231d;
    line-height: 1.3;
}

.guide-step__intro {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5b6b63;
}

.guide-step__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem 1.25rem;
}

@media (min-width: 640px) {
    .guide-step__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.guide-step__list li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #15231d;
}

.guide-step__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: #2fa77a;
}

.guide-callout {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-top: 0.875rem;
    padding: 0.75rem 0.875rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    border-left: 4px solid transparent;
}

.guide-callout i {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.guide-callout--note {
    background: #fff9e6;
    border-left-color: #d4a017;
    color: #7a5a08;
}

.guide-callout--note i {
    color: #d4a017;
}

.guide-callout--tip {
    background: #eafaf1;
    border-left-color: #2fa77a;
    color: #15734a;
}

.guide-callout--tip i {
    color: #2fa77a;
}

.guide-modal__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border-top: 1px solid #e3ece7;
    flex-shrink: 0;
}

.guide-modal__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: auto;
    padding: 0.625rem 1rem;
    background: #ffffff;
    border: 1px solid #2fa77a;
    color: #2fa77a;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.guide-modal__cta:hover {
    background: #2fa77a;
    color: #ffffff;
}

.guide-modal__done {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: var(--landing-radius-chip);
    background: #2fa77a;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.guide-modal__done:hover {
    background: #268f66;
}

@media (max-width: 767px) {
    #support-ticket-launcher {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .support-ticket-tab {
        padding: 0.875rem 0.5rem;
        font-size: 0.8125rem;
    }

    .support-ticket-panel {
        width: 100vw;
        max-width: 100vw;
    }

    .guides-drawer {
        width: 100vw;
        max-width: 100vw;
    }

    .guide-modal {
        padding: 0.5rem;
    }

    .guide-modal__dialog {
        max-height: 92dvh;
    }

    .guide-modal__footer {
        flex-wrap: wrap;
    }

    .guide-modal__cta {
        width: 100%;
        justify-content: center;
        margin-right: 0;
    }

    .guide-modal__done {
        width: 100%;
    }
}

/* ===== Public sub-pages (verify, etc.) ===== */
.public-back-btn {
    flex-shrink: 0;
}

.public-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green-700);
    text-decoration: none;
    transition: color 0.15s ease, gap 0.15s ease;
}

.public-back-link:hover {
    color: var(--green-800);
    gap: 0.625rem;
}

.landing-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.875rem 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid transparent;
    border-left-width: 4px;
    border-radius: var(--landing-radius-chip);
    font-size: 0.875rem;
    line-height: 1.5;
}

.landing-alert i {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.landing-alert--success {
    background: #eafaf1;
    border-left-color: #2fa77a;
    color: #15734a;
}

.landing-alert--error {
    background: #fef2f2;
    border-left-color: #dc2626;
    color: #991b1b;
}

.landing-alert--info {
    background: #eff6ff;
    border-left-color: #2563eb;
    color: #1e40af;
}

.verify-hero .hero-subtitle {
    margin-bottom: 0;
}

/* ===== Portal form (general payment, etc.) ===== */
.portal-form-card {
    display: block;
    padding: 0;
    overflow: hidden;
}

.portal-form-card:hover {
    transform: none;
    border-color: var(--line);
    box-shadow: 0 10px 28px rgba(24, 121, 79, 0.08);
}

.portal-form-card__header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, #f4faf7 100%);
}

.portal-form-card__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
}

.portal-form-card__subtitle {
    margin: 0.375rem 0 0;
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.45;
}

.portal-form {
    padding: 1.5rem;
}

.portal-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .portal-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.portal-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.portal-field--full {
    grid-column: 1 / -1;
}

.portal-form-row {
    display: grid;
    grid-column: 1 / -1;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    align-items: start;
}

.portal-field__label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}

.portal-field__input,
.portal-field__select,
.portal-field__textarea {
    width: 100%;
    padding: 0.75rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--landing-radius-chip);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.portal-field__input:hover,
.portal-field__select:hover,
.portal-field__textarea:hover,
.portal-field__input:focus,
.portal-field__select:focus,
.portal-field__textarea:focus {
    border-color: var(--green-400);
    box-shadow: 0 0 0 3px rgba(47, 167, 122, 0.12);
}

.portal-field__input:read-only {
    background: var(--green-50);
    color: var(--green-800);
    cursor: not-allowed;
}

.portal-field__textarea {
    min-height: 6rem;
    resize: vertical;
}

.portal-field__hint {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.4;
}

.portal-field__error {
    font-size: 0.75rem;
    font-weight: 600;
    color: #dc2626;
}

.portal-field--invalid .portal-field__input,
.portal-field--invalid .portal-field__select,
.portal-field--invalid .portal-field__textarea {
    border-color: #dc2626;
}

.portal-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.portal-form-actions .nav-btn {
    width: 100%;
    justify-content: center;
}

@media (min-width: 640px) {
    .portal-form-actions .nav-btn {
        width: auto;
    }
}

.verify-form-card {
    display: block;
}

.verify-form.search-toolbar__inner {
    align-items: stretch;
}

.verify-form__submit {
    width: 100%;
    justify-content: center;
}

@media (min-width: 640px) {
    .verify-form__submit {
        width: auto;
    }
}

.verify-result.card-flat:hover {
    transform: none;
    border-color: var(--line);
    box-shadow: 0 10px 28px rgba(24, 121, 79, 0.08);
}

.verify-result__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, #f4faf7 100%);
}

.verify-result__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
}

.verify-result__subtitle {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    color: var(--muted);
}

.verify-result__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.verify-result__badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.verify-result__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .verify-result__body {
        grid-template-columns: minmax(10rem, 14rem) 1fr;
        align-items: stretch;
    }
}

.verify-result__photo-wrap {
    width: 100%;
}

.verify-result__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: var(--landing-radius-tile);
    background: #ffffff;
    display: block;
}

.verify-result__photo--placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--green-50), #ffffff);
    color: var(--green-500);
    font-size: 3rem;
    border-radius: var(--landing-radius-tile);
}

.verify-result__details {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.verify-data-table {
    width: 100%;
    border-collapse: collapse;
}

.verify-data-table th,
.verify-data-table td {
    padding: 0.375rem 0;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
    text-align: left;
}

.verify-data-table tr:last-child th,
.verify-data-table tr:last-child td {
    border-bottom: none;
}

@media (min-width: 768px) {
    .verify-data-table--with-qr tbody > tr:nth-last-child(2) th,
    .verify-data-table--with-qr tbody > tr:nth-last-child(2) td:not(.verify-data-table__qr-cell) {
        border-bottom: none;
    }
}

.verify-data-table th {
    width: 11rem;
    padding-right: 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}

.verify-data-table td {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.45;
}

.verify-data-table--with-qr .verify-data-table__qr-cell {
    width: 10.5rem;
    padding: 0 0 0 1.25rem;
    vertical-align: bottom;
    text-align: center;
    border-bottom: none;
}

.verify-data-table--with-qr .verify-data-table__qr-row td {
    padding-top: 1.25rem;
    text-align: center;
    border-bottom: none;
}

.verify-data-table--with-qr .verify-data-table__qr-row td .verify-result__qr {
    margin-inline: auto;
}

.verify-result__qr-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    padding-top: 1.25rem;
}

.verify-result__qr {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(24, 121, 79, 0.08);
}

.verify-result__qr svg {
    display: block;
    width: 8.75rem;
    height: 8.75rem;
}

.verify-result__qr-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
}

.verify-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3125rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--landing-radius-pill);
}

.verify-status-badge--success {
    background: var(--green-50);
    color: var(--green-700);
    border: 1px solid #a3d7c1;
}

.verify-status-badge--warning {
    background: #fff9e6;
    color: #7a5a08;
    border: 1px solid #e8d28a;
}

.verify-status-badge--danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #f5b5b5;
}

.verify-status-badge--muted {
    background: #f4f6f5;
    color: #5b6b63;
    border: 1px solid var(--line);
}

.verify-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    color: var(--muted);
    line-height: 1.5;
    border-radius: 0;
}

.verify-disclaimer i {
    color: var(--green-500);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.verify-disclaimer a {
    color: var(--green-700);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.verify-disclaimer a:hover {
    color: var(--green-500);
}

.verify-result__footer {
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(236, 253, 245, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
}

.verify-result__cta {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-wrap: wrap;
}

.verify-result__cta-icon {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--landing-radius-tile);
    background: #ecfdf5;
    color: var(--green-700);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.verify-result__cta-copy {
    flex: 1 1 12rem;
    min-width: 0;
}

.verify-result__cta-title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
}

.verify-result__cta-text {
    margin: 0.2rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--muted);
}

.verify-result__cta-btn {
    margin-left: auto;
    flex-shrink: 0;
    gap: 0.45rem;
    white-space: nowrap;
}

@media (max-width: 639px) {
    .verify-result__cta {
        align-items: flex-start;
    }

    .verify-result__cta-btn {
        width: 100%;
        margin-left: 0;
        justify-content: center;
    }
}

.verify-print-btn {
    background: #ffffff;
}

/* Payment status result panel */
.verify-result__status-panel {
    display: grid;
    place-items: center;
    gap: 0.75rem;
    width: 100%;
    aspect-ratio: 3 / 4;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, var(--green-50), #ffffff);
    text-align: center;
    padding: 1.5rem 1rem;
}

.verify-result__status-icon {
    font-size: 4rem;
    line-height: 1;
}

.verify-result__status-icon--success {
    color: var(--green-600);
}

.verify-result__status-icon--warning {
    color: #d97706;
}

.verify-result__status-icon--danger {
    color: #dc2626;
}

.verify-result__status-label {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
}

.verify-result__payment-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1rem;
}

.verify-result__payment-note {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.5;
}

.verify-result__remita-logo {
    display: block;
    width: 10rem;
    max-width: 100%;
    margin-bottom: 0.75rem;
}

/* Print styles: public/commons/css/public-print.css */

/* ===== Portal gateway (auth modules) ===== */
body.auth-module-loading {
    overflow-x: hidden;
}

.portal-gateway {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem 1.5rem;
    font-family: 'Inter', sans-serif;
}

@media (min-width: 640px) {
    .portal-gateway {
        padding: 2rem 1.5rem 2rem;
    }
}

.portal-gateway__stage {
    flex: 1;
    display: grid;
    place-items: center;
    width: 100%;
}

.portal-gateway__card {
    position: relative;
    width: 100%;
    max-width: 35rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: var(--landing-radius-card);
    box-shadow: 0 18px 48px rgba(24, 121, 79, 0.1);
    overflow: hidden;
}

.portal-gateway__card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(100deg, var(--green-500), var(--gold-500), var(--green-600));
}

.portal-gateway__identity {
    padding: 1.75rem 1.5rem 1.25rem;
    text-align: center;
}

.portal-gateway__logo {
    display: grid;
    place-items: center;
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1rem;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--landing-radius-tile);
    padding: 0.5rem;
}

.portal-gateway__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.portal-gateway__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-700);
}

.portal-gateway__eyebrow::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: var(--green-500);
}

.portal-gateway__title {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 1.875rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
}

.portal-gateway__tagline {
    margin: 0.625rem auto 0;
    max-width: 30rem;
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.55;
}

.portal-gateway__capabilities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.5rem 1.25rem;
}

.portal-gateway__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-800);
    background: #ffffff;
    border: 1px solid var(--line);
}

.portal-gateway__chip i {
    color: var(--green-500);
    font-size: 0.8125rem;
}

.portal-gateway__divider {
    height: 1px;
    background: var(--line);
    margin: 0 1.5rem;
}

.portal-gateway__form {
    padding: 1.25rem 1.5rem 1.5rem;
}

.portal-gateway__form-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
}

.portal-gateway__form-subtitle {
    margin: 0.375rem 0 1rem;
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.45;
}

.portal-gateway__success-icon {
    display: grid;
    place-items: center;
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1rem;
    background: var(--green-50);
    color: var(--green-600);
    font-size: 2rem;
    border: 1px solid #a3d7c1;
}

.portal-gateway__success-title {
    margin: 0 0 0.75rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--green-700);
}

.portal-gateway__success-text {
    margin: 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.55;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.auth-field__label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}

.auth-field__control {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0 0.875rem;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--landing-radius-chip);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-field__control:focus-within {
    border-color: var(--green-400);
    box-shadow: 0 0 0 3px rgba(47, 167, 122, 0.12);
}

.auth-field__control i {
    color: var(--green-500);
    font-size: 0.9375rem;
    flex-shrink: 0;
}

.auth-field__input {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink);
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none !important;
}

.auth-field__toggle {
    border: none;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
}

.auth-field__toggle:hover {
    color: var(--green-600);
}

.portal-gateway__links {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.25rem;
}

.portal-gateway__link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--green-700);
    text-decoration: none;
}

.portal-gateway__link:hover {
    color: var(--green-800);
    text-decoration: underline;
}

.portal-gateway__actions {
    display: grid;
    gap: 0.625rem;
}

.portal-gateway__actions .nav-btn {
    width: 100%;
    justify-content: center;
}

.portal-gateway__back {
    margin: 0.875rem 0 0;
    text-align: center;
}

.portal-gateway__back .portal-gateway__link {
    font-size: 0.875rem;
}

.portal-gateway__footer {
    max-width: 40rem;
    width: 100%;
    margin: 1.25rem auto 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.5;
}

#load_screen.portal-gateway-skeleton {
    position: fixed;
    inset: 0;
    z-index: 20;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg);
    background-image:
        radial-gradient(ellipse 42% 34% at 14% 18%, rgba(255, 255, 255, 0.92) 0%, transparent 68%),
        radial-gradient(ellipse 36% 28% at 82% 12%, rgba(255, 255, 255, 0.75) 0%, transparent 62%),
        radial-gradient(ellipse 75% 55% at 8% 0%, rgba(163, 215, 193, 0.18) 0%, transparent 52%);
}

body.auth-module-loading .landing-content--hidden {
    display: none !important;
}

body.landing-revealed #load_screen {
    display: none !important;
}

.portal-gateway-skeleton .portal-gateway__card {
    background: rgba(255, 255, 255, 0.92);
}

.auth-skeleton__identity {
    text-align: center;
}

.auth-skeleton__logo {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1rem;
}

.auth-skeleton__eyebrow {
    width: 8rem;
    height: 0.75rem;
    margin: 0 auto 0.5rem;
}

.auth-skeleton__title {
    width: 12rem;
    height: 1.75rem;
    margin: 0 auto 0.5rem;
}

.auth-skeleton__tagline {
    width: 100%;
    max-width: 20rem;
    height: 1rem;
    margin: 0 auto;
}

.auth-skeleton__capabilities {
    justify-content: center;
}

.auth-skeleton__chip {
    width: 7rem;
    height: 2rem;
}

.auth-skeleton__form-title {
    width: 8rem;
    height: 1.25rem;
    margin-bottom: 0.5rem;
}

.auth-skeleton__form-subtitle {
    width: 100%;
    max-width: 18rem;
    height: 1rem;
    margin-bottom: 1.25rem;
}

.auth-skeleton__fields {
    display: grid;
    gap: 1rem;
}

.auth-skeleton__field {
    width: 100%;
    height: 2.75rem;
}

/* ===== Public portal skeleton (verify, result, payment) ===== */
#load_screen.portal-public-skeleton {
    position: fixed;
    inset: 0;
    z-index: 20;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg);
    background-image:
        radial-gradient(ellipse 42% 34% at 14% 18%, rgba(255, 255, 255, 0.92) 0%, transparent 68%),
        radial-gradient(ellipse 36% 28% at 82% 12%, rgba(255, 255, 255, 0.75) 0%, transparent 62%),
        radial-gradient(ellipse 75% 55% at 8% 0%, rgba(163, 215, 193, 0.18) 0%, transparent 52%);
}

body.landing-loading .landing-content--hidden {
    display: none !important;
}

.portal-skeleton__header-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .portal-skeleton__header-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .portal-skeleton__header-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.portal-skeleton__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.portal-skeleton__logo {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

.portal-skeleton__brand-text {
    width: 5rem;
    height: 1.25rem;
}

.portal-skeleton__nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.portal-skeleton__nav-actions--desktop {
    display: none;
}

.portal-skeleton__nav-actions--mobile {
    display: flex;
}

@media (min-width: 768px) {
    .portal-skeleton__nav-actions--desktop {
        display: flex;
    }

    .portal-skeleton__nav-actions--mobile {
        display: none;
    }
}

.portal-skeleton__nav-btn {
    width: 6rem;
    height: 2.25rem;
}

.portal-skeleton__nav-btn--wide {
    width: 7rem;
}

.portal-skeleton__nav-btn--compact {
    width: 4rem;
}

.portal-skeleton__main {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

@media (min-width: 640px) {
    .portal-skeleton__main {
        padding: 2rem 1.5rem;
    }
}

.portal-skeleton__hero {
    margin-bottom: 2rem;
}

.portal-skeleton__hero-copy {
    display: grid;
    gap: 1rem;
}

.portal-skeleton__eyebrow {
    width: 100%;
    max-width: 16rem;
    height: 1.5rem;
}

.portal-skeleton__title {
    width: 100%;
    max-width: 42rem;
    height: 3rem;
}

.portal-skeleton__subtitle {
    width: 100%;
    max-width: 36rem;
    height: 1rem;
}

.portal-skeleton__action-btn {
    width: 9rem;
    height: 2.75rem;
}

.portal-skeleton__stats {
    display: grid;
    gap: 0.75rem;
}

.portal-skeleton__stat-card {
    width: 100%;
    height: 5rem;
}

.portal-skeleton__toolbar-wrap {
    margin-bottom: 2rem;
}

.portal-skeleton__search-input {
    flex: 1;
    min-width: 0;
    height: 2.75rem;
}

.portal-skeleton__search-btn {
    width: 7rem;
    height: 2.25rem;
}

.portal-skeleton__result-card {
    overflow: hidden;
}

.portal-skeleton__result-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--line);
}

.portal-skeleton__result-heading {
    display: grid;
    gap: 0.5rem;
}

.portal-skeleton__result-title {
    width: 10rem;
    height: 1.5rem;
}

.portal-skeleton__result-meta {
    width: 14rem;
    height: 1rem;
}

.portal-skeleton__result-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.portal-skeleton__badge {
    width: 5rem;
    height: 2rem;
}

.portal-skeleton__print-btn {
    width: 5rem;
    height: 2.25rem;
}

.portal-skeleton__result-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .portal-skeleton__result-body {
        grid-template-columns: minmax(10rem, 14rem) 1fr;
    }
}

.portal-skeleton__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
}

.portal-skeleton__rows {
    display: grid;
    gap: 0.75rem;
}

.portal-skeleton__row {
    display: flex;
    gap: 1rem;
}

.portal-skeleton__row-label {
    width: 7rem;
    height: 1rem;
    flex-shrink: 0;
}

.portal-skeleton__row-value {
    flex: 1;
    height: 1rem;
}

.portal-skeleton__qr-wrap {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
}

.portal-skeleton__qr {
    width: 9rem;
    height: 9rem;
}

.portal-skeleton__footer {
    margin-top: 4rem;
    padding: 2rem 1rem;
    text-align: center;
}

.portal-skeleton__footer-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
}

.portal-skeleton__footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.portal-skeleton__footer-link {
    width: 6rem;
    height: 0.75rem;
}

.portal-skeleton__footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.portal-skeleton__footer-logo {
    width: 2rem;
    height: 2rem;
}

.portal-skeleton__footer-name {
    width: 4rem;
    height: 1rem;
}

.portal-skeleton__footer-line {
    width: 12rem;
    height: 0.75rem;
    margin: 0 auto;
}

.portal-skeleton__footer-line--wide {
    width: 20rem;
    max-width: 100%;
}

/* ===== Public portal wizard skeleton (registration) ===== */
.portal-public-skeleton--wizard .portal-skeleton__hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .portal-public-skeleton--wizard .portal-skeleton__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.portal-skeleton__form-card {
    overflow: hidden;
}

.portal-skeleton__form-card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, #f4faf7 100%);
    display: grid;
    gap: 0.5rem;
}

.portal-skeleton__form-card-title {
    width: 11rem;
    height: 1.5rem;
}

.portal-skeleton__form-card-subtitle {
    width: 100%;
    max-width: 36rem;
    height: 1rem;
}

.portal-skeleton__form-card-body {
    padding: 1.5rem;
}

.portal-skeleton__stepper {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.5rem;
    margin: -1.5rem -1.5rem 1.5rem;
    padding: 1.25rem 1.5rem 1rem;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, var(--green-50) 100%);
}

.portal-skeleton__step {
    display: grid;
    justify-items: center;
    gap: 0.375rem;
}

.portal-skeleton__step-num {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
}

.portal-skeleton__step-label {
    width: 3.5rem;
    height: 0.625rem;
}

.portal-skeleton__step-head {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.portal-skeleton__step-title {
    width: 10rem;
    height: 1.125rem;
}

.portal-skeleton__step-desc {
    width: 100%;
    max-width: 28rem;
    height: 0.875rem;
}

.portal-skeleton__form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .portal-skeleton__form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.portal-skeleton__field {
    width: 100%;
    height: var(--portal-field-height, 2.875rem);
}

.portal-skeleton__field--full {
    grid-column: 1 / -1;
    height: var(--portal-field-height, 2.875rem);
}

.portal-skeleton__form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.portal-skeleton__form-action-btn {
    width: 9rem;
    height: 2.5rem;
}

@media (max-width: 767px) {
    .portal-skeleton__stepper {
        gap: 0.25rem;
    }

    .portal-skeleton__step-label {
        width: 2.5rem;
        height: 0.5rem;
    }

    .portal-skeleton__step-num {
        width: 1.75rem;
        height: 1.75rem;
    }

    .portal-skeleton__form-actions {
        justify-content: stretch;
    }

    .portal-skeleton__form-action-btn {
        width: 100%;
    }
}


a:hover{
    text-decoration: none;
}