/* Stakeholder Kickoff — wide layout, large type, minimal edge whitespace */

.skc-section {
    background: #ffffff;
    box-sizing: border-box;
    /* Top-heavy: align to upper area; whitespace stays below (no vertical centering) */
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: clamp(48px, 7vh, 100px);
    padding-bottom: clamp(24px, 4vh, 48px);
    padding-left: clamp(16px, 5vw, 72px);
    padding-right: clamp(16px, 5vw, 72px);
}

.skc-container {
    width: 100%;
    max-width: min(92vw, 1320px);
    margin: 0 auto;
    text-align: left;
}

.skc-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: clamp(2.25rem, 3.5vw + 1rem, 4rem);
    line-height: 1.15;
    color: #000000;
    margin: 0 0 clamp(16px, 2.5vh, 28px);
}

.skc-lead {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: clamp(1.125rem, 1.1vw + 0.75rem, 1.5rem);
    line-height: 1.55;
    color: #000000;
    margin: 0 0 clamp(20px, 3vh, 36px);
    max-width: 100%;
}

.skc-meta {
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: clamp(20px, 2.5vh, 28px) clamp(22px, 3vw, 36px);
    margin: 0 0 clamp(22px, 3vh, 36px);
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 2vh, 20px);
}

.skc-meta-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: clamp(20px, 4vw, 48px);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1rem, 0.8vw + 0.85rem, 1.35rem);
    line-height: 1.45;
}

.skc-meta-k {
    font-weight: 700;
    color: #000000;
    flex-shrink: 0;
}

.skc-meta-v {
    font-weight: 400;
    color: #000000;
    text-align: right;
}

.skc-name-field {
    margin: 0 0 clamp(22px, 3vh, 32px);
    max-width: min(100%, 420px);
}

.skc-name-label {
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(0.9375rem, 0.5vw + 0.8rem, 1.125rem);
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.skc-name-input {
    box-sizing: border-box;
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1rem, 0.5vw + 0.85rem, 1.125rem);
    color: #000000;
    background: #ffffff;
}

.skc-name-input::placeholder {
    color: #888888;
}

.skc-name-input:focus {
    outline: 2px solid #017aff;
    outline-offset: 2px;
    border-color: #017aff;
}

.skc-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    /* Outer size fixed (same as before larger type): 56px tall, horizontal padding only */
    height: 56px;
    padding: 0 clamp(28px, 3vw, 40px);
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: clamp(1.0625rem, 0.7vw + 0.85rem, 1.25rem);
    line-height: 1.15;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease;
    white-space: nowrap;
}

.skc-btn:hover,
.skc-btn:focus {
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
}

.skc-btn:focus {
    outline: 2px solid #017aff;
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .skc-section {
        padding-left: clamp(14px, 4vw, 20px);
        padding-right: clamp(14px, 4vw, 20px);
    }

    .skc-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .skc-meta-v {
        text-align: left;
    }

    .skc-btn {
        width: 100%;
        box-sizing: border-box;
        height: auto;
        min-height: 56px;
        padding: 12px 20px;
        white-space: normal;
        text-align: center;
    }
}
