:root {
    --blue: #7ba9c2;
    --blue-strong: #4f92ba;
    --blue-soft: #acc9d9;
    --blue-pale: #f5f9fb;
    --navy: #192059;
    --ink: #293042;
    --muted: #5c6472;
    --line: #d7e5ed;
    --paper: #ffffff;
    --mist: #f8fdff;
    --green: #7bbc93;
    --shadow: 0 22px 60px rgba(25, 32, 89, .12);
    --radius: 8px;
    --max: 1180px;
    --header-height: 82px;
    color-scheme: light;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

body > * {
    overflow-wrap: break-word;
}

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

button,
input,
select {
    font: inherit;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

:target {
    scroll-margin-top: calc(var(--header-height) + 24px);
}

.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;
}

.icon {
    width: 1.35rem;
    height: 1.35rem;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.section-pad {
    padding: 78px max(28px, calc((100vw - var(--max)) / 2));
}

.section-soft {
    background: var(--mist);
    border-top: 1px solid rgba(123, 169, 194, .16);
    border-bottom: 1px solid rgba(123, 169, 194, .16);
}

.eyebrow {
    color: var(--blue-strong);
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: 0;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 12px 20px;
    color: var(--paper);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 750;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.button-primary {
    background: var(--blue-strong);
    box-shadow: 0 12px 30px rgba(79, 146, 186, .25);
}

.button-primary:hover {
    background: #4386ad;
}

.button-secondary {
    color: var(--navy);
    background: var(--paper);
    border-color: var(--line);
}

.button-small {
    min-height: 38px;
    padding: 9px 16px;
    font-size: .82rem;
}

.site-header {
    position: sticky;
    z-index: 40;
    top: 0;
    display: grid;
    grid-template-columns: minmax(155px, 220px) 1fr auto;
    min-height: var(--header-height);
    align-items: center;
    gap: 28px;
    padding: 16px max(28px, calc((100vw - var(--max)) / 2));
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(215, 229, 237, .78);
    backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
    box-shadow: 0 12px 34px rgba(25, 32, 89, .08);
}

.brand {
    width: 212px;
}

.brand img {
    width: 100%;
    height: auto;
}

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

.site-nav a {
    color: var(--navy);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 650;
    white-space: nowrap;
}

.site-nav a:hover {
    color: var(--blue-strong);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--navy);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr);
    min-height: 660px;
    align-items: center;
    gap: 50px;
    padding-top: 64px;
    padding-bottom: 54px;
    background:
        linear-gradient(90deg, #ffffff 0%, #ffffff 55%, #f8fdff 100%);
}

.hero-copy > * + *,
.section-lead > * + *,
.registration-copy > * + * {
    margin-top: 18px;
}

.hero h1 {
    color: var(--blue-strong);
    font-size: 5.9rem;
    font-weight: 600;
    line-height: .88;
    text-transform: uppercase;
}

.date-line {
    color: var(--blue-strong);
    font-size: 1.45rem;
    font-weight: 760;
}

.hero-intro {
    max-width: 600px;
    color: var(--ink);
}

.event-facts {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.event-facts > div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    align-items: start;
}

.event-facts .icon {
    width: 32px;
    height: 32px;
    color: var(--blue-strong);
}

.event-facts strong {
    display: block;
    color: var(--navy);
    font-size: .85rem;
    text-transform: uppercase;
}

.event-facts span {
    color: var(--muted);
    font-size: .9rem;
}

.hero-visual {
    position: relative;
    min-height: 585px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
}

.speaker-stage {
    position: absolute;
    z-index: 1;
    left: 8px;
    bottom: 0;
    display: flex;
    width: min(390px, 62%);
    height: 520px;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    border: 0;
    background: transparent;
}

.speaker-image {
    width: 116%;
    max-width: none;
    height: 104%;
    object-fit: contain;
    object-position: center bottom;
}

.speaker-panel {
    position: absolute;
    z-index: 2;
    top: 32px;
    right: 0;
    width: min(330px, 50%);
    padding-left: 28px;
    border-left: 3px solid var(--blue);
}

.speaker-panel h2 {
    margin-top: 14px;
    color: var(--navy);
    font-size: 3.15rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.speaker-role {
    margin-top: 22px;
    color: var(--blue-strong);
    font-weight: 750;
}

.speaker-panel p:last-child {
    margin-top: 16px;
    max-width: 260px;
    color: var(--muted);
    font-size: .92rem;
}

.video-card {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    width: min(345px, 58%);
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--navy);
    box-shadow: var(--shadow);
}

.video-card iframe {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    border: 0;
}

.why {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 36px;
}

.section-lead h2,
.programme h2,
.tickets h2,
.speaker h2,
.registration h2,
.legal-hero h1 {
    color: var(--navy);
    font-size: 2.65rem;
    font-weight: 600;
    line-height: 1.03;
    text-transform: uppercase;
}

.section-lead.compact {
    max-width: 620px;
}

.why > .section-lead,
.audience > .section-lead {
    max-width: 760px;
}

.pattern-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    list-style: none;
}

.pattern-list li {
    position: relative;
    padding-left: 20px;
    color: var(--muted);
    font-size: .92rem;
}

.pattern-list li::before {
    position: absolute;
    left: 0;
    top: .55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    content: "";
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-self: center;
    align-items: stretch;
    border: 1px solid rgba(215, 229, 237, .85);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .72);
}

