:root {
    --ink: #18223a;
    --paper: #fffaf0;
    --coral: #ff5c7a;
    --teal: #00b8a9;
    --yellow: #ffcf33;
    --blue: #3d7cff;
    --lime: #9be15d;
    --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at 15% 20%, rgba(255, 207, 51, 0.28), transparent 28%), radial-gradient(circle at 85% 18%, rgba(0, 184, 169, 0.22), transparent 30%), linear-gradient(180deg, #fff9e8 0%, #ecfbff 44%, #fff4f7 100%);
    color: var(--ink);
    font-family: "Nunito", system-ui, sans-serif;
    overflow-x: hidden;
}
a { color: inherit; }
.site-header {
    position: fixed;
    top: 14px;
    left: 50%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 28px), 1120px);
    padding: 10px 12px;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 40px rgba(24, 34, 58, 0.14);
    backdrop-filter: blur(16px);
    transform: translateX(-50%);
}
.brand, .top-nav { display: flex; align-items: center; }
.brand {
    gap: 9px;
    text-decoration: none;
    font-family: "Baloo 2", system-ui, sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    font-weight: 800;
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), var(--yellow));
    color: var(--white);
    box-shadow: 0 8px 0 rgba(24, 34, 58, 0.12);
}
.top-nav { gap: 8px; }
.top-nav a {
    min-width: 78px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #26324f;
    font-size: 0.95rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.top-nav a:hover { background: rgba(61, 124, 255, 0.12); transform: translateY(-2px); }
.hero {
    position: relative;
    min-height: 92vh;
    padding: 150px 20px 90px;
    display: grid;
    align-items: end;
    overflow: hidden;
    isolation: isolate;
}
.hero-art, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-art { object-fit: cover; object-position: center; z-index: -3; transform: scale(1.03); animation: heroFloat 10s ease-in-out infinite alternate; }
.hero-shade { z-index: -2; background: linear-gradient(90deg, rgba(255, 250, 240, 0.92) 0%, rgba(255, 250, 240, 0.72) 38%, rgba(255, 250, 240, 0.05) 72%), linear-gradient(0deg, rgba(24, 34, 58, 0.24), rgba(24, 34, 58, 0.04)); }
.hero-confetti span {
    position: absolute;
    z-index: -1;
    width: 16px;
    height: 36px;
    border-radius: 9px;
    background: var(--yellow);
    animation: confettiDrift 6s ease-in-out infinite;
}
.hero-confetti span:nth-child(1) { top: 17%; left: 9%; background: var(--coral); }
.hero-confetti span:nth-child(2) { top: 24%; left: 72%; background: var(--teal); animation-delay: -1s; }
.hero-confetti span:nth-child(3) { top: 55%; left: 87%; background: var(--yellow); animation-delay: -2s; }
.hero-confetti span:nth-child(4) { top: 72%; left: 11%; background: var(--blue); animation-delay: -3s; }
.hero-confetti span:nth-child(5) { top: 37%; left: 45%; background: var(--lime); animation-delay: -4s; }
.hero-confetti span:nth-child(6) { top: 14%; left: 90%; background: var(--coral); animation-delay: -5s; }
.hero-content { width: min(100%, 780px); max-width: 100%; min-width: 0; margin: 0 auto 0 max(0px, calc((100vw - 1120px) / 2)); }
.eyebrow, .section-kicker { margin: 0 0 12px; color: #28418a; font-size: 0.92rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
h1, h2, h3 { font-family: "Baloo 2", system-ui, sans-serif; letter-spacing: 0; }
h1 { margin: 0; color: #ff3f70; font-size: clamp(4rem, 14vw, 9.8rem); line-height: 0.82; text-shadow: 0 6px 0 #fff, 0 14px 0 rgba(24, 34, 58, 0.1); }
.hero-lead { max-width: 620px; margin: 28px 0 0; color: #24304d; font-size: clamp(1.15rem, 2.8vw, 1.55rem); font-weight: 800; line-height: 1.35; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 10px 0 rgba(24, 34, 58, 0.13), 0 20px 38px rgba(24, 34, 58, 0.16);
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-4px) rotate(-1deg); box-shadow: 0 14px 0 rgba(24, 34, 58, 0.12), 0 24px 44px rgba(24, 34, 58, 0.18); }
.btn-primary { background: linear-gradient(135deg, var(--coral), #ff8b3d); color: var(--white); }
.btn-secondary { background: var(--white); color: #26324f; }
.scroll-cue { position: absolute; left: 50%; bottom: 24px; display: grid; place-items: center; width: 44px; height: 64px; border: 3px solid rgba(255, 255, 255, 0.88); border-radius: 999px; background: rgba(255, 255, 255, 0.22); transform: translateX(-50%); }
.scroll-cue span { width: 10px; height: 10px; border-radius: 50%; background: var(--white); animation: cue 1.4s ease-in-out infinite; }
.section { width: min(100%, 1120px); margin: 0 auto; padding: 86px 20px; }
.section-heading { max-width: 720px; margin-bottom: 30px; }
.section h2 { margin: 0; color: #172241; font-size: clamp(2.2rem, 6vw, 4.5rem); line-height: 0.95; }
.quest-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.quest-card { position: relative; min-height: 310px; padding: 28px; border: 3px solid rgba(24, 34, 58, 0.1); border-radius: 8px; background: var(--white); box-shadow: 0 16px 0 color-mix(in srgb, var(--accent), #000 10%), 0 26px 52px rgba(24, 34, 58, 0.13); overflow: hidden; transform: rotate(var(--tilt, -1deg)); transition: transform 0.22s ease; }
.quest-card:nth-child(2) { --tilt: 1deg; }
.quest-card:nth-child(3) { --tilt: -0.5deg; }
.quest-card:hover { transform: translateY(-8px) rotate(0deg); }
.quest-card::after { content: ""; position: absolute; right: -40px; bottom: -40px; width: 150px; height: 150px; border-radius: 50%; background: color-mix(in srgb, var(--accent), white 20%); opacity: 0.24; }
.quest-icon { display: grid; place-items: center; width: 72px; height: 72px; margin-bottom: 28px; border-radius: 24px; background: var(--accent); color: var(--white); font-family: "Baloo 2", system-ui, sans-serif; font-size: 2.8rem; font-weight: 800; transform: rotate(-8deg); }
.quest-card h3 { margin: 0 0 14px; color: #172241; font-size: clamp(1.8rem, 4vw, 2.4rem); line-height: 0.95; }
.quest-card p, .play-copy p, .final-cta p { margin: 0; color: #4c5772; font-size: 1.08rem; font-weight: 700; line-height: 1.55; }
.play-band { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr); gap: 30px; align-items: center; }
.play-copy p:not(.section-kicker) { margin-top: 22px; max-width: 560px; }
.challenge-board { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 18px; border: 3px dashed rgba(24, 34, 58, 0.18); border-radius: 8px; background: rgba(255, 255, 255, 0.74); box-shadow: 0 24px 60px rgba(24, 34, 58, 0.12); }
.challenge-board button { min-height: 58px; border: 0; border-radius: 8px; background: #edf4ff; color: #26324f; cursor: pointer; font: 900 1rem "Nunito", system-ui, sans-serif; transition: transform 0.2s ease, background-color 0.2s ease; }
.challenge-board button:hover, .challenge-board button.active { background: var(--yellow); transform: translateY(-3px); }
.challenge-board p { grid-column: 1 / -1; min-height: 92px; margin: 0; padding: 22px; border-radius: 8px; background: #172241; color: var(--white); font-size: clamp(1.1rem, 3vw, 1.45rem); font-weight: 900; line-height: 1.35; }
.final-cta { width: 100%; max-width: none; padding: 90px 20px 110px; background: linear-gradient(135deg, rgba(255, 92, 122, 0.94), rgba(61, 124, 255, 0.92)), radial-gradient(circle at 75% 30%, rgba(255, 207, 51, 0.7), transparent 28%); color: var(--white); text-align: center; }
.final-cta > div { width: min(100%, 860px); margin: 0 auto; }
.final-cta .section-kicker, .final-cta h2, .final-cta p { color: var(--white); }
.final-cta .btn { margin-top: 26px; }

.creator-credit {
    padding: 26px 20px 34px;
    background: #172241;
    text-align: center;
}
.creator-credit a {
    color: var(--white);
    font-weight: 900;
    text-decoration: none;
}
.creator-credit a:hover {
    color: var(--yellow);
}
.contact-page {
    background: radial-gradient(circle at 14% 12%, rgba(255, 207, 51, 0.32), transparent 24%), radial-gradient(circle at 86% 22%, rgba(255, 92, 122, 0.22), transparent 28%), linear-gradient(180deg, #ecfbff 0%, #fff9e8 100%);
}
.contact-layout {
    width: min(100%, 980px);
    margin: 0 auto;
    padding: 132px 20px 80px;
}
.contact-hero {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}
.contact-hero h1 {
    font-size: clamp(3.2rem, 10vw, 7.5rem);
}
.contact-hero p:not(.eyebrow) {
    margin: 20px auto 0;
    max-width: 620px;
    color: #4c5772;
    font-size: clamp(1.05rem, 2.6vw, 1.3rem);
    font-weight: 800;
    line-height: 1.4;
}
.escape-contact-card {
    padding: 24px;
    border: 3px solid rgba(24, 34, 58, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 0 rgba(0, 184, 169, 0.28), 0 30px 60px rgba(24, 34, 58, 0.16);
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    margin-bottom: 7px;
    color: #28418a;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.form-group input,
.form-group textarea {
    width: 100%;
    border: 3px solid rgba(24, 34, 58, 0.12);
    border-radius: 8px;
    background: #fffaf0;
    color: var(--ink);
    font: 800 1rem "Nunito", system-ui, sans-serif;
    padding: 13px 14px;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    outline: 4px solid rgba(0, 184, 169, 0.14);
}
.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.contact-submit {
    width: min(100%, 260px);
    cursor: pointer;
}
.form-status {
    min-height: 24px;
    margin: 16px 0 0;
    color: #12664f;
    font-weight: 900;
}
.form-status.error {
    color: #c91f44;
}
.permission-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(24, 34, 58, 0.55);
    backdrop-filter: blur(8px);
}
.permission-modal[hidden] {
    display: none;
}
.permission-modal-box {
    width: min(100%, 440px);
    padding: 28px;
    border: 3px solid rgba(255, 255, 255, 0.78);
    border-radius: 8px;
    background: #fffaf0;
    box-shadow: 0 18px 0 rgba(255, 92, 122, 0.28), 0 30px 70px rgba(24, 34, 58, 0.28);
    text-align: center;
}
.permission-modal-box h2 {
    margin: 0 0 12px;
    color: #ff3f70;
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 0.95;
}
.permission-modal-box p {
    margin: 0 0 20px;
    color: #26324f;
    font-weight: 800;
    line-height: 1.45;
}
.back-link {
    display: inline-flex;
    margin-top: 18px;
    color: #28418a;
    font-weight: 900;
    text-decoration: none;
}
.back-link:hover {
    color: var(--coral);
}
.reveal { opacity: 0; transform: translateY(28px) scale(0.98); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }
@keyframes heroFloat { from { transform: scale(1.03) translate3d(0, 0, 0); } to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); } }
@keyframes confettiDrift { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(20px) rotate(16deg); } }
@keyframes cue { 0% { transform: translateY(-12px); opacity: 0.2; } 50% { opacity: 1; } 100% { transform: translateY(14px); opacity: 0.2; } }
@media (max-width: 820px) {
    .site-header { align-items: center; border-radius: 24px; flex-wrap: wrap; }
    .top-nav { display: flex; width: 100%; justify-content: center; margin-top: 8px; }
    .top-nav a { min-width: 0; flex: 1 1 30%; padding: 9px 8px; font-size: 0.86rem; background: rgba(61, 124, 255, 0.08); }
    .hero { min-height: 88vh; padding: 126px 18px 82px; }
    .hero-shade { background: linear-gradient(180deg, rgba(255, 250, 240, 0.91) 0%, rgba(255, 250, 240, 0.66) 58%, rgba(255, 250, 240, 0.12) 100%); }
    .hero-content { margin: 0; text-align: center; }
    .hero-lead { margin-right: auto; margin-left: auto; }
    .hero-actions { justify-content: center; }
    .quest-grid, .play-band { grid-template-columns: 1fr; }
    .quest-card { min-height: 260px; }
}
@media (max-width: 520px) {
    .site-header { top: 10px; width: calc(100% - 20px); padding: 8px 10px; }
    .brand { font-size: 1.08rem; }
    .brand-mark { width: 38px; height: 38px; }
    .hero { min-height: 100svh; padding: 164px 16px 76px; align-items: center; }
    .eyebrow { font-size: 0.78rem; letter-spacing: 0.04em; }
    h1 { max-width: 100%; font-size: clamp(3rem, 16.5vw, 4.7rem); line-height: 0.92; text-shadow: 0 4px 0 #fff, 0 9px 0 rgba(24, 34, 58, 0.1); }
    .hero-lead { margin-top: 20px; font-size: clamp(1rem, 4.5vw, 1.22rem); line-height: 1.28; }
    .hero-actions { flex-direction: column; align-items: center; width: 100%; gap: 12px; margin-top: 22px; }
    .btn { width: min(100%, 320px); min-height: 48px; padding: 12px 18px; box-shadow: 0 7px 0 rgba(24, 34, 58, 0.13), 0 14px 30px rgba(24, 34, 58, 0.14); }
    .scroll-cue { bottom: 14px; width: 38px; height: 52px; }
    .section { padding: 64px 16px; }
    .quest-card { min-height: 0; padding: 24px; box-shadow: 0 10px 0 color-mix(in srgb, var(--accent), #000 10%), 0 18px 34px rgba(24, 34, 58, 0.12); transform: none; }
    .quest-card:hover { transform: translateY(-4px); }
    .challenge-board { grid-template-columns: 1fr; padding: 14px; }
    .contact-layout { padding: 156px 16px 58px; }
    .escape-contact-card { padding: 18px; box-shadow: 0 10px 0 rgba(0, 184, 169, 0.28), 0 18px 34px rgba(24, 34, 58, 0.12); }
    .contact-submit { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

.app-page {
    background: radial-gradient(circle at 15% 20%, rgba(255, 207, 51, 0.26), transparent 28%), radial-gradient(circle at 86% 16%, rgba(0, 184, 169, 0.2), transparent 30%), linear-gradient(180deg, #fff9e8 0%, #ecfbff 100%);
}
.app-shell {
    width: min(100%, 980px);
    margin: 0 auto;
    padding: 132px 20px 78px;
}
.wide-shell {
    width: min(100%, 1220px);
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
    gap: 22px;
    align-items: start;
}
.admin-login-shell {
    min-height: 100svh;
    display: grid;
    place-items: center;
}
.mission-panel {
    padding: 26px;
    border: 3px solid rgba(24, 34, 58, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 0 rgba(255, 207, 51, 0.36), 0 30px 60px rgba(24, 34, 58, 0.14);
}
.mission-panel h1,
.mission-panel h2 {
    margin: 0 0 14px;
    line-height: 0.95;
}
.mission-panel h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
}
.mission-panel h2 {
    color: #172241;
    font-size: clamp(2rem, 5vw, 3rem);
}
.app-lead,
.mission-panel > p:not(.eyebrow) {
    color: #4c5772;
    font-size: clamp(1.05rem, 2.6vw, 1.25rem);
    font-weight: 800;
    line-height: 1.45;
}
.stack-form {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}
.stack-form label,
.check-row {
    color: #28418a;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.stack-form input,
.stack-form textarea,
.stack-form select {
    width: 100%;
    border: 3px solid rgba(24, 34, 58, 0.12);
    border-radius: 8px;
    background: #fffaf0;
    color: var(--ink);
    font: 800 1rem "Nunito", system-ui, sans-serif;
    padding: 13px 14px;
}
.stack-form input:focus,
.stack-form textarea:focus,
.stack-form select:focus {
    border-color: var(--teal);
    outline: 4px solid rgba(0, 184, 169, 0.14);
}
.inline-form {
    display: flex;
    gap: 10px;
    align-items: stretch;
}
.inline-form .btn {
    flex: 0 0 auto;
}
.app-hidden {
    display: none !important;
}
.notice-card,
.admin-card,
.ranking-row {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(24, 34, 58, 0.11);
}
.notice-card {
    margin: 18px 0;
    border-left: 8px solid var(--teal);
}
.admin-grid,
.ranking-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}
.admin-card h2,
.ranking-row strong {
    margin: 0;
    color: #172241;
}
.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.status-pill {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(61, 124, 255, 0.12);
    color: #28418a;
    font-weight: 900;
    text-transform: uppercase;
}
.app-cover {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin: 12px 0;
}
.hint-box:empty {
    display: none;
}
.recovery-box {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 3px dashed rgba(24, 34, 58, 0.16);
}
@media (max-width: 820px) {
    .app-shell { padding: 156px 16px 62px; }
    .wide-shell { grid-template-columns: 1fr; }
    .inline-form { flex-direction: column; }
    .inline-form .btn { width: 100%; }
    .mission-panel { padding: 20px; }
    .admin-actions .btn { width: 100%; }
}
.qr-box {
    margin-top: 14px;
    padding: 14px;
    border: 3px dashed rgba(24, 34, 58, 0.14);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.72);
}
.qr-box summary {
    cursor: pointer;
    color: #28418a;
    font-weight: 900;
}
.qr-box img {
    display: block;
    width: min(100%, 220px);
    height: auto;
    margin: 14px auto;
    border: 10px solid #fff;
    border-radius: 8px;
}
.free-challenge-list {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}
.challenge-play-card {
    padding: 20px;
    border: 3px solid rgba(24, 34, 58, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
}
.challenge-play-card h1 {
    font-size: clamp(2.4rem, 7vw, 5rem);
}
.qr-video {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    margin-top: 16px;
    border: 4px solid #fff;
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(24, 34, 58, 0.18);
}
.install-app-button {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: var(--white);
    box-shadow: 0 8px 0 rgba(24, 34, 58, 0.14), 0 18px 38px rgba(24, 34, 58, 0.18);
    cursor: pointer;
    font: 900 0.95rem "Nunito", system-ui, sans-serif;
}
.install-app-button[hidden] {
    display: none;
}
@media (max-width: 520px) {
    .install-app-button {
        right: 12px;
        bottom: 12px;
        min-height: 42px;
        padding: 10px 14px;
    }
}
.menu-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #172241;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 2px 0;
    border-radius: 999px;
    background: #ffffff;
}
.site-header .top-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(92vw, 280px);
    padding: 10px;
    border: 2px solid rgba(255, 255, 255, 0.78);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 42px rgba(24, 34, 58, 0.18);
}
.site-header.menu-open .top-nav {
    display: grid;
    gap: 8px;
}
.site-header .top-nav a {
    width: 100%;
    min-width: 0;
    background: rgba(61, 124, 255, 0.08);
}
.modal-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.image-preview:empty {
    display: none;
}
.image-preview .app-cover {
    max-height: 220px;
}
.option-grid,
.choice-options {
    display: grid;
    gap: 10px;
}
.option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.choice-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border: 3px solid rgba(24, 34, 58, 0.12);
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
}
.choice-options input {
    width: auto;
}
.choice-options span {
    color: #26324f;
    font-weight: 900;
}
@media (max-width: 820px) {
    .site-header { flex-wrap: nowrap; }
    .site-header .top-nav { margin-top: 0; }
    .option-grid { grid-template-columns: 1fr; }
}
