:root {
    --navy: #071525;
    --navy-2: #10243a;
    --ink: #152033;
    --muted: #637083;
    --line: #d8e0e8;
    --line-dark: rgba(255, 255, 255, 0.14);
    --paper: #f7faf8;
    --white: #ffffff;
    --emerald: #087a55;
    --emerald-2: #0aa36d;
    --gold: #d89b22;
    --gold-2: #f2c14e;
    --red: #c83a3a;
    --shadow: 0 18px 42px rgba(7, 21, 37, 0.14);
    --radius: 8px;
    --container: 1180px;
    --header-height: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
h1,
h2,
h3,
ul,
ol,
dl,
dd {
    margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child,
dl:last-child {
    margin-bottom: 0;
}

button,
input,
select {
    font: inherit;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 1000;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: var(--white);
    background: var(--emerald);
}

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

.container.narrow {
    max-width: 860px;
}

.site-main {
    min-height: 70vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: var(--header-height);
    color: var(--white);
    background: rgba(7, 21, 37, 0.96);
    border-bottom: 1px solid var(--line-dark);
    backdrop-filter: blur(14px);
}

.admin-bar .site-header {
    top: 32px;
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.brand strong {
    display: block;
    font-size: 18px;
    line-height: 1.05;
}

.brand small {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.2;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-2), var(--emerald-2));
    border-radius: var(--radius);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(216, 155, 34, 0.24);
}

.menu-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
    display: inline-grid;
    place-items: center;
    gap: 4px;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
    width: 18px;
    height: 2px;
    background: currentColor;
}

.primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    padding: 16px;
    background: var(--navy);
    border-bottom: 1px solid var(--line-dark);
}

.primary-nav.is-open {
    display: block;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu {
    display: grid;
    gap: 4px;
}

.primary-menu a {
    display: block;
    min-height: 44px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.86);
    border-radius: var(--radius);
}

.primary-menu a:hover,
.primary-menu a:focus {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.header-entry {
    display: none;
}

.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus {
    transform: translateY(-1px);
}

.btn-primary {
    color: var(--white);
    background: var(--emerald);
    box-shadow: 0 12px 28px rgba(8, 122, 85, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
    background: #096846;
}

.btn-secondary {
    color: var(--navy);
    background: var(--white);
    border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus {
    border-color: var(--emerald);
}

.btn-gold,
.btn-brand {
    color: #1c1404;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    box-shadow: 0 12px 28px rgba(216, 155, 34, 0.25);
}

.btn-ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--line-dark);
}

.icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    flex: 0 0 18px;
}

.icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero,
.subpage-hero {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 21, 37, 0.96), rgba(16, 36, 58, 0.9)),
        radial-gradient(circle at 82% 8%, rgba(242, 193, 78, 0.22), transparent 34%),
        var(--navy);
}

.hero {
    min-height: calc(100vh - var(--header-height));
    padding: 40px 0 44px;
}

.hero-grid,
.subpage-grid {
    display: grid;
    gap: 28px;
    align-items: center;
}

.hero-copy {
    max-width: 720px;
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--gold-2);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

h1,
h2,
h3 {
    color: inherit;
    line-height: 1.12;
    letter-spacing: 0;
}

h1 {
    margin-bottom: 16px;
    font-size: 38px;
}

h2 {
    margin-bottom: 14px;
    font-size: 28px;
}

h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.hero-subtitle,
.subpage-hero p {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 18px;
}

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

.hero-chips,
.feature-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-chips span,
.feature-line span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 7px 10px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.06);
    font-size: 14px;
}

.hero-visual,
.image-panel,
.subpage-img {
    position: relative;
}

.sli-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius);
}

.hero-img,
.subpage-img,
.panel-img,
.inline-visual,
.responsible-img {
    aspect-ratio: 4 / 3;
    border: 1px solid var(--line-dark);
    box-shadow: var(--shadow);
}

.hero-img {
    aspect-ratio: 16 / 11;
}

.hero-live-card {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: min(260px, calc(100% - 24px));
    padding: 14px;
    color: var(--white);
    background: rgba(7, 21, 37, 0.9);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
}

.hero-live-card strong,
.hero-live-card small {
    display: block;
}

.hero-live-card small {
    color: rgba(255, 255, 255, 0.72);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 6px;
    border-radius: 999px;
    background: var(--gold-2);
    box-shadow: 0 0 0 6px rgba(242, 193, 78, 0.18);
}

.section {
    padding: 52px 0;
}

.section-heading {
    max-width: 840px;
    margin-bottom: 24px;
}

.section-heading.compact {
    max-width: 700px;
}

.section-heading p,
.split-heading p,
.checker-help p,
.note-card p {
    color: var(--muted);
}

.split-heading {
    display: grid;
    gap: 10px;
    align-items: end;
    margin-bottom: 22px;
}

.quick-grid {
    display: grid;
    gap: 12px;
}

.quick-card {
    min-height: 126px;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 24px rgba(7, 21, 37, 0.06);
}

.quick-card .icon {
    color: var(--emerald);
}

.quick-card strong {
    font-size: 18px;
}

