:root {
    --bg: #f6f8fc;
    --panel: rgba(255,255,255,0.82);
    --text: #162033;
    --muted: #607089;
    --line: rgba(21, 34, 56, 0.09);
    --primary: #122b63;
    --primary-2: #0f5fd2;
    --accent: #d9272d;
    --shadow: 0 18px 45px rgba(15, 39, 87, 0.12);
    --radius: 24px;
    --container: 1680px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(15,95,210,.12), transparent 33%),
        radial-gradient(circle at top right, rgba(217,39,45,.08), transparent 28%),
        var(--bg);
    color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
input, select, textarea, button { font: inherit; }

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-main { flex: 1; }

.top-strip {
    background: linear-gradient(90deg, #091833, #183a7a);
    color: rgba(255,255,255,.85);
    font-size: 13px;
}

.top-strip-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    flex-wrap: wrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
    background: rgba(246, 248, 252, 0.86);
    border-bottom: 1px solid rgba(21, 34, 56, 0.06);
}

.navbar-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: var(--shadow);
}

.brand-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
}

.brand-subtitle {
    color: var(--muted);
    font-size: 13px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.main-nav > a,
.nav-group-btn {
    border: 0;
    background: transparent;
    padding: 12px 15px;
    border-radius: 999px;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
}

.main-nav > a.active,
.main-nav > a:hover,
.nav-group:hover .nav-group-btn,
.nav-group-btn:hover {
    background: rgba(18,43,99,.08);
    color: var(--primary);
}

.nav-group { position: relative; }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    display: none;
    flex-direction: column;
    padding: 10px;
    border-radius: 20px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 25px 45px rgba(11, 32, 69, 0.15);
    border: 1px solid rgba(18,43,99,.08);
}

.nav-dropdown a {
    padding: 12px 14px;
    border-radius: 14px;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
    background: rgba(18,43,99,.07);
}

.nav-group:hover .nav-dropdown { display: flex; }
.mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: white;
}

.hero-section {
    padding: 48px 0 30px;
}

.hero-grid,
.two-col,
.three-col {
    display: grid;
    gap: 26px;
}

.hero-grid {
    grid-template-columns: 1.35fr .9fr;
    align-items: stretch;
}

.hero-copy,
.premium-panel,
.premium-card {
    background: var(--panel);
    border: 1px solid rgba(255,255,255,.65);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-copy {
    padding: 40px;
    border-radius: 34px;
    position: relative;
    overflow: hidden;
}

.hero-copy::after {
    content: "";
    position: absolute;
    inset: auto -70px -70px auto;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(15,95,210,.22), transparent 65%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--primary-2);
    font-weight: 800;
    margin-bottom: 14px;
}

.notice-chip {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 11px 16px;
    border-radius: 999px;
    color: white;
    background: linear-gradient(90deg, var(--accent), #f45a43);
    box-shadow: 0 14px 32px rgba(217,39,45,.26);
}

.hero-copy h1,
.inner-hero h1,
.login-visual h1 {
    margin: 0 0 16px;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.03;
}

.hero-copy p,
.inner-hero p,
.premium-card p,
.hero-card p,
.login-visual p { color: var(--muted); line-height: 1.7; }

.hero-actions,
.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: white;
}

.btn-secondary {
    background: white;
    border-color: rgba(18,43,99,.12);
    color: var(--primary);
}

.full { width: 100%; }

.hero-stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-stats div {
    min-width: 110px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(18,43,99,.06);
}

.hero-stats strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
}

.hero-stats span { color: var(--muted); font-size: 13px; }

.hero-card,
.premium-panel,
.premium-card {
    padding: 28px;
    border-radius: 30px;
}

.mini-badge,
.notice-tag {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15,95,210,.08);
    color: var(--primary-2);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.seat-grid,
.seat-status-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.seat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seat-grid div,
.seat-status-list div,
.stepper div {
    border-radius: 18px;
    border: 1px solid rgba(18,43,99,.08);
    background: rgba(255,255,255,.85);
    padding: 16px;
}

.seat-grid span,
.seat-status-list span { display: block; color: var(--muted); }
.seat-grid strong,
.seat-status-list strong { color: var(--primary); font-size: 1.1rem; }

.section-block { padding: 36px 0; }
.soft-bg { background: rgba(255,255,255,.55); }

.section-heading { margin-bottom: 24px; text-align: center; }
.section-heading.left { text-align: left; }
.section-heading h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.6rem); }

