﻿/* =====================================================
   BASIS
===================================================== */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #0d3858;
    background: #ffffff;
}

/* =====================================================
   HEADER (FIXED – STABIEL OP MOBIEL)
===================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: rgba(255,255,255,1);
    transition: background 0.25s ease, backdrop-filter 0.25s ease;
}

    header.is-sticky {
        background: rgba(255,255,255,0.5);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* logo */
.header-logo svg {
    display: block;
    width: 170px !important;
    max-height: 112px;
    height: auto;
}

/* =====================================================
   HEADER MENU'S (DESKTOP)
===================================================== */

.header-right {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 22px;
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 22px;
}

    .main-menu a {
        font-size: 15px;
        font-weight: 700;
        color: #0d3858;
        text-decoration: none;
    }

        .main-menu a:hover,
        .main-menu a.active {
            text-decoration: underline;
        }

/* =====================================================
   HAMBURGER
===================================================== */

.hamburger {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    color: #0d3858;
}

/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(6px);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1500;
    overflow-y: auto;
}

    .mobile-menu.open {
        transform: translateX(0);
    }

    .mobile-menu ul {
        list-style: none;
        margin: 0;
        padding: 20px;
    }

    .mobile-menu li {
        margin-bottom: 14px;
    }

    .mobile-menu a {
        font-size: 16px;
        font-weight: 700;
        color: #0d3858;
        text-decoration: none;
    }

/* =====================================================
   CONTENT
===================================================== */

.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 125px 20px 60px; /* header compensatie */
}

/* =====================================================
   CONTACT
===================================================== */

.contact-wrapper {
    color: #0d3858;
}

.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
    gap: 42px;
    align-items: center;
    margin-bottom: 44px;
}

.contact-kicker {
    margin: 0 0 10px;
    color: #b86012;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 7vw, 82px);
    line-height: 0.95;
}

.contact-intro {
    max-width: 620px;
    margin: 0;
    color: #335a72;
    font-size: 20px;
    line-height: 1.6;
}

.contact-building {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 8px;
    background: #eaf1f5;
}

.contact-building img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    object-position: center;
}

.contact-building-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: baseline;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(13,56,88,0.88);
}

.contact-building-caption span {
    font-weight: 800;
}

.contact-building-caption small {
    font-size: 12px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.85fr) minmax(320px, 1.15fr);
    gap: 28px;
    align-items: start;
}

.contact-details,
.contact-form {
    border: 1px solid rgba(13,56,88,0.14);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(13,56,88,0.09);
}

.contact-details {
    padding: 28px;
}

.contact-detail-block + .contact-detail-block {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(13,56,88,0.12);
}

.contact-detail-block h2 {
    margin: 0 0 8px;
    color: #b86012;
    font-size: 15px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-detail-block p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
}

.contact-detail-block a {
    color: #0d3858;
    font-weight: 800;
    text-decoration: none;
}

.contact-detail-block a:hover {
    text-decoration: underline;
}

.contact-form {
    padding: 30px;
}

.contact-field {
    margin-bottom: 18px;
}

.contact-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 800;
}

.form-input {
    box-sizing: border-box;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(13,56,88,0.28);
    border-radius: 8px;
    color: #0d3858;
    background: #f8fbfd;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-input:focus {
    border-color: #ffb75f;
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255,183,95,0.28);
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    background: #0d3858;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
    background: #092c44;
    transform: translateY(-1px);
}

.contact-submit {
    width: 100%;
}

.contact-success,
.contact-error {
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 8px;
    font-weight: 800;
}

.contact-success {
    color: #165b2f;
    background: #e9f8ee;
    border: 1px solid #a7dfb6;
}

.contact-error {
    color: #8a1f17;
    background: #fff0ee;
    border: 1px solid #efb7b1;
}

.contact-faq {
    margin-top: 42px;
}

.contact-faq-heading {
    max-width: 720px;
    margin-bottom: 18px;
}

.contact-faq-heading h2 {
    margin: 0;
    color: #0d3858;
    font-size: 34px;
    line-height: 1.15;
}

.contact-faq-list {
    display: grid;
    gap: 10px;
}

.contact-faq-item {
    overflow: hidden;
    border: 1px solid rgba(13,56,88,0.14);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(13,56,88,0.07);
}

.contact-faq-item summary {
    position: relative;
    display: block;
    padding: 18px 56px 18px 20px;
    color: #0d3858;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.contact-faq-item summary::-webkit-details-marker {
    display: none;
}

