html,
body {
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.navbar {
    backdrop-filter: blur(12px);
    background: rgba(15, 23, 42, 0.85) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

main.container,
main .container {
    max-width: 1100px;
}

.card {
    border: none;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06);

    transition: all .25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.10);
}

.profile-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.12);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

footer {
    background: transparent !important;
}

.profile-name {
    margin-top: 20px;

    font-size: 2rem;
    font-weight: 700;

    color: #0f172a;
}

.profile-job {
    font-size: 1.1rem;
    color: #334155;

    margin-top: 6px;
}

.profile-unit {
    color: #64748b;
    margin-top: 4px;
}

.profile-body {
    padding: 30px;
}

.info-item {
    padding: 18px 0;

    border-bottom: 1px solid #e2e8f0;
}

.info-item:last-child {
    border-bottom: none;
}

.label {
    font-size: 0.9rem;
    color: #64748b;

    margin-bottom: 6px;
}

.profile-footer {
    padding: 10px 30px 40px;
}

.qr-code {
    width: 130px;
    height: 130px;

    border-radius: 18px;

    background: white;
    padding: 10px;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.08);
}

.qr-text {
    margin-top: 12px;

    color: #64748b;
    font-size: 0.95rem;
}

.profile-card::before {
    content: "";

    position: absolute;
    inset: -2px;

    border-radius: 32px;

    background:
        linear-gradient(135deg,
            rgba(59, 130, 246, .18),
            rgba(14, 165, 233, .18),
            rgba(99, 102, 241, .18));

    z-index: -1;

    filter: blur(20px);
}

body {
    font-family: 'Inter', sans-serif;

    background:
        radial-gradient(circle at top left,
            rgba(59, 130, 246, 0.22) 0%,
            transparent 55%),

        radial-gradient(circle at bottom right,
            rgba(14, 165, 233, 0.18) 0%,
            transparent 55%),

        linear-gradient(135deg,
            #081120 0%,
            #0f172a 35%,
            #111827 70%,
            #1e293b 100%);

    background-attachment: fixed;

    color: white;
    overflow-x: hidden;

    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 72px;

    max-width: 1280px;
    margin: 0 auto;

    padding: 100px 32px 80px;
    padding-inline: 32px;
}

.hero-left {
    width: 100%;
    max-width: 580px;
    flex-shrink: 0;
}

.hero-right {
    width: 420px;
    flex-shrink: 0;

    display: flex;
    justify-content: center;
    position: relative;
}

.hero-name {
    font-size: clamp(2.8rem, 5vw, 4.5rem);

    font-weight: 800;
    line-height: 1.05;

    margin-top: 20px;

    word-break: break-word;

    max-width: 12ch;
}

.hero-job {

    font-size: 1.5rem;

    color: #cbd5e1;

    margin-top: 18px;
}

.hero-unit {

    color: #94a3b8;

    margin-top: 10px;

    font-size: 1.1rem;
}

.hero-description {

    margin-top: 30px;

    font-size: 1.1rem;

    line-height: 1.8;

    color: #cbd5e1;

    max-width: 540px;
}

.verified-badge {

    display: inline-flex;
    align-items: center;

    background:
        rgba(34, 197, 94, .18);

    border:
        1px solid rgba(34, 197, 94, .4);

    color: #86efac;

    padding:
        10px 18px;

    border-radius: 999px;

    font-weight: 600;

    backdrop-filter: blur(12px);
}

.hero-buttons {

    display: flex;
    gap: 18px;

    margin-top: 40px;
}

.btn-primary-custom {

    background: white;
    color: #111827;

    padding:
        16px 28px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 700;

    transition: .25s ease;
}

.btn-primary-custom:hover {

    transform: translateY(-2px);

    color: #111827;
}

.btn-secondary-custom {

    border:
        1px solid rgba(255, 255, 255, .35);

    color: white;

    padding:
        16px 28px;

    border-radius: 999px;

    text-decoration: none;

    backdrop-filter: blur(12px);
}

.photo-card {

    width: min(32vw, 420px);
    aspect-ratio: 4 / 5;

    height: auto;

    border-radius: 40px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, .06);

    backdrop-filter: blur(18px);

    border:
        1px solid rgba(255, 255, 255, .08);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .45);

    position: relative;
}

.hero-photo {

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top;
}

.qr-floating {
    left: 360px;
    bottom: 440px;
    transform: translate(-20%, 20%);
}

.qr-floating {

    position: absolute;

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter: blur(18px);

    padding: 18px;

    border-radius: 24px;

    border:
        1px solid rgba(255, 255, 255, .1);

    text-align: center;
}

.qr-code {

    width: 120px;
    height: 120px;

    border-radius: 16px;

    background: white;
    padding: 8px;
}

.qr-text {

    margin-top: 10px;

    color: #cbd5e1;

    font-size: .95rem;
}

.hero-info {

    margin-top: 50px;

    display: grid;
    gap: 18px;
}

.info-box {

    background:
        rgba(255, 255, 255, .05);

    border:
        1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(12px);

    border-radius: 24px;

    padding: 22px 24px;
}

.label {

    color: #94a3b8;

    font-size: .9rem;
}

