:root {
    --site-navy: #0b1f33;
    --site-navy-soft: #173b5c;
    --site-emerald: #00a67a;
    --site-emerald-dark: #008b68;
    --site-canvas: #f3f6f9;
    --site-surface: #ffffff;
    --site-border: #dce4ec;
    --site-text: #152536;
    --site-muted: #627386;
    --site-radius: 12px;
    --site-shadow: 0 10px 28px rgba(11, 31, 51, .08);
}

body {
    background: var(--site-canvas);
    color: var(--site-text);
}

/*
 * Page sections below the header are positioned, so they capture the pointer
 * over anything that hangs out of the header even though the account dropdown
 * sits on a higher z-index. The dropdown stayed visible (those sections have no
 * background) but moving onto it landed on the page instead, which dropped the
 * hover and shut the menu. Giving the header its own layer keeps the dropdown
 * reachable. Kept below Bootstrap's modal (1050) so dialogs still cover it.
 */
.header-2 {
    position: relative;
    z-index: 1000;
}

.header-2 .headerbox {
    border-bottom: 3px solid var(--site-emerald);
    background: var(--site-surface);
    box-shadow: 0 2px 12px rgba(11, 31, 51, .06);
    padding: 12px 0;
}

.site-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.site-header-logo img {
    display: block;
    max-height: 62px;
    width: auto;
}

.site-header-nav {
    flex: 1 1 auto;
    width: auto;
    min-height: 0;
    border: 0;
    background: transparent;
}

.site-header-nav .site-nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2px 16px;
    float: none;
    margin: 0;
    text-align: center;
}

.site-header-nav .site-nav-menu > li {
    display: block;
    float: none;
    margin: 0;
}

.site-header-nav .site-nav-menu > li > a {
    padding: 8px 2px;
    white-space: nowrap;
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.site-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.site-header-btn-primary {
    border: 1px solid var(--site-emerald);
    background: var(--site-emerald);
    color: #fff;
}

.site-header-btn-primary:hover {
    border-color: var(--site-emerald-dark);
    background: var(--site-emerald-dark);
    color: #fff;
    text-decoration: none;
}

.site-header-btn-ghost {
    border: 1px solid #cad6e0;
    background: #fff;
    color: var(--site-navy-soft);
}

.site-header-btn-ghost:hover {
    border-color: var(--site-navy-soft);
    background: #f7fafc;
    color: var(--site-navy);
    text-decoration: none;
}

.site-header-account {
    position: relative;
}

.site-header-account-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid #cad6e0;
    border-radius: 7px;
    background: #fff;
    color: var(--site-navy-soft);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.site-header-account-toggle:hover {
    border-color: var(--site-navy-soft);
    color: var(--site-navy);
    text-decoration: none;
}

.site-header-account-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 10001;
    min-width: 190px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    border: 1px solid var(--site-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--site-shadow);
}

.site-header-account:hover .site-header-account-menu,
.site-header-account:focus-within .site-header-account-menu {
    display: block;
}

.site-header-account-menu li {
    display: block;
}

.site-header-account-menu li a {
    display: block;
    padding: 10px 14px;
    color: var(--site-navy);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.site-header-account-menu li a:hover {
    background: #f1fbf7;
    color: var(--site-emerald-dark);
}

.header-2 .mainmenu .sf-menu > li > a,
.header-2 .mainmenu .sf-menu > li.current > a {
    color: var(--site-navy);
    font-weight: 700;
}

.header-2 .mainmenu .sf-menu > li > a:hover,
.header-2 .mainmenu .sf-menu > li.current > a:hover {
    color: var(--site-emerald);
}

.header-2 .mainmenu .sf-menu ul {
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: 8px;
    box-shadow: var(--site-shadow);
}

.header-2 .mainmenu .sf-menu ul li {
    background: #fff;
}

.header-2 .mainmenu .sf-menu ul li a {
    color: var(--site-navy);
}

.header-2 .mainmenu .sf-menu ul li a:hover {
    background: #f1fbf7;
    color: var(--site-emerald-dark);
}

/* Header always scrolls with the page — never sticky/fixed */
.sticky-wrapper,
.is-sticky,
.is-sticky .mainmenu,
.header-2 .is-sticky,
.header-2 .is-sticky .mainmenu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    height: auto !important;
}

.content-info {
    background: var(--site-canvas);
}

.content-info .container {
    position: relative;
}

.panel-box,
.info-panel {
    border-color: var(--site-border);
}

.panel-box {
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: var(--site-surface);
    box-shadow: var(--site-shadow);
}

.panel-box .titles {
    border-bottom: 1px solid var(--site-border);
    background: #fff;
}

.panel-box .titles h4,
.panel-box .titles h3 {
    color: var(--site-navy);
    font-weight: 800;
}

.panel-box .titles:before,
.panel-box .titles:after {
    background: var(--site-emerald);
}

.info-panel {
    background: #fff;
}

.form-theme input[type="radio"],
.form-theme input[type="checkbox"],
.content-info input[type="radio"],
.content-info input[type="checkbox"] {
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin-bottom: 0 !important;
}

.form-theme label,
.content-info label {
    color: var(--site-navy-soft);
    font-weight: 700;
}

.form-control,
.form-theme .form-control,
.content-info select,
.content-info input[type="text"],
.content-info input[type="email"],
.content-info input[type="password"],
.content-info input[type="date"],
.content-info input[type="number"],
.content-info textarea {
    min-height: 42px;
    border: 1px solid #cad6e0;
    border-radius: 7px;
    background: #fff;
    box-shadow: none;
    color: var(--site-text);
}

.content-info textarea {
    min-height: 100px;
}

.form-control:focus,
.content-info select:focus,
.content-info input:focus,
.content-info textarea:focus {
    border-color: var(--site-emerald);
    box-shadow: 0 0 0 3px rgba(0, 166, 122, .14);
}

.btn,
.bnt {
    border-radius: 7px;
    font-weight: 700;
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.btn-primary,
.btn-primary:focus {
    border-color: var(--site-emerald);
    background: var(--site-emerald);
    color: #fff;
}

.btn-primary:hover {
    border-color: var(--site-emerald-dark);
    background: var(--site-emerald-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-default,
.btn-default:focus {
    border-color: #cbd7e1;
    background: #fff;
    color: var(--site-navy-soft);
}

.btn-default:hover {
    border-color: var(--site-navy-soft);
    background: #f7fafc;
    color: var(--site-navy);
}

.table,
.table-striped,
.result-point {
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: 9px;
    background: #fff;
}

.table thead th,
.point-table-head th {
    border-bottom: 1px solid var(--site-border);
    background: #eef4f7;
    color: var(--site-navy-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.table > tbody > tr > td,
.table > tbody > tr > th {
    border-top-color: var(--site-border);
    color: var(--site-text);
    vertical-align: middle;
}

.table-striped > tbody > tr:nth-of-type(odd),
.table-striped tbody tr:nth-of-type(odd) {
    background: #fbfcfd;
}

.section-title {
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .16);
}

.section-title:before {
    background: rgba(11, 31, 51, .7);
}

.section-title h1 {
    font-weight: 800;
}

.clear-title {
    color: var(--site-navy);
    font-weight: 800;
}

.clear-title:after {
    background: var(--site-emerald);
}

.menu-ul-container .list li {
    border-bottom-color: var(--site-border);
}

.menu-ul-container .list li a,
.menu-ul-container .list li i {
    color: var(--site-navy-soft);
}

.menu-ul-container .list li:hover,
.menu-ul-container .list .active-li {
    background: #edfbf6 !important;
}

.menu-ul-container .list .active-li {
    border-left: 3px solid var(--site-emerald);
}

.menu-ul-container .list li:hover a,
.menu-ul-container .list li:hover i,
.menu-ul-container .list .active-li a,
.menu-ul-container .list .active-li i {
    color: var(--site-emerald-dark);
}

.help-block,
.text-muted {
    color: var(--site-muted) !important;
}

#footer,
#footer .top-footer {
    background: var(--site-navy);
    color: #d6e1e9;
}

.site-footer {
    padding: 28px 0 22px !important;
    font-size: 14px;
    line-height: 1.55;
}

.site-footer-inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.site-footer-logo img {
    display: inline-block;
    max-height: 88px;
    width: auto;
    margin-bottom: 14px;
}

.site-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    margin-bottom: 16px;
}

.site-footer-links a {
    color: #e5f7f1;
    font-weight: 700;
    text-decoration: none;
}

.site-footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.site-footer-disclaimer {
    margin: 0 0 12px;
    color: #b8c7d4;
    font-size: 13px;
}

.site-footer-copy {
    margin: 0;
    color: #93a7b8;
    font-size: 12px;
}

.legal-page .legal-document h3 {
    margin: 24px 0 10px;
    color: var(--site-navy);
    font-size: 18px;
    font-weight: 800;
}

.legal-page .legal-document p,
.legal-page .legal-document li {
    color: var(--site-text);
    font-size: 15px;
    line-height: 1.6;
}

.legal-page .legal-document ul {
    margin: 0 0 14px 18px;
    padding: 0;
}

.legal-page .legal-document a {
    color: var(--site-emerald-dark);
    font-weight: 700;
}

@media (max-width: 767px) {
    .panel-box {
        border-radius: 9px;
    }

    .table-responsive {
        border: 0;
    }
}

/* Public homepage */
.home-landing {
    background: var(--site-canvas);
}

.home-hero-stack {
    position: relative;
    margin: 22px 0 0;
    padding: 0 4px 28px;
    min-height: 520px;
}

.home-banner {
    position: absolute;
    top: 0;
    right: 4px;
    bottom: 0;
    left: 4px;
    z-index: 0;
    overflow: hidden;
    border-radius: 14px;
}

.home-banner:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 31, 51, .35) 0%, rgba(11, 31, 51, .55) 55%, rgba(11, 31, 51, .72) 100%);
    pointer-events: none;
    z-index: 1;
}