.contact-faq-item summary:after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 28px;
    height: 28px;
    transform: translateY(-50%);
    border-radius: 50%;
    color: #0d3858;
    background: #ffb75f;
    font-size: 22px;
    font-weight: 800;
    line-height: 28px;
    text-align: center;
}

.contact-faq-item[open] summary:after {
    content: "-";
}

.contact-faq-answer {
    padding: 0 20px 20px;
    color: #335a72;
    font-size: 16px;
    line-height: 1.65;
}

.contact-faq-answer p {
    margin: 0 0 12px;
}

.contact-faq-answer p:last-child {
    margin-bottom: 0;
}

.contact-faq-answer ul {
    margin: 8px 0 0;
    padding-left: 22px;
}

/* =====================================================
   ACCOUNT
===================================================== */

.account-page {
    color: #0d3858;
}

.account-hero {
    max-width: 840px;
    margin-bottom: 34px;
}

.account-kicker {
    margin: 0 0 10px;
    color: #b86012;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.account-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 0.98;
}

.account-hero p,
.account-panel p,
.account-note p {
    color: #335a72;
    font-size: 19px;
    line-height: 1.65;
}

.account-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 28px;
    align-items: stretch;
}

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

.account-stack > [id] {
    scroll-margin-top: 150px;
}

.account-jump-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -8px 0 24px;
}

.account-jump-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid rgba(13,56,88,0.2);
    border-radius: 8px;
    color: #0d3858;
    background: #ffffff;
    font-weight: 900;
    text-decoration: none;
}

.account-jump-nav a:hover {
    border-color: #ffb75f;
    background: #fff7ed;
}

.account-followup-grid {
    margin-top: 28px;
    align-items: start;
}

.account-panel,
.account-note {
    padding: 30px;
    border: 1px solid rgba(13,56,88,0.14);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(13,56,88,0.09);
}

.account-panel {
    display: flex;
    justify-content: space-between;
    gap: 26px;
    align-items: center;
}

.account-login-panel {
    display: block;
}

.account-panel-copy {
    max-width: 720px;
}

.account-panel h2,
.account-note h2 {
    margin: 0 0 12px;
    color: #0d3858;
    font-size: 30px;
    line-height: 1.15;
}

.account-lead strong {
    color: #0d3858;
    font-size: 22px;
}

.account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.account-panel-copy .account-actions {
    margin-top: 18px;
}

.account-login-form {
    margin-top: 20px;
}

.account-field {
    margin-bottom: 16px;
}

.account-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 800;
}

.account-field input,
.account-field textarea,
.account-field select,
.account-validation-form select {
    box-sizing: border-box;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(13,56,88,0.28);
    border-radius: 8px;
    color: #0d3858;
    background: #f8fbfd;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.account-field textarea {
    min-height: 110px;
    resize: vertical;
}

.account-company-textarea {
    min-height: 180px;
}

.account-field input:focus,
.account-field textarea:focus,
.account-field select:focus,
.account-validation-form select:focus {
    border-color: #ffb75f;
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255,183,95,0.28);
}

.account-field label span {
    color: #6f8798;
    font-weight: 700;
}

.account-check-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.account-language-list {
    gap: 10px;
}

.account-pill-check {
    position: relative;
    align-items: center;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(13,56,88,0.2);
    border-radius: 8px;
    background: #ffffff;
    color: #0d3858;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.account-pill-check:has(input:checked) {
    border-color: rgba(13,56,88,0.55);
    background: #eaf4f8;
    box-shadow: 0 0 0 3px rgba(13,56,88,0.08);
}

.account-pill-check input {
    margin-top: 0;
}

.account-readiness-panel {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.5fr);
    gap: 22px;
    align-items: center;
    margin-bottom: 28px;
}

.account-readiness-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.account-readiness-badge {
    position: relative;
}

.account-readiness-badge summary {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr);
    gap: 6px 9px;
    min-height: 62px;
    padding: 10px 12px;
    border: 1px solid rgba(13,56,88,0.16);
    border-radius: 8px;
    background: #ffffff;
    color: #0d3858;
    cursor: pointer;
    list-style: none;
    box-shadow: 0 10px 24px rgba(13,56,88,0.06);
}

.account-readiness-badge summary::-webkit-details-marker {
    display: none;
}

.account-readiness-dot {
    width: 10px;
    height: 10px;
    margin-top: 5px;
    border-radius: 999px;
    background: #b86012;
}

.account-readiness-badge.is-complete .account-readiness-dot {
    background: #187344;
}

