:root {
    --primary-color: #0a2147;
    --secondary-color: #133a73;
    --accent-color: #f07a24;
    --bg-color: #08162f;
    --text-color: #eff3fb;
    --muted-color: #a9bbd9;
    --surface-dark: rgba(8, 22, 47, 0.92);
    --surface-mid: rgba(15, 38, 77, 0.84);
    --surface-light: #f4f7fc;
    --line-dark: rgba(255, 255, 255, 0.12);
    --line-light: rgba(9, 20, 44, 0.12);
    --shadow-strong: 0 28px 64px rgba(3, 10, 22, 0.32);
    --shadow-soft: 0 16px 30px rgba(8, 17, 31, 0.14);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --container: min(1160px, calc(100vw - 2rem));
    --container-tight: min(860px, calc(100vw - 2rem));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.65;
}

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

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

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

.container {
    width: var(--container);
    margin: 0 auto;
}

.content-shell {
    width: 100%;
    max-width: var(--container-tight);
    margin: 0 auto;
}

.section {
    padding: 4.5rem 0;
}

.section-kicker,
.eyebrow,
.footer-title {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0 0 0.9rem;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.35rem, 10vw, 4.8rem);
}

h2 {
    font-size: clamp(1.85rem, 6vw, 3rem);
}

h3 {
    font-size: 1.15rem;
}

p {
    margin: 0 0 1rem;
    color: rgba(239, 243, 251, 0.92);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0.95rem 1.35rem;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent-color), #ff8658);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(240, 96, 48, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(240, 96, 48, 0.28);
}

.button-outline {
    background: transparent;
    color: var(--text-color);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.button-wide {
    width: 100%;
}

.site-header {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 30;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 5.25rem;
    padding-top: 0.8rem;
}

.brand-mark img {
    width: min(320px, 62vw);
    height: auto;
}

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    background: rgba(8, 19, 35, 0.72);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.menu-toggle span {
    width: 1.2rem;
    height: 2px;
    margin: 0 auto;
    background: #ffffff;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.hero-nav {
    position: absolute;
    top: calc(100% - 0.2rem);
    right: 1rem;
    width: min(290px, calc(100vw - 2rem));
    display: grid;
    gap: 0.45rem;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(8, 19, 35, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}

.hero-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-nav a {
    padding: 0.85rem 0.95rem;
    border-radius: var(--radius-md);
    color: rgba(239, 243, 251, 0.94);
    font-weight: 700;
}

.hero-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
}

.nav-admin-link {
    color: #ffc3af;
}

.hero {
    position: relative;
    min-height: 100vh;
    background-color: var(--bg-color);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 42%, rgba(240, 122, 36, 0.14), transparent 17rem),
        radial-gradient(circle at 14% 16%, rgba(19, 58, 115, 0.16), transparent 11rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(4, 10, 22, 0.06));
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    min-height: 100vh;
    padding: 7.2rem 0 3.2rem;
}

.hero-copy {
    max-width: 40rem;
    padding: 1.5rem 1.5rem 1.35rem;
    border: 1px solid rgba(240, 122, 36, 0.2);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(8, 22, 47, 0.42), rgba(8, 22, 47, 0.22));
    box-shadow: 0 18px 40px rgba(2, 8, 18, 0.24);
}

.hero-copy h1 {
    max-width: 10ch;
}

.hero-lead {
    max-width: 34rem;
    font-size: clamp(1rem, 2.4vw, 1.15rem);
    color: rgba(244, 247, 252, 0.92);
}

.hero-actions {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.hero-actions-primary {
    max-width: 30rem;
}

.hero-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.3rem;
}

.hero-quick-info span {
    padding: 0.45rem 0.7rem;
    border-radius: var(--radius-md);
    background: rgba(19, 58, 115, 0.18);
    border: 1px solid rgba(240, 122, 36, 0.22);
    color: rgba(244, 247, 252, 0.96);
    font-size: 0.88rem;
    font-weight: 700;
}

