:root {
    --site-bg: #f4f6ef;
    --site-surface: #ffffff;
    --site-surface-soft: #eef3e6;
    --site-text: #172016;
    --site-muted: #61705d;
    --site-border: rgba(28, 76, 24, .13);
    --site-primary: #6f9f16;
    --site-primary-dark: #075437;
    --site-primary-hover: #557d0d;
    --site-lime: #a8d42e;
    --site-gold: #ffd447;
    --site-red: #c91318;
    --site-on-primary: #ffffff;
    --site-radius: 18px;
    --site-radius-sm: 11px;
    --site-shadow: 0 20px 55px rgba(19, 59, 17, .10);
    --site-shadow-hover: 0 28px 70px rgba(19, 59, 17, .16);
    --site-font: "Segoe UI Variable", "Segoe UI", Inter, system-ui, -apple-system, sans-serif;
}

body.public-theme[data-theme="dark"] {
    --site-bg: #121611;
    --site-surface: #1d241b;
    --site-surface-soft: #242d21;
    --site-text: #f3f6f1;
    --site-muted: #bbc6b7;
    --site-border: rgba(197, 220, 188, .16);
    --site-primary: #a8d42e;
    --site-primary-hover: #c6e66a;
    --site-shadow: 0 20px 60px rgba(0, 0, 0, .28);
    --site-shadow-hover: 0 30px 78px rgba(0, 0, 0, .38);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body.public-theme {
    background:
        radial-gradient(circle at 8% 4%, rgba(168, 212, 46, .10), transparent 28rem),
        radial-gradient(circle at 92% 12%, rgba(255, 212, 71, .09), transparent 26rem),
        var(--site-bg) !important;
    color: var(--site-text);
    font-family: var(--site-font);
    line-height: 1.65;
    overflow-x: hidden;
    --bs-body-bg: var(--site-bg);
    --bs-body-color: var(--site-text);
    --bs-border-color: var(--site-border);
    --bs-secondary-color: var(--site-muted);
    --bs-tertiary-bg: var(--site-surface-soft);
}

body.public-theme h1,
body.public-theme h2,
body.public-theme h3,
body.public-theme h4,
body.public-theme h5,
body.public-theme h6 {
    color: var(--site-text);
    font-family: var(--site-font);
    font-weight: 800;
    letter-spacing: -.035em;
    text-wrap: balance;
}

body.public-theme p,
body.public-theme li {
    color: inherit;
}

body.public-theme a {
    color: var(--site-primary-dark);
}

body.public-theme[data-theme="dark"] a:not(.btn):not(.btn-conference):not(.nav-link):not(.navbar-brand) {
    color: var(--site-primary);
}

body.public-theme img {
    max-width: 100%;
}

/* Shared navigation */
body.public-theme > #publicSiteHeader {
    z-index: 1040;
    min-height: 78px;
    padding: .65rem 0;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .10) !important;
    background: rgba(13, 16, 12, .97) !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .24) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

body.public-theme > #publicSiteHeader .site-brand {
    margin-right: .65rem;
    padding: 0;
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
}

body.public-theme > #publicSiteHeader .site-brand img {
    display: block;
    width: auto;
    height: 48px;
    max-width: 190px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .22));
}

body.public-theme > #publicSiteHeader .site-nav {
    gap: .12rem;
}

body.public-theme > #publicSiteHeader .site-nav > .nav-item > .nav-link {
    position: relative;
    padding: .68rem .72rem !important;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, .76) !important;
    font-size: .88rem;
    font-weight: 700;
    white-space: nowrap;
}

body.public-theme > #publicSiteHeader .site-nav > .nav-item > .nav-link:hover,
body.public-theme > #publicSiteHeader .site-nav > .nav-item > .nav-link:focus {
    color: #fff !important;
}

body.public-theme > #publicSiteHeader .site-nav > .nav-item > .nav-link:hover::after,
body.public-theme > #publicSiteHeader .site-nav > .nav-item > .nav-link:focus::after {
    content: "";
    position: absolute;
    right: .72rem;
    bottom: .25rem;
    left: .72rem;
    height: 2px;
    border-radius: 99px;
    background: var(--site-lime);
}

