

/* Start:/local/lib/constructor/blocks/industry-block/industry-block.css?17797163594772*/
.industry-map {
  position: relative;
  background: #0D1B2A;
  overflow: hidden;
}
.industry-map__overlay {
  position: absolute;
  inset: 0;
  opacity: .2;
  background: linear-gradient(to bottom, transparent, rgba(201, 73, 75, .05), transparent);
}
.industry-map__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 1.25rem 8rem;
}
.industry-map__head { text-align: center; margin-bottom: 4rem; }
.industry-map__accent { margin: 0 auto 1.5rem; }
.industry-map__title { margin: 0 0 1.5rem; color: #fff; font-size: clamp(2rem, 6vw, 4rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; }
.industry-map__lead { margin: 0 auto; max-width: 700px; color: rgba(255,255,255,.8); font-size: clamp(1rem, 2vw, 1.125rem); line-height: 1.7; }
.industry-map__zones { display: flex; flex-direction: column; gap: 6rem; }
.industry-map__zone { display: grid; gap: 2rem 4rem; align-items: center; grid-template-columns: 1fr; }
.industry-map__media {
  --zone-color: #c9494b;
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--zone-color) 25%, transparent);
}
.industry-map__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.industry-map__media:hover .industry-map__image { transform: scale(1.1); }
.industry-map__media-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, color-mix(in srgb, var(--zone-color) 25%, transparent), color-mix(in srgb, var(--zone-color) 6%, transparent)); }
.industry-map__icon-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: color-mix(in srgb, var(--zone-color) 60%, transparent);
  border: 2px solid var(--zone-color);
}
.industry-map__zone-label-wrap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.5), transparent); }
.industry-map__zone-label {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid color-mix(in srgb, var(--zone-color) 60%, transparent);
  background: color-mix(in srgb, var(--zone-color) 30%, transparent);
}
.industry-map__zone-dot { width: .5rem; height: .5rem; border-radius: 999px; background: #fff; animation: industryDotPulse 1.8s ease-in-out infinite; }
.industry-map__meta { display: flex; align-items: center; gap: .65rem; margin-bottom: 1rem; }
.industry-map__meta-icon { width: 1.5rem; height: 1.5rem; color: #c9494b; display: flex; align-items: center; justify-content: center; }
.industry-map__meta-title { font-size: 13px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.industry-map__subtitle { margin: 0 0 1rem; color: #fff; font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.2; }
.industry-map__text { margin: 0 0 1.5rem; color: rgba(255,255,255,.8); font-size: clamp(1rem, 2vw, 1.125rem); line-height: 1.7; }
.industry-map__link { color: rgba(255,255,255,.85); font-size: 14px; text-decoration: none; transition: color .2s ease; }
.industry-map__link:hover { color: #fff; }
.industry-map__cta { margin-top: 6rem; text-align: center; }
.industry-map__cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: center; }
.industry-map__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  padding: 0 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  transition: all .2s ease;
}
.industry-map__btn--primary { background: #c9494b; color: #fff; }
.industry-map__btn--primary:hover { background: #af3d40; }
.industry-map__btn--ghost { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: #fff; }
.industry-map__btn--ghost:hover { background: rgba(255,255,255,.1); }

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

@keyframes industryDotPulse {
  0% { opacity: .5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
  100% { opacity: .5; transform: scale(1); }
}

@media (min-width: 768px) {
  .industry-map__zone { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-map__zone--reverse .industry-map__visual { order: 2; }
  .industry-map__zone--reverse .industry-map__content { order: 1; }
  .industry-map__cta-actions { flex-direction: row; }
}

/* End */


/* Start:/local/lib/constructor/blocks/speakers-block/speakers-block.css?17797163596312*/
.speaker-mic {
  position: relative;
  padding: 5rem 0 8rem;
  background: linear-gradient(180deg, #0D1B2A 0%, #111111 50%, #0D1B2A 100%);
  overflow: hidden;
}
.speaker-mic__orb {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}
.speaker-mic__orb--left { top: 25%; left: 25%; background: rgba(201, 73, 75, 0.1); }
.speaker-mic__orb--right { bottom: 25%; right: 25%; background: rgba(53, 108, 172, 0.1); }
.speaker-mic__container { position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; padding: 0 1.25rem; }
.speaker-mic__head { text-align: center; margin-bottom: 3rem; }
.speaker-mic__accent { margin: 0 auto 1.5rem; }
.speaker-mic__title { margin: 0 0 1.5rem; font-size: clamp(1.875rem, 5vw, 3.75rem); color: #fff; font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; }
.speaker-mic__lead { margin: 0 auto; max-width: 700px; color: rgba(255, 255, 255, 0.8); font-size: clamp(1rem, 2vw, 1.125rem); line-height: 1.6; }
.speaker-mic__slider-wrap { position: relative; }
.speaker-mic__center-mic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  background: #c9494b;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 0 40px rgba(201, 73, 75, 0.4);
  pointer-events: none;
}
.speaker-mic__pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #c9494b;
  animation: speakerMicPulse 2s ease-in-out infinite;
}
.speaker-mic__scroll {
  overflow-x: auto;
  cursor: grab;
  user-select: none;
  padding: 3rem 0;
}
.speaker-mic__scroll.is-dragging { cursor: grabbing; }
.speaker-mic__track { display: flex; gap: 2rem; padding: 0 1rem; width: max-content; }
.speaker-card { width: 350px; flex-shrink: 0; }
.speaker-card__stack { min-height: 820px; display: flex; flex-direction: column; }
.speaker-card__photo-wrap { position: relative; aspect-ratio: 3/4; border-radius: 1rem; overflow: hidden; margin-bottom: 1.5rem; background: #132134; }
.speaker-card__photo { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .7s ease; }
.speaker-card:hover .speaker-card__photo { transform: scale(1.05); }
.speaker-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, .8), rgba(0, 0, 0, .2) 60%, transparent); opacity: .6; transition: opacity .3s ease; }
.speaker-card:hover .speaker-card__overlay { opacity: .4; }
.speaker-card__format { position: absolute; top: 1rem; right: 1rem; padding: .4rem .75rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); background: rgba(0,0,0,.6); backdrop-filter: blur(8px); color: #fff; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.speaker-card__meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; }
.speaker-card__company-meta { font-size: 13px; color: rgba(255,255,255,.9); margin-bottom: .2rem; }
.speaker-card__time { font-size: 11px; color: rgba(255,255,255,.8); }
.speaker-card__name { margin: 0 0 .5rem; font-size: clamp(1.5rem, 2.5vw, 1.9rem); color: #fff; font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; }
.speaker-card__position { font-size: 15px; color: rgba(255,255,255,.8); margin-bottom: .2rem; }
.speaker-card__company { font-size: 15px; color: #c9494b; font-weight: 500; margin-bottom: 1rem; }
.speaker-card__extended { display: none; overflow: hidden; }
.speaker-card.is-center .speaker-card__extended { display: block; }
.speaker-card__thesis { margin: 0 0 1rem; padding-left: 1rem; border-left: 2px solid #c9494b; color: rgba(255,255,255,.9); font-size: 1.1rem; line-height: 1.3; font-style: italic; }
.speaker-card__topic-label { color: rgba(255,255,255,.7); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .3rem; }
.speaker-card__topic { margin: 0 0 1rem; color: #fff; font-size: 15px; line-height: 1.55; }
.speaker-card__actions { display: flex; flex-wrap: wrap; gap: .75rem; padding-top: .3rem; }
.speaker-card__btn { display: inline-flex; align-items: center; gap: .5rem; height: 2.75rem; padding: 0 1.15rem; border-radius: 999px; text-decoration: none; font-size: 13px; transition: .2s ease; }
.speaker-card__btn--primary { background: #c9494b; color: #fff; }
.speaker-card__btn--primary:hover { background: #af3d40; }
.speaker-card__btn--ghost { background: rgba(255,255,255,.05); color: #fff; border: 1px solid rgba(255,255,255,.12); }
.speaker-card__btn--ghost:hover { background: rgba(255,255,255,.1); }
.speaker-mic__hint { margin-top: .5rem; text-align: center; color: rgba(255,255,255,.6); font-size: 13px; }
.speaker-mic__empty { min-width: 320px; border-radius: 1rem; padding: 2rem; color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); }
.speaker-mic__cta { text-align: center; margin-top: 4rem; padding-top: 4rem; border-top: 1px solid rgba(255,255,255,.1); }
.speaker-mic__cta-title { margin: 0 0 1.5rem; color: #fff; font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 500; letter-spacing: -0.02em; }
.speaker-mic__cta-text { margin: 0 auto 2rem; max-width: 600px; color: rgba(255,255,255,.8); font-size: 16px; }
.speaker-mic__cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.speaker-mic__btn { display: inline-flex; align-items: center; justify-content: center; gap: .75rem; padding: 0 2rem; height: 3.5rem; border-radius: 999px; font-size: 15px; text-decoration: none; transition: .2s ease; }
.speaker-mic__btn--primary { background: #c9494b; color: #fff; }
.speaker-mic__btn--primary:hover { background: #af3d40; }
.speaker-mic__btn--ghost { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: #fff; }
.speaker-mic__btn--ghost:hover { background: rgba(255,255,255,.1); }

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

@keyframes speakerMicPulse {
  0% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1); opacity: .5; }
}

@media (min-width: 768px) {
  .speaker-mic__center-mic { width: 6rem; height: 6rem; }
  .speaker-card { width: 400px; }
}

/* End */


/* Start:/local/lib/constructor/blocks/tickets-block/tickets-block.css?177971635911436*/
.reg-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}

.reg-modal.is-open {
  display: flex;
}

.reg-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.reg-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  margin: 1rem auto 2rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1rem 1.25rem 1.5rem;
}

[data-reg-form] {
  position: relative;
}

.reg-form-loading {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(26, 26, 26, 0.88);
  border-radius: 0.75rem;
}

.reg-form-loading[hidden] {
  display: none !important;
}

.reg-form-loading__spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: #c9494b;
  border-radius: 50%;
  animation: reg-form-spin 0.75s linear infinite;
}

.reg-form-loading__text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

@keyframes reg-form-spin {
  to {
    transform: rotate(360deg);
  }
}

.reg-modal--submitting .reg-modal__close {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

.reg-modal--submitting .reg-modal__backdrop {
  pointer-events: none;
}

@media (min-width: 768px) {
  .reg-modal__dialog {
    padding: 2rem;
  }
}

.reg-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.reg-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.reg-modal__title {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 3rem 0.25rem 0;
}

.reg-modal__subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 1.5rem;
}

.reg-participant {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.reg-participant__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.reg-participant__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.reg-participant__remove {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.reg-participant__remove:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.reg-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .reg-fields {
    grid-template-columns: 1fr 1fr;
  }
}

.reg-field {
  position: relative;
}

.reg-field__icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.reg-field--error .reg-field__icon {
  color: #ef4444;
}

.reg-field input,
.reg-field select {
  width: 100%;
  height: 2.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.reg-field input {
  padding: 0 1rem 0 2.5rem;
}

.reg-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.reg-field select {
  padding: 0 2rem 0 1rem;
  appearance: none;
}

.reg-field--no-icon input {
  padding-left: 1rem;
}

.reg-field input:focus,
.reg-field select:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 73, 75, 0.5);
}

.reg-field--error input,
.reg-field--error select {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.reg-participant__price {
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 12px;
}

.reg-participant__price-label {
  color: rgba(255, 255, 255, 0.55);
  min-width: 0;
}

.reg-participant__price-value {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  white-space: nowrap;
}

.reg-add-participant {
  width: 100%;
  height: 3rem;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.reg-add-participant:hover {
  border-color: rgba(201, 73, 75, 0.5);
  background: rgba(201, 73, 75, 0.05);
  color: #fff;
}

.reg-contact {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.reg-contact__toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.reg-contact__toggle input {
  width: 1rem;
  height: 1rem;
  accent-color: #c9494b;
}

.reg-contact__toggle span {
  font-size: 14px;
  color: #fff;
}

.reg-contact__hint {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.reg-contact__fields {
  display: none;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.reg-contact__fields.is-visible {
  display: grid;
}

@media (min-width: 768px) {
  .reg-contact__fields.is-visible {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reg-totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reg-totals__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.reg-totals__sum {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
}

.reg-error {
  margin-bottom: 1rem;
  font-size: 13px;
  color: #ef9ea0;
}

.reg-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .reg-actions {
    flex-direction: row;
  }
}

.reg-btn {
  flex: 1;
  min-height: 3rem;
  border-radius: 0.75rem;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s, border-color 0.2s;
}

.reg-btn--primary {
  border: none;
  background: #c9494b;
  color: #fff;
}

.reg-btn--primary:hover {
  background: #af3d40;
}

.reg-btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #fff;
}

.reg-btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.reg-privacy {
  margin-top: 1rem;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.reg-success {
  text-align: center;
  padding: 3rem 0.5rem;
}

.reg-success__icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  background: rgba(201, 73, 75, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9494b;
}

.reg-success h3 {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.reg-success p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 440px;
  margin: 0 auto;
}

.tickets-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.tickets-section__accent {
  margin: 0 auto 1.5rem;
}

.tickets-section__title {
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.reg-totals__count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.25rem;
}

.reg-totals__sum-wrap {
  text-align: right;
}

.tickets-section {
  padding: 5rem 0 8rem;
}

.tickets-section__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .tickets-section {
    padding: 8rem 0;
  }

  .tickets-section__inner {
    padding-inline: 2rem;
  }
}

.tickets-section__subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .tickets-section__subtitle {
    font-size: 16px;
  }
}

.tickets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .tickets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .tickets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ticket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  transition: border-color 0.3s;
}

.ticket-card:hover {
  border-color: rgba(201, 73, 75, 0.5);
}

.ticket-card--popular {
  border-color: rgba(201, 73, 75, 0.4);
  background: linear-gradient(135deg, rgba(201, 73, 75, 0.12) 0%, rgba(201, 73, 75, 0.05) 100%);
}

.ticket-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 1.75rem;
  padding: 0.125rem 0.75rem;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #c9494b;
  color: #fff;
}

.ticket-card__type {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.25rem;
}

.ticket-card__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.ticket-card__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.ticket-card__price {
  font-size: 2.25rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ticket-card__next {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.ticket-card__period {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.ticket-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.ticket-card__tag {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.125rem 0.625rem;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}

.ticket-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.ticket-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.ticket-card__features svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.ticket-card__cta {
  margin-top: auto;
  width: 100%;
  height: 3rem;
  border: none;
  border-radius: 999px;
  background: #c9494b;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.ticket-card__cta:hover {
  background: #af3d40;
}

/* End */


/* Start:/local/lib/constructor/blocks/participate-block/participate-block.css?17797163596578*/
.participate { padding: 5rem 0 7rem; background: #081220; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.participate__container { max-width: 1400px; margin: 0 auto; padding: 0 1.25rem; }
.participate__head { text-align: center; margin-bottom: 4rem; }
.participate__accent { margin: 0 auto 1.5rem; }
.participate__title { margin: 0 0 1.5rem; color: #fff; font-size: clamp(1.875rem, 5vw, 3.75rem); font-weight: 600; line-height: 1.1; letter-spacing: -0.03em; }
.participate__lead { margin: 0 auto; max-width: 700px; color: rgba(255,255,255,.85); font-size: clamp(1rem, 2vw, 1.125rem); }
.participate__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.participate__cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.participate-card { position: relative; padding: 1.5rem; border-radius: 1rem; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.07); transition: all .35s ease; cursor: pointer; text-align: left; overflow: hidden; }
.participate-card:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); }
.participate-card__indicator { position: absolute; inset: 0; border-radius: 1rem; opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.participate-card--active { background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.06)); box-shadow: 0 16px 40px rgba(0,0,0,.2); }
.participate-card--active .participate-card__indicator { opacity: 1; }
.participate-card__inner { position: relative; z-index: 1; }
.participate-card__icon { width: 3rem; height: 3rem; border-radius: .75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: transform .25s ease; }
.participate-card:hover .participate-card__icon { transform: scale(1.05); }
.participate-card--active .participate-card__icon { transform: scale(1.1); }
.participate-card__title { margin: 0 0 .25rem; color: rgba(255,255,255,.9); font-size: clamp(1.35rem, 2.4vw, 2rem); font-weight: 500; letter-spacing: -0.01em; line-height: 1.2; }
.participate-card--active .participate-card__title { color: #fff; }
.participate-card__text { margin: 0; color: rgba(255,255,255,.85); font-size: .9rem; }

.participate__detail { border-radius: 1rem; border: 1px solid rgba(255,255,255,.1); background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03)); padding: 2rem; transition: opacity .25s ease, transform .25s ease; }
.participate__detail.is-changing { opacity: .65; transform: translateX(8px); }
.participate__detail-head { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.participate__detail-icon { width: 4rem; height: 4rem; border-radius: .75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.participate__detail-title { margin: 0 0 .5rem; color: #fff; font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
.participate__detail-subtitle { margin: 0; color: rgba(255,255,255,.85); font-size: .95rem; }
.participate__desc { margin: 0 0 2rem; color: rgba(255,255,255,.85); font-size: 1rem; line-height: 1.7; }
.participate__list { margin: 0 0 2rem; padding: 0; list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.participate__item { display: flex; align-items: flex-start; gap: .75rem; color: rgba(255,255,255,.85); font-size: .95rem; line-height: 1.5; }
.participate__dot-wrap { width: 1.25rem; height: 1.25rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: .1rem; flex-shrink: 0; }
.participate__dot { width: .45rem; height: .45rem; border-radius: 50%; }
.participate__cta { display: inline-flex; width: 100%; height: 3.5rem; border-radius: 999px; border: 0; color: #fff; align-items: center; justify-content: center; gap: .5rem; font-size: .95rem; font-weight: 500; text-decoration: none; transition: background .2s ease, transform .2s ease; cursor: pointer; }
.participate__cta:hover { transform: scale(1.02); }
.participate__cta svg { transition: transform .2s ease; }
.participate__cta:hover svg { transform: translateX(4px); }
.participate__foot { margin-top: 4rem; text-align: center; }
.participate__foot p { margin: 0 0 1rem; color: rgba(255,255,255,.85); font-size: .95rem; }
.participate__mail { color: #c9494b; text-decoration: none; font-size: .95rem; font-weight: 500; }
.participate__mail:hover { color: #af3d40; }

.participate-modal { position: fixed; inset: 0; z-index: 1200; display: none; }
.participate-modal.is-open { display: block; }
.participate-modal__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .8); backdrop-filter: blur(4px); }
.participate-modal__wrap { position: relative; min-height: 100%; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.participate-modal__panel { width: 100%; max-width: 760px; background: linear-gradient(135deg, #1a1a1a, #0D1B2A); border: 1px solid rgba(255,255,255,.1); border-radius: 1rem; padding: 2rem; box-shadow: 0 20px 60px rgba(0,0,0,.45); }
.participate-modal__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.participate-modal__title { margin: 0; color: #fff; font-size: 1.65rem; font-weight: 500; letter-spacing: -0.02em; }
.participate-modal__close { width: 2.5rem; height: 2.5rem; border-radius: 999px; border: 0; cursor: pointer; background: rgba(255,255,255,.08); color: rgba(255,255,255,.9); }
.participate-modal__form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
.participate-modal input, .participate-modal textarea { width: 100%; box-sizing: border-box; padding: .8rem 1rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: .75rem; color: #fff; font-size: .95rem; }
.participate-modal textarea { min-height: 110px; resize: vertical; }
.participate-modal input:focus, .participate-modal textarea:focus { outline: none; border-color: rgba(201,73,75,.5); }
.participate-modal__submit { width: 100%; height: 3rem; border-radius: 999px; border: 0; cursor: pointer; background: #c9494b; color: #fff; font-size: .95rem; font-weight: 500; margin-top: .5rem; }
.participate-modal__submit:hover { background: #af3d40; }

@media (min-width: 1024px) {
  .participate__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .participate-card { padding: 2rem; }
}
@media (min-width: 768px) {
  .participate-modal__form-grid { grid-template-columns: 1fr 1fr; }
}

/* End */
/* /local/lib/constructor/blocks/industry-block/industry-block.css?17797163594772 */
/* /local/lib/constructor/blocks/speakers-block/speakers-block.css?17797163596312 */
/* /local/lib/constructor/blocks/tickets-block/tickets-block.css?177971635911436 */
/* /local/lib/constructor/blocks/participate-block/participate-block.css?17797163596578 */
