:root {
    --primary-color: #009E6B;
    /* Log in button green */
    --secondary-color: #617085;
    /* Get OTP button slate */
    --accent-color: #4FD1C5;
    /* Input border teal */
    --bg-light: #F8FAFC;
    --text-main: #1A202C;
    --text-muted: #718096;
    --white: #FFFFFF;
    --radius-lg: 40px;
    --radius-md: 12px;
    --shadow-card: 0 10px 25px rgba(0, 0, 0, 0.05);
    --font-family: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Lock auth pages to one viewport — no document scroll (fixed body works with mobile URL bars) */
body.login-page-revamped {
    font-family: var(--font-family);
    background: #fff;
    position: fixed;
    inset: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Fallback then dynamic viewport height where supported */
    min-height: 100vh;
    min-height: 100dvh;
}

.login-container {
    display: flex;
    width: 100%;
    flex: 1;
    min-height: 0;
    max-height: 100%;
    overflow: hidden;
}

/* Left Side: Image */
.login-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: none;
    /* Hidden on mobile */
    min-height: 0;
    align-self: stretch;
}

@media (min-width: 992px) {
    .login-visual {
        display: block;
    }
}

.login-visual img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Event info overlay at bottom of the left image panel */
.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    color: #fff;
}

.event-title {
    font-size: clamp(25px, 2dvh, 31px);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 400;
    opacity: 0.9;
}

.meta-item i {
    font-size: 12px;
    opacity: 0.85;
}

.overlay-divider {
    border: none;
    border-top: 1.5px solid rgba(255, 255, 255, 0.35);
    margin: 0;
}

.overlay-tagline {
    margin-top: 10px;
    font-size: 13px;
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.2px;
    line-height: 1.5;
}

/* Right Side: Form */
.login-form-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F0F2F5;
    /* Background behind the rounded card */
    padding: clamp(6px, 1.25dvh, 24px) clamp(12px, 2.5vw, 20px);
    overflow: hidden;
    min-height: 0;
}

.login-card-revamped {
    background: var(--white);
    width: 100%;
    max-width: min(550px, 100%);
    max-height: 100%;
    border-radius: var(--radius-lg);
    padding: clamp(14px, 2.5dvh, 40px) clamp(18px, 4vw, 60px);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin: 0;
    min-height: 0;
    overflow: hidden;
}

/* Wider registration card (replaces inline max-width) */
.login-card-revamped.login-card--register {
    max-width: min(650px, 100%);
}

/* Form column scrolls only if content exceeds card (no page scroll) */
.login-card-revamped .top-section {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

.login-card-revamped .bottom-section {
    flex-shrink: 0;
}

/* Denser vertical rhythm on registration (more fields) */
body.login-page-revamped.login-page--register .login-card-revamped {
    padding: clamp(10px, 1.8dvh, 32px) clamp(14px, 3.5vw, 48px);
}

body.login-page-revamped.login-page--register .logo-section {
    margin-bottom: clamp(4px, 1dvh, 16px);
}

body.login-page-revamped.login-page--register .welcome-text {
    margin-bottom: clamp(8px, 1.25dvh, 20px);
}

body.login-page-revamped.login-page--register .form-group-custom {
    margin-bottom: clamp(6px, 1dvh, 14px);
}

body.login-page-revamped.login-page--register .form-row {
    gap: clamp(8px, 1.5vw, 16px);
    margin-bottom: clamp(6px, 1dvh, 14px);
}

body.login-page-revamped.login-page--register .resend-otp {
    margin-bottom: clamp(10px, 1.5dvh, 18px);
}

body.login-page-revamped.login-page--register .bottom-section {
    margin-top: clamp(6px, 1dvh, 14px);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group-custom {
    flex: 1;
    margin-bottom: 0;
}

.logo-section {
    text-align: center;
    margin-bottom: clamp(8px, 1.5dvh, 20px);
}

.logo-section img {
    max-height: clamp(34px, 6.5dvh, 50px);
    width: auto;
    height: auto;
}

.app-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -1px;
}

.logo-dot {
    color: #E53E3E;
    /* Red dot in Pixly */
}

.welcome-text {
    text-align: center;
    font-size: clamp(16px, 2.2dvh, 20px);
    font-weight: 600;
    color: #333;
    margin-bottom: clamp(12px, 2dvh, 30px);
}

.form-group-custom {
    margin-bottom: clamp(10px, 1.6dvh, 20px);
}

.form-group-custom label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    margin-left: 4px;
}

/* .input-custom: shared rules in picxly-forms.css; login sizing override there */

