/* Home Landing - Business Enterprise Design */
.home-landing-body {
    --hl-primary: #10b981;
    --hl-emerald-600: #059669;
    --hl-emerald-700: #047857;
    --hl-emerald-800: #065f46;
    --hl-emerald-900: #064e3b;
    --hl-bg-dark: #022c22;
    --hl-slate-900: #0f172a;
    --hl-slate-400: #94a3b8;
    --hl-slate-500: #64748b;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.home-emerald-gradient {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top left, var(--hl-emerald-900), var(--hl-bg-dark));
    z-index: -1;
}

.home-landing-inner {
    width: 100%;
    max-width: 56rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.home-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.home-header-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.home-header-icon .material-symbols-outlined {
    font-size: 2.25rem;
    color: var(--hl-primary);
}

.home-header h1 {
    font-family: 'Lexend', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.025em;
    margin: 0;
}

.home-header p {
    font-size: 0.875rem;
    color: rgba(167, 243, 208, 0.6);
    margin: 0;
}

.home-portals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

@media (max-width: 767px) {
    .home-portals { grid-template-columns: 1fr; }
}

.home-portal-card {
    position: relative;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-portal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}

.home-deco-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1.5rem;
    opacity: 0.1;
    transition: opacity 0.3s;
}

.home-portal-card:hover .home-deco-icon { opacity: 0.2; }

.home-deco-icon .material-symbols-outlined {
    font-size: 6rem;
    color: #94a3b8;
}

.home-portal-inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.home-icon-box .material-symbols-outlined {
    font-size: 1.875rem;
    color: var(--hl-primary);
}

.home-portal-card h2 {
    font-family: 'Lexend', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.home-portal-desc {
    font-size: 0.875rem;
    color: var(--hl-slate-400);
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.5;
}

.home-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.home-cta:active { transform: scale(0.98); }

.home-cta-admin {
    background: var(--hl-primary);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
}

.home-cta-admin:hover {
    background: var(--hl-emerald-600);
    color: #fff;
}

.home-cta-store {
    background: var(--hl-emerald-700);
    box-shadow: 0 10px 15px -3px rgba(4, 120, 87, 0.3);
}

.home-cta-store:hover {
    background: var(--hl-emerald-800);
    color: #fff;
}

.home-cta .material-symbols-outlined { font-size: 0.875rem; }

.home-register-wrap {
    width: 100%;
    max-width: 42rem;
}

.home-register-card {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .home-register-card { flex-direction: row; }
}

.home-register-image-wrap {
    background: #fff;
    padding: 0.75rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.home-register-image-wrap .home-register-qr {
    width: 8rem;
    height: 8rem;
    min-width: 8rem;
    min-height: 8rem;
    background: #fff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    padding: 0.5rem;
}

.home-register-image-wrap .home-register-qr canvas,
.home-register-image-wrap .home-register-qr img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.home-register-content {
    flex-grow: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .home-register-content { text-align: left; }
}

.home-register-content h3 {
    font-family: 'Lexend', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.home-register-content p {
    font-size: 0.875rem;
    color: rgba(167, 243, 208, 0.6);
    margin-bottom: 1.5rem;
    max-width: 24rem;
}

.home-register-app-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .home-register-app-row { justify-content: flex-start; }
}

.home-app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .home-app-buttons { justify-content: flex-start; }
}

.home-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    background: transparent;
    border: none;
    text-decoration: none;
}

.home-app-btn:hover {
    opacity: 0.9;
}

.home-app-btn img { height: 2rem; }

.home-footer {
    margin-top: 2rem;
}

.home-footer p {
    font-size: 0.75rem;
    color: rgba(167, 243, 208, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}
