/* Klubblodd — landing-side */

#kl_page { max-width: 960px; }

/* Hero */
#kl_landing_hero {
    background: linear-gradient(135deg, var(--kl-primary) 0%, color-mix(in srgb, var(--kl-primary) 65%, #000) 100%);
    color: #fff;
    padding: 56px 24px 64px;
    position: relative;
    overflow: hidden;
}
#kl_landing_hero::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    pointer-events: none;
}
.hero_inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero_title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.5px;
}
.hero_text {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    margin-top: 16px;
    line-height: 1.55;
}
.hero_cta_row { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero_image { text-align: center; }
.hero_image img { max-width: 220px; width: 100%; height: auto; }

.btn_primary {
    display: inline-block;
    padding: 14px 26px;
    background: #fff;
    color: var(--kl-primary);
    border-radius: 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .3px;
    transition: transform .1s, opacity .15s;
}
.btn_primary:hover  { opacity: .92; }
.btn_primary:active { transform: scale(.98); }

.btn_ghost {
    display: inline-block;
    padding: 14px 26px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.5);
    border-radius: 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .3px;
}
.btn_ghost:hover { background: rgba(255,255,255,.1); }

.section { padding: 56px 24px; max-width: 960px; margin: 0 auto; }
.section_title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--kl-text);
    letter-spacing: -.3px;
}
.section_ingress {
    font-size: 15px;
    color: var(--kl-text);
    line-height: 1.6;
    margin-top: 10px;
    max-width: 760px;
}

.step_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}
.step_card {
    background: var(--kl-white);
    border-radius: var(--kl-radius);
    box-shadow: var(--kl-shadow);
    padding: 22px;
}
.step_num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--kl-light);
    color: var(--kl-accent);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 12px;
}
.step_title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--kl-text);
    margin-bottom: 8px;
}
.step_body { font-size: 13.5px; line-height: 1.55; color: var(--kl-text); }

.step_card.cta {
    background: var(--kl-primary);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.step_card.cta .step_title { color: #fff; }
.step_card.cta .step_body  { color: rgba(255,255,255,.85); margin-bottom: 14px; }
.step_card.cta a {
    display: inline-block;
    padding: 11px 18px;
    background: #fff;
    color: var(--kl-primary);
    border-radius: 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    align-self: flex-start;
}

.section_alt { background: var(--kl-white); }
.section_alt_wrap { padding: 56px 24px; }
.section_alt_inner { max-width: 960px; margin: 0 auto; }

.fees_table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 22px;
    background: var(--kl-white);
    border-radius: var(--kl-radius);
    overflow: hidden;
    box-shadow: var(--kl-shadow);
}
.fees_table th,
.fees_table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--kl-border);
    font-size: 14px;
}
.fees_table th {
    background: #fafbfc;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--kl-muted);
}
.fees_table tr:last-child td { border-bottom: 0; }
.fees_table td.share {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    color: var(--kl-accent);
}
.fees_note { font-size: 12px; color: var(--kl-muted); margin-top: 12px; }

.faq_item {
    background: var(--kl-white);
    border-radius: var(--kl-radius);
    box-shadow: var(--kl-shadow);
    margin-top: 12px;
    overflow: hidden;
}
.faq_item summary {
    padding: 16px 20px;
    cursor: pointer;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--kl-text);
    list-style: none;
    position: relative;
}
.faq_item summary::after {
    content: '+';
    position: absolute;
    right: 20px; top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--kl-accent);
    font-weight: 400;
}
.faq_item[open] summary::after { content: '−'; }
.faq_item summary::-webkit-details-marker { display: none; }
.faq_body {
    padding: 0 20px 18px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--kl-text);
}

.quote_card {
    background: var(--kl-white);
    border-left: 4px solid var(--kl-accent);
    padding: 20px 22px;
    border-radius: 8px;
    margin-top: 22px;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--kl-text);
    box-shadow: var(--kl-shadow);
}
.quote_card .quote_src {
    display: block;
    font-size: 12px;
    color: var(--kl-muted);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: .6px;
}

#kl_bottom_cta {
    background: linear-gradient(135deg, var(--kl-primary), color-mix(in srgb, var(--kl-primary) 65%, #000));
    color: #fff;
    text-align: center;
    padding: 56px 24px;
}
#kl_bottom_cta h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -.3px;
}
#kl_bottom_cta p {
    font-size: 15px;
    color: rgba(255,255,255,.85);
    margin: 12px auto 24px;
    max-width: 560px;
    line-height: 1.55;
}

.landing_footer {
    text-align: center;
    padding: 28px 20px;
    font-size: 12px;
    color: var(--kl-muted);
    background: var(--kl-bg);
}
.landing_footer a { color: var(--kl-muted); text-decoration: underline; }

@media (max-width: 760px) {
    .hero_inner { grid-template-columns: 1fr; text-align: center; }
    .hero_cta_row { justify-content: center; }
    .hero_image { order: -1; }
    .hero_image img { max-width: 160px; }
    .hero_title { font-size: 32px; }
    #kl_landing_hero::after { display: none; }
    .step_grid { grid-template-columns: 1fr; }
    .section, .section_alt_wrap { padding: 40px 16px; }
    .section_title { font-size: 26px; }
    .fees_table th, .fees_table td { padding: 6px 4px; font-size: 10.4px; }
    .fees_table td.share { font-size: 9.4px; }
    #kl_bottom_cta { padding: 40px 16px; overflow: hidden; }
}