.account-readiness-title {
    min-width: 0;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.account-readiness-badge summary strong {
    grid-column: 2;
    justify-self: start;
    padding: 3px 8px;
    border-radius: 999px;
    background: #fff1dd;
    color: #8a4b0f;
    font-size: 12px;
    font-weight: 950;
}

.account-readiness-badge.is-complete summary strong {
    background: #e5f7ec;
    color: #165b2f;
}

.account-readiness-popover {
    position: absolute;
    z-index: 8;
    top: calc(100% + 8px);
    left: 0;
    width: min(280px, 90vw);
    padding: 12px;
    border: 1px solid rgba(13,56,88,0.16);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(13,56,88,0.16);
}

.account-readiness-popover p {
    margin: 0;
    color: #335a72;
    font-size: 14px;
    line-height: 1.35;
}

.account-readiness-popover a {
    display: inline-flex;
    margin-top: 8px;
    color: #b86012;
    font-weight: 900;
    text-decoration: none;
}

.account-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.account-btn-google {
    border: 1px solid rgba(13,56,88,0.18);
    color: #0d3858;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(13,56,88,0.08);
}

.account-btn-google:hover {
    border-color: #ffb75f;
}

.account-btn-secondary {
    color: #ffffff;
    background: #0d3858;
}

.account-btn-secondary:hover {
    background: #092c44;
}

.account-alert {
    margin-bottom: 22px;
    padding: 13px 15px;
    border-radius: 8px;
    font-weight: 800;
}

.account-alert-error {
    color: #8a1f17;
    background: #fff0ee;
    border: 1px solid #efb7b1;
}

.account-alert-success {
    color: #165b2f;
    background: #e9f8ee;
    border: 1px solid #a7dfb6;
}

.account-programme-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.account-programme-item {
    display: grid;
    gap: 5px;
    padding: 14px 16px;
    border: 1px solid rgba(13,56,88,0.14);
    border-radius: 8px;
    color: #0d3858;
    background: #f8fbfd;
    text-decoration: none;
}

.account-programme-item:hover {
    border-color: #ffb75f;
}

.account-programme-item span {
    color: #335a72;
    font-weight: 800;
}

.account-programme-item small {
    color: #6a8798;
    font-size: 13px;
    font-weight: 800;
}

.account-programme-warning {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-top: 4px;
    padding: 6px 9px;
    border-radius: 8px;
    color: #8a4a0c;
    background: #fff4e7;
    font-size: 13px;
    font-style: normal;
    font-weight: 900;
}

.account-company-section {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.account-company-heading {
    max-width: 760px;
}

.account-company-heading h2 {
    margin: 0 0 8px;
    color: #0d3858;
    font-size: 34px;
    line-height: 1.1;
}

.account-company-heading p,
.account-company-muted {
    margin: 0;
    color: #335a72;
    font-size: 17px;
    line-height: 1.55;
}

.account-company-card {
    align-items: flex-start;
}

.account-company-logo-preview {
    display: block;
    max-width: 190px;
    max-height: 90px;
    margin: 14px 0;
    object-fit: contain;
}

.account-company-form {
    display: grid;
    width: min(560px, 100%);
    gap: 14px;
}

.account-company-vacancies {
    display: grid;
    gap: 18px;
}

.account-company-subheading {
    max-width: 760px;
}

.account-company-subheading h3 {
    margin: 0 0 6px;
    color: #0d3858;
    font-size: 24px;
    line-height: 1.2;
}

.account-company-subheading p {
    margin: 0;
    color: #335a72;
    font-size: 16px;
    line-height: 1.5;
}

.account-company-vacancy {
    align-items: flex-start;
}

.account-company-events {
    display: grid;
    gap: 18px;
}

.account-company-event {
    display: grid;
    gap: 18px;
}

.account-company-event-head {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
}

.account-company-event-head h3,
.account-company-card h3,
.account-company-empty h3 {
    margin: 0 0 6px;
    color: #0d3858;
    font-size: 24px;
    line-height: 1.2;
}

.account-company-event-head p,
.account-company-card p {
    margin: 0;
    color: #335a72;
    font-size: 16px;
    line-height: 1.5;
}

.account-registration-list {
    display: grid;
    gap: 12px;
}

.account-registration-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 16px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(13,56,88,0.12);
    border-radius: 8px;
    background: #f8fbfd;
}

.account-registration-person,
.account-registration-actions {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.account-registration-person strong {
    color: #0d3858;
    font-size: 17px;
}

.account-registration-person span,
.account-registration-person small,
.account-registration-actions span {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #6a8798;
    font-size: 13px;
    font-weight: 800;
}

.account-validation-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.account-validation-form select {
    min-width: 130px;
}

.account-qr-panel {
    align-items: center;
}

.account-qr-code {
    display: block;
    margin-top: 12px;
    color: #335a72;
    font-size: 14px;
    overflow-wrap: anywhere;
}

.account-qr-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(190px, 100%);
    padding: 14px;
    border: 1px solid rgba(13,56,88,0.14);
    border-radius: 8px;
    background: #ffffff;
}

.account-qr-image img {
    display: block;
    width: 160px;
    height: 160px;
}

.participant-qr-page {
    color: #0d3858;
}

.participant-qr-card {
    display: grid;
    justify-items: center;
    gap: 18px;
    width: min(360px, 100%);
    box-sizing: border-box;
    padding: 24px;
    border: 1px solid rgba(13,56,88,0.14);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(13,56,88,0.09);
}

.participant-qr-card img {
    display: block;
    width: min(260px, calc(100vw - 96px));
    max-width: 100%;
    aspect-ratio: 1;
}

/* =====================================================
   SCANNER
===================================================== */

.scanner-page {
    color: #0d3858;
}

.scanner-event-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.scanner-event-card {
    display: grid;
    gap: 8px;
    padding: 22px;
    border: 1px solid rgba(13,56,88,0.15);
    border-radius: 8px;
    color: #0d3858;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(13,56,88,0.08);
}

.scanner-event-card strong {
    font-size: 22px;
}

.scanner-event-card span {
    color: #6a8798;
    font-weight: 800;
}

.scanner-shell {
    display: grid;
    gap: 18px;
    max-width: 620px;
}

.scanner-workspace {
    grid-template-columns: minmax(300px, 520px) minmax(320px, 1fr);
    align-items: start;
    max-width: 1180px;
}

.scanner-panel,
.scanner-participants-panel {
    min-width: 0;
}

.scanner-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.scanner-top h2 {
    margin: 0 0 5px;
    font-size: 30px;
}

.scanner-top a {
    color: #b86012;
    font-weight: 900;
}

.scanner-start-btn,
.scanner-manual-allow {
    border: 0;
    border-radius: 8px;
    padding: 14px 18px;
    color: #fff;
    background: #138a43;
    font-weight: 900;
    cursor: pointer;
}

.scanner-start-btn[hidden] {
    display: none;
}

.scanner-wrapper {
    position: relative;
    width: min(100%, 430px);
    margin: 0 auto;
}

.scanner-wrapper #qr-reader {
    width: 100%;
    min-height: 330px;
    background: #050505;
    border-radius: 8px;
    overflow: hidden;
}