.home-banner-slider,
.home-banner-slider .slick-list,
.home-banner-slider .slick-track {
    height: 100% !important;
    min-height: 100%;
}

.home-banner-slider .item-slider {
    height: 100% !important;
    min-height: 520px;
    position: relative;
    background-position: center center !important;
    background-size: cover !important;
}

.home-banner-slider .item-slider:before {
    background: rgba(11, 31, 51, .15) !important;
}

.home-banner-slider .slick-prev,
.home-banner-slider .slick-next,
.home-hero-stack > .slick-prev,
.home-hero-stack > .slick-next {
    z-index: 10 !important;
    pointer-events: auto;
}

.home-hero-stack > .slick-prev {
    left: 24px;
}

.home-hero-stack > .slick-next {
    right: 24px;
}

.home-hero-caption {
    position: relative;
    z-index: 3;
    max-width: 980px;
    margin: 0 auto;
    padding: 34px 20px 18px;
    pointer-events: none;
}

.home-hero-caption .container {
    padding: 0;
}

.home-hero-caption .home-hero-kicker {
    color: #8ef0d4;
}

.home-hero-caption .home-intro-title {
    color: #fff;
    font-size: 38px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}

.home-hero-lead-on-image {
    display: block;
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 17px;
    line-height: 1.55;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .35);
}

.home-intro {
    position: relative;
    z-index: 3;
    margin-top: 0;
    padding: 0;
    pointer-events: none;
}

.home-intro .container {
    pointer-events: none;
}

.home-intro-card,
.home-intro a,
.home-intro button {
    pointer-events: auto;
}

.home-intro-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 22px 24px 20px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 16px;
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--site-shadow);
}

.home-hero-kicker {
    display: block;
    margin: 0 0 8px;
    color: var(--site-emerald-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.home-intro-title {
    display: block;
    margin: 0 0 12px;
    color: var(--site-navy);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
}

.home-intro-title:before {
    display: none !important;
}

.home-intro-lead {
    display: block;
    margin: 0 0 22px;
    color: var(--site-muted);
    font-size: 17px;
    line-height: 1.55;
}

.home-action-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 4px;
}

.home-action-card {
    display: block;
    min-height: 132px;
    padding: 16px 16px 14px;
    border: 1px solid var(--site-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--site-shadow);
    color: var(--site-text);
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.home-action-card:hover,
.home-action-card:focus {
    transform: translateY(-2px);
    border-color: #b8d9ce;
    box-shadow: 0 14px 30px rgba(11, 31, 51, .12);
    color: var(--site-text);
    text-decoration: none;
}

.home-action-card-primary {
    border-color: rgba(0, 166, 122, .35);
    background: linear-gradient(180deg, #f1fbf7 0%, #fff 100%);
}

.home-action-icon {
    display: block;
    margin-bottom: 8px;
    color: var(--site-emerald);
    font-size: 22px;
    line-height: 1;
}

.home-action-title {
    display: block;
    margin-bottom: 6px;
    color: var(--site-navy);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.home-action-desc {
    display: block;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.45;
}

.home-intro-note {
    display: block;
    margin: 18px 0 0;
    color: var(--site-muted);
    font-size: 14px;
}

.home-intro-note a {
    color: var(--site-emerald-dark);
    font-weight: 700;
}

.home-page .home-section {
    padding: 56px 0;
}

.home-page .home-section-alt {
    background: #eef3f7;
}

.home-section-head {
    max-width: 680px;
    margin: 0 auto 28px;
    text-align: center;
}

.home-section-head h2 {
    margin: 0 0 8px;
    color: var(--site-navy);
    font-size: 30px;
    font-weight: 800;
}

.home-section-head p {
    margin: 0;
    color: var(--site-muted);
    font-size: 16px;
}

.home-card-grid {
    display: grid;
    gap: 18px;
}

.home-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-card-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-start-card,
.home-format-card {
    height: 100%;
    padding: 22px 22px 20px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: var(--site-surface);
    box-shadow: var(--site-shadow);
}

.home-start-card {
    display: flex;
    flex-direction: column;
    color: var(--site-text);
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.home-start-card:hover,
.home-start-card:focus {
    transform: translateY(-2px);
    border-color: #b8d9ce;
    box-shadow: 0 14px 30px rgba(11, 31, 51, .12);
    color: var(--site-text);
    text-decoration: none;
}

.home-start-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--site-emerald-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.home-start-card h3,
.home-format-card h3 {
    margin: 0 0 10px;
    color: var(--site-navy);
    font-size: 22px;
    font-weight: 800;
}

.home-start-card p,
.home-format-card p {
    margin: 0 0 16px;
    color: var(--site-muted);
    font-size: 15px;
    line-height: 1.55;
}

.home-card-link,
.home-inline-link {
    display: inline-block;
    margin-top: auto;
    color: var(--site-emerald-dark);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.home-card-link i {
    margin-left: 4px;
}

.home-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-step {
    padding: 24px 22px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: #fff;
    box-shadow: var(--site-shadow);
}

.home-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--site-emerald);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.home-step h3 {
    margin: 0 0 8px;
    color: var(--site-navy);
    font-size: 20px;
    font-weight: 800;
}

.home-step p {
    margin: 0;
    color: var(--site-muted);
    font-size: 15px;
    line-height: 1.55;
}

.home-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-feature {
    padding: 20px 18px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: #fff;
}

.home-feature i {
    display: block;
    margin-bottom: 10px;
    color: var(--site-emerald);
    font-size: 22px;
}

.home-feature h4 {
    margin: 0 0 8px;
    color: var(--site-navy);
    font-size: 17px;
    font-weight: 800;
}

.home-feature h4 a {
    color: inherit;
    text-decoration: none;
}

.home-feature h4 a:hover,
.home-feature h4 a:focus {
    color: var(--site-emerald);
    text-decoration: none;
}

.home-feature p {
    margin: 0;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.5;
}

.home-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding: 24px 26px;
    border: 1px solid rgba(0, 166, 122, .25);
    border-radius: var(--site-radius);
    background: linear-gradient(135deg, #f1fbf7 0%, #fff 100%);
}

.home-cta-band h3 {
    margin: 0 0 6px;
    color: var(--site-navy);
    font-size: 24px;
    font-weight: 800;
}

.home-cta-band p {
    margin: 0;
    color: var(--site-muted);
}

.home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Why OPH — nav highlight */
.site-nav-why {
    color: var(--site-emerald-dark) !important;
    font-weight: 800;
}

/* Why OPH — homepage banner */
.oph-why-banner {
    position: relative;
    padding: 36px 0 40px;
    background:
        radial-gradient(ellipse 80% 60% at 10% 50%, rgba(0, 166, 122, .18) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 90% 30%, rgba(23, 59, 92, .12) 0%, transparent 50%),
        linear-gradient(135deg, #0b1f33 0%, #173b5c 52%, #0f2842 100%);
    color: #fff;
    overflow: hidden;
}

.oph-why-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 18px,
        rgba(255, 255, 255, .025) 18px,
        rgba(255, 255, 255, .025) 19px
    );
    pointer-events: none;
}

.oph-why-banner .container {
    position: relative;
    z-index: 1;
}

.oph-why-banner-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 28px 36px;
    align-items: center;
}

.oph-why-banner-kicker {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(0, 220, 170, .95);
}

.oph-why-banner-title {
    margin: 0 0 12px;
    font-size: clamp(24px, 3.2vw, 34px);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}

.oph-why-banner-text {
    margin: 0 0 18px;
    max-width: 52ch;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .82);
}

.oph-why-banner-btn {
    border-color: var(--site-emerald);
    background: var(--site-emerald);
    font-weight: 700;
}

.oph-why-banner-btn:hover,
.oph-why-banner-btn:focus {
    border-color: #00c896;
    background: #00c896;
    color: #fff;
}

.oph-why-banner-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.oph-why-banner-tags li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    font-size: 13px;
    line-height: 1.35;
    color: rgba(255, 255, 255, .88);
}

.oph-why-banner-tags a.oph-why-tag-link {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.oph-why-banner-tags a.oph-why-tag-link:hover,
.oph-why-banner-tags a.oph-why-tag-link:focus {
    color: #fff;
    text-decoration: none;
}

.oph-why-tag {
    display: inline-block;
    flex-shrink: 0;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #fff;
}

.oph-why-tag--hero {
    background: linear-gradient(135deg, var(--site-emerald) 0%, #00c896 100%);
    box-shadow: 0 0 18px rgba(0, 166, 122, .45);
}

.home-feature--highlight {
    border-color: rgba(0, 166, 122, .35);
    background: linear-gradient(135deg, #f1fbf7 0%, #fff 100%);
    box-shadow: 0 8px 24px rgba(0, 166, 122, .08);
}

.home-feature--highlight i {
    color: var(--site-emerald-dark);
}

/* Why OPH — dedicated page */
.why-oph-page {
    padding-top: 0 !important;
}

.why-oph-hero {
    padding: 48px 0 40px;
    background:
        radial-gradient(ellipse 70% 80% at 85% 20%, rgba(0, 166, 122, .14) 0%, transparent 55%),
        linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid var(--site-border);
}

.why-oph-kicker {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--site-emerald-dark);
}

.why-oph-hero h1 {
    margin: 0 0 14px;
    max-width: 18ch;
    color: var(--site-navy);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.12;
}

.why-oph-lead {
    margin: 0 0 22px;
    max-width: 62ch;
    color: var(--site-muted);
    font-size: 18px;
    line-height: 1.6;
}

.why-oph-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.why-oph-highlight-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -18px 0 36px;
    padding: 16px 18px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: #fff;
    box-shadow: 0 10px 30px rgba(11, 31, 51, .06);
}

.why-oph-pill {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: #f1f5f9;
    color: var(--site-navy-soft);
    font-size: 13px;
    font-weight: 700;
}

.why-oph-pill--featured {
    background: linear-gradient(135deg, var(--site-emerald) 0%, #00c896 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 166, 122, .28);
}

.why-oph-section {
    margin-bottom: 42px;
}

.why-oph-section--alt {
    margin-left: -15px;
    margin-right: -15px;
    padding: 34px 15px 38px;
    background: #f8fafc;
    border-top: 1px solid var(--site-border);
    border-bottom: 1px solid var(--site-border);
}

.why-oph-section-head {
    max-width: 720px;
    margin-bottom: 22px;
}

.why-oph-section-head h2 {
    margin: 8px 0 10px;
    color: var(--site-navy);
    font-size: 28px;
    font-weight: 800;
}

.why-oph-section-head p {
    margin: 0;
    color: var(--site-muted);
    font-size: 16px;
    line-height: 1.6;
}

.why-oph-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.why-oph-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-oph-card {
    position: relative;
    padding: 22px 20px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: #fff;
}

.why-oph-section--alt .why-oph-card {
    background: #fff;
}

.why-oph-card--spotlight {
    border-color: rgba(0, 166, 122, .35);
    background: linear-gradient(135deg, #f1fbf7 0%, #fff 72%);
    box-shadow: 0 10px 28px rgba(0, 166, 122, .1);
}

.why-oph-card-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--site-emerald);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.why-oph-card h3 {
    margin: 0 0 10px;
    color: var(--site-navy);
    font-size: 19px;
    font-weight: 800;
}

.why-oph-card p {
    margin: 0;
    color: var(--site-muted);
    font-size: 15px;
    line-height: 1.55;
}

.why-oph-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--site-emerald-dark);
}

.why-oph-link:hover,
.why-oph-link:focus {
    color: var(--site-navy);
    text-decoration: underline;
}

.why-oph-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.why-oph-feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: #fff;
}

