/* ==========================================================================
   INSTRUMENTY SOZ
   Light editorial conference theme
   Fundacja Watch Health Care • 06.11.2026
   ========================================================================== */


/* ==========================================================================
   VARIABLES
   ========================================================================== */

:root {
  --soz-bg: #f3f5f7;
  --soz-surface: #ffffff;
  --soz-surface-soft: #eaf0f5;

  --soz-text: #111827;
  --soz-text-soft: #475467;
  --soz-text-muted: #667085;

  --soz-border: #d7dee6;
  --soz-border-strong: #cbd5e1;

  --soz-blue: #2563eb;
  --soz-blue-dark: #1d4ed8;
  --soz-blue-light: #0284c7;
  --soz-blue-soft: #eef5ff;

  --soz-amber: #c96f00;
  --soz-amber-light: #f59e0b;

  --soz-font-display:
    "Space Grotesk",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;

  --soz-font-body:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;

  --soz-font-mono:
    "JetBrains Mono",
    SFMono-Regular,
    Consolas,
    monospace;

  --soz-radius: 14px;
}


/* ==========================================================================
   GLOBAL / DIVI RESET
   ========================================================================== */

html {
  scroll-behavior: smooth;
}

body,
body.et_pb_pagebuilder_layout {
  margin: 0;
  padding: 0;
  overflow-x: hidden;

  background: var(--soz-bg) !important;
  color: var(--soz-text);

  font-family: var(--soz-font-body);
  font-size: 17px;
  line-height: 1.65;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#page-container,
#et-main-area,
#main-content {
  background: var(--soz-bg) !important;
}

#main-content,
.et_pb_section,
.et_pb_row,
.et_pb_column {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  background: transparent !important;
}

.soz-page-container {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  color: var(--soz-text);
}


/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.soz-nav-dock {
  position: sticky;
  top: 14px;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  width: calc(100% - 32px);
  max-width: 1280px;

  margin: 14px auto 0;
  padding: 10px 12px 10px 14px;

  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;

  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.08),
    0 2px 8px rgba(15, 23, 42, 0.04);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.soz-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;

  color: var(--soz-text) !important;
  text-decoration: none !important;
}

.soz-nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 12px;

  background: #eef6ff;
  border: 1px solid #b9d7f5;
  border-radius: 999px;

  color: #0369a1 !important;

  font-family: var(--soz-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;

  white-space: nowrap;
}

.soz-nav-title {
  color: var(--soz-text) !important;

  font-family: var(--soz-font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;

  white-space: nowrap;
}


/* Reset list Divi */
.soz-nav-links,
.soz-nav-dock ul {
  display: flex;
  align-items: center;
  gap: 26px;

  margin: 0 0 0 auto !important;
  padding: 0 !important;

  list-style: none !important;

  flex: 0 0 auto;
}

.soz-nav-links li,
.soz-nav-dock li {
  margin: 0 !important;
  padding: 0 !important;

  list-style: none !important;
}

.soz-nav-links li::before,
.soz-nav-dock li::before {
  content: none !important;
  display: none !important;
}

.soz-nav-links a {
  position: relative;
  display: block;

  padding: 8px 0;

  color: var(--soz-text-soft) !important;
  text-decoration: none !important;

  font-size: 13px;
  font-weight: 500;

  white-space: nowrap;

  transition: color 0.2s ease;
}

.soz-nav-links a:hover,
.soz-nav-links a.active {
  color: var(--soz-text) !important;
}

.soz-nav-links a::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;

  height: 2px;

  background: var(--soz-blue);

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.2s ease;
}

.soz-nav-links a:hover::after,
.soz-nav-links a.active::after {
  transform: scaleX(1);
}


/* Nav CTA */
.soz-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  min-height: 42px;
  padding: 0 22px;
  margin-left: 6px;

  background: var(--soz-blue) !important;
  border: 1px solid var(--soz-blue);
  border-radius: 999px;

  color: #fff !important;
  text-decoration: none !important;

  font-size: 13px;
  font-weight: 700;

  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.22);

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.soz-nav-cta:hover {
  background: var(--soz-blue-dark) !important;
  color: #fff !important;

  transform: translateY(-1px);

  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.soz-btn-primary,
.soz-btn-secondary,
.soz-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  border-radius: 999px;
  text-decoration: none !important;

  font-family: var(--soz-font-display);
  font-size: 16px;
  font-weight: 600;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.soz-btn-primary {
  padding: 16px 36px;

  background: var(--soz-blue) !important;
  border: 1px solid var(--soz-blue);

  color: #fff !important;

  box-shadow: 0 5px 20px rgba(37, 99, 235, 0.24);
}

.soz-btn-primary:hover {
  background: var(--soz-blue-dark) !important;
  transform: translateY(-2px);
}

.soz-btn-secondary {
  padding: 16px 32px;

  background: #fff !important;
  border: 1px solid var(--soz-border-strong);

  color: #1f2937 !important;
}

.soz-btn-secondary:hover {
  background: #f8fafc !important;
  border-color: #94a3b8;
}

.soz-btn-dark {
  padding: 16px 36px;

  background: #111827 !important;

  color: #fff !important;
}

.soz-btn-dark:hover {
  background: #1f2937 !important;
  transform: translateY(-2px);
}


/* ==========================================================================
   HERO
   ========================================================================== */

.soz-hero,
#hero {
  position: relative;

  min-height: 720px;
  max-height: 860px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 32px 48px;

  box-sizing: border-box;

  background: #fff !important;
  color: var(--soz-text) !important;
}