.quick-card span:last-child {
    color: var(--muted);
    font-size: 14px;
}

.quick-card--entry {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-2), var(--emerald));
    border-color: rgba(255, 255, 255, 0.12);
}

.quick-card--entry span:last-child {
    color: rgba(255, 255, 255, 0.78);
}

.board-section,
.recent-section,
.faq-section,
.archive-filter-section {
    background: var(--white);
}

.result-board,
.recent-list,
.review-grid,
.weekday-grid,
.archive-grid {
    display: grid;
    gap: 16px;
}

.result-card,
.recent-card,
.empty-state,
.note-card,
.checker-help,
.checker-panel,
.weekday-card,
.review-grid article,
.timeline-item {
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 32px rgba(7, 21, 37, 0.08);
}

.result-card {
    color: var(--ink);
    border-top: 4px solid var(--gold);
}

.result-card.is-published {
    border-top-color: var(--emerald);
}

.result-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.status-badge {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 9px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 800;
}

.status-badge--ok {
    color: #063c29;
    background: #dff7ec;
}

.status-badge--wait {
    color: #6b4300;
    background: #fff3cb;
}

.status-badge--no {
    color: #781f1f;
    background: #ffe4e4;
}

.result-card__numbers,
.number-list {
    display: grid;
    gap: 10px;
}