.scanner-wrapper.is-paused #qr-reader {
    min-height: 260px;
    opacity: .55;
}

.scanner-wrapper .scan-line {
    position: absolute;
    left: 4%;
    width: 92%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(0,255,136,0.95), transparent);
    box-shadow: 0 0 12px rgba(0,255,136,0.9);
    z-index: 2;
}

.scanner-wrapper .scan-line.active {
    animation: scanUpDown 1.1s ease-in-out infinite alternate;
}

.scanner-wrapper .scan-line.idle {
    animation: none;
    top: 50%;
    opacity: .45;
}

@keyframes scanUpDown {
    from { top: 8%; }
    to { top: 88%; }
}

.scanner-status {
    padding: 12px 14px;
    border-radius: 8px;
    background: #eef6fb;
    color: #335a72;
    font-weight: 800;
}

.scanner-participants-panel {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(13,56,88,0.14);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(13,56,88,0.08);
}

.scanner-participants-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.scanner-participants-head h3 {
    margin: 0;
    font-size: 24px;
}

.scanner-participants-head p {
    margin: 4px 0 0;
    color: #6a8798;
    font-weight: 800;
}

.scanner-refresh-btn {
    border: 1px solid rgba(13,56,88,0.18);
    border-radius: 8px;
    padding: 10px 12px;
    color: #0d3858;
    background: #eef6fb;
    font-weight: 900;
    cursor: pointer;
}

.scanner-participants-list {
    display: grid;
    gap: 8px;
    max-height: 620px;
    overflow: auto;
    padding-right: 4px;
}

.scanner-participant-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(13,56,88,0.12);
    border-radius: 8px;
    background: #f8fbfd;
}

.scanner-participant-row.is-inside {
    border-color: rgba(19,138,67,0.32);
    background: #effaf3;
}

.scanner-participant-row.is-waitlist {
    border-color: rgba(184,96,18,0.28);
    background: #fff7ed;
}

