:root {
  color-scheme: light;
  --bg: #fbfbfc;
  --panel: #ffffff;
  --text: #1e1e1e;
  --muted: rgba(30, 30, 30, 0.72);
  --border: rgba(30, 30, 30, 0.14);
  --shadow: 0 18px 50px rgba(30, 30, 30, 0.12);
  --radius: 18px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  padding: 0.12em 0.35em;
  background: rgba(30, 30, 30, 0.04);
  border-radius: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 0.95em;
}

.burger {
  display: none;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(30, 30, 30, 0.06);
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
}

.burger__lines {
  width: 22px;
  height: 16px;
  display: block;
  position: relative;
  opacity: 0.9;
}

.burger__lines::before,
.burger__lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 180ms ease, top 180ms ease, bottom 180ms ease, box-shadow 180ms ease;
}

.burger__lines::before {
  top: 0;
  box-shadow: 0 7px 0 0 var(--text);
}

.burger__lines::after {
  bottom: 0;
}

body.nav-open .burger__lines::before {
  top: 7px;
  transform: rotate(45deg);
  box-shadow: none;
}

body.nav-open .burger__lines::after {
  bottom: 7px;
  transform: rotate(-45deg);
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 251, 252, 0.78);
  backdrop-filter: blur(10px);
}

body.nav-open .site-header {
  position: fixed;
  inset: 0 0 auto 0;
  background: var(--bg);
  backdrop-filter: none;
  z-index: 30;
}

.header {
  position: relative;
  z-index: 31;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.logo {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.logo__mark {
  width: 36px;
  height: auto;
  
}

.logo__text {
  white-space: nowrap;
  font-size: 25px;
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__link {
  padding: 8px 10px;
  border-radius: 12px;
  color: rgba(30, 30, 30, 0.78);
}

.nav__link:hover {
  color: var(--text);
  background: rgba(30, 30, 30, 0.04);
}

.nav__link--cta {
  background: rgba(30, 30, 30, 0.06);
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  margin-top: 10px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  min-height: 600px;
  align-content: center;
}

.eyebrow {
  margin: 0 0 32px;
  color: rgba(30, 30, 30, 0.7);
  font-weight: 600;
  letter-spacing: 0.2px;
  text-align: center;
}

.hero__content {
  min-width: 0;
  text-align: center;
  display: grid;
  justify-items: center;
}

.hero__media {
  min-width: 0;
  align-self: stretch;
}

.hero__title {
  margin: 0 0 34px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  text-transform: uppercase;
  max-width: 700px;
}

.hero__subtitle {
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 70ch;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__note {
  margin-top: 32px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(30, 30, 30, 0.07);
  color: rgba(30, 30, 30, 0.8);
  max-width: 70ch;
}

.btn_enter {
  width: 90px!important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 20px;
  border-radius: 9px;
  background: #1e1e1e;
  color: #fbfbfc;
  cursor: pointer;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  width: 220px;
}

.btn_about {
  max-width: 240px;
  }

.btn:hover {
  background: rgba(30, 30, 30, 0.92);
}

.btn--ghost {
  background: transparent;
  color: rgba(30, 30, 30, 0.8);
  border: solid 1px #0000001f;
}

.btn--ghost:hover {
  color: var(--text);
  background: rgba(30, 30, 30, 0.04);
  border: solid 1px #0000001f;
}

.section {
  padding: 82px 0;
}

.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 14px;
  text-align: center;
  justify-items: center;
}

.section__title {
  margin: 0 0 22px;
  font-size: 30px;
}

.section__lead {
  color: var(--muted);
  max-width: 90ch;
}

.callout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.callout__item {
  padding: 16px;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(30, 30, 30, 0.06);
}

.callout__title {
  margin: 0 0 8px;
  font-size: 16px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr auto;
  gap: 18px;
}

.split--reverse {
  grid-template-columns: auto auto;
}

.split--reverse .split__text {
  order: 2;
}

.split--reverse .split__media {
  order: 1;
}


.split__media {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-left: 40px;
}

.split__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.list {
  margin: 26px 0 38px;
  padding-left: 18px;
  color: rgba(30, 30, 30, 0.8);
}

.list li {
  margin: 8px 0;
}

.list--ordered {
  padding-left: 20px;
}

.how_p {
  height: 600px!important;
  }
  
.media {
  max-width: 320px;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(30, 30, 30, 0.1);
  object-fit: cover;
}

.register {
  padding-top: 10px;
  padding-bottom: 40px;
}

.register__card {
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 22px;
  text-align: center;
  margin: 0 auto;
  max-width: 820px;
}

.register__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  justify-content: center;
}

.footer {
  padding: 26px 0 36px;
  text-align: center;
}

.muted {
  color: var(--muted);
}

.li_title {
  text-align: center;
}

.li_text {
  text-align: center;
}

.list_position {
  display: flex;
  gap: 20px;
}

@media (max-width: 1024px) {
  .header {
    padding: 14px 0;
    flex-wrap: nowrap;
  }

  .burger {
    display: inline-flex;
  }

  .nav {
    display: none;
  }

  body.nav-open .nav {
    display: flex;
    position: fixed;
    inset: 0;
    height: 100vh;
    padding: 0px 20px 28px;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
    z-index: 20;
    margin-top: 58px;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav__link {
    font-size: 18px;
    padding: 10px 14px;
    color: var(--text);
  }

  body.nav-open .nav__login {
    margin-top: 10px;
    width: min(320px, 100%);
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .callout {
    grid-template-columns: 1fr;
  }

  .split,
  .split--reverse {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__text,
  .split--reverse .split__media {
    order: initial;
  }
  
  .split__media {
  flex-direction: row;
  margin-left: 0px;
}

.btn_about {
  max-width: 240px;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 30px;
}

.list_position {
  flex-direction: column;
}
}

@media (max-width: 600px) {
  .split__media {
    flex-direction: column;
    margin-left: 0px;
    gap: 20px;
    margin: 0 auto;
  }
}
