/* ========================================
   ACCUEIL — LE VESTIAIRE DES PRONOS
======================================== */

.home-page,
.home-page * {
    box-sizing: border-box;
}

.home-page {
    --competition-primary: #A3E635;
    --competition-primary-rgb: 163, 230, 53;
    --competition-secondary: #0F172A;
    --competition-secondary-rgb: 15, 23, 42;
    --home-banner-image: none;

    min-height: 100vh;
    color: #ffffff;
}

.home-hero {
    position: relative;

    min-height: 700px;
    overflow: hidden;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    background-image:
        linear-gradient(
            105deg,
            rgba(2, 6, 23, 0.98) 0%,
            rgba(2, 6, 23, 0.92) 42%,
            rgba(var(--competition-secondary-rgb), 0.72) 100%
        ),
        var(--home-banner-image),
        radial-gradient(
            circle at 76% 25%,
            rgba(var(--competition-primary-rgb), 0.16),
            transparent 29%
        ),
        linear-gradient(135deg, #020617, #0f172a);

    background-size: auto, cover, auto, auto;
    background-position: center;
}

.home-hero::before,
.home-hero::after {
    content: "";

    position: absolute;
    border-radius: 50%;

    pointer-events: none;
}

.home-hero::before {
    top: -210px;
    right: -155px;

    width: 520px;
    height: 520px;

    border: 74px solid rgba(
        var(--competition-primary-rgb),
        0.045
    );
}

.home-hero::after {
    bottom: -250px;
    left: 28%;

    width: 420px;
    height: 420px;

    border: 60px solid rgba(
        var(--competition-primary-rgb),
        0.025
    );
}

.home-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 62%,
            #020617 100%
        );

    pointer-events: none;
}

.home-hero-container {
    position: relative;
    z-index: 1;

    width: min(92%, 1360px);
    min-height: 700px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    align-items: center;
    gap: 70px;

    margin: 0 auto;
    padding: 70px 0 90px;
}

.home-hero-copy {
    min-width: 0;
}

.home-hero-eyebrow {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 12px;

    border: 1px solid rgba(
        var(--competition-primary-rgb),
        0.24
    );

    border-radius: 999px;

    background: rgba(
        var(--competition-primary-rgb),
        0.08
    );

    color: var(--competition-primary);

    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.home-hero h1 {
    max-width: 720px;

    margin: 25px 0 0;

    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.25rem, 4.65vw, 5rem);
    font-weight: 400;
    letter-spacing: 0.035em;
    line-height: 0.94;
    text-transform: uppercase;
}

.home-hero h1 span {
    display: block;
    color: var(--competition-primary);
}

.home-hero-text {
    max-width: 650px;

    margin-top: 24px;

    color: #cbd5e1;

    font-size: clamp(1rem, 1.5vw, 1.28rem);
    font-weight: 550;
    line-height: 1.65;
}

.home-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 31px;
}

.home-primary-btn,
.home-secondary-btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 12px 18px;

    border-radius: 12px;

    font-size: 0.86rem;
    font-weight: 900;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        filter 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.home-primary-btn {
    border: 1px solid var(--competition-primary);

    background: var(--competition-primary);
    color: #07111f;

    box-shadow:
        0 12px 28px rgba(
            var(--competition-primary-rgb),
            0.2
        );
}

.home-secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.12);

    background: rgba(255, 255, 255, 0.055);
    color: #f8fafc;
}

.home-primary-btn:hover,
.home-secondary-btn:hover {
    transform: translateY(-2px);
}

.home-primary-btn:hover {
    color: #07111f;
    filter: brightness(1.08);
}

.home-secondary-btn:hover {
    border-color: rgba(
        var(--competition-primary-rgb),
        0.35
    );

    background: rgba(
        var(--competition-primary-rgb),
        0.09
    );

    color: var(--competition-primary);
}

.home-hero-features {
    width: min(100%, 690px);

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;

    margin-top: 29px;
}

