:root {
    --night: #02031a;
    --night-2: #070a2a;
    --panel: rgba(8, 12, 45, 0.88);
    --panel-solid: #0a0f38;
    --panel-soft: rgba(14, 21, 66, 0.72);
    --cyan: #00e8ff;
    --cyan-soft: #8cf7ff;
    --magenta: #ff2bd6;
    --violet: #7b3cff;
    --fire: #ff7a18;
    --white: #f8fbff;
    --muted: #aab7d8;
    --line: rgba(86, 221, 255, 0.24);
    --danger: #ff6688;
    --success: #4dffd2;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-cyan: 0 0 34px rgba(0, 232, 255, 0.18);
    --shadow-magenta: 0 0 34px rgba(255, 43, 214, 0.18);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    scrollbar-color: #00b9d1 #030522;
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #030522;
}

::-webkit-scrollbar-thumb {
    min-height: 54px;
    background: #00b9d1;
    border: 3px solid #030522;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyan);
}

::-webkit-scrollbar-thumb:active {
    background: var(--magenta);
}

::-webkit-scrollbar-corner {
    background: #030522;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--night);
    color: var(--white);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    content: "";
    background: url("../images/claretiano-2026-poster.jpg") center 42% / cover no-repeat;
    opacity: 0.075;
    filter: blur(24px) saturate(1.3);
    transform: scale(1.08);
}

body::after {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    background: rgba(2, 3, 26, 0.9);
    pointer-events: none;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 12px 18px;
    color: var(--night);
    background: var(--cyan-soft);
    border-radius: 10px;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(2, 3, 26, 0.84);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

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

.brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: var(--shadow-cyan);
}

.brand span {
    display: grid;
    line-height: 1.2;
}

.brand strong {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.12rem;
    letter-spacing: 0.035em;
}

.brand small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.68rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    color: #dbe6ff;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--cyan-soft);
}

.site-nav__cta {
    padding: 10px 18px;
    border: 1px solid rgba(0, 232, 255, 0.55);
    border-radius: 999px;
    background: rgba(0, 232, 255, 0.08);
}

.hero {
    position: relative;
    isolation: isolate;
    padding: 72px 0 86px;
    overflow: hidden;
}

.hero__ambient {
    position: absolute;
    inset: 0 0 auto auto;
    z-index: -1;
    width: 54%;
    height: 100%;
    background: url("../images/claretiano-2026-poster.jpg") center / cover no-repeat;
    opacity: 0.12;
    filter: blur(46px) saturate(1.45);
    transform: scale(1.2);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
}

.hero__content {
    max-width: 650px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--cyan-soft);
    font-family: "Rajdhani", sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.hero-prize {
    position: relative;
    max-width: 620px;
    margin: 0 0 26px;
    padding: 15px 18px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 214, 92, 0.72);
    border-radius: 17px;
    background:
        linear-gradient(112deg, rgba(255, 205, 66, 0.17), rgba(255, 43, 214, 0.15) 52%, rgba(0, 232, 255, 0.14)),
        rgba(5, 8, 35, 0.88);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 28px rgba(255, 191, 45, 0.16),
        0 0 36px rgba(0, 232, 255, 0.1);
}

.hero-prize::after {
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    content: "";
    background: linear-gradient(180deg, #ffe16f, var(--magenta), var(--cyan));
    box-shadow: 0 0 16px rgba(0, 232, 255, 0.58);
}

.hero-prize__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 225, 111, 0.56);
    border-radius: 13px;
    color: #ffe16f;
    background: rgba(255, 200, 55, 0.12);
    box-shadow: inset 0 0 18px rgba(255, 205, 66, 0.09), 0 0 18px rgba(255, 205, 66, 0.13);
    font-size: 1.22rem;
    text-shadow: 0 0 12px rgba(255, 213, 76, 0.6);
}

.hero-prize p {
    margin: 0;
    color: #edf7ff;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    font-weight: 600;
    line-height: 1.15;
}

.hero-prize strong {
    color: #ffe16f;
    font-size: clamp(1.55rem, 2.7vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    text-shadow: 0 0 18px rgba(255, 209, 71, 0.3);
}

.hero-prize span:not(.hero-prize__icon) {
    color: #f6f8ff;
}

.hero h1,
.section-heading h2,
.registration-guide h2 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 0.98;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(3.4rem, 7.4vw, 6.7rem);
    text-wrap: balance;
    text-shadow: 0 0 26px rgba(0, 232, 255, 0.2);
}

.hero__event-name {
    max-width: 590px;
    margin: 28px 0 0;
    color: #e9f3ff;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 600;
    line-height: 1.08;
}

.hero__event-name span {
    color: var(--cyan);
}

