:root {
  --bg: #10100e;
  --panel: #191915;
  --panel-2: #20201b;
  --text: #f7f3e8;
  --muted: #aaa79d;
  --line: rgba(255, 255, 255, .12);
  --accent: #ffc62f;
  --orange: #ff9d43;
  --radius: 28px;
  --font: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: radial-gradient(circle at 12% 8%, rgba(255, 198, 47, .12), transparent 30rem), radial-gradient(circle at 86% 28%, rgba(112, 89, 255, .08), transparent 30rem), var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

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

img {
  display: block;
  max-width: 100%
}

.lp-container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto
}

.lp-promo {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px 20px;
  background: linear-gradient(100deg, #e5aa00, #ffd96e);
  color: #211a08;
  font-size: 14px;
  font-weight: 750;
  text-align: center
}

.lp-promo a {
  padding: 6px 10px;
  border-radius: 8px;
  background: #171713;
  color: #fff6d9;
  font-size: 12px
}

.lp-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 70px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(15, 15, 13, .86);
  backdrop-filter: blur(18px)
}

.lp-header__inner {
  display: flex;
  align-items: center;
  gap: 36px
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 750
}

.lp-logo img {
  width: 38px;
  height: 38px
}

.lp-logo b {
  color: var(--accent)
}

.lp-nav {
  display: flex;
  gap: 28px;
  margin: auto;
  color: #b8b4aa;
  font-size: 14px;
  font-weight: 650
}

.lp-nav a:hover, .lp-related a:hover {
  color: var(--accent)
}

.lp-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 15px;
  background: linear-gradient(105deg, #edb600, var(--orange));
  color: #18140a;
  font-weight: 780;
  box-shadow: 0 14px 32px rgba(237, 182, 0, .15)
}

.lp-button--small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 14px
}

.lp-hero {
  display: grid;
  min-height: 680px;
  grid-template-columns: .86fr 1.14fr;
  gap: 64px;
  align-items: center;
  padding-block: 74px
}

.lp-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: .11em;
  text-transform: uppercase
}

.lp-hero h1, .lp-heading h2, .lp-final h2 {
  margin: 0;
  font-size: clamp(44px, 5.3vw, 72px);
  line-height: 1.02;
  letter-spacing: -.045em
}

.lp-hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #c1bdb2;
  font-size: 19px;
  line-height: 1.68
}

.lp-hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px
}

.lp-back {
  color: #d2cec3;
  font-size: 14px;
  font-weight: 680
}

.lp-hero__art {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: #1d1d19;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .35)
}

.lp-hero__art img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover
}

.lp-hero__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .65))
}

.lp-hero__badge {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(14, 14, 12, .76);
  color: #fff7df;
  font-size: 14px;
  font-weight: 720;
  backdrop-filter: blur(12px)
}

.lp-section {
  padding-block: 72px
}

.lp-heading {
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center
}

.lp-heading h2 {
  font-size: clamp(36px, 4.6vw, 58px)
}

.lp-heading p {
  max-width: 700px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 17px
}

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

.lp-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(31, 31, 27, .96), rgba(24, 24, 21, .96));
  box-shadow: 0 20px 50px rgba(0, 0, 0, .16)
}

.lp-card span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 198, 47, .1);
  color: var(--accent);
  font-weight: 800
}

.lp-card h3 {
  margin: 40px 0 10px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -.025em
}

.lp-card p, .lp-list li {
  color: var(--muted)
}

.lp-list {
  display: grid;
  max-width: 850px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
  padding: 0;
  list-style: none
}

.lp-list li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel)
}

.lp-list li::before {
  content: "✦";
  margin-right: 10px;
  color: var(--accent)
}

.lp-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch
}

.lp-feature__copy, .lp-feature__visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--panel)
}

.lp-feature__copy {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
  padding: 48px
}

.lp-feature__copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -.04em
}

.lp-feature__copy p {
  color: var(--muted);
  font-size: 17px
}

.lp-feature__visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line)
}

.lp-step {
  min-height: 245px;
  padding: 30px;
  background: var(--panel)
}

.lp-step small {
  color: var(--accent);
  font-weight: 800
}

.lp-step h3 {
  margin: 70px 0 8px;
  font-size: 24px;
  line-height: 1.15
}

.lp-step p {
  margin: 0;
  color: var(--muted)
}

.lp-faq {
  max-width: 850px;
  margin: auto
}

.lp-faq details {
  border-top: 1px solid var(--line)
}

.lp-faq details:last-child {
  border-bottom: 1px solid var(--line)
}

.lp-faq summary {
  padding: 23px 4px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 720;
  list-style: none
}

.lp-faq summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 24px
}

.lp-faq details[open] summary::after {
  content: "−"
}

.lp-faq p {
  max-width: 700px;
  margin: -3px 0 24px;
  color: var(--muted)
}

.lp-related {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px
}

.lp-related a {
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: #c7c3b8;
  font-size: 14px;
  font-weight: 650
}

.lp-final {
  margin-block: 72px;
  padding: 58px;
  border-radius: 36px;
  background: linear-gradient(120deg, #e7ad00, #ffb15a);
  color: #17140c
}

.lp-final h2 {
  max-width: 800px;
  font-size: clamp(38px, 4.5vw, 58px)
}

.lp-final p {
  max-width: 700px;
  font-size: 17px
}

.lp-final .lp-button {
  margin-top: 16px;
  background: #161612;
  color: #fff5d7
}

.lp-footer {
  padding: 54px 0 26px;
  border-top: 1px solid var(--line);
  background: #090908
}

.lp-footer__top, .lp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.lp-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #9e9b92;
  font-size: 14px
}

.lp-footer__bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #8b887f;
  font-size: 13px
}

.lp-official {
  color: #b9dbbf;
  font-weight: 700
}

.lp-official::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #45b77c
}

@media(max-width:850px) {
  .lp-nav, .lp-header .lp-button {
    display: none
  }
  .lp-header__inner {
    justify-content: space-between
  }
  .lp-hero, .lp-feature {
    grid-template-columns: 1fr
  }
  .lp-hero {
    min-height: 0;
    padding-top: 60px
  }
  .lp-hero__art {
    min-height: 420px
  }
  .lp-hero__art img {
    min-height: 420px
  }
  .lp-grid, .lp-steps {
    grid-template-columns: 1fr
  }
  .lp-list {
    grid-template-columns: 1fr
  }
  .lp-step {
    min-height: 210px
  }
  .lp-step h3 {
    margin-top: 42px
  }
}

@media(max-width:560px) {
  .lp-container {
    width: calc(100% - 28px)
  }
  .lp-promo {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px
  }
  .lp-header {
    top: 0
  }
  .lp-hero {
    gap: 38px;
    padding-block: 48px
  }
  .lp-hero h1 {
    font-size: clamp(40px, 12vw, 52px)
  }
  .lp-hero__lead {
    font-size: 17px
  }
  .lp-hero__actions {
    align-items: stretch;
    flex-direction: column
  }
  .lp-hero__art, .lp-hero__art img {
    min-height: 330px
  }
  .lp-section {
    padding-block: 52px
  }
  .lp-grid {
    gap: 14px
  }
  .lp-card {
    min-height: 200px;
    padding: 24px
  }
  .lp-feature__copy {
    min-height: 0;
    padding: 32px 24px
  }
  .lp-feature__visual img {
    min-height: 330px
  }
  .lp-final {
    margin-block: 52px;
    padding: 40px 24px
  }
  .lp-footer__top, .lp-footer__bottom {
    align-items: flex-start;
    flex-direction: column
  }
}