/* Auth CTAs: .btn-primary / .btn-secondary in picxly-buttons.css */

body.login-page-revamped .btn-primary,
body.login-page-revamped .btn-secondary {
    padding: clamp(10px, 1.6dvh, 14px);
    font-size: clamp(14px, 1.8dvh, 16px);
}

.otp-note {
    font-size: clamp(11px, 1.5dvh, 13px);
    color: var(--text-muted);
    margin: clamp(6px, 1dvh, 12px) 0;
    text-align: left;
}

.resend-otp {
    display: inline-block;
    font-size: clamp(12px, 1.6dvh, 14px);
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.resend-otp:hover {
    color: #008459;
    text-decoration: underline;
}

.otp-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: clamp(15px, 2.5dvh, 30px);
    min-height: 44px;
}

/* Circular Timer Styling */
.timer-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    padding: 6px 14px 6px 8px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
}

.circular-progress {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) 0deg, #e2e8f0 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.circular-progress::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #fff;
}

#seconds {
    position: relative;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-main);
}

.timer-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

/* Premium Resend Button */
.resend-otp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(0, 158, 107, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.resend-otp:hover {
    background: rgba(0, 158, 107, 0.15);
    transform: translateY(-1px);
    border-color: rgba(0, 158, 107, 0.2);
}

.resend-otp:active {
    transform: translateY(0);
}

.resend-otp i {
    font-size: 12px;
}

.footer-links {
    text-align: center;
    font-size: 15px;
    color: var(--text-muted);
}

/* Guest Access info box (Figma: green-tinted bordered box + green label) */
.guest-access-box {
    border: 1.5px solid #B2DFDB;
    background: #F0FAF7;
    border-radius: 10px;
    padding: 12px 16px;
    text-align: center;
    font-size: clamp(11px, 1.5dvh, 13px);
    color: var(--text-muted);
    line-height: 1.5;
}

.guest-access-title {
    font-weight: 600;
    color: var(--primary-color);
}

.signup-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.back-btn-container {
    display: flex;
    justify-content: center;
    margin-top: clamp(12px, 2dvh, 30px);
}

.back-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #CBD5E0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4A5568;
    transition: all 0.2s;
}

.back-btn:hover {
    background: #F7FAFC;
    border-color: #A0AEC0;
}

/* Validation styling */
.validation-message {
    color: #E53E3E;
    font-size: 13px;
    margin-top: 5px;
}

/* International Mobile Input Component */
.mobile-input-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    overflow: hidden;
}

.mobile-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 158, 107, 0.1);
}

.mobile-prefix {
    background: #F8FAFC;
    color: var(--text-main);
    padding: 0 16px;
    font-weight: 600;
    font-size: 14px;
    height: clamp(44px, 1.8dvh, 52px);
    display: flex;
    align-items: center;
    border-right: 1.5px solid #E2E8F0;
    user-select: none;
}

/* Sizing for registration (denser) */
body.login-page--register .mobile-prefix {
    height: clamp(38px, 1.5dvh, 46px);
}

.mobile-input-wrapper .input-custom {
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    flex: 1;
}

@media (max-width: 576px) {
    .login-card-revamped {
        border-radius: clamp(20px, 6vw, var(--radius-lg));
        padding: clamp(12px, 2dvh, 24px) clamp(14px, 4vw, 22px);
    }

    .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

    .form-row .form-group-custom {
        margin-bottom: clamp(10px, 1.6dvh, 20px);
    }

    body.login-page-revamped.login-page--register .form-row {
        margin-bottom: 0;
    }
}

/* 6-Digit OTP Input Styles */
.otp-input-container {
    display: flex;
    gap: clamp(8px, 2vw, 12px);
    justify-content: center;
    margin: 20px 0;
}

.otp-input-digit {
    width: clamp(40px, 8vw, 54px);
    height: clamp(40px, 8vw, 54px);
    border: 1.5px solid #CBD5E0;
    border-radius: 12px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    background: #fff;
    transition: all 0.2s ease;
}

.otp-input-digit:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 158, 107, 0.1);
    outline: none;
}

.otp-input-digit.is-filled {
    border-color: #A0AEC0;
}

.otp-input-digit.has-error {
    border-color: #E53E3E;
    background-color: #FFF5F5;
}

.timer-label-classy {
    font-size: 14px;
    color: var(--text-muted);
}

.resend-container-classy {
    font-size: 14px;
    color: var(--text-main);
}

