:root {
  --bg: #1a1d24;
  --card: #2c313c;
  --line: #5a6271;
  --white: #fff;
  --cream: #f6f1e2;
  --grey: #c7ccd5;
  --orange: #ef5320;
  --red: #d94743;
  --serif: "PT Serif", Georgia, serif;
  --sans: Inter, Arial, sans-serif;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  margin: 0;
  min-width: 375px;
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input {
  font: inherit;
}
.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.section {
  position: relative;
  padding: 130px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.25s;
  background: linear-gradient(to bottom, rgba(26, 29, 36, 0.9), transparent);
}
.header.scrolled {
  height: 62px;
  background: rgba(26, 29, 36, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.04em;
}
.back-to-site {
  position: fixed;
  z-index: 90;
  right: clamp(16px, 2.5vw, 32px);
  bottom: max(18px, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: rgba(26, 29, 36, 0.92);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    background-color 0.2s,
    transform 0.2s;
}
.back-to-site strong {
  color: var(--orange);
}
.back-to-site:hover {
  background: var(--orange);
  transform: translateY(-2px);
}
.back-to-site:hover strong {
  color: inherit;
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
}
.nav a {
  color: var(--cream);
  transition: 0.2s;
}
.nav a:hover {
  color: var(--orange);
}
.nav__cta {
  border: 1px solid var(--orange);
  border-radius: 6px;
  padding: 10px 15px;
}
.menu {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  width: 42px;
  height: 42px;
  padding: 9px;
}
.menu span {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 7px 0;
  transition: 0.2s;
}
.section-head {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 68px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1.02;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.section-head > p {
  grid-column: 2;
  max-width: 720px;
  color: var(--cream);
  font-size: 20px;
  margin: 16px 0 0;
}
.section-head--center {
  display: block;
  text-align: center;
}
.section-head--center .number {
  display: block;
  margin-bottom: 26px;
}
.section-head--center > p {
  margin: 28px auto 0;
}
.number {
  font-size: 12px;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.18em;
  padding-top: 15px;
}
.eyebrow {
  display: block;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  background: var(--orange);
  color: #fff;
  border: 0;
  border-radius: 7px;
  padding: 17px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}
.button:hover {
  background: var(--orange);
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.button span {
  font-size: 20px;
}
.big-statement {
  font-family: var(--serif);
  font-size: clamp(35px, 5vw, 65px);
  line-height: 1.08;
  text-align: center;
  margin: 90px 0 0;
}
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  overflow: hidden;
}
.hero:before {
  content: "DSDD";
  position: absolute;
  right: -0.04em;
  bottom: -0.28em;
  font-family: var(--serif);
  font-size: min(40vw, 590px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.022);
  font-weight: 700;
}
.hero__glow {
  position: absolute;
  width: 55vw;
  height: 55vw;
  right: -25vw;
  top: -20vw;
  background: var(--orange);
  filter: blur(180px);
  opacity: 0.18;
  border-radius: 50%;
}
.hero__inner {
  position: relative;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(90px, 15.5vw, 210px);
  line-height: 0.74;
  margin: 28px 0 62px;
  letter-spacing: -0.07em;
  font-weight: 700;
}
.hero__title em {
  font-weight: 400;
  color: var(--orange);
  font-size: 0.5em;
  letter-spacing: -0.04em;
}
.hero__lead {
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 44px);
  line-height: 1.18;
  margin: 0 0 55px;
  max-width: 850px;
}
.hero__meta {
  display: flex;
  gap: 0;
  margin-bottom: 35px;
  max-width: 780px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero__meta div {
  padding: 18px 35px 18px 0;
  margin-right: 35px;
}
.hero__meta span,
.hero__meta strong {
  display: block;
}
.hero__meta span {
  font-size: 11px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 3px;
}
.hero__meta strong {
  font-size: 14px;
}
.scroll-mark {
  position: absolute;
  right: 25px;
  bottom: 24px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--grey);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 12px;
}
.scroll-mark i {
  display: block;
  width: 1px;
  height: 42px;
  background: var(--orange);
}
.history {
  background: var(--bg);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  border-bottom: 4px solid var(--orange);
}
.gallery__wide {
  grid-column: span 2;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.05);
  transition: 0.5s;
}
.gallery figure:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}
.dealer-companies {
  padding: 68px 0 62px;
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.dealer-companies h2 {
  margin: 0 0 22px;
  color: var(--white);
  font: 400 clamp(46px, 6vw, 82px)/1.02 var(--serif);
  letter-spacing: -0.03em;
}
.dealer-companies__logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  max-width: 1120px;
  margin-inline: auto;
}
.dealer-companies__item {
  min-width: 0;
  min-height: 142px;
  padding: 15px 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: #f7f7f4;
}
.dealer-companies__item img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}
.dealer-companies__item .dealer-companies__logo--wide {
  width: 118px;
  height: 78px;
}
.dealer-companies__item span {
  color: var(--bg);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}