.why-oph-feature-item i {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 166, 122, .12);
    color: var(--site-emerald-dark);
    font-size: 16px;
    line-height: 36px;
    text-align: center;
}

.why-oph-feature-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--site-navy);
    font-size: 16px;
}

.why-oph-feature-item span {
    display: block;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.5;
}

.why-oph-compare {
    margin-bottom: 28px;
}

.why-oph-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.why-oph-compare-col {
    padding: 18px 20px;
    border-radius: var(--site-radius);
}

.why-oph-compare-col h4 {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 800;
}

.why-oph-compare-col ul {
    margin: 0;
    padding-left: 18px;
}

.why-oph-compare-col li {
    margin-bottom: 8px;
    line-height: 1.45;
}

.why-oph-compare-col--them {
    background: #f8fafc;
    border: 1px solid var(--site-border);
    color: var(--site-muted);
}

.why-oph-compare-col--them h4 {
    color: #64748b;
}

.why-oph-compare-col--us {
    background: linear-gradient(135deg, #f1fbf7 0%, #fff 100%);
    border: 1px solid rgba(0, 166, 122, .3);
}

.why-oph-compare-col--us h4 {
    color: var(--site-emerald-dark);
}

.why-oph-compare-col--us li {
    color: var(--site-navy-soft);
}

.why-oph-cta {
    margin-bottom: 36px;
}

@media (max-width: 991px) {
    .site-header-bar {
        flex-wrap: wrap;
    }

    .site-header-nav {
        order: 3;
        flex: 1 1 100%;
    }

    .site-header-nav .site-nav-menu {
        justify-content: flex-start;
    }

    .home-hero-stack {
        min-height: 460px;
    }

    .home-hero-caption {
        padding: 24px 12px 12px;
    }

    .home-hero-caption .home-intro-title {
        font-size: 30px;
    }

    .home-hero-lead-on-image {
        font-size: 15px;
    }

    .home-banner-slider .item-slider {
        min-height: 460px;
    }

    .home-intro {
        padding-top: 0;
    }

    .home-intro {
        margin-top: 0;
        padding-top: 24px;
    }

    .home-action-grid,
    .home-card-grid-3,
    .home-card-grid-4,
    .home-steps,
    .home-feature-grid {
        grid-template-columns: 1fr;
    }

    .home-intro-title {
        font-size: 28px;
    }

    .home-cta-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .oph-why-banner-inner {
        grid-template-columns: 1fr;
    }

    .oph-why-banner-tags {
        grid-template-columns: 1fr;
    }

    .why-oph-card-grid,
    .why-oph-card-grid-3,
    .why-oph-feature-list,
    .why-oph-compare-grid {
        grid-template-columns: 1fr;
    }

    .why-oph-hero h1 {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .home-intro-card {
        padding: 22px 18px 18px;
    }

    .home-page .home-section {
        padding: 42px 0;
    }
}

.dashboard-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

@media (max-width: 991px) {
    .dashboard-actions {
        grid-template-columns: 1fr;
    }
}

.pool-share-qr-wrap canvas {
    max-width: 180px;
    height: auto;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 6px;
    background: #fff;
}

/* Pick heatmap */
.pick-heatmap {
    margin: 12px 16px 0;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}
.pick-heatmap-bar {
    display: flex;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    background: #e5e7eb;
}
.pick-heatmap-away { background: #2563eb; display: block; height: 100%; }
.pick-heatmap-home { background: #18163a; display: block; height: 100%; }
.pick-heatmap-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #4b5563;
    margin-top: 6px;
}
.pick-heatmap-you { font-size: 13px; margin: 8px 0 0; }
.pick-heatmap-contrarian {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: 6px;
}

/* Pool game comments */
.pool-game-comments { margin: 10px 16px 0; }
.btn-toggle-comments {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pool-chat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--site-emerald, #00a67a);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}
.pool-comments-panel {
    margin-top: 8px;
    padding: 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
}
.pool-comments-panel[hidden] {
    display: none !important;
}
.pool-comments-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    max-height: 180px;
    overflow-y: auto;
}
.pool-comments-truncated {
    margin: 0 0 8px;
    font-size: 12px;
}
.pool-comments-list li {
    padding: 6px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 13px;
}
.pool-comments-form { display: flex; gap: 8px; }
.pool-comments-form .form-control { flex: 1; }

/* Sports Central */
.sports-central {
    background: linear-gradient(180deg, #dde5ee 0%, #eef2f7 220px, var(--site-canvas) 220px);
}

.sports-central .sc-greeting {
    margin-bottom: 18px;
    border: none;
    background: linear-gradient(135deg, #0b1f33 0%, #173b5c 52%, #1e4a72 100%);
    box-shadow: 0 16px 40px rgba(11, 31, 51, .2);
}

.sports-central .sc-greeting .info-panel {
    padding: 28px 32px;
    background: transparent;
}

.sports-central .sc-greeting .sc-eyebrow {
    margin-bottom: 8px;
    color: #7dd3b0;
    font-weight: 700;
}

.sports-central .sc-greeting h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
}

.sports-central .sc-greeting .text-muted {
    color: rgba(255, 255, 255, .74) !important;
}

.sports-central .sc-stat-row {
    margin-bottom: 4px;
}

.sports-central .sc-stat-card {
    margin-bottom: 18px;
    border: 1px solid #c5d3e0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    box-shadow: 0 8px 22px rgba(11, 31, 51, .08);
}

.sports-central .sc-stat-card .info-panel {
    padding: 22px 18px;
    background: transparent;
}

.sports-central .sc-stat-card h3 {
    color: var(--site-navy);
    font-size: 32px;
    font-weight: 800;
}

.sports-central .sc-stat-card p {
    margin-top: 4px;
    color: #5b6b7c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.sports-central .sc-stat-card--picks {
    border-top: 4px solid var(--site-emerald);
}

.sports-central .sc-stat-card--accuracy {
    border-top: 4px solid #2563eb;
}

.sports-central .sc-stat-vs {
    font-size: .6em;
    font-weight: 600;
    color: var(--site-muted, #64748b);
    text-transform: uppercase;
    letter-spacing: .06em;
    vertical-align: middle;
}

.sports-central .sc-stat-card--achievements {
    border-top: 4px solid #7c3aed;
}

.sports-central .sc-section-card {
    margin-bottom: 18px;
    border-color: #c5d3e0;
    background: #f7f9fc;
    box-shadow: 0 10px 26px rgba(11, 31, 51, .07);
}

.sports-central .sc-section-card .titles {
    padding: 14px 18px;
    border-bottom: 1px solid #c5d3e0;
    background: linear-gradient(180deg, #e8eef5 0%, #dfe7f0 100%);
}

.sports-central .sc-section-card .titles h4 {
    margin: 0;
    color: var(--site-navy);
    font-size: 16px;
    font-weight: 800;
}

.sports-central .sc-section-card .info-panel {
    padding: 18px 20px;
    background: #fff;
}

.sports-central .sc-pools-card .table thead th {
    border-bottom: 2px solid #d7e0ea;
    background: #eef3f8;
    color: var(--site-navy-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.sports-central .sc-pools-card .table-striped > tbody > tr:nth-of-type(odd) {
    background: #f8fafc;
}

.sports-central .sc-pools-card .table-striped > tbody > tr:nth-of-type(even) {
    background: #fff;
}

.sports-central .picks-deadline-banner {
    border-color: #b9d4c8;
    background: linear-gradient(180deg, #edf8f3 0%, #ffffff 100%);
}

.sports-central .sc-shark-card {
    margin-bottom: 18px;
    border: none;
    background: transparent;
    box-shadow: none;
}

.sports-central .sc-shark-card .info-panel {
    padding: 0;
    background: transparent;
}

.sports-central aside .panel-box {
    border-color: #c5d3e0;
    background: linear-gradient(180deg, #eef3f8 0%, #e4ebf2 100%);
    box-shadow: 0 10px 24px rgba(11, 31, 51, .08);
}

.sports-central aside .panel-box .titles {
    background: linear-gradient(180deg, #173b5c 0%, #0b1f33 100%);
}

.sports-central aside .panel-box .titles h4 {
    color: #fff;
}

.sports-central aside .panel-box .titles:before,
.sports-central aside .panel-box .titles:after {
    background: var(--site-emerald);
}

.sports-central .menu-ul-container {
    padding: 8px 0;
    background: #f7f9fc;
}

.sports-central .menu-ul-container ul li {
    margin: 4px 10px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: background-color .15s ease;
}

.sports-central .menu-ul-container ul li a {
    color: var(--site-navy);
    font-weight: 600;
}

.sports-central .menu-ul-container ul li i {
    color: var(--site-emerald-dark);
    margin-right: 8px;
}

.sports-central .menu-ul-container ul li.active-li,
.sports-central .menu-ul-container ul li:hover {
    background: #dbeafe !important;
}

.sports-central .menu-ul-container ul li.active-li {
    border-left: 3px solid var(--site-emerald);
}

.sports-central .sc-timeline li {
    border-bottom-color: #e2e8f0;
}

.sports-central .sc-achievement-badge {
    background: linear-gradient(180deg, #eef2ff 0%, #e0e7ff 100%);
    border: 1px solid #c7d2fe;
    color: #1e3a5f;
}

.sc-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}
.sc-stat-card h3 { margin: 0; font-size: 28px; }
.sc-stat-card p { margin: 0; color: #6b7280; }
.sc-shark-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.sc-shark-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #e5e7eb;
    background: #fff;
}
.sc-shark-avatar .oph-shark-avatar-img {
    object-position: center 15%;
}
.sc-shark-quote {
    font-style: italic;
    color: #374151;
    border-left: 3px solid #2563eb;
    padding-left: 12px;
    margin: 8px 0;
}
.sc-timeline { list-style: none; padding: 0; margin: 0; }
.sc-timeline li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}
.sc-timeline li > div { flex: 1; }
.sc-timeline-icon { font-size: 18px; }
.sc-achievements { display: flex; flex-wrap: wrap; gap: 10px; }
.sc-achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eef2ff;
    color: #18163a;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

/* OPH Shark pose tiles — dark vs light backgrounds */
.oph-shark-tile--dark {
    background: linear-gradient(135deg, #18163a 0%, #1e3a5f 100%);
    color: #fff;
    border-radius: 12px;
}
.oph-shark-tile--light {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(11, 31, 51, .06);
}
.oph-shark-tile--dark .home-eyebrow,
.sc-eyebrow-light { color: #93c5fd; }
.sc-shark-title-light { color: #fff; margin-top: 0; }
.sc-shark-quote-light {
    font-style: italic;
    color: rgba(255,255,255,0.9);
    border-left-color: #60a5fa;
}
.sc-shark-desc-light {
    margin-bottom: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}
.home-shark-sport-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}
.oph-shark-sport-card {
    padding: 18px 14px 16px;
    text-align: center;
}
.oph-shark-sport-card .oph-shark-pose-img {
    max-width: 120px;
    margin: 0 auto 10px;
}
.oph-shark-sport-card h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}
.oph-shark-sport-card.oph-shark-tile--light h4 { color: var(--site-navy); }
.oph-shark-sport-card.oph-shark-tile--dark h4 { color: #fff; }
.home-shark-promo {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 28px;
    padding: 28px 32px;
}
.home-shark-promo-visual {
    flex-shrink: 0;
    max-width: 160px;
}
.home-shark-promo-visual .oph-shark-pose-img { max-width: 160px; }
.home-shark-promo-copy h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}
.home-shark-promo-copy p { margin: 0; color: rgba(255,255,255,0.85); }
.home-shark-promo-copy .home-eyebrow { margin-bottom: 6px; }
.sc-shark-card .oph-shark-tile--dark,
.sc-shark-stats-card .oph-shark-tile--dark {
    padding: 20px;
    margin: -4px 0;
}
.sc-shark-stats-card { margin-top: 0; }

/* Beat OPH Shark */
.beat-shark-hero,
.shark-challenge-banner {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 28px 32px;
    margin-bottom: 20px;
}
.beat-shark-hero { margin-bottom: 24px; }
.beat-shark-hero-visual,
.shark-challenge-banner-visual,
.beat-shark-today-visual {
    flex-shrink: 0;
    max-width: 140px;
}
.beat-shark-hero-copy h1 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 32px;
    font-weight: 800;
}
.beat-shark-hero-copy p { color: rgba(255,255,255,0.85); margin-bottom: 10px; }
.beat-shark-lifetime { color: #93c5fd; }
.beat-shark-today-inner {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.beat-shark-daily-score { font-size: 16px; margin: 12px 0; }

/* How it works — three equal cards with the same transparent Shark poses used above. */
.beat-shark-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 8px;
}

.beat-shark-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100%;
    padding: 28px 22px 24px;
    border: 1px solid var(--site-border, #e5e7eb);
    border-radius: var(--site-radius-lg, 14px);
    background: #fff;
    box-shadow: 0 8px 24px rgba(11, 31, 51, .06);
}

.beat-shark-step-num {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--site-emerald, #00a67a);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.beat-shark-step-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 112px;
    margin: 8px 0 16px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 38%, #eef6ff 0%, #f8fafc 72%);
    border: 1px solid rgba(23, 59, 92, .08);
}

.beat-shark-step-visual .oph-shark-pose-img {
    position: relative;
    z-index: 1;
    width: 88px;
    max-width: 88px;
    filter: none;
}

.beat-shark-step h4 {
    margin: 0 0 8px;
    color: var(--site-navy, #0b1f33);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.beat-shark-step p {
    margin: 0;
    color: var(--site-muted, #627386);
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 991px) {
    .beat-shark-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.beat-shark-step-img { max-width: 100px; margin: 0 auto 12px; }
.beat-shark-step-card { margin-bottom: 18px; }
.shark-pick-callout {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 0;
    padding: 10px 12px;
    background: #eef2ff;
    border-radius: 8px;
    font-size: 14px;
}
.shark-pick-callout-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.shark-pick-note {
    display: block;
    margin-top: 4px;
    color: #4b5563;
    font-style: italic;
}
.shark-challenge-score { color: #93c5fd; margin-top: 8px; }

/* Homepage OPH Shark block */
.home-shark-block {
    display: flex;
    gap: 28px;
    align-items: center;
    padding: 36px 32px;
    border-radius: 12px;
}
.home-shark-visual {
    flex-shrink: 0;
    max-width: 220px;
}
.oph-shark-pose-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.2));
}
/* Drop shadow reads as a dark box on white cards — keep it on dark tiles only */
.oph-shark-tile--light .oph-shark-pose-img,
.beat-shark-today-visual .oph-shark-pose-img {
    filter: none;
}
.oph-shark-pose-img.sc-shark-pose-sm {
    max-width: 120px;
}
.home-shark-visual .oph-shark-pose-img {
    max-width: 180px;
}
.oph-shark-logo-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25));
}
.sc-shark-visual {
    flex-shrink: 0;
    max-width: 140px;
}
.oph-shark-logo-img.sc-shark-logo-sm {
    max-width: 140px;
}
.home-shark-avatar {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.35);
    background: #fff;
}
.oph-shark-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.home-shark-copy h2 { color: #fff; margin-top: 0; }
.home-shark-copy p { color: rgba(255,255,255,0.85); }
.home-shark-copy .home-eyebrow { color: #93c5fd; }
.home-shark-copy .btn-default { margin-left: 8px; }
@media (max-width: 767px) {
    .home-shark-block { flex-direction: column; text-align: center; }
    .sc-shark-inner { flex-direction: column; }
    .beat-shark-hero,
    .shark-challenge-banner,
    .beat-shark-today-inner { flex-direction: column; text-align: center; }

    .pool-form-page .game-mode-options,
    .pool-hub-page .game-mode-options {
        grid-template-columns: 1fr;
    }
}

/* Pool hub and create/edit form pages */
.pool-form-page,
.pool-hub-page {
    background: linear-gradient(180deg, #dde5ee 0%, #eef2f7 180px, var(--site-canvas) 180px);
}

.pool-form-page .panel-box,
.pool-hub-page .panel-box {
    border-color: #c5d3e0;
    box-shadow: 0 12px 30px rgba(11, 31, 51, .08);
}

.pool-form-page .panel-box .titles,
.pool-hub-page .panel-box .titles {
    padding: 14px 18px;
    border-bottom: 1px solid #c5d3e0;
    background: linear-gradient(180deg, #173b5c 0%, #0b1f33 100%);
}

.pool-form-page .panel-box .titles h4,
.pool-hub-page .panel-box .titles h3,
.pool-hub-page .panel-box .titles h4 {
    margin: 0;
    color: #fff;
}

.pool-form-page .panel-box .titles:before,
.pool-form-page .panel-box .titles:after,
.pool-hub-page .panel-box .titles:before,
.pool-hub-page .panel-box .titles:after {
    background: var(--site-emerald);
}

.pool-form-page .panel-box .info-panel {
    padding: 24px 26px;
    background: #f7f9fc;
}

.pool-hub-page .panel-box .info-panel {
    background: #fff;
}

.pool-hub-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 18px 0 22px;
    padding: 14px 16px;
    border: 1px solid #d7e2ec;
    border-radius: 10px;
    background: #f7f9fc;
}

.pool-hub-hero {
    margin: 0 0 20px;
    padding: 20px 22px;
    border: 1px solid #c5d3e0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .06);
}

.pool-hub-hero__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e8eef5;
}

.pool-hub-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    border: 1px solid #e8eef5;
    border-radius: 10px;
    overflow: hidden;
}

.pool-hub-hero__stats div {
    min-width: 0;
    padding: 12px 14px;
    border-right: 1px solid #e8eef5;
    border-bottom: 1px solid #e8eef5;
    background: #f8fafc;
}

.pool-hub-hero__stats div:nth-child(2n) {
    border-right: 0;
}

.pool-hub-hero__stats div:nth-last-child(-n+2) {
    border-bottom: 0;
}

.pool-hub-hero__stats dt {
    margin: 0 0 4px;
    color: #5b7084;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pool-hub-hero__stats dd {
    margin: 0;
    color: #173b5c;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.pool-hub-hero__desc {
    margin: 14px 0 0;
    color: #5b7084;
    font-size: 14px;
    line-height: 1.5;
}

.pool-hub-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 0 20px;
}

.pool-hub-nav__group {
    padding: 16px 18px 18px;
    border: 1px solid #b7e4d4;
    border-left: 5px solid #00b386;
    border-radius: 12px;
    background: #f3fdf8;
}

.pool-hub-nav__group--admin {
    background: #f4f7fb;
    border-color: #c5d3e0;
    border-left-color: #173b5c;
}

.pool-hub-nav__label {
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(23, 59, 92, .12);
    color: #173b5c;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

.pool-hub-nav__group--admin .pool-hub-nav__label {
    color: #173b5c;
}

.pool-hub-nav__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pool-hub-nav__links .btn {
    margin: 0;
}

.pool-hub-nav__group--admin .btn-default {
    border: 1px solid #c5d3e0;
    background: #fff;
    color: #173b5c;
}

.pool-hub-nav__form {
    display: inline-flex;
    margin: 0;
}

.pool-hub-nav__hint {
    margin: 12px 0 0;
    padding-top: 10px;
    border-top: 1px dashed #c5d3e0;
    color: #5b7084;
    font-size: 13px;
    line-height: 1.4;
}

.pool-hub-drawer {
    margin: 0 0 18px;
    border: 1px solid #d7e2ec;
    border-radius: 10px;
    background: #fff;
}

.pool-hub-drawer > summary {
    padding: 12px 16px;
    color: #173b5c;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.pool-hub-drawer > summary::-webkit-details-marker {
    display: none;
}

.pool-hub-drawer > summary::before {
    content: "▸ ";
    display: inline-block;
    transition: transform .15s ease;
}

.pool-hub-drawer[open] > summary::before {
    transform: rotate(90deg);
}

.pool-hub-drawer__body {
    padding: 0 16px 16px;
    border-top: 1px solid #e8eef5;
}

.pool-hub-drawer--admin {
    margin-top: 22px;
}

.pool-hub-roster {
    margin-top: 22px;
    padding: 18px 20px;
    border: 1px solid #d7e2ec;
    border-radius: 12px;
    background: #fff;
}

.pool-hub-roster__head h5 {
    margin: 0 0 4px;
}

.pool-hub-roster__head .text-muted {
    margin-bottom: 0;
}

.pool-hub-roster__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 16px;
}

.pool-hub-roster__chip {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e8eef5;
    color: #173b5c;
    font-size: 12px;
    font-weight: 700;
}

.pool-hub-roster__chip--ok {
    background: #dcfce7;
    color: #166534;
}

.pool-hub-roster__chip--warn {
    background: #fef3c7;
    color: #92400e;
}

.pool-hub-roster__subhead {
    margin: 18px 0 8px;
    color: #173b5c;
    font-size: 14px;
    font-weight: 800;
}

.pool-hub-roster__table {
    margin-bottom: 0;
}

.pool-hub-roster__self-note {
    margin: 12px 0 0;
}

@media (max-width: 767px) {
    .pool-hub-hero__stats {
        grid-template-columns: 1fr;
    }

    .pool-hub-hero__stats div {
        border-right: 0;
    }

    .pool-hub-hero__stats div:nth-last-child(-n+2) {
        border-bottom: 1px solid #e8eef5;
    }

    .pool-hub-hero__stats div:last-child {
        border-bottom: 0;
    }
}

.pool-hub-actions .btn {
    margin: 0;
}

.pool-hub-actions__form {
    display: inline-flex;
    margin: 0;
}

.pool-hub-actions__status {
    margin: 0;
}

.pool-hub-details p {
    margin-bottom: 8px;
}

.pool-pick-sheets-hub-intro {
    margin-bottom: 16px;
}

.pool-pick-sheet-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.pool-pick-sheet-card {
    border: 1px solid #d7e2ec;
    border-radius: 10px;
    padding: 18px;
    background: #f7f9fc;
}

.pool-pick-sheet-card--admin {
    background: #fff;
    border-color: #c5d3e0;
}

.pool-pick-sheet-card__badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 10px;
    border-radius: 999px;
    background: #e8eef5;
    color: #173b5c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pool-pick-sheet-card__badge--admin {
    background: #173b5c;
    color: #fff;
}

.pool-pick-sheet-card h6 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: #173b5c;
}

.pool-pick-sheet-help {
    margin: 14px 0 16px;
    border: 1px solid #cdd9e5;
    border-radius: 9px;
    background: #fff;
}

.pool-pick-sheet-help summary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: #173b5c;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    list-style: none;
}

.pool-pick-sheet-help summary::-webkit-details-marker {
    display: none;
}

.pool-pick-sheet-help summary::after {
    content: "Show";
    margin-left: auto;
    color: #5b7084;
    font-size: 11px;
    font-weight: 700;
}

.pool-pick-sheet-help[open] summary::after {
    content: "Hide";
}

.pool-pick-sheet-help__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 50%;
    background: #173b5c;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.pool-pick-sheet-help__body {
    padding: 0 14px 12px 40px;
    color: #465f75;
    font-size: 13px;
    line-height: 1.55;
}

.pool-pick-sheet-help__body p {
    margin: 0 0 9px;
}

.pool-pick-sheet-help__body p:last-child {
    margin-bottom: 0;
}

.pool-pick-sheet-help__body ol {
    margin: 0 0 10px;
    padding-left: 19px;
}

.pool-pick-sheet-help__body li {
    margin-bottom: 5px;
}

.pool-pick-sheet-card__subsection {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #dde5ee;
}

.pool-batch-sheet-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.pool-batch-sheet-form label {
    margin: 0;
    font-weight: 600;
}

.pool-batch-sheet-form input[type="number"] {
    width: 80px;
}

.pool-batch-sheet-table {
    margin-top: 14px;
    margin-bottom: 0;
}

.pool-paper-intake-actions {
    margin-bottom: 12px;
}

.pool-hub-page aside .panel-box,
.pool-form-page aside .panel-box {
    border-color: #c5d3e0;
    background: linear-gradient(180deg, #eef3f8 0%, #e4ebf2 100%);
    box-shadow: 0 10px 24px rgba(11, 31, 51, .08);
}

.pool-hub-page aside .panel-box .titles,
.pool-form-page aside .panel-box .titles {
    background: linear-gradient(180deg, #173b5c 0%, #0b1f33 100%);
}

.pool-hub-page aside .panel-box .titles h4,
.pool-form-page aside .panel-box .titles h4 {
    color: #fff;
}

.pool-hub-page .menu-ul-container,
.pool-form-page .menu-ul-container {
    padding: 8px 0;
    background: #f7f9fc;
}

.pool-hub-page .menu-ul-container ul li,
.pool-form-page .menu-ul-container ul li {
    margin: 4px 10px;
    padding: 10px 12px;
    border-radius: 8px;
}

.pool-hub-page .menu-ul-container ul li a,
.pool-form-page .menu-ul-container ul li a {
    color: var(--site-navy);
    font-weight: 600;
}

.pool-hub-page .menu-ul-container ul li i,
.pool-form-page .menu-ul-container ul li i {
    color: var(--site-emerald-dark);
    margin-right: 8px;
}

.pool-hub-page .menu-ul-container ul li.active-li,
.pool-hub-page .menu-ul-container ul li:hover,
.pool-form-page .menu-ul-container ul li.active-li,
.pool-form-page .menu-ul-container ul li:hover {
    background: #dbeafe !important;
}

.pool-hub-page .menu-ul-container ul li.active-li,
.pool-form-page .menu-ul-container ul li.active-li {
    border-left: 3px solid var(--site-emerald);
}

.pool-form-page .form-theme .pool-form-field {
    margin-bottom: 22px;
}

.pool-form-page .form-theme label {
    display: block;
    margin-bottom: 8px;
    color: var(--site-navy);
}

.pool-form-page .help-block {
    margin: 8px 0 0;
    color: #5b6b7c;
    font-size: 13px;
    line-height: 1.45;
}

.pool-form-page .form-theme .row:last-child {
    margin-top: 8px;
}

.game-mode-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 10px 0 4px;
}

.sport-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 10px;
    max-width: 560px;
}

.sport-option {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    min-height: 52px;
    padding: 12px 14px;
    margin: 0 !important;
    border: 1px solid #c5d3e0;
    border-radius: 10px;
    background: #fff;
    color: #173b5c;
    cursor: pointer;
    font-weight: 700;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.sport-option:hover {
    border-color: #00a67a;
    box-shadow: 0 4px 14px rgba(11, 31, 51, .07);
}

.sport-option:has(input:checked) {
    border-color: #00a67a;
    background: #edfbf6;
    color: #008b68;
    box-shadow: inset 0 0 0 1px #00a67a;
}

.sport-option input {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
    margin: 0 10px 0 0 !important;
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
}

.matchweek-picker-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin: 0 0 10px;
}

.matchweek-picker-count {
    margin: 0;
    color: #627386;
    font-size: 13px;
    font-weight: 600;
}

.matchweek-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 4px;
    max-width: 640px;
}

.matchweek-option {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    min-height: 52px;
    padding: 12px 14px;
    margin: 0 !important;
    border: 1px solid #c5d3e0;
    border-radius: 10px;
    background: #fff;
    color: #173b5c;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.35;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.matchweek-option:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 14px rgba(11, 31, 51, .07);
}

.matchweek-option:has(input:checked) {
    border-color: #2563eb;
    background: #eef4ff;
    color: #173b5c;
    box-shadow: inset 0 0 0 1px #2563eb;
}

.matchweek-option input {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
    margin: 0 10px 0 0 !important;
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
}

.game-mode-option {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    min-height: 96px;
    padding: 16px;
    margin: 0 !important;
    border: 1px solid #c5d3e0;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.game-mode-option:hover {
    border-color: #00a67a;
    box-shadow: 0 5px 16px rgba(11, 31, 51, .08);
}

.game-mode-option.is-selected {
    border-color: #00a67a;
    background: #edfbf6;
    box-shadow: inset 0 0 0 1px #00a67a;
}

.game-mode-option input {
    flex: 0 0 auto;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    margin: 2px 0 0 !important;
    appearance: auto !important;
    -webkit-appearance: radio !important;
}

.game-mode-option strong,
.game-mode-option small {
    display: block;
}

.game-mode-option strong {
    color: #173b5c;
    font-size: 15px;
}

.game-mode-option small {
    margin-top: 4px;
    color: #627386;
    line-height: 1.4;
}

.pool-game-picker-panel {
    margin-bottom: 6px;
}

.pool-game-picker-loading,
.pool-game-picker-empty {
    margin: 8px 0 12px;
}

.pool-game-picker-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin: 0 0 12px;
}

.pool-game-picker-count {
    margin: 0;
    color: #627386;
    font-size: 13px;
    font-weight: 600;
}

.pool-game-picker-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-height: 520px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #c5d3e0;
    border-radius: 10px;
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(11, 31, 51, .04);
}

.pool-game-picker-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    padding: 8px 10px;
    border: 1px solid #e8eef5;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-weight: 400;
    transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}