.hero__intro {
    max-width: 580px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.date-panel {
    width: fit-content;
    margin: 30px 0 0;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(6, 16, 52, 0.78);
    border: 1px solid rgba(0, 232, 255, 0.45);
    border-radius: 16px;
    box-shadow: var(--shadow-cyan);
}

.date-panel__day {
    color: var(--cyan-soft);
    font-family: "Rajdhani", sans-serif;
    font-size: 2.05rem;
    font-weight: 700;
    line-height: 1;
}

.date-panel__month {
    padding-left: 18px;
    color: #dce9ff;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero__actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    min-height: 50px;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
button:focus-visible,
input:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(140, 247, 255, 0.86);
    outline-offset: 3px;
}

.button--primary {
    color: #00121a;
    background: var(--cyan);
    box-shadow: 0 0 26px rgba(0, 232, 255, 0.32);
}

.button--primary:hover {
    box-shadow: 0 0 34px rgba(0, 232, 255, 0.48);
}

.button--ghost {
    color: #f4f7ff;
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.22);
}

.button--whatsapp {
    color: #04150c;
    background: #42e878;
    border-color: rgba(133, 255, 174, 0.76);
    box-shadow: 0 0 26px rgba(37, 211, 102, 0.24);
}

.button--whatsapp:hover {
    background: #66f392;
    box-shadow: 0 0 34px rgba(37, 211, 102, 0.4);
}

.button--whatsapp i {
    margin-right: 8px;
    font-size: 1.08em;
}

.hero__note {
    margin: 16px 0 0;
    color: #7f8daf;
    font-size: 0.76rem;
}

.poster-card {
    position: relative;
    width: min(100%, 430px);
    margin: 0 auto;
    padding: 10px;
    background: rgba(5, 8, 35, 0.92);
    border: 1px solid rgba(0, 232, 255, 0.48);
    border-radius: 26px;
    box-shadow: 0 0 50px rgba(0, 232, 255, 0.2), 0 0 70px rgba(255, 43, 214, 0.12);
}

.poster-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 18px;
}

.poster-card figcaption {
    padding: 12px 8px 4px;
    color: #8594b6;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.signal-strip {
    border-block: 1px solid rgba(0, 232, 255, 0.15);
    background: rgba(5, 9, 34, 0.74);
}

.signal-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.signal-strip article {
    min-height: 132px;
    padding: 26px 28px;
    border-right: 1px solid rgba(0, 232, 255, 0.14);
}

.signal-strip article:last-child {
    border-right: 0;
}