#soz-hero-canvas {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  pointer-events: none;
  z-index: 1;
}

.soz-hero-content {
  position: relative;
  z-index: 2;

  margin-top: 20px;
}

.soz-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 20px;

  color: var(--soz-blue-light) !important;

  font-size: 13.5px;
  font-weight: 500;
}

.soz-live-dot {
  width: 7px;
  height: 7px;

  flex-shrink: 0;

  background: #10b981;
  border-radius: 50%;

  box-shadow: 0 0 7px rgba(16, 185, 129, 0.55);

  animation: sozPulse 2.5s infinite ease-in-out;
}

@keyframes sozPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

.soz-hero-monumental-title {
  margin: 0 0 26px;

  color: #0b1220 !important;

  font-family: var(--soz-font-display);
  font-size: clamp(52px, 10vw, 130px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;

  text-transform: uppercase;
}

.soz-hero-official-title {
  max-width: 1050px;
  margin: 0 0 22px;

  color: #1f2937 !important;

  font-family: var(--soz-font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.soz-hero-lead {
  max-width: 780px;
  margin: 0 0 32px;

  color: var(--soz-text-soft) !important;

  font-size: clamp(15.5px, 1.25vw, 18px);
  line-height: 1.6;
}

.soz-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;

  margin-bottom: 36px;
}

.soz-hero-facts-bar {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;

  padding-top: 24px;

  border-top: 1px solid var(--soz-border);
}

.soz-fact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.soz-fact-label {
  color: var(--soz-text-muted) !important;

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.soz-fact-value {
  color: var(--soz-text) !important;

  font-family: var(--soz-font-display);
  font-size: clamp(14.5px, 1.15vw, 17px);
  font-weight: 600;
}


/* ==========================================================================
   COMMON SECTIONS
   ========================================================================== */

.soz-section {
  position: relative;

  max-width: 1400px;
  margin: 0 auto;
  padding: 76px 32px;

  box-sizing: border-box;

  color: var(--soz-text);
}

.soz-section + .soz-section {
  border-top: 1px solid #e1e6eb;
}

.soz-section-header {
  margin-bottom: 36px;
}

.soz-section-eyebrow {
  display: inline-block;

  margin-bottom: 12px;

  color: var(--soz-blue-light) !important;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.soz-section-title {
  margin: 0 0 14px;

  color: var(--soz-text) !important;

  font-family: var(--soz-font-display);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.soz-section-lead {
  max-width: 820px;
  margin: 0;

  color: var(--soz-text-soft) !important;

  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
}


/* ==========================================================================
   PROGRAM
   ========================================================================== */

.soz-timeline-wrap {
  position: relative;

  max-width: 1280px;
  margin: 40px auto 0;

  color: var(--soz-text);
}


/* wspólna część */
.soz-trunk-node {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 32px;

  padding: 17px 0;

  border-bottom: 1px solid var(--soz-border);
}

.soz-node-time {
  color: var(--soz-blue-light) !important;

  font-family: var(--soz-font-mono);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.soz-node-content h4 {
  margin: 0 0 4px;

  color: var(--soz-text) !important;

  font-family: var(--soz-font-display);
  font-size: 19px;
  font-weight: 600;
}

.soz-node-content p {
  margin: 0;

  color: var(--soz-text-soft) !important;

  font-size: 14.5px;
}


/* rozwidlenie */
.soz-fork-divider {
  position: relative;

  padding: 34px 0 22px;

  text-align: center;
}

.soz-fork-svg {
  display: block;

  width: 100%;
  max-width: 540px;
  height: 70px;

  margin: 0 auto;
}

.soz-fork-label-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 24px;
  padding: 14px 20px;

  background: var(--soz-surface-soft);
  border: 1px solid var(--soz-border);
  border-radius: 10px;
}

.soz-track-badge-left,
.soz-track-badge-right {
  display: flex;
  align-items: center;
  gap: 10px;

  font-family: var(--soz-font-display);
  font-size: 16px;
  font-weight: 700;
}

.soz-track-badge-left {
  color: #0369a1 !important;
}

.soz-track-badge-right {
  color: #b45309 !important;
}

.soz-track-badge-left::before,
.soz-track-badge-right::after {
  content: "";

  width: 8px;
  height: 8px;

  border-radius: 50%;
}

.soz-track-badge-left::before {
  background: var(--soz-blue-light);
}

.soz-track-badge-right::after {
  background: var(--soz-amber-light);
}


/* dwie sale */
.soz-bifurcated-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.soz-parallel-row {
  display: grid;
  grid-template-columns: 1fr 130px 1fr;
  align-items: stretch;
  gap: 18px;
}

.soz-parallel-left,
.soz-parallel-right {
  padding: 18px 22px;

  background: #fff;
  border: 1px solid var(--soz-border);
  border-radius: 12px;

  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.soz-parallel-left:hover,
.soz-parallel-right:hover {
  border-color: #adc9e4;

  box-shadow: 0 7px 20px rgba(15, 23, 42, 0.07);
}

.soz-parallel-center {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.soz-parallel-center::before {
  content: "";

  position: absolute;
  top: 0;
  bottom: 0;

  width: 1px;

  background: var(--soz-border);
}

.soz-parallel-time {
  position: relative;
  z-index: 2;

  padding: 5px 12px;

  background: #edf2f6;
  border: 1px solid #d5dde5;
  border-radius: 999px;

  color: var(--soz-text) !important;

  font-family: var(--soz-font-mono);
  font-size: 13px;
  font-weight: 700;

  white-space: nowrap;
}

.soz-parallel-tag {
  display: block;

  margin-bottom: 6px;

  color: var(--soz-blue-light) !important;

  font-size: 12px;
  font-weight: 600;
}

.soz-parallel-right .soz-parallel-tag {
  color: var(--soz-amber) !important;
}

.soz-parallel-title {
  margin: 0;

  color: var(--soz-text) !important;

  font-family: var(--soz-font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.soz-parallel-speakers {
  margin: 10px 0 0;

  color: var(--soz-text-soft) !important;

  font-size: 13.5px;
  line-height: 1.45;
}


/* lunch / przerwa */
.soz-parallel-full-break {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  padding: 12px 20px;

  background: #e8edf2;
  border: 1px solid var(--soz-border);
  border-radius: 10px;
}

.soz-break-time {
  color: var(--soz-blue) !important;

  font-family: var(--soz-font-mono);
  font-size: 13.5px;
  font-weight: 700;
}

.soz-break-title {
  color: var(--soz-text-soft) !important;

  font-size: 15px;
  font-weight: 500;
}


/* networking */
.soz-timeline-reunion {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 32px;

  margin-top: 24px;
  padding-top: 30px;

  border-top: 1px solid var(--soz-border);
}

.soz-reunion-time {
  color: var(--soz-amber) !important;

  font-family: var(--soz-font-mono);
  font-size: 21px;
  font-weight: 700;
}

.soz-reunion-content h4 {
  margin: 0 0 6px;

  color: var(--soz-text) !important;

  font-family: var(--soz-font-display);
  font-size: 21px;
  font-weight: 700;
}


/* VOD */
.soz-vod-callout {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-top: 30px;
  padding: 18px 24px;

  background: #eaf4ff;
  border: 1px solid #bfdaf1;
  border-radius: 12px;
}

.soz-vod-icon {
  color: var(--soz-blue-light) !important;
  font-size: 24px;
}

.soz-vod-text {
  color: #1f2937 !important;

  font-size: 15px;
  line-height: 1.5;
}

.soz-program-notes {
  margin-top: 14px;

  color: var(--soz-text-muted);

  font-size: 13px;
}


/* ==========================================================================
   SPEAKERS
   ========================================================================== */

.soz-speakers-editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 24px;

  margin-top: 28px;
  padding-top: 36px;

  border-top: 1px solid var(--soz-border);
}

.soz-speaker-card-item {
  position: relative;

  display: flex;
  flex-direction: column;
}

.soz-speaker-photo-wrap {
  position: relative;

  width: 100%;
  aspect-ratio: 1 / 1.15;

  margin-bottom: 14px;

  overflow: hidden;

  background: #e7ecf1;
  border-radius: 10px;
}

.soz-speaker-img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top center;

  filter: none !important;
  -webkit-filter: none !important;
  opacity: 1 !important;

  transition: transform 0.3s ease;
}

.soz-speaker-card-item:hover .soz-speaker-img {
  transform: scale(1.02);
}

.soz-speaker-name {
  margin: 0 0 4px;

  color: var(--soz-text) !important;

  font-family: var(--soz-font-display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.soz-speaker-role-desc {
  margin: 0 0 8px;

  color: var(--soz-text-soft) !important;

  font-size: 13.5px;
  line-height: 1.45;
}

.soz-speaker-panel-tag {
  margin-top: auto;

  color: var(--soz-blue-light) !important;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.soz-speaker-pending-badge {
  margin-top: 4px;

  color: var(--soz-amber) !important;

  font-size: 12px;
  font-weight: 500;
}


/* ==========================================================================
   TICKETS
   ========================================================================== */

.soz-tickets-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;

  margin-top: 28px;
  padding-top: 36px;

  border-top: 1px solid var(--soz-border);
}

.soz-ticket-column-item {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 38px 32px;

  background: #fff;
  border: 1px solid var(--soz-border);
  border-radius: 16px;

  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.soz-ticket-column-item:hover {
  transform: translateY(-2px);

  border-color: #b8c7d6;

  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.soz-ticket-column-item.is-featured {
  background: #f3f7ff;
  border: 2px solid var(--soz-blue);
}

.soz-ticket-col-badge {
  display: block;

  margin-bottom: 10px;

  color: var(--soz-blue-light) !important;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.soz-ticket-col-name {
  margin: 0 0 16px;

  color: var(--soz-text) !important;

  font-family: var(--soz-font-display);
  font-size: 28px;
  font-weight: 700;
}


/* prices */
.soz-ticket-price-wrap {
  margin: 16px 0 26px;
}

.soz-ticket-old-price {
  position: relative;

  display: inline-block;

  margin-bottom: 14px;

  color: var(--soz-text-muted) !important;

  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.soz-ticket-old-price::after {
  content: "";

  position: absolute;

  left: -4%;
  top: 50%;

  width: 108%;
  height: 2px;

  background: var(--soz-amber-light);

  transform: rotate(-5deg);
  transform-origin: center;
}

.soz-ticket-early-label {
  margin-bottom: 4px;

  color: var(--soz-blue) !important;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.soz-ticket-col-price {
  margin: 0 0 24px;

  color: var(--soz-text) !important;

  font-family: var(--soz-font-display);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 800;
  line-height: 1;
}

.soz-ticket-col-price span {
  margin-left: 4px;

  color: var(--soz-text-muted) !important;

  font-size: 22px;
  font-weight: 500;
}


/* inclusions */
.soz-ticket-inclusions {
  display: flex;
  flex-direction: column;
  gap: 12px;

  margin: 0 0 32px;
  padding: 24px 0 0;

  list-style: disc;
  list-style-position: outside;

  border-top: 1px solid var(--soz-border);
}

.soz-ticket-inclusions li {
  margin-left: 20px;

  color: var(--soz-text-soft) !important;

  font-size: 14.5px;
  line-height: 1.5;
}

.soz-ticket-inclusions li.highlight-vad {
  color: #b45309 !important;
  font-weight: 600;
}

.highlight-vad a {
  color: inherit !important;

  font-weight: 700;

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.highlight-vad a:hover {
  opacity: 0.75;
}

.highlight-vad strong {
  color: inherit !important;
  font-weight: 700;
}


/* ==========================================================================
   VENUE
   ========================================================================== */

.soz-venue-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;

  padding-top: 36px;

  border-top: 1px solid var(--soz-border);
}

.soz-venue-hero-name {
  margin: 0 0 8px;

  color: var(--soz-text) !important;

  font-family: var(--soz-font-display);
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 800;
  line-height: 1.1;
}

.soz-venue-hero-complex {
  margin-bottom: 24px;

  color: var(--soz-blue-light) !important;

  font-size: 19px;
  font-weight: 500;
}

.soz-venue-data-block {
  display: flex;
  flex-direction: column;
  gap: 18px;

  padding-left: 40px;

  border-left: 1px solid var(--soz-border);
}

.soz-venue-metric-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.soz-venue-metric-label {
  color: var(--soz-text-muted) !important;

  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.soz-venue-metric-val {
  color: var(--soz-text) !important;

  font-family: var(--soz-font-display);
  font-size: 18px;
  font-weight: 600;
}


/* ==========================================================================
   FAQ
   ========================================================================== */

.soz-faq-accordion-wrap {
  display: flex;
  flex-direction: column;

  max-width: 960px;
  margin-top: 32px;
}

.soz-faq-item {
  border-bottom: 1px solid var(--soz-border);
}

.soz-faq-trigger {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 24px 0;

  background: transparent;
  border: 0;

  cursor: pointer;
  text-align: left;
}

.soz-faq-question {
  color: var(--soz-text) !important;

  font-family: var(--soz-font-display);
  font-size: 21px;
  font-weight: 600;

  transition: color 0.2s ease;
}

.soz-faq-item:hover .soz-faq-question,
.soz-faq-item.is-open .soz-faq-question {
  color: var(--soz-blue-light) !important;
}

.soz-faq-icon {
  color: var(--soz-text-muted) !important;

  font-size: 24px;

  transition:
    color 0.2s ease,
    transform 0.25s ease;
}

.soz-faq-item.is-open .soz-faq-icon {
  color: var(--soz-blue-light) !important;

  transform: rotate(45deg);
}

.soz-faq-body {
  display: none;

  padding-bottom: 28px;

  color: var(--soz-text-soft) !important;

  font-size: 17px;
  line-height: 1.65;
}


/* ==========================================================================
   ORGANIZER / FOOTER
   ========================================================================== */

.soz-organizer-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 32px;

  border-top: 1px solid var(--soz-border);

  text-align: center;
}

.soz-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 32px;

  border-top: 1px solid var(--soz-border);

  box-sizing: border-box;
}

.soz-footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.soz-footer-brand {
  color: var(--soz-text) !important;

  font-family: var(--soz-font-display);
  font-size: 17px;
  font-weight: 700;
}

.soz-footer-copy {
  color: var(--soz-text-muted) !important;

  font-size: 14px;
}

.soz-footer-email {
  color: var(--soz-blue-light) !important;

  font-family: var(--soz-font-mono);
  font-size: 14px;

  text-decoration: none;
}

.soz-footer-email:hover {
  text-decoration: underline;
}


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

@media (max-width: 1050px) {

  .soz-nav-dock {
    gap: 16px;
  }

  .soz-nav-links {
    gap: 16px;
  }

  .soz-nav-links a {
    font-size: 12px;
  }

  .soz-hero-facts-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .soz-parallel-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .soz-parallel-center {
    order: -1;
    align-items: flex-start;
  }

  .soz-parallel-center::before {
    display: none;
  }

  .soz-speakers-editorial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .soz-tickets-columns {
    grid-template-columns: 1fr;
  }

  .soz-venue-grid-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .soz-venue-data-block {
    padding-left: 0;
    border-left: 0;
  }
}


@media (max-width: 820px) {

  .soz-nav-dock {
    justify-content: space-between;

    width: calc(100% - 20px);

    padding: 8px 9px 8px 14px;
  }

  .soz-nav-links {
    display: none !important;
  }

  .soz-nav-badge {
    display: none;
  }

  .soz-nav-title {
    font-size: 13px;
  }

  .soz-nav-cta {
    min-height: 40px;
    padding: 0 18px;
    margin-left: auto;

    font-size: 12px;
  }

  .soz-speakers-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 640px) {

  body {
    font-size: 16px;
  }

  .soz-nav-dock {
    top: 8px;

    width: calc(100% - 20px);
    margin-top: 8px;
  }

  .soz-hero {
    min-height: auto;
    max-height: none;

    padding: 34px 18px 42px;
  }

  .soz-hero-content {
    margin-top: 10px;
  }

  .soz-hero-eyebrow {
    font-size: 11px;
    line-height: 1.5;
  }

  .soz-hero-monumental-title {
    font-size: clamp(38px, 12vw, 56px);
    line-height: 0.95;

    overflow-wrap: break-word;
  }

  .soz-hero-official-title {
    font-size: 18px;
    line-height: 1.4;
  }

  .soz-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .soz-hero-actions .soz-btn-primary,
  .soz-hero-actions .soz-btn-secondary {
    width: 100%;
    box-sizing: border-box;
  }

  .soz-hero-facts-bar {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .soz-section {
    padding: 56px 18px;
  }

  .soz-section-title {
    font-size: 34px;
  }

  .soz-trunk-node,
  .soz-timeline-reunion {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .soz-node-time,
  .soz-reunion-time {
    font-size: 18px;
  }

  .soz-fork-label-bar {
    gap: 14px;
    padding: 12px;
  }

  .soz-track-badge-left,
  .soz-track-badge-right {
    font-size: 13px;
  }

  .soz-parallel-left,
  .soz-parallel-right {
    padding: 16px;
  }

  .soz-speakers-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 12px;
  }

  .soz-speaker-name {
    font-size: 17px;
  }

  .soz-speaker-role-desc {
    font-size: 12.5px;
  }

  .soz-ticket-column-item {
    padding: 28px 22px;
  }

  .soz-ticket-old-price {
    font-size: 24px;
  }

  .soz-ticket-early-label {
    font-size: 11px;
  }

  .soz-footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;

    padding: 26px 18px;
  }
}


/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

}

.soz-speaker-card-item {
  scroll-margin-top: 110px;
}


/* Linki z programu do profili prelegentów */
.soz-program-speaker-link {
  color: inherit !important;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.28);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;

  transition:
    color 0.18s ease,
    text-decoration-color 0.18s ease;
}

.soz-program-speaker-link:hover {
  color: var(--soz-blue) !important;
  text-decoration-color: var(--soz-blue);
}


/* ORGANIZATOR */

.soz-organizer-section {
  border-top: 1px solid var(--soz-border);
  padding: 64px 32px;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.soz-organizer-logo-link {
  display: block;
  width: fit-content;
  margin: 18px auto 20px;
}

.soz-organizer-logo {
  display: block;
  width: auto;
  max-width: 260px;
  max-height: 110px;
  object-fit: contain;
  margin: 0 auto;
}

.soz-organizer-title {
  font-family: var(--soz-font-display);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--soz-text);
  margin: 0 0 12px;
}

.soz-organizer-description {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--soz-text-muted);
}

@media (max-width: 640px) {
  .soz-organizer-section {
    padding: 52px 18px;
  }

  .soz-organizer-logo {
    max-width: 220px;
    max-height: 90px;
  }

  .soz-organizer-title {
    font-size: 23px;
  }
}


/* =========================================================
   WOOCOMMERCE – BILETY
   ========================================================= */

/* Bez sidebara */
.single-product #sidebar {
    display: none !important;
}

.single-product #left-area {
    float: none !important;
    width: 100% !important;
    padding-right: 0 !important;
}

.single-product #main-content .container::before {
    display: none !important;
}

/* Brak galerii produktu */
.single-product .woocommerce-product-gallery,
.single-product div.product div.images {
    display: none !important;
}

/* Treść produktu na całą szerokość */
.single-product div.product div.summary {
    float: none !important;
    width: 100% !important;
    max-width: 760px;
    margin: 0 auto !important;
}

/* Zabezpieczenie – ukrycie podobnych produktów */
.single-product .related.products {
    display: none !important;
}



/* =========================================================
   WOOCOMMERCE – STRONY BILETÓW
   ========================================================= */

/* Ukrycie sidebara Divi / WooCommerce */
.single-product #sidebar {
  display: none !important;
}

.single-product #left-area {
  float: none !important;
  width: 100% !important;
  padding-right: 0 !important;
}

.single-product #main-content .container::before {
  display: none !important;
}


/* Ukrycie galerii / placeholdera produktu */
.single-product .woocommerce-product-gallery,
.single-product div.product div.images {
  display: none !important;
}


/* Główna część produktu na pełną szerokość */
.single-product div.product div.summary {
  float: none !important;
  width: 100% !important;
  max-width: 820px;
  margin-left: auto !important;
  margin-right: auto !important;
}


/* Awaryjnie ukryj podobne produkty */
.single-product .related.products {
  display: none !important;
}


/* Awaryjnie ukryj meta produktu */
.single-product .product_meta {
  display: none !important;
}

/* =========================================================
   WOOCOMMERCE – STRONA PRODUKTU / BILET
   ========================================================= */

/* Tło i główny kontener */
.single-product #main-content {
  background:
    linear-gradient(180deg, #f8fbff 0%, #f3f6fa 100%);
}

.single-product #main-content .container {
  max-width: 1180px;
  padding-top: 70px;
  padding-bottom: 90px;
}

/* Usuń elementy sklepowe, których nie potrzebujemy */
.single-product .onsale,
.single-product .woocommerce-breadcrumb,
.single-product .product_meta,
.single-product .related.products,
.single-product .woocommerce-product-gallery,
.single-product div.product div.images {
  display: none !important;
}

/* Cały produkt */
.single-product div.product {
  max-width: 980px;
  margin: 0 auto;
}

/* Główna karta produktu */
.single-product div.product div.summary {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 54px 58px 50px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  box-shadow:
    0 24px 70px rgba(15, 23, 42, 0.08),
    0 2px 8px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
}

/* delikatny akcent */
.single-product div.product div.summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2463eb 0%, #48a8ff 100%);
}

/* Mały label nad tytułem */
.single-product div.product div.summary::after {
  content: "INSTRUMENTY SOZ • 06.11.2026";
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #2463eb;
  margin-bottom: 18px;
}

/* Tytuł */
.single-product .product_title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #0f172a;
  margin: 0 0 24px !important;
  max-width: 820px;
}

/* Cena */
.single-product div.product p.price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 24px !important;
  font-family: "Space Grotesk", sans-serif;
}