.resend-link-classy {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

.resend-link-classy.is-disabled {
    color: #A0AEC0;
    text-decoration: none;
    cursor: not-allowed;
}

/* =============================================================================
   Landing page (mobile-first, BEM). Scoped to body.landing-page.
   Breakpoints: base → 768px tablet → 1024px desktop
   ============================================================================= */

body.landing-page {
    --landing-dark: #0b1221;
    --landing-primary: #00b67a;
    --landing-primary-end: #00d285;
    --landing-primary-solid: #009e6b;
    --landing-text: #1a202c;
    --landing-muted: #718096;
    --landing-border: #edf2f7;
    --landing-radius: 10px;
    --landing-radius-sm: 8px;
    --landing-radius-pill: 20px;
    --landing-space-xs: 0.5rem;
    --landing-space-sm: 1rem;
    --landing-space-md: 1.5rem;
    --landing-space-lg: 2.5rem;
    --landing-space-xl: 4rem;
    /* Mobile layout rhythm (overridden at 768px+ where noted) */
    --landing-gutter: clamp(1rem, 4.5vw, 1.5rem);
    --landing-section-y: clamp(2.35rem, 7vw, 3rem);
    --landing-font: "Poppins", system-ui, sans-serif;
    --landing-gradient: linear-gradient(135deg, #00ff9d 0%, var(--landing-primary-solid) 100%);
    --landing-gradient-figma: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-primary-end) 100%);
    --landing-tap-highlight: transparent;
    font-family: var(--landing-font);
    color: var(--landing-text);
    background: #fff;
    -webkit-tap-highlight-color: var(--landing-tap-highlight);
}

body.landing-page img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* ----- Utilities: spacing ----- */
.landing-page .mt-0 {
    margin-top: 0;
}

.landing-page .mb-0 {
    margin-bottom: 0;
}

.landing-page .mt-sm {
    margin-top: var(--landing-space-sm);
}

.landing-page .mb-sm {
    margin-bottom: var(--landing-space-sm);
}

.landing-page .mt-md {
    margin-top: var(--landing-space-md);
}

.landing-page .mb-md {
    margin-bottom: var(--landing-space-md);
}

.landing-page .mt-lg {
    margin-top: var(--landing-space-lg);
}

.landing-page .mb-lg {
    margin-bottom: var(--landing-space-lg);
}

.landing-page .mt-xl {
    margin-top: var(--landing-space-xl);
}

.landing-page .mb-xl {
    margin-bottom: var(--landing-space-xl);
}

.landing-page .section {
    padding: var(--landing-section-y) max(var(--landing-gutter), env(safe-area-inset-right)) var(--landing-section-y) max(var(--landing-gutter), env(safe-area-inset-left));
    text-align: center;
}