.pool-game-picker-row:last-child {
    border-bottom: 1px solid #e8eef5;
}

.pool-game-picker-row:hover {
    border-color: #b7c7d6;
    background: #f4f8fb;
}

.pool-game-picker-row:has(.pool-game-checkbox:checked) {
    border-color: var(--site-emerald);
    background: #edfbf6;
    box-shadow: inset 0 0 0 1px var(--site-emerald);
}

.pool-game-picker-row__text {
    flex: 1;
    min-width: 0;
    line-height: 1.35;
}

.pool-game-picker-row__matchup {
    display: block;
    color: var(--site-navy);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.pool-game-picker-row__meta {
    display: block;
    margin-top: 3px;
    color: #627386;
    font-size: 11px;
    line-height: 1.3;
}

.pool-game-picker-locked {
    color: #9b3030;
    font-weight: 600;
}

.form-theme .pool-game-picker-list input[type="checkbox"],
.form-theme .pool-game-picker-row .pool-game-checkbox {
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
    min-height: 17px !important;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    border-radius: 3px;
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    accent-color: var(--site-emerald);
}

.form-theme .pool-game-picker-row {
    width: auto;
    height: auto;
    margin-bottom: 0;
}

@media (min-width: 1200px) {
    .pool-game-picker-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .pool-game-picker-list {
        grid-template-columns: 1fr;
    }
}

/* Public pool preview (shared browse link) */
.pool-browse-preview-page {
    background: linear-gradient(180deg, #dde5ee 0%, #eef2f7 220px, var(--site-canvas) 220px);
}

.pool-browse-preview {
    background: #fff;
    border: 1px solid #c5d3e0;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(11, 31, 51, .1);
    overflow: hidden;
}

.pool-browse-hero {
    padding: 28px 30px 24px;
    background: linear-gradient(135deg, #0b1f33 0%, #173b5c 55%, #1e4a72 100%);
    color: #fff;
    border-bottom: 4px solid var(--site-emerald);
}

.pool-browse-hero-main {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.pool-browse-sport-logo {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .12);
    object-fit: contain;
}

.pool-browse-eyebrow {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
}

.pool-browse-title {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
}

.pool-browse-organizer {
    margin: 0 0 14px;
    font-size: 16px;
    color: rgba(255, 255, 255, .88);
}

.pool-browse-organizer strong {
    color: #fff;
    font-weight: 700;
}

.pool-browse-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pool-browse-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .22);
}

.pool-browse-badge-join {
    background: var(--site-emerald);
    border-color: var(--site-emerald);
    color: #0b1f33;
}

.pool-browse-badge-muted {
    background: rgba(0, 0, 0, .22);
}

.pool-browse-body {
    margin: 0;
    padding: 26px 28px 10px;
}

.pool-browse-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.pool-browse-stat {
    padding: 16px 18px;
    border: 1px solid #dbe3ec;
    border-radius: 10px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.pool-browse-stat-wide {
    grid-column: 1 / -1;
}

.pool-browse-stat-label {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #64748b;
}

.pool-browse-stat-value {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--site-navy);
    line-height: 1.35;
}

.pool-browse-stat-detail {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

.pool-browse-about,
.pool-browse-how {
    margin-bottom: 22px;
    padding: 18px 20px;
    border: 1px solid #dbe3ec;
    border-radius: 10px;
    background: #fff;
}

.pool-browse-about h2,
.pool-browse-how h2 {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
    color: var(--site-navy);
}

.pool-browse-about p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
}

.pool-browse-steps {
    margin: 0;
    padding-left: 20px;
    color: #334155;
    font-size: 15px;
    line-height: 1.65;
}

.pool-browse-steps li + li {
    margin-top: 8px;
}

.pool-browse-join-card {
    position: sticky;
    top: 20px;
    padding: 22px 20px;
    border: 1px solid #c5d3e0;
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
    box-shadow: 0 10px 24px rgba(11, 31, 51, .08);
}

.pool-browse-join-card h2 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--site-navy);
}