/* stara cena */
.single-product div.product p.price del {
  color: #94a3b8 !important;
  font-size: 23px;
  font-weight: 500;
  opacity: 1 !important;
}

/* cena aktualna */
.single-product div.product p.price ins {
  text-decoration: none !important;
}

.single-product div.product p.price ins .woocommerce-Price-amount,
.single-product div.product p.price > .woocommerce-Price-amount {
  color: #2463eb !important;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

/* Krótki opis */
.single-product .woocommerce-product-details__short-description {
  max-width: 760px;
  margin: 0 0 32px;
  font-size: 17px;
  line-height: 1.7;
  color: #64748b;
}

.single-product .woocommerce-product-details__short-description p {
  margin: 0;
}

/* Formularz zakupu */
.single-product form.cart {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 !important;
  padding-top: 10px;
}

/* ilość */
.single-product form.cart .quantity {
  margin: 0 !important;
}

.single-product form.cart .qty {
  width: 74px !important;
  height: 56px !important;
  border: 1px solid #dbe3ee !important;
  border-radius: 14px !important;
  background: #f8fafc !important;
  font-family: "Inter", sans-serif;
  font-size: 16px !important;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
}

/* Główny CTA */
.single-product form.cart .single_add_to_cart_button {
  min-height: 56px;
  padding: 0 28px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: #2463eb !important;
  color: #ffffff !important;
  font-family: "Inter", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 56px !important;
  box-shadow: 0 12px 30px rgba(36, 99, 235, 0.22);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.single-product form.cart .single_add_to_cart_button:hover {
  background: #1d4ed8 !important;
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(36, 99, 235, 0.28);
}

/* usuń strzałkę Divi z buttona */
.single-product form.cart .single_add_to_cart_button::after {
  display: none !important;
}


/* =========================================================
   OPIS PRODUKTU
   ========================================================= */

.single-product .woocommerce-tabs {
  max-width: 980px;
  margin: 28px auto 0 !important;
  padding: 0 !important;
}

/* usuń zakładkowy wygląd */
.single-product .woocommerce-tabs ul.tabs {
  display: none !important;
}

.single-product .woocommerce-tabs .panel {
  display: block !important;
  margin: 0 !important;
  padding: 42px 48px !important;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.045);
}

.single-product .woocommerce-tabs .panel h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 18px;
}

