:root {
  --bg: #fcfbf9;
  --text: #22181b;
  --overlay: rgba(34, 25, 28, 0.04);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.hero {
  height: 763px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  position: relative;
  z-index: 2;
  overflow: visible;
  background-image: linear-gradient(var(--overlay), var(--overlay)), url("assets/hero-desktop.png");
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.hero__inner {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 32px;
}

.hero__badge {
  grid-area: 1 / 1;
  display: block;
  justify-self: end;
  align-self: start;
  width: 230px;
  height: 316px;
  margin-top: 646px;
  margin-right: -4px;
  object-fit: cover;
  pointer-events: none;
  z-index: 3;
  transform: rotate(-9deg);
  transform-origin: 50% 50%;
}

.hero__badge--mobile {
  display: none;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 62px;
}

.header__right::before {
  content: "";
  flex: 0 0 70px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo {
  width: 140.167px;
  height: 45px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 62px;
}

.nav a {
  text-decoration: none;
  color: #525252;
  font-family: "FixelText", "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

.mobile-menu__nav a {
  text-decoration: none;
  color: #22181b;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  text-transform: none;
  white-space: nowrap;
}

.header__socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__socials a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header__socials img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero__content {
  margin-top: 75px;
  width: min(1077px, 100%);
}

.hero__meta {
  display: flex;
  align-items: flex-end;
  gap: 65px;
  margin-left: 4px;
}

.hero__meta-item {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  color: #525252;
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}

.hero__meta-item img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.hero__title {
  margin: 22px 0 0;
  color: #525252;
  font-family: "Unbounded", sans-serif;
  font-size: 70px;
  line-height: 83px;
  font-weight: 400;
  letter-spacing: 0;
}

.hero__actions {
  margin-top: 68px;
  margin-left: 4px;
  display: flex;
  align-items: center;
  gap: 9.998px;
}

.hero__btn {
  min-height: 37.765px;
  border-radius: 32.808px;
  padding: 9.229px 11.536px 11.536px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  white-space: nowrap;
}

.hero__btn--light {
  min-width: 223.47px;
  background: #fff;
  color: #22181b;
  border: 0.769px solid #fff;
}

.hero__btn--outline {
  min-width: 176.887px;
  border: 0.769px solid rgba(34, 24, 27, 0.49);
  color: #22181b;
  background: transparent;
  opacity: 0.76;
}

.menu-toggle {
  border: 0;
  padding: 0;
  background: transparent;
  color: #22181b;
  width: 30.996px;
  height: 23.025px;
  position: relative;
  cursor: pointer;
  display: none;
}

.menu-toggle__label,
.menu-toggle__label::before,
.menu-toggle__label::after {
  position: absolute;
  left: 0;
  width: 30.996px;
  height: 3.636px;
  border-radius: 8px;
  background: currentcolor;
  content: "";
}

.menu-toggle__label {
  top: 0;
  font-size: 0;
}

.menu-toggle__label::before {
  top: 9.69px;
}

.menu-toggle__label::after {
  top: 19.39px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 16px 0;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow: hidden;
  will-change: transform;
}

.mobile-menu.is-open {
  transform: none;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-menu__logo {
  width: 129px;
  height: 42px;
}

.menu-close {
  border: 0;
  background: transparent;
  width: 35px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  cursor: pointer;
}

.menu-close__x {
  width: 35px;
  height: 35px;
  display: inline-block;
  position: relative;
  color: #000;
}

.menu-close__x::before,
.menu-close__x::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 35px;
  height: 4px;
  border-radius: 6px;
  background: currentcolor;
  transform-origin: center;
}

.menu-close__x::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close__x::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-close__label {
  margin-top: 1px;
  font-family: "Inter", sans-serif;
  font-size: 8px;
  line-height: 1;
  color: #000;
}

.mobile-menu__nav {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 120px;
}

.mobile-menu__visual {
  position: relative;
  flex: 1 1 auto;
  margin: 22px -16px 0;
  background: #fcfbf9;
  overflow: hidden;
}

.mobile-menu__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 30%);
  pointer-events: none;
  z-index: 1;
}

.mobile-menu__board {
  position: absolute;
  left: -431px;
  right: -431px;
  top: 30px;
  bottom: -420px;
  background-image: url("assets/menu-board.png");
  background-size: 1129px 959px;
  background-position: left top;
  background-repeat: repeat;
  opacity: 0.065;
  z-index: 0;
}

.mobile-menu__piece {
  position: absolute;
  right: 26px;
  bottom: 30px;
  width: 119.598px;
  height: 164.306px;
  object-fit: contain;
  transform: rotate(12.63deg);
  z-index: 2;
}

.invitation {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 140px 0 0;
}

.invitation__inner {
  width: min(767px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.invitation__title {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
}

.invitation__media {
  width: 100%;
  max-width: 767px;
  aspect-ratio: 767 / 408;
  display: grid;
  grid-template-columns: 233fr 301fr 233fr;
}

.invitation__media-bg {
  grid-area: 1 / 1 / 2 / 4;
  width: 100%;
  height: 100%;
  background: rgba(82, 82, 82, 0.07);
}

.invitation__media-preview {
  grid-area: 1 / 2;
  width: 100%;
  height: 100%;
  display: block;
}

.invitation__media-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
}

.invitation__cta {
  width: 230px;
  min-height: 49px;
  border-radius: 42.659px;
  background: #22181b;
  color: #fff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px 15px;
}

.program {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 140px 0 0;
  overflow-x: clip;
}

.program__inner {
  width: min(1442px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.program__title {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 23px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
  color: #22181b;
}

.program__switch {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.program__nav {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #22181b;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.program__nav::before {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.program__nav--prev::before {
  transform: rotate(135deg);
}

.program__nav--next::before {
  transform: rotate(-45deg);
}

.program__day-pill {
  min-width: 239px;
  height: 47px;
  border: 1px solid #000;
  border-radius: 42.659px;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
  color: #22181b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px 15px;
}

.program__event-title {
  margin: 56px 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: 27px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  color: #291f22;
  text-align: center;
}

.program__content {
  margin-top: 67px;
  width: 100%;
}

.program__section + .program__section {
  margin-top: 50px;
}

.program__category {
  margin: 0;
  padding: 0 87px;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
  color: #291f22;
}

.program__category + .program__row {
  margin-top: 26px;
}

.program__row {
  width: 100%;
  padding: 10px;
}

.program__row--accent {
  position: relative;
  z-index: 0;
}

.program__row--accent::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: radial-gradient(118% 70% at 0% 0%, #9acbea 0%, #c3e7ff 16.25%, #9acbea 64.86%, #c3e7ff 100%);
  z-index: -1;
  pointer-events: none;
}

.program__row-inner {
  min-height: 130px;
  padding: 32px 100px 32px 90px;
  display: grid;
  grid-template-columns: 210px minmax(0, 687px) 366px;
  column-gap: 24px;
  align-items: start;
}

.program__time {
  margin: 0;
  min-height: 20px;
  padding-right: 24px;
  border-right: 1px solid rgba(34, 24, 27, 0.35);
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(34, 24, 27, 0.85);
}

.program__topic-title,
.program__speaker-name {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(34, 24, 27, 0.85);
}

.program__topic-description,
.program__speaker-bio {
  margin: 3px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: rgba(34, 24, 27, 0.85);
}

.program__speakers {
  padding-left: 24px;
  border-left: 1px solid rgba(34, 24, 27, 0.35);
}

.program__speaker {
  padding-left: 0;
  border-left: 0;
}

.program__speaker + .program__speaker {
  margin-top: 14px;
}

.program__cta {
  margin-top: 50px;
}

.speakers {
  padding: 90px 0 100px;
  background: var(--bg);
}

.speakers__inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.speakers__title {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 23px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
}

.speakers__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 295px);
  gap: 20px;
  justify-content: center;
}

.speaker-card {
  width: 295px;
  height: 379px;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  perspective: 1400px;
  position: relative;
  cursor: pointer;
}

.speakers:not(.speakers--expanded) .speaker-card--extra {
  display: none;
}

.speaker-card:focus-visible {
  outline: 2px solid #22181b;
  outline-offset: 4px;
  border-radius: 15px;
}

.speaker-card__inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.52s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.speaker-card--flipped .speaker-card__inner {
  transform: rotateY(180deg);
}

.speaker-card__face {
  position: absolute;
  inset: 0;
  border-radius: 15px;
  overflow: hidden;
  backface-visibility: hidden;
}

.speaker-card__face--front {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 20px 15px;
}

.speaker-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-card__overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(39, 39, 39, 0) 70.66%, rgba(39, 39, 39, 0.5) 100%);
}

.speaker-card__face--front h3 {
  margin: 0;
  position: relative;
  z-index: 1;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
  color: #f7efe4;
  text-align: center;
}

.speaker-card__face--front .speaker-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 247px;
  position: relative;
  z-index: 1;
}

.speaker-card__caret {
  width: 16px;
  height: 16px;
  position: relative;
}

.speaker-card__caret::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-right: 1.8px solid #f2f2f2;
  border-bottom: 1.8px solid #f2f2f2;
  transform: rotate(45deg);
}

