.ga-page {
    overflow-x: hidden;
    background: #f6faf7;
    color: #17364d;
}

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

.ga-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.ga-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 8vw, 112px) 0 clamp(48px, 7vw, 88px);
    background:
        linear-gradient(130deg, rgba(17, 77, 94, 0.9), rgba(19, 113, 79, 0.82)),
        url("/web/assets/images/hero-madhunandan-association.jpg") center/cover;
    color: #ffffff;
}

.ga-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(246, 250, 247, 0), #f6faf7);
    pointer-events: none;
}

.ga-hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.ga-kicker {
    margin: 0 0 12px;
    color: #cfa345;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ga-hero h1,
.ga-section h2 {
    margin: 0;
    letter-spacing: 0;
}

.ga-hero h1 {
    max-width: 720px;
    font-size: clamp(3rem, 9vw, 6.6rem);
    line-height: 0.92;
    font-weight: 900;
}

.ga-lead {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.04rem, 2vw, 1.28rem);
    line-height: 1.7;
}

.ga-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-weight: 700;
}

.ga-status-icon {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: #ffce63;
    color: #14364c;
    flex: 0 0 auto;
}

.ga-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.ga-action {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    font: inherit;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ga-action:hover {
    transform: translateY(-1px);
}

.ga-action-primary {
    background: #13875f;
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(19, 135, 95, 0.25);
}

.ga-action-primary:hover {
    background: #0f6f51;
}

.ga-action-participate {
    position: relative;
    isolation: isolate;
    min-height: 54px;
    padding: 14px 22px;
    background: linear-gradient(135deg, #ffce63, #13875f);
    color: #102d3d;
    box-shadow: 0 18px 42px rgba(255, 206, 99, 0.28), 0 16px 36px rgba(19, 135, 95, 0.26);
}

.ga-action-participate:hover {
    background: linear-gradient(135deg, #ffd97d, #0f7a59);
}

.ga-action-participate:not(.is-disabled)::after {
    content: "";
    position: absolute;
    inset: -5px;
    z-index: -1;
    border: 2px solid rgba(255, 206, 99, 0.64);
    border-radius: inherit;
    animation: ga-cta-ring 1800ms ease-out infinite;
}

.ga-action-participate i {
    color: #102d3d;
}

.ga-action-secondary {
    background: #ffffff;
    color: #14364c;
    box-shadow: 0 12px 28px rgba(15, 50, 70, 0.13);
}

.ga-action.is-disabled {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    box-shadow: none;
    cursor: not-allowed;
}

.ga-action-participate.is-disabled {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    box-shadow: none;
}

.ga-action-participate.is-disabled i {
    color: currentColor;
}

.ga-action:disabled {
    background: #e6eef0;
    color: #7c8c97;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.ga-action:disabled:hover {
    transform: none;
}

.ga-inline-action-form {
    display: inline-flex;
    margin: 0;
}

.ga-countdown {
    min-height: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 700;
}

.ga-hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.ga-hero-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 9px;
    min-height: 48px;
    max-width: 100%;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
}

.ga-hero-stat-value {
    color: #ffce63;
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    line-height: 1;
    font-weight: 900;
}

.ga-hero-stat-label {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.25;
}

.ga-poster-preview {
    margin: 0;
}

.ga-poster-preview img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(5, 28, 42, 0.34);
    background: #ffffff;
}

.ga-poster-preview figcaption {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.5;
}

.ga-section {
    padding: clamp(54px, 7vw, 88px) 0;
}

.ga-section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.ga-section h2 {
    color: #123b5d;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.08;
    font-weight: 900;
}

.ga-section-heading p,
.ga-band-grid > div > p {
    color: #547086;
    font-size: 1.02rem;
    line-height: 1.7;
}

.ga-steps,
.ga-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ga-step,
.ga-benefits article {
    border: 1px solid #dbe9e1;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(21, 64, 82, 0.08);
}

.ga-step {
    padding: 24px;
}

.ga-step-number {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: #123b5d;
    color: #ffffff;
    font-weight: 900;
}

.ga-step h3,
.ga-benefits h3 {
    margin: 18px 0 8px;
    color: #123b5d;
    font-size: 1.06rem;
    line-height: 1.3;
}

.ga-step p,
.ga-benefits p {
    margin: 0;
    color: #5d7587;
    line-height: 1.62;
}

.ga-band {
    background: #eaf6ef;
}

.ga-band-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
    gap: clamp(26px, 5vw, 64px);
    align-items: start;
}

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