.single-product .woocommerce-tabs .panel p {
  font-size: 16px;
  line-height: 1.75;
  color: #64748b;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .single-product #main-content .container {
    padding-top: 36px;
    padding-bottom: 60px;
    width: calc(100% - 30px);
  }

  .single-product div.product div.summary {
    padding: 36px 24px 32px;
    border-radius: 22px;
  }

  .single-product .product_title {
    font-size: 36px;
  }

  .single-product div.product p.price del {
    font-size: 19px;
  }

  .single-product div.product p.price ins .woocommerce-Price-amount,
  .single-product div.product p.price > .woocommerce-Price-amount {
    font-size: 34px;
  }

  .single-product form.cart {
    flex-direction: column;
    align-items: stretch;
  }

  .single-product form.cart .quantity,
  .single-product form.cart .qty {
    width: 100% !important;
  }

  .single-product form.cart .single_add_to_cart_button {
    width: 100% !important;
  }

  .single-product .woocommerce-tabs .panel {
    padding: 30px 24px !important;
    border-radius: 20px;
  }

}



/* =========================================================
   WOOCOMMERCE – GLOBALNY LAYOUT
   ========================================================= */

.woocommerce-cart #main-content,
.woocommerce-checkout #main-content,
.woocommerce-account #main-content {
  background:
    linear-gradient(180deg, #f8fbff 0%, #f3f6fa 100%);
}