.hero .button-outline {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
}

.hero .button-outline:hover,
.hero .button-outline:focus-visible {
    background: rgba(255, 255, 255, 0.1);
}

.section-intro,
.section-objectives,
.section-program,
.section-conferences,
.section-workshops,
.section-badges,
.section-faq {
    background:
        radial-gradient(circle at top right, rgba(240, 122, 36, 0.08), transparent 20rem),
        linear-gradient(180deg, rgba(8, 22, 47, 0.98), rgba(8, 22, 47, 1));
}

.section-form,
.section-badge-preview {
    background: linear-gradient(180deg, #f7f9fc, #eef2f7);
}

.section-form h2,
.section-form p,
.section-form .section-heading,
.section-badge-preview h2,
.section-badge-preview .section-heading,
.section-faq summary,
.section-faq p {
    color: #0f1831;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1.6rem;
}

.text-panel,
.form-panel-light {
    padding: 1.3rem;
    border: 1px solid var(--line-light);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
}

.objective-grid,
.badge-grid,
.timeline,
.faq-list,
.badge-actions {
    display: grid;
    gap: 1rem;
}

.objective-card,
.badge-card,
.timeline-item,
.conference-card {
    padding: 1.2rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(16, 38, 72, 0.28));
    box-shadow: var(--shadow-soft);
}

.objective-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
}

.objective-index {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(240, 96, 48, 0.14);
    border: 1px solid rgba(240, 96, 48, 0.24);
}

.objective-card:nth-child(1) .objective-index::after { content: "1"; }
.objective-card:nth-child(2) .objective-index::after { content: "2"; }
.objective-card:nth-child(3) .objective-index::after { content: "3"; }
.objective-card:nth-child(4) .objective-index::after { content: "4"; }

.objective-index::after {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--accent-color);
    font-weight: 900;
}

.objective-card p {
    margin: 0;
}

.timeline-item {
    display: grid;
    gap: 0.45rem;
    border-left: 4px solid rgba(240, 122, 36, 0.82);
}

.timeline-time,
.conference-time {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 900;
    font-family: "Space Grotesk", sans-serif;
}

.conference-grid {
    display: grid;
    gap: 1rem;
}

.conference-card {
    display: grid;
    gap: 1rem;
    border-left: 4px solid rgba(19, 58, 115, 0.9);
}

.conference-media {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.conference-photo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid rgba(240, 122, 36, 0.35);
    box-shadow: 0 14px 30px rgba(2, 8, 18, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.conference-photo-fallback {
    display: grid;
    place-items: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.conference-speaker {
    display: inline-flex;
    margin-bottom: 0.5rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(240, 122, 36, 0.14);
    border: 1px solid rgba(240, 122, 36, 0.24);
    color: #ffd8bd;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.conference-role {
    margin-bottom: 0.7rem;
    color: rgba(226, 235, 248, 0.78);
    font-size: 0.94rem;
    font-weight: 600;
}

.conference-body h3 {
    margin-bottom: 0.55rem;
}

.workshop-grid {
    display: grid;
    gap: 1rem;
}

.workshop-card {
    padding: 1.3rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(16, 38, 72, 0.28));
    box-shadow: var(--shadow-soft);
}

.workshop-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 0.9rem;
}

.workshop-icon {
    display: grid;
    place-items: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(240, 122, 36, 0.2), rgba(19, 58, 115, 0.34));
    border: 1px solid rgba(240, 122, 36, 0.26);
    font-size: 1.55rem;
}