body.public-theme > #publicSiteHeader .site-nav-tool {
    display: flex;
    align-items: center;
    margin-left: .3rem;
}

body.public-theme > #publicSiteHeader .theme-toggle-btn {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    box-shadow: none;
}

body.public-theme > #publicSiteHeader .theme-toggle-btn:hover,
body.public-theme > #publicSiteHeader .theme-toggle-btn:focus-visible {
    border-color: rgba(255, 255, 255, .58);
    background: rgba(255, 255, 255, .15);
}

body.public-theme > #publicSiteHeader .site-login-btn,
body.public-theme > #publicSiteHeader .site-register-btn {
    margin-left: .35rem;
    padding: .62rem .95rem;
    border-radius: 10px !important;
    font-size: .86rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: none;
}

body.public-theme > #publicSiteHeader .site-login-btn {
    border: 1px solid var(--site-primary);
    background: var(--site-primary);
    color: #fff;
}

body.public-theme > #publicSiteHeader .site-register-btn {
    border: 1px solid var(--site-gold);
    background: var(--site-gold);
    color: #171409;
}

body.public-theme > #publicSiteHeader .site-login-btn:hover,
body.public-theme > #publicSiteHeader .site-login-btn:focus {
    border-color: var(--site-lime);
    background: var(--site-lime);
    color: #172016;
}

body.public-theme > #publicSiteHeader .site-register-btn:hover,
body.public-theme > #publicSiteHeader .site-register-btn:focus {
    border-color: #ffe57c;
    background: #ffe57c;
    color: #171409;
}

body.public-theme > #publicSiteHeader .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .34) !important;
    border-radius: 10px !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.public-theme > #publicSiteHeader :focus-visible {
    outline: 3px solid var(--site-gold);
    outline-offset: 3px;
    box-shadow: none !important;
}

/* Shared surfaces */
body.public-theme .card,
body.public-theme .modal-content,
body.public-theme .accordion-item,
body.public-theme .list-group-item,
body.public-theme .table-responsive,
body.public-theme .alert {
    border-color: var(--site-border) !important;
    border-radius: var(--site-radius) !important;
    background: var(--site-surface) !important;
    color: var(--site-text);
    box-shadow: var(--site-shadow) !important;
}

body.public-theme .card,
body.public-theme .accordion-item {
    overflow: hidden;
}

body.public-theme .card {
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

body.public-theme .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--site-shadow-hover) !important;
}

body.public-theme .card-header,
body.public-theme .accordion-button,
body.public-theme .modal-header,
body.public-theme .table thead th {
    border-color: var(--site-border) !important;
    background: var(--site-surface-soft) !important;
    color: var(--site-text) !important;
}

body.public-theme .accordion-button:not(.collapsed) {
    background: rgba(111, 159, 22, .14) !important;
    color: var(--site-primary-dark) !important;
    box-shadow: none;
}

body.public-theme[data-theme="dark"] .accordion-button:not(.collapsed) {
    color: var(--site-primary) !important;
}