.woocommerce-cart #main-content .container,
.woocommerce-checkout #main-content .container,
.woocommerce-account #main-content .container {
  max-width: 1180px;
  padding-top: 70px;
  padding-bottom: 90px;
}

.woocommerce-cart #main-content .container::before,
.woocommerce-checkout #main-content .container::before,
.woocommerce-account #main-content .container::before {
  display: none !important;
}

.woocommerce-cart #left-area,
.woocommerce-checkout #left-area,
.woocommerce-account #left-area {
  float: none !important;
  width: 100% !important;
  padding-right: 0 !important;
}

.woocommerce-cart #sidebar,
.woocommerce-checkout #sidebar,
.woocommerce-account #sidebar {
  display: none !important;
}


/* =========================================================
   TYTUŁY
   ========================================================= */

.woocommerce-cart h1,
.woocommerce-checkout h1,
.woocommerce-account h1,
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title,
.woocommerce-account .entry-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #0f172a;
  margin-bottom: 36px;
}


/* =========================================================
   GŁÓWNA KARTA
   ========================================================= */

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce {
  max-width: 1100px;
  margin: 0 auto;
}

.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart-collaterals,
.woocommerce-checkout form.checkout,
.woocommerce-account .woocommerce-MyAccount-content {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow:
    0 20px 60px rgba(15, 23, 42, 0.06),
    0 2px 8px rgba(15, 23, 42, 0.035);
}