.home-hero-feature {
    min-width: 0;

    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;

    padding: 11px 12px;

    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(var(--competition-primary-rgb), 0.07),
            rgba(255, 255, 255, 0.025)
        );

    backdrop-filter: blur(8px);
}

.home-hero-feature > span {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(
        var(--competition-primary-rgb),
        0.2
    );

    border-radius: 10px;

    background: rgba(
        var(--competition-primary-rgb),
        0.09
    );

    color: var(--competition-primary);
}

.home-hero-feature strong,
.home-hero-feature small {
    display: block;
}

.home-hero-feature strong {
    color: #f8fafc;

    font-size: 0.76rem;
    font-weight: 900;
}

.home-hero-feature small {
    margin-top: 3px;

    overflow: hidden;

    color: #94a3b8;

    font-size: 0.61rem;
    font-weight: 700;
    line-height: 1.3;
    text-overflow: ellipsis;
}

/* ========================================
   CONNEXION / TABLEAU RAPIDE
======================================== */

.home-access-card {
    min-width: 0;

    padding: 25px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 23, 42, 0.92),
            rgba(2, 6, 23, 0.96)
        );

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.38),
        0 0 35px rgba(
            var(--competition-primary-rgb),
            0.045
        );

    backdrop-filter: blur(16px);

    scroll-margin-top: 135px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.home-access-card.active-glow {
    border-color: rgba(
        var(--competition-primary-rgb),
        0.64
    );

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.42),
        0 0 0 4px rgba(
            var(--competition-primary-rgb),
            0.09
        ),
        0 0 44px rgba(
            var(--competition-primary-rgb),
            0.2
        );

    transform: translateY(-3px);
}

.home-welcome-heading,
.home-login-heading {
    margin-bottom: 19px;
}

.home-welcome-heading {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-welcome-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: rgba(
        var(--competition-primary-rgb),
        0.1
    );

    color: var(--competition-primary);
}

.home-welcome-heading small,
.home-login-heading small {
    color: var(--competition-primary);

    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.home-welcome-heading h2,
.home-login-heading h2 {
    margin: 4px 0 0;
    color: #f8fafc;
}

.home-welcome-heading h2 {
    font-size: 1.12rem;
}

.home-login-heading h2 {
    font-size: 1.55rem;
}

.home-login-heading p {
    margin-top: 5px;

    color: #94a3b8;

    font-size: 0.78rem;
    line-height: 1.5;
}

.home-user-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;

    margin-bottom: 15px;
}

.home-user-metrics span {
    min-width: 0;

    padding: 10px 7px;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 11px;

    background: rgba(255, 255, 255, 0.03);

    text-align: center;
}

.home-user-metrics strong,
.home-user-metrics small {
    display: block;
}

.home-user-metrics strong {
    color: var(--competition-primary);
    font-size: 1.1rem;
}

.home-user-metrics small {
    margin-top: 3px;

    color: #64748b;

    font-size: 0.57rem;
    font-weight: 800;
    line-height: 1.25;
}

.home-user-actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.home-user-action {
    min-height: 62px;

    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;

    padding: 10px 12px;

    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.035);
    color: #f8fafc;

    text-decoration: none;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.home-user-action > span {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: rgba(
        var(--competition-primary-rgb),
        0.09
    );

    color: var(--competition-primary);
}

.home-user-action strong,
.home-user-action small {
    display: block;
}

.home-user-action strong {
    font-size: 0.82rem;
}

.home-user-action small {
    margin-top: 3px;
    color: #64748b;
    font-size: 0.67rem;
}

.home-user-action > i {
    color: #64748b;
    font-size: 0.7rem;
}

.home-user-action:hover {
    border-color: rgba(
        var(--competition-primary-rgb),
        0.32
    );

    background: rgba(
        var(--competition-primary-rgb),
        0.075
    );

    color: #ffffff;
    transform: translateX(3px);
}

.home-user-action.is-primary {
    border-color: rgba(
        var(--competition-primary-rgb),
        0.34
    );

    background: linear-gradient(
        135deg,
        rgba(var(--competition-primary-rgb), 0.15),
        rgba(var(--competition-secondary-rgb), 0.2)
    );
}