body.public-theme .btn {
    min-height: 44px;
    border-radius: var(--site-radius-sm) !important;
    font-weight: 750;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

body.public-theme .btn:hover {
    transform: translateY(-1px);
}

body.public-theme .btn-primary,
body.public-theme .btn-success {
    border-color: var(--site-primary) !important;
    background: var(--site-primary) !important;
    color: #fff !important;
}

body.public-theme .btn-primary:hover,
body.public-theme .btn-success:hover {
    border-color: var(--site-primary-hover) !important;
    background: var(--site-primary-hover) !important;
}

body.public-theme .form-control,
body.public-theme .form-select,
body.public-theme .input-group-text,
body.public-theme textarea {
    min-height: 46px;
    border-color: var(--site-border) !important;
    border-radius: var(--site-radius-sm) !important;
    background: var(--site-surface) !important;
    color: var(--site-text) !important;
}

body.public-theme .form-control:focus,
body.public-theme .form-select:focus,
body.public-theme textarea:focus {
    border-color: var(--site-primary) !important;
    box-shadow: 0 0 0 3px rgba(111, 159, 22, .22) !important;
}

body.public-theme .text-muted {
    color: var(--site-muted) !important;
}

/* Homepage: modern conference structure in KCOA's identity. */
body.public-theme .kcoa-home {
    background: var(--site-bg) !important;
}

body.public-theme .kcoa-home .kcoa-container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

body.public-theme .kcoa-home .conference-hero {
    position: relative;
    min-height: 660px;
    display: grid;
    align-items: center;
    padding: 5.5rem 0 !important;
    background:
        linear-gradient(90deg, rgba(7, 12, 7, .98) 0%, rgba(7, 55, 23, .91) 48%, rgba(12, 72, 37, .62) 100%),
        linear-gradient(0deg, rgba(5, 10, 5, .65), transparent 50%),
        url('../img/slider_bg.jpg') center 44% / cover no-repeat !important;
}

body.public-theme .kcoa-home .conference-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .14;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: linear-gradient(90deg, #000, transparent 75%);
}

body.public-theme .kcoa-home .conference-hero::after {
    display: none;
}

body.public-theme .kcoa-home .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.34fr) minmax(350px, .66fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

body.public-theme .kcoa-home .welcome-script {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1rem;
    color: #bfe986;
    font-family: var(--site-font);
    font-size: .78rem;
    font-style: normal;
    font-weight: 850;
    letter-spacing: .15em;
    line-height: 1;
    text-shadow: none;
    text-transform: uppercase;
}

body.public-theme .kcoa-home .welcome-script::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--site-lime);
    box-shadow: 0 0 0 5px rgba(168, 212, 46, .17);
}

body.public-theme .kcoa-home .hero-title {
    max-width: 820px;
    color: #fff;
    font-size: clamp(3.1rem, 5.5vw, 5.7rem);
    font-weight: 800;
    letter-spacing: -.058em;
    line-height: .95;
    text-shadow: none;
    text-transform: none;
}

body.public-theme .kcoa-home .hero-title span {
    color: #fff;
}

body.public-theme .kcoa-home .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 2rem;
}

body.public-theme .kcoa-home .meta-pill {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .72rem .9rem;
    border-color: rgba(255, 255, 255, .18);
    border-radius: 12px;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    font-size: .95rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

body.public-theme .kcoa-home .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 2rem;
}

body.public-theme .kcoa-home .meta-pill i {
    color: var(--site-gold);
}