.signal-strip span {
    color: var(--magenta);
    font-family: "Rajdhani", sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.signal-strip strong {
    margin-top: 8px;
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.08rem;
}

.signal-strip p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.whatsapp-community {
    position: relative;
    padding: 58px 0 0;
}

.whatsapp-community__panel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(28px, 5vw, 54px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    align-items: center;
    gap: clamp(34px, 6vw, 76px);
    background:
        linear-gradient(125deg, rgba(5, 38, 34, 0.96), rgba(7, 14, 53, 0.96) 58%, rgba(24, 8, 52, 0.94)),
        var(--panel-solid);
    border: 1px solid rgba(66, 232, 120, 0.46);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 52px rgba(37, 211, 102, 0.12), 0 28px 80px rgba(0, 0, 0, 0.3);
}

.whatsapp-community__panel::before,
.whatsapp-community__panel::after {
    position: absolute;
    z-index: -1;
    content: "";
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.whatsapp-community__panel::before {
    top: -180px;
    right: -90px;
    width: 430px;
    height: 430px;
    background: rgba(37, 211, 102, 0.13);
}

.whatsapp-community__panel::after {
    bottom: -190px;
    left: 22%;
    width: 380px;
    height: 380px;
    background: rgba(123, 60, 255, 0.12);
}

.whatsapp-community__badge {
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 12px;
    color: #a6ffc1;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(66, 232, 120, 0.35);
    border-radius: 999px;
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.whatsapp-community__badge i {
    margin-right: 7px;
    font-size: 1rem;
}

.whatsapp-community__content h2 {
    max-width: 690px;
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(2.45rem, 5vw, 4.3rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 0.98;
}

.whatsapp-community__content > p {
    max-width: 680px;
    margin: 20px 0 0;
    color: #bec9e4;
}

.whatsapp-community__content ul {
    margin: 25px 0 28px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.whatsapp-community__content li {
    padding: 9px 12px;
    color: #dcffe7;
    background: rgba(37, 211, 102, 0.07);
    border: 1px solid rgba(66, 232, 120, 0.2);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.whatsapp-community__content li i {
    margin-right: 6px;
    color: #66f392;
}

.whatsapp-community__content > small {
    max-width: 600px;
    margin-top: 13px;
    display: block;
    color: #8e9ab9;
    font-size: 0.68rem;
}

.whatsapp-community__qr {
    width: min(100%, 330px);
    justify-self: end;
    padding: 14px;
    display: block;
    color: #eafff0;
    background: rgba(2, 17, 18, 0.86);
    border: 1px solid rgba(133, 255, 174, 0.48);
    border-radius: 22px;
    box-shadow: 0 0 36px rgba(37, 211, 102, 0.2);
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.whatsapp-community__qr:hover,
.whatsapp-community__qr:focus-visible {
    transform: translateY(-4px);
    border-color: #66f392;
    box-shadow: 0 0 48px rgba(37, 211, 102, 0.34);
}

.whatsapp-community__scan {
    padding: 4px 6px 12px;
    display: block;
    color: #96ffb7;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.whatsapp-community__qr-viewport {
    overflow: hidden;
    display: block;
    aspect-ratio: 1;
    background: #fff;
    border: 8px solid #fff;
    border-radius: 15px;
}

.whatsapp-community__qr-viewport img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    transform: scale(1.38);
}

.whatsapp-community__qr strong {
    margin-top: 13px;
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.35rem;
}

.whatsapp-community__open {
    margin-top: 2px;
    display: block;
    color: #96ffb7;
    font-size: 0.72rem;
    font-weight: 700;
}

.whatsapp-community__open i {
    margin-left: 5px;
    font-size: 0.65rem;
}

.section {
    padding: 112px 0;
}

.section-heading {
    max-width: 760px;
}

.section-heading h2,
.registration-guide h2 {
    font-size: clamp(2.5rem, 5.2vw, 4.8rem);
}

.section-heading > p:last-child,
.registration-guide__intro {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1rem;
}

.bases-section {
    position: relative;
}

.bases-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.base-card {
    min-height: 250px;
    padding: 30px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 22px;
    background: var(--panel);
    border: 1px solid rgba(0, 232, 255, 0.34);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-cyan);
    color: inherit;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.base-card:hover,
.base-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(140, 247, 255, 0.72);
    box-shadow: 0 0 46px rgba(0, 232, 255, 0.24);
    outline: 0;
}

.base-card--magenta {
    border-color: rgba(255, 43, 214, 0.36);
    box-shadow: var(--shadow-magenta);
}

.base-card__index {
    width: 58px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--night);
    background: var(--cyan);
    border-radius: 14px;
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.base-card--magenta .base-card__index {
    color: var(--white);
    background: var(--magenta);
}

.base-card__label {
    margin: 1px 0 6px;
    color: var(--cyan-soft);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.base-card--magenta .base-card__label {
    color: #ff9aee;
}

.base-card h3 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.05;
}

.base-card p:not(.base-card__label) {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.status-pill {
    grid-column: 2;
    width: fit-content;
    align-self: end;
    padding: 8px 13px;
    color: #d8fbff;
    background: rgba(0, 232, 255, 0.08);
    border: 1px solid rgba(0, 232, 255, 0.34);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.base-card--magenta .status-pill {
    color: #ffd5f8;
    background: rgba(255, 43, 214, 0.08);
    border-color: rgba(255, 43, 214, 0.35);
}

.registration {
    padding-top: 72px;
}

.registration__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(40px, 6vw, 82px);
}

.registration-guide {
    position: sticky;
    top: 116px;
}

.process-list {
    margin: 34px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
    list-style: none;
}

.process-list li {
    padding: 17px 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 15px;
    background: rgba(10, 15, 56, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.process-list li > span {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    color: var(--cyan-soft);
    border: 1px solid rgba(0, 232, 255, 0.4);
    border-radius: 10px;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
}

.process-list strong {
    display: block;
    font-size: 0.88rem;
}

.process-list p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.73rem;
}

.support-card {
    margin-top: 20px;
    padding: 24px;
    background: rgba(10, 15, 56, 0.74);
    border: 1px solid rgba(255, 43, 214, 0.32);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-magenta);
}

.support-card__label {
    margin: 0 0 7px;
    color: #ff9aee;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.support-card h3 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.5rem;
}

.support-card > p:not(.support-card__label) {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.support-card a {
    margin-top: 16px;
    display: inline-block;
    color: var(--cyan-soft);
    font-size: 0.8rem;
    font-weight: 700;
    text-underline-offset: 4px;
}

.form-panel {
    overflow: hidden;
    background: rgba(7, 11, 42, 0.93);
    border: 1px solid rgba(0, 232, 255, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 55px rgba(0, 232, 255, 0.13), 0 30px 80px rgba(0, 0, 0, 0.28);
}

.form-panel__header {
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(0, 232, 255, 0.055);
    border-bottom: 1px solid rgba(0, 232, 255, 0.18);
}

.form-panel__kicker {
    margin: 0 0 4px;
    color: var(--cyan-soft);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.form-panel__header h3 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.9rem;
    line-height: 1;
}

.form-panel__header > span {
    color: rgba(140, 247, 255, 0.3);
    font-family: "Rajdhani", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
}

.registration-form {
    padding: 8px 32px 34px;
}

.registration-form fieldset {
    margin: 0;
    padding: 34px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.registration-form legend {
    margin-bottom: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.registration-form legend span {
    color: var(--cyan);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.field-grid {
    display: grid;
    gap: 18px;
}

.field-grid + .field-grid {
    margin-top: 18px;
}

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

.field {
    min-width: 0;
}

.field label,
.field--file > label:first-child {
    margin-bottom: 8px;
    display: block;
    color: #dce7ff;
    font-size: 0.76rem;
    font-weight: 700;
}

.field input:not([type="file"]),
.field select,
.field textarea,
.delegation-toolbar select {
    width: 100%;
    min-height: 50px;
    padding: 13px 14px;
    color: var(--white);
    background: rgba(3, 6, 28, 0.88);
    border: 1px solid rgba(157, 181, 225, 0.22);
    border-radius: 11px;
    outline: 0;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field textarea {
    resize: vertical;
    line-height: 1.5;
}

.field select,
.delegation-toolbar select {
    color-scheme: dark;
}

.field input:not([type="file"])::placeholder,
.field textarea::placeholder {
    color: #667496;
}

.field input:not([type="file"]):hover,
.field select:hover,
.field textarea:hover,
.delegation-toolbar select:hover {
    border-color: rgba(140, 247, 255, 0.38);
}

.field input:not([type="file"]):focus,
.field select:focus,
.field textarea:focus,
.delegation-toolbar select:focus {
    background: rgba(4, 10, 38, 0.96);
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 232, 255, 0.09);
    outline: 0;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: var(--danger);
    box-shadow: 0 0 0 4px rgba(255, 102, 136, 0.08);
}

.number-control {
    position: relative;
}

.number-control input[type="number"] {
    padding-right: 54px;
    appearance: textfield;
    -moz-appearance: textfield;
}

.number-control input[type="number"]::-webkit-inner-spin-button,
.number-control input[type="number"]::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
}

.number-control__buttons {
    position: absolute;
    top: 6px;
    right: 6px;
    bottom: 6px;
    width: 36px;
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    background: rgba(0, 232, 255, 0.055);
    border: 1px solid rgba(0, 232, 255, 0.28);
    border-radius: 8px;
}

.number-stepper {
    min-width: 0;
    padding: 0;
    display: grid;
    place-items: center;
    color: var(--cyan-soft);
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 0.64rem;
    line-height: 1;
    transition: color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.number-stepper + .number-stepper {
    border-top: 1px solid rgba(0, 232, 255, 0.2);
}

.number-stepper:hover {
    color: #00141b;
    background: var(--cyan);
}

.number-stepper:focus-visible {
    position: relative;
    z-index: 1;
    outline: 2px solid var(--cyan-soft);
    outline-offset: -2px;
}

.number-stepper:disabled {
    color: #52607f;
    background: rgba(255, 255, 255, 0.02);
    cursor: not-allowed;
}

.number-control:focus-within input[type="number"] {
    background: rgba(4, 10, 38, 0.96);
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 232, 255, 0.09);
}

.field small {
    margin-top: 7px;
    display: block;
    color: #7786aa;
    font-size: 0.66rem;
}

.field-error {
    min-height: 1.2em;
    margin: 5px 0 0;
    color: #ff9db3;
    font-size: 0.68rem;
}

.fieldset-help {
    margin: -12px 0 20px;
    color: var(--muted);
    font-size: 0.78rem;
}

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

.category-grid label {
    cursor: pointer;
}

.category-grid input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.category-grid span {
    min-height: 48px;
    display: grid;
    place-items: center;
    color: #bfcae4;
    background: rgba(3, 6, 28, 0.82);
    border: 1px solid rgba(157, 181, 225, 0.2);
    border-radius: 11px;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-grid input:checked + span {
    color: #00141b;
    background: var(--cyan);
    border-color: var(--cyan);
    box-shadow: 0 0 22px rgba(0, 232, 255, 0.3);
}

.category-grid input:focus-visible + span {
    outline: 3px solid rgba(140, 247, 255, 0.86);
    outline-offset: 3px;
}

.category-error {
    margin-top: 8px;
}

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

.mode-switch label,
.package-option,
.inline-choice label {
    position: relative;
    cursor: pointer;
}

.mode-switch input,
.package-option input,
.inline-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mode-switch label > span {
    min-height: 104px;
    padding: 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-content: center;
    gap: 1px 13px;
    color: #c8d3ed;
    background: rgba(3, 6, 28, 0.82);
    border: 1px solid rgba(157, 181, 225, 0.2);
    border-radius: 14px;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.mode-switch i {
    grid-row: 1 / 3;
    align-self: center;
    color: var(--cyan-soft);
    font-size: 1.2rem;
}

.mode-switch strong {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.15rem;
    line-height: 1.15;
}

.mode-switch small {
    color: #7d8bad;
    font-size: 0.66rem;
}

.mode-switch input:checked + span {
    color: var(--white);
    background: rgba(0, 232, 255, 0.085);
    border-color: rgba(0, 232, 255, 0.72);
    box-shadow: 0 0 24px rgba(0, 232, 255, 0.13);
}

.mode-switch input:focus-visible + span,
.package-option input:focus-visible + span,
.inline-choice input:focus-visible + span {
    outline: 3px solid var(--cyan-soft);
    outline-offset: 3px;
}

.mode-panel {
    margin-top: 24px;
}

.delegation-intro {
    padding: 20px;
    background: rgba(0, 232, 255, 0.035);
    border: 1px solid rgba(0, 232, 255, 0.16);
    border-radius: 16px;
}

.delegation-intro > .field {
    margin-top: 18px;
}

.delegation-toolbar {
    margin-top: 22px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(255, 43, 214, 0.055);
    border: 1px solid rgba(255, 43, 214, 0.2);
    border-radius: 14px;
}

.delegation-toolbar__label {
    margin: 0;
    color: #d4b1cf;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.delegation-toolbar strong {
    display: block;
    margin-top: 2px;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.15rem;
}

.delegation-toolbar__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.delegation-toolbar select {
    min-width: 210px;
}

.mini-button,
.add-member-button,
.copy-button,
.remove-member-button {
    min-height: 42px;
    padding: 9px 13px;
    color: var(--cyan-soft);
    background: rgba(0, 232, 255, 0.07);
    border: 1px solid rgba(0, 232, 255, 0.3);
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 700;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.mini-button:hover,
.add-member-button:hover,
.copy-button:hover,
.remove-member-button:hover,
.mini-button:focus-visible,
.add-member-button:focus-visible,
.copy-button:focus-visible,
.remove-member-button:focus-visible {
    color: #00141b;
    background: var(--cyan);
    border-color: var(--cyan);
    outline: 0;
}

.delegation-members {
    margin-top: 16px;
    display: grid;
    gap: 14px;
}

.delegation-member {
    overflow: hidden;
    background: rgba(3, 6, 28, 0.72);
    border: 1px solid rgba(157, 181, 225, 0.17);
    border-radius: 16px;
}

.delegation-member:focus-within {
    border-color: rgba(0, 232, 255, 0.44);
    box-shadow: 0 0 24px rgba(0, 232, 255, 0.07);
}

.delegation-member__header {
    min-height: 62px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: rgba(0, 232, 255, 0.04);
    border-bottom: 1px solid rgba(157, 181, 225, 0.12);
}

.delegation-member__header > div {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0 10px;
}

.delegation-member__header [data-member-number] {
    grid-row: 1 / 3;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--night);
    background: var(--cyan);
    border-radius: 9px;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
}

.delegation-member__header strong {
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    line-height: 1.1;
}

.delegation-member__header small {
    color: #7483a7;
    font-size: 0.62rem;
}

.remove-member-button {
    min-width: 42px;
    padding: 0;
    color: #ff9db3;
    background: rgba(255, 102, 136, 0.06);
    border-color: rgba(255, 102, 136, 0.22);
}

.remove-member-button[hidden] {
    display: none;
}

.delegation-member__body {
    padding: 18px;
}

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

.member-package-field {
    margin-top: 14px;
}

.member-category {
    margin-top: 12px;
    padding: 10px 12px;
    color: #d8fbff;
    background: rgba(0, 232, 255, 0.055);
    border-left: 3px solid var(--cyan);
    border-radius: 6px 10px 10px 6px;
    font-size: 0.7rem;
}

.member-image-consent {
    margin-top: 14px;
    padding: 13px;
    background: rgba(255, 43, 214, 0.04);
    border: 1px solid rgba(255, 43, 214, 0.15);
    border-radius: 11px;
}

.member-image-consent > small {
    margin: 5px 0 0 32px;
    display: block;
    color: #877795;
    font-size: 0.61rem;
}

.add-member-button {
    width: 100%;
    margin-top: 14px;
    color: #ffd7f8;
    background: rgba(255, 43, 214, 0.06);
    border-color: rgba(255, 43, 214, 0.28);
}

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

.package-option:last-child {
    grid-column: 1 / -1;
}

.package-option > span {
    min-height: 116px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #c8d3ed;
    background: rgba(3, 6, 28, 0.82);
    border: 1px solid rgba(0, 232, 255, 0.23);
    border-radius: 13px;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.package-option--gold > span {
    border-color: rgba(255, 184, 77, 0.28);
}

.package-option--magenta > span {
    border-color: rgba(255, 43, 214, 0.28);
}

.package-option small {
    color: #7183a9;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.package-option strong {
    margin-top: 3px;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.16rem;
    line-height: 1.1;
}

.package-option em {
    margin-top: 9px;
    color: var(--cyan-soft);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
}

.package-option input:checked + span {
    color: var(--white);
    background: rgba(0, 232, 255, 0.085);
    border-color: var(--cyan);
    box-shadow: 0 0 25px rgba(0, 232, 255, 0.16);
    transform: translateY(-2px);
}

.package-option input:disabled + span {
    opacity: 0.38;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.category-preview {
    margin-top: 14px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2px 14px;
    background: rgba(77, 255, 210, 0.055);
    border: 1px solid rgba(77, 255, 210, 0.25);
    border-radius: 12px;
}

.category-preview span {
    color: #91aeaa;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-preview strong {
    grid-row: 1 / 3;
    grid-column: 2;
    color: var(--success);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.4rem;
}

.category-preview small {
    color: #819a9b;
    font-size: 0.64rem;
}

.conditional-panel {
    margin-top: 16px;
    padding: 16px;
    background: rgba(255, 122, 24, 0.06);
    border: 1px solid rgba(255, 122, 24, 0.22);
    border-radius: 12px;
}

.conditional-panel > p:first-child {
    margin: 0 0 10px;
    color: #f4d5b8;
    font-size: 0.75rem;
    font-weight: 700;
}

.inline-choice {
    display: flex;
    gap: 8px;
}

.inline-choice label > span {
    min-width: 70px;
    min-height: 42px;
    display: grid;
    place-items: center;
    color: #c8d3ed;
    background: rgba(3, 6, 28, 0.72);
    border: 1px solid rgba(157, 181, 225, 0.22);
    border-radius: 9px;
    font-size: 0.73rem;
    font-weight: 700;
}

.inline-choice input:checked + span {
    color: #00141b;
    background: var(--cyan-soft);
    border-color: var(--cyan-soft);
}

.image-consent-card {
    margin-top: 16px;
    padding: 18px;
    background: rgba(255, 43, 214, 0.045);
    border: 1px solid rgba(255, 43, 214, 0.18);
    border-radius: 13px;
}

.image-consent-card > p {
    margin: 7px 0 0 32px;
    color: #8b7b9e;
    font-size: 0.66rem;
}

.consent-option--standalone strong {
    display: block;
    color: #f3deef;
    font-size: 0.75rem;
}

.guardian-fields {
    margin-top: 14px;
}

.bank-card {
    padding: 22px;
    background: rgba(0, 232, 255, 0.045);
    border: 1px solid rgba(0, 232, 255, 0.24);
    border-radius: 16px;
}

.bank-card__heading h4 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.45rem;
}

.bank-card__heading > p:last-child {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 0.72rem;
}

.bank-details {
    margin: 18px 0 0;
    display: grid;
    gap: 9px;
}

.bank-details > div {
    padding: 12px 14px;
    display: grid;
    grid-template-columns: 0.65fr 1fr;
    align-items: center;
    gap: 12px;
    background: rgba(3, 6, 28, 0.65);
    border-radius: 10px;
}

.bank-details dt {
    color: #7e8eaf;
    font-size: 0.65rem;
    font-weight: 700;
}

.bank-details dd {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.bank-details code {
    color: var(--white);
    font-family: "Rajdhani", monospace;
    font-size: 1.06rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.copy-button {
    min-height: 36px;
    padding: 6px 10px;
}

.copy-button.is-copied {
    color: #05251d;
    background: var(--success);
    border-color: var(--success);
}

.bank-warning {
    margin: 14px 0 0;
    padding: 11px 13px;
    color: #d9b996;
    background: rgba(255, 122, 24, 0.07);
    border-left: 3px solid var(--fire);
    border-radius: 6px 10px 10px 6px;
    font-size: 0.68rem;
}

.quote-card {
    margin-top: 14px;
    padding: 18px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 18px;
    background: rgba(77, 255, 210, 0.045);
    border: 1px solid rgba(77, 255, 210, 0.22);
    border-radius: 14px;
}

.quote-card > div:first-child span {
    display: block;
    color: #7c9699;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.quote-card > div:first-child strong {
    display: block;
    margin-top: 3px;
    color: #dcfffa;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.05rem;
}

.quote-card dl {
    margin: 0;
    display: grid;
    gap: 5px;
}

.quote-card dl > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    color: #9cb4b5;
    font-size: 0.7rem;
}

.quote-card dd {
    margin: 0;
    color: #d9f5f1;
    font-weight: 700;
}

.quote-card__total {
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid rgba(77, 255, 210, 0.19);
}

.quote-card__total dt,
.quote-card__total dd {
    color: var(--success) !important;
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem !important;
    font-weight: 700;
}

.acceptance-stack {
    margin-top: 26px;
    display: grid;
    gap: 2px;
}

.acceptance-stack .consent-option {
    margin-top: 0;
    padding: 13px 14px;
    background: rgba(157, 181, 225, 0.035);
    border: 1px solid rgba(157, 181, 225, 0.12);
    border-radius: 11px;
}

.acceptance-stack a {
    color: var(--cyan-soft);
    text-underline-offset: 3px;
}

.blitz-option,
.consent-option {
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.blitz-option {
    margin-top: 16px;
    padding: 16px;
    background: rgba(255, 43, 214, 0.07);
    border: 1px solid rgba(255, 43, 214, 0.25);
    border-radius: 12px;
}

.blitz-option input,
.consent-option input {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    margin: 2px 0 0;
    accent-color: var(--cyan);
}

.blitz-option strong {
    display: block;
    color: #ffd7f8;
    font-size: 0.82rem;
}

.blitz-option small {
    margin-top: 2px;
    display: block;
    color: #a98ead;
    font-size: 0.68rem;
}

.payment-card {
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    background: rgba(0, 232, 255, 0.055);
    border: 1px solid rgba(0, 232, 255, 0.24);
    border-radius: 15px;
}

.payment-card__label {
    margin: 0 0 6px;
    color: var(--cyan-soft);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.payment-card h4 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.28rem;
}

.payment-card p:not(.payment-card__label) {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 0.73rem;
}

.button--payment {
    color: var(--night);
    background: var(--cyan-soft);
    white-space: nowrap;
}

.field--file {
    margin-top: 20px;
}

.file-drop {
    min-height: 145px;
    margin: 0 !important;
    padding: 24px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    background: rgba(3, 6, 28, 0.76);
    border: 1px dashed rgba(0, 232, 255, 0.48);
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.file-drop:hover,
.file-drop.is-dragging,
.file-drop.has-file {
    background: rgba(0, 232, 255, 0.07);
    border-color: var(--cyan);
    box-shadow: inset 0 0 24px rgba(0, 232, 255, 0.05);
}

.file-drop__signal {
    margin-bottom: 11px;
    color: var(--cyan-soft);
    font-family: "Rajdhani", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.file-drop strong {
    font-size: 0.82rem;
}

.file-drop small {
    margin-top: 6px;
    color: #7786aa;
    font-size: 0.66rem;
}

.field--file > input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.field--file > input[type="file"]:focus-visible + .field-error {
    outline: 3px solid var(--cyan-soft);
}

.consent-option {
    margin-top: 26px;
    color: #aebbd8;
    font-size: 0.72rem;
}

.form-status {
    margin-top: 20px;
    padding: 14px 16px;
    color: #ffd3dd;
    background: rgba(255, 102, 136, 0.09);
    border: 1px solid rgba(255, 102, 136, 0.28);
    border-radius: 11px;
    font-size: 0.76rem;
}

.submit-button {
    width: 100%;
    min-height: 68px;
    margin-top: 24px;
    padding: 14px 22px;
    display: grid;
    place-items: center;
    color: #001219;
    background: var(--cyan);
    border: 0;
    border-radius: 13px;
    box-shadow: 0 0 28px rgba(0, 232, 255, 0.32);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 0 38px rgba(0, 232, 255, 0.48);
}

.submit-button:disabled {
    opacity: 0.55;
    cursor: wait;
}

.submit-button span {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.submit-button small {
    margin-top: -2px;
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.success-panel {
    margin: 32px;
    padding: 44px 32px;
    background: rgba(0, 232, 255, 0.065);
    border: 1px solid rgba(77, 255, 210, 0.38);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 40px rgba(77, 255, 210, 0.12);
}

.success-panel__eyebrow {
    margin: 0 0 10px;
    color: var(--success);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.success-panel h3 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 2.4rem;
    line-height: 1;
}

.success-panel > p:not(.success-panel__eyebrow) {
    max-width: 470px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.success-panel > strong {
    margin: 24px auto 0;
    padding: 13px 18px;
    display: block;
    width: fit-content;
    color: var(--night);
    background: var(--success);
    border-radius: 10px;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
}

.success-panel__note {
    font-size: 0.7rem !important;
}

.success-panel__actions {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.success-panel button,
.success-panel__actions a {
    padding: 11px 16px;
    color: var(--cyan-soft);
    background: transparent;
    border: 1px solid rgba(0, 232, 255, 0.38);
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.76rem;
    text-decoration: none;
}

.success-panel__actions a {
    color: #00141b;
    background: var(--success);
    border-color: var(--success);
    font-weight: 700;
}

.site-footer {
    padding: 38px 0;
    background: rgba(2, 3, 26, 0.92);
    border-top: 1px solid rgba(0, 232, 255, 0.18);
}

.site-footer__grid {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.site-footer p {
    margin: 3px 0 0;
    color: #7785a6;
    font-size: 0.72rem;
}

.site-footer__brand {
    color: #dce8ff !important;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.08rem !important;
    font-weight: 700;
}

.site-footer a {
    color: var(--cyan-soft);
    font-size: 0.72rem;
    text-underline-offset: 4px;
}

[hidden] {
    display: none !important;
}

@media (max-width: 980px) {
    .hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
        gap: 42px;
    }

    .hero h1 {
        font-size: clamp(3.1rem, 8vw, 5.2rem);
    }

    .signal-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .signal-strip article:nth-child(2) {
        border-right: 0;
    }

    .signal-strip article:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(0, 232, 255, 0.14);
    }

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

    .registration-guide {
        position: static;
        display: grid;
        grid-template-columns: 1fr 0.8fr;
        gap: 0 32px;
    }

    .registration-guide .eyebrow,
    .registration-guide h2,
    .registration-guide__intro {
        grid-column: 1 / -1;
    }

    .support-card {
        margin-top: 34px;
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(100% - 28px, 680px);
    }

    .site-header__inner {
        min-height: 68px;
    }

    .brand img {
        width: 40px;
        height: 40px;
    }

    .brand small,
    .site-nav > a:not(.site-nav__cta) {
        display: none;
    }

    .site-nav {
        gap: 0;
    }

    .site-nav__cta {
        padding: 9px 14px;
        font-size: 0.76rem !important;
    }

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

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

    .hero__content {
        text-align: center;
    }

    .hero__content .eyebrow {
        margin-inline: auto;
    }

    .hero h1 {
        font-size: clamp(3rem, 16vw, 4.75rem);
    }

    .hero__event-name,
    .hero__intro {
        margin-inline: auto;
    }

    .date-panel {
        margin-inline: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__note {
        text-align: center;
    }

    .whatsapp-community {
        padding-top: 36px;
    }

    .whatsapp-community__panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .whatsapp-community__badge,
    .whatsapp-community__content ul {
        margin-inline: auto;
        justify-content: center;
    }

    .whatsapp-community__content > p,
    .whatsapp-community__content > small {
        margin-inline: auto;
    }

    .whatsapp-community__qr {
        justify-self: center;
    }

    .poster-card {
        width: min(100%, 370px);
    }

    .section {
        padding: 78px 0;
    }

    .section-heading {
        text-align: center;
    }

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

    .base-card {
        min-height: 220px;
    }

    .registration-guide {
        display: block;
        text-align: center;
    }

    .registration-guide__intro {
        margin-inline: auto;
    }

    .process-list,
    .support-card {
        text-align: left;
    }

    .form-panel__header,
    .registration-form {
        padding-inline: 22px;
    }

    .field-grid--two {
        grid-template-columns: 1fr;
    }

    .field-grid + .field-grid {
        margin-top: 0;
    }

    .field-grid .field {
        margin-top: 16px;
    }

    .field-grid:first-of-type .field:first-child {
        margin-top: 0;
    }

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

    .package-grid,
    .member-grid {
        grid-template-columns: 1fr;
    }

    .package-option:last-child {
        grid-column: auto;
    }

    .delegation-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .delegation-toolbar__actions {
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .delegation-toolbar select {
        min-width: 0;
    }

    .quote-card {
        grid-template-columns: 1fr;
    }

    .payment-card {
        grid-template-columns: 1fr;
    }

    .button--payment {
        width: 100%;
    }

    .site-footer__grid {
        display: grid;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .signal-strip__grid {
        grid-template-columns: 1fr;
    }

    .signal-strip article,
    .signal-strip article:nth-child(2) {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(0, 232, 255, 0.14);
    }

    .signal-strip article:last-child {
        border-bottom: 0;
    }

    .base-card {
        padding: 24px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .status-pill {
        grid-column: 1;
    }

    .form-panel {
        border-radius: 20px;
    }

    .form-panel__header > span {
        font-size: 1.8rem;
    }

    .registration-form {
        padding-inline: 17px;
    }

    .mode-switch {
        grid-template-columns: 1fr;
    }

    .mode-switch label > span {
        min-height: 86px;
    }

    .delegation-intro,
    .delegation-member__body,
    .bank-card,
    .quote-card {
        padding: 15px;
    }

    .delegation-toolbar__actions {
        grid-template-columns: 1fr;
    }

    .bank-details > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .bank-details dd {
        align-items: stretch;
        flex-direction: column;
    }

    .copy-button {
        width: 100%;
    }

    .image-consent-card > p,
    .member-image-consent > small {
        margin-left: 0;
    }

    .success-panel {
        margin: 18px;
        padding: 34px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