.ga-check-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 58px;
    padding: 14px 16px;
    border: 1px solid #cbe4d4;
    border-radius: 8px;
    background: #ffffff;
    color: #23495f;
    font-weight: 700;
}

.ga-check-list i,
.ga-benefits i {
    color: #13875f;
}

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

.ga-benefits article {
    padding: 26px;
}

.ga-benefits i {
    font-size: 1.6rem;
}

.ga-card-link {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    color: #0f6f51;
    font-weight: 900;
    text-decoration: none;
}

.ga-resource-hero {
    padding: clamp(64px, 8vw, 104px) 0 clamp(44px, 6vw, 72px);
    background:
        linear-gradient(135deg, rgba(18, 59, 93, 0.96), rgba(19, 135, 95, 0.88)),
        url("/web/assets/images/hero-madhunandan-association.jpg") center/cover;
    color: #ffffff;
}

.ga-resource-hero h1 {
    max-width: 820px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.6rem, 7vw, 5.4rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: 0;
}

.ga-resource-hero p:not(.ga-kicker) {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.06rem;
    line-height: 1.7;
}

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

.ga-resource-grid article,
.ga-resource-note {
    border: 1px solid #dbe9e1;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(21, 64, 82, 0.08);
}

.ga-resource-grid article {
    padding: 26px;
}

.ga-resource-grid i,
.ga-resource-note > i {
    color: #13875f;
}

.ga-resource-grid i {
    font-size: 1.6rem;
}

.ga-resource-grid h3 {
    margin: 18px 0 8px;
    color: #123b5d;
    font-size: 1.06rem;
}

.ga-resource-grid p,
.ga-resource-note p {
    margin: 0;
    color: #5d7587;
    line-height: 1.65;
}

.ga-resource-note {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: clamp(22px, 4vw, 34px);
}

.ga-resource-note > i {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: #edf8f2;
    font-size: 1.3rem;
}

.ga-resource-note h2 {
    margin-bottom: 8px;
}