body.public-theme .kcoa-home .btn-conference {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    border-radius: 12px;
    padding: .85rem 1.15rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

body.public-theme .kcoa-home .btn-conference:hover,
body.public-theme .kcoa-home .btn-conference:focus {
    transform: translateY(-2px);
}

body.public-theme .kcoa-home .btn-red {
    border: 1px solid var(--site-gold);
    background: var(--site-gold);
    color: #171409;
    box-shadow: 0 14px 30px rgba(255, 212, 71, .16);
}

body.public-theme .kcoa-home .btn-gold {
    border: 1px solid rgba(255, 255, 255, .30);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    box-shadow: none;
}

body.public-theme .kcoa-home .hero-summary {
    padding: 1.55rem;
    border-color: rgba(255, 255, 255, .20);
    border-radius: 28px;
    background: rgba(255, 255, 255, .10);
    color: #fff;
    box-shadow: 0 30px 75px rgba(0, 0, 0, .30);
    backdrop-filter: blur(18px) saturate(125%);
}

body.public-theme .kcoa-home .summary-title {
    margin: 0 0 .75rem;
    font-size: 1.45rem;
    line-height: 1.18;
}

body.public-theme .kcoa-home .summary-copy {
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

body.public-theme .kcoa-home .summary-list {
    display: grid;
    gap: .7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.public-theme .kcoa-home .summary-list li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: .75rem;
    align-items: center;
    padding: .75rem;
}

body.public-theme .kcoa-home .summary-list i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
}

body.public-theme .kcoa-home .summary-list strong,
body.public-theme .kcoa-home .summary-list span {
    display: block;
}

body.public-theme .kcoa-home .summary-list strong {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.public-theme .kcoa-home .hero-logo {
    width: 88px;
    height: 88px;
    margin-bottom: 1.2rem;
    border-radius: 22px;
}

body.public-theme .kcoa-home .summary-title,
body.public-theme .kcoa-home .summary-copy,
body.public-theme .kcoa-home .summary-list span {
    color: #fff;
}

body.public-theme .kcoa-home .summary-copy {
    color: rgba(255, 255, 255, .70);
}

body.public-theme .kcoa-home .summary-list li {
    border-color: rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(0, 0, 0, .16);
}

body.public-theme .kcoa-home .summary-list strong {
    color: #bfe986;
}

body.public-theme .kcoa-home .summary-list i {
    background: rgba(111, 159, 22, .28);
    color: var(--site-gold);
}

body.public-theme .kcoa-home .countdown-band {
    margin-top: -28px;
}

body.public-theme .kcoa-home .countdown-card,
body.public-theme .kcoa-home .theme-panel,
body.public-theme .kcoa-home .info-card {
    border: 1px solid var(--site-border);
    background: var(--site-surface);
    color: var(--site-text);
    box-shadow: var(--site-shadow);
}

body.public-theme .kcoa-home .countdown-card {
    border-radius: 22px;
}

body.public-theme .kcoa-home .countdown-box {
    border-color: var(--site-border);
    background: var(--site-surface-soft);
    box-shadow: none;
}

body.public-theme .kcoa-home .countdown-label,
body.public-theme .kcoa-home .countdown-box span,
body.public-theme .kcoa-home .section-title {
    color: var(--site-text);
}

body.public-theme .kcoa-home .countdown-target,
body.public-theme .kcoa-home .section-lead {
    color: var(--site-muted);
}

body.public-theme .kcoa-home .countdown-box strong {
    color: var(--site-red);
}

body.public-theme .kcoa-home .section-soft {
    background: var(--site-surface-soft);
}

body.public-theme .kcoa-home .theme-panel,
body.public-theme .kcoa-home .info-card {
    border-radius: 24px;
}

body.public-theme .kcoa-home .theme-heading,
body.public-theme .kcoa-home .registration-callout h3,
body.public-theme .kcoa-home .late-date {
    color: var(--site-text);
}

body.public-theme .kcoa-home .theme-ribbon,
body.public-theme .kcoa-home .card-tab {
    background: var(--site-gold);
    color: #171409;
    box-shadow: none;
}

body.public-theme .kcoa-home .subtheme-number,
body.public-theme .kcoa-home .submission-list i {
    background: var(--site-primary-dark);
}

body.public-theme .kcoa-home .anthem-section,
body.public-theme .kcoa-home .contact-strip {
    background: #0d170d;
}

/* Public content pages */
body.public-theme > .container.py-5,
body.public-theme > .container.my-5,
body.public-theme main.container,
body.public-theme .container.my-5 {
    padding-top: clamp(3.5rem, 7vw, 6rem) !important;
    padding-bottom: clamp(3.5rem, 7vw, 6rem) !important;
}

body.public-theme .hero-section {
    position: relative;
    padding: clamp(5rem, 10vw, 8rem) 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(8, 18, 8, .94), rgba(7, 84, 55, .72)),
        url('../img/kcoa-slide9.jpg') center / cover no-repeat !important;
}

body.public-theme .hero-section h1,
body.public-theme .hero-section p {
    color: #fff;
}

body.public-theme .section-title {
    color: var(--site-text) !important;
}

body.public-theme .section-title::after {
    height: 3px;
    border-radius: 99px;
    background: var(--site-gold) !important;
}

body.public-theme .objective-list .list-group-item {
    border-left: 4px solid var(--site-primary) !important;
    background: var(--site-surface) !important;
}

/* Program schedule: preserve the event bands while keeping text readable. */
body.public-theme .schedule-row {
    border-radius: 0 !important;
    box-shadow: none !important;
}

body.public-theme .schedule-row .text-dark,
body.public-theme .schedule-row .btn-link.text-dark {
    color: var(--site-text) !important;
}

body.public-theme[data-theme="dark"] .list-group-flush .schedule-row:nth-child(even):not(.break-row):not(.theme-row):not(.partner-row):not(.session-header-container) {
    background: var(--site-surface-soft) !important;
}

body.public-theme .schedule-row.break-row .text-dark,
body.public-theme .schedule-row.theme-row .text-dark,
body.public-theme .schedule-row.partner-row .text-dark,
body.public-theme .schedule-row.break-row .btn-link.text-dark,
body.public-theme .schedule-row.theme-row .btn-link.text-dark,
body.public-theme .schedule-row.partner-row .btn-link.text-dark {
    color: inherit !important;
}

body.public-theme[data-theme="dark"] .modal-body .text-dark {
    color: var(--site-text) !important;
}

body.public-theme[data-theme="dark"] .modal-body .text-secondary {
    color: var(--site-muted) !important;
}

/* Footer */
body.public-theme .site-footer {
    margin-top: auto;
    padding: 1.4rem 0;
    border-top: 1px solid rgba(255, 255, 255, .10);
    background: #0d120c;
    color: rgba(255, 255, 255, .72);
}

body.public-theme .site-footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
    align-items: center;
}