.benefit {
    display: grid;
    min-height: 150px;
    grid-template-rows: 40px auto auto;
    align-content: center;
    align-items: center;
    justify-items: center;
    gap: 7px;
    padding: 18px 16px;
    text-align: center;
}

.benefit + .benefit {
    border-left: 1px solid var(--line);
}

.benefit .icon {
    width: 36px;
    height: 36px;
    align-self: end;
    color: var(--navy);
}

.audience-grid .icon {
    width: 42px;
    height: 42px;
    align-self: end;
    color: var(--navy);
}

.benefit h3,
.audience-grid h3 {
    color: var(--navy);
    line-height: 1.2;
    text-wrap: balance;
    hyphens: auto;
}

.benefit h3 {
    font-size: .88rem;
}

.audience-grid h3 {
    font-size: .92rem;
}

.benefit p {
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.25;
    text-wrap: balance;
    hyphens: auto;
}

.audience {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 18px 50px rgba(25, 32, 89, .07);
}

.audience-grid article {
    display: grid;
    min-height: 150px;
    grid-template-rows: 48px auto;
    align-content: center;
    align-items: center;
    justify-items: center;
    gap: 14px;
    padding: 20px 18px;
    text-align: center;
}

.audience-grid article + article {
    border-left: 1px solid var(--line);
}

.programme-tickets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

.programme > * + *,
.tickets > * + * {
    margin-top: 20px;
}

.programme,
.tickets {
    min-width: 0;
}

.timeline {
    list-style: none;
}

.timeline > li {
    position: relative;
    display: grid;
    grid-template-columns: minmax(120px, 150px) minmax(0, 1fr);
    gap: 26px;
    padding: 0 0 24px 30px;
}

.timeline > li::before {
    position: absolute;
    left: 6px;
    top: .52rem;
    width: 11px;
    height: 11px;
    border: 2px solid var(--blue);
    border-radius: 50%;
    background: var(--paper);
    content: "";
}

.timeline > li::after {
    position: absolute;
    left: 11px;
    top: 1.35rem;
    bottom: 0;
    width: 1px;
    background: var(--line);
    content: "";
}

.timeline > li:last-child::after {
    display: none;
}

.timeline time {
    color: var(--blue-strong);
    font-size: .88rem;
    font-weight: 760;
}

.timeline h3 {
    color: var(--navy);
    font-size: .96rem;
}

.timeline ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 8px;
    padding-left: 18px;
    color: var(--muted);
    font-size: .9rem;
    list-style-position: outside;
}

.ticket-table {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.ticket-row {
    display: grid;
    grid-template-columns: minmax(230px, 1.15fr) repeat(2, minmax(160px, .72fr));
}

.ticket-row > div {
    min-width: 0;
    padding: 13px 18px;
    border-bottom: 1px solid var(--line);
    font-size: .9rem;
}

.ticket-row > div + div {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-left: 1px solid var(--line);
}

.ticket-head > div {
    min-height: 96px;
    align-content: center;
    background: var(--blue);
    color: var(--paper);
}

.ticket-head > div:first-child {
    background: var(--paper);
}

.ticket-head > div + div {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 6px;
}

.ticket-head strong,
.ticket-head span,
.ticket-head small {
    display: block;
    line-height: 1.2;
}

.ticket-head span {
    font-size: .74rem;
    text-transform: uppercase;
}

.ticket-head small {
    font-weight: 650;
}

.ticket-sold-out-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 6px;
    padding: 3px 9px;
    border-radius: 999px;
    color: var(--navy);
    background: rgba(255, 255, 255, .82);
    font-size: .72rem;
    font-weight: 820;
    text-transform: uppercase;
}