/* =========================================================
   KOSZYK
   ========================================================= */

.woocommerce-cart .woocommerce-cart-form {
  padding: 28px;
}

.woocommerce-cart table.shop_table {
  border: 0 !important;
  margin: 0 !important;
}

.woocommerce-cart table.shop_table th {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0 !important;
  padding: 16px 12px !important;
}

.woocommerce-cart table.shop_table td {
  padding: 20px 12px !important;
  border-top: 0 !important;
  border-bottom: 1px solid #eef2f7 !important;
  vertical-align: middle;
}

.woocommerce-cart .product-name a {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: #0f172a !important;
}

.woocommerce-cart .product-thumbnail {
  display: none !important;
}

.woocommerce-cart .product-price del {
  color: #94a3b8;
}

.woocommerce-cart .cart-collaterals {
  margin-top: 24px;
  padding: 30px;
}

.woocommerce-cart .cart_totals {
  float: none !important;
  width: 100% !important;
  max-width: 480px;
  margin-left: auto;
}

.woocommerce-cart .cart_totals h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
}

.woocommerce-cart .wc-proceed-to-checkout {
  padding-bottom: 0 !important;
}


/* =========================================================
   CHECKOUT
   ========================================================= */

.woocommerce-checkout form.checkout {
  padding: 36px;
}

