:root {
    --h48-bg: #030303;
    --h48-panel: rgba(12, 12, 14, 0.82);
    --h48-panel-strong: rgba(17, 17, 20, 0.94);
    --h48-panel-soft: rgba(255, 255, 255, 0.055);
    --h48-red: #f3292e;
    --h48-red-dark: #8d1115;
    --h48-amber: #f5b84d;
    --h48-green: #20c997;
    --h48-text: #ffffff;
    --h48-muted: rgba(255, 255, 255, 0.66);
    --h48-faint: rgba(255, 255, 255, 0.38);
    --h48-line: rgba(255, 255, 255, 0.13);
    --h48-line-red: rgba(243, 41, 46, 0.34);
    --h48-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
    --h48-radius: 8px;
    --h48-header: 78px;
    --h48-font: "Roboto", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.h48-body {
    margin: 0;
    min-height: 100%;
    background: var(--h48-bg);
    color: var(--h48-text);
    font-family: var(--h48-font);
    overflow-x: hidden;
}

.h48-body a {
    color: inherit;
}

.h48-body img,
.h48-body video {
    max-width: 100%;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    transform: translateY(-140%);
    background: var(--h48-red);
    color: #fff;
    padding: 10px 14px;
    border-radius: var(--h48-radius);
    font-weight: 700;
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.h48-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: var(--h48-header);
    background: rgba(3, 3, 3, 0.82);
    border-bottom: 1px solid var(--h48-line);
    backdrop-filter: blur(18px);
}

.h48-nav {
    width: min(1220px, calc(100% - 32px));
    min-height: var(--h48-header);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.h48-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 0;
}

.h48-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex: 0 0 48px;
}

.h48-brand span {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.h48-brand strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
}

.h48-brand small {
    color: var(--h48-muted);
    font-size: 0.76rem;
    line-height: 1.25;
}

.h48-nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.h48-nav-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 13px;
    color: rgba(255, 255, 255, 0.78);
    border-radius: var(--h48-radius);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
}

.h48-nav-menu a:hover,
.h48-nav-menu a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.075);
}

.h48-nav-menu .h48-nav-cta {
    color: #fff;
    background: var(--h48-red);
}

.h48-nav-menu .h48-nav-cta:hover,
.h48-nav-menu .h48-nav-cta:focus-visible {
    background: #ff3d42;
}

.h48-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--h48-line);
    border-radius: var(--h48-radius);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.h48-nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
}

.h48-video-background {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background: #000;
}

.h48-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.33;
    filter: saturate(0.9) contrast(1.08);
}

.h48-video-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.58) 48%, rgba(30, 0, 0, 0.76)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.38), #030303 96%);
}

.h48-kicker {
    margin: 0 0 12px;
    color: var(--h48-red);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.challenge-hero {
    min-height: 78svh;
    display: flex;
    align-items: center;
    padding: 58px 0 52px;
    position: relative;
}

.challenge-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--h48-line-red), transparent);
}

.challenge-hero-grid {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    gap: 42px;
    align-items: center;
}

.challenge-hero-copy {
    min-width: 0;
    padding: 16px 0;
}

.challenge-hero-logo {
    display: block;
    width: min(360px, 100%);
    max-height: 210px;
    object-fit: contain;
    object-position: left center;
    margin: 0 0 22px;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.5));
}

.challenge-hero h1 {
    margin: 0;
    color: #fff;
    font-size: 5rem;
    line-height: 0.95;
    font-weight: 900;
    max-width: 720px;
}

.challenge-hero-subtitle {
    max-width: 620px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.12rem;
    line-height: 1.65;
}

.challenge-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.h48-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: var(--h48-radius);
    border: 1px solid transparent;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.h48-button:hover,
.h48-button:focus-visible {
    transform: translateY(-1px);
    text-decoration: none;
}

.h48-button-primary {
    background: var(--h48-red);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
}

.h48-button-primary:hover,
.h48-button-primary:focus-visible {
    background: #ff3b40;
    color: #fff;
}

.h48-button-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: var(--h48-line);
}

.h48-button-secondary:hover,
.h48-button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.11);
    color: #fff;
}

.challenge-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 32px 0 0;
    max-width: 760px;
}

.challenge-facts div {
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--h48-line);
    border-radius: var(--h48-radius);
    background: rgba(255, 255, 255, 0.045);
}

.challenge-facts dt {
    margin: 0 0 8px;
    color: var(--h48-faint);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.challenge-facts dd {
    margin: 0;
    color: #fff;
    font-weight: 800;
    line-height: 1.32;
}

.registration-panel {
    min-width: 0;
    max-height: calc(100svh - 120px);
    overflow: auto;
    padding: 26px;
    border: 1px solid var(--h48-line-red);
    border-radius: var(--h48-radius);
    background: var(--h48-panel);
    box-shadow: var(--h48-shadow);
    backdrop-filter: blur(20px);
}

.registration-panel h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 2rem;
    line-height: 1.08;
    font-weight: 900;
}