body.public-theme .site-footer-mark img {
    width: auto;
    height: 42px;
    max-width: 150px;
    object-fit: contain;
}

body.public-theme .site-footer p {
    color: rgba(255, 255, 255, .70);
    font-size: .88rem;
    text-align: center;
}

body.public-theme .site-footer-top {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none;
}

body.public-theme .site-footer-top:hover {
    border-color: var(--site-gold);
    color: var(--site-gold) !important;
}

.mobile-app-nav {
    display: none;
}

.kcoa-mobile-home {
    display: none;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    body.public-theme > #publicSiteHeader .site-nav > .nav-item > .nav-link {
        padding-right: .42rem !important;
        padding-left: .42rem !important;
        font-size: .78rem;
    }

    body.public-theme > #publicSiteHeader .site-login-btn,
    body.public-theme > #publicSiteHeader .site-register-btn {
        margin-left: .15rem;
        padding-right: .58rem;
        padding-left: .58rem;
        font-size: .78rem;
    }
}

@media (max-width: 991.98px) {
    body.public-theme > #publicSiteHeader {
        min-height: 70px;
        padding: .55rem 0;
    }

    body.public-theme > #publicSiteHeader .site-brand img {
        height: 42px;
        max-width: 165px;
    }

    body.public-theme > #publicSiteHeader .navbar-collapse {
        max-height: calc(100vh - 86px);
        overflow-y: auto;
        margin-top: .7rem;
        padding: .8rem;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 14px;
        background: #121b11;
    }

    body.public-theme > #publicSiteHeader .site-nav {
        align-items: stretch !important;
        gap: .18rem;
    }

    body.public-theme > #publicSiteHeader .site-nav > .nav-item > .nav-link {
        padding: .72rem .78rem !important;
        border-radius: 9px;
    }

    body.public-theme > #publicSiteHeader .site-nav > .nav-item > .nav-link:hover::after,
    body.public-theme > #publicSiteHeader .site-nav > .nav-item > .nav-link:focus::after {
        display: none;
    }

    body.public-theme > #publicSiteHeader .site-nav-tool,
    body.public-theme > #publicSiteHeader .site-login-btn,
    body.public-theme > #publicSiteHeader .site-register-btn {
        margin: .25rem 0 0;
    }

    body.public-theme > #publicSiteHeader .site-login-btn,
    body.public-theme > #publicSiteHeader .site-register-btn {
        width: 100%;
    }

    body.public-theme .kcoa-home .hero-grid {
        grid-template-columns: 1fr;
    }

    body.public-theme .kcoa-home .conference-hero {
        min-height: 0;
        padding: 4.5rem 0 !important;
    }

    body.public-theme .kcoa-home .hero-summary {
        max-width: 620px;
    }
}

