:root {
    --bg: #060816;
    --bg-soft: #0d1120;
    --panel: rgba(15, 23, 42, 0.76);
    --panel-strong: rgba(15, 23, 42, 0.92);
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(255, 255, 255, 0.18);
    --text: #f7f8fc;
    --muted: #a7b1c6;
    --muted-strong: #d7deef;
    --magenta-muted: #ffbdd0;
    --magenta: #f9215f;
    --violet: #6627ff;
    --gold: #fdae00;
    --emerald: #34d399;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --content: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top right, rgba(249, 33, 95, 0.22), transparent 28%),
        radial-gradient(circle at 20% 10%, rgba(102, 39, 255, 0.14), transparent 24%),
        linear-gradient(180deg, #0b1020 0%, #060816 45%, #04050d 100%);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at center, black 44%, transparent 100%);
    opacity: 0.42;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.95;
}

h1 {
    font-size: clamp(42px, 6vw, 86px);
    max-width: 10ch;
}

h2 {
    font-size: clamp(28px, 3.6vw, 52px);
}

h3 {
    font-size: clamp(24px, 2.4vw, 34px);
}

h4 {
    font-size: 22px;
    line-height: 1.05;
}

.hidden {
    display: none !important;
}

.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;
}

.shell {
    position: relative;
    z-index: 1;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(20px);
    background: rgba(6, 8, 22, 0.82);
    border-bottom: 1px solid var(--line);
}

.topbar-inner,
.section-inner {
    width: min(calc(100% - 32px), var(--content));
    margin: 0 auto;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.brand-logo {
    width: min(320px, 48vw);
    height: auto;
}

.footer-logo {
    width: min(280px, 100%);
}

.brand-note,
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.24em;
}

.brand-note {
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    max-width: 280px;
    line-height: 1.5;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.menu-toggle-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle-lines span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav a,
.pill,
.ghost-pill,
.meta-chip,
.availability-note,
.price-badge {
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.nav a {
    padding: 12px 16px;
    color: var(--muted-strong);
    border: 1px solid transparent;
}

.nav a:hover {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
}

.nav a.nav-cta {
    color: var(--text);
    border-color: transparent;
    background: linear-gradient(135deg, var(--magenta), var(--violet));
    box-shadow: 0 12px 28px rgba(102, 39, 255, 0.28);
}

.nav a.nav-cta:hover {
    border-color: transparent;
    background: linear-gradient(135deg, #ff4b81, #7a4dff);
}

.nav-panel {
    border-top: 1px solid var(--line);
}

.nav-mobile {
    width: min(calc(100% - 32px), var(--content));
    margin: 0 auto;
    padding: 12px 0 18px;
    flex-direction: column;
    align-items: stretch;
}

.section {
    padding: 42px 0 96px;
}

.section + .section {
    border-top: 1px solid var(--line);
}

.section-inner-narrow {
    width: min(calc(100% - 32px), 920px);
}

.hero,
.cards-2,
.cards-3,
.detail-layout,
.panel-grid,
.archive-grid,
.partner-row,
.detail-grid,
.faq-grid,
.price-rail {
    display: grid;
    gap: 22px;
}

.hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    align-items: stretch;
}

.cards-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3,
.archive-grid,
.cards-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel-grid {
    grid-template-columns: 1.2fr 0.8fr;
}

.detail-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: start;
}

.detail-hero {
    display: grid;
    gap: 22px;
}

.hero-copy,
.hero-card,
.panel,
.event-card,
.faq-item,
.partner-card,
.archive-card,
.detail-pricing-card,
.timeline-card,
.detail-summary-card,
.archive-cta-panel,
.empty-note-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    position: relative;
}

.hero-copy {
    padding: 34px;
    position: relative;
    overflow: hidden;
}

.hero-copy::after,
.detail-summary-card::after {
    content: "";
    position: absolute;
    inset: auto -120px -120px auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 33, 95, 0.22), transparent 65%);
    pointer-events: none;
}

.detail-summary-card::after {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(102, 39, 255, 0.18), transparent 70%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffbbcf;
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 20px;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 18px rgba(52, 211, 153, 0.8);
    flex: none;
}