.registration-panel h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.18;
    font-weight: 900;
}

.registration-panel p,
.panel-state p {
    color: var(--h48-muted);
    line-height: 1.58;
}

.registration-intro {
    margin: 0 0 20px;
}

.panel-state {
    text-align: left;
}

.panel-state > i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 18px;
    border-radius: 50%;
    color: #fff;
    background: rgba(243, 41, 46, 0.22);
    border: 1px solid var(--h48-line-red);
}

.panel-state-success > i {
    color: var(--h48-green);
    background: rgba(32, 201, 151, 0.11);
    border-color: rgba(32, 201, 151, 0.28);
}

.panel-state-danger > i {
    color: var(--h48-red);
}

.login-drawer {
    display: none;
    margin-bottom: 20px;
    padding: 18px;
    border: 1px solid var(--h48-line);
    border-radius: var(--h48-radius);
    background: rgba(0, 0, 0, 0.34);
}

.login-drawer.is-open {
    display: block;
}

.small-link {
    display: inline-flex;
    margin-top: 12px;
    color: var(--h48-muted);
    font-size: 0.9rem;
}

.challenge-form {
    display: block;
}

.wizard-progress {
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
}

.wizard-progress span {
    display: block;
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, var(--h48-red), var(--h48-amber));
    border-radius: inherit;
    transition: width 220ms ease;
}

.wizard-dots {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    padding: 0;
    margin: 14px 0 22px;
    list-style: none;
}

.wizard-dots li {
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--h48-radius);
    border: 1px solid var(--h48-line);
    color: var(--h48-muted);
    background: rgba(255, 255, 255, 0.045);
    font-size: 0.84rem;
    font-weight: 900;
}

.wizard-dots li.is-active,
.wizard-dots li.is-complete {
    color: #fff;
    background: rgba(243, 41, 46, 0.24);
    border-color: var(--h48-line-red);
}

.wizard-step {
    display: none;
}

.wizard-step.is-active {
    display: grid;
    gap: 18px;
}

.step-count {
    margin: 0;
    color: var(--h48-faint);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.step-note {
    margin: -6px 0 0;
}

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

.challenge-form label,
.challenge-form fieldset,
.login-drawer label {
    min-width: 0;
}

.challenge-form label,
.login-drawer label {
    display: grid;
    gap: 8px;
}

.challenge-form label > span:first-child,
.login-drawer label > span:first-child,
.challenge-form legend {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
}

.challenge-form input,
.challenge-form select,
.login-drawer input {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--h48-line);
    border-radius: var(--h48-radius);
    background: rgba(0, 0, 0, 0.36);
    color: #fff;
    padding: 0 13px;
    font: inherit;
}

.challenge-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--h48-muted) 50%), linear-gradient(135deg, var(--h48-muted) 50%, transparent 50%);
    background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.challenge-form input:focus,
.challenge-form select:focus,
.login-drawer input:focus {
    outline: none;
    border-color: rgba(243, 41, 46, 0.82);
    box-shadow: 0 0 0 3px rgba(243, 41, 46, 0.18);
}

.challenge-form input.is-invalid,
.challenge-form select.is-invalid {
    border-color: var(--h48-red);
}

.challenge-form small {
    color: var(--h48-faint);
    font-size: 0.82rem;
    line-height: 1.35;
}

.field-error {
    color: #ff777b;
    font-size: 0.84rem;
    min-height: 0;
}

.live-check-message {
    display: block;
    padding: 9px 10px;
    border-radius: var(--h48-radius);
    font-size: 0.84rem;
    font-weight: 800;
}

.live-check-message.is-error {
    color: #ff9da0;
    background: rgba(243, 41, 46, 0.12);
}

.live-check-message.is-success {
    color: #75e4bd;
    background: rgba(32, 201, 151, 0.1);
}

.live-check-message.is-checking {
    color: var(--h48-muted);
    background: rgba(255, 255, 255, 0.06);
}

.challenge-form fieldset {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    border: 0;
}

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

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

.radio-grid label,
.account-choice .choice-button,
.checkbox-line {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border: 1px solid var(--h48-line);
    border-radius: var(--h48-radius);
    background: rgba(255, 255, 255, 0.045);
    color: #fff;
    cursor: pointer;
}

.radio-grid input,
.checkbox-line input {
    width: 16px;
    height: 16px;
    min-height: 16px;
    flex: 0 0 16px;
    accent-color: var(--h48-red);
}