@media (max-width: 767.98px) {
    body.kcoa-home-page {
        padding-bottom: 0;
        background: #f5f7f2 !important;
    }

    body.kcoa-home-page > #publicSiteHeader,
    body.kcoa-home-page > .site-footer,
    body.kcoa-home-page > .mobile-app-nav,
    body.kcoa-home-page .desktop-home {
        display: none !important;
    }

    body.kcoa-home-page .kcoa-home {
        overflow: visible;
        background: #f5f7f2 !important;
    }

    body.kcoa-home-page[data-theme="dark"],
    body.kcoa-home-page[data-theme="dark"] .kcoa-home {
        background: #111711 !important;
    }

    body.kcoa-home-page .kcoa-mobile-home {
        min-height: 100vh;
        display: block;
        padding: 0 12px calc(88px + env(safe-area-inset-bottom));
        color: #172016;
    }

    body.kcoa-home-page .kcoa-mobile-topbar {
        min-height: 78px;
        position: sticky;
        z-index: 20;
        top: 0;
        margin: 0 -12px 12px;
        padding: 6px 14px 7px;
        border-bottom: 1px solid #e0e6dc;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 5px 18px rgba(23, 32, 22, .06);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    body.kcoa-home-page .kcoa-mobile-topline {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 2px;
    }

    body.kcoa-home-page .kcoa-mobile-topline > img {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        object-fit: contain;
    }

    body.kcoa-home-page .kcoa-mobile-title {
        display: block;
        max-width: 260px;
        color: #17351b;
        font-size: .67rem;
        font-weight: 900;
        line-height: 1.35;
        letter-spacing: .13em;
        text-transform: uppercase;
    }

    body.kcoa-home-page .kcoa-mobile-actions {
        display: flex;
        align-items: center;
        gap: 9px;
    }

    body.kcoa-home-page .kcoa-mobile-icon-action {
        width: 34px;
        height: 34px;
        border: 0;
        display: grid;
        place-items: center;
        padding: 0;
        background: transparent;
        color: #2faa45 !important;
        font-size: 1.25rem;
        text-decoration: none;
    }

    body.kcoa-home-page .kcoa-mobile-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    body.kcoa-home-page .kcoa-mobile-tile {
        min-width: 0;
        min-height: 116px;
        border: 1px solid #dfe5db;
        border-radius: 19px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 11px;
        padding: 14px 8px;
        background: #fff;
        color: #172016 !important;
        box-shadow: 0 4px 14px rgba(23, 32, 22, .07);
        font-size: .98rem;
        font-weight: 850;
        line-height: 1.15;
        text-align: center;
        text-decoration: none;
    }

    body.kcoa-home-page .kcoa-mobile-tile:active {
        transform: scale(.98);
    }

    body.kcoa-home-page .kcoa-mobile-tile-icon {
        width: 48px;
        height: 48px;
        border: 1px solid #dfe5db;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: #f7faf4;
        color: #6f9f16;
        font-size: 1.45rem;
    }

    body.kcoa-home-page .kcoa-mobile-bottom {
        position: fixed;
        z-index: 30;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        padding: 7px 4px calc(7px + env(safe-area-inset-bottom));
        border-top: 1px solid #dfe5db;
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 -10px 30px rgba(23, 32, 22, .09);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    body.kcoa-home-page .kcoa-mobile-bottom a,
    body.kcoa-home-page .kcoa-mobile-bottom button {
        min-width: 0;
        min-height: 52px;
        border: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        border-radius: 13px;
        color: #61705d !important;
        font-size: .65rem;
        font-weight: 800;
        line-height: 1;
        text-decoration: none;
        background: transparent;
    }

    body.kcoa-home-page .kcoa-mobile-bottom i {
        color: #6f9f16;
        font-size: 1.14rem;
    }

    body.kcoa-home-page .kcoa-mobile-bottom a.active {
        color: #075437 !important;
        background: #eef5df;
    }

    body.kcoa-home-page[data-theme="dark"] .kcoa-mobile-topbar,
    body.kcoa-home-page[data-theme="dark"] .kcoa-mobile-bottom,
    body.kcoa-home-page[data-theme="dark"] .kcoa-mobile-tile {
        border-color: #344033;
        background: #1d241b;
    }

    body.kcoa-home-page[data-theme="dark"] .kcoa-mobile-topbar,
    body.kcoa-home-page[data-theme="dark"] .kcoa-mobile-bottom {
        background: rgba(29, 36, 27, .97);
    }

    body.kcoa-home-page[data-theme="dark"] .kcoa-mobile-title,
    body.kcoa-home-page[data-theme="dark"] .kcoa-mobile-tile {
        color: #f3f6f1 !important;
    }

    body.kcoa-home-page[data-theme="dark"] .kcoa-mobile-icon-action,
    body.kcoa-home-page[data-theme="dark"] .kcoa-mobile-tile-icon {
        color: #ffd447;
    }

    body.kcoa-home-page[data-theme="dark"] .kcoa-mobile-tile-icon {
        border-color: #344033;
        background: #121611;
    }

    body.kcoa-home-page .kcoa-mobile-bottom button {
        color: #61705d;
    }

    body.kcoa-home-page[data-theme="dark"] .kcoa-mobile-bottom a {
        color: #bbc6b7 !important;
    }

    body.kcoa-home-page[data-theme="dark"] .kcoa-mobile-bottom button {
        color: #bbc6b7;
    }

    body.kcoa-home-page[data-theme="dark"] .kcoa-mobile-bottom a.active {
        color: #d7ef9d !important;
        background: rgba(168, 212, 46, .12);
    }

    body.public-theme {
        padding-bottom: 78px;
    }

    body.public-theme > #publicSiteHeader {
        position: sticky;
        top: 0;
        min-height: 68px;
    }

    body.public-theme > #publicSiteHeader .site-brand img {
        height: 38px;
        max-width: 150px;
    }

    body.public-theme > #publicSiteHeader .navbar-toggler {
        width: 46px;
        height: 46px;
        padding: .45rem;
    }

    body.public-theme .mobile-app-nav {
        position: fixed;
        z-index: 1050;
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        left: 10px;
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: .25rem;
        padding: .5rem;
        border: 1px solid rgba(255, 255, 255, .15);
        border-radius: 22px;
        background: rgba(12, 17, 11, .94);
        box-shadow: 0 20px 50px rgba(0, 0, 0, .34);
        backdrop-filter: blur(18px) saturate(135%);
        -webkit-backdrop-filter: blur(18px) saturate(135%);
    }

    body.public-theme .mobile-app-nav a {
        min-width: 0;
        min-height: 54px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: .18rem;
        border-radius: 15px;
        color: rgba(255, 255, 255, .72) !important;
        font-size: .68rem;
        font-weight: 750;
        line-height: 1;
        text-decoration: none;
    }

    body.public-theme .mobile-app-nav a:hover,
    body.public-theme .mobile-app-nav a:focus-visible {
        background: rgba(255, 255, 255, .10);
        color: #fff !important;
    }

    body.public-theme .mobile-app-nav i {
        font-size: 1.18rem;
    }

    body.public-theme .mobile-app-nav .mobile-app-nav-primary {
        background: var(--site-gold);
        color: #171409 !important;
    }

    body.public-theme .mobile-app-nav .mobile-app-nav-primary:hover,
    body.public-theme .mobile-app-nav .mobile-app-nav-primary:focus-visible {
        background: #ffe57c;
        color: #171409 !important;
    }

    body.public-theme.kcoa-home-page {
        padding-bottom: 0;
    }

    body.public-theme.kcoa-home-page > .mobile-app-nav {
        display: none !important;
    }

}