/* Formulaire */

.login-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.login-form .form-group {
    width: 100%;
}

.login-form label {
    display: block;

    margin-bottom: 6px;

    color: #cbd5e1;

    font-size: 0.74rem;
    font-weight: 800;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    min-height: 46px;

    padding: 10px 12px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    outline: none;

    background: rgba(2, 6, 23, 0.72);
    color: #ffffff;

    font: inherit;
    font-size: 0.8rem;
}

.login-form input:focus {
    border-color: var(--competition-primary);

    box-shadow:
        0 0 0 3px rgba(
            var(--competition-primary-rgb),
            0.1
        );
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 42px !important;
}

.password-wrapper > i {
    position: absolute;
    top: 50%;
    right: 14px;

    color: #64748b;

    cursor: pointer;
    transform: translateY(-50%);
}

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.remember-me {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;

    margin: 0 !important;

    cursor: pointer;
}

.remember-me input {
    accent-color: var(--competition-primary);
}

.login-options a {
    color: var(--competition-primary);

    font-size: 0.68rem;
    font-weight: 750;
    text-decoration: none;
}

.login-btn,
.register-btn {
    width: 100%;
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    font: inherit;
    font-size: 0.8rem;
    font-weight: 900;
    text-decoration: none;

    cursor: pointer;
}

.login-btn {
    border: 0;

    background: var(--competition-primary);
    color: #07111f;
}

.register-btn {
    border: 1px solid rgba(255, 255, 255, 0.1);

    background: rgba(255, 255, 255, 0.035);
    color: #f8fafc;
}

.register-separator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.register-separator span {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.register-separator p {
    color: #64748b;
    font-size: 0.65rem;
    white-space: nowrap;
}

.login-error {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    padding: 10px 12px;
    margin-bottom: 14px;

    border: 1px solid rgba(239, 68, 68, 0.28);
    border-radius: 11px;

    background: rgba(239, 68, 68, 0.09);
    color: #fecaca;

    font-size: 0.73rem;
    line-height: 1.4;
}

/* ========================================
   MESSAGES ET POPUP
======================================== */

.account-deleted-message {
    width: min(92%, 920px);

    display: flex;
    align-items: center;
    gap: 14px;

    margin: 25px auto 0;
    padding: 15px 18px;

    border: 1px solid rgba(34, 197, 94, 0.27);
    border-radius: 14px;

    background: rgba(34, 197, 94, 0.09);
    color: #bbf7d0;
}

.account-deleted-message > i {
    font-size: 1.25rem;
}

.account-deleted-message h3 {
    margin: 0;
    font-size: 0.95rem;
}

.account-deleted-message p {
    margin-top: 3px;
    color: #86efac;
    font-size: 0.75rem;
}

.site-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(2, 6, 23, 0.8);

    backdrop-filter: blur(9px);
}

.site-popup {
    position: relative;

    width: min(100%, 480px);

    padding: 32px 27px;

    border: 1px solid rgba(163, 230, 53, 0.3);
    border-radius: 22px;

    background: linear-gradient(145deg, #020617, #0f172a);
    color: #ffffff;

    text-align: center;

    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.site-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;

    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;

    cursor: pointer;
}

.site-popup-icon {
    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    margin: 0 auto 16px;

    border-radius: 17px;

    background: rgba(163, 230, 53, 0.1);
    color: #a3e635;

    font-size: 1.5rem;
}

.site-popup h2 {
    margin-bottom: 10px;
}

.site-popup p {
    color: #94a3b8;
    line-height: 1.55;
}

.site-popup-btn {
    min-height: 44px;

    margin-top: 17px;
    padding: 10px 18px;

    border: 0;
    border-radius: 11px;

    background: #a3e635;
    color: #07111f;

    font-weight: 900;
    cursor: pointer;
}

/* ========================================
   POPUP DE REMERCIEMENT — FONDATEURS
======================================== */

.founder-welcome-overlay,
.founder-welcome-overlay * {
    box-sizing: border-box;
}

.founder-welcome-overlay {
    position: fixed;
    inset: 0;
    z-index: 10020;

    display: grid;
    place-items: center;

    padding: 20px;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(163, 230, 53, 0.10),
            transparent 36rem
        ),
        rgba(2, 6, 23, 0.86);

    backdrop-filter: blur(12px);

    animation: founder-overlay-in 0.25s ease both;
}