.radio-grid label.is-selected,
.account-choice .choice-button.is-selected,
.checkbox-line:has(input:checked) {
    border-color: var(--h48-line-red);
    background: rgba(243, 41, 46, 0.16);
}

.radio-grid label.is-invalid,
.checkbox-line.is-invalid {
    border-color: var(--h48-red);
}

.account-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(32, 201, 151, 0.3);
    border-radius: var(--h48-radius);
    background: rgba(32, 201, 151, 0.1);
}

.account-card i {
    color: var(--h48-green);
    font-size: 1.4rem;
}

.account-card span {
    display: grid;
    gap: 3px;
}

.account-card small {
    color: var(--h48-muted);
}

.account-choice {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.choice-button {
    font: inherit;
    font-weight: 900;
    justify-content: center;
}

.conditional-field {
    display: none;
    padding: 14px;
    border: 1px solid var(--h48-line);
    border-radius: var(--h48-radius);
    background: rgba(255, 255, 255, 0.04);
}

.conditional-field.is-visible {
    display: block;
}

.checkbox-line {
    align-items: flex-start;
}

.checkbox-line a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--h48-red);
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
}

#prevBtn {
    visibility: hidden;
}

#submitBtn {
    display: none;
}

.registration-success {
    display: grid;
    gap: 12px;
    text-align: center;
    padding: 26px 12px;
}

.registration-success i {
    color: var(--h48-amber);
    font-size: 3rem;
}

.registration-success h3 {
    margin: 0;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 22px 0 12px;
}

.countdown div {
    display: grid;
    gap: 4px;
    min-height: 72px;
    align-content: center;
    justify-items: center;
    border: 1px solid var(--h48-line-red);
    border-radius: var(--h48-radius);
    background: rgba(243, 41, 46, 0.12);
}

.countdown strong {
    font-size: 1.5rem;
    line-height: 1;
}

.countdown span {
    color: var(--h48-muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.opens-date {
    margin-top: 12px;
    color: var(--h48-muted);
}

.content-band {
    position: relative;
    background: #070707;
    border-top: 1px solid var(--h48-line);
}

.content-band-dark {
    background:
        linear-gradient(180deg, rgba(243, 41, 46, 0.08), transparent 42%),
        #030303;
}

.content-band-red {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72)),
        #150405;
}

.content-inner {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 76px 0;
}

.split-content {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    gap: 54px;
    align-items: start;
}

.content-band h1,
.content-band h2 {
    margin: 0;
    color: #fff;
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 900;
}

.content-band h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.12rem;
    font-weight: 900;
}

.prose-block {
    color: var(--h48-muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.prose-block p {
    margin: 0 0 18px;
}

.prose-block p:last-child {
    margin-bottom: 0;
}

.prose-block h2 {
    margin: 34px 0 10px;
    font-size: 1.55rem;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 30px;
}

.process-grid,
.rules-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

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

.process-grid article,
.rules-grid article,
.award-stack article,
.faq-grid details {
    padding: 20px;
    border: 1px solid var(--h48-line);
    border-radius: var(--h48-radius);
    background: rgba(255, 255, 255, 0.045);
}

.process-grid span,
.rules-grid span,
.award-stack span {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--h48-red);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.process-grid p,
.rules-grid p,
.award-stack p,
.faq-grid p {
    margin: 0;
    color: var(--h48-muted);
    line-height: 1.62;
}

.rules-copy {
    max-width: 860px;
    padding: 24px;
    border: 1px solid var(--h48-line);
    border-radius: var(--h48-radius);
    background: rgba(255, 255, 255, 0.045);
}

.award-stack {
    display: grid;
    gap: 14px;
}

.award-stack article {
    background: linear-gradient(90deg, rgba(243, 41, 46, 0.16), rgba(255, 255, 255, 0.045));
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.faq-grid summary {
    cursor: pointer;
    color: #fff;
    font-weight: 900;
}

.faq-grid p {
    margin-top: 12px;
}

.h48-footer {
    background: #020202;
    border-top: 1px solid var(--h48-line);
}

.h48-footer-cta {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--h48-line);
}

.h48-footer-cta h2 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.08;
    font-weight: 900;
}

.h48-footer-grid {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 1fr));
    gap: 28px;
}

.h48-footer-brand img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin-bottom: 16px;
}

.h48-footer p {
    margin: 0 0 12px;
    color: var(--h48-muted);
    line-height: 1.6;
}

.h48-footer h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
}

.h48-footer a {
    display: table;
    margin: 0 0 10px;
    color: var(--h48-muted);
    text-decoration: none;
}

.h48-footer a:hover,
.h48-footer a:focus-visible {
    color: #fff;
}

.h48-footer-parent a {
    display: inline;
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--h48-red);
}