.workshop-time {
    margin-bottom: 0.35rem;
    color: var(--accent-color);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.workshop-summary {
    margin-bottom: 1rem;
}

.workshop-trainers {
    display: grid;
    gap: 0.85rem;
}

.workshop-trainer {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 0.8rem;
    align-items: center;
    padding: 0.75rem;
    border-radius: 16px;
    background: rgba(7, 19, 40, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.workshop-trainer-photo {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    object-fit: cover;
    border: 2px solid rgba(240, 122, 36, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.workshop-trainer-fallback {
    display: grid;
    place-items: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.workshop-trainer-body {
    display: grid;
    gap: 0.2rem;
}

.workshop-trainer-body strong {
    color: #ffffff;
    font-size: 1rem;
}

.workshop-trainer-body span {
    color: rgba(226, 235, 248, 0.76);
    font-size: 0.92rem;
    line-height: 1.45;
}

.badge-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
}

.badge-chip {
    display: inline-flex;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    background: rgba(240, 122, 36, 0.14);
    border: 1px solid rgba(240, 122, 36, 0.24);
    color: #ffd4c5;
    font-size: 0.82rem;
    font-weight: 800;
}

.badge-mini-label {
    color: var(--muted-color);
    font-size: 0.84rem;
    font-weight: 700;
    text-align: right;
}

.registration-form {
    display: grid;
    gap: 1rem;
}

.form-grid {
    display: grid;
    gap: 0.9rem;
}

.field-full {
    grid-column: 1 / -1;
}

.registration-form label {
    display: grid;
    gap: 0.42rem;
}

.registration-form-light span,
.registration-form-light em,
.consent-line-light span,
.registration-form-light p {
    color: #0f1831;
}

.registration-form-light span {
    font-weight: 800;
}

input,
textarea,
select {
    width: 100%;
    min-height: 3.45rem;
    padding: 0.95rem 1rem;
    border: 1px solid #dbe2ec;
    border-radius: var(--radius-md);
    background: #ffffff;
    color: #0f1831;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(240, 96, 48, 0.55);
    box-shadow: 0 0 0 4px rgba(240, 96, 48, 0.12);
}

small,
.error-inline {
    color: #d05f43;
}

.consent-line {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.consent-line input {
    width: 1rem;
    min-height: 1rem;
    margin-top: 0.25rem;
}

.alert {
    padding: 1rem 1.05rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(48, 160, 112, 0.12);
    border-color: rgba(48, 160, 112, 0.24);
    color: #17563f;
}

.alert-error {
    background: rgba(240, 96, 48, 0.12);
    border-color: rgba(240, 96, 48, 0.24);
    color: #8f391f;
}

.digital-badge-mobile {
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(9, 20, 44, 0.08);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(18, 34, 66, 0.1);
}

.badge-preview-head {
    padding: 1.2rem 1rem;
    background: linear-gradient(135deg, #102258, #153878 58%, #18458a);
    text-align: center;
}

.badge-preview-head span,
.badge-preview-category span {
    display: block;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.badge-preview-body {
    padding: 1.3rem 1rem 1rem;
    text-align: center;
}

.badge-preview-body h3,
.badge-preview-body p {
    color: #18233d;
}

.badge-qr-preview {
    width: min(170px, 52vw);
    margin: 0 auto 1rem;
    padding: 0.8rem;
    border: 2px dashed #d6ddea;
    border-radius: 22px;
    background: #ffffff;
}

.badge-qr-preview img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

.badge-preview-role {
    font-weight: 900;
    font-size: 1.18rem;
}

.badge-preview-school,
.badge-preview-city {
    color: #687287 !important;
    font-weight: 800;
}

.badge-preview-category {
    padding: 1rem;
    background: linear-gradient(135deg, #102258, #153878 58%, #18458a);
    text-align: center;
}

.badge-preview-category strong {
    display: block;
    margin-top: 0.2rem;
    color: #ffffff;
    font-size: clamp(1.35rem, 4.6vw, 2rem);
    font-family: "Space Grotesk", sans-serif;
}

.badge-preview-meta {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    color: #687287;
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
}

.faq-list-mobile details {
    border: 1px solid #dce3ee;
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
}

.faq-list-mobile summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    list-style: none;
    font-weight: 900;
}

.faq-list-mobile summary::-webkit-details-marker {
    display: none;
}

.faq-number {
    display: inline-flex;
    width: 2.1rem;
    height: 2.1rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #ff8658);
    color: #ffffff;
}

.faq-list-mobile p {
    margin: 0;
    padding: 0 1rem 1rem;
    color: #35415d;
}

.site-footer {
    padding: 3rem 0;
    background: #08131f;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-stack {
    display: grid;
    gap: 1rem;
}

.footer-stack > div {
    display: grid;
    gap: 0.42rem;
}

.footer-mobile-style a,
.footer-mobile-style span,
.footer-mobile-style strong {
    color: #e6edf8;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(6, 13, 24, 0.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-topbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 5rem;
}

.admin-topbar-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.admin-login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
}

.admin-login-card,
.admin-panel {
    padding: 1.3rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-soft);
}

.admin-main {
    padding-bottom: 3rem;
}

.admin-section {
    padding-top: 3rem;
}

.stats-grid,
.admin-panels,
.latest-list,
.admin-filters {
    display: grid;
    gap: 1rem;
}

.panel-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.latest-list article {
    padding: 0.95rem 1rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
}

.filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.table-panel {
    margin-top: 1.4rem;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
}

.data-table {
    width: 100%;
    min-width: 1120px;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
}

.data-table th,
.data-table td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    vertical-align: top;
}

.data-table th {
    position: sticky;
    top: 0;
    background: rgba(9, 20, 44, 0.96);
    color: var(--muted-color);
    font-size: 0.83rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.empty-table {
    text-align: center;
    color: var(--muted-color);
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 60;
}

.modal.is-open {
    display: block;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 9, 16, 0.72);
    backdrop-filter: blur(8px);
}

.modal-card {
    position: relative;
    width: min(780px, calc(100vw - 1rem));
    margin: 5vh auto;
    padding: 1.2rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(16, 29, 52, 0.98), rgba(8, 16, 31, 0.98));
    box-shadow: var(--shadow-strong);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-color);
    cursor: pointer;
}

.modal-details {
    display: grid;
    gap: 1rem;
}

.modal-details div {
    padding: 0.9rem 1rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
}

.modal-details dt {
    margin-bottom: 0.25rem;
    color: var(--muted-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.modal-details dd {
    margin: 0;
    font-weight: 700;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 420ms ease, transform 420ms ease;
}

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

.is-invalid {
    border-color: rgba(240, 96, 48, 0.72) !important;
    box-shadow: 0 0 0 4px rgba(240, 96, 48, 0.12);
}

@media (min-width: 720px) {
    .hero-actions {
        grid-template-columns: repeat(2, minmax(0, max-content));
    }

    .objective-grid,
    .badge-grid,
    .badge-actions,
    .form-grid,
    .footer-stack,
    .stats-grid,
    .admin-panels,
    .workshop-grid,
    .conference-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline-item,
    .conference-card {
        grid-template-columns: 112px 1fr;
        gap: 1rem;
        align-items: start;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 6rem 0;
    }

    .container {
        width: min(1160px, calc(100vw - 4rem));
    }

    .content-shell {
        max-width: 900px;
    }

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

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

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

    .hero-nav {
        right: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --container: min(1160px, calc(100vw - 1.5rem));
        --container-tight: min(860px, calc(100vw - 1.5rem));
    }

    .brand-mark img {
        width: min(240px, 60vw);
    }

    .hero-copy h1 {
        max-width: 11ch;
    }
}

@media print {
    body.page-home * {
        visibility: hidden;
    }

    body.page-home .badge-print-area,
    body.page-home .badge-print-area * {
        visibility: visible;
    }

    body.page-home .badge-print-area {
        position: absolute;
        inset: 0;
        padding: 1rem;
        background: #ffffff;
        color: #111111;
    }

    body.page-home .site-header,
    body.page-home .site-footer,
    body.page-home .badge-actions {
        display: none !important;
    }
}