.landing-page .section__lead {
    color: var(--landing-muted);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 38rem;
    margin-top: 0.25rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ----- Buttons & form primitives ----- */
.landing-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    padding: 0.75rem 1.25rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border-radius: var(--landing-radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.landing-page .btn:active {
    transform: scale(0.98);
}

.landing-page .btn--primary {
    background: var(--picxly-btn-primary-bg, var(--landing-primary-solid));
    color: #fff;
    border-color: transparent;
    box-shadow: var(--picxly-btn-primary-shadow, 0 4px 14px rgba(0, 182, 122, 0.35));
}

.landing-page .btn--primary:hover,
.landing-page .btn--primary:focus-visible {
    background: var(--picxly-btn-primary-hover-bg, #008459);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 158, 107, 0.35);
}

/* Marketing “secondary” = outline (same as app .btn-outline tokens) */
.landing-page .btn--secondary {
    background: transparent;
    color: var(--picxly-btn-outline-text, #4a5568);
    border-color: var(--picxly-btn-outline-border, #e2e8f0);
}

.landing-page .btn--secondary:hover,
.landing-page .btn--secondary:focus-visible {
    background: var(--picxly-btn-outline-hover-bg, #f8fafc);
    border-color: #cbd5e0;
    color: #2d3748;
}

.landing-page .btn--ghost {
    background: transparent;
    color: #4a5568;
    border-color: transparent;
    min-height: 2.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.landing-page .btn--ghost:hover,
.landing-page .btn--ghost:focus-visible {
    color: var(--landing-primary-solid);
}

.landing-page .btn--lg {
    min-height: 3rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}

.landing-page .btn--block {
    width: 100%;
}

.landing-page .btn--light {
    background: #fff;
    color: var(--landing-primary-solid);
    border-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.landing-page .btn--light:hover,
.landing-page .btn--light:focus-visible {
    background: #f8fafc;
    color: #008459;
}

.landing-page .btn--nav {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    min-height: 2.5rem;
}

/* ----- Typography ----- */
.landing-page .section-title {
    font-size: clamp(1.75rem, 5vw, 2.625rem);
    font-weight: 700;
    color: var(--landing-text);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 0.75rem;
}

.landing-page .section-title__accent {
    color: var(--landing-primary-solid);
}

.landing-page .badge {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
    padding: 0.4rem 1.1rem;
    border-radius: var(--landing-radius-pill);
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.35;
    box-sizing: border-box;
}

.landing-page .badge--mint {
    background: #e6fffa;
    color: #276749;
    border: 1px solid rgba(49, 151, 149, 0.2);
}

.landing-page .badge--light {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

/* ----- Site header ----- */
.landing-page .landing-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.75rem;
    row-gap: 0;
    padding: 0.75rem max(var(--landing-gutter), env(safe-area-inset-left)) 0.75rem max(var(--landing-gutter), env(safe-area-inset-right));
    background: #fff;
    border-bottom: 1px solid #f0f2f5;
}

.landing-page .landing-header__leading {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
}

.landing-page .landing-header__brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.landing-page .landing-header__brand img {
    height: 2.25rem;
    width: auto;
}

.landing-page .landing-header__toggle {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid #e2e8f0;
    border-radius: var(--landing-radius-sm);
    background: #fff;
    color: var(--landing-text);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.landing-page .landing-header__toggle:hover,
.landing-page .landing-header__toggle:focus-visible {
    background: #f8fafc;
    border-color: #cbd5e0;
}

.landing-page .landing-header__toggle:active {
    transform: scale(0.96);
}

.landing-page .landing-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    padding-top: 0.875rem;
    margin-top: 0.625rem;
    border-top: 1px solid #f0f2f5;
}

.landing-page .landing-header.is-open .landing-nav {
    display: flex;
}

.landing-page .landing-header__actions {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    gap: 0.625rem;
    padding-top: 0.875rem;
    padding-bottom: 0.25rem;
}

.landing-page .landing-header.is-open .landing-header__actions {
    display: flex;
}

.landing-page .landing-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.landing-page .landing-nav__link {
    display: block;
    padding: 0.625rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: #4a5568;
    text-decoration: none;
    border-radius: var(--landing-radius-sm);
}

.landing-page .landing-nav__link:hover,
.landing-page .landing-nav__link:focus-visible {
    color: var(--landing-primary-solid);
}

.landing-page .landing-header__actions .btn {
    width: 100%;
}

/* ----- Hero ----- */
.landing-page .hero {
    padding: clamp(1.25rem, 4vw, 1.75rem) max(var(--landing-gutter), env(safe-area-inset-right)) var(--landing-section-y) max(var(--landing-gutter), env(safe-area-inset-left));
    text-align: center;
    max-width: 75rem;
    margin: 0 auto;
}

.landing-page .hero__title {
    font-size: clamp(1.875rem, 6vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--landing-text);
    margin-bottom: 0.875rem;
}

.landing-page .hero__title-accent {
    color: var(--landing-primary-solid);
}

.landing-page .hero__desc {
    font-size: 1rem;
    color: var(--landing-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.landing-page .hero__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
    margin-bottom: 1.75rem;
    width: 100%;
    max-width: min(22rem, 100%);
    margin-left: auto;
    margin-right: auto;
}

.landing-page .hero__cta-primary,
.landing-page .hero__cta-secondary {
    width: 100%;
}

.landing-page .hero__gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
    margin-top: 1.25rem;
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.landing-page .hero__figure {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(11, 18, 33, 0.1);
    aspect-ratio: 3 / 4;
    max-height: min(56vh, 22rem);
    background: #f0f2f5;
}

.landing-page .hero__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

.landing-page .hero__figure:active img,
.landing-page .hero__figure:focus-within img {
    transform: scale(1.02);
}

@media (hover: hover) {
    .landing-page .hero__figure:hover img {
        transform: scale(1.03);
    }
}

/* ----- Features ----- */
.landing-page .features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
    max-width: 75rem;
    margin: 1.25rem auto 0;
}

.landing-page .feature-card {
    background: #fff;
    padding: 1.125rem 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid var(--landing-border);
    text-align: left;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.landing-page .feature-card:active {
    transform: scale(0.99);
}

@media (hover: hover) {
    .landing-page .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
        border-color: #e2e8f0;
    }
}

.landing-page .feature-card__icon {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
    font-size: 1.25rem;
    color: #fff;
}

.landing-page .feature-card__icon--blue {
    background: #4299e1;
}

.landing-page .feature-card__icon--purple {
    background: #9f7aea;
}

.landing-page .feature-card__icon--green {
    background: #48bb78;
}

.landing-page .feature-card__icon--orange {
    background: #ed8936;
}

.landing-page .feature-card__icon--yellow {
    background: #ecc94b;
}

.landing-page .feature-card__icon--cyan {
    background: #38b2ac;
}

.landing-page .feature-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.landing-page .feature-card__text {
    font-size: 0.9375rem;
    color: var(--landing-muted);
    line-height: 1.6;
}

/* ----- Promo / value banner (gradient) ----- */
.landing-page .promo-banner {
    background: var(--landing-gradient-figma);
    padding: var(--landing-section-y) max(var(--landing-gutter), env(safe-area-inset-right)) var(--landing-section-y) max(var(--landing-gutter), env(safe-area-inset-left));
    color: #fff;
    text-align: center;
}

.landing-page .promo-banner__title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.landing-page .promo-banner__desc {
    font-size: 1rem;
    opacity: 0.92;
    max-width: 50rem;
    margin: 0 auto 1.25rem;
    line-height: 1.6;
}

.landing-page .promo-banner__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 75rem;
    margin: 0 auto;
}

.landing-page .promo-banner__item-title {
    font-weight: 700;
    margin-bottom: 0.625rem;
    font-size: 1.0625rem;
}

.landing-page .promo-banner__item-text {
    font-size: 0.875rem;
    opacity: 0.88;
    line-height: 1.55;
}

.landing-page .promo-banner__icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--landing-radius-sm);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.875rem;
    font-size: 1.25rem;
}

/* ----- Workflow ----- */
.landing-page .workflow {
    padding: var(--landing-section-y) max(var(--landing-gutter), env(safe-area-inset-right)) var(--landing-section-y) max(var(--landing-gutter), env(safe-area-inset-left));
    background: #fdfdfd;
    text-align: center;
}

.landing-page .workflow__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
    max-width: 75rem;
    margin: 1.25rem auto 0;
}

.landing-page .workflow-card {
    background: #fff;
    padding: 1.125rem 1.25rem;
    border-radius: 0.75rem;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--landing-border);
}

.landing-page .workflow-card__number {
    position: absolute;
    top: var(--landing-space-md);
    right: var(--landing-space-md);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    color: #edf2f7;
    line-height: 1;
    pointer-events: none;
}

.landing-page .workflow-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--landing-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 0.875rem;
    font-size: 1.125rem;
}

.landing-page .workflow__cta {
    margin-top: 1.75rem;
    text-align: center;
}

.landing-page .workflow__note {
    margin-top: var(--landing-space-sm);
    font-size: 0.8125rem;
    color: var(--landing-muted);
}

/* ----- Dark CTA band ----- */
.landing-page .cta-band {
    background: var(--landing-dark);
    padding: var(--landing-section-y) max(var(--landing-gutter), env(safe-area-inset-right)) var(--landing-section-y) max(var(--landing-gutter), env(safe-area-inset-left));
    text-align: center;
    color: #fff;
}

.landing-page .cta-band__title {
    font-size: clamp(1.5rem, 4vw, 2.625rem);
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.landing-page .cta-band__desc {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 1.25rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* ----- Use cases ----- */
.landing-page .use-cases__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
    max-width: 75rem;
    margin: 1.25rem auto 0;
}

.landing-page .usecase-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--landing-border);
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.landing-page .usecase-card:active {
    transform: scale(0.99);
}

@media (hover: hover) {
    .landing-page .usecase-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }
}

.landing-page .usecase-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
}