.result-card__numbers div,
.number-list div {
    padding: 12px;
    background: #f4f8f5;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

dt {
    color: var(--muted);
    font-size: 14px;
}

dd {
    margin: 0;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.waiting-text {
    margin-bottom: 4px;
    color: var(--navy);
    font-size: 20px;
    font-weight: 800;
}

.muted {
    color: var(--muted);
}

.verify-note {
    margin-top: 12px;
    color: var(--red);
    font-size: 14px;
    font-weight: 800;
}

.note-strip {
    margin-top: 16px;
    padding: 14px 16px;
    color: var(--navy);
    background: #fff6dc;
    border: 1px solid #edd28b;
    border-radius: var(--radius);
}

.checker-grid,
.prize-grid,
.mobile-grid,
.responsible-panel,
.steps-layout,
.schedule-columns {
    display: grid;
    gap: 20px;
    align-items: center;
}

.checker-panel {
    background: linear-gradient(180deg, var(--white), #f7fbf7);
}

.ticket-form {
    display: grid;
    gap: 14px;
}

.ticket-form label,
.filter-form label {
    display: grid;
    gap: 6px;
    color: var(--ink);
    font-weight: 800;
}

.ticket-form label span,
.filter-form label span {
    font-size: 14px;
}

input,
select {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

input:focus,
select:focus {
    outline: 3px solid rgba(8, 122, 85, 0.16);
    border-color: var(--emerald);
}

.form-row,
.filter-form {
    display: grid;
    gap: 12px;
}

.checker-result {
    min-height: 0;
    margin-top: 16px;
}

.checker-result--match,
.checker-result--wait,
.checker-result--no {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.checker-result--match {
    background: #effaf4;
}

.checker-result--wait {
    background: #fff8e4;
}

.checker-result--no {
    background: #fff0f0;
}

.image-panel {
    color: var(--white);
    background: var(--navy-2);
    border-radius: var(--radius);
    overflow: hidden;
}

.image-panel p {
    padding: 16px;
    color: rgba(255, 255, 255, 0.82);
}

.weekday-grid {
    grid-template-columns: 1fr;
}

.weekday-card {
    min-height: 142px;
    display: grid;
    gap: 8px;
}

.weekday-card strong {
    font-size: 18px;
}

.weekday-card span {
    color: var(--emerald);
    font-weight: 800;
}

.weekday-card small {
    color: var(--muted);
    font-size: 14px;
}

.weekday-icons {
    display: flex;
    gap: 8px;
    color: var(--gold);
}

.prize-section,
.how-section,
.responsible-section,
.tab-card-section {
    background: #edf5f1;
}

.inline-visual {
    margin-top: 16px;
}

.responsive-table {
    display: grid;
    gap: 12px;
}

.responsive-table [role="row"] {
    display: grid;
    gap: 8px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.responsive-table .table-head {
    display: none;
}

.responsive-table span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.responsive-table span[data-label]::before {
    content: attr(data-label) ": ";
    color: var(--muted);
    font-weight: 800;
}

.recent-card h2,
.recent-card h3 {
    color: var(--navy);
}

.recent-card p,
.empty-state p,
.review-grid p,
.timeline-item p {
    color: var(--muted);
}

.text-link {
    color: var(--emerald);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.step-list {
    list-style: none;
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.step-list li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.step-list span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--emerald);
    border-radius: var(--radius);
    font-weight: 800;
}

.mobile-section {
    background: var(--navy);
    color: var(--white);
}

.mobile-section p {
    color: rgba(255, 255, 255, 0.78);
}

.article-section {
    background: #f7faf8;
}

.article-shell {
    max-width: 940px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.longform {
    color: var(--ink);
}

.longform h3 {
    margin-top: 28px;
    color: var(--navy);
}

.longform p {
    color: #354255;
}

.review-grid {
    grid-template-columns: 1fr;
}

.review-grid article {
    min-height: 128px;
}

.responsible-panel {
    padding: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--emerald));
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
}

.responsible-panel p {
    color: rgba(255, 255, 255, 0.84);
}

.responsible-panel .verify-note {
    color: var(--gold-2);
}

.responsible-img {
    border-color: var(--line-dark);
}

.faq-list {
    display: grid;
    gap: 12px;
}

details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

summary {
    min-height: 52px;
    padding: 14px 16px;
    cursor: pointer;
    color: var(--navy);
    font-weight: 800;
}

details p {
    margin: 0;
    padding: 0 16px 16px;
    color: var(--muted);
}

.subpage-hero {
    padding: 46px 0;
}

.subpage-hero h1 {
    font-size: 34px;
}

.subpage-img {
    background: var(--navy-2);
}

.content-page {
    max-width: 860px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.content-page h2,
.content-page h3 {
    color: var(--navy);
}

.content-page a {
    color: var(--emerald);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.filter-panel {
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.result-table [role="row"] {
    align-items: center;
}

.recent-list--ten {
    grid-template-columns: 1fr;
}

.tab-shell {
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.tab-labels {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.tab-labels a {
    flex: 0 0 auto;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    color: var(--navy);
    background: #edf5f1;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 800;
}

.tab-labels a.is-active {
    color: var(--white);
    background: var(--emerald);
    border-color: var(--emerald);
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
}

.timeline-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--emerald);
    border-radius: var(--radius);
}

.timeline-count {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--gold);
    font-weight: 800;
}

.site-footer {
    padding: 48px 0 88px;
    color: rgba(255, 255, 255, 0.84);
    background: var(--navy);
}

.footer-grid {
    display: grid;
    gap: 24px;
}

.brand--footer {
    margin-bottom: 14px;
}

.footer-grid h2 {
    font-size: 18px;
}

.footer-grid p,
.footer-grid li {
    color: rgba(255, 255, 255, 0.72);
}

.age-note {
    color: var(--gold-2);
    font-weight: 800;
}

.footer-menu {
    display: grid;
    gap: 8px;
}

.footer-menu a,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-checks ul {
    padding-left: 18px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    padding-top: 24px;
    margin-top: 28px;
    border-top: 1px solid var(--line-dark);
}

.mobile-action-bar {
    position: fixed;
    z-index: 60;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 8px;
    background: rgba(7, 21, 37, 0.96);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.mobile-action-bar a {
    min-height: 48px;
    display: grid;
    place-items: center;
    gap: 2px;
    color: var(--white);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 800;
}

.mobile-action-bar a:nth-child(2) {
    color: var(--navy);
    background: var(--gold-2);
}

.mobile-action-bar .icon {
    width: 16px;
    height: 16px;
}

.mobile-action-bar .icon svg {
    width: 16px;
    height: 16px;
}

.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 560px) {
    .hero-actions .btn {
        width: auto;
    }

    .quick-grid,
    .review-grid,
    .recent-list,
    .weekday-grid,
    .archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-row,
    .filter-form,
    .schedule-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filter-form .btn {
        align-self: end;
    }

    .responsive-table .table-head {
        display: grid;
        color: var(--white);
        background: var(--navy);
        border-color: var(--navy);
        font-weight: 800;
    }

    .prize-table [role="row"] {
        grid-template-columns: 1fr 1.5fr 1.2fr;
    }

    .result-table [role="row"] {
        grid-template-columns: 0.9fr 1.4fr 0.75fr 1fr 0.65fr 0.8fr;
    }

    .responsive-table span[data-label]::before {
        content: "";
        display: none;
    }
}

@media (min-width: 760px) {
    h1 {
        font-size: 52px;
    }

    h2 {
        font-size: 34px;
    }

    .hero {
        padding: 58px 0 64px;
    }

    .hero-grid,
    .subpage-grid,
    .checker-grid,
    .prize-grid,
    .mobile-grid,
    .responsible-panel,
    .steps-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    }

    .split-heading {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    }

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

    .result-board--single {
        grid-template-columns: minmax(0, 1fr);
    }

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

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

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

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

    .recent-list--ten {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .section {
        padding: 72px 0;
    }

    .article-shell {
        padding: 38px;
    }

    .subpage-hero {
        padding: 64px 0;
    }

    .subpage-hero h1 {
        font-size: 46px;
    }

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

@media (min-width: 980px) {
    .menu-toggle {
        display: none;
    }

    .primary-nav {
        position: static;
        display: block;
        margin-left: auto;
        padding: 0;
        background: transparent;
        border: 0;
    }

    .primary-menu {
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .primary-menu a {
        font-size: 14px;
        white-space: nowrap;
    }

    .header-entry {
        display: inline-flex;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 0.9fr 1fr;
    }

    .mobile-action-bar {
        display: none;
    }

    .site-footer {
        padding-bottom: 48px;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 26px;
    }

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

    .brand small {
        display: none;
    }

    .hero-chips span,
    .feature-line span {
        width: 100%;
    }

    .result-card__top {
        display: grid;
    }

    .mobile-action-bar span {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
