:root {
  --ink: #080c0a;
  --night: #0d130f;
  --night-2: #121a14;
  --ash: #d8d4bd;
  --muted: #9e9a83;
  --moss: #a6b551;
  --moss-2: #677b36;
  --parchment: #d6c7a7;
  --bone: #eee7d0;
  --blood: #6c1b16;
  --line: rgba(216, 212, 189, .16);
  --line-strong: rgba(166, 181, 81, .32);
  --shadow: 0 28px 80px rgba(0, 0, 0, .42);
  --container: min(1220px, calc(100% - 36px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(105, 122, 51, .23), transparent 26%),
    radial-gradient(circle at 16% 68%, rgba(57, 75, 42, .38), transparent 30%),
    linear-gradient(180deg, #0a0f0c 0%, #111812 52%, #07100d 100%);
  color: var(--ash);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("../image/forest-mansion-background.webp") center/cover no-repeat;
  opacity: .2;
  filter: saturate(.72);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 20%, transparent, rgba(0, 0, 0, .34) 44%, rgba(0, 0, 0, .74) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .52), transparent 18%, transparent 82%, rgba(0, 0, 0, .44));
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  inset: 18px 18px auto 18px;
  z-index: 80;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
}

.site-header__brandline,
.site-header__nav {
  pointer-events: auto;
}

.site-header__brandline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  min-height: 70px;
  border: 1px solid rgba(166, 181, 81, .24);
  background: rgba(8, 12, 10, .78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 28%, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: -.03em;
  color: var(--bone);
  text-transform: uppercase;
}

.site-header__sigil {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: var(--moss);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 950;
}

.site-header__burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: rgba(216, 212, 189, .08);
  cursor: pointer;
}

.site-header__burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--bone);
}

.site-header__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 190px;
  padding: 10px;
  border: 1px solid rgba(166, 181, 81, .22);
  background: rgba(8, 12, 10, .68);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 16px) 100%, 0 100%, 0 18px);
}

.site-header__nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border-left: 2px solid transparent;
  color: var(--ash);
  font-size: .8rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.site-header__nav a::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--moss);
  transform: rotate(45deg);
  opacity: .7;
}

.site-header__nav a:hover {
  border-left-color: var(--moss);
  background: rgba(166, 181, 81, .08);
}