.ticket-sold-out-label[hidden] {
    display: none;
}

.ticket-row .icon {
    width: 20px;
    height: 20px;
    color: var(--blue-strong);
}

.ticket-row .muted {
    color: #8b96a3;
}

.ticket-row-label {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ticket-row-label .icon {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
}

.ticket-label-copy {
    display: inline-flex;
    min-width: 0;
    flex-wrap: wrap;
    gap: 0 6px;
    align-items: baseline;
}

.ticket-label-copy strong {
    color: var(--navy);
    font-weight: 820;
}

.ticket-label-copy > span {
    color: var(--ink);
    font-weight: 520;
}

.ticket-row-emphasis > div {
    font-weight: 760;
}

.ticket-row-benefits > div {
    background: #eef7fb;
}

.ticket-row-price > div {
    background: #fff8e8;
}

.ticket-row-benefits .icon {
    color: var(--blue-strong);
}

.ticket-row-price .icon {
    color: #b28a3b;
}

.ticket-row-benefits > div + div {
    color: var(--navy);
    font-size: 1.18rem;
    font-weight: 850;
}

.ticket-row-price > div + div {
    color: var(--navy);
}

.ticket-value-stack {
    display: grid;
    gap: 2px;
    justify-items: center;
    line-height: 1.12;
}

.ticket-value-stack strong {
    color: var(--navy);
    font-size: 1.22rem;
    font-weight: 850;
}

.ticket-value-stack span {
    color: var(--ink);
    font-size: .8rem;
    font-weight: 560;
}

.ticket-actions > div {
    border-bottom: 0;
}

.ticket-actions .button {
    width: 100%;
}

.vor-ort-sold-out [data-ticket-column="in-person"] {
    color: #7f8a95;
    background: #f2f6f8;
}

.vor-ort-sold-out .ticket-head [data-ticket-column="in-person"] {
    color: var(--paper);
    background: #9eacb5;
}

.vor-ort-sold-out [data-ticket-column="in-person"] .icon {
    color: #8c9aa5;
}

.vor-ort-sold-out .ticket-actions [data-ticket-column="in-person"] .button {
    color: var(--paper);
    background: #9eacb5;
    box-shadow: none;
}

.vor-ort-sold-out .ticket-actions [data-ticket-column="in-person"] .button:hover {
    background: #8f9da7;
}

.ticket-mobile-cards {
    display: none;
}

.speaker {
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr) 260px;
    gap: 36px;
    align-items: center;
    background: var(--mist);
}

.speaker > img {
    width: 245px;
    aspect-ratio: 1 / 1.16;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.speaker > div > * + * {
    margin-top: 14px;
}

.speaker p {
    color: var(--muted);
}

.speaker-facts {
    display: grid;
    gap: 18px;
    padding-left: 28px;
    border-left: 1px solid var(--line);
}

.speaker-facts p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-weight: 720;
}

.speaker-facts .icon {
    color: var(--blue-strong);
}

.registration {
    display: grid;
    grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
    gap: 50px;
    align-items: start;
    background: var(--blue-pale);
}

.registration-form {
    display: grid;
    gap: 20px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.registration-form-wrap .row-form[hidden] {
    display: none;
}

.registration-success {
    display: grid;
    min-height: 420px;
    place-items: center;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    text-align: center;
}

.registration-success[hidden] {
    display: none;
}

.registration-success p {
    max-width: 560px;
    color: var(--navy);
    font-size: 1.08rem;
    font-weight: 720;
}

.registration-stack {
    display: grid;
    gap: 22px;
}

.organizer-panel {
    display: grid;
    gap: 18px;
    padding: 28px;
    border: 1px solid var(--line);
    border-left: 3px solid var(--blue-strong);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 16px 42px rgba(25, 32, 89, .08);
}

.organizer-panel p:not(.eyebrow) {
    color: var(--muted);
}

.organizer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: var(--blue-strong);
    font-weight: 760;
    text-decoration: none;
}

