:root {
    --navy-950: #020b16;
    --navy-900: #03182b;
    --navy-850: #05213a;
    --navy-800: #073252;
    --navy-700: #0b4e79;
    --cyan-500: #23c7e6;
    --cyan-400: #5bdef2;
    --yellow-500: #ffc52e;
    --yellow-400: #ffd965;
    --white: #f8fbff;
    --muted: #a9bfd2;
    --line: rgba(123, 203, 236, .18);
    --panel: rgba(5, 33, 58, .78);
    --panel-solid: #07243e;
    --shadow: 0 24px 70px rgba(0, 7, 17, .34);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 15px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--navy-950); }
body {
    margin: 0;
    min-width: 320px;
    color: var(--white);
    background:
        radial-gradient(circle at 5% 6%, rgba(35, 199, 230, .1), transparent 24rem),
        linear-gradient(180deg, var(--navy-950), #031426 48%, var(--navy-950));
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .16;
    background-image:
        linear-gradient(rgba(91, 222, 242, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 222, 242, .08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 62%);
    z-index: -1;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; transform: translateY(-160%); background: var(--yellow-500); color: var(--navy-950); padding: 10px 16px; border-radius: 10px; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; }
.eyebrow { margin: 0 0 12px; color: var(--cyan-400); font-size: .78rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.1; letter-spacing: -.035em; }
h1 { font-size: clamp(2.55rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: 1.28rem; }
p { color: var(--muted); }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, box-shadow .25s; }
.site-header::before { content: ""; position: absolute; inset: 0; background: rgba(2, 11, 22, .74); backdrop-filter: blur(18px); opacity: 0; transition: opacity .25s; }
.site-header.is-scrolled::before, .site-header:focus-within::before { opacity: 1; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 35px rgba(0, 0, 0, .18); }
.header-inner { position: relative; min-height: 92px; display: flex; align-items: center; gap: 24px; }
.brand { flex: 0 0 auto; text-decoration: none; }
.brand img { width: 186px; height: auto; }
.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: clamp(8px, 1.15vw, 17px); padding: 0; margin: 0; }
.main-nav a { position: relative; text-decoration: none; color: #dceaf4; font-size: .84rem; font-weight: 700; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; border-radius: 99px; background: var(--cyan-500); transition: right .2s; }
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.main-nav a.is-active { color: var(--white); }
.header-cta { margin-left: 4px; }
.menu-toggle { display: none; width: 46px; height: 42px; margin-left: auto; border: 1px solid var(--line); background: rgba(5, 33, 58, .72); border-radius: 12px; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--white); border-radius: 2px; transition: transform .2s, opacity .2s; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 999px; padding: 12px 23px; text-decoration: none; font-weight: 850; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400)); color: #0a1724; box-shadow: 0 15px 35px rgba(255, 197, 46, .2); }
.button-primary:hover { box-shadow: 0 18px 44px rgba(255, 197, 46, .32); }
.button-secondary { color: var(--cyan-400); background: rgba(35, 199, 230, .04); border-color: rgba(91, 222, 242, .45); }
.button-secondary:hover { background: rgba(35, 199, 230, .11); }
.button-small { min-height: 42px; padding: 9px 17px; font-size: .9rem; }
.button-full { width: 100%; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--cyan-400); font-weight: 800; text-decoration: none; }
.text-link .icon { transition: transform .2s; }
.text-link:hover .icon { transform: translateX(4px); }