.founder-welcome-overlay.is-closing {
    animation: founder-overlay-out 0.22s ease both;
}

.founder-welcome-modal {
    position: relative;

    width: min(100%, 680px);
    max-height: calc(100vh - 40px);
    overflow: auto;

    padding: 31px;

    border: 1px solid rgba(163, 230, 53, 0.26);
    border-radius: 25px;

    background:
        radial-gradient(
            circle at 95% 4%,
            rgba(163, 230, 53, 0.11),
            transparent 21rem
        ),
        radial-gradient(
            circle at 2% 92%,
            rgba(96, 165, 250, 0.08),
            transparent 22rem
        ),
        linear-gradient(
            145deg,
            #07111f,
            #020617 68%
        );

    color: #f8fafc;

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.62),
        0 0 46px rgba(163, 230, 53, 0.07);

    animation: founder-modal-in 0.3s ease both;
}

.founder-welcome-glow {
    position: absolute;
    top: -90px;
    right: -70px;

    width: 230px;
    height: 230px;

    border: 42px solid rgba(163, 230, 53, 0.035);
    border-radius: 50%;

    pointer-events: none;
}

.founder-welcome-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.055);
    color: #cbd5e1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.founder-welcome-close:hover {
    background: rgba(239, 68, 68, 0.11);
    color: #fca5a5;
    transform: rotate(8deg);
}

.founder-welcome-badge {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 7px 11px;

    border: 1px solid rgba(250, 204, 21, 0.25);
    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            rgba(250, 204, 21, 0.12),
            rgba(163, 230, 53, 0.08)
        );

    color: #fde68a;
}

.founder-welcome-badge > i {
    color: #facc15;
}

.founder-welcome-badge small,
.founder-welcome-badge strong {
    display: block;
}

.founder-welcome-badge small {
    font-size: 0.46rem;
    font-weight: 900;
    letter-spacing: 0.09em;
}

.founder-welcome-badge strong {
    margin-top: 1px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.founder-welcome-heading {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: center;
    gap: 15px;

    margin-top: 22px;
    padding-right: 28px;
}

.founder-welcome-trophy {
    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(163, 230, 53, 0.2);
    border-radius: 18px;

    background: rgba(163, 230, 53, 0.09);
    color: #a3e635;

    font-size: 1.45rem;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.founder-welcome-heading p {
    color: #a3e635;

    font-size: 0.57rem;
    font-weight: 900;
    letter-spacing: 0.09em;
}

.founder-welcome-heading h2 {
    margin-top: 4px;

    color: #ffffff;

    font-size: clamp(1.65rem, 4vw, 2.35rem);
    line-height: 1.08;
}

.founder-welcome-message {
    margin-top: 19px;

    color: #cbd5e1;

    font-size: 0.82rem;
    line-height: 1.7;
}

.founder-welcome-message strong {
    color: #a3e635;
}

.founder-welcome-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;

    margin-top: 20px;
}

.founder-welcome-benefits article {
    min-width: 0;

    display: grid;
    grid-template-columns: 41px minmax(0, 1fr);
    align-items: center;
    gap: 10px;

    padding: 12px;

    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 13px;

    background: rgba(255, 255, 255, 0.035);
}

.founder-welcome-benefits article > span {
    width: 41px;
    height: 41px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: rgba(163, 230, 53, 0.09);
    color: #a3e635;
}

.founder-welcome-benefits strong,
.founder-welcome-benefits small {
    display: block;
}

.founder-welcome-benefits strong {
    color: #f8fafc;
    font-size: 0.72rem;
}

.founder-welcome-benefits small {
    margin-top: 3px;

    color: #64748b;

    font-size: 0.58rem;
    line-height: 1.4;
}

.founder-welcome-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    margin-top: 17px;
    padding: 11px 12px;

    border: 1px solid rgba(96, 165, 250, 0.12);
    border-radius: 11px;

    background: rgba(96, 165, 250, 0.055);
    color: #94a3b8;

    font-size: 0.64rem;
    line-height: 1.5;
}