.card-grid.five-up {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.level-card { min-height: 100%; }
.level-code {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 16px;
    color: white;
    font-weight: 800;
    background: linear-gradient(135deg, #0e3f93, #1e75da);
}

.muted { color: var(--primary); font-weight: 700; }
.text-link { color: var(--primary-2); font-weight: 700; }

.two-col { grid-template-columns: 1fr 1fr; }
.two-col.uneven { grid-template-columns: 1.35fr .95fr; }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stack-list, .stack-gap { display: grid; gap: 18px; }

.notice-card, .notice-list-item {
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(18,43,99,.08);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(13, 33, 74, 0.07);
}

.notice-date { color: var(--accent); font-weight: 700; font-size: 14px; }
.check-list {
    margin: 0;
    padding-left: 22px;
    display: grid;
    gap: 14px;
    line-height: 1.65;
    color: var(--muted);
}
.check-list.simple { padding-left: 20px; }

.icon-bubble {
    width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center;
    font-size: 1.4rem; font-weight: 800; color: white;
    background: linear-gradient(135deg, var(--accent), #ff7a45);
    margin-bottom: 14px;
}

.inner-hero {
    padding: 56px 0 24px;
}
.hero-accent {
    background: linear-gradient(180deg, rgba(18,43,99,.92), rgba(16,69,145,.9));
    color: white;
}
.hero-accent .eyebrow,
.hero-accent p { color: rgba(255,255,255,.82); }
.narrow { width: min(900px, calc(100% - 32px)); }
.center-text { text-align: center; }

.detail-card h2, .form-card h2, .login-card h2, .side-card h3 { margin-top: 0; }
.notice-body { line-height: 1.85; }
.meta-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}
.meta-row span { color: var(--muted); }
.side-card { align-self: start; }

.stepper {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}
.stepper span {
    width: 34px; height: 34px; border-radius: 12px; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: white; font-weight: 800;
    margin-bottom: 10px;
}

.form-grid {
    display: grid;
    gap: 18px;
}
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 14px; }
.field input,
.field select,
.field textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(18,43,99,.12);
    background: rgba(255,255,255,.94);
    padding: 14px 15px;
    outline: none;
}

.inline-check {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    margin: 12px 0 18px;
}

.faq-item + .faq-item {
    border-top: 1px solid var(--line);
    padding-top: 16px;
    margin-top: 16px;
}

.login-page-wrap { padding: 54px 0; }
.login-shell {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 28px;
    align-items: center;
}
.login-visual {
    min-height: 420px;
    padding: 44px;
    border-radius: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 28%),
        linear-gradient(135deg, #0d234d, #145ec8);
    color: white;
}
.login-visual p { color: rgba(255,255,255,.78); }
.login-card { max-width: 520px; }
.center-link { display: block; text-align: center; margin-top: 18px; }
.notice-listing { display: grid; gap: 18px; }

.site-footer {
    margin-top: 36px;
    background: linear-gradient(180deg, #091833, #122b63);
    color: rgba(255,255,255,.85);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    gap: 24px;
    padding: 42px 0 26px;
}
.footer-grid h3 { color: white; margin-top: 0; }
.footer-links { margin: 0; padding-left: 18px; display: grid; gap: 10px; }
.footer-bottom {
    text-align: center;
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 13px;
}
.boot-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    gap: 12px;
    text-align: center;
}
.boot-logo {
    width: 68px; height: 68px; border-radius: 22px; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: white; font-size: 1.4rem; font-weight: 800;
}
.boot-title { color: var(--muted); font-weight: 700; }
#blazor-error-ui {
    background: #ffffe0; bottom: 0; box-shadow: 0 -1px 2px rgba(0,0,0,0.2); display: none;
    left: 0; padding: 0.6rem 1.25rem 0.7rem 1.25rem; position: fixed; width: 100%; z-index: 1000;
}
#blazor-error-ui .dismiss { cursor: pointer; position: absolute; right: 0.75rem; top: 0.5rem; }

@media (max-width: 1100px) {
    .card-grid.five-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hero-grid,
    .two-col,
    .two-col.uneven,
    .three-col,
    .login-shell,
    .footer-grid { grid-template-columns: 1fr; }
    .stepper { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
    .mobile-toggle { display: inline-grid; place-items: center; }
    .main-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: rgba(255,255,255,.98);
        border: 1px solid rgba(18,43,99,.08);
        border-radius: 24px;
        box-shadow: 0 25px 45px rgba(11, 32, 69, 0.15);
        padding: 14px;
    }
    .main-nav.open { display: flex; }
    .navbar-shell { position: relative; }
    .nav-group { width: 100%; }
    .main-nav > a,
    .nav-group-btn { width: 100%; text-align: left; border-radius: 16px; }
    .nav-dropdown {
        position: static;
        display: flex;
        min-width: 0;
        box-shadow: none;
        border: 0;
        background: rgba(18,43,99,.03);
        margin-top: 4px;
        padding: 8px;
    }
    .hero-copy,
    .hero-card,
    .premium-panel,
    .premium-card,
    .login-visual { padding: 24px; border-radius: 24px; }
}