.hero { position: relative; min-height: 720px; overflow: hidden; display: grid; align-items: center; padding: 76px 0 108px; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 28%, rgba(35, 199, 230, .09), transparent 33rem); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .96fr 1.04fr; gap: 58px; align-items: center; }
.hero-copy h1 { max-width: 780px; margin-bottom: 25px; background: linear-gradient(135deg, #fff 28%, var(--cyan-400) 72%, #fff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { max-width: 660px; font-size: clamp(1.08rem, 1.8vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.registration-chip { display: inline-flex; align-items: center; gap: 11px; margin-top: 27px; color: #dcecf7; font-size: .93rem; }
.registration-chip .icon { color: var(--cyan-400); }
.hero-visual { position: relative; }
.hero-visual > img { width: 100%; border: 1px solid rgba(123, 203, 236, .22); border-radius: 26px; box-shadow: 0 40px 50px rgba(0, 0, 0, .35); }
.floating-note { position: absolute; padding: 11px 15px; border: 1px solid rgba(91, 222, 242, .28); border-radius: 14px; background: rgba(2, 18, 33, .72); backdrop-filter: blur(10px); box-shadow: var(--shadow); }
.floating-note strong { display: block; color: var(--cyan-400); font-size: 1.1rem; }
.floating-note span { color: var(--muted); font-size: .78rem; }
.note-one { left: -2%; top: 15%; transform: rotate(-4deg); }
.note-two { right: -2%; bottom: 12%; transform: rotate(4deg); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .2; }
.hero-glow-one { width: 370px; height: 370px; top: 4%; right: -140px; background: var(--cyan-500); }
.hero-glow-two { width: 260px; height: 260px; bottom: -100px; left: 12%; background: var(--yellow-500); opacity: .08; }

.facts-band { position: relative; z-index: 4; margin-top: -58px; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(3, 24, 43, .88); backdrop-filter: blur(16px); box-shadow: var(--shadow); }
.fact { min-height: 128px; display: flex; flex-direction: column; justify-content: center; padding: 25px 31px; border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; }
.fact strong { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; color: var(--yellow-500); }
.fact span { margin-top: 9px; color: #c7d9e5; }

.section { padding: 112px 0; }
.section-alt { background: linear-gradient(180deg, rgba(7, 50, 82, .28), rgba(3, 24, 43, .11)); border-block: 1px solid rgba(91, 222, 242, .08); }
.section-heading { max-width: 790px; margin: 0 auto 52px; text-align: center; }
.section-heading.align-left { margin: 0; text-align: left; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading p:last-child { font-size: 1.08rem; }
.center-action { margin-top: 36px; text-align: center; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card, .criterion-card, .mini-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(8, 47, 77, .85), rgba(3, 24, 43, .88)); box-shadow: 0 18px 45px rgba(0, 7, 17, .18); }
.step-card { min-height: 290px; padding: 26px; }
.step-card::before { content: ""; position: absolute; width: 180px; height: 180px; right: -90px; top: -90px; border-radius: 50%; background: rgba(35, 199, 230, .08); }
.step-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.step-top .icon { width: 38px; height: 38px; color: var(--cyan-400); }
.step-number { color: var(--yellow-500); font-weight: 900; letter-spacing: .12em; }
.step-card p { margin-bottom: 0; }
.tasks-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.task-card { grid-column: span 2; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(3, 24, 43, .8); box-shadow: 0 20px 50px rgba(0, 0, 0, .16); transition: transform .25s, border-color .25s; }
.task-card:nth-child(4), .task-card:nth-child(5) { grid-column: span 3; }
.task-card:hover { transform: translateY(-6px); border-color: rgba(91, 222, 242, .4); }
.task-image { aspect-ratio: 16 / 9; overflow: hidden; background: linear-gradient(135deg, #082f4d, #041a2d); border-bottom: 1px solid rgba(123, 203, 236, .12); }
.task-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.task-card:hover .task-image img { transform: scale(1.035); }
.task-content { padding: 24px; }
.task-subtitle, .org-role { margin: 0 0 6px; color: var(--cyan-400); font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.task-content h3 { margin-bottom: 10px; }
.task-content p:last-child { margin-bottom: 0; }

.split-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.panel { border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(26px, 4vw, 48px); background: rgba(5, 33, 58, .72); box-shadow: var(--shadow); }
.panel-highlight { background: radial-gradient(circle at 100% 0, rgba(255, 197, 46, .12), transparent 20rem), linear-gradient(145deg, rgba(8, 47, 77, .92), rgba(3, 24, 43, .94)); }
.check-list { display: grid; gap: 12px; list-style: none; padding: 0; margin: 25px 0; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; color: #d3e1eb; }
.check-list .icon { margin-top: .17em; color: var(--yellow-500); }
.check-list.large { gap: 18px; }
.status-row { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-top: 1px solid var(--line); }
.status-row:first-of-type { margin-top: 26px; }
.status-row:last-of-type { border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.status-dot { width: 13px; height: 13px; margin-top: 5px; border: 3px solid #44677f; border-radius: 50%; }
.status-dot.is-confirmed { border-color: var(--cyan-500); box-shadow: 0 0 0 5px rgba(35, 199, 230, .1); }
.status-row strong, .status-row span { display: block; }
.status-row span { color: var(--muted); }
.section-cta { padding-top: 30px; }
.cta-box { display: flex; justify-content: space-between; align-items: center; gap: 32px; padding: clamp(30px, 5vw, 62px); border: 1px solid rgba(255, 197, 46, .25); border-radius: var(--radius-xl); background: radial-gradient(circle at 10% 120%, rgba(35, 199, 230, .2), transparent 25rem), linear-gradient(135deg, #073252, #03182b); }
.cta-box h2 { max-width: 750px; margin-bottom: 0; }

.page-hero { position: relative; overflow: hidden; padding: 92px 0 76px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 20%, rgba(35, 199, 230, .12), transparent 25rem); }
.page-hero-inner { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.page-hero h1 { max-width: 850px; font-size: clamp(3rem, 7vw, 6rem); margin-bottom: 22px; }
.page-lead { max-width: 820px; font-size: 1.18rem; }
.page-orbit { position: relative; width: 220px; height: 220px; flex: 0 0 auto; border: 1px solid rgba(91, 222, 242, .2); border-radius: 50%; transform: rotate(-16deg); }
.page-orbit::before, .page-orbit::after { content: ""; position: absolute; inset: 34px -22px; border: 2px solid rgba(35, 199, 230, .42); border-radius: 50%; }
.page-orbit::after { inset: -18px 50px; transform: rotate(65deg); border-color: rgba(255, 197, 46, .35); }
.page-orbit span { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--cyan-500); box-shadow: 0 0 18px rgba(35, 199, 230, .8); }
.page-orbit span:nth-child(1) { top: 20px; left: 68px; }
.page-orbit span:nth-child(2) { right: 10px; top: 100px; background: var(--yellow-500); }
.page-orbit span:nth-child(3) { bottom: 23px; left: 42px; }

.process-list { max-width: 940px; }
.process-item { position: relative; display: grid; grid-template-columns: 86px 1fr; gap: 28px; padding-bottom: 62px; }
.process-item:last-child { padding-bottom: 0; }
.process-number { position: relative; z-index: 2; width: 74px; height: 74px; display: grid; place-items: center; border-radius: 20px; background: linear-gradient(135deg, var(--cyan-500), #0a75a3); color: #031522; font-size: 1.55rem; font-weight: 950; box-shadow: 0 15px 35px rgba(35, 199, 230, .18); }
.process-item h2 { font-size: clamp(1.8rem, 3vw, 2.55rem); margin-bottom: 12px; }
.process-item p { max-width: 730px; font-size: 1.07rem; }
.process-line { position: absolute; left: 36px; top: 80px; bottom: 6px; width: 2px; background: linear-gradient(var(--cyan-500), rgba(35, 199, 230, .08)); }
.criteria-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.criterion-card { padding: 28px; }
.criterion-card > .icon { width: 36px; height: 36px; margin-bottom: 26px; color: var(--yellow-500); }
.info-banner { display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center; padding: clamp(28px, 5vw, 54px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(7, 50, 82, .88), rgba(3, 24, 43, .92)); }
.info-banner > div:first-child { width: 86px; height: 86px; display: grid; place-items: center; border-radius: 24px; color: var(--yellow-500); background: rgba(255, 197, 46, .08); }
.info-banner > div:first-child .icon { width: 43px; height: 43px; }
.info-banner h2 { margin-bottom: 12px; }
.info-banner p:last-child { margin-bottom: 0; }

.registration-layout, .contact-layout { display: grid; grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr); gap: 28px; align-items: start; }
.sticky-panel { position: sticky; top: 116px; }
.date-card { display: flex; gap: 14px; align-items: center; margin-top: 28px; padding: 18px; border: 1px solid rgba(255, 197, 46, .25); border-radius: var(--radius-md); background: rgba(255, 197, 46, .07); }
.date-card .icon { color: var(--yellow-500); width: 28px; height: 28px; }
.date-card strong, .date-card span { display: block; }
.date-card span { color: var(--muted); font-size: .88rem; }
.form-card, .form-status { border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(26px, 5vw, 48px); background: rgba(5, 33, 58, .78); box-shadow: var(--shadow); }
.form-status h2 { margin: 22px 0 14px; }
.status-badge { display: inline-flex; padding: 7px 12px; border-radius: 99px; color: var(--navy-950); background: var(--yellow-500); font-weight: 850; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.status-badge.is-closed { background: #93a8b8; }
.form-heading { margin-bottom: 35px; }
.form-heading h2 { margin-bottom: 12px; }
fieldset { border: 0; padding: 0; margin: 0 0 34px; }
legend { width: 100%; padding: 0 0 12px; margin-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--white); font-weight: 850; font-size: 1.16rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field > span { color: #dce9f3; font-weight: 700; font-size: .92rem; }
.field-help { color: var(--muted); font-size: .82rem; line-height: 1.45; }
.region-guide { margin-top: -4px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 13px; background: rgba(2, 15, 28, .38); }
.region-guide summary { color: var(--cyan-400); font-weight: 800; cursor: pointer; }
.region-guide dl { display: grid; gap: 11px; margin: 15px 0 0; }
.region-guide dl > div { display: grid; grid-template-columns: minmax(150px, .35fr) 1fr; gap: 14px; padding-top: 11px; border-top: 1px solid var(--line); }
.region-guide dt { color: var(--white); font-weight: 800; }
.region-guide dd { margin: 0; color: var(--muted); font-size: .88rem; }
input, select, textarea { width: 100%; border: 1px solid rgba(126, 185, 216, .27); border-radius: 13px; padding: 13px 14px; color: var(--white); background: rgba(2, 15, 28, .68); outline: none; transition: border-color .2s, box-shadow .2s; }
select { color-scheme: dark; }
textarea { resize: vertical; min-height: 130px; }
input:focus, select:focus, textarea:focus { border-color: var(--cyan-500); box-shadow: 0 0 0 4px rgba(35, 199, 230, .1); }
.field.has-error input, .field.has-error select, .field.has-error textarea, .consent.has-error { border-color: #ff8794; }
.consent { display: flex; gap: 12px; align-items: flex-start; margin: 8px 0 26px; padding: 14px; border: 1px solid transparent; border-radius: 12px; color: #c9dae6; }
.consent input { width: 19px; height: 19px; margin-top: 4px; accent-color: var(--yellow-500); }
.button-submit { border: 0; }
.form-note { margin: 18px 0 0; font-size: .85rem; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.process-mini { display: grid; gap: 16px; margin-top: 28px; }
.process-mini article { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(3, 24, 43, .54); }
.process-mini article > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: rgba(35, 199, 230, .12); color: var(--cyan-400); font-weight: 900; }
.process-mini h3 { margin-bottom: 6px; }
.process-mini p { margin: 0; }
.alert { display: flex; gap: 16px; margin-bottom: 22px; padding: 18px 20px; border-radius: var(--radius-md); border: 1px solid; }
.alert p { margin: 3px 0 0; }
.alert-success { border-color: rgba(71, 218, 151, .35); background: rgba(71, 218, 151, .09); }
.alert-success .icon { color: #47da97; }
.alert-error { border-color: rgba(255, 112, 128, .35); background: rgba(255, 112, 128, .08); }

.organizer-grid { display: grid; gap: 24px; }
.organizer-card { display: grid; grid-template-columns: minmax(260px, 330px) 1fr; gap: clamp(34px, 5vw, 64px); align-items: center; padding: clamp(28px, 5vw, 54px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(5, 33, 58, .72); }
.org-logo-box { min-height: 168px; display: grid; place-items: center; padding: 24px 28px; border: 1px solid rgba(9, 65, 116, .12); border-radius: 24px; background: #f8fafc; box-shadow: 0 16px 34px rgba(0, 7, 17, .16); }
.org-logo-box img { display: block; width: auto; max-width: 100%; object-fit: contain; }
.organizer-card:first-child .org-logo-box img { width: 300px; max-height: 92px; }
.organizer-card:nth-child(2) .org-logo-box img { width: 282px; max-height: 92px; }
.org-content h2 { margin-bottom: 15px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.patron-feature { display: grid; grid-template-columns: minmax(260px, 330px) 1fr; gap: clamp(34px, 6vw, 74px); align-items: center; padding: clamp(28px, 5vw, 58px); border: 1px solid rgba(255, 197, 46, .32); border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(255, 197, 46, .08), rgba(5, 33, 58, .78)); box-shadow: var(--shadow); }
.patron-logo-box { display: grid; place-items: center; min-height: 168px; padding: 18px 22px; border: 1px solid rgba(9, 65, 116, .12); border-radius: 24px; background: #f8fafc; box-shadow: 0 16px 34px rgba(0, 7, 17, .16); }
.patron-logo-box img { display: block; width: 300px; max-width: 100%; height: auto; object-fit: contain; }
.patron-content h2 { margin-bottom: 16px; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.patron-content p:last-child { margin-bottom: 0; }
.patron-home-strip { padding: 34px 0; border-bottom: 1px solid var(--line); background: linear-gradient(90deg, rgba(255, 197, 46, .08), rgba(35, 199, 230, .05)); }
.patron-home-inner { display: grid; grid-template-columns: minmax(220px, 290px) 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.patron-home-logo { display: grid; place-items: center; padding: 12px 15px; border-radius: 16px; background: #f8fafc; }
.patron-home-logo img { display: block; width: auto; max-width: 255px; max-height: 118px; object-fit: contain; }
.patron-home-inner h2 { margin-bottom: 8px; font-size: clamp(1.35rem, 2.6vw, 2.15rem); }
.patron-home-inner p:last-child { margin-bottom: 0; }
.values-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: start; }
.value-cards { display: grid; gap: 16px; }
.mini-card { padding: 26px; display: grid; grid-template-columns: 48px 1fr; column-gap: 18px; }
.mini-card > .icon { grid-row: 1 / 3; width: 42px; height: 42px; color: var(--cyan-400); }
.mini-card h3 { margin-bottom: 5px; }
.mini-card p { margin: 0; }

.regulations-layout { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; }
.regulations-nav { position: sticky; top: 116px; padding: 28px; }
.regulations-nav ol { display: grid; gap: 11px; padding-left: 22px; margin: 0 0 25px; }
.regulations-nav a { color: #d9e9f3; text-decoration: none; }
.regulations-nav a:hover { color: var(--cyan-400); }
.document-note { margin-bottom: 0; font-size: .9rem; }
.regulations-content { display: grid; gap: 24px; }
.regulation-section { scroll-margin-top: 120px; padding: clamp(28px, 5vw, 48px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(5, 33, 58, .67); }
.regulation-index { display: inline-flex; margin-bottom: 18px; padding: 5px 10px; border-radius: 9px; color: var(--navy-950); background: var(--yellow-500); font-weight: 900; }
.regulation-section h2 { margin-bottom: 22px; }
.regulation-section ul { display: grid; gap: 13px; padding-left: 22px; color: #c9d9e4; }
.regulation-section li::marker { color: var(--cyan-500); }

.schedule-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 38px; align-items: start; }
.timeline { position: relative; }
.timeline::before { content: ""; position: absolute; top: 12px; bottom: 12px; left: 12px; width: 2px; background: linear-gradient(var(--cyan-500), rgba(35, 199, 230, .08)); }
.timeline-item { position: relative; display: grid; grid-template-columns: 180px 1fr; gap: 24px; padding: 0 0 30px 44px; }
.timeline-marker { position: absolute; left: 4px; top: 7px; width: 18px; height: 18px; border: 4px solid #456a83; border-radius: 50%; background: var(--navy-950); }
.timeline-item.is-confirmed .timeline-marker { border-color: var(--cyan-500); box-shadow: 0 0 0 6px rgba(35, 199, 230, .1); }
.timeline-item.is-final .timeline-marker { border-color: var(--yellow-500); }
.timeline-date { padding-top: 3px; color: var(--cyan-400); font-weight: 850; }
.timeline-card { padding: 23px 25px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(5, 33, 58, .65); }
.timeline-card h2 { margin-bottom: 8px; font-size: 1.45rem; }
.timeline-card p { margin: 0; }
.results-placeholder { position: sticky; top: 116px; }
.results-icon { width: 76px; height: 76px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 22px; color: var(--yellow-500); background: rgba(255, 197, 46, .09); }
.results-icon .icon { width: 40px; height: 40px; }
.table-wrap { margin-top: 28px; overflow-x: auto; }
.results-table { width: 100%; border-collapse: collapse; min-width: 320px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.results-table th, .results-table td { padding: 13px 14px; border-bottom: 1px solid var(--line); text-align: left; }
.results-table thead th { color: var(--cyan-400); font-size: .82rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; background: rgba(35, 199, 230, .06); }
.results-table tbody td { color: #dceaf4; }
.results-table tbody td:last-child, .results-table thead th:last-child { text-align: right; }
.results-table tbody tr:last-child td { border-bottom: 0; }
.results-table tbody td:first-child { width: 84px; font-weight: 850; color: var(--yellow-400); }

.contact-info { display: grid; gap: 22px; }
.contact-email { display: flex; gap: 14px; align-items: center; margin: 18px 0; color: var(--white); font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 850; text-decoration: none; word-break: break-word; }
.contact-email .icon { color: var(--cyan-400); }

.site-footer { border-top: 1px solid var(--line); background: rgba(2, 11, 22, .8); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 65px; padding-top: 66px; padding-bottom: 48px; }
.footer-brand .brand img { width: 220px; }
.footer-brand p { max-width: 390px; }
.footer-heading { margin-bottom: 20px; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links, .footer-contact { display: grid; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer-links a, .footer-contact a { color: #c9dae6; text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: var(--cyan-400); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: #c9dae6; }
.footer-contact .icon { margin-top: 3px; color: var(--cyan-400); }
.social-links { display: flex; gap: 10px; margin-top: 22px; }
.social-links a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--cyan-400); background: rgba(5, 33, 58, .6); }
.footer-organizations { display: flex; justify-content: center; align-items: center; gap: clamp(28px, 6vw, 78px); padding: 24px 0 32px; border-top: 1px solid rgba(123, 203, 236, .12); }
.footer-org-logo { width: 350px; min-height: 152px; display: grid; place-items: center; padding: 18px 22px; border: 1px solid rgba(9, 65, 116, .12); border-radius: 14px; background: #f8fafc; transition: transform .2s, box-shadow .2s; }
.footer-org-logo:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0, 7, 17, .18); }
.footer-org-logo img { display: block; width: auto; max-width: 100%; object-fit: contain; }
.footer-org-logo:first-child img { width: 300px; max-height: 92px; }
.footer-org-logo:nth-child(2) img { width: 282px; max-height: 92px; }
.footer-patron-logo { width: 350px; min-height: 152px; display: grid; place-items: center; padding: 14px 18px; border: 1px solid rgba(9, 65, 116, .12); border-radius: 14px; background: #f8fafc; }
.footer-patron-logo img { display: block; width: 300px; max-width: 100%; height: auto; object-fit: contain; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; padding-bottom: 30px; border-top: 1px solid var(--line); color: #7893a7; font-size: .85rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
    .header-cta { display: none; }
    .main-nav ul { gap: 15px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 50px; }
    .hero-copy { max-width: 820px; }
    .hero-visual { max-width: 820px; margin-inline: auto; }
    .steps-grid, .criteria-grid { grid-template-columns: repeat(2, 1fr); }
    .facts-grid { grid-template-columns: repeat(2, 1fr); }
    .fact:nth-child(2) { border-right: 0; }
    .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .task-card, .task-card:nth-child(4), .task-card:nth-child(5) { grid-column: span 3; }
    .registration-layout, .contact-layout, .schedule-layout { grid-template-columns: 1fr; }
    .sticky-panel, .results-placeholder { position: static; }
    .registration-sidebar { order: 2; }
}

@media (max-width: 860px) {
    .header-inner { min-height: 76px; }
    .brand img { width: 150px; }
    .menu-toggle { display: block; }
    .main-nav { position: fixed; top: 76px; left: 20px; right: 20px; z-index: 120; margin: 0; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(3, 24, 43, .97); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .2s, visibility .2s, transform .2s; }
    .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .main-nav ul { display: grid; gap: 4px; }
    .main-nav a { display: block; padding: 12px 13px; border-radius: 10px; }
    .main-nav a:hover, .main-nav a.is-active { background: rgba(35, 199, 230, .08); }
    .main-nav a::after { display: none; }
    .menu-open { overflow: hidden; }
    .split-panel, .values-grid { grid-template-columns: 1fr; }
    .cta-box { align-items: flex-start; flex-direction: column; }
    .page-orbit { display: none; }
    .organizer-card, .patron-feature, .patron-home-inner { grid-template-columns: 1fr; }
    .org-logo-box { min-height: 112px; }
    .footer-organizations { flex-wrap: wrap; }
    .patron-home-logo { max-width: 430px; }
    .regulations-layout { grid-template-columns: 1fr; }
    .regulations-nav { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .hero { min-height: auto; padding: 52px 0 92px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .registration-chip { align-items: flex-start; }
    .floating-note { display: none; }
    .facts-grid, .steps-grid, .criteria-grid { grid-template-columns: 1fr; }
    .fact { border-right: 0; border-bottom: 1px solid var(--line); }
    .fact:last-child { border-bottom: 0; }
    .task-card, .task-card:nth-child(4), .task-card:nth-child(5) { grid-column: 1 / -1; }
    .tasks-grid { grid-template-columns: 1fr; }
    .section { padding: 78px 0; }
    .page-hero { padding: 62px 0 48px; }
    .process-item { grid-template-columns: 58px 1fr; gap: 18px; }
    .process-number { width: 54px; height: 54px; border-radius: 15px; }
    .process-line { left: 26px; top: 60px; }
    .info-banner { grid-template-columns: 1fr; }
    .info-banner > div:first-child { width: 70px; height: 70px; }
    .form-grid { grid-template-columns: 1fr; }
    .field.full { grid-column: auto; }
    .region-guide dl > div { grid-template-columns: 1fr; gap: 4px; }
    .timeline-item { grid-template-columns: 1fr; gap: 8px; }
    .timeline-date { padding-top: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .footer-patron-logo { width: min(100%, 350px); }
    .footer-brand { grid-column: auto; }
    .footer-organizations { flex-direction: column; gap: 12px; }
    .footer-org-logo { width: min(100%, 350px); }
    .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Komiksowa warstwa wizualna SzLIF */
:root { --comic-ink: #06111e; }
.hero-visual > img {
    border: 6px solid var(--comic-ink);
    border-radius: 30px;
    box-shadow: 10px 10px 0 rgba(35, 199, 230, .72), 0 34px 55px rgba(0, 0, 0, .32);
}
.task-card {
    border-width: 4px;
    border-color: var(--comic-ink);
    box-shadow: 7px 7px 0 rgba(35, 199, 230, .28);
    transition: transform .22s ease, box-shadow .22s ease;
}
.task-card:nth-child(even) { box-shadow: 7px 7px 0 rgba(255, 197, 46, .23); }
.task-card:hover { transform: translate(-2px, -3px) rotate(-.15deg); box-shadow: 11px 11px 0 rgba(35, 199, 230, .32); }
.task-image { border-bottom: 5px solid var(--comic-ink); }
.task-image img { filter: saturate(1.06) contrast(1.03); }
.step-number, .regulation-index { border: 3px solid var(--comic-ink); box-shadow: 3px 3px 0 var(--comic-ink); }
.results-table-season { min-width: 790px; }
.results-table-season th:not(:nth-child(2)),
.results-table-season td:not(:nth-child(2)) { text-align: center; }
.results-table-season th:nth-child(2),
.results-table-season td:nth-child(2) { min-width: 160px; text-align: left; }
.results-table-season td:last-child,
.results-table-season th:last-child { font-weight: 900; color: var(--yellow-400); }

/* Karty zapowiedzi przykładowych zadań */
.task-card-link { display: block; height: 100%; color: inherit; text-decoration: none; }
.task-card-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 15px; color: var(--cyan-400); font-weight: 850; }
.task-card-cta .icon { width: 1.05em; transition: transform .2s ease; }
.task-card-link:hover .task-card-cta .icon { transform: translateX(4px); }

.task-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 82px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 84% 18%, rgba(35, 199, 230, .14), transparent 28rem),
        radial-gradient(circle at 5% 90%, rgba(255, 197, 46, .08), transparent 26rem);
}
.task-detail-hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: clamp(34px, 6vw, 78px); align-items: center; }
.task-detail-copy h1 { margin-bottom: 8px; font-size: clamp(3rem, 7vw, 6.2rem); }
.task-detail-subtitle { margin: 0 0 22px; color: var(--yellow-400); font-size: 1.02rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px; color: #dbeaf4; font-weight: 750; text-decoration: none; }
.back-link:hover { color: var(--cyan-400); }
.back-link .icon { width: 1.05em; }
.task-detail-image { margin: 0; position: relative; }
.task-detail-image::before { content: ""; position: absolute; inset: 14px -12px -14px 12px; border: 4px solid var(--yellow-500); border-radius: 28px; transform: rotate(1deg); opacity: .72; }
.task-detail-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border: 6px solid var(--comic-ink); border-radius: 26px; box-shadow: 10px 10px 0 rgba(35, 199, 230, .62), var(--shadow); }
.task-disclosure-note { display: grid; grid-template-columns: 38px 1fr; gap: 14px; margin-top: 30px; padding: 18px 20px; border: 1px solid rgba(255, 197, 46, .3); border-radius: var(--radius-md); background: rgba(255, 197, 46, .07); }
.task-disclosure-note .icon { width: 30px; height: 30px; color: var(--yellow-500); }
.task-disclosure-note p { margin: 0; }
.task-disclosure-note strong { color: var(--white); }

.task-brief-section { padding-top: 86px; }
.task-challenge-panel { max-width: 980px; margin: 0 auto 42px; padding: clamp(28px, 5vw, 52px); border: 4px solid var(--comic-ink); border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(7, 50, 82, .96), rgba(3, 24, 43, .96)); box-shadow: 9px 9px 0 rgba(35, 199, 230, .34); text-align: center; }
.task-challenge-panel h2 { margin: 0; font-size: clamp(1.9rem, 4vw, 3.15rem); }
.task-brief-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.brief-card { padding: clamp(26px, 4vw, 42px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(5, 33, 58, .76); box-shadow: 0 24px 60px rgba(0, 0, 0, .18); }
.brief-card-accent { border-color: rgba(35, 199, 230, .36); background: linear-gradient(145deg, rgba(8, 57, 91, .94), rgba(4, 27, 47, .92)); }
.brief-card-warning { border-color: rgba(255, 197, 46, .3); }
.brief-icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 24px; border: 3px solid var(--comic-ink); border-radius: 18px; color: var(--navy-950); background: var(--cyan-500); box-shadow: 4px 4px 0 var(--comic-ink); }
.brief-card-warning .brief-icon { background: var(--yellow-500); }
.brief-icon .icon { width: 31px; height: 31px; }
.brief-list { display: grid; gap: 12px; margin: 0; padding-left: 21px; color: #d1e0ea; }
.brief-list li::marker { color: var(--cyan-500); }
.brief-card-warning .brief-list li::marker { color: var(--yellow-500); }
.brief-emphasis { margin: 0; color: var(--white); font-size: clamp(1.25rem, 2.4vw, 1.75rem); font-weight: 760; line-height: 1.42; }
.task-bottom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.physics-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.physics-tags span { padding: 8px 12px; border: 1px solid rgba(35, 199, 230, .3); border-radius: 999px; color: var(--cyan-400); background: rgba(35, 199, 230, .07); font-size: .88rem; font-weight: 800; }
.small-note { margin-bottom: 0; font-size: .9rem; }

@media (max-width: 960px) {
    .task-detail-hero-grid { grid-template-columns: 1fr; }
    .task-detail-image { max-width: 850px; }
}

@media (max-width: 700px) {
    .task-detail-hero { padding: 50px 0 65px; }
    .task-brief-grid, .task-bottom-grid { grid-template-columns: 1fr; }
    .task-detail-image::before { inset: 8px -6px -8px 6px; }
    .task-detail-image img { border-width: 4px; box-shadow: 6px 6px 0 rgba(35, 199, 230, .62), var(--shadow); }
    .task-disclosure-note { grid-template-columns: 1fr; }
}

/* Wersja v7: pięć symbolicznych kart zadań w jednym rzędzie */
.tasks-container { width: min(calc(100% - 40px), 1460px); }
.tasks-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.task-card,
.task-card:nth-child(4),
.task-card:nth-child(5) { grid-column: auto; min-width: 0; }
.task-card-link { display: flex; flex-direction: column; }
.home-task-image { aspect-ratio: 9 / 5.6; background: #f7f4ea; }
.home-task-image img { object-fit: contain; filter: none; }
.task-content { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.task-content h3 { font-size: 1.14rem; }
.task-content > p:not(.task-subtitle) { font-size: .92rem; line-height: 1.52; }
.task-card-cta { margin-top: auto; padding-top: 13px; }

/* Ogólne instrukcje zadań w formie ciągłego tekstu */
.task-instruction-grid { display: grid; gap: 24px; }
.instruction-card {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: rgba(5, 33, 58, .76);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .16);
}
.instruction-card-accent {
    border-color: rgba(35, 199, 230, .38);
    background: linear-gradient(145deg, rgba(8, 57, 91, .96), rgba(4, 27, 47, .94));
}
.instruction-card-warning {
    border-color: rgba(255, 197, 46, .34);
    background: linear-gradient(145deg, rgba(54, 45, 15, .34), rgba(4, 27, 47, .94));
}
.instruction-card-warning .brief-icon { background: var(--yellow-500); }
.instruction-card h2 { margin-bottom: 18px; font-size: clamp(1.55rem, 2.8vw, 2.35rem); }
.instruction-card p { max-width: 1040px; margin: 0 0 15px; font-size: 1.03rem; line-height: 1.72; }
.instruction-card p:last-child { margin-bottom: 0; }

@media (max-width: 1180px) {
    .tasks-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
    .tasks-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .instruction-card { grid-template-columns: 60px minmax(0, 1fr); gap: 18px; }
    .instruction-card .brief-icon { width: 54px; height: 54px; }
}

@media (max-width: 520px) {
    .tasks-container { width: min(calc(100% - 28px), 1460px); }
    .tasks-grid { grid-template-columns: 1fr; }
    .instruction-card { grid-template-columns: 1fr; }
}

/* Pełne zgłoszenie zespołu — v11 */
.registration-layout-wide { grid-template-columns: minmax(260px, .58fr) minmax(0, 1.42fr); }
.full-registration-form fieldset { scroll-margin-top: 120px; }
.form-section-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: -8px 0 34px; }
.form-section-nav a { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: #d9e8f2; background: rgba(3,24,43,.52); text-decoration: none; font-size: .78rem; font-weight: 800; }
.form-section-nav a:hover { color: var(--navy-950); border-color: var(--yellow-500); background: var(--yellow-500); }
.upload-summary { display: grid; gap: 5px; margin-top: 18px; padding: 16px; border: 1px solid rgba(35,199,230,.23); border-radius: var(--radius-md); background: rgba(35,199,230,.06); }
.upload-summary strong { color: var(--cyan-400); }
.upload-summary span { color: var(--muted); font-size: .86rem; }
.fieldset-intro { max-width: 880px; margin: -4px 0 22px; }
.students-list { display: grid; gap: 18px; }
.student-card { padding: clamp(20px, 3vw, 30px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(2,15,28,.34); }
.student-card h3, .contact-subsection h3, .privacy-box h3 { margin-bottom: 18px; }
.file-field { padding: 15px; border: 1px dashed rgba(91,222,242,.3); border-radius: 13px; background: rgba(35,199,230,.035); }
.file-field input[type="file"] { padding: 10px; background: rgba(2,15,28,.52); }
.field-help { color: #86a1b5; font-size: .78rem; line-height: 1.45; }
.contact-subsection { padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-subsection:first-of-type { padding-top: 0; }
.contact-subsection:last-child { padding-bottom: 0; border-bottom: 0; }
.consent.compact { width: fit-content; margin: -6px 0 18px; padding: 9px 12px; border-color: var(--line); background: rgba(2,15,28,.28); }
.privacy-box { margin-bottom: 18px; padding: 20px; border: 1px solid rgba(255,197,46,.25); border-radius: var(--radius-md); background: rgba(255,197,46,.06); }
.privacy-box h3 { color: var(--yellow-400); }
.privacy-box p { margin: 0; }
.privacy-box a { color: var(--cyan-400); font-weight: 800; }
.privacy-content { display: grid; gap: 22px; max-width: 940px; }
.privacy-section { padding: clamp(24px, 4vw, 42px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(5,33,58,.67); }
.privacy-section h2 { margin-bottom: 18px; font-size: clamp(1.55rem, 3vw, 2.3rem); }
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-section ul { display: grid; gap: 10px; padding-left: 22px; color: #c9d9e4; }
.privacy-section li::marker { color: var(--cyan-500); }

@media (max-width: 1040px) {
    .registration-layout-wide { grid-template-columns: 1fr; }
}

.student-consent-download { margin-top: 2px; }
.student-consent-download .text-link { width: fit-content; }
.student-consent-download .icon { width: 1.05em; height: 1.05em; }

/* Dynamiczne wyniki z protokołów — v12 */
.timeline-results-link { display: inline-flex; margin-top: 14px; }
.public-result-counts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 24px 0; }
.public-result-counts div { padding: 16px; border: 1px solid var(--line); border-radius: 13px; background: rgba(2,15,28,.38); }
.public-result-counts strong, .public-result-counts span { display: block; }
.public-result-counts strong { color: var(--yellow-400); font-size: 1.65rem; line-height: 1; }
.public-result-counts span { margin-top: 6px; color: var(--muted); font-size: .82rem; }
.public-results-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(5,33,58,.72); box-shadow: var(--shadow); }
.public-results-card .table-wrap { margin-top: 0; }
.results-table td strong, .results-table td span { display: block; }
.results-table td span { margin-top: 3px; color: var(--muted); font-size: .78rem; }
.round-results-grid { display: grid; gap: 22px; }
.round-result-card { scroll-margin-top: 110px; overflow: hidden; padding: clamp(24px,4vw,38px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(5,33,58,.68); }
.round-result-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 28px; margin-bottom: 20px; }
.round-result-heading h3 { margin-bottom: 0; font-size: clamp(1.65rem,3vw,2.3rem); }
.round-result-meta { text-align: right; }
.round-result-meta strong, .round-result-meta span { display: block; }
.round-result-meta strong { color: var(--cyan-400); }
.round-result-meta span { margin-top: 4px; color: var(--muted); }
.protocol-public-notes { margin: 0 0 20px; padding: 15px 17px; border-left: 3px solid var(--yellow-500); border-radius: 0 10px 10px 0; background: rgba(255,197,46,.06); }
.round-table { min-width: 690px; }
.round-table th:nth-child(1), .round-table td:nth-child(1), .round-table th:nth-child(3), .round-table td:nth-child(3) { text-align: center; }
.round-table td:nth-child(3) { color: var(--yellow-400); font-weight: 900; }
.final-results-table { min-width: 720px; }
.final-results-table th:not(:nth-child(2)), .final-results-table td:not(:nth-child(2)) { text-align: center; }
.final-results-table td:last-child, .final-results-table th:last-child { color: var(--yellow-400); font-weight: 900; }
.final-task-grid { margin-top: 28px; }

@media (max-width: 620px) {
    .public-result-counts { grid-template-columns: 1fr; }
    .round-result-heading { flex-direction: column; }
    .round-result-meta { text-align: left; }
}


/* FAQ i bezpośredni odnośnik do klasyfikacji — v13 */
.anchor-alias { position: absolute; transform: translateY(-120px); }
.results-awaiting-card { display: flex; align-items: center; gap: 22px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(5, 33, 58, .68); }
.results-awaiting-card .results-icon { margin: 0; flex: 0 0 auto; }
.results-awaiting-card strong, .results-awaiting-card span { display: block; }
.results-awaiting-card strong { margin-bottom: 5px; font-size: 1.15rem; }
.results-awaiting-card span { color: var(--muted); }

.faq-index-section { padding-bottom: 58px; }
.faq-audience-nav { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.faq-audience-nav a { min-height: 112px; display: flex; flex-direction: column; justify-content: space-between; gap: 12px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); text-decoration: none; background: linear-gradient(145deg, rgba(7, 50, 82, .84), rgba(3, 24, 43, .82)); transition: transform .2s, border-color .2s, background .2s; }
.faq-audience-nav a:hover { transform: translateY(-3px); border-color: rgba(91, 222, 242, .48); background: linear-gradient(145deg, rgba(9, 63, 99, .92), rgba(3, 28, 48, .9)); }
.faq-audience-nav strong { line-height: 1.25; }
.faq-audience-nav span { color: var(--cyan-400); font-size: .82rem; font-weight: 800; }
.faq-audience-section { scroll-margin-top: 100px; }
.faq-layout { display: grid; grid-template-columns: minmax(230px, .34fr) minmax(0, .66fr); gap: clamp(32px, 6vw, 76px); align-items: start; }
.faq-audience-heading { position: sticky; top: 116px; }
.faq-audience-heading h2 { margin-bottom: 15px; }
.faq-audience-heading .text-link { margin-top: 16px; }
.faq-list { display: grid; gap: 13px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(5, 33, 58, .68); transition: border-color .2s, background .2s; }
.faq-item[open] { border-color: rgba(91, 222, 242, .34); background: rgba(7, 43, 72, .8); }
.faq-item summary { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 24px; cursor: pointer; list-style: none; color: var(--white); font-weight: 800; line-height: 1.35; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 3px solid rgba(35, 199, 230, .45); outline-offset: -3px; }
.faq-toggle { position: relative; width: 22px; height: 22px; flex: 0 0 auto; }
.faq-toggle::before, .faq-toggle::after { content: ""; position: absolute; left: 3px; right: 3px; top: 10px; height: 2px; border-radius: 99px; background: var(--yellow-500); transition: transform .2s; }
.faq-toggle::after { transform: rotate(90deg); }
.faq-item[open] .faq-toggle::after { transform: rotate(0); }
.faq-answer { padding: 0 24px 23px; }
.faq-answer p { margin: 0; color: #c5d7e4; }

@media (max-width: 1180px) {
    .header-cta { display: none; }
    .main-nav a { font-size: .82rem; }
}

@media (max-width: 1040px) {
    .faq-audience-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
    .main-nav a { font-size: .91rem; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-audience-heading { position: static; }
}

@media (max-width: 620px) {
    .faq-audience-nav { grid-template-columns: 1fr; }
    .faq-audience-nav a { min-height: auto; }
    .faq-item summary { padding: 19px 18px; }
    .faq-answer { padding: 0 18px 20px; }
    .results-awaiting-card { align-items: flex-start; }
}

/* v14.3 — uproszczona stopka: organizator i partner bez znaku patronatu */
.site-footer .footer-organizations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(34px, 7vw, 92px);
    padding: 24px 0 32px;
    border-top: 1px solid rgba(123, 203, 236, .12);
}
.site-footer .footer-org-logo {
    width: auto;
    min-height: 72px;
    display: grid;
    place-items: center;
    padding: 10px 16px;
    border: 0;
    border-radius: 14px;
    background: rgba(5, 33, 58, .28);
    box-shadow: none;
    transition: transform .2s, background .2s;
}
.site-footer .footer-org-logo:hover {
    transform: translateY(-2px);
    background: rgba(7, 50, 82, .52);
    box-shadow: none;
}
.site-footer .footer-org-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 54px;
    object-fit: contain;
}
.site-footer .footer-org-logo:first-child img { width: auto; max-width: 310px; max-height: 54px; }
.site-footer .footer-org-logo:nth-child(2) img { width: auto; max-width: 270px; max-height: 54px; }

@media (max-width: 620px) {
    .site-footer .footer-organizations { flex-direction: column; gap: 12px; }
    .site-footer .footer-org-logo { width: min(100%, 360px); }
}