.dealer-companies__more {
  display: block;
  margin-top: 8px;
  color: var(--orange);
  font: 700 24px var(--serif);
}
.threats {
  overflow: hidden;
}
.orbit {
  position: relative;
  width: min(760px, 100%);
  height: 660px;
  margin: 0 auto;
}
.orbit:before,
.orbit:after {
  content: "";
  position: absolute;
  inset: 100px 150px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.orbit:after {
  inset: 195px 245px;
}
.orbit__center {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.orbit__center svg {
  width: 100px;
  color: var(--cream);
}
.orbit__center svg circle {
  fill: var(--bg);
}
.orbit__center strong {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.orbit__item {
  position: absolute;
  z-index: 3;
  transform: translate(-50%, -50%);
  min-width: 155px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 13px 15px;
  text-align: center;
}
.orbit__item:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  left: 50%;
  bottom: -4px;
}
.orbit__item b,
.orbit__item span {
  display: block;
}
.orbit__item b {
  text-transform: uppercase;
  font-size: 12px;
}
.orbit__item span {
  color: var(--grey);
  font-size: 10px;
  margin-top: 2px;
}
.orbit .i1 {
  left: 50%;
  top: 8%;
}
.orbit .i2 {
  left: 80%;
  top: 22%;
}
.orbit .i3 {
  left: 92%;
  top: 50%;
}
.orbit .i4 {
  left: 80%;
  top: 78%;
}
.orbit .i5 {
  left: 50%;
  top: 92%;
}
.orbit .i6 {
  left: 20%;
  top: 78%;
}
.orbit .i7 {
  left: 8%;
  top: 50%;
}
.orbit .i8 {
  left: 20%;
  top: 22%;
}
.journey {
  background: var(--bg);
}
.journey__grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 70px;
  align-items: center;
}
.journey__core {
  aspect-ratio: 1;
  border: 1px solid var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 35px rgba(239, 83, 32, 0.06);
}
.journey__core span,
.journey__core small {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--cream);
  font-size: 11px;
}
.journey__core strong {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 1;
  color: var(--orange);
}
.journey__steps {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.journey__steps li {
  min-height: 120px;
  padding: 24px 18px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 20px;
}
.journey__steps li:nth-child(n + 7) {
  border-bottom: 1px solid var(--line);
}
.journey__steps li:nth-child(3n) {
  border-right: 1px solid var(--line);
}
.journey__steps span {
  display: block;
  color: var(--orange);
  font: 700 10px var(--sans);
  margin-bottom: 12px;
}
.format {
  background: var(--bg);
}
.process {
  max-width: 760px;
  margin: 0 auto;
}
.process div {
  display: flex;
  align-items: center;
  gap: 25px;
  background: var(--card);
  border-radius: 8px;
  padding: 19px 25px;
}
.process div span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}
.process div strong {
  text-transform: uppercase;
  font-size: 19px;
}
.process i {
  display: block;
  text-align: center;
  color: var(--orange);
  font-style: normal;
  height: 32px;
}
.process .process__accent {
  background: var(--orange);
}
.process .process__accent span {
  color: #fff;
}
.solutions {
  background: var(--bg);
}
.solution-list {
  display: grid;
  gap: 10px;
}
.solution-list article {
  display: grid;
  grid-template-columns: 70px 1fr 1.2fr;
  gap: 25px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 7px;
  background: var(--card);
}
.solution-list article > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}
.solution-list h3 {
  font: 400 28px var(--serif);
  margin: 0;
}
.solution-list p {
  color: var(--cream);
  margin: 0;
  font-size: 14px;
}
.management__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.team-wheel {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  max-width: 520px;
  margin: auto;
}
.team-wheel:after {
  content: "";
  position: absolute;
  inset: 23%;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.team-wheel strong {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--orange);
  font: 700 21px var(--serif);
  text-transform: uppercase;
}
.team-wheel span {
  position: absolute;
  z-index: 4;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 7px 10px;
  font-size: 10px;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}