.value {

    margin-top: 6px;

    font-size: 1.1rem;
    font-weight: 700;
}

@keyframes slideDownFade {

    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-left {
    animation: slideDownFade .9s ease;
}

.hero-right {
    animation: slideDownFade 1.1s ease;
}

.info-box {
    animation: slideDownFade 1.2s ease;
}

@media (max-width: 992px) {

    .hero-section {

        flex-direction: column-reverse;

        text-align: center;

        gap: 50px;

        padding:
            140px 24px 80px;
    }

    .hero-left,
    .hero-right {

        width: 100%;
        max-width: 100%;
    }

    .hero-name {

        font-size: 2.8rem;
    }

    .hero-job {

        font-size: 1.2rem;
    }

    .hero-description {

        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {

        justify-content: center;
        flex-wrap: wrap;
    }

    .qr-floating {

        position: relative;

        left: auto;
        bottom: auto;

        margin-top: 20px;
    }

    .hero-info {

        text-align: left;
    }
}

footer {

    background:
        rgba(255, 255, 255, .04) !important;

    backdrop-filter: blur(14px);

    border-top:
        1px solid rgba(255, 255, 255, .08);

    color: #94a3b8 !important;
}

footer .container {

    display: flex;
    justify-content: space-between;
    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}

footer a {

    color: #cbd5e1;
    text-decoration: none;
}

footer a:hover {

    color: white;
}

.navbar {

    background:
        rgba(15, 23, 42, .72) !important;

    backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(255, 255, 255, .06);

    padding:
        14px 0;
}

body::before {

    content: "";

    position: fixed;

    width: 800px;
    height: 800px;

    background:
        rgba(59, 130, 246, .18);

    filter: blur(120px);

    top: -100px;
    right: -100px;

    z-index: -1;
}

body::after {

    content: "";

    position: fixed;

    width: 700px;
    height: 700px;

    background:
        rgba(14, 165, 233, .12);

    filter: blur(120px);

    bottom: -100px;
    left: -100px;

    z-index: -1;
}

.custom-footer {
    padding:
        8px 8%;

    background:
        rgba(255, 255, 255, .04);

    backdrop-filter: blur(18px);

    border-top:
        1px solid rgba(255, 255, 255, .08);
}

.footer-content {

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}

.footer-left,
.footer-right {

    display: flex;
    flex-direction: column;

    gap: 6px;
}

.footer-right {

    text-align: right;
}

.footer-logo {

    display: flex;
    align-items: center;

    gap: 10px;

    color: white;

    font-weight: 700;

    font-size: 1.1rem;
}

.footer-copy,
.footer-team {

    color: #94a3b8;

    font-size: .95rem;
}

.footer-link {

    color: #cbd5e1;

    text-decoration: none;

    transition: .2s ease;
}

.footer-link:hover {

    color: white;
}

@media (max-width: 768px) {

    .footer-content {

        flex-direction: column;

        text-align: center;
    }

    .footer-right {

        text-align: center;
    }

    .footer-logo {

        justify-content: center;
    }
}

.landing-page {

    max-width: 1200px;
    margin: 0 auto;

    padding:
        120px 24px 80px;
}

.landing-hero {

    text-align: center;
}

.hero-badge {

    display: inline-block;

    padding:
        10px 18px;

    border-radius: 999px;

    background:
        rgba(59, 130, 246, .15);

    border:
        1px solid rgba(59, 130, 246, .35);

    color: #93c5fd;

    font-weight: 600;
}

.landing-title {

    margin-top: 30px;

    font-size: clamp(3rem, 7vw, 5.5rem);

    font-weight: 800;

    line-height: 1.05;
}

.landing-title span {

    display: block;

    color: #60a5fa;
}

.landing-description {

    max-width: 760px;

    margin:
        30px auto 0;

    font-size: 1.2rem;

    line-height: 1.8;

    color: #cbd5e1;
}

.landing-buttons {

    display: flex;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;

    margin-top: 50px;
}

.btn-main {

    background: white;
    color: #111827;

    padding:
        16px 28px;

    border-radius: 999px;

    font-weight: 700;

    text-decoration: none;
}

.btn-secondary {

    border:
        1px solid rgba(255, 255, 255, .18);

    color: white;

    padding:
        16px 28px;

    border-radius: 999px;

    text-decoration: none;

    backdrop-filter: blur(12px);
}

.stats-section {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(240px, 1fr));

    gap: 24px;

    margin-top: 100px;
}

.stats-card {

    padding: 36px;

    border-radius: 28px;

    background:
        rgba(255, 255, 255, .05);

    border:
        1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(16px);

    text-align: center;
}

.stats-number {

    font-size: 3rem;
    font-weight: 800;
}

.stats-label {

    margin-top: 10px;

    color: #94a3b8;
}

.info-section {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 24px;

    margin-top: 80px;
}

.info-card {

    padding: 32px;

    border-radius: 28px;

    background:
        rgba(255, 255, 255, .04);

    border:
        1px solid rgba(255, 255, 255, .06);
}

.info-card h3 {

    font-size: 1.3rem;
    font-weight: 700;
}

.info-card p {

    margin-top: 14px;

    color: #cbd5e1;

    line-height: 1.7;
}