.landing-page .usecase-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landing-page .usecase-card__badge {
    position: absolute;
    top: 0.9375rem;
    right: 0.9375rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--landing-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.landing-page .usecase-card__badge--pink {
    background: #ff58a2;
}

.landing-page .usecase-card__badge--orange {
    background: #ed8936;
}

.landing-page .usecase-card__badge--purple {
    background: #9f7aea;
}

.landing-page .usecase-card__badge--blue {
    background: #4299e1;
}

.landing-page .usecase-card__badge--green {
    background: #48bb78;
}

.landing-page .usecase-card__badge--teal {
    background: #38b2ac;
}

.landing-page .usecase-card__body {
    padding: 1rem 1.125rem;
}

.landing-page .usecase-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.landing-page .usecase-card__text {
    font-size: 0.875rem;
    color: var(--landing-muted);
    line-height: 1.5;
}

/* ----- Future / AI ----- */
.landing-page .future {
    background: var(--landing-gradient-figma);
    padding: var(--landing-section-y) max(var(--landing-gutter), env(safe-area-inset-right)) var(--landing-section-y) max(var(--landing-gutter), env(safe-area-inset-left));
    color: #fff;
    text-align: center;
}

.landing-page .future__title {
    font-size: clamp(1.5rem, 4vw, 2.625rem);
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.landing-page .future__desc {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 40rem;
    margin: 0 auto 1.25rem;
    line-height: 1.6;
}

.landing-page .future__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625rem;
    max-width: 75rem;
    margin: 0 auto 1rem;
}

.landing-page .future-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 0.875rem 0.625rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    text-align: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.landing-page .future-card:active {
    transform: scale(0.98);
}

@media (hover: hover) {
    .landing-page .future-card:hover {
        background: rgba(255, 255, 255, 0.2);
    }
}

.landing-page .future-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--landing-radius-sm);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--landing-space-sm);
    font-size: 1.125rem;
}