.scanner-participant-main {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.scanner-participant-main strong {
    color: #0d3858;
    font-size: 16px;
}

.scanner-participant-main a {
    color: #b86012;
    font-weight: 900;
    text-decoration: none;
}

.scanner-participant-main small,
.scanner-participant-main span {
    color: #607b8d;
    font-weight: 700;
}

.scanner-participant-main .is-missing {
    color: #9b323c;
}

.scanner-participant-status {
    display: grid;
    justify-items: end;
    gap: 3px;
    text-align: right;
}

.scanner-participant-status span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 3px 8px;
    border-radius: 999px;
    color: #fff;
    background: #8a1f17;
    font-size: 12px;
    font-weight: 900;
}

.scanner-participant-row.is-inside .scanner-participant-status span {
    background: #138a43;
}

.scanner-participant-row.is-waitlist .scanner-participant-status span {
    background: #b86012;
}

.scanner-participant-status small {
    color: #607b8d;
    font-weight: 800;
}

.scanner-participant-empty {
    padding: 14px;
    border-radius: 8px;
    background: #eef6fb;
    color: #335a72;
    font-weight: 800;
}

@media (max-width: 920px) {
    .scanner-workspace {
        grid-template-columns: 1fr;
    }

    .scanner-participants-list {
        max-height: none;
    }
}

@media (max-width: 560px) {
    .scanner-participants-head,
    .scanner-participant-row {
        grid-template-columns: 1fr;
    }

    .scanner-participants-head {
        display: grid;
    }

    .scanner-participant-status {
        justify-items: start;
        text-align: left;
    }
}

.scanner-manual-panel {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid #ffd99f;
    border-radius: 8px;
    background: #fff7ed;
}

.scanner-manual-panel strong {
    font-size: 22px;
}

.scanner-manual-panel p {
    margin: 0;
}

.scanner-result-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px;
    text-align: center;
    color: #fff;
}

.scanner-result-overlay.is-success {
    background: rgba(13, 118, 59, .94);
}

.scanner-result-overlay.is-error,
.scanner-result-overlay.is-manual {
    background: rgba(138, 31, 23, .94);
}

.scanner-result-overlay.is-warning {
    background: rgba(184, 96, 18, .94);
}

.scanner-result-box {
    display: grid;
    justify-items: center;
    gap: 14px;
}

.scanner-result-overlay strong {
    font-size: clamp(42px, 10vw, 86px);
}

.scanner-result-overlay span {
    max-width: 680px;
    font-size: 24px;
    font-weight: 900;
}

.scanner-overlay-allow {
    margin-top: 14px;
    border: 0;
    border-radius: 8px;
    padding: 15px 20px;
    color: #0d3858;
    background: #fff;
    font-weight: 950;
    cursor: pointer;
}

.scanner-overlay-allow:disabled {
    opacity: .65;
    cursor: wait;
}

.account-cv-panel {
    align-items: flex-start;
    margin-top: 28px;
}

.account-cv-actions {
    display: grid;
    min-width: min(360px, 100%);
    gap: 14px;
}

.account-cv-form {
    display: grid;
    gap: 12px;
}

.account-cv-current {
    margin-bottom: 0;
}

.account-cv-current span {
    color: #6a8798;
    font-size: 15px;
    font-weight: 800;
}

.account-cv-current .account-cv-anonymous {
    color: #b86012;
}

.account-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #335a72;
    font-weight: 800;
    line-height: 1.45;
}

.account-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #0d3858;
}

.account-btn-outline {
    border: 1px solid rgba(13,56,88,0.26);
    color: #0d3858;
    background: #ffffff;
}

.account-btn-outline:hover {
    border-color: #b86012;
    background: #fff7ed;
}

.account-password-details {
    margin-top: 28px;
    padding: 24px 30px;
    border: 1px solid rgba(13,56,88,0.14);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(13,56,88,0.09);
}

.account-password-details summary {
    color: #0d3858;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
}

.account-password-form {
    max-width: 560px;
}

.account-forgot-details {
    max-width: 440px;
    margin-top: 18px;
}

.account-forgot-details summary {
    color: #b86012;
    font-weight: 900;
    cursor: pointer;
}

.account-reset-panel {
    display: block;
    max-width: 720px;
}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    position: relative;
    background: #0d3858;
    color: #ffffff;
    margin-top: 150px;
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -160px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: #0d3858;
    transform: translateX(-50%);
    z-index: 0;
}

.footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-col h4 {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 700;
}

.footer-col p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-col a {
    color: #ffffff;
    text-decoration: none;
}

    .footer-col a:hover {
        text-decoration: underline;
    }

/* social */
.footer-social {
    display: flex;
    gap: 14px;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

/* footer bottom */
.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.25);
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
    font-size: 13px;
}