.pool-browse-join-lead {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.55;
    color: #475569;
}

.pool-browse-cta {
    margin-bottom: 10px;
    font-weight: 700;
}

.pool-browse-pending {
    margin: 0 0 14px;
    padding: 12px;
    border-radius: 8px;
    background: #fef3c7;
    color: #92400e;
    font-size: 14px;
}

.pool-browse-share {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #c5d3e0;
}

.pool-browse-share-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #64748b;
}

.pool-browse-share-url-wrap {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.pool-browse-share-url {
    flex: 1;
    min-width: 0;
    font-size: 12px;
    background: #fff;
}

.pool-browse-qr-wrap {
    text-align: center;
}

.pool-browse-qr-hint {
    margin: 8px 0 0;
    font-size: 12px;
    color: #64748b;
}

.pool-browse-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 28px 22px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

@media (max-width: 991px) {
    .pool-browse-join-card {
        position: static;
        margin-top: 8px;
    }
}

.organizer-display-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 10px 0 4px;
}

@media (max-width: 767px) {
    .pool-browse-hero {
        padding: 22px 18px 20px;
    }

    .pool-browse-hero-main {
        flex-direction: column;
        gap: 14px;
    }

    .pool-browse-title {
        font-size: 26px;
    }

    .pool-browse-body {
        padding: 20px 18px 8px;
    }

    .pool-browse-info-grid {
        grid-template-columns: 1fr;
    }

    .pool-browse-footer-nav {
        padding: 14px 18px 18px;
    }
}