@media (max-width: 680px) {
    .container, .narrow { width: min(100% - 20px, var(--container)); }
    .form-grid.two,
    .card-grid.five-up,
    .stepper,
    .seat-grid { grid-template-columns: 1fr; }
    .hero-copy h1,
    .inner-hero h1,
    .login-visual h1 { font-size: 2rem; }
    .top-strip-inner { justify-content: center; text-align: center; }
}


.top-strip {
    background: linear-gradient(90deg, #07152f 0%, #0f2f69 52%, #1b57be 100%);
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
}

.top-strip-title,
.top-strip-hours {
    white-space: nowrap;
}

.site-header {
    background: rgba(248, 250, 255, 0.94);
    box-shadow: 0 10px 30px rgba(12, 32, 67, 0.08);
}

.navbar-shell {
    min-height: 96px;
}

.brand {
    flex: 0 0 auto;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-mark {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    font-size: 1.05rem;
    letter-spacing: .03em;
}

.brand-title {
    font-size: 18px;
}

.brand-subtitle {
    font-size: 14px;
}

.main-nav {
    flex: 1;
    justify-content: flex-end;
    gap: 8px;
}

.main-nav > a,
.nav-group-btn {
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.nav-group {
    position: relative;
    padding-bottom: 18px;
    margin-bottom: -18px;
}

.nav-group-btn {
    gap: 8px;
}

.nav-caret {
    font-size: 12px;
    opacity: .75;
}

.nav-dropdown {
    top: calc(100% + 2px);
    left: 0;
    min-width: 260px;
    border-radius: 22px;
    padding: 12px;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
}

.nav-dropdown a {
    font-weight: 600;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
    display: flex;
}

.site-footer {
    margin-top: 48px;
    background:
        radial-gradient(circle at top left, rgba(41,117,255,.18), transparent 24%),
        linear-gradient(135deg, #07152f 0%, #0e2658 55%, #173f8d 100%);
    color: rgba(255,255,255,.88);
}

.footer-top {
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
    grid-template-columns: 1.2fr .75fr .9fr;
    gap: 42px;
    padding: 52px 0 32px;
    align-items: start;
}

.footer-brand {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.footer-brand-mark {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, #1d5fd1, #4b8df2);
    box-shadow: 0 16px 32px rgba(11, 35, 81, 0.25);
}

.footer-grid h3,
.footer-grid h4 {
    margin: 0 0 16px;
    color: white;
}

.footer-grid h4 {
    font-size: 1.08rem;
}

.footer-lead,
.footer-contact-list p,
.footer-links a {
    color: rgba(255,255,255,.84);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 12px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: "›";
    color: rgba(255,255,255,.58);
}

.footer-contact-list {
    display: grid;
    gap: 10px;
}

.footer-contact-list p {
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    background: rgba(5, 16, 38, 0.18);
    padding: 0;
}

.footer-bottom-inner {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 14px;
}

@media (max-width: 1180px) {
    .navbar-shell {
        gap: 16px;
    }

    .main-nav > a,
    .nav-group-btn {
        padding: 0 14px;
        font-size: 15px;
    }
}

@media (max-width: 860px) {
    .top-strip-title,
    .top-strip-hours {
        white-space: normal;
    }

    .navbar-shell {
        min-height: 84px;
        padding: 14px 0;
    }

    .brand-mark {
        width: 54px;
        height: 54px;
        border-radius: 18px;
    }

    .brand-title {
        font-size: 17px;
    }

    .brand-subtitle {
        font-size: 13px;
    }

    .main-nav {
        justify-content: stretch;
    }

    .nav-group {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .nav-group-btn {
        justify-content: space-between;
    }

    .nav-dropdown::before {
        display: none;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-bottom-inner {
        justify-content: center;
        text-align: center;
        padding: 14px 0;
    }
}

@media (max-width: 680px) {
    .footer-grid {
        gap: 26px;
        padding: 34px 0 24px;
    }

    .footer-brand {
        align-items: flex-start;
    }

    .footer-brand-mark {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }
}


/* 2026-04-21 premium header refresh */
:root {
    --header-red-1: #fff3f1;
    --header-red-2: #ffe4e0;
    --header-border: rgba(181, 59, 49, 0.14);
    --notice-gold: #f3c400;
    --notice-green: #1e7a32;
}

.top-strip {
    background: linear-gradient(90deg, #f7b2aa 0%, #f5a199 48%, #ee8d84 100%);
    color: #5b1d1a;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.35);
}

.top-strip-title,
.top-strip-hours {
    font-weight: 600;
    color: #5b1d1a;
}

.site-header {
    background: linear-gradient(180deg, rgba(255,248,247,.98), rgba(255,252,252,.95));
    border-bottom: 1px solid var(--header-border);
    box-shadow: 0 12px 30px rgba(137, 49, 37, 0.08);
}

.headline-strip {
    border-top: 1px solid rgba(255,255,255,.35);
    border-bottom: 1px solid rgba(181, 59, 49, 0.10);
    background: linear-gradient(90deg, rgba(255,247,224,.98), rgba(255,250,243,.98));
}

.headline-strip-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
    min-height: 56px;
}

.headline-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffd400, #efc200);
    color: #365500;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .02em;
    box-shadow: 0 8px 20px rgba(243, 196, 0, .25);
}

.headline-marquee-wrap {
    overflow: hidden;
    min-width: 0;
}

.headline-marquee-track {
    display: flex;
    gap: 56px;
    width: max-content;
    align-items: center;
    color: var(--notice-green);
    font-weight: 700;
    white-space: nowrap;
    animation: notice-scroll 26s linear infinite;
}

.headline-marquee-track span {
    display: inline-block;
    padding-right: 8px;
}

@keyframes notice-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 28px)); }
}

.navbar-shell {
    min-height: 90px;
    gap: 18px;
}

.main-nav {
    flex: 1;
    justify-content: flex-end;
    gap: 2px;
    flex-wrap: nowrap;
}

.main-nav > a,
.nav-group-btn {
    position: relative;
    height: 44px;
    padding: 0 13px;
    border-radius: 14px;
    font-size: 15px;
    letter-spacing: -.01em;
}

.main-nav > a.active,
.main-nav > a:hover,
.nav-group:hover .nav-group-btn,
.nav-group-btn:hover,
.nav-group:focus-within .nav-group-btn {
    background: linear-gradient(180deg, rgba(227, 73, 61, .10), rgba(227, 73, 61, .06));
    color: #a42b22;
}

.nav-group {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: -8px;
}

.nav-group-btn {
    gap: 6px;
}

.nav-caret {
    font-size: 10px;
    opacity: .75;
}

.nav-dropdown {
    top: calc(100% + 1px);
    left: 0;
    min-width: 238px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(208, 87, 74, 0.14);
    box-shadow: 0 16px 38px rgba(129, 46, 36, 0.12);
}

.nav-dropdown::before {
    top: -8px;
    height: 8px;
}

.nav-dropdown a {
    font-weight: 600;
    padding: 11px 13px;
    border-radius: 12px;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
    background: rgba(227, 73, 61, .08);
    color: #9f2e23;
}

@media (max-width: 1320px) {
    .main-nav > a,
    .nav-group-btn {
        padding: 0 10px;
        font-size: 14px;
    }
}

@media (max-width: 1080px) {
    .navbar-shell {
        gap: 14px;
    }

    .brand-title {
        font-size: 17px;
    }

    .brand-subtitle {
        font-size: 12px;
    }

    .main-nav > a,
    .nav-group-btn {
        padding: 0 9px;
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .headline-strip-inner {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px 0;
    }

    .headline-badge {
        justify-self: start;
    }

    .headline-marquee-track {
        animation-duration: 20s;
    }
}

@media (max-width: 860px) {
    .headline-strip-inner {
        padding: 12px 0;
    }

    .main-nav {
        top: calc(100% + 10px);
        background: rgba(255,255,255,.99);
        border: 1px solid rgba(208, 87, 74, .16);
    }

    .main-nav > a,
    .nav-group-btn {
        width: 100%;
        justify-content: space-between;
        height: 46px;
        padding: 0 14px;
        border-radius: 14px;
    }

    .nav-dropdown {
        margin-top: 2px;
        padding: 8px;
        border-radius: 14px;
        background: rgba(227, 73, 61, .04);
    }
}

@media (max-width: 680px) {
    .headline-badge {
        font-size: 13px;
        padding: 9px 14px;
    }

    .headline-marquee-track {
        font-size: 14px;
        gap: 32px;
    }
}


/* 2026-04-21 layout refinement: menu bar + marquee below nav */
.top-strip {
    background: linear-gradient(90deg, #fff4f3 0%, #ffe9e5 50%, #ffe1db 100%);
    color: #7f2f29;
    border-bottom: 1px solid rgba(192, 88, 73, 0.12);
    box-shadow: none;
}

.top-strip-title {
    color: #8c342d;
    font-weight: 700;
}

.top-strip-hours {
    color: #0d766e;
    font-weight: 700;
}

.site-header {
    background: linear-gradient(180deg, rgba(255,246,244,.99), rgba(255,252,251,.97));
    border-bottom: 1px solid rgba(201, 87, 72, 0.12);
    box-shadow: 0 14px 34px rgba(166, 75, 63, 0.08);
}

.navbar-shell {
    min-height: 92px;
    gap: 20px;
    padding: 14px 22px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(209, 101, 84, 0.12);
    border-radius: 26px;
    background: linear-gradient(180deg, #fff2ef 0%, #fffbfa 100%);
    box-shadow: 0 14px 34px rgba(177, 82, 68, 0.07);
}

.main-nav {
    gap: 0;
}

.main-nav > a,
.nav-group-btn {
    color: #8d342c;
    font-weight: 700;
    height: 46px;
    padding: 0 14px;
    border-radius: 14px;
}

.main-nav > a.active,
.main-nav > a:hover,
.nav-group:hover .nav-group-btn,
.nav-group-btn:hover,
.nav-group:focus-within .nav-group-btn {
    background: linear-gradient(180deg, rgba(221, 93, 76, .14), rgba(221, 93, 76, .08));
    color: #a52f24;
}

.nav-group {
    position: relative;
    padding-bottom: 0;
    margin-bottom: 0;
}

.nav-group::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
}

.nav-dropdown {
    top: calc(100% + 8px);
    min-width: 248px;
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    background: rgba(255, 252, 251, 0.99);
    border: 1px solid rgba(216, 96, 78, 0.16);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(136, 54, 44, 0.12);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown a {
    color: #7f312a;
    font-weight: 700;
    padding: 12px 14px;
    border-radius: 12px;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
    background: linear-gradient(180deg, rgba(225, 93, 74, .12), rgba(225, 93, 74, .06));
    color: #a62d22;
}

.headline-strip {
    border-top: 1px solid rgba(255,255,255,.5);
    border-bottom: 1px solid rgba(209, 101, 84, 0.10);
    background: linear-gradient(90deg, rgba(255,248,230,.98), rgba(255,252,247,.98));
}

.headline-strip-inner {
    min-height: 58px;
}

.headline-badge {
    background: linear-gradient(135deg, #ffd957, #f5c500);
    color: #4f5f00;
}

.headline-marquee-track {
    color: #1f7f39;
    font-weight: 800;
}

@media (max-width: 1180px) {
    .navbar-shell {
        padding: 12px 16px;
        gap: 14px;
    }

    .main-nav > a,
    .nav-group-btn {
        padding: 0 11px;
        font-size: 14px;
    }
}

@media (max-width: 860px) {
    .navbar-shell {
        border-radius: 22px;
        padding: 12px 14px;
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .main-nav {
        top: calc(100% + 10px);
        background: rgba(255,251,250,.99);
        border: 1px solid rgba(216, 96, 78, .16);
        box-shadow: 0 20px 40px rgba(136, 54, 44, 0.14);
    }

    .main-nav > a,
    .nav-group-btn {
        color: #8a322b;
        justify-content: space-between;
    }

    .nav-group::after {
        display: none;
    }

    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        display: flex;
        min-width: 0;
        margin-top: 4px;
        padding: 8px;
        background: rgba(224, 96, 78, 0.05);
        box-shadow: none;
        border-radius: 14px;
    }
}

@media (max-width: 680px) {
    .top-strip-inner {
        justify-content: center;
        text-align: center;
    }

    .headline-strip-inner {
        gap: 10px;
    }

    .headline-marquee-track {
        font-size: 14px;
    }
}

/* 2026-04-21 final header redesign */
.top-strip {
    display: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 249, 248, 0.97);
    border-bottom: 1px solid rgba(183, 76, 70, 0.10);
    box-shadow: 0 12px 28px rgba(150, 64, 53, 0.08);
}

.navbar-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, #fff3f0 0%, #ffefec 100%);
    border-bottom: 1px solid rgba(183, 76, 70, 0.10);
    box-shadow: none;
    padding: 0;
}

.navbar-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.brand {
    gap: 16px;
    min-width: max-content;
}

.brand-mark {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: linear-gradient(135deg, #163d88, #1f67d6);
}

.brand-copy {
    display: grid;
    gap: 3px;
}

.brand-title {
    font-size: 18px;
    font-weight: 800;
    color: #17233b;
}

.brand-institute {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.01em;
    color: #b23f34;
    line-height: 1.2;
}

.header-hours-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff8d9, #fff1b4);
    border: 1px solid rgba(216, 170, 52, 0.32);
    color: #845400;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(197, 153, 41, 0.14);
    white-space: nowrap;
}

.hours-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2b9a4a;
    box-shadow: 0 0 0 6px rgba(43, 154, 74, 0.12);
}

.hours-divider {
    opacity: .5;
}

.main-nav {
    flex: 1;
    justify-content: flex-end;
    gap: 1px;
    flex-wrap: nowrap;
}

.main-nav > a,
.nav-group-btn {
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border-radius: 12px;
    color: #8f352d;
    font-size: 15px;
    font-weight: 700;
    transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.main-nav > a.active,
.main-nav > a:hover,
.nav-group:hover .nav-group-btn,
.nav-group-btn:hover,
.nav-group:focus-within .nav-group-btn {
    background: linear-gradient(180deg, rgba(191, 77, 69, 0.14), rgba(191, 77, 69, 0.08));
    color: #9f3128;
    box-shadow: inset 0 0 0 1px rgba(183, 76, 70, 0.08);
}

.nav-group {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: -14px;
}

.nav-group-btn {
    gap: 7px;
}

.nav-caret {
    font-size: 10px;
    opacity: .72;
}

.nav-dropdown {
    top: calc(100% - 2px);
    left: 0;
    min-width: 250px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(194, 94, 86, 0.14);
    box-shadow: 0 18px 36px rgba(139, 54, 44, 0.16);
}

.nav-dropdown-right {
    left: auto;
    right: 0;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
}

.nav-dropdown a {
    padding: 12px 14px;
    border-radius: 12px;
    color: #7e3129;
    font-weight: 700;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
    background: linear-gradient(180deg, rgba(197, 81, 72, 0.12), rgba(197, 81, 72, 0.06));
    color: #a02f25;
}

.headline-strip {
    border-top: 0;
    border-bottom: 1px solid rgba(183, 76, 70, 0.10);
    background: linear-gradient(90deg, #fff7d6 0%, #fff8e4 52%, #fffdf1 100%);
}

.headline-strip-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
    min-height: 58px;
}

.headline-badge {
    background: linear-gradient(135deg, #ffd44d, #f5c400);
    color: #5b5c00;
    font-weight: 800;
}

.headline-marquee-track {
    color: #26843e;
    font-weight: 800;
}

@media (max-width: 1380px) {
    .header-hours-pill {
        order: 3;
        margin-left: 0;
    }

    .navbar-inner {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .main-nav {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 980px) {
    .brand-institute {
        font-size: 16px;
    }

    .main-nav > a,
    .nav-group-btn {
        padding: 0 11px;
        font-size: 14px;
    }
}

@media (max-width: 860px) {
    .navbar-inner {
        min-height: 78px;
        position: relative;
        gap: 12px;
    }

    .header-hours-pill {
        width: 100%;
        justify-content: center;
        order: 4;
        padding: 9px 14px;
        font-size: 12px;
        white-space: normal;
        text-align: center;
    }

    .mobile-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
        background: white;
        color: #8b342d;
        border: 1px solid rgba(183, 76, 70, 0.14);
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        background: rgba(255, 252, 251, 0.99);
        border: 1px solid rgba(194, 94, 86, 0.14);
        border-radius: 22px;
        box-shadow: 0 20px 42px rgba(139, 54, 44, 0.16);
        padding: 14px;
        z-index: 50;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav > a,
    .nav-group-btn {
        width: 100%;
        justify-content: space-between;
        height: 46px;
        padding: 0 14px;
        border-radius: 14px;
    }

    .nav-group {
        width: 100%;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .nav-dropdown,
    .nav-dropdown-right {
        position: static;
        left: auto;
        right: auto;
        display: flex;
        min-width: 0;
        margin-top: 4px;
        padding: 8px;
        background: rgba(193, 81, 73, 0.05);
        box-shadow: none;
        border-radius: 14px;
    }

    .nav-dropdown::before {
        display: none;
    }

    .headline-strip-inner {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px 0;
    }

    .headline-badge {
        justify-self: start;
    }
}

@media (max-width: 680px) {
    .brand {
        min-width: 0;
    }

    .brand-mark {
        width: 54px;
        height: 54px;
        border-radius: 18px;
    }

    .brand-title {
        font-size: 16px;
    }

    .brand-institute {
        font-size: 14px;
    }

    .header-hours-pill {
        gap: 8px;
    }
}


/* Final header/menu polish */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 249, 248, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(181, 93, 84, 0.10);
}

.navbar-shell {
    background: linear-gradient(180deg, rgba(255,245,243,0.96), rgba(255,249,248,0.96));
    border-bottom: 1px solid rgba(181, 93, 84, 0.08);
}

.navbar-inner.container,
.headline-strip-inner.container,
.hours-strip-inner.container {
    width: min(1760px, calc(100% - 24px));
}

.navbar-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 94px;
}

.brand {
    gap: 16px;
    min-width: 320px;
}

.brand-copy { gap: 4px; }

.brand-title {
    font-size: 19px;
    font-weight: 800;
    color: #1d2742;
}

.brand-institute {
    font-size: 16px;
    font-weight: 800;
    color: #bf4a3f;
    line-height: 1.15;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    flex-wrap: nowrap;
    min-width: 0;
}

.main-nav > a,
.nav-group-btn {
    position: relative;
    height: 42px;
    padding: 0 13px;
    border-radius: 10px;
    color: #963b33;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1;
}

.main-nav > a.active,
.main-nav > a:hover,
.nav-group:hover .nav-group-btn,
.nav-group-btn:hover,
.nav-group:focus-within .nav-group-btn {
    background: linear-gradient(180deg, rgba(191, 74, 63, 0.14), rgba(191, 74, 63, 0.08));
    color: #a03830;
    box-shadow: inset 0 0 0 1px rgba(185, 82, 72, 0.08);
}

.nav-group {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: -8px;
}

.nav-group-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.nav-caret {
    font-size: 9px;
    opacity: .72;
}

.nav-dropdown,
.nav-dropdown-right {
    top: calc(100% + 2px);
    min-width: 220px;
    padding: 6px;
    border-radius: 14px;
    background: rgba(255,255,255,0.99);
    border: 1px solid rgba(194, 94, 86, 0.12);
    box-shadow: 0 14px 28px rgba(139, 54, 44, 0.12);
}

.nav-dropdown::before {
    top: -8px;
    height: 8px;
}

.nav-dropdown a {
    padding: 9px 11px;
    border-radius: 10px;
    color: #8c342d;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.hours-strip {
    background: transparent;
    border-bottom: 1px solid rgba(191, 74, 63, 0.08);
}

.hours-strip-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 34px;
}

.hours-strip-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff2c9, #ffe9a2);
    border: 1px solid rgba(222, 181, 70, 0.46);
    color: #8a5800;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(203, 168, 57, 0.12);
}

.hours-dot {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 4px rgba(43, 154, 74, 0.12);
}

.headline-strip {
    border-top: 0;
    border-bottom: 1px solid rgba(183, 76, 70, 0.10);
    background: linear-gradient(90deg, #fff7d6 0%, #fff8e4 52%, #fffdf1 100%);
}

.headline-strip-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
    min-height: 58px;
}

.headline-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffd44d, #f5c400);
    color: #5f5a00;
    font-size: 13px;
    font-weight: 900;
}

.headline-marquee-track {
    color: #26843e;
    font-weight: 800;
    font-size: 14px;
}

@media (max-width: 1350px) {
    .navbar-inner {
        grid-template-columns: auto 1fr auto;
        gap: 14px;
    }
    .main-nav > a,
    .nav-group-btn {
        padding: 0 10px;
        font-size: 13px;
    }
    .brand { min-width: 270px; }
}

@media (max-width: 1100px) {
    .navbar-inner {
        grid-template-columns: auto auto;
        grid-template-areas: "brand toggle" "nav nav";
        min-height: auto;
        padding: 12px 0;
    }
    .brand { grid-area: brand; min-width: 0; }
    .mobile-toggle { grid-area: toggle; display: inline-grid; place-items: center; margin-left: auto; background: white; color: #8b342d; border: 1px solid rgba(183, 76, 70, 0.14); }
    .main-nav {
        grid-area: nav;
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: auto;
        background: rgba(255, 252, 251, 0.99);
        border: 1px solid rgba(194, 94, 86, 0.14);
        border-radius: 18px;
        box-shadow: 0 20px 42px rgba(139, 54, 44, 0.16);
        padding: 12px;
        z-index: 50;
    }
    .main-nav.open { display: flex; }
    .main-nav > a,
    .nav-group-btn {
        width: 100%;
        justify-content: space-between;
        height: 44px;
        padding: 0 14px;
        border-radius: 12px;
        font-size: 14px;
    }
    .nav-group {
        width: 100%;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .nav-dropdown,
    .nav-dropdown-right {
        position: static;
        display: flex;
        min-width: 0;
        margin-top: 2px;
        padding: 6px;
        background: rgba(193, 81, 73, 0.05);
        box-shadow: none;
        border-radius: 12px;
    }
    .nav-dropdown::before { display: none; }
    .hours-strip-inner { justify-content: center; }
}

@media (max-width: 680px) {
    .navbar-inner.container,
    .headline-strip-inner.container,
    .hours-strip-inner.container {
        width: min(1760px, calc(100% - 16px));
    }
    .brand-mark {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }
    .brand-title { font-size: 16px; }
    .brand-institute { font-size: 13px; }
    .hours-strip-badge {
        gap: 6px;
        padding: 5px 10px;
        font-size: 11px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .headline-strip-inner {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 8px 0;
    }
}

/* submenu overlap fix */
.navbar-shell {
    position: relative;
    z-index: 220;
}

.hours-strip,
.headline-strip {
    position: relative;
    z-index: 1;
}

.nav-group {
    position: relative;
    padding-bottom: 4px;
    margin-bottom: -4px;
}

.nav-group::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.nav-dropdown,
.nav-dropdown-right {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 320;
    display: none;
    pointer-events: auto;
}

.nav-dropdown-right {
    left: auto;
    right: 0;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group:hover .nav-dropdown-right,
.nav-group:focus-within .nav-dropdown-right {
    display: flex;
}

@media (max-width: 1100px) {
    .navbar-shell {
        z-index: 260;
    }

    .nav-group::after {
        display: none;
    }

    .nav-dropdown,
    .nav-dropdown-right {
        position: static;
        top: auto;
        right: auto;
        left: auto;
        z-index: auto;
    }
}


/* Loader refresh */
.boot-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 20% 20%, rgba(38, 99, 235, 0.12), transparent 24%),
        radial-gradient(circle at 80% 18%, rgba(217, 39, 45, 0.10), transparent 22%),
        linear-gradient(180deg, #fffdfd, #f7f9fe);
}

.boot-card {
    width: min(460px, 100%);
    text-align: center;
    padding: 34px 28px 28px;
    border-radius: 30px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(18,43,99,.08);
    box-shadow: 0 24px 60px rgba(16, 35, 74, 0.14);
    backdrop-filter: blur(12px);
}

.boot-orbit {
    width: 104px;
    height: 104px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    background: conic-gradient(from 0deg, rgba(18,43,99,.06), rgba(37,99,235,.85), rgba(217,39,45,.72), rgba(18,43,99,.06));
    animation: jli-spin 1.8s linear infinite;
}

.boot-orbit::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.boot-core {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    letter-spacing: .04em;
    background: linear-gradient(135deg, #173f8d, #2d71de);
    box-shadow: 0 16px 30px rgba(23, 63, 141, 0.28);
}

.boot-title {
    color: #17233b;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.boot-subtitle {
    color: #62728b;
    line-height: 1.7;
    margin-bottom: 18px;
}

.boot-progress {
    height: 8px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(18,43,99,.08);
}

.boot-progress span {
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #d9272d, #f29f05, #2563eb);
    animation: jli-loader 1.4s ease-in-out infinite;
}

@keyframes jli-spin {
    to { transform: rotate(360deg); }
}

@keyframes jli-loader {
    0% { transform: translateX(-110%); }
    100% { transform: translateX(320%); }
}

/* Navigation behaviour polish */
.nav-group {
    padding-bottom: 8px;
    margin-bottom: -8px;
}

.nav-dropdown,
.nav-dropdown-right {
    top: calc(100% + 2px);
    z-index: 140;
    padding: 8px;
    gap: 2px;
}

.nav-dropdown::before {
    top: -10px;
    height: 10px;
}

.nav-dropdown a {
    padding: 9px 12px;
    line-height: 1.35;
}

@media (max-width: 860px) {
    .boot-card {
        padding: 28px 20px 22px;
        border-radius: 24px;
    }

    .boot-orbit {
        width: 92px;
        height: 92px;
    }

    .boot-core {
        width: 62px;
        height: 62px;
        border-radius: 20px;
    }
}