.woocommerce-checkout .col2-set,
.woocommerce-checkout #order_review {
  width: 100% !important;
  float: none !important;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
  float: none !important;
  width: 100% !important;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout #order_review_heading {
  font-family: "Space Grotesk", sans-serif;
  font-size: 27px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}

.woocommerce-checkout .form-row {
  margin-bottom: 16px !important;
}

.woocommerce-checkout label {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 7px;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select {
  min-height: 52px;
  border: 1px solid #dbe3ee !important;
  border-radius: 12px !important;
  background: #f8fafc !important;
  padding: 12px 14px !important;
  font-size: 15px !important;
  color: #0f172a !important;
}

.woocommerce-checkout textarea {
  min-height: 120px;
}

.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus {
  border-color: #2463eb !important;
  background: #fff !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(36, 99, 235, 0.08);
}

.woocommerce-checkout #order_review {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
}

.woocommerce-checkout table.shop_table {
  border: 0 !important;
}

.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
  padding: 14px 10px !important;
  border-color: #edf2f7 !important;
}


/* =========================================================
   PRZYCISKI
   ========================================================= */

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .checkout-button,
.woocommerce #place_order {
  border: 0 !important;
  border-radius: 14px !important;
  background: #2463eb !important;
  color: #fff !important;
  font-family: "Inter", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 16px 24px !important;
  line-height: 1.2 !important;
  box-shadow: 0 10px 26px rgba(36, 99, 235, 0.18);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .checkout-button:hover,
.woocommerce #place_order:hover {
  background: #1d4ed8 !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(36, 99, 235, 0.24);
}

.woocommerce a.button::after,
.woocommerce button.button::after,
.woocommerce input.button::after {
  display: none !important;
}


/* =========================================================
   KOMUNIKATY
   ========================================================= */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border: 0 !important;
  border-radius: 16px !important;
  padding: 18px 22px !important;
  margin-bottom: 26px !important;
  box-shadow: none !important;
}

.woocommerce-message {
  background: #eefbf4 !important;
  color: #166534 !important;
}

.woocommerce-info {
  background: #eff6ff !important;
  color: #1e40af !important;
}

.woocommerce-error {
  background: #fff1f2 !important;
  color: #9f1239 !important;
}


/* =========================================================
   ORDER RECEIVED
   ========================================================= */

.woocommerce-order-received .woocommerce-order {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.woocommerce-order-received
.woocommerce-thankyou-order-received {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 28px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .woocommerce-cart #main-content .container,
  .woocommerce-checkout #main-content .container,
  .woocommerce-account #main-content .container {
    width: calc(100% - 30px);
    padding-top: 36px;
    padding-bottom: 60px;
  }

  .woocommerce-cart .woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals,
  .woocommerce-checkout form.checkout,
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-order-received .woocommerce-order {
    padding: 22px;
    border-radius: 20px;
  }

  .woocommerce-cart .cart_totals {
    max-width: none;
  }

  .woocommerce-checkout form.checkout {
    padding: 24px;
  }

}

.soz-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 10px 0;
}

.soz-footer-nav a {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.soz-footer-nav a:hover {
  opacity: 1;
}


.soz-venue-map-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.soz-venue-map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
}

.soz-venue-description {
  margin: 28px 0 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--soz-text-muted);
}

@media (max-width: 767px) {
  .soz-venue-map-wrap iframe {
    height: 320px;
  }
}





/* =========================
   HERO – SYSTEM GRAPHIC
   ========================= */