.h48-footer-bottom {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--h48-faint);
    font-size: 0.86rem;
}

.flash-stack {
    position: fixed;
    top: calc(var(--h48-header) + 12px);
    right: 16px;
    z-index: 100;
    display: grid;
    gap: 8px;
    width: min(360px, calc(100% - 32px));
}

.flash-message {
    padding: 12px 14px;
    border-radius: var(--h48-radius);
    border: 1px solid var(--h48-line);
    background: var(--h48-panel-strong);
    color: #fff;
    box-shadow: var(--h48-shadow);
}

.flash-error {
    border-color: rgba(243, 41, 46, 0.55);
}

.flash-success {
    border-color: rgba(32, 201, 151, 0.42);
}

.consent-shell {
    min-height: calc(100svh - var(--h48-header));
    display: grid;
    place-items: center;
    padding: 64px 16px;
}

.consent-card {
    width: min(560px, 100%);
    padding: 30px;
    border: 1px solid var(--h48-line-red);
    border-radius: var(--h48-radius);
    background: var(--h48-panel);
    box-shadow: var(--h48-shadow);
    text-align: center;
}

.consent-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 18px;
}

.consent-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    border: 1px solid var(--h48-line-red);
    border-radius: 50%;
    color: var(--h48-red);
    background: rgba(243, 41, 46, 0.14);
    font-size: 1.4rem;
}

.consent-icon.is-success {
    color: var(--h48-green);
    border-color: rgba(32, 201, 151, 0.34);
    background: rgba(32, 201, 151, 0.12);
}

.consent-icon.is-warning {
    color: var(--h48-amber);
    border-color: rgba(245, 184, 77, 0.34);
    background: rgba(245, 184, 77, 0.12);
}

.consent-icon.is-danger {
    color: var(--h48-red);
}

.consent-card h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 900;
}

.consent-card p {
    color: var(--h48-muted);
    line-height: 1.65;
}

.consent-details {
    display: grid;
    gap: 0;
    margin: 24px 0;
    border: 1px solid var(--h48-line);
    border-radius: var(--h48-radius);
    overflow: hidden;
    text-align: left;
}

.consent-details div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--h48-line);
}

.consent-details div:last-child {
    border-bottom: 0;
}

.consent-details dt {
    color: var(--h48-faint);
    font-weight: 800;
}

.consent-details dd {
    margin: 0;
    color: #fff;
    font-weight: 800;
    text-align: right;
}

.consent-small {
    font-size: 0.9rem;
}

.consent-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.consent-result {
    display: none;
    margin-top: 20px;
    padding: 14px;
    border-radius: var(--h48-radius);
}

.consent-result.is-success {
    display: block;
    color: #88edc8;
    background: rgba(32, 201, 151, 0.12);
}

.consent-result.is-danger {
    display: block;
    color: #ff9da0;
    background: rgba(243, 41, 46, 0.12);
}

.terms-page {
    min-height: calc(100svh - var(--h48-header));
}

@media (max-width: 1040px) {
    .challenge-hero-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .registration-panel {
        max-height: none;
    }

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

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

@media (max-width: 820px) {
    :root {
        --h48-header: 70px;
    }

    .h48-nav-toggle {
        display: inline-flex;
    }

    .h48-nav-menu {
        position: absolute;
        top: var(--h48-header);
        left: 16px;
        right: 16px;
        display: none;
        padding: 12px;
        border: 1px solid var(--h48-line);
        border-radius: var(--h48-radius);
        background: rgba(3, 3, 3, 0.97);
        box-shadow: var(--h48-shadow);
    }

    .h48-nav-menu.is-open {
        display: grid;
        gap: 4px;
    }

    .h48-nav-menu a {
        width: 100%;
        justify-content: space-between;
    }

    .challenge-hero {
        min-height: auto;
        padding: 38px 0 42px;
    }

    .challenge-hero h1 {
        font-size: 3.2rem;
    }

    .challenge-facts,
    .form-grid,
    .radio-grid,
    .radio-grid.two-up,
    .account-choice,
    .faq-grid,
    .split-content,
    .h48-footer-grid {
        grid-template-columns: 1fr;
    }

    .registration-panel {
        padding: 20px;
    }

    .content-inner {
        padding: 56px 0;
    }

    .content-band h1,
    .content-band h2 {
        font-size: 2.3rem;
    }

    .h48-footer-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .h48-footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .h48-brand small {
        display: none;
    }

    .h48-brand img {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .challenge-hero h1 {
        font-size: 2.55rem;
    }

    .challenge-hero-subtitle {
        font-size: 1rem;
    }

    .challenge-hero-actions,
    .wizard-actions,
    .consent-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .h48-button {
        width: 100%;
    }

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

    .process-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }
}