.team-wheel span:nth-child(1) {
  left: 50%;
  top: 0;
}
.team-wheel span:nth-child(2) {
  left: 86%;
  top: 15%;
}
.team-wheel span:nth-child(3) {
  left: 100%;
  top: 50%;
}
.team-wheel span:nth-child(4) {
  left: 86%;
  top: 85%;
}
.team-wheel span:nth-child(5) {
  left: 50%;
  top: 100%;
}
.team-wheel span:nth-child(6) {
  left: 14%;
  top: 85%;
}
.team-wheel span:nth-child(7) {
  left: 0;
  top: 50%;
}
.team-wheel span:nth-child(8) {
  left: 14%;
  top: 15%;
}
.management__copy h2 {
  font: 400 clamp(30px, 3.5vw, 48px)/1.18 var(--serif);
  margin: 24px 0;
}
.management__copy p {
  font-size: 20px;
  color: var(--cream);
}
.management__copy .accent-copy {
  color: var(--orange);
  font: 700 28px var(--serif);
}
.outcome {
  background: var(--bg);
}
.before-after {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
}
.before-after article {
  background: var(--card);
  min-height: 310px;
  border: 1px solid var(--line);
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.before-after article > span {
  text-transform: uppercase;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 25px;
}
.before-after article > strong {
  font: 400 35px var(--serif);
}
.before-after > i {
  text-align: center;
  color: var(--orange);
  font-style: normal;
  font-size: 25px;
}
.before-after__accent {
  border-color: var(--orange) !important;
}
.before-after ol {
  margin: 25px 0 0;
  padding: 0;
  list-style-position: inside;
}
.before-after li {
  border-bottom: 1px solid var(--line);
  height: 24px;
  color: var(--orange);
}
.awards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.awards article {
  position: relative;
  min-height: 330px;
  padding: 45px;
  background: var(--card);
  border: 1px solid var(--orange);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.awards article:after {
  content: "★";
  position: absolute;
  right: -15px;
  top: -70px;
  color: rgba(239, 83, 32, 0.08);
  font-size: 270px;
  line-height: 1;
}
.awards article > span {
  position: absolute;
  top: 32px;
  left: 35px;
  color: var(--orange);
  font-size: 11px;
}
.awards h3 {
  font: 400 clamp(35px, 4vw, 52px)/1.05 var(--serif);
  margin: 0 0 15px;
}
.awards p {
  color: var(--cream);
  margin: 0;
}
.price {
  background: var(--bg);
}
.price__inner {
  text-align: center;
}
.price .number {
  color: var(--orange);
}
.price__zero {
  color: var(--orange);
  font: 700 clamp(140px, 25vw, 330px)/0.8 var(--serif);
  letter-spacing: -0.09em;
  margin: 35px 0 45px;
}
.price__zero small {
  font-size: 0.35em;
}
.price h2 {
  font: 400 clamp(28px, 4vw, 48px) var(--serif);
  margin: 0;
}
.price ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 40px 0 0;
  margin: 40px 0 0;
  border-top: 1px solid var(--line);
}
.price li {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--cream);
  font-size: 12px;
}
.promise__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.promise article {
  background: var(--card);
  border: 1px solid var(--orange);
  border-radius: 8px;
  padding: 40px;
}
.promise h3 {
  font: 400 34px var(--serif);
  color: var(--orange);
  margin: 0 0 25px;
}
.promise ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.promise li {
  position: relative;
  padding: 15px 0 15px 30px;
  border-top: 1px solid var(--line);
  color: var(--cream);
}
.promise li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
}
.promise .promise__no {
  border-color: var(--red);
}
.promise__no h3 {
  color: var(--red);
}
.promise__no li:before {
  content: "×";
  color: var(--red);
}
.bonus {
  min-height: 750px;
  display: flex;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(239, 83, 32, 0.13), transparent 45%),
    var(--bg);
}
.bonus h2 {
  font: 700 clamp(60px, 9vw, 115px)/0.9 var(--serif);
  letter-spacing: -0.05em;
  color: var(--orange);
  margin: 45px 0;
  overflow-wrap: anywhere;
}
.bonus p {
  font: 400 22px var(--serif);
  color: var(--cream);
}
.registration {
  background: var(--bg);
}
.registration__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.registration__copy h2 {
  font: 400 clamp(70px, 8vw, 110px)/0.85 var(--serif);
  margin: 30px 0;
}
.registration__copy > p {
  font: 400 24px var(--serif);
  color: var(--cream);
}
.event-card {
  border-left: 5px solid var(--orange);
  padding: 18px 22px;
  background: var(--card);
  margin-top: 50px;
}
.event-card span,
.event-card strong,
.event-card small {
  display: block;
}
.event-card span {
  font: 700 20px var(--serif);
}
.event-card strong {
  color: var(--orange);
  margin: 5px 0;
}
.event-card small {
  color: var(--grey);
  margin-top: 15px;
}
.form {
  background: var(--card);
  padding: 45px;
  border-radius: 9px;
}
.form h3 {
  font: 400 38px var(--serif);
  margin: 0;
}
.form > p {
  color: var(--grey);
  font-size: 13px;
  margin: 8px 0 35px;
}
.form label {
  display: block;
  margin: 0 0 20px;
}
.form label > span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  margin-bottom: 8px;
}
.form input:not([type="checkbox"]) {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: #fff;
  padding: 9px 0;
  outline: 0;
  border-radius: 0;
}
.form input:focus {
  border-color: var(--orange);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 30px 0;
}
.form .check input {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
  margin: 0;
}
.form .check span {
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  line-height: 1.35;
  margin: 0;
}
.form .check a {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, currentColor 50%, transparent);
  text-underline-offset: 2px;
}
.form .check a:hover { color: var(--orange); }
.form .check small { display: block; margin-top: 5px; color: var(--grey); font-size: 10px; }
.form .check--optional { margin-top: -16px; }
.form .button {
  width: 100%;
}
.form .button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}
.form__status {
  min-height: 20px !important;
  color: var(--cream) !important;
  margin: 14px 0 0 !important;
}
.form__status.error {
  color: var(--red) !important;
}
.info-partners {
  padding: 72px 0;
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.info-partners__panel {
  padding: 34px;
  border: 1px solid var(--orange);
  border-radius: 9px;
}
.info-partners__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.info-partners__head h2 {
  margin: 0;
  color: var(--white);
  font: 400 clamp(27px, 3vw, 38px) var(--serif);
}
.info-partners__button {
  flex: 0 0 auto;
  gap: 42px;
  padding-block: 13px;
}
.partner-dialog {
  width: min(520px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--white);
}
.partner-dialog::backdrop {
  background: rgba(8, 9, 12, 0.82);
  backdrop-filter: blur(5px);
}
.partner-dialog[open] {
  animation: partner-dialog-in 0.2s ease-out;
}
.partner-form {
  position: relative;
  margin: 0;
  border: 1px solid var(--orange);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.partner-dialog__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font: 300 26px/1 var(--sans);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.partner-dialog__close:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: rotate(5deg);
}
.partner-form h3,
.partner-form > p {
  padding-right: 42px;
}
body.dialog-open {
  overflow: hidden;
}
@keyframes partner-dialog-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.info-partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--line);
}
.info-partners__item {
  min-width: 0;
  min-height: 150px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f4;
  transition: background 0.2s, transform 0.2s;
}
.info-partners__item:hover {
  position: relative;
  z-index: 1;
  background: #fff;
}
.info-partners__item img {
  width: 100%;
  max-width: 240px;
  height: 92px;
  object-fit: contain;
  transition: transform 0.2s;
}
.info-partners__item:hover img {
  transform: scale(1.035);
}
.organizers .section-head {
  margin-bottom: 50px;
}
.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.people article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.people img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 5px solid var(--orange);
  filter: saturate(0.75);
}
.people h3 {
  font: 400 26px var(--serif);
  margin: 20px 0 12px;
}
.people a {
  display: block;
  color: var(--grey);
  font-size: 13px;
  margin: 5px 0;
}
.people a:hover {
  color: var(--orange);
}
.contact {
  padding: 0;
  background: var(--bg);
}
.contact__grid {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact__photo {
  grid-column: 2;
  grid-row: 1;
  max-height: 820px;
  border-left: 8px solid var(--orange);
}
.contact__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.7);
}
.contact__copy {
  grid-column: 1;
  grid-row: 1;
  padding: 110px clamp(35px, 8vw, 130px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.contact h2 {
  font: 700 clamp(65px, 8vw, 115px)/0.85 var(--serif);
  margin: 35px 0 70px;
}
.contact__copy > a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 20px;
  border-left: 5px solid var(--orange);
  border-radius: 7px;
  background: var(--card);
  font: 400 22px var(--serif);
}
.contact__copy > a:hover {
  color: var(--orange);
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 35px;
}
.socials a {
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 9px 15px;
  font-size: 12px;
}
.socials a:hover {
  border-color: var(--orange);
}
.footer {
  padding: 22px 0;
  color: var(--grey);
  font-size: 11px;
}
.footer .container {
  display: grid;
  grid-template-columns: minmax(160px,.55fr) minmax(320px,1.25fr) minmax(220px,.8fr);
  gap: 28px;
}
.footer__event,.footer__details,.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.footer a,.footer button {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer a:hover,.footer button:hover { color: var(--white); }
.footer button {
  appearance: none;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}
@media (max-width: 900px) {
  .footer .container { grid-template-columns: 1fr; }
}
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.js .reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 900px) {
  .section {
    padding: 95px 0;
  }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px;
    gap: 25px;
    transform: translateX(100%);
    transition: 0.3s;
    font: 400 30px var(--serif);
  }
  .nav.open {
    transform: none;
  }
  .nav__cta {
    font: 700 14px var(--sans);
  }
  .menu {
    position: relative;
    z-index: 2;
    display: block;
  }
  .menu.open span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }
  .menu.open span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }
  .hero__title {
    font-size: clamp(80px, 20vw, 150px);
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .dealer-companies__logos {
    grid-template-columns: repeat(4, 1fr);
  }
  .journey__grid,
  .management__grid,
  .registration__grid {
    grid-template-columns: 1fr;
  }
  .journey__core {
    width: 300px;
    margin: auto;
  }
  .team-wheel {
    width: min(75vw, 500px);
    margin: 40px auto 80px;
  }
  .management__copy {
    order: -1;
  }
  .registration__grid {
    gap: 50px;
  }
  .info-partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact__copy {
    padding: 70px 40px;
  }
  .contact h2 {
    margin-bottom: 45px;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }
  .section {
    padding: 76px 0;
  }
  .header {
    padding: 0 16px;
  }
  .back-to-site {
    right: 16px;
    padding: 12px 14px;
    font-size: 11px;
  }
  .section-head {
    display: block;
    margin-bottom: 45px;
  }
  .section-head .number {
    display: block;
    margin-bottom: 20px;
  }
  .section-head h2 {
    font-size: 45px;
  }
  .section-head > p {
    margin: 25px 0 0;
    font-size: 17px;
  }
  .big-statement {
    font-size: 36px;
    margin-top: 65px;
  }
  .hero {
    min-height: 800px;
    padding-top: 105px;
    align-items: flex-start;
  }
  .hero__title {
    font-size: 25vw;
    line-height: 0.78;
    margin: 40px 0;
  }
  .hero__lead {
    font-size: 25px;
  }
  .hero__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero__meta div {
    padding: 12px 15px 12px 0;
    margin: 0;
  }
  .hero__meta div:last-child {
    grid-column: span 2;
    border-top: 1px solid var(--line);
  }
  .hero .button {
    width: 100%;
  }
  .scroll-mark {
    display: none;
  }
  .gallery {
    grid-auto-rows: 145px;
    gap: 6px;
  }
  .gallery__wide {
    grid-column: span 2;
  }
  .dealer-companies {
    padding: 54px 0 50px;
  }
  .dealer-companies h2 {
    margin-bottom: 24px;
    font-size: 45px;
  }
  .dealer-companies__logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .dealer-companies__item {
    min-height: 128px;
  }
  .dealer-companies__item img {
    width: 70px;
    height: 70px;
  }
  .dealer-companies__more {
    margin-top: 14px;
    font-size: 22px;
  }
  .orbit {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .orbit:before,
  .orbit:after {
    display: none;
  }
  .orbit__center {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    grid-column: span 2;
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
  }
  .orbit__item {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none;
    min-width: 0;
  }
  .journey__grid {
    gap: 55px;
  }
  .journey__core {
    width: 230px;
    box-shadow: 0 0 0 20px rgba(239, 83, 32, 0.06);
  }
  .journey__core strong {
    font-size: 90px;
  }
  .journey__steps {
    grid-template-columns: 1fr;
  }
  .journey__steps li {
    border: 0 !important;
    border-top: 1px solid var(--line) !important;
    min-height: 0;
    padding: 17px 0;
  }
  .journey__steps li:last-child {
    border-bottom: 1px solid var(--line) !important;
  }
  .process div {
    padding: 17px;
  }
  .process div strong {
    font-size: 15px;
  }
  .solution-list article {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 18px 16px;
  }
  .solution-list p {
    grid-column: 2;
  }
  .solution-list h3 {
    font-size: 23px;
  }
  .team-wheel {
    width: 74vw;
  }
  .team-wheel strong {
    width: 110px;
    height: 110px;
    font-size: 17px;
  }
  .team-wheel span {
    font-size: 8px;
    padding: 5px;
  }
  .before-after {
    grid-template-columns: 1fr;
  }
  .before-after > i {
    transform: rotate(90deg);
    padding: 10px;
  }
  .before-after article {
    min-height: 250px;
    padding: 28px;
  }
  .awards__grid,
  .promise__grid,
  .people {
    grid-template-columns: 1fr;
  }
  .awards article {
    min-height: 270px;
    padding: 30px;
  }
  .price__zero {
    font-size: 50vw;
  }
  .price ul {
    display: block;
  }
  .price li {
    margin: 8px 0;
  }
  .promise article {
    padding: 28px;
  }
  .bonus {
    min-height: 600px;
  }
  .bonus h2 {
    font-size: clamp(32px, 10vw, 48px);
  }
  .registration__copy h2 {
    font-size: 80px;
  }
  .form {
    padding: 27px 20px;
  }
  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .info-partners {
    padding: 52px 0;
  }
  .info-partners__panel {
    padding: 22px;
  }
  .info-partners__head {
    align-items: stretch;
    flex-direction: column;
  }
  .info-partners__button {
    width: 100%;
  }
  .info-partners__grid {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }
  .info-partners__item {
    min-height: 130px;
    padding: 20px;
  }
  .people {
    gap: 50px;
  }
  .people img {
    height: 360px;
    aspect-ratio: auto;
    object-position: center top;
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .contact__photo {
    grid-column: 1;
    grid-row: auto;
    height: 500px;
    border-left: 0;
    border-bottom: 7px solid var(--orange);
  }
  .contact__copy {
    grid-column: 1;
    grid-row: auto;
    padding: 70px 24px;
  }
  .contact h2 {
    font-size: 75px;
  }
  .contact__copy > a {
    font-size: 18px;
  }
  .footer .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer span {
    display: block;
    margin: 3px 0;
  }
}

/* Content details restored from the approved source materials. */
.hero__lead {
  margin-bottom: 28px;
}
.hero__support {
  max-width: 720px;
  margin: 0 0 35px;
  color: var(--orange);
  font: 700 clamp(22px, 2.6vw, 32px) / 1.35 var(--serif);
}
.hero__support strong {
  display: block;
  margin-top: 30px;
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 40px);
}
.history__facts {
  margin: -30px 0 45px;
  padding-left: 108px;
}
.history__facts p {
  margin: 0 0 15px;
  color: var(--cream);
  font-size: 15px;
}
.history__facts strong {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 23px;
}
.threats__question {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 20px;
  margin-top: 15px;
}
.threats__question strong {
  color: var(--orange);
  font: 700 70px var(--serif);
}
.threats__question span {
  font: 400 25px var(--serif);
}
.journey__steps li {
  position: relative;
}
.journey__steps li > em {
  display: block;
  margin-top: 4px;
  color: var(--grey);
  font: 400 11px var(--sans);
}
.journey__steps li > small {
  display: block;
  width: max-content;
  margin: 15px 0 0;
  padding: 4px 7px;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--red);
  font: 700 9px var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.journey__steps li > small:before {
  content: "↗ ";
}
.speaker-link {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  color: var(--cream);
  font-size: 13px;
}
.speaker-link:hover {
  color: var(--orange);
}

@media (max-width: 640px) {
  .hero {
    min-height: 900px;
  }
  .hero__support {
    font-size: 20px;
  }
  .hero__support strong {
    margin-top: 22px;
    font-size: 27px;
  }
  .history__facts {
    margin: -15px 0 35px;
    padding-left: 0;
  }
  .history__facts strong {
    font-size: 19px;
  }
  .threats__question {
    display: block;
    text-align: center;
  }
  .threats__question strong,
  .threats__question span {
    display: block;
  }
  .threats__question strong {
    font-size: 55px;
  }
  .team-wheel {
    width: 62vw;
    margin-top: 65px;
    margin-bottom: 100px;
  }
  .team-wheel span:nth-child(2),
  .team-wheel span:nth-child(4) {
    left: 91%;
  }
  .team-wheel span:nth-child(6),
  .team-wheel span:nth-child(8) {
    left: 9%;
  }
  .team-wheel span:nth-child(3) {
    left: 96%;
  }
  .team-wheel span:nth-child(7) {
    left: 4%;
  }
}
.registration__limit {
  color: var(--orange) !important;
  font: 700 14px var(--sans) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.threats__question svg {
  flex: 0 0 auto;
  color: var(--orange);
}
.journey__core strong {
  font-size: 64px;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .journey__core strong {
    font-size: 44px;
  }
}
.qr-codes {
  width: 100%;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--grey);
}
.qr-codes summary {
  padding: 16px 0;
  cursor: pointer;
  font-size: 12px;
}
.qr-codes > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 5px 0 20px;
}
.qr-codes figure {
  margin: 0;
  text-align: center;
}
.qr-codes img {
  width: 100%;
  height: auto;
  background: var(--white);
  border-radius: 6px;
}