.soz-hero {
  position: relative;
  overflow: hidden;
}

.soz-hero-content,
.soz-hero-facts-bar {
  position: relative;
  z-index: 2;
}

.soz-hero-system-graphic {
  position: absolute;
  z-index: 1;
  width: min(40vw, 610px);
  aspect-ratio: 1;
  right: -2%;
  top: 17%;
  pointer-events: none;
  opacity: 0.52;

  animation: sozHeroFloat 9s ease-in-out infinite;
}

.soz-hero-system-graphic svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.soz-system-ring {
  fill: none;
  stroke: #2563eb;
  stroke-width: 1.2;
  opacity: 0.11;
}

.soz-system-ring.ring-2 {
  stroke: #38bdf8;
  opacity: 0.15;
}

.soz-system-ring.ring-3 {
  stroke: #2563eb;
  opacity: 0.18;
}

.soz-system-line {
  fill: none;
  stroke: #2563eb;
  stroke-width: 1.3;
  opacity: 0.13;
}

.soz-system-line.faint {
  opacity: 0.065;
}

.soz-system-node {
  fill: #38bdf8;
  opacity: 0.42;
}

.soz-system-node.main {
  fill: #2563eb;
  opacity: 0.65;
}

.soz-system-label {
  fill: #2563eb;
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.14em;
  opacity: 0.28;
}

.soz-system-number {
  fill: #2563eb;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.18;
}

/* Obrót zewnętrznej części */
.soz-system-rotate-slow {
  transform-origin: 300px 300px;
  animation: sozSystemRotate 28s linear infinite;
}

/* Delikatny obrót w drugą stronę */
.soz-system-rotate-reverse {
  transform-origin: 300px 300px;
  animation: sozSystemRotateReverse 38s linear infinite;
}

/* Puls środka */
.soz-node-pulse {
  transform-origin: center;
  animation: sozNodePulse 3.5s ease-in-out infinite;
}

/* Drobne pulsowanie punktów */
.node-1,
.node-5 {
  animation: sozNodeBlink 4.5s ease-in-out infinite;
}

.node-2,
.node-6 {
  animation: sozNodeBlink 5.5s ease-in-out infinite 0.8s;
}

.node-3,
.node-7 {
  animation: sozNodeBlink 6s ease-in-out infinite 1.4s;
}

.node-4,
.node-8 {
  animation: sozNodeBlink 5s ease-in-out infinite 2s;
}

/* Cała grafika minimalnie "oddycha" */
@keyframes sozHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-8px, -12px, 0);
  }
}

@keyframes sozSystemRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes sozSystemRotateReverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes sozNodePulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.35);
  }
}

@keyframes sozNodeBlink {
  0%,
  100% {
    opacity: 0.28;
  }

  50% {
    opacity: 0.68;
  }
}

/* Tablet */
@media (max-width: 980px) {
  .soz-hero-system-graphic {
    width: 500px;
    right: -170px;
    top: 21%;
    opacity: 0.38;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .soz-hero-system-graphic {
    width: 390px;
    right: -210px;
    top: 25%;
    opacity: 0.24;
  }
}

/* Szacunek dla ustawienia systemowego */
@media (prefers-reduced-motion: reduce) {
  .soz-hero-system-graphic,
  .soz-system-rotate-slow,
  .soz-system-rotate-reverse,
  .soz-node-pulse,
  .soz-system-node {
    animation: none !important;
  }
}


.soz-tickets-early-note {
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--soz-blue-light);
}


.soz-hero-early-bird {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;

  margin: 22px 0 4px;
  padding: 10px 14px;

  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;

  font-size: 14px;
  line-height: 1.4;
  color: var(--soz-text);
}

.soz-hero-early-bird-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 5px 9px;

  background: var(--soz-blue-light);
  border-radius: 999px;

  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.soz-hero-early-bird-text {
  color: var(--soz-text-muted);
}

.soz-hero-early-bird-text strong {
  color: var(--soz-text);
  font-weight: 700;
}

.soz-hero-early-bird-link {
  color: var(--soz-blue-light);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.soz-hero-early-bird-link:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .soz-hero-early-bird {
    display: flex;
    width: 100%;
    border-radius: 16px;
  }

  .soz-hero-early-bird-link {
    width: 100%;
  }
}


/* HERO – układ eyebrow + Early Bird */

.soz-hero-eyebrow {
  width: 100%;
  flex-basis: 100%;
}

.soz-hero-early-bird {
  display: flex;
  width: fit-content;
  max-width: 100%;
  flex-basis: auto;

  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;

  margin: 14px 0 18px;
  padding: 10px 14px;

  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;

  font-size: 14px;
  line-height: 1.4;
  color: var(--soz-text);
}

/* wymusza rozpoczęcie paska od nowej linii */
.soz-hero-early-bird::before {
  content: "";
  display: none;
}

.soz-hero-monumental-title {
  flex-basis: 100%;
}

.soz-hero-official-title,
.soz-hero-lead,
.soz-hero-actions {
  flex-basis: 100%;
}

@media (max-width: 767px) {
  .soz-hero-early-bird {
    width: 100%;
    border-radius: 16px;
  }

  .soz-hero-early-bird-link {
    width: 100%;
  }
}

.soz-speaker-photo-credit {
  margin-top: 6px;
  font-size: 10px;
  line-height: 1.3;
  opacity: 0.55;
}