.footer-bottom-inner a {
    color: rgba(255,255,255,0.78);
    font-weight: 700;
    text-decoration: none;
}

.footer-bottom-inner a:hover {
    color: #ffb75f;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* =====================================================
   HOME
===================================================== */

.tcd-home { max-width: 1280px; margin: 0 auto; color: #0d3858; }
.tcd-home-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr); gap: clamp(36px, 6vw, 88px); align-items: center; min-height: 650px; padding: 48px 0 82px; }
.tcd-home-hero-copy h2 { margin: 0 0 12px; color: #ef851d; font-size: 18px; font-weight: 900; text-transform: uppercase; }
.tcd-home-hero-copy h1 { max-width: 650px; margin: 0; font-size: clamp(54px, 6vw, 88px); line-height: .94; letter-spacing: -.035em; }
.tcd-home-lead { margin: 28px 0 0; color: #335a72; font-size: 18px; line-height: 1.65; }
.tcd-home-richtext p { margin: 18px 0 0; line-height: 1.55; }
.tcd-home-hero .tcd-home-richtext p:last-child { margin-top: 2px; font-size: 22px; }
.tcd-home-signup { display: inline-flex; align-items: center; justify-content: center; margin-top: 28px; min-height: 50px; padding: 0 26px; border-radius: 999px; color: #fff; background: #0d3858; font-weight: 900; text-decoration: none; }
.tcd-home-signup:hover { background: #ef851d; }
.tcd-home-hero-image img { display: block; width: 100%; max-height: 560px; object-fit: contain; }
.tcd-home-grid { display: grid; grid-template-columns: repeat(10, minmax(0, 1fr)); grid-auto-flow: dense; gap: 20px; padding-bottom: 80px; }
.tcd-home-card, .tcd-home-photo { position: relative; overflow: hidden; min-height: 290px; border-radius: 28px; }
.tcd-home-card { padding: clamp(28px, 3.5vw, 48px); }
.tcd-home-card h2, .tcd-home-card h3, .tcd-home-card p { position: relative; z-index: 1; margin-top: 0; }
.tcd-home-card h2 { margin-bottom: 0; font-size: clamp(42px, 5.2vw, 72px); line-height: .98; letter-spacing: -.035em; }
.tcd-home-card h3 { margin-bottom: 20px; font-size: clamp(26px, 2.2vw, 36px); line-height: 1.08; text-transform: uppercase; }
.tcd-home-card p { font-size: 18px; line-height: 1.55; }
.tcd-home-statement { grid-column: span 6; display: flex; align-items: flex-end; background: #eef4f7; }
.tcd-home-photo { grid-column: span 4; grid-row: span 2; min-height: 600px; }
.tcd-home-photo img { width: 100%; height: 100%; object-fit: cover; }
.tcd-home-yellow { grid-column: span 3; background: #ffb75f; }
.tcd-home-programme { grid-column: span 3; }
.tcd-home-about { grid-column: span 5; background: #c2dedd; }
.tcd-home-edition { grid-column: span 5; }
.tcd-home-blue { color: #fff; background: #0d3858; }
.tcd-home-card-head { display: block; padding-right: 64px; }
.tcd-home-card-head a { position: absolute; z-index: 2; top: 18px; right: 18px; display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; color: #fff; background: #0d3858; font-size: 20px; text-decoration: none; }
.tcd-home-programme .tcd-home-card-head a { background: #ffb75f; }
.tcd-home-card-head a:hover { transform: translateY(-2px); }
.tcd-home-circle { position: absolute; left: -38px; top: 45%; width: 148px; height: 148px; border-radius: 50%; background: #ffb75f; transform: translateY(-50%); }
.tcd-home-programme .tcd-home-circle { left: -28px; top: 62%; width: 112px; height: 112px; }
.tcd-home-about .tcd-home-richtext p:first-child { margin-top: 0; }
.tcd-home-edition .tcd-home-circle { left: -28px; top: auto; bottom: 42px; width: 112px; height: 112px; background: #c2dedd; transform: none; }

@media (max-width: 900px) {
    .tcd-home-hero { grid-template-columns: 1fr; min-height: 0; padding: 34px 0 60px; }
    .tcd-home-hero-image { max-width: 620px; margin: 0 auto; }
    .tcd-home-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tcd-home-statement, .tcd-home-photo, .tcd-home-yellow, .tcd-home-programme, .tcd-home-about, .tcd-home-edition { grid-column: span 1; }
    .tcd-home-photo { grid-row: auto; min-height: 420px; }
}

@media (max-width: 620px) {
    .tcd-home-hero-copy h1 { font-size: clamp(48px, 16vw, 68px); }
    .tcd-home-grid { grid-template-columns: 1fr; }
    .tcd-home-card, .tcd-home-photo { min-height: 260px; border-radius: 22px; }
    .tcd-home-photo { min-height: 380px; }
}

.home-page {
    color: #0d3858;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    gap: 44px;
    align-items: center;
    margin-bottom: 76px;
}

.home-kicker {
    margin: 0 0 10px;
    color: #b86012;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-hero h1,
.home-connect h2,
.home-about h2,
.home-section-heading h2 {
    margin: 0;
    color: #0d3858;
    line-height: 1;
}

.home-hero h1 {
    max-width: 760px;
    font-size: clamp(48px, 8vw, 94px);
}

.home-intro,
.home-connect p,
.home-about p {
    color: #335a72;
    font-size: 19px;
    line-height: 1.65;
}

.home-intro {
    max-width: 650px;
    margin: 24px 0 0;
}

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

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.home-btn-primary {
    color: #ffffff;
    background: #0d3858;
}

.home-btn-primary:hover {
    background: #092c44;
}

.home-btn-secondary {
    border: 1px solid rgba(13,56,88,0.24);
    color: #0d3858;
    background: #ffffff;
}

.home-btn-secondary:hover {
    border-color: #ffb75f;
    background: #fff7ed;
}

.home-hero-media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 8px;
    background: #eaf1f5;
    box-shadow: 0 24px 55px rgba(13,56,88,0.16);
}

.home-hero-media img,
.home-about img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-date-card {
    position: absolute;
    right: 22px;
    bottom: 22px;
    max-width: 310px;
    padding: 18px 20px;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(13,56,88,0.92);
}

.home-date-card span {
    display: block;
    margin-bottom: 4px;
    color: #ffb75f;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-date-card strong {
    display: block;
    font-size: 24px;
    line-height: 1.18;
}

.home-sponsors {
    margin-bottom: 54px;
}

.home-section-heading {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 18px;
}

.home-section-heading h2 {
    max-width: 660px;
    font-size: clamp(28px, 4vw, 44px);
}

.home-sponsor-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-sponsor {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 135px;
    padding: 22px;
    border: 1px solid rgba(13,56,88,0.14);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(13,56,88,0.09);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.home-sponsor:hover {
    border-color: #ffb75f;
    transform: translateY(-2px);
}

.home-sponsor img {
    max-width: 100%;
    max-height: 72px;
    object-fit: contain;
}

.home-connect {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    gap: 34px;
    align-items: start;
    margin-bottom: 76px;
}

.home-connect h2,
.home-about h2 {
    font-size: clamp(34px, 5vw, 58px);
}

.home-link-grid {
    display: grid;
    gap: 14px;
}

.home-link-card {
    display: grid;
    gap: 8px;
    padding: 24px;
    border: 1px solid rgba(13,56,88,0.14);
    border-radius: 8px;
    color: #0d3858;
    background: #f8fbfd;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.home-link-card:hover {
    border-color: #ffb75f;
    background: #ffffff;
    transform: translateY(-1px);
}

.home-link-card span {
    color: #b86012;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-link-card strong {
    font-size: 24px;
    line-height: 1.2;
}

.home-about {
    display: grid;
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
    gap: 34px;
    align-items: center;
}

.home-about img {
    min-height: 390px;
    border-radius: 8px;
    box-shadow: 0 24px 55px rgba(13,56,88,0.16);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .header-inner {
        align-items: flex-start;
    }

    .header-left,
    .header-logo {
        width: 100%;
    }

    .header-logo {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
    }

    .header-right {
        display: none;
    }

    .hamburger {
        display: block;
        margin-top: 6px;
        padding: 6px 10px;
        border: 1px solid #ffb75f;
        border-radius: 8px;
        line-height: 1;
    }

    .header-logo svg {
        width: 130px !important;
        max-height: 86px;
    }

    .mobile-menu {
        top: 112px;
        height: calc(100vh - 112px);
    }

    .site-container {
        padding: 112px 16px 40px;
    }

    .contact-hero,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        gap: 26px;
        margin-bottom: 30px;
    }

    .contact-copy h1 {
        font-size: clamp(38px, 14vw, 62px);
    }

    .contact-intro {
        font-size: 18px;
    }

    .contact-building,
    .contact-building img {
        min-height: 360px;
    }

    .contact-details,
    .contact-form {
        padding: 22px;
    }

    .contact-faq {
        margin-top: 32px;
    }

    .contact-faq-heading h2 {
        font-size: 28px;
    }

    .contact-faq-item summary {
        padding: 16px 52px 16px 16px;
        font-size: 16px;
    }

    .contact-faq-answer {
        padding: 0 16px 16px;
    }

    .home-hero,
    .home-connect,
    .home-about {
        grid-template-columns: 1fr;
    }

    .home-hero {
        gap: 28px;
        margin-bottom: 54px;
    }

    .home-hero h1 {
        font-size: clamp(44px, 14vw, 68px);
    }

    .home-hero-media {
        min-height: 380px;
    }

    .home-date-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }

    .home-section-heading {
        display: block;
    }

    .home-sponsor-grid {
        grid-template-columns: 1fr;
    }

    .home-sponsor {
        min-height: 130px;
    }

    .home-connect,
    .home-sponsors {
        margin-bottom: 54px;
    }

    .home-about img {
        min-height: 320px;
    }

    .account-page,
    .account-panel,
    .account-note,
    .account-password-details,
    .account-field input,
    .account-field textarea,
    .account-validation-form select,
    .account-btn {
        max-width: 100%;
        box-sizing: border-box;
    }

    .account-panel,
    .account-note,
    .account-password-details {
        padding: 22px;
    }

    .account-panel {
        display: grid;
        gap: 18px;
        align-items: start;
    }

    .account-followup-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .account-readiness-panel {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .account-readiness-list {
        grid-template-columns: 1fr;
    }

    .account-readiness-popover {
        position: static;
        width: auto;
        margin-top: 8px;
        box-shadow: none;
    }

    .account-language-list {
        display: grid;
        grid-template-columns: 1fr;
    }

    .account-panel-copy {
        max-width: none;
        min-width: 0;
    }

    .account-panel h2,
    .account-note h2 {
        font-size: clamp(26px, 9vw, 36px);
    }

    .account-panel p,
    .account-note p {
        font-size: 17px;
    }

    .account-company-event-head,
    .account-validation-form {
        display: grid;
        grid-template-columns: 1fr;
    }

    .account-registration-row {
        grid-template-columns: 1fr;
    }

    .account-registration-actions {
        gap: 10px;
    }

    .account-qr-panel {
        justify-items: stretch;
    }

    .account-qr-image {
        width: 100%;
        max-width: 230px;
        justify-self: center;
    }

    .account-qr-image img {
        width: 190px;
        height: 190px;
    }

    .account-programme-item {
        padding: 16px;
    }

    .account-programme-warning {
        width: auto;
        max-width: 100%;
        align-items: flex-start;
        line-height: 1.25;
    }

    .account-btn {
        width: 100%;
        min-width: 0;
        white-space: normal;
        text-align: center;
    }

    .account-actions {
        width: 100%;
        justify-content: stretch;
    }

    .account-btn-google {
        flex-wrap: wrap;
        overflow-wrap: anywhere;
    }

    .account-jump-nav {
        display: grid;
        grid-template-columns: 1fr;
    }

    .account-jump-nav a {
        width: 100%;
        box-sizing: border-box;
    }

    .scanner-top {
        display: grid;
    }

    .scanner-start-btn,
    .scanner-manual-allow {
        width: 100%;
    }

    .scanner-wrapper {
        width: 100%;
    }

    .scanner-wrapper #qr-reader {
        min-height: 290px;
    }

    .scanner-result-overlay span {
        font-size: 20px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (min-width: 768px) {

    .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr auto;
        text-align: left;
    }
}
.header-logo-link,
.footer-logo-link {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}
.account-company-picker{display:flex;gap:12px;align-items:end;margin:0 0 20px}.account-company-picker label{display:grid;gap:6px;font-weight:800;color:#0d3858}.account-company-picker select{min-width:280px;padding:11px 38px 11px 12px;border:1px solid #cbdde8;border-radius:8px;background:#fff}.account-company-board{display:grid;grid-template-columns:repeat(5,minmax(220px,1fr));gap:12px;overflow-x:auto;padding:4px 0 12px}.account-company-board-column{min-width:220px;padding:12px;border:1px solid #e2e8f0;border-radius:10px;background:#f8fafc}.account-company-board-column h4{margin:0 0 12px;color:#0d3858}.account-company-board-cards{display:grid;gap:10px}.account-company-board .account-registration-row{display:block;padding:12px;border:1px solid #dce7ee;border-radius:8px;background:#fff}.account-company-board .account-registration-actions{display:grid;gap:8px;margin-top:10px}.company-login-shell{max-width:760px;margin:40px auto}.company-login-card{padding:28px}