.speaker-card__face--back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 30px 24px;
  transform: rotateY(180deg);
  background: radial-gradient(97.84% 116.21% at -7.12% -3.82%, #9acbea 0%, #c3e7ff 16.25%, #9acbea 64.86%, #c3e7ff 100%);
}

.speaker-card__details {
  width: 247px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.speaker-card__details h3 {
  margin: 0;
  color: #22181b;
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
}

.speaker-card__details ul {
  margin: 0;
  padding-left: 24px;
  color: #22181b;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

.speaker-card__details li + li {
  margin-top: 9px;
}

.speaker-card__caret-up {
  width: 12px;
  height: 8px;
  margin-top: auto;
  transform: rotate(180deg);
  position: relative;
}

.speaker-card__caret-up::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: #22181b;
}

.speakers__actions {
  margin-top: 50px;
  display: flex;
  gap: 25px;
}

.speakers__more,
.speakers__less {
  width: 230px;
  min-height: 49px;
  border-radius: 42.659px;
  border: 1px solid #22181b;
  background: transparent;
  color: #22181b;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  cursor: pointer;
}

.guest {
  padding: 100px 0 0;
  background: var(--bg);
}

.guest__inner {
  width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guest__title {
  margin: 0 0 50px;
  font-family: "Unbounded", sans-serif;
  font-size: 23px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
  color: #22181b;
}

.guest__frame {
  width: 1240px;
  height: 520px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.guest__board {
  position: absolute;
  inset: 0;
  background: #ececeb;
}

.guest__board::before {
  content: "";
  position: absolute;
  inset: -80px;
  background: url("assets/guest-board.png") center/70% no-repeat;
  opacity: 0.22;
  transform: rotate(2.78deg);
}

.guest__image {
  width: 940px;
  height: 420px;
  border-radius: 15px;
  object-fit: cover;
  object-position: center 24%;
  position: relative;
  z-index: 1;
}

.partners {
  padding: 100px 0 0;
  background: var(--bg);
}

.partners__inner {
  width: 1240px;
  margin: 0 auto;
}

.partners__desktop,
.partners__mobile {
  display: block;
}

.partners__desktop {
  width: 1240px;
  height: auto;
}

.partners__mobile {
  display: none;
}

.packages {
  padding: 100px 0 0;
  background: var(--bg);
}

.packages__inner {
  width: 1240px;
  margin: 0 auto;
}

.packages__title {
  margin: 0 0 50px;
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-size: 23px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
  color: #22181b;
}

.packages__cards {
  border-radius: 15px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.package-card {
  min-height: 468px;
  padding: 42px 57px 40px;
  display: flex;
  flex-direction: column;
}

.package-card--simple {
  background: #ffffff;
}

.package-card--vip {
  background: radial-gradient(120% 90% at 0% 0%, #9acbea 0%, #c8e9ff 37.33%, #9acbea 72.07%, #c8e9ff 100%);
}

.package-card__head {
  display: flex;
  align-items: baseline;
  gap: 22px;
}

.package-card__head h3 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
  color: #22181b;
}

.package-card__head p {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
  color: #22181b;
}

.package-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.package-card li {
  position: relative;
  padding-left: 35px;
  font-size: 18px;
  line-height: 1.2;
  color: #22181b;
}

.package-card li::before {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 0;
  font-size: 28px;
  line-height: 0.8;
}

.packages__cta {
  margin-top: auto;
  width: 230px;
  min-height: 49px;
  border-radius: 42.659px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.2;
}

.packages__cta--dark {
  background: #22181b;
  color: #fff;
}

.packages__cta--muted {
  background: #b5b5b5;
  color: #fff;
}

.contact-form {
  margin-top: 100px;
  background: linear-gradient(rgba(34, 24, 27, 0.16), rgba(34, 24, 27, 0.16));
}

.contact-form__overlay {
  min-height: 639px;
  display: flex;
  align-items: center;
}

.contact-form__inner {
  width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.contact-form__title {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 23px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.contact-form__fields {
  width: 470px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.contact-form__field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.contact-form__field--muted {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form__field input {
  border: 0;
  border-bottom: 1px solid #cfd2d3;
  background: transparent;
  color: #fff;
  outline: none;
  padding: 0 0 10px;
  font: inherit;
}

.contact-form__submit {
  margin-top: 36px;
  width: 186px;
  min-height: 49px;
  border: 0;
  border-radius: 42.659px;
  background: #fff;
  color: #272727;
  font-size: 18px;
  line-height: 1.2;
  cursor: pointer;
}

.site-footer {
  background: #22181b;
  color: #fff;
}

.site-footer__top {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0 72px;
  display: flex;
  gap: 134px;
}

.site-footer__contacts,
.site-footer__partner {
  display: flex;
  flex-direction: column;
}

.site-footer__contacts {
  width: 598px;
  gap: 33px;
}

.site-footer__partner {
  width: 508px;
  gap: 31px;
}

.site-footer h3 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.site-footer__phones {
  display: flex;
  gap: 46px;
}

.site-footer__phones > div {
  width: 179px;
}

.site-footer__socials {
  display: flex;
  gap: 15px;
}

.site-footer__socials img {
  width: 32px;
  height: 32px;
}

.site-footer__bottom {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 46px;
}

.site-footer__logo {
  width: 130px;
  height: 42px;
  object-fit: contain;
}

.site-footer__menu {
  margin-top: -31px;
  display: flex;
  justify-content: flex-end;
  gap: 31px;
}

.site-footer__menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.2;
}

.site-footer__line {
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.site-footer__meta {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.site-footer__meta > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__meta > div:nth-child(1) {
  width: 321px;
}

.site-footer__meta > div:nth-child(2),
.site-footer__meta > div:nth-child(3) {
  width: 179px;
  text-align: right;
}

@media (min-width: 1025px) and (max-width: 1279px) {
  .site-footer__top {
    gap: 56px;
  }

  .site-footer__contacts {
    width: min(598px, calc(50% - 28px));
  }

  .site-footer__partner {
    width: min(508px, calc(50% - 28px));
  }
}

@media (max-width: 1024px) {
  .hero {
    height: 800px;
    background-image: url("assets/hero-mobile-figma.png");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
  }

  .hero__inner {
    width: 100%;
    padding: 59px 20px 0;
  }

  .hero__badge {
    width: 168.755px;
    height: 222.257px;
    margin-top: 713px;
    margin-right: -16.755px;
    transform: rotate(-10.62deg);
  }

  .hero__badge--desktop {
    display: none;
  }

  .hero__badge--mobile {
    display: block;
  }

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

  .logo {
    width: 97px;
    height: 31px;
  }

  .mobile-menu__logo {
    width: 129px;
    height: 42px;
  }

  .nav--desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero__content {
    width: 100%;
    margin: 136px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__meta {
    order: 2;
    width: 222.203px;
    height: 60.683px;
    margin-top: 184px;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .hero__meta-item {
    display: inline-grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    place-items: start;
    width: max-content;
    font-size: 16px;
    line-height: normal;
    text-align: center;
  }

  .hero__meta-item img {
    grid-area: 1 / 1;
  }

  .hero__meta-item span {
    grid-area: 1 / 1;
    white-space: nowrap;
    letter-spacing: -0.01em;
  }

  .hero__meta-item:nth-child(1) img {
    width: 27.211px;
    height: 27.444px;
  }

  .hero__meta-item:nth-child(1) {
    width: 222.203px;
  }

  .hero__meta-item:nth-child(1) span {
    margin-top: 1.87px;
    margin-left: 33.203px;
  }

  .hero__meta-item:nth-child(2) img {
    width: 28.968px;
    height: 29.239px;
  }

  .hero__meta-item:nth-child(2) {
    width: 147.734px;
  }

  .hero__meta-item:nth-child(2) span {
    margin-top: 3.83px;
    margin-left: 38.733px;
  }

  .hero__title {
    order: 1;
    margin-top: 0;
    width: 100%;
    max-width: none;
    font-size: 27.5px;
    line-height: 34px;
    font-weight: 500;
    text-align: center;
  }

  .hero__actions {
    order: 3;
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .hero__btn {
    width: calc(100% - 2px);
    max-width: none;
    min-height: 47px;
    padding: 15px 11px;
    font-size: 14px;
    line-height: 1.2;
    text-transform: none;
  }

  .hero__btn--light {
    color: #2e2e2e;
    opacity: 0.76;
  }

  .hero__btn--outline {
    width: calc(100% - 3px);
    max-width: none;
    border-radius: 32.808px;
    border-color: #fff;
    color: #fff;
    opacity: 1;
  }

  .invitation {
    padding: 100px 0 0;
  }

  .invitation__inner {
    width: 100%;
    padding: 0 16px;
    gap: 50px;
  }

  .invitation__title {
    font-size: 24px;
    line-height: 1.1;
  }

  .invitation__media {
    width: 100%;
    max-width: none;
    aspect-ratio: 358 / 220;
    grid-template-columns: 85fr 187.098fr 86fr;
  }

  .invitation__cta {
    width: calc(100% - 10px);
    min-height: 49px;
    font-family: "Unbounded", sans-serif;
  }

  .program {
    padding: 100px 0 0;
  }

  .program__inner {
    width: 100%;
    padding: 0 16px;
  }

  .program__title {
    font-size: 14px;
  }

  .program__switch {
    margin-top: 30px;
    gap: 14px;
  }

  .program__day-pill {
    min-width: 145px;
    height: 29px;
    padding: 6px 12px 8px;
    font-size: 12px;
  }

  .program__event-title {
    margin-top: 30px;
    font-size: 16px;
  }

  .program__content {
    margin-top: 35px;
  }

  .program__section + .program__section {
    margin-top: 35px;
  }

  .program__category {
    width: 100%;
    padding: 0 0 0 14px;
    font-size: 14px;
  }

  .program__category + .program__row {
    margin-top: 16px;
  }

  .program__row {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding: 0;
  }

  .program__row-inner {
    min-height: 0;
    padding: 32px 20px;
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .program__time {
    padding-right: 0;
    padding-bottom: 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(34, 24, 27, 0.2);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
    font-family: "Unbounded", sans-serif;
  }

  .program__topic-title,
  .program__speaker-name {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
    font-family: "Unbounded", sans-serif;
  }

  .program__topic-description,
  .program__speaker-bio {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.3;
  }

  .program__speakers {
    padding-left: 0;
    border-left: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(34, 24, 27, 0.2);
  }

  .program__speaker {
    padding-left: 0;
    border-left: 0;
    padding-top: 0;
    border-top: 0;
  }

  .program__speaker + .program__speaker {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(34, 24, 27, 0.2);
  }

  .program__cta {
    margin-top: 35px;
    width: calc(100% - 10px);
    min-height: 47px;
    font-size: 14px;
    font-family: "Unbounded", sans-serif;
  }

  .speakers {
    padding-top: 100px;
  }

  .speakers__inner {
    width: 100%;
    padding: 0 16px;
  }

  .speakers__title {
    font-size: 14px;
  }

  .speakers__grid {
    margin-top: 35px;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .speakers:not(.speakers--expanded) .speaker-card:nth-child(n + 6) {
    display: none;
  }

  .speakers.speakers--expanded .speaker-card {
    display: block;
  }

  .speaker-card {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 295 / 379;
  }

  .speaker-card__face--front {
    padding: 0 12px 12px;
  }

  .speaker-card__face--front .speaker-card__content,
  .speaker-card__details {
    width: 100%;
  }

  .speaker-card__face--back {
    padding: 24px 20px;
  }

  .speaker-card__details {
    gap: 14px;
  }

  .speaker-card__details h3 {
    font-size: 16px;
  }

  .speaker-card__details ul {
    font-size: 14px;
  }

  .speakers__actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 35px;
  }

  .speakers__more,
  .speakers__less {
    width: min(347px, 100%);
    min-height: 47px;
    border-radius: 32.808px;
    font-family: "Unbounded", sans-serif;
    font-size: 14px;
  }

  .guest {
    padding-top: 100px;
  }

  .guest__inner {
    width: 390px;
  }

  .guest__title {
    margin-bottom: 35px;
    font-size: 14px;
  }

  .guest__frame {
    width: 390px;
    height: 404px;
    border-radius: 0;
  }

  .guest__board::before {
    inset: -40px;
    background-size: 135%;
    background-position: 62% 50%;
  }

  .guest__image {
    width: 334px;
    height: 229px;
    object-position: center 28%;
  }

  .partners {
    padding-top: 100px;
  }

  .partners__inner {
    width: 363px;
  }

  .partners__desktop {
    display: none;
  }

  .partners__mobile {
    display: block;
    width: 363px;
    height: auto;
    margin: 0 auto;
  }

  .packages {
    padding-top: 100px;
  }

  .packages__inner {
    width: 390px;
  }

  .packages__title {
    margin-bottom: 45px;
    font-size: 14px;
  }

  .packages__cards {
    gap: 39px;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .package-card {
    min-height: 0;
    padding: 21px 16px 23px;
    border-radius: 15px;
  }

  .package-card__head {
    flex-direction: column;
    align-items: center;
    gap: 7px;
  }

  .package-card__head h3 {
    text-align: center;
    font-size: 18px;
  }

  .package-card__head p {
    font-size: 10px;
    text-align: center;
  }

  .package-card ul {
    margin-top: 16px;
    gap: 4px;
  }

  .package-card li {
    font-size: 12px;
    padding-left: 44px;
  }

  .package-card li::before {
    left: 10px;
    top: 2px;
    font-size: 22px;
  }

  .packages__cta {
    margin-top: 21px;
    width: 350px;
    min-height: 49px;
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
  }

  .contact-form {
    margin-top: 100px;
  }

  .contact-form__overlay {
    min-height: 574px;
  }

  .contact-form__inner {
    width: 343px;
    gap: 50px;
  }

  .contact-form__title {
    font-family: "Unbounded", sans-serif;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.25px;
  }

  .contact-form__fields {
    width: 343px;
    gap: 24px;
  }

  .contact-form__field {
    font-size: 16px;
  }

  .contact-form__field input {
    padding-bottom: 12px;
  }

  .contact-form__submit {
    margin-top: 23px;
    width: 348px;
    min-height: 49px;
  }

  .site-footer__top {
    width: 100%;
    padding: 55px 16px 50px;
    gap: 70px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer__contacts,
  .site-footer__partner {
    width: 100%;
    align-items: center;
  }

  .site-footer h3 {
    font-size: 20px;
  }

  .site-footer p {
    font-size: 16px;
  }

  .site-footer__phones {
    flex-direction: column;
    gap: 16px;
  }

  .site-footer__bottom {
    width: 100%;
    padding: 46px 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .site-footer__logo {
    width: 130px;
    height: 39px;
  }

  .site-footer__menu {
    margin: 0;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .site-footer__line {
    margin: 0;
    width: 100%;
  }

  .site-footer__meta {
    margin: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .site-footer__meta > div {
    width: auto;
  }

  .site-footer__meta > div:nth-child(2),
  .site-footer__meta > div:nth-child(3) {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .speakers__grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
  }

  .speaker-card {
    max-width: none;
    width: 100%;
  }

  .speakers__actions {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .speakers__more,
  .speakers__less,
  .speakers__actions .invitation__cta {
    width: 100%;
    max-width: none;
  }
}

@media (min-width: 1025px) and (max-width: 1279px) {
  .speakers__inner {
    width: 100%;
    padding: 0 24px;
  }

  .speakers__grid {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .speaker-card {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 295 / 379;
  }

  .speaker-card__face--front .speaker-card__content,
  .speaker-card__details {
    width: calc(100% - 24px);
  }
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none;
  }
}