/* Support contact page */
.support-contact-page {
    background: linear-gradient(180deg, #dde5ee 0%, #eef2f7 220px, var(--site-canvas) 220px);
}

.support-contact-form-panel {
    border-color: #c5d3e0;
    box-shadow: 0 16px 40px rgba(11, 31, 51, .1);
    overflow: hidden;
}

.support-contact-form-panel .titles {
    padding: 14px 18px;
    border-bottom: 1px solid #c5d3e0;
    background: linear-gradient(180deg, #173b5c 0%, #0b1f33 100%);
}

.support-contact-form-panel .titles h4 {
    margin: 0;
    color: #fff;
}

.support-contact-form-panel .info-panel {
    padding: 24px 26px;
    background: #fff;
}

.support-contact-lead {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}

.support-contact-optional {
    font-weight: normal;
    color: #64748b;
    font-size: 13px;
}

.support-contact-message {
    min-height: 180px;
    resize: vertical;
}

.support-contact-submit {
    min-width: 220px;
    font-weight: 700;
}

.support-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.support-contact-card {
    padding: 22px 22px 20px;
    border: 1px solid #c5d3e0;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 10px 24px rgba(11, 31, 51, .06);
}

.support-contact-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: var(--site-navy);
}

.support-contact-card p,
.support-contact-card li {
    color: #475569;
    line-height: 1.6;
}

.support-contact-card ul {
    margin: 0;
    padding-left: 18px;
}

.support-contact-card li + li {
    margin-top: 6px;
}

.support-contact-card-muted {
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.support-contact-note {
    font-size: 13px;
}

@media (max-width: 991px) {
    .support-contact-sidebar {
        margin-top: 8px;
    }
}

/* /start — ad landing page */
.start-page,
.landing-page {
    padding-top: 0 !important;
}

.start-kicker {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--site-emerald-dark);
}

.start-kicker--light {
    color: rgba(255, 255, 255, .82);
}

.start-hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 48px;
    border-bottom: 1px solid var(--site-border);
}