.founder-welcome-note i {
    margin-top: 2px;
    color: #60a5fa;
}

.founder-welcome-actions {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-top: 19px;
}

.founder-welcome-primary,
.founder-welcome-secondary {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 10px 15px;

    border-radius: 11px;

    font: inherit;
    font-size: 0.72rem;
    font-weight: 900;
    text-decoration: none;

    cursor: pointer;
}

.founder-welcome-primary {
    flex: 1;

    border: 1px solid #a3e635;

    background: #a3e635;
    color: #07111f;

    box-shadow:
        0 12px 28px rgba(163, 230, 53, 0.16);
}

.founder-welcome-secondary {
    border: 1px solid rgba(255, 255, 255, 0.1);

    background: rgba(255, 255, 255, 0.04);
    color: #f8fafc;
}

@keyframes founder-overlay-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes founder-overlay-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes founder-modal-in {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media screen and (max-width: 620px) {
    .founder-welcome-overlay {
        padding: 10px;
    }

    .founder-welcome-modal {
        max-height: calc(100vh - 20px);

        padding: 23px 17px 18px;

        border-radius: 20px;
    }

    .founder-welcome-heading {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 11px;

        margin-top: 18px;
        padding-right: 22px;
    }

    .founder-welcome-trophy {
        width: 52px;
        height: 52px;

        border-radius: 15px;

        font-size: 1.15rem;
    }

    .founder-welcome-heading h2 {
        font-size: 1.55rem;
    }

    .founder-welcome-benefits {
        grid-template-columns: 1fr;
    }

    .founder-welcome-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .founder-welcome-primary,
    .founder-welcome-secondary {
        width: 100%;
    }
}

/* ========================================
   RESPONSIVE
======================================== */

@media screen and (max-width: 1100px) {
    .home-hero-container {
        grid-template-columns: minmax(0, 1fr) 370px;
        gap: 40px;
    }
}

@media screen and (max-width: 900px) {
    .home-hero {
        min-height: auto;
    }

    .home-hero-container {
        min-height: auto;

        grid-template-columns: 1fr;
        gap: 36px;

        padding: 55px 0 75px;
    }

    .home-hero-copy {
        text-align: center;
    }

    .home-hero-eyebrow {
        margin: 0 auto;
    }

    .home-hero h1 {
        margin-right: auto;
        margin-left: auto;
    }

    .home-hero-text {
        margin-right: auto;
        margin-left: auto;
    }

    .home-hero-actions {
        justify-content: center;
    }

    .home-hero-features {
        margin-right: auto;
        margin-left: auto;
    }

    .home-access-card {
        width: min(100%, 450px);
        margin: 0 auto;
    }
}

@media screen and (max-width: 600px) {
    .home-hero-container {
        width: 94%;
        padding-top: 40px;
    }

    .home-hero h1 {
        width: 100%;
        max-width: 100%;

        font-size: clamp(2.55rem, 11.4vw, 3.35rem);
        letter-spacing: 0.025em;
        line-height: 0.96;
    }

    .home-hero h1 span {
        margin-top: 0.08em;

        font-size: 0.9em;
        letter-spacing: 0.02em;
        line-height: 0.98;
    }

    .home-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-primary-btn,
    .home-secondary-btn {
        width: 100%;
    }

    .home-hero-features {
        grid-template-columns: 1fr;
    }

    .home-hero-feature {
        text-align: left;
    }

    .home-access-card {
        padding: 19px;
        border-radius: 18px;
    }

    .home-user-metrics {
        grid-template-columns: 1fr;
    }

    .home-user-metrics span {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .home-user-metrics small {
        margin-top: 0;
    }

    .login-options {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-deleted-message {
        align-items: flex-start;
    }
}