.landing-page .future-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.landing-page .future-card__text {
    font-size: 0.8125rem;
    opacity: 0.88;
    line-height: 1.5;
}

.landing-page .future__footer {
    margin-top: 1.25rem;
}

.landing-page .future__footer-lead {
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* ----- Conversion / final CTA block ----- */
.landing-page .conversion {
    padding: var(--landing-section-y) max(var(--landing-gutter), env(safe-area-inset-right)) var(--landing-section-y) max(var(--landing-gutter), env(safe-area-inset-left));
    background: #fff;
    text-align: center;
}

.landing-page .conversion__title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.landing-page .conversion__lead {
    color: var(--landing-muted);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 44rem;
    margin: 0 auto 1.25rem;
}

.landing-page .conversion__checklist {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 1.25rem;
}

.landing-page .conversion__check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4a5568;
}

.landing-page .conversion__check i {
    color: var(--landing-primary-solid);
}

.landing-page .conversion__actions {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    align-items: stretch;
    width: 100%;
    max-width: min(22rem, 100%);
    margin: 0 auto 1rem;
}

.landing-page .conversion__meta {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    color: var(--landing-muted);
    font-size: 0.8125rem;
}

/* ----- Footer ----- */
.landing-page .landing-footer {
    background: var(--landing-dark);
    padding: var(--landing-section-y) max(var(--landing-gutter), env(safe-area-inset-right)) 1.75rem max(var(--landing-gutter), env(safe-area-inset-left));
    color: #94a3b8;
}

.landing-page .landing-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    max-width: 81rem;
    margin-left: auto;
    margin-right: auto;
}

.landing-page .landing-footer__brand {
    display: block;
    height: 2.1875rem;
    width: auto;
    max-width: none;
}

.landing-page .landing-footer__about {
    margin: 0.875rem 0 1rem;
    line-height: 1.6;
    max-width: 20rem;
    font-size: 0.9375rem;
}

.landing-page .landing-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.landing-page .landing-footer__social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--landing-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.landing-page .landing-footer__social-link:hover,
.landing-page .landing-footer__social-link:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.landing-page .landing-footer__social-link:active {
    transform: scale(0.95);
}

.landing-page .landing-footer__heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

/* Footer accordion (mobile / tablet < 1024px) */
.landing-page .landing-footer__col--brand+.landing-footer__col--nav-group {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 0.5rem;
    margin-top: 0.125rem;
}

.landing-page .landing-footer__col--nav-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.landing-page .landing-footer__col--nav-group:last-child {
    border-bottom: none;
}

.landing-page .landing-footer__accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 0;
    margin: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: inherit;
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s ease;
}

.landing-page .landing-footer__accordion-btn:hover,
.landing-page .landing-footer__accordion-btn:focus-visible {
    color: #fff;
}

.landing-page .landing-footer__accordion-btn:focus-visible {
    outline: 2px solid var(--landing-primary-solid);
    outline-offset: 2px;
}

.landing-page .landing-footer__accordion-btn:active {
    transform: scale(0.99);
}

.landing-page .landing-footer__accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    color: #cbd5e1;
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.landing-page .landing-footer__col--nav-group.is-open .landing-footer__accordion-icon {
    transform: rotate(180deg);
}

@media (max-width: 1023px) {
    .landing-page .landing-footer__panel {
        display: none;
        padding-bottom: 0.625rem;
    }

    .landing-page .landing-footer__col--nav-group.is-open .landing-footer__panel {
        display: block;
    }
}

.landing-page .landing-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.landing-page .landing-footer__list li {
    margin-bottom: 0.75rem;
}

.landing-page .landing-footer__col--nav-group.is-open .landing-footer__list li:last-child {
    margin-bottom: 0;
}