.title-accent {
    color: var(--magenta-muted);
}

.lead {
    max-width: 42rem;
    margin-top: 20px;
    font-size: 18px;
    color: var(--muted-strong);
}

.claims {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.claims-speakers {
    margin-top: 22px;
}

.speaker-list {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.speaker-profile {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 18px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.speaker-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at top right, rgba(249, 33, 95, 0.22), transparent 45%),
        linear-gradient(135deg, rgba(102, 39, 255, 0.4), rgba(15, 23, 42, 0.9));
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.speaker-avatar-image,
.speaker-avatar-placeholder {
    width: 100%;
    height: 100%;
}

.speaker-avatar-image {
    object-fit: cover;
}

.speaker-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.speaker-profile-body {
    min-width: 0;
}

.speaker-profile-name {
    color: var(--text);
    font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.speaker-profile-bio {
    margin-top: 10px;
    color: var(--muted-strong);
}

.speaker-profile-bio .expandable-text-content p {
    color: inherit;
}

.schedule-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.schedule-tag {
    --tag-color: var(--magenta);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--tag-color) 45%, rgba(255, 255, 255, 0.12));
    background: color-mix(in srgb, var(--tag-color) 18%, rgba(255, 255, 255, 0.04));
    color: var(--text);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.schedule-tag::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tag-color);
    box-shadow: 0 0 14px color-mix(in srgb, var(--tag-color) 70%, transparent);
}

.expandable-text {
    --expandable-fade-height: 44px;
    display: grid;
    gap: 10px;
}

.expandable-text-content {
    position: relative;
    overflow: hidden;
    max-height: none;
}

.expandable-text[data-expandable-interactive="true"] .expandable-text-content {
    cursor: pointer;
}

.expandable-text[data-expandable-state="collapsed"][data-expandable-overflow="true"] .expandable-text-content::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: var(--expandable-fade-height);
    background: linear-gradient(180deg, rgba(6, 8, 22, 0), rgba(6, 8, 22, 0.96));
    pointer-events: none;
}

.expandable-text-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 0;
    border: 0;
    background: none;
    color: #ffd6e1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
}

.expandable-text-toggle::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--line);
    transition: transform 180ms ease;
}

.expandable-text[data-expandable-state="expanded"] .expandable-text-toggle::after {
    transform: rotate(45deg);
}

.expandable-text-toggle:hover {
    color: #ffe6ee;
}

.pill,
.ghost-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.pill strong,
.ghost-pill strong {
    font-size: 13px;
}

.pill::before,
.ghost-pill::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--magenta);
    box-shadow: 0 0 16px rgba(249, 33, 95, 0.9);
}

.short-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.short-list li {
    position: relative;
    padding-left: 20px;
    color: var(--muted-strong);
    font-size: 15px;
    line-height: 1.5;
}

.short-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--magenta);
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
}

.short-list-compact {
    margin-top: 0;
}

.short-list-spacious {
    margin-top: 22px;
}

.short-list-compact li {
    font-size: 14px;
}

.or-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    color: #ffbbcf;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.or-divider::before,
.or-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, rgba(249, 33, 95, 0.45), transparent);
}

.cta-row,
.event-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.cta-row-centered {
    justify-content: center;
}

.button,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 180ms ease;
}

.button {
    color: white;
    background: linear-gradient(90deg, var(--magenta), #ff4e86 55%, #ff84aa);
    box-shadow: 0 14px 32px rgba(249, 33, 95, 0.28);
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(249, 33, 95, 0.36);
}

.button-secondary {
    color: var(--text);
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.03);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(249, 33, 95, 0.3);
}

.availability-note {
    display: inline-flex;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid rgba(249, 33, 95, 0.24);
    background: rgba(255, 255, 255, 0.04);
    color: #ffd7e2;
    letter-spacing: 0.08em;
}

.availability-note-inline {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.hero-card,
.detail-summary-card,
.event-card,
.archive-card {
    overflow: hidden;
}

.hero-card-image,
.event-card-media,
.archive-media {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(249, 33, 95, 0.16), transparent 40%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, #12172a, #090d18);
}

.hero-card-image,
.detail-summary-image {
    min-height: 250px;
}

.event-card-media,
.archive-media,
.detail-summary-image {
    aspect-ratio: 16 / 10;
}

.hero-card-image::after,
.archive-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--magenta), var(--violet));
}