.ga-gate-shell {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.ga-gate h1,
.ga-wizard-hero h1 {
    margin: 0;
    max-width: 880px;
    color: #ffffff;
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: 0;
}

.ga-wizard-hero {
    background: linear-gradient(135deg, #123b5d, #13875f);
    color: #ffffff;
    padding-bottom: clamp(44px, 6vw, 72px);
}

.ga-wizard-hero p {
    max-width: 720px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
    line-height: 1.7;
}

.ga-wizard-section {
    padding-top: 34px;
}

.ga-wizard-page,
.ga-wizard-section,
.ga-wizard-layout,
.ga-wizard-progress,
.ga-wizard-form,
.ga-wizard-step,
.ga-field-grid,
.ga-field,
.ga-checkbox,
.ga-consent-list,
.ga-upload-box,
.ga-photo-preview,
.ga-submit-wait-card {
    min-width: 0;
    max-width: 100%;
}

.ga-wizard-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.ga-wizard-progress {
    position: sticky;
    top: 96px;
    overflow: hidden;
    border: 1px solid #dbe9e1;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(21, 64, 82, 0.08);
}

.ga-wizard-progress ol {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 12px;
    list-style: none;
    counter-reset: ga-wizard-step;
}

.ga-wizard-progress li {
    position: relative;
    counter-increment: ga-wizard-step;
    padding: 13px 14px 13px 44px;
    border-radius: 8px;
    color: #5d7587;
    font-weight: 900;
}

.ga-wizard-progress li::before {
    content: counter(ga-wizard-step);
    position: absolute;
    left: 14px;
    top: 50%;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    background: #c8d9d0;
    color: #24475e;
    font-size: 0.72rem;
    line-height: 1;
    transform: translateY(-50%);
}

.ga-wizard-progress li.is-active {
    background: #edf8f2;
    color: #123b5d;
}

.ga-wizard-progress li.is-active::before,
.ga-wizard-progress li.is-complete::before {
    background: #13875f;
    color: #ffffff;
}

.ga-wizard-form {
    border: 1px solid #dbe9e1;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(21, 64, 82, 0.09);
    padding: clamp(22px, 4vw, 34px);
    overflow-wrap: anywhere;
}

.ga-form-status {
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid #f1c86a;
    border-radius: 8px;
    background: #fff7df;
    color: #6f5014;
    font-weight: 800;
}

.ga-form-status:empty {
    display: none;
}

.ga-wizard-step {
    display: none;
}

.ga-wizard-step.is-active {
    display: block;
}

.ga-wizard-step h2 {
    margin: 0 0 18px;
    color: #123b5d;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.ga-step-note,
.ga-instruction-list p {
    color: #5d7587;
    line-height: 1.65;
}

.ga-instruction-list {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.ga-instruction-list p {
    margin: 0;
    padding: 14px 16px;
    border: 1px solid #dbe9e1;
    border-radius: 8px;
    background: #f8fcfa;
    font-weight: 700;
}

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

.ga-field-wide {
    grid-column: 1 / -1;
}

.ga-field,
.ga-checkbox {
    display: grid;
    gap: 8px;
}

.ga-field-label,
.ga-upload-label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.ga-field-label,
.ga-checkbox-copy > span,
.ga-upload-label {
    color: #24475e;
    font-size: 0.94rem;
    font-weight: 900;
}

.ga-field-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    min-height: 22px;
    padding: 3px 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.68rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ga-field-badge::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.ga-field-badge-required {
    border-color: #9dd8bd;
    background: #edf8f2;
    color: #0f6f51;
}

.ga-field-badge-optional {
    border-color: #d1dbe2;
    background: #f3f7f8;
    color: #64788a;
}

.ga-field input,
.ga-field select,
.ga-field textarea {
    min-width: 0;
    width: 100%;
    border: 1px solid #cfded6;
    border-radius: 8px;
    background: #fbfdfc;
    color: #17364d;
    font: 700 1rem/1.4 "Inter", system-ui, sans-serif;
    padding: 13px 14px;
}

.ga-field textarea {
    min-height: 120px;
    resize: vertical;
}

.ga-field input:focus,
.ga-field select:focus,
.ga-field textarea:focus {
    outline: 3px solid rgba(19, 135, 95, 0.16);
    border-color: #13875f;
}

.ga-checkbox {
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    padding: 14px;
    border: 1px solid #dbe9e1;
    border-radius: 8px;
    background: #f8fcfa;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.ga-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #13875f;
}

.ga-checkbox-copy {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.ga-checkbox-copy > span {
    line-height: 1.48;
    overflow-wrap: anywhere;
}

.ga-checkbox:has(input:checked) {
    border-color: #9dd8bd;
    background: #f0faf5;
    box-shadow: inset 4px 0 0 #13875f;
}

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

.ga-upload-box {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 236px;
    padding: clamp(22px, 4vw, 34px);
    border: 2px dashed #9dd8bd;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(237, 248, 242, 0.76), rgba(248, 252, 250, 0.96)),
        #f8fcfa;
    color: #123b5d;
    font-weight: 900;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ga-upload-box input {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.ga-upload-box:hover,
.ga-upload-box:focus-within {
    border-color: #13875f;
    background:
        linear-gradient(180deg, rgba(224, 246, 235, 0.86), rgba(248, 252, 250, 1)),
        #f8fcfa;
    box-shadow: 0 18px 40px rgba(19, 135, 95, 0.14);
    transform: translateY(-1px);
}

.ga-upload-box:focus-within {
    outline: 3px solid rgba(19, 135, 95, 0.18);
    outline-offset: 3px;
}

.ga-upload-box.has-file {
    border-style: solid;
    border-color: #13875f;
    background: #f0faf5;
    box-shadow: inset 4px 0 0 #13875f, 0 16px 36px rgba(19, 135, 95, 0.12);
}

.ga-upload-content {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 14px;
    min-width: 0;
    max-width: 560px;
    pointer-events: none;
}

.ga-upload-icon {
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
    color: #13875f;
    font-size: 1.65rem;
    box-shadow: 0 14px 30px rgba(19, 135, 95, 0.16);
}

.ga-upload-copy {
    display: grid;
    justify-items: center;
    gap: 8px;
}

.ga-upload-hint {
    max-width: 460px;
    color: #5d7587;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.55;
}

.ga-photo-preview {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding: 14px;
    border: 1px solid #dbe9e1;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(21, 64, 82, 0.08);
}

.ga-photo-preview[hidden] {
    display: none;
}

.ga-photo-frame {
    display: grid;
    min-height: 280px;
    aspect-ratio: 16 / 10;
    place-items: center;
    border-radius: 8px;
    background:
        linear-gradient(45deg, rgba(219, 233, 225, 0.45) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(219, 233, 225, 0.45) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(219, 233, 225, 0.45) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(219, 233, 225, 0.45) 75%),
        #f8fcfa;
    background-position: 0 0, 0 12px, 12px -12px, -12px 0;
    background-size: 24px 24px;
    overflow: hidden;
}

.ga-photo-preview img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 440px;
    object-fit: contain;
}

.ga-photo-preview figcaption {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    min-width: 0;
    color: #5d7587;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.ga-photo-preview figcaption span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.ga-photo-preview figcaption i {
    color: #13875f;
    flex: 0 0 auto;
}

.ga-wizard-controls {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
}

.ga-wizard-controls [hidden] {
    display: none !important;
}

body.ga-wizard-focus-mode {
    background: #f6faf7;
}

body.ga-wizard-focus-mode .ma-site-header,
body.ga-wizard-focus-mode .ma-site-footer,
body.ga-wizard-focus-mode .ma-platform-shortcut,
body.ga-wizard-focus-mode .ga-wizard-hero {
    display: none;
}

body.ga-wizard-focus-mode .ga-wizard-page {
    min-height: 100vh;
    padding-bottom: 126px;
}

body.ga-wizard-focus-mode .ga-wizard-section {
    min-height: 100vh;
    padding-top: clamp(18px, 3vw, 34px);
    padding-bottom: 136px;
}

body.ga-wizard-focus-mode .ga-wizard-progress {
    top: 20px;
}

body.ga-wizard-focus-mode .ga-wizard-controls {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    max-width: 100vw;
    margin: 0;
    padding: 12px max(16px, calc((100vw - 1120px) / 2 + 16px)) calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid #dbe9e1;
    background: rgba(246, 250, 247, 0.96);
    box-shadow: 0 -18px 44px rgba(21, 64, 82, 0.14);
    backdrop-filter: blur(14px);
}

body.ga-wizard-focus-mode .ga-wizard-controls .ga-action {
    min-width: 164px;
}

body.ga-wizard-submitting {
    overflow: hidden;
}

.ga-submit-wait[hidden] {
    display: none;
}

.ga-submit-wait {
    position: fixed;
    inset: 0;
    z-index: 160;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(9, 33, 46, 0.48);
    backdrop-filter: blur(10px);
}

.ga-submit-wait-card {
    width: min(100%, 540px);
    display: grid;
    gap: 20px;
    justify-items: center;
    padding: clamp(24px, 5vw, 38px);
    border: 1px solid rgba(157, 216, 189, 0.72);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(5, 28, 42, 0.28);
    text-align: center;
}

.ga-submit-spinner {
    position: relative;
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    border-radius: 50%;
    background: #edf8f2;
    color: #13875f;
}

.ga-submit-spinner::before,
.ga-submit-spinner::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px solid transparent;
}

.ga-submit-spinner::before {
    border-top-color: #13875f;
    border-right-color: #13875f;
    animation: ga-submit-spin 900ms linear infinite;
}

.ga-submit-spinner::after {
    inset: 12px;
    border-top-color: #cfa345;
    border-left-color: #cfa345;
    animation: ga-submit-spin 1200ms linear infinite reverse;
}

.ga-submit-spinner span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #13875f;
    animation: ga-submit-pulse 1200ms ease-in-out infinite;
}

.ga-submit-wait-copy {
    display: grid;
    gap: 10px;
}

.ga-submit-wait-copy .ga-kicker {
    margin: 0;
}

.ga-submit-wait-copy h2 {
    margin: 0;
    color: #123b5d;
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: 0;
}

.ga-submit-wait-copy p:not(.ga-kicker) {
    margin: 0;
    color: #5d7587;
    font-size: 1rem;
    line-height: 1.65;
}

.ga-submit-wait-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ga-submit-wait-steps li {
    position: relative;
    display: grid;
    gap: 8px;
    align-content: start;
    color: #5d7587;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.3;
}

.ga-submit-wait-steps li::before {
    content: "";
    width: 10px;
    height: 10px;
    justify-self: center;
    border-radius: 50%;
    background: #c8d9d0;
    animation: ga-submit-step 1500ms ease-in-out infinite;
}

.ga-submit-wait-steps li:nth-child(2)::before {
    animation-delay: 180ms;
}

.ga-submit-wait-steps li:nth-child(3)::before {
    animation-delay: 360ms;
}

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

@keyframes ga-submit-pulse {
    0%,
    100% {
        transform: scale(0.78);
        opacity: 0.72;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ga-submit-step {
    0%,
    100% {
        background: #c8d9d0;
        transform: scale(1);
    }

    45% {
        background: #13875f;
        transform: scale(1.25);
    }
}

@keyframes ga-cta-ring {
    0% {
        opacity: 0.72;
        transform: scale(0.98);
    }

    100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

.ga-submit-state {
    min-height: 62vh;
    display: grid;
    align-items: center;
}

.ga-submit-state-box {
    max-width: 820px;
    border: 1px solid #dbe9e1;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(21, 64, 82, 0.09);
    padding: clamp(26px, 5vw, 46px);
}

.ga-submit-state-box h1 {
    margin: 0;
    color: #123b5d;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.03;
    font-weight: 900;
    letter-spacing: 0;
}

.ga-submit-state-box p {
    color: #547086;
    font-size: 1.03rem;
    line-height: 1.7;
}

.ga-success-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0 0;
}

.ga-success-details div {
    padding: 14px 16px;
    border: 1px solid #dbe9e1;
    border-radius: 8px;
    background: #f8fcfa;
}

.ga-success-details dt {
    color: #5d7587;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ga-success-details dd {
    margin: 6px 0 0;
    color: #123b5d;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.ga-success-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-left: 4px solid #13875f;
    border-radius: 0 8px 8px 0;
    background: #edf8f2;
    color: #24475e;
    font-weight: 800;
}

.ga-success-note-success {
    border-left-color: #13875f;
    background: #edf8f2;
}

.ga-success-note-info {
    border-left-color: #cfa345;
    background: #fff8e8;
}

.ga-success-note-error {
    border-left-color: #b42318;
    background: #fff1f0;
    color: #7a271a;
}

.ga-verify-card {
    max-width: 920px;
    border: 1px solid #dbe9e1;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 20px 54px rgba(21, 64, 82, 0.12);
    padding: clamp(24px, 4vw, 38px);
}

.ga-verify-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    border: 1px solid #dbe9e1;
    border-radius: 999px;
    padding: 10px 14px;
    background: #f8fcfa;
    color: #123b5d;
    font-weight: 900;
}

.ga-verify-status span {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
}

.ga-verify-status.is-valid {
    border-color: #b8e5cb;
    background: #edf8f2;
    color: #0f6f51;
}

.ga-verify-status.is-valid span {
    background: #13875f;
    color: #ffffff;
}

.ga-verify-status.is-revoked {
    border-color: #f1c8c8;
    background: #fff4f2;
    color: #ad3b2f;
}

.ga-verify-status.is-revoked span {
    background: #c4493b;
    color: #ffffff;
}

.ga-verify-status.is-missing {
    border-color: #efd6a1;
    background: #fff9eb;
    color: #9a6a10;
}

.ga-verify-status.is-missing span {
    background: #c98a15;
    color: #ffffff;
}

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

.ga-verify-hash {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.9rem;
}

.ga-verify-warning {
    border-left-color: #c4493b;
    background: #fff4f2;
}

.ga-registry-hero {
    padding: clamp(64px, 8vw, 104px) 0 clamp(44px, 6vw, 72px);
    background:
        linear-gradient(135deg, rgba(18, 59, 93, 0.96), rgba(19, 135, 95, 0.9)),
        url("/web/assets/images/hero-madhunandan-association.jpg") center/cover;
    color: #ffffff;
}

.ga-registry-hero h1 {
    margin: 0;
    max-width: 820px;
    color: #ffffff;
    font-size: clamp(2.7rem, 8vw, 5.8rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: 0;
}

.ga-registry-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.06rem;
    line-height: 1.72;
}

.ga-registry-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 760px;
    margin-top: 26px;
}

.ga-registry-stats div,
.ga-registry-empty,
.ga-registry-table {
    border: 1px solid #dbe9e1;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(21, 64, 82, 0.08);
}

.ga-registry-stats div {
    padding: 16px;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
    color: #ffffff;
}

.ga-registry-stats span {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ga-registry-stats strong {
    display: block;
    margin-top: 8px;
    font-size: 2rem;
    letter-spacing: 0;
}

.ga-registry-table-wrap {
    overflow-x: auto;
}

.ga-registry-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}

.ga-registry-table th,
.ga-registry-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #dbe9e1;
    text-align: left;
    vertical-align: top;
}

.ga-registry-table th {
    background: #edf8f2;
    color: #123b5d;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ga-registry-table tr:last-child td {
    border-bottom: 0;
}

.ga-registry-table strong,
.ga-registry-table span {
    display: block;
}

.ga-registry-table strong {
    color: #123b5d;
}

.ga-registry-table span {
    margin-top: 5px;
    color: #5d7587;
    font-size: 0.86rem;
    font-weight: 800;
}

.ga-registry-empty {
    display: grid;
    justify-items: start;
    gap: 10px;
    padding: clamp(24px, 4vw, 34px);
}

.ga-registry-empty i {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    background: #edf8f2;
    color: #13875f;
    font-size: 1.35rem;
}

.ga-registry-empty h3 {
    margin: 0;
    color: #123b5d;
}

.ga-registry-empty p {
    margin: 0;
    color: #5d7587;
    line-height: 1.65;
}

.ga-registry-resource {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(22px, 5vw, 48px);
    align-items: center;
    border: 1px solid #b8e3ca;
    border-radius: 8px;
    padding: clamp(24px, 4vw, 38px);
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(21, 64, 82, 0.10);
}

.ga-registry-resource h2 {
    margin: 0;
    color: #123b5d;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 900;
}

.ga-registry-resource p:not(.ga-kicker) {
    max-width: 800px;
    margin: 12px 0 0;
    color: #547086;
    font-size: 1.02rem;
    line-height: 1.7;
}

.ga-faq-section {
    background: #f8fbff;
}

.ga-faq,
.ga-registry-faq {
    display: grid;
    gap: 12px;
}

.ga-faq details,
.ga-registry-faq details {
    border: 1px solid #dbe9e1;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(21, 64, 82, 0.07);
    overflow: hidden;
}

.ga-faq summary,
.ga-registry-faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    color: #123b5d;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.ga-faq summary::-webkit-details-marker,
.ga-registry-faq summary::-webkit-details-marker {
    display: none;
}

.ga-faq summary::after,
.ga-registry-faq summary::after {
    content: "+";
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #eaf6ef;
    color: #13875f;
    font-weight: 900;
}

.ga-faq details[open] summary::after,
.ga-registry-faq details[open] summary::after {
    content: "-";
}

.ga-faq p,
.ga-registry-faq p {
    margin: 0;
    padding: 0 20px 20px;
    color: #5d7587;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .ga-hero-shell,
    .ga-band-grid {
        grid-template-columns: 1fr;
    }

    .ga-poster-preview {
        max-width: 360px;
    }

    .ga-steps,
    .ga-benefits,
    .ga-resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ga-wizard-layout {
        grid-template-columns: 1fr;
    }

    .ga-wizard-progress {
        position: relative;
        top: auto;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .ga-wizard-progress ol {
        display: flex;
        gap: 8px;
        max-width: 100%;
        overflow-x: auto;
        scroll-padding: 10px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .ga-wizard-progress ol::-webkit-scrollbar {
        display: none;
    }

    .ga-wizard-progress li {
        flex: 0 0 auto;
        min-width: max-content;
        max-width: min(72vw, 220px);
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 10px 14px 10px 38px;
        border: 1px solid #dbe9e1;
        background: #f8fcfa;
        scroll-snap-align: center;
        white-space: nowrap;
        font-size: 0.84rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ga-wizard-progress li::before {
        left: 12px;
        width: 18px;
        height: 18px;
    }

    .ga-wizard-progress li.is-active {
        border-color: #13875f;
        box-shadow: 0 8px 20px rgba(19, 135, 95, 0.14);
    }

    body.ga-wizard-focus-mode .ga-wizard-progress {
        position: sticky;
        top: 8px;
        z-index: 70;
    }

    .ga-registry-stats {
        grid-template-columns: 1fr;
    }

    .ga-registry-resource {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .ga-shell {
        width: min(100% - 24px, 1120px);
    }

    .ga-wizard-form {
        padding: 18px 14px;
    }

    .ga-wizard-step h2 {
        font-size: clamp(1.45rem, 8vw, 1.9rem);
        overflow-wrap: anywhere;
    }

    .ga-hero {
        padding-top: 46px;
    }

    .ga-status {
        align-items: flex-start;
        border-radius: 18px;
    }

    .ga-hero-stats {
        align-items: stretch;
    }

    .ga-hero-stat,
    .ga-countdown {
        width: 100%;
    }

    .ga-hero-stat {
        align-items: center;
        justify-content: space-between;
    }

    .ga-action,
    .ga-actions,
    .ga-inline-action-form {
        width: 100%;
    }

    .ga-steps,
    .ga-benefits,
    .ga-resource-grid {
        grid-template-columns: 1fr;
    }

    .ga-resource-note {
        grid-template-columns: 1fr;
    }

    .ga-field-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ga-field-label,
    .ga-upload-label {
        gap: 6px;
        align-items: flex-start;
    }

    .ga-field-badge {
        min-height: 20px;
        padding: 3px 7px;
        font-size: 0.62rem;
    }

    .ga-checkbox {
        grid-template-columns: 20px minmax(0, 1fr);
        padding: 12px;
    }

    .ga-instruction-list p {
        padding: 12px;
    }

    .ga-upload-box {
        min-height: 190px;
        padding: 20px 14px;
    }

    .ga-upload-content {
        gap: 12px;
    }

    .ga-upload-icon {
        width: 54px;
        height: 54px;
        font-size: 1.35rem;
    }

    .ga-upload-label {
        justify-content: center;
    }

    .ga-upload-hint {
        max-width: 280px;
        font-size: 0.88rem;
    }

    .ga-photo-preview {
        gap: 10px;
        padding: 10px;
    }

    .ga-photo-frame {
        min-height: 190px;
        aspect-ratio: 4 / 3;
    }

    .ga-photo-preview img {
        max-height: 300px;
    }

    .ga-photo-preview figcaption {
        align-items: flex-start;
        font-size: 0.86rem;
        line-height: 1.45;
    }

    .ga-success-details {
        grid-template-columns: 1fr;
    }

    .ga-verify-details {
        grid-template-columns: 1fr;
    }

    .ga-wizard-controls {
        flex-direction: column-reverse;
    }

    body.ga-wizard-focus-mode .ga-wizard-page {
        padding-bottom: 186px;
    }

    body.ga-wizard-focus-mode .ga-wizard-section {
        padding-bottom: 196px;
    }

    body.ga-wizard-focus-mode .ga-wizard-controls {
        padding-right: 12px;
        padding-left: 12px;
        max-width: 100vw;
    }

    body.ga-wizard-focus-mode .ga-wizard-controls .ga-action {
        min-width: 0;
        max-width: 100%;
    }

    .ga-submit-wait {
        padding: 12px;
    }

    .ga-submit-wait-card {
        gap: 16px;
        padding: 22px 16px;
        width: 100%;
    }

    .ga-submit-spinner {
        width: 62px;
        height: 62px;
    }

    .ga-submit-wait-copy p:not(.ga-kicker) {
        font-size: 0.94rem;
    }

    .ga-submit-wait-steps {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
    }

    .ga-submit-wait-steps li {
        grid-template-columns: 14px minmax(0, 1fr);
        align-items: center;
        gap: 9px;
        font-size: 0.84rem;
    }

    .ga-submit-wait-steps li::before {
        justify-self: start;
    }

    .ga-step,
    .ga-benefits article,
    .ga-resource-grid article {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ga-submit-spinner::before,
    .ga-submit-spinner::after,
    .ga-submit-spinner span,
    .ga-submit-wait-steps li::before,
    .ga-action-participate:not(.is-disabled)::after {
        animation: none;
    }

    .ga-submit-spinner::before {
        border-color: #13875f;
    }
}