@media (max-width: 359.98px) {
    body.kcoa-home-page .kcoa-mobile-topbar {
        padding-right: 14px;
        padding-left: 14px;
    }

    body.kcoa-home-page .kcoa-mobile-tile {
        min-height: 112px;
    }
}

@media (max-width: 575.98px) {

    body.public-theme .kcoa-home .hero-title {
        font-size: clamp(2.55rem, 14vw, 4rem);
    }

    body.public-theme .kcoa-home .meta-pill,
    body.public-theme .kcoa-home .btn-conference {
        width: 100%;
    }

    body.public-theme .site-footer-inner {
        grid-template-columns: 1fr auto;
    }

    body.public-theme .site-footer-mark {
        display: none;
    }

    body.public-theme .site-footer p {
        text-align: left;
    }

    body.public-theme .card:hover,
    body.public-theme .kcoa-home .btn-conference:hover {
        transform: none;
    }
}

@media (min-width: 992px) {
    body.public-theme .kcoa-home .hero-summary {
        transform: translateY(10px);
    }

    body.public-theme .kcoa-home .info-grid,
    body.public-theme .kcoa-home .subtheme-grid {
        gap: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

body.public-theme .conference-header h1,
body.public-theme .conference-header h2,
body.public-theme .conference-header h3 {
    color: #fff !important;
}

@media (max-width: 767.98px) {
    body.kcoa-home-page .kcoa-mobile-topbar {
        min-height: 108px;
        padding-top: 8px;
    }

    body.kcoa-home-page .kcoa-mobile-topline {
        position: relative;
        justify-content: center;
        margin-bottom: 5px;
    }

    body.kcoa-home-page .kcoa-mobile-topline > img {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    body.kcoa-home-page .kcoa-mobile-actions {
        position: absolute;
        top: 8px;
        right: 0;
    }

    body.kcoa-home-page .kcoa-mobile-title {
        max-width: 100%;
        color: #17351b;
        font-size: .72rem;
        line-height: 1.4;
        text-align: center;
    }

    body.kcoa-home-page .kcoa-mobile-icon-action,
    body.kcoa-home-page .kcoa-mobile-tile-icon,
    body.kcoa-home-page .kcoa-mobile-bottom i {
        color: #d5a224 !important;
    }

    body.kcoa-home-page[data-theme="dark"] .kcoa-mobile-icon-action,
    body.kcoa-home-page[data-theme="dark"] .kcoa-mobile-tile-icon,
    body.kcoa-home-page[data-theme="dark"] .kcoa-mobile-bottom i {
        color: #ffd447 !important;
    }
}

@media (max-width: 359.98px) {
    body.kcoa-home-page .kcoa-mobile-topbar {
        padding-right: 10px;
        padding-left: 10px;
    }

    body.kcoa-home-page .kcoa-mobile-topline > img {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    body.kcoa-home-page .kcoa-mobile-actions {
        gap: 4px;
    }

    body.kcoa-home-page .kcoa-mobile-icon-action {
        width: 30px;
        height: 30px;
        font-size: 1.08rem;
    }

    body.kcoa-home-page .kcoa-mobile-title {
        font-size: .64rem;
    }
}

@media (max-width: 767.98px) {
    body.kcoa-home-page .kcoa-mobile-topbar {
        min-height: 150px;
        padding-top: 10px;
    }

    body.kcoa-home-page .kcoa-mobile-topline > img {
        width: 84px;
        height: 84px;
        flex-basis: 84px;
    }

    body.kcoa-home-page .kcoa-mobile-title {
        font-size: .78rem;
        line-height: 1.45;
    }
}

@media (max-width: 359.98px) {
    body.kcoa-home-page .kcoa-mobile-topbar {
        min-height: 138px;
    }

    body.kcoa-home-page .kcoa-mobile-topline > img {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
    }
}