.landing-page .landing-footer__list a {
    text-decoration: none;
    color: inherit;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.landing-page .landing-footer__list a:hover,
.landing-page .landing-footer__list a:focus-visible {
    color: var(--landing-primary-solid);
}

.landing-page .landing-footer__bottom {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--landing-space-md);
    align-items: center;
    text-align: center;
    font-size: 0.875rem;
    max-width: 81rem;
    margin: 0 auto;
}

.landing-page .landing-footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--landing-space-md);
}

.landing-page .landing-footer__legal a {
    color: inherit;
    text-decoration: none;
}

.landing-page .landing-footer__legal a:hover,
.landing-page .landing-footer__legal a:focus-visible {
    color: #fff;
}

/* ----- Tablet: 768px ----- */
@media (min-width: 768px) {
    .landing-page .section {
        padding-top: var(--landing-space-xl);
        padding-bottom: var(--landing-space-xl);
        padding-left: max(var(--landing-space-md), env(safe-area-inset-left));
        padding-right: max(var(--landing-space-md), env(safe-area-inset-right));
    }

    .landing-page .hero {
        padding-top: var(--landing-space-lg);
        padding-bottom: var(--landing-space-xl);
        padding-left: max(var(--landing-space-md), env(safe-area-inset-left));
        padding-right: max(var(--landing-space-md), env(safe-area-inset-right));
    }

    .landing-page .promo-banner,
    .landing-page .workflow,
    .landing-page .cta-band,
    .landing-page .future,
    .landing-page .conversion {
        padding-top: var(--landing-space-xl);
        padding-bottom: var(--landing-space-xl);
        padding-left: max(var(--landing-space-md), env(safe-area-inset-left));
        padding-right: max(var(--landing-space-md), env(safe-area-inset-right));
    }

    .landing-page .landing-footer {
        padding-top: var(--landing-space-xl);
        padding-bottom: var(--landing-space-lg);
        padding-left: max(var(--landing-space-md), env(safe-area-inset-left));
        padding-right: max(var(--landing-space-md), env(safe-area-inset-right));
    }

    .landing-page .landing-footer__grid {
        gap: var(--landing-space-lg);
        margin-bottom: var(--landing-space-xl);
    }

    .landing-page .features__grid,
    .landing-page .workflow__grid,
    .landing-page .use-cases__grid {
        gap: var(--landing-space-md);
        margin-top: var(--landing-space-lg);
    }

    .landing-page .feature-card,
    .landing-page .workflow-card {
        padding: var(--landing-space-md);
    }

    .landing-page .feature-card__icon,
    .landing-page .workflow-card__icon {
        margin-bottom: var(--landing-space-md);
    }

    .landing-page .workflow__cta {
        margin-top: var(--landing-space-xl);
    }

    .landing-page .future__grid {
        gap: var(--landing-space-sm);
    }

    .landing-page .future-card {
        padding: var(--landing-space-md) var(--landing-space-sm);
    }

    .landing-page .usecase-card__body {
        padding: var(--landing-space-md);
    }

    .landing-page .hero__desc {
        margin-bottom: var(--landing-space-lg);
    }

    .landing-page .section-title {
        margin-bottom: var(--landing-space-sm);
    }

    .landing-page .badge {
        margin-bottom: var(--landing-space-md);
    }

    .landing-page .hero__actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        max-width: 40rem;
        margin-bottom: var(--landing-space-xl);
        gap: 0.75rem 1rem;
    }

    .landing-page .hero__cta-primary {
        flex: 1 1 12rem;
        min-width: 10rem;
        width: auto;
    }

    .landing-page .hero__cta-secondary {
        flex: 1 1 9rem;
        min-width: 8rem;
        width: auto;
    }

    .landing-page .hero__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
        margin-top: var(--landing-space-lg);
    }

    .landing-page .hero__figure {
        max-height: min(50vh, 22rem);
    }

    .landing-page .hero__figure:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: min(100%, 20rem);
        margin-left: auto;
        margin-right: auto;
    }

    .landing-page .features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-page .promo-banner__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--landing-space-md);
    }

    .landing-page .workflow__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-page .use-cases__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-page .future__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .landing-page .conversion__checklist {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--landing-space-md);
        margin-bottom: var(--landing-space-lg);
    }

    .landing-page .conversion__actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        max-width: none;
        gap: var(--landing-space-sm);
        margin-bottom: var(--landing-space-md);
    }

    .landing-page .conversion__actions .btn {
        width: auto;
    }

    .landing-page .conversion__meta {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--landing-space-md);
    }

    .landing-page .landing-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ----- Desktop: 1024px ----- */