.hero {
  position: relative;
  width: min(1440px, calc(100% - 24px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 120px 18px 48px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero__copy {
  flex: 0 1 560px;
  padding: clamp(22px, 4vw, 44px);
  border-left: 1px solid var(--line-strong);
  background: linear-gradient(90deg, rgba(8, 12, 10, .82), rgba(8, 12, 10, .22));
}

.hero__kicker,
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  margin-bottom: 18px;
  color: var(--moss);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero__kicker::before,
.section__eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--moss);
}

.hero h1 {
  max-width: 600px;
  margin: 0;
  color: var(--bone);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.hero p {
  max-width: 520px;
  margin-top: 20px;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: #c8c2a8;
}

.hero__actions,
.download__buttons,
.cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  color: var(--bone);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: rgba(8, 12, 10, .72);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.button--primary,
.button--store {
  background: linear-gradient(135deg, #b9c85a, #778c39);
  color: #0a0e0b;
}

.button--ghost {
  background: rgba(216, 212, 189, .05);
}

.hero__media {
  position: relative;
  flex: 1 1 680px;
  margin: 0;
  border: 1px solid rgba(166, 181, 81, .28);
  background: rgba(8, 12, 10, .52);
  box-shadow: var(--shadow);
  overflow: hidden;
  clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 36px), calc(100% - 40px) 100%, 0 100%, 0 28px);
}

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

.hero__case {
  position: absolute;
  right: 40px;
  bottom: 64px;
  width: min(340px, calc(100% - 80px));
  padding: 18px;
  border: 1px solid rgba(166, 181, 81, .28);
  background: rgba(8, 12, 10, .8);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
}

.hero__case span {
  display: block;
  margin-bottom: 8px;
  color: var(--moss);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__case strong {
  color: var(--bone);
  line-height: 1.3;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 88px 0;
}

.section__head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section__head--right {
  margin-left: auto;
  text-align: right;
}

.section__head--right .section__eyebrow {
  justify-content: flex-end;
}

.section h2,
.download h2,
.legal-page h1 {
  margin: 0;
  color: var(--bone);
  font-size: clamp(1.7rem, 3vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.intro {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.intro__image {
  flex: 1.2;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 34px, 100% 100%, 0 100%);
}

.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__content {
  flex: .8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(216, 212, 189, .12);
  background: rgba(10, 15, 12, .72);
}

.intro__content p {
  margin-top: 18px;
}

.features__panel {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.feature {
  flex: 1 1 260px;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(216, 212, 189, .12);
  background: rgba(10, 15, 12, .78);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .28);
}

.feature--wide {
  flex-basis: 520px;
  background: rgba(48, 61, 31, .34);
}

.feature--dark {
  background: rgba(0, 0, 0, .44);
}

.feature span {
  display: block;
  margin-bottom: 54px;
  color: var(--moss);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 950;
}

.feature h3 {
  margin: 0 0 10px;
  color: var(--bone);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.showcase {
  display: flex;
  align-items: center;
  gap: 26px;
}

.showcase__text {
  flex: .75;
}

.showcase__text p {
  margin-top: 18px;
}

.showcase__image {
  flex: 1.25;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps {
  display: flex;
  gap: 34px;
  align-items: flex-start;
}

.steps__title {
  flex: 0 0 330px;
}

.steps__line {
  flex: 1;
  display: flex;
  gap: 14px;
}

.steps__line article {
  flex: 1;
  min-height: 240px;
  padding: 22px;
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(166, 181, 81, .08), rgba(8, 12, 10, .52));
}

.steps__line b {
  color: var(--moss);
  font-size: 2.1rem;
}

.steps__line strong {
  display: block;
  margin: 20px 0 10px;
  color: var(--bone);
  text-transform: uppercase;
}

.screens {
  width: min(1460px, calc(100% - 28px));
}

.screens__intro {
  width: var(--container);
  margin: 0 auto 34px;
  display: flex;
  gap: 24px;
  align-items: end;
}

.screens__intro h2 {
  flex: 1;
}

.screens__intro p {
  flex: .75;
}

.screens__rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 4px 24px;
  scrollbar-color: var(--moss) rgba(255, 255, 255, .05);
}

.screens__rail figure {
  flex: 0 0 min(320px, 78vw);
  margin: 0;
  border: 1px solid var(--line-strong);
  background: rgba(8, 12, 10, .74);
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .32);
}

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

.screens__rail figcaption {
  padding: 15px;
  color: var(--moss);
  font-weight: 900;
  text-transform: uppercase;
}

.reviews {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.reviews__visual {
  flex: .82;
  overflow: hidden;
  border: 1px solid rgba(216, 212, 189, .12);
  min-height: 360px;
}

.reviews__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews__content {
  flex: 1.18;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(10, 15, 12, .74);
  border: 1px solid rgba(216, 212, 189, .12);
}

.reviews__list {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

blockquote {
  flex: 1;
  margin: 0;
  padding: 18px;
  border-left: 2px solid var(--moss);
  background: rgba(216, 212, 189, .05);
}

blockquote p {
  color: var(--ash);
}

cite {
  display: block;
  margin-top: 14px;
  color: var(--moss);
  font-style: normal;
  font-weight: 900;
}

.download {
  position: relative;
  width: min(1460px, calc(100% - 28px));
  min-height: 360px;
  margin: 80px auto 0;
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.download img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.download__content {
  position: relative;
  z-index: 1;
  width: min(740px, calc(100% - 32px));
  padding: 56px clamp(22px, 5vw, 70px);
  background: linear-gradient(90deg, rgba(8, 12, 10, .9), rgba(8, 12, 10, .28));
}

.download__content span {
  color: var(--moss);
  font-weight: 900;
  text-transform: uppercase;
}

.download__content p {
  margin-top: 14px;
  color: var(--ash);
}

.site-footer {
  position: relative;
  width: min(1460px, calc(100% - 28px));
  margin: 0 auto 16px;
  border: 1px solid rgba(166, 181, 81, .16);
  background: linear-gradient(135deg, rgba(8, 12, 10, .94), rgba(18, 26, 20, .9));
  overflow: hidden;
}

.site-footer__mist {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 35%, rgba(166, 181, 81, .12), transparent 30%);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding: clamp(20px, 4vw, 42px);
}

.site-footer__brandbox {
  flex: 1.1;
  padding: 22px;
  border-left: 2px solid var(--moss);
}

.site-footer__label {
  display: block;
  margin-bottom: 10px;
  color: var(--moss);
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer__brandbox strong {
  display: block;
  color: var(--bone);
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.site-footer__brandbox p {
  margin-top: 12px;
  max-width: 420px;
}

.site-footer__policies {
  flex: 1.3;
  display: flex;
  gap: 12px;
}

.site-footer__policies a {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(166, 181, 81, .22);
  background: rgba(216, 212, 189, .04);
  color: var(--bone);
  font-weight: 850;
  text-transform: uppercase;
}

.site-footer__policies span {
  color: var(--moss);
}

.site-footer__copy {
  flex: .55;
  align-self: end;
  color: var(--muted);
  font-size: .9rem;
}

.cookie {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  width: min(940px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(8, 12, 10, .95);
  box-shadow: var(--shadow);
}

.cookie.is-visible {
  display: flex;
}

.cookie p {
  color: var(--ash);
}

.cookie a {
  color: var(--moss);
  text-decoration: underline;
}

.cookie button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  background: var(--moss);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.cookie button:last-child {
  background: transparent;
  color: var(--ash);
}

.legal-page {
  width: var(--container);
  margin: 0 auto;
  padding: 150px 0 92px;
}

.legal-page__hero {
  padding: clamp(26px, 5vw, 54px);
  border-left: 2px solid var(--moss);
  background: rgba(8, 12, 10, .76);
}

.legal-page__hero p {
  margin-top: 14px;
}

.legal-content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.legal-card {
  flex: 1 1 420px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(216, 212, 189, .12);
  background: rgba(10, 15, 12, .74);
}

.legal-card h2 {
  margin: 0 0 10px;
  color: var(--bone);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.15;
}

@media (max-width: 1100px) {
  .site-header {
    align-items: center;
  }

  .site-header__brandline {
    width: 100%;
    justify-content: space-between;
  }

  .site-header__burger {
    display: block;
  }

  .site-header__nav {
    position: fixed;
    top: 96px;
    left: 18px;
    right: 18px;
    width: auto;
    display: none;
  }

  .site-header__nav.is-open {
    display: flex;
  }

  .hero,
  .intro,
  .showcase,
  .steps,
  .reviews,
  .site-footer__inner {
    flex-direction: column;
  }

  .hero {
    padding-top: 118px;
  }

  .hero__case {
    position: static;
    width: auto;
    margin-top: -20px;
  }

  .hero__media img {
    min-height: 420px;
  }

  .steps__title {
    flex-basis: auto;
  }

  .steps__line,
  .reviews__list,
  .site-footer__policies {
    flex-wrap: wrap;
  }

  .steps__line article,
  .reviews__list blockquote,
  .site-footer__policies a {
    flex-basis: calc(50% - 8px);
  }
}

@media (max-width: 680px) {
  .site-header {
    inset: 10px;
  }

  .site-header__brandline {
    min-height: 62px;
  }

  .site-header__brand {
    font-size: .9rem;
  }

  .hero {
    width: calc(100% - 14px);
    padding: 96px 8px 36px;
  }

  .hero__copy {
    padding: 22px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }

  .hero__media img {
    min-height: 320px;
  }

  .section {
    width: calc(100% - 22px);
    padding: 62px 0;
  }

  .intro__image {
    min-height: 290px;
  }

  .feature span {
    margin-bottom: 34px;
  }

  .steps__line article,
  .reviews__list blockquote,
  .site-footer__policies a {
    flex-basis: 100%;
  }

  .screens__intro {
    width: calc(100% - 22px);
    flex-direction: column;
    align-items: start;
  }

  .screens__rail img {
    height: 420px;
  }

  .download__content {
    padding: 42px 22px;
  }

  .download__buttons,
  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .cookie {
    flex-direction: column;
    align-items: stretch;
    left: 8px;
    right: 8px;
    bottom: 8px;
    width: auto;
  }

  .cookie__actions {
    display: flex;
  }

  .cookie button {
    flex: 1;
  }

  .legal-page {
    padding-top: 110px;
    width: calc(100% - 22px);
  }
}


/* Mobile header position fix */
@media (max-width: 1100px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: auto;
    height: auto;
    align-items: flex-start;
  }

  .site-header__brandline {
    width: 100%;
  }

  .site-header__nav {
    top: 84px;
    left: 10px;
    right: 10px;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: auto;
    height: auto;
    align-items: flex-start;
  }

  .site-header__nav {
    top: 78px;
    left: 8px;
    right: 8px;
  }

  .hero {
    padding-top: 90px;
  }
}