.start-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 92% 18%, rgba(0, 166, 122, .18) 0%, transparent 58%),
        radial-gradient(ellipse 40% 50% at 8% 85%, rgba(23, 59, 92, .12) 0%, transparent 55%),
        linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    pointer-events: none;
}

.start-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 36px;
    align-items: center;
}

.start-hero-copy h1 {
    margin: 0 0 16px;
    max-width: 14ch;
    color: var(--site-navy);
    font-size: clamp(34px, 4.5vw, 48px);
    font-weight: 800;
    line-height: 1.08;
}

.start-lead {
    margin: 0 0 24px;
    max-width: 56ch;
    color: var(--site-muted);
    font-size: 18px;
    line-height: 1.65;
}

.start-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.start-btn-primary {
    box-shadow: 0 8px 24px rgba(0, 166, 122, .28);
}

.start-hero-note {
    margin: 0;
    color: var(--site-muted);
    font-size: 14px;
}

.start-hero-visual {
    position: relative;
    min-height: 360px;
}

.start-mock-card {
    border: 1px solid var(--site-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(11, 31, 51, .12);
}

.start-mock-card--main {
    position: relative;
    z-index: 2;
}

.start-mock-header {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--site-border);
    background: #f8fafc;
}

.start-mock-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
}

.start-mock-title {
    margin-left: 8px;
    color: var(--site-navy-soft);
    font-size: 13px;
    font-weight: 700;
}

.start-mock-body {
    padding: 16px;
}

.start-mock-alert {
    margin-bottom: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-size: 13px;
    font-weight: 700;
}

.start-mock-list {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.start-mock-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #eef2f7;
    color: var(--site-text);
    font-size: 14px;
}

.start-mock-list li:last-child {
    border-bottom: 0;
}

.start-mock-pill {
    display: inline-block;
    min-width: 42px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #eef2f7;
    color: var(--site-navy-soft);
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.start-mock-pill--live {
    background: #dcfce7;
    color: #166534;
}

.start-mock-pill--shark {
    background: #dbeafe;
    color: #1e40af;
}

.start-mock-standings {
    padding: 12px;
    border-radius: 12px;
    background: #f8fafc;
}

.start-mock-standings strong {
    display: block;
    margin-bottom: 8px;
    color: var(--site-navy);
    font-size: 13px;
}

.start-mock-standings ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.start-mock-standings li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    color: var(--site-muted);
    font-size: 13px;
}

