body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;
    background: #eef1f6;
    min-height: 100vh;
    color: #1f2937;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    gap: 1.25rem;
    padding: clamp(3rem, 7vh, 5.25rem) 1.25rem 2.5rem;
    background:
        radial-gradient(900px 500px at 15% -10%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 60%),
        radial-gradient(750px 420px at 100% 0%, rgba(208, 169, 92, 0.18) 0%, rgba(208,169,92,0) 60%),
        linear-gradient(135deg, #f8f3e8 0%, #eef1f6 58%, #e8edf5 100%);
}

.title {
    color: #162032;
    font-size: clamp(2rem, 4.8vw, 3.3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0;
    text-shadow: 0 8px 24px rgba(22, 32, 50, 0.08);
    text-align: center;
    line-height: 1.2;
    max-width: 980px;
}

.intro {
    max-width: 720px;
    margin: 0;
    text-align: center;
    color: #4b5a70;
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 500;
}

.main-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
    box-shadow: 0 28px 60px rgba(26, 36, 54, 0.12);
    border: 1px solid rgba(193, 201, 214, 0.72);
    padding: 2.2rem 2rem 2.1rem;
    max-width: 520px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
}

h2 {
    color: #162032;
    margin-bottom: 1.4rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.company-selection {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    align-items: center;
}

.company-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    text-align: center;
    background: linear-gradient(180deg, #fffefb 0%, #f6efe0 100%);
    border-radius: 1.2rem;
    box-shadow: 0 12px 26px rgba(26, 36, 54, 0.08);
    padding: 1.45rem 1.2rem 1.15rem;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    border: 1px solid rgba(198, 169, 107, 0.42);
    width: 100%;
    max-width: 310px;
}

.company-link:hover, .company-link:focus {
    box-shadow: 0 18px 34px rgba(138, 90, 20, 0.16);
    transform: translateY(-6px);
    background: linear-gradient(180deg, #ffffff 0%, #fbf3e2 100%);
    border-color: #d3a04a;
}

.company-link:focus-visible {
    outline: 3px solid #c88d2e;
    outline-offset: 3px;
}

.company-logo {
    width: clamp(118px, 24vw, 164px);
    height: clamp(118px, 24vw, 164px);
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 1rem;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #faf4e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(223, 194, 142, 0.65);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7), 0 10px 24px rgba(138, 90, 20, 0.08);
}

.company-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    image-rendering: auto;
    filter: none;
}

.company-name {
    color: #162032;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    margin-top: 0.2rem;
}

/* Responsive */
@media (max-width: 600px) {
    .content {
        gap: 1rem;
        padding: 2.1rem 0.9rem 1.9rem;
    }

    .main-content {
        padding: 1.35rem 0.9rem 1.45rem;
        max-width: 98vw;
        border-radius: 1.2rem;
        box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    }
    .company-logo img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
    }
    .company-link {
        padding: 1rem 0.75rem;
        max-width: 98vw;
    }
    .title {
        font-size: 1.55rem;
    }

    .intro {
        font-size: 0.96rem;
    }
    h2 {
        font-size: 1.05rem;
    }
}

@media (max-width: 380px) {
    .content {
        gap: 0.85rem;
        padding: 1.7rem 0.75rem 1.5rem;
    }

    .title {
        font-size: 1.35rem;
    }

    .intro {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .main-content {
        padding: 1.1rem 0.75rem 1.2rem;
    }

    .company-link {
        padding: 0.9rem 0.65rem;
    }

    .company-logo {
        width: 112px;
        height: 112px;
        margin-bottom: 0.8rem;
    }

    .company-name {
        font-size: 1.1rem;
    }
}