@media (min-width: 1024px) {

    /* Equal flex sides so .landing-nav stays visually centered in the bar */
    .landing-page .landing-header {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        padding: 1.25rem clamp(1.5rem, 5vw, 5rem);
        column-gap: var(--landing-space-md);
    }

    .landing-page .landing-header__leading {
        flex: 1 1 0;
        min-width: 0;
        grid-column: auto;
        grid-row: auto;
        justify-content: flex-start;
    }

    .landing-page .landing-header__toggle {
        display: none;
    }

    .landing-page .landing-nav {
        flex: 0 0 auto;
        grid-column: auto;
        grid-row: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding-top: 0;
        margin-top: 0;
        border-top: none;
    }

    .landing-page .landing-header__actions {
        flex: 1 1 0;
        min-width: 0;
        grid-column: auto;
        grid-row: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 0.9375rem;
        padding-top: 0;
    }

    .landing-page .landing-header__actions .btn {
        width: auto;
    }

    .landing-page .landing-nav__list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: clamp(1.25rem, 2.5vw, 2.5rem);
    }

    .landing-page .landing-nav__link {
        padding: 0.25rem 0;
        font-size: 0.9375rem;
    }

    .landing-page .hero {
        padding-top: var(--landing-space-xl);
        padding-bottom: var(--landing-space-xl);
        padding-left: clamp(1rem, 4vw, 2rem);
        padding-right: clamp(1rem, 4vw, 2rem);
    }

    .landing-page .hero__desc {
        font-size: 1.125rem;
    }

    .landing-page .hero__actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        max-width: none;
        gap: 1rem;
    }

    .landing-page .hero__cta-primary {
        flex: 0 1 auto;
        width: auto;
        min-width: 11rem;
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }

    .landing-page .hero__cta-secondary {
        flex: 0 1 auto;
        width: auto;
        min-width: 9rem;
    }

    .landing-page .hero__gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5625rem;
        align-items: stretch;
    }

    .landing-page .hero__figure {
        max-height: none;
        min-height: min(30rem, 52vh);
        height: min(30rem, 52vh);
        aspect-ratio: auto;
        border-radius: 12px;
    }

    .landing-page .hero__figure:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }

    .landing-page .features__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.875rem;
    }

    .landing-page .feature-card {
        padding: 2.5rem;
    }

    .landing-page .workflow__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .landing-page .workflow-card {
        padding: 1.875rem;
    }

    .landing-page .use-cases__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.875rem;
    }

    .landing-page .future__grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.9375rem;
    }

    .landing-page .future-card {
        padding: 1.875rem 0.9375rem;
    }

    .landing-page .landing-footer {
        padding: 6.25rem clamp(2rem, 5vw, 5rem) 3.75rem;
    }

    .landing-page .landing-footer__grid {
        grid-template-columns: 2.5fr repeat(4, minmax(0, 1fr));
        gap: 3.125rem;
        align-items: start;
    }

    .landing-page .landing-footer__col--brand+.landing-footer__col--nav-group {
        border-top: none;
        margin-top: 0;
        padding-top: 0;
    }

    .landing-page .landing-footer__col--nav-group {
        border-bottom: none;
    }

    .landing-page .landing-footer__accordion-btn {
        pointer-events: none;
        cursor: default;
        width: 100%;
        padding: 0;
        margin-bottom: var(--landing-space-md);
    }

    .landing-page .landing-footer__accordion-btn:active {
        transform: none;
    }

    .landing-page .landing-footer__accordion-icon {
        display: none;
    }

    .landing-page .landing-footer__panel {
        display: block !important;
        padding-bottom: 0;
    }

    .landing-page .landing-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: center;
    }

    .landing-page .landing-footer__legal {
        justify-content: flex-end;
    }
}

/* Auth pages — former inline <style> (login / register) */
body.login-page-revamped .validation-summary-errors ul {
    list-style: none;
    padding: 0;
}

body.login-page-revamped .text-danger {
    color: #E53E3E;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

body.login-page-revamped .otp-reveal-section {
    display: none;
    margin-top: clamp(8px, 1.5dvh, 20px);
}

body.login-page-revamped .validation-message.is-hidden {
    display: none;
}

body.login-page-revamped .login-hidden-field-group {
    display: none;
}

/* =============================================================================
   Global Modern Loader
   ============================================================================= */
.picxly-loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.picxly-loader-content {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.picxly-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #E2E8F0;
    border-top: 4px solid var(--primary-color, #009E6B);
    border-radius: 50%;
    animation: picxly-spin 0.8s linear infinite;
}

.picxly-loader-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1A202C;
    margin: 0;
}

@keyframes picxly-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}