.organizer-link:hover {
    color: var(--navy);
}

.organizer-link .icon {
    width: 18px;
    height: 18px;
}

@media (min-width: 1081px) {
    .registration {
        row-gap: 28px;
    }

    .registration-stack {
        display: contents;
    }

    .organizer-panel {
        grid-column: 1 / -1;
    }
}

fieldset {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    border: 0;
}

legend {
    grid-column: 1 / -1;
    color: var(--navy);
    font-weight: 780;
}

.radio-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    min-height: 76px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
}

.radio-card:has(input:checked) {
    border-color: var(--blue-strong);
    background: var(--blue-pale);
}

.vor-ort-sold-out [data-ticket-fieldset] {
    grid-template-columns: 1fr;
}

.vor-ort-sold-out [data-ticket-option-card="in-person"] {
    display: none;
}

.radio-card small {
    display: block;
    color: var(--muted);
}

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

label {
    color: var(--navy);
    font-size: .9rem;
    font-weight: 720;
}

input,
select {
    width: 100%;
    min-height: 44px;
    margin-top: 7px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px 12px;
    color: var(--ink);
    background: var(--paper);
}

input:focus,
select:focus,
button:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(123, 169, 194, .45);
    outline-offset: 2px;
}

.full-width,
.checkbox-row,
.form-placeholder,
.form-message {
    grid-column: 1 / -1;
}

.checkbox-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    color: var(--ink);
    font-weight: 500;
}

.checkbox-row input {
    width: 20px;
    height: 20px;
    min-height: 20px;
    margin-top: 2px;
}

.checkbox-row a {
    color: var(--blue-strong);
    font-weight: 760;
}

.form-submit {
    grid-column: 1 / -1;
}

.form-submit .button {
    width: 100%;
}

.form-submit .button[hidden] {
    display: none;
}

.ml-form-embedSubmitLoad {
    display: inline-block;
    width: 20px;
    height: 20px;
}

.ml-form-embedSubmitLoad::after {
    display: block;
    width: 11px;
    height: 11px;
    margin: 1px;
    border: 4px solid rgba(255, 255, 255, .55);
    border-left-color: transparent;
    border-radius: 50%;
    content: "";
    animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}

@keyframes ml-form-embedSubmitLoad {
    to {
        transform: rotate(360deg);
    }
}

.form-placeholder {
    padding: 12px;
    border: 1px dashed var(--blue);
    border-radius: var(--radius);
    color: var(--blue-strong);
    background: var(--mist);
    font-size: .88rem;
    font-weight: 720;
    text-align: center;
}

.form-message {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--navy);
    background: var(--blue-pale);
    font-weight: 650;
    text-align: center;
}

.form-message.is-error {
    color: #8f2f2f;
    background: #fff6f6;
    border-color: #f0c8c8;
}

.site-footer {
    padding: 48px max(28px, calc((100vw - var(--max)) / 2)) 24px;
    color: rgba(255, 255, 255, .78);
    background: #10223a;
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 35;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    color: var(--paper);
    background: var(--blue-strong);
    box-shadow: 0 16px 34px rgba(25, 32, 89, .24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) rotate(-90deg);
    transition: opacity .18s ease, transform .18s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) rotate(-90deg);
}

.has-cookie-panel .back-to-top {
    opacity: 0;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(180px, .85fr) minmax(260px, 1.15fr);
    gap: 42px;
}

.site-footer h2 {
    margin-bottom: 14px;
    color: var(--paper);
    font-size: .95rem;
}

.site-footer ul {
    display: grid;
    gap: 9px;
    list-style: none;
}

.site-footer a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--paper);
}

.footer-company img {
    width: 190px;
    margin-bottom: 18px;
}

.footer-company p + p {
    margin-top: 12px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    align-items: center;
    justify-content: space-between;
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: .82rem;
}

.footer-bottom nav,
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.social-links a {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    font-size: .72rem;
    font-weight: 780;
}

.cookie-panel {
    position: fixed;
    z-index: 60;
    inset: 0;
    display: grid;
    align-items: end;
    padding: 20px;
    background: rgba(16, 34, 58, .32);
}