.archive-media::after {
    height: 4px;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 200px;
    padding: 24px;
    text-align: center;
    color: var(--muted-strong);
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-card-body,
.event-card-body,
.archive-body,
.panel-body,
.timeline-card,
.detail-pricing-card,
.detail-summary-body,
.archive-cta-panel,
.empty-note-panel {
    padding: 26px;
}

.hero-card h3 {
    margin-top: 14px;
    line-height: 1.05;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 26px;
}

.countdown-item {
    padding: 12px 10px;
    border-radius: 16px;
    border: 1px solid rgba(249, 33, 95, 0.22);
    background:
        linear-gradient(180deg, rgba(249, 33, 95, 0.14), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.02);
    text-align: center;
}

.countdown-value {
    display: block;
    color: var(--text);
    font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.countdown-label {
    display: block;
    margin-top: 6px;
    color: var(--magenta-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-date {
    margin-top: 14px;
    color: var(--magenta-muted);
    font-weight: 700;
}

.hero-summary,
.event-card-summary {
    margin-top: 14px;
}

.quote-block {
    margin-top: 20px;
    padding: 18px 18px 18px 20px;
    border-left: 3px solid var(--magenta);
    border-radius: 0 18px 18px 0;
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted-strong);
}

.quote-block p,
.quote-block li {
    color: var(--muted-strong);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.section-head p {
    max-width: 40rem;
}

.section-head-split {
    align-items: end;
}

.status-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(6, 8, 22, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.status-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 16px rgba(52, 211, 153, 0.8);
}

.event-meta,
.meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.meta-chip {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    color: var(--muted-strong);
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(249, 33, 95, 0.24);
    background:
        radial-gradient(circle at top right, rgba(249, 33, 95, 0.16), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 28px rgba(0, 0, 0, 0.22);
}

.price-row-hero {
    align-items: center;
}

.price-copy {
    display: grid;
    gap: 6px;
}

.price-copy strong {
    display: block;
    font-size: 16px;
    color: var(--text);
}

.price-copy span,
.price-note {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.price-note {
    color: #ffbbcf;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    color: #fff0b8;
}

.price-button {
    min-width: 180px;
    display: inline-grid;
    gap: 2px;
    justify-items: center;
    padding: 10px 18px;
    color: #fff4cf;
    font-size: 13px;
    white-space: nowrap;
}

.price-button-eur {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.price-button-czk {
    display: inline-flex;
    gap: 0.35em;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.84;
}

.price-button-vat {
    letter-spacing: normal;
    text-transform: none;
}

.archive-cta-panel p {
    color: var(--muted-strong);
}

.newsletter-section {
    padding-top: 0;
}

.newsletter-panel {
    overflow: hidden;
}

.newsletter-panel-body {
    display: grid;
    gap: 22px;
}

.newsletter-head {
    margin-bottom: 0;
}

.newsletter-validation-summary,
.newsletter-status {
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.6;
}

.newsletter-validation-summary {
    border: 1px solid rgba(249, 33, 95, 0.32);
    background: rgba(249, 33, 95, 0.12);
    color: #ffe0e9;
}

.newsletter-validation-summary ul {
    margin: 0;
    padding-left: 20px;
}

.newsletter-status-success {
    border: 1px solid rgba(52, 211, 153, 0.34);
    background: rgba(52, 211, 153, 0.12);
    color: #ddfff1;
}

.newsletter-status-error {
    border: 1px solid rgba(249, 33, 95, 0.32);
    background: rgba(249, 33, 95, 0.12);
    color: #ffe0e9;
}

.newsletter-form-row {
    display: flex;
    align-items: end;
    gap: 16px;
}

.newsletter-field-group {
    flex: 1 1 auto;
    min-width: 0;
    display: grid;
    gap: 10px;
}

.newsletter-label {
    color: var(--muted-strong);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.newsletter-input {
    width: 100%;
    min-height: 56px;
    padding: 0 20px;
    border-radius: 18px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font: inherit;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.newsletter-input::placeholder {
    color: var(--muted);
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(102, 39, 255, 0.5);
    box-shadow: 0 0 0 4px rgba(102, 39, 255, 0.14);
}

.newsletter-input-invalid,
.newsletter-input-invalid:focus {
    border-color: rgba(249, 33, 95, 0.72);
    background: rgba(249, 33, 95, 0.08);
    box-shadow: 0 0 0 4px rgba(249, 33, 95, 0.14);
}

.newsletter-submit {
    min-width: 180px;
}

.partner-row {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 18px;
}

.partner-card {
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 124px;
}

.partner-card.featured {
    background:
        radial-gradient(circle at top right, rgba(249, 33, 95, 0.12), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.partner-logo-card {
    padding: 28px;
}

.partner-logo {
    width: auto;
    max-width: 100%;
    max-height: 54px;
}

.partner-logo-update {
    max-height: 44px;
}

.partner-logo-riganti {
    max-height: 58px;
}

.partner-logo-itixo {
    max-height: 52px;
}

.faq-item {
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 18px;
    color: var(--text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span:last-child {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: #ffd6e1;
    flex: none;
}

.faq-item[open] summary span:last-child {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 26px 24px;
    max-width: 58rem;
}

.timeline-card h3,
.detail-pricing-card h3,
.detail-summary-card h2 {
    margin-bottom: 16px;
}

.timeline {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.timeline-time {
    color: var(--magenta-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.timeline-title {
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.timeline-item .expandable-text {
    margin-top: 6px;
    font-size: 14px;
}

.speaker-card .ghost-pill {
    background: rgba(255, 255, 255, 0.05);
}

.detail-summary-about {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.detail-pricing-card {
    position: sticky;
    top: 102px;
}

.empty-note-panel {
    margin-top: 24px;
}

.detail-summary-card-centered {
    text-align: center;
}

.other-event-card {
    display: flex;
    flex-direction: column;
}

.other-event-media {
    aspect-ratio: 16 / 10;
}

.footer {
    width: min(calc(100% - 32px), var(--content));
    margin: 0 auto 42px;
    padding: 26px 0 0;
    display: grid;
    gap: 16px;
    border-top: 1px solid var(--line);
}

.footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-meta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.footer-brand-block {
    display: grid;
    gap: 14px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted-strong);
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(249, 33, 95, 0.4);
    background: rgba(249, 33, 95, 0.12);
    color: var(--text);
}

.social-link:focus-visible {
    outline: 2px solid rgba(249, 33, 95, 0.55);
    outline-offset: 3px;
}

.social-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer small {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 1080px) {
    .hero,
    .panel-grid,
    .detail-layout,
    .cards-2,
    .cards-3,
    .archive-grid,
    .partner-row,
    .footer-meta-grid,
    .cards-compact {
        grid-template-columns: 1fr;
    }

    .detail-pricing-card {
        position: static;
    }

    .price-row {
        flex-direction: column;
        align-items: stretch;
    }

    .price-button {
        width: 100%;
        min-width: 0;
    }

    .brand-note {
        display: none;
    }
}

@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }
}

@media (min-width: 1200px) {
    .cards-3-on-wide {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .topbar-inner {
        align-items: center;
    }

    .hero-copy,
    .hero-card-body,
    .event-card-body,
    .archive-body,
    .timeline-card,
    .detail-pricing-card,
    .detail-summary-body,
    .archive-cta-panel,
    .empty-note-panel {
        padding: 22px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .speaker-profile {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .speaker-profile-body {
        text-align: center;
    }

    .countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .newsletter-form-row {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-field-group {
        gap: 8px;
    }

    .newsletter-label {
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .newsletter-input {
        min-height: 48px;
        padding: 0 16px;
        font-size: 15px;
    }

    .newsletter-submit {
        width: 100%;
        min-width: 0;
    }

    .section {
        padding: 28px 0 72px;
    }

    .section-head,
    .footer-meta-grid {
        grid-template-columns: 1fr;
        display: grid;
        align-items: start;
    }

    .faq-item summary {
        font-size: 16px;
    }

    .nav-mobile {
        width: min(calc(100% - 32px), var(--content));
    }
}