.start-mock-standings li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--site-emerald);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.start-mock-card--float {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 190px;
    padding: 14px 16px;
    animation: start-float 5s ease-in-out infinite;
}

.start-mock-card--float i {
    color: var(--site-emerald-dark);
    font-size: 18px;
}

.start-mock-card--float strong {
    color: var(--site-navy);
    font-size: 14px;
}

.start-mock-card--float span {
    color: var(--site-muted);
    font-size: 12px;
}

.start-mock-card--link {
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.start-mock-card--link:hover,
.start-mock-card--link:focus {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(11, 31, 51, .14);
    text-decoration: none;
}

.start-mock-card--link span em {
    color: var(--site-emerald-dark);
    font-style: normal;
    font-weight: 700;
}

.start-mock-card--vision {
    top: -12px;
    right: -8px;
}

.start-mock-card--tv {
    bottom: 18px;
    left: -16px;
    animation-delay: -2.5s;
}

.start-mock-card--sheet {
    bottom: 18px;
    left: -16px;
    animation-delay: -2.5s;
}

@keyframes start-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.start-trust {
    padding: 18px 0;
    background: var(--site-navy);
}

.start-trust-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.start-trust-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    font-weight: 600;
}

.start-trust-list i {
    color: var(--site-emerald);
}

.start-section {
    padding: 52px 0;
}

.start-section--alt {
    background: #f8fafc;
    border-top: 1px solid var(--site-border);
    border-bottom: 1px solid var(--site-border);
}

.start-section--shark {
    padding-top: 0;
}

.start-section-head {
    max-width: 720px;
    margin-bottom: 28px;
}

.start-section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.start-section-head h2 {
    margin: 0 0 12px;
    color: var(--site-navy);
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.15;
    /* Spreads wrapped headings evenly so a short last word never sits alone */
    text-wrap: balance;
}

.start-section-head p {
    margin: 0;
    color: var(--site-muted);
    font-size: 17px;
    line-height: 1.6;
}

.start-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.start-spotlight {
    position: relative;
    padding: 26px 22px;
    border: 1px solid var(--site-border);
    border-radius: 16px;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.start-spotlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(11, 31, 51, .08);
}

.start-spotlight--featured {
    border-color: rgba(0, 166, 122, .35);
    background: linear-gradient(160deg, #f1fbf7 0%, #fff 72%);
    box-shadow: 0 12px 32px rgba(0, 166, 122, .1);
}

.start-spotlight-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--site-emerald);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.start-spotlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: #eef2f7;
    color: var(--site-emerald-dark);
    font-size: 20px;
}

.start-spotlight--featured .start-spotlight-icon {
    background: rgba(0, 166, 122, .14);
}

.start-spotlight h3 {
    margin: 0 0 10px;
    color: var(--site-navy);
    font-size: 20px;
    font-weight: 800;
}

.start-spotlight p {
    margin: 0;
    color: var(--site-muted);
    font-size: 15px;
    line-height: 1.58;
}

.start-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--site-emerald-dark);
}

.start-link:hover,
.start-link:focus {
    color: var(--site-navy);
}

.start-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
    gap: 36px;
    align-items: center;
}

.start-split-copy h2 {
    margin: 0 0 12px;
    color: var(--site-navy);
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.15;
}

.start-split-copy > p {
    margin: 0 0 18px;
    color: var(--site-muted);
    font-size: 16px;
    line-height: 1.6;
}

.start-checklist {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.start-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--site-text);
    font-size: 15px;
    line-height: 1.45;
}

.start-checklist i {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--site-emerald-dark);
}

.start-admin-card {
    padding: 24px;
    border: 1px solid var(--site-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(11, 31, 51, .08);
}

.start-admin-card h4 {
    margin: 0 0 16px;
    color: var(--site-navy);
    font-size: 18px;
    font-weight: 800;
}

.start-admin-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 18px;
}

.start-admin-stats div {
    padding: 12px;
    border-radius: 10px;
    background: #f8fafc;
}

.start-admin-stats dt {
    margin: 0 0 4px;
    color: var(--site-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.start-admin-stats dd {
    margin: 0;
    color: var(--site-navy);
    font-size: 22px;
    font-weight: 800;
}

.start-admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.start-admin-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef2f7;
    color: var(--site-navy-soft);
    font-size: 12px;
    font-weight: 700;
}

.start-admin-chip i {
    color: var(--site-emerald-dark);
}

.start-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.start-feature {
    padding: 22px 18px;
    border: 1px solid var(--site-border);
    border-radius: 14px;
    background: #fff;
}

.start-feature i {
    display: block;
    margin-bottom: 10px;
    color: var(--site-emerald-dark);
    font-size: 22px;
}

.start-feature h4 {
    margin: 0 0 8px;
    color: var(--site-navy);
    font-size: 17px;
    font-weight: 800;
}

.start-feature p {
    margin: 0;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.55;
}

.start-shark-block {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 40px 36px;
}

.start-shark-block .home-shark-visual {
    flex-shrink: 0;
    max-width: 200px;
}

.start-shark-block .home-shark-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(24px, 2.6vw, 30px);
    font-weight: 800;
    line-height: 1.18;
}

.start-shark-block .home-shark-copy p {
    margin: 0 0 20px;
    max-width: 62ch;
    font-size: 16px;
    line-height: 1.6;
}

.start-shark-block .home-shark-copy .btn {
    margin: 0;
}

.start-sports-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
}

.start-sport {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 92px;
    padding: 14px 12px;
    border: 1px solid var(--site-border);
    border-radius: 14px;
    background: #fff;
}

.start-sport img {
    width: 36px;
    height: 36px;
}

.start-sport span {
    color: var(--site-navy-soft);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.start-format-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.start-format {
    padding: 16px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--site-border);
}

.start-format strong {
    display: block;
    margin-bottom: 4px;
    color: var(--site-navy);
    font-size: 15px;
}

.start-format span {
    color: var(--site-muted);
    font-size: 13px;
    line-height: 1.45;
}

.start-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.start-step {
    padding: 24px 20px;
    border: 1px solid var(--site-border);
    border-radius: 14px;
    background: #fff;
    text-align: center;
}

.start-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: var(--site-emerald);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.start-step h3 {
    margin: 0 0 8px;
    color: var(--site-navy);
    font-size: 18px;
    font-weight: 800;
}

.start-step p {
    margin: 0;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.55;
}

.start-compare {
    margin: 0;
}

.start-final-cta {
    padding: 52px 0 60px;
    background:
        radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0, 166, 122, .16) 0%, transparent 60%),
        linear-gradient(180deg, var(--site-navy) 0%, #0f2840 100%);
}

.start-final-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.start-final-inner h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
}

.start-final-inner p {
    margin: 0;
    max-width: 52ch;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.6;
}

.start-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.start-final-links {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
}

.start-final-links a {
    color: rgba(255, 255, 255, .88);
    font-weight: 600;
}

.start-final-links a:hover,
.start-final-links a:focus {
    color: #fff;
}

@media (max-width: 991px) {
    .start-hero-inner,
    .start-split {
        grid-template-columns: 1fr;
    }

    .start-hero-copy h1 {
        max-width: none;
    }

    .start-hero-visual {
        min-height: 0;
        margin-top: 8px;
    }

    .start-mock-card--main {
        max-width: 560px;
        margin: 0 auto;
    }

    .start-mock-card--float {
        display: none;
    }

    .start-spotlight-grid,
    .start-feature-grid,
    .start-format-row,
    .start-steps {
        grid-template-columns: 1fr;
    }

    .start-final-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .start-trust-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        align-items: center;
        gap: 10px 18px;
        text-align: left;
    }

    .start-trust-list li {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .start-hero {
        padding: 36px 0 32px;
    }

    .start-section {
        padding: 38px 0;
    }

    .start-shark-block {
        flex-direction: column;
        gap: 20px;
        padding: 28px 22px;
        text-align: center;
    }

    .start-shark-block .home-shark-visual {
        max-width: 150px;
    }

    .start-mock-header {
        padding: 10px 12px;
    }

    .start-mock-body {
        padding: 14px 12px;
    }

    .start-mock-alert {
        font-size: 12px;
    }

    .start-mock-list li {
        font-size: 13px;
    }

    .start-trust-list {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .start-hero-actions,
    .start-final-actions {
        flex-direction: column;
        width: 100%;
    }

    .start-hero-actions .btn,
    .start-final-actions .btn {
        width: 100%;
    }
}