.cookie-panel[hidden] {
    display: none;
}

.cookie-card {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(300px, 420px);
    gap: 24px;
    width: min(960px, 100%);
    margin: 0 auto;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 18px 70px rgba(0, 0, 0, .25);
}

.cookie-card h2 {
    color: var(--navy);
}

.cookie-card p {
    margin-top: 10px;
    color: var(--muted);
}

.cookie-options {
    display: grid;
    gap: 12px;
}

.switch-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.switch-row small {
    display: block;
    color: var(--muted);
    font-weight: 500;
}

.switch-row input {
    width: 42px;
    height: 24px;
    min-height: 24px;
    margin: 0;
    accent-color: var(--blue-strong);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.legal-main {
    background: var(--mist);
}

.legal-hero {
    padding-bottom: 40px;
}

.legal-hero > * + * {
    margin-top: 18px;
}

.legal-hero p:not(.eyebrow) {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.08rem;
}

.legal-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding-top: 30px;
}

.legal-content article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.legal-content h2 {
    color: var(--navy);
    font-size: 1.15rem;
}

.legal-content p {
    margin-top: 12px;
    color: var(--muted);
}

@media (max-width: 1080px) {
    .site-header {
        grid-template-columns: 190px auto auto;
    }

    .site-nav {
        gap: 18px;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .hero-visual {
        min-height: 520px;
    }

    .why,
    .audience,
    .programme-tickets,
    .registration,
    .speaker {
        grid-template-columns: 1fr;
    }

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

    .benefit + .benefit,
    .audience-grid article + article {
        border-left: 0;
    }

    .benefit,
    .audience-grid article {
        border-left: 1px solid var(--line);
        border-top: 1px solid var(--line);
    }

    .speaker {
        align-items: start;
    }

    .speaker > img {
        width: min(360px, 100%);
    }

    .speaker-facts {
        padding-left: 0;
        border-left: 0;
    }
}

@media (min-width: 861px) and (max-width: 1080px) {
    .hero-visual {
        min-height: 620px;
    }
}

@media (min-width: 861px) and (max-width: 1039px) {
    :root {
        --header-height: 126px;
    }

    .site-header {
        grid-template-columns: minmax(170px, 210px) auto;
        grid-template-areas:
            "brand cta"
            "nav nav";
        gap: 10px 22px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .brand {
        grid-area: brand;
        width: 210px;
    }

    .site-nav {
        grid-area: nav;
        justify-content: center;
        gap: 26px;
        padding-top: 10px;
        border-top: 1px solid rgba(215, 229, 237, .72);
    }

    .site-nav a {
        font-size: .84rem;
    }

    .header-cta {
        grid-area: cta;
        justify-self: end;
    }
}

@media (max-width: 700px) {
    .timeline > li {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 74px;
    }

    .section-pad {
        padding: 56px 20px;
    }

    .site-header {
        grid-template-columns: 1fr auto;
        gap: 16px;
        padding: 14px 20px;
    }

    .brand {
        width: 180px;
    }

    .nav-toggle {
        display: grid;
    }

    .header-cta {
        display: none;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--paper);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 12px;
    }

    .hero {
        padding-top: 42px;
        background: var(--paper);
    }

    .hero h1 {
        font-size: 4.15rem;
    }

    .date-line {
        font-size: 1.15rem;
    }

    .hero-visual {
        display: grid;
        min-height: auto;
        gap: 22px;
        align-items: start;
    }

    .speaker-stage {
        position: relative;
        left: auto;
        bottom: auto;
        grid-column: 1 / -1;
        width: min(420px, 100%);
        height: 430px;
        justify-self: start;
    }

    .speaker-image {
        width: 112%;
        height: 104%;
    }

    .speaker-panel {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        grid-column: 1 / -1;
        order: -1;
        margin-bottom: 22px;
    }

    .speaker-panel h2 {
        font-size: 2.45rem;
    }

    .video-card {
        position: relative;
        right: auto;
        bottom: auto;
        grid-column: 1 / -1;
        width: min(420px, 100%);
        margin-top: 0;
    }

    .section-lead h2,
    .programme h2,
    .tickets h2,
    .speaker h2,
    .registration h2,
    .legal-hero h1 {
        font-size: 2.15rem;
    }

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

    .programme-tickets,
    .programme,
    .tickets {
        min-width: 0;
    }

    .ticket-table {
        display: none;
    }

    .ticket-mobile-cards {
        display: grid;
        gap: 18px;
    }

    .ticket-card {
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--paper);
        box-shadow: 0 16px 40px rgba(25, 32, 89, .08);
    }

    .ticket-card header {
        display: grid;
        gap: 4px;
        padding: 18px;
        color: var(--paper);
        background: var(--blue);
    }

    .ticket-card header p {
        font-size: .76rem;
        font-weight: 750;
        text-transform: uppercase;
    }

    .ticket-card h3 {
        font-size: 1.08rem;
    }

    .ticket-card header strong {
        font-size: .9rem;
    }

    .ticket-card ul {
        display: grid;
        list-style: none;
    }

    .ticket-card li {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 14px;
        align-items: center;
        padding: 13px 16px;
        border-bottom: 1px solid var(--line);
    }

    .ticket-card li.is-muted {
        color: #8b96a3;
        background: #f9fbfc;
    }

    .vor-ort-sold-out .ticket-card[data-ticket-card="in-person"] {
        color: #7f8a95;
        background: #f2f6f8;
    }

    .vor-ort-sold-out .ticket-card[data-ticket-card="in-person"] header {
        color: var(--paper);
        background: #9eacb5;
    }

    .vor-ort-sold-out .ticket-card[data-ticket-card="in-person"] li {
        background: #f2f6f8;
    }

    .vor-ort-sold-out .ticket-card[data-ticket-card="in-person"] .ticket-feature,
    .vor-ort-sold-out .ticket-card[data-ticket-card="in-person"] .ticket-value {
        color: #7f8a95;
    }

    .vor-ort-sold-out .ticket-card[data-ticket-card="in-person"] .button {
        color: var(--paper);
        background: #9eacb5;
        box-shadow: none;
    }

    .ticket-card li.is-benefits {
        background: #eef7fb;
    }

    .ticket-card li.is-price {
        background: #fff8e8;
    }

    .ticket-feature {
        color: var(--ink);
        font-size: .88rem;
        font-weight: 600;
    }

    .ticket-feature-rich {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .ticket-feature-rich .icon {
        width: 28px;
        height: 28px;
        flex: 0 0 auto;
        color: var(--blue-strong);
    }

    .ticket-card li.is-price .ticket-feature-rich .icon {
        color: #b28a3b;
    }

    .ticket-card li.is-muted .ticket-feature {
        color: #8b96a3;
    }

    .ticket-card li.is-emphasized .ticket-feature,
    .ticket-card li.is-emphasized .ticket-value {
        font-weight: 800;
    }

    .ticket-value {
        display: inline-flex;
        min-width: 74px;
        align-items: center;
        justify-content: flex-end;
        gap: 7px;
        color: var(--blue-strong);
        font-size: .78rem;
        font-weight: 760;
        text-align: right;
    }

    .ticket-card li.is-benefits .ticket-value {
        font-size: 1rem;
        font-weight: 850;
    }

    .ticket-card li.is-price .ticket-value {
        min-width: 96px;
    }

    .ticket-value .ticket-value-stack {
        justify-items: end;
    }

    .ticket-value .ticket-value-stack strong {
        font-size: 1.02rem;
    }

    .ticket-value .ticket-value-stack span {
        font-size: .74rem;
    }

    .ticket-value .icon {
        width: 18px;
        height: 18px;
    }

    .ticket-card > .button {
        width: calc(100% - 32px);
        margin: 16px;
    }

    .form-grid,
    fieldset,
    .cookie-card,
    .legal-content,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 560px) {
    body {
        font-size: 15px;
    }

    .hero h1 {
        font-size: 3.35rem;
    }

    .hero-visual {
        min-height: auto;
    }

    .speaker-stage {
        height: 390px;
    }

    .video-card {
        width: 100%;
    }

    .benefit-grid,
    .audience-grid,
    .pattern-list {
        grid-template-columns: 1fr;
    }

    .timeline > li {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .registration-form {
        padding: 20px;
    }

    .cookie-panel {
        padding: 10px;
    }

    .cookie-card {
        padding: 18px;
    }

    .cookie-actions {
        justify-content: stretch;
    }

    .cookie-actions .button {
        width: 100%;
    }
}

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