:root {
  --bg: #f4f1e9;
  --bg-soft: #ebe6da;
  --ink: #162820;
  --ink-soft: #476155;
  --muted: #6a766f;
  --green: #14362e;
  --green-2: #1e4b3e;
  --blue: #1e5d82;
  --aqua: #79b6b6;
  --gold: #c79d55;
  --paper: #fffaf0;
  --line: rgba(22, 40, 32, 0.14);
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 60px rgba(17, 33, 27, 0.16);
  --max: min(1240px, calc(100vw - 48px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(20, 54, 46, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 54, 46, 0.05) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px, 72px 72px, auto;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

section[id] {
  scroll-margin-top: 90px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Oranienbaum", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 6.7rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 4.2vw, 4.85rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.02rem;
  line-height: 1.22;
}

p {
  color: var(--ink-soft);
  line-height: 1.72;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 0 clamp(20px, 3.6vw, 46px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 39, 34, 0.86);
  color: #fffaf0;
  backdrop-filter: blur(18px);
}

.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar__brand span {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 44%, var(--gold) 45% 56%, transparent 57%),
    radial-gradient(circle at 60% 38%, var(--aqua), transparent 22%),
    var(--green-2);
}

.topbar__nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar__cta {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid rgba(255, 250, 240, 0.38);
  border-radius: 999px;
  color: #fffaf0;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffaf0;
  background: var(--green);
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 24, 20, 0.88), rgba(8, 24, 20, 0.48) 43%, rgba(8, 24, 20, 0.08) 75%),
    linear-gradient(180deg, rgba(8, 24, 20, 0.22), rgba(8, 24, 20, 0.28) 54%, rgba(8, 24, 20, 0.74));
}

.hero__content {
  width: var(--max);
  margin: 0 auto;
  padding: clamp(96px, 14vh, 148px) 0 clamp(156px, 18vh, 210px);
}

.hero__overline {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__text {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
}

.hero__actions,
.finish__content .button {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--gold);
  color: #17231e;
}

.button--ghost {
  border: 1px solid rgba(255, 250, 240, 0.38);
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.05);
}

.button--secondary {
  background: var(--green);
  color: #fffaf0;
}

.hero__facts {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: var(--max);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  transform: translateX(-50%);
  border: 1px solid var(--line-dark);
  border-bottom: 0;
  background: rgba(18, 48, 41, 0.78);
  backdrop-filter: blur(20px);
}

.hero__facts article {
  min-height: 116px;
  padding: 24px clamp(18px, 2vw, 30px);
  border-right: 1px solid var(--line-dark);
}

.hero__facts article:last-child {
  border-right: 0;
}

.hero__facts strong {
  display: block;
  margin-bottom: 7px;
  color: #fffaf0;
  font-family: "Oranienbaum", Georgia, serif;
  font-size: clamp(2.1rem, 3.2vw, 3.6rem);
  font-weight: 400;
  line-height: 0.92;
}

.hero__facts span {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro,
.metrics,
.infrastructure,
.finish,
.download__inner,
.lead {
  width: var(--max);
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(44px, 7vw, 92px);
  padding: clamp(78px, 10vw, 130px) 0 clamp(46px, 7vw, 84px);
}

.intro__copy p {
  max-width: 720px;
  font-size: 1.02rem;
}

.intro__view {
  position: relative;
  margin: clamp(34px, 5vw, 56px) 0 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(22, 40, 32, 0.12);
  box-shadow: 0 22px 54px rgba(17, 33, 27, 0.14);
}

.intro__view::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(12, 31, 26, 0.16));
  pointer-events: none;
}

.intro__view img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.intro__panel {
  align-self: start;
  border-top: 1px solid var(--line);
}

.intro__panel article {
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 28px;
  row-gap: 18px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.intro__panel span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
}

.intro__panel h3,
.intro__panel p {
  grid-column: 2;
}

.intro__panel h3 {
  margin-bottom: 0;
}

.intro__panel p {
  margin-bottom: 0;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: clamp(74px, 10vw, 132px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.5);
}

.metrics article {
  min-height: 280px;
  padding: clamp(26px, 3.5vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric__marker {
  display: block;
  width: 13px;
  height: 13px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 9px rgba(30, 93, 130, 0.12);
}

.metrics strong {
  display: block;
  margin-bottom: 18px;
  font-family: "Oranienbaum", Georgia, serif;
  font-size: clamp(2rem, 3.1vw, 3.3rem);
  font-weight: 400;
  line-height: 1;
}

.metrics p {
  margin-bottom: 0;
}

.infrastructure {
  padding-bottom: clamp(72px, 10vw, 132px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.45fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.section-head p {
  margin-bottom: 30px;
}

.infrastructure__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: 0;
  align-items: stretch;
  background: var(--green);
  color: #fffaf0;
  box-shadow: var(--shadow);
}

.infrastructure__image {
  min-height: 560px;
}

.infrastructure__image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.infrastructure__list {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4.5vw, 60px);
}

.infrastructure__list span {
  display: flex;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 700;
}

.infrastructure__list span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 16px;
  border-radius: 50%;
  background: var(--gold);
}

.finish {
  display: grid;
  grid-template-columns: minmax(330px, 0.42fr) minmax(0, 0.8fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  padding: clamp(68px, 10vw, 124px) 0;
  border-top: 1px solid var(--line);
}

.finish__content p {
  margin-bottom: 28px;
}

.finish__media {
  position: relative;
}

.finish__media::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  z-index: -1;
  border: 1px solid rgba(30, 93, 130, 0.22);
  background: rgba(30, 93, 130, 0.08);
}

.finish__media img {
  width: 100%;
  box-shadow: var(--shadow);
}

.download {
  background:
    linear-gradient(90deg, rgba(20, 54, 46, 0.92), rgba(20, 54, 46, 0.78)),
    var(--green);
  color: #fffaf0;
}

.download__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.62fr);
  gap: clamp(36px, 7vw, 94px);
  align-items: center;
  padding: clamp(66px, 8vw, 104px) 0;
}

.download h2 {
  margin-bottom: 0;
}

.download__items {
  display: grid;
  gap: 16px;
}

.download__items article {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
}

.download__items span {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 45%, var(--green) 46% 56%, transparent 57%),
    var(--gold);
}

.download__items p {
  margin: 0;
  color: rgba(255, 250, 240, 0.84);
  font-weight: 700;
}

.lead {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.58fr);
  gap: clamp(40px, 8vw, 104px);
  align-items: start;
  padding: clamp(76px, 11vw, 136px) 0;
}

.lead__copy p {
  max-width: 620px;
  font-size: 1.04rem;
}

.lead__form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.lead__form label {
  display: grid;
  gap: 8px;
}

.lead__form label span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lead__form input {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(22, 40, 32, 0.18);
  border-radius: 0;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.lead__form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 93, 130, 0.12);
}

.lead__form .button {
  width: 100%;
  min-height: 60px;
}

.lead-form__status {
  min-height: 1.4em;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.lead-form__status:empty {
  display: none;
}

.lead-form__status:empty + .lead-form__note {
  margin-top: -8px;
}

.lead-form__note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.lead-form__note a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px clamp(20px, 4vw, 46px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer__top {
  border: 0;
  padding: 0;
  color: var(--green);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__entity,
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.82rem;
}

.footer__entity {
  justify-content: center;
  text-align: center;
}

.footer__links {
  justify-content: flex-end;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.metrika-pixel {
  position: absolute;
  left: -9999px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  :root {
    --max: min(100vw - 32px, 760px);
  }

  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar__nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero__content {
    padding-bottom: 280px;
  }

  .hero__facts,
  .intro,
  .metrics,
  .section-head,
  .infrastructure__layout,
  .finish,
  .download__inner,
  .lead {
    grid-template-columns: 1fr;
  }

  .hero__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__facts article:nth-child(2) {
    border-right: 0;
  }

  .intro__panel h3,
  .intro__panel p {
    grid-column: 1 / -1;
  }

  .intro__panel h3 {
    margin-top: 0;
  }

  .metrics article {
    min-height: 210px;
  }

  .infrastructure__image {
    min-height: 380px;
  }

  .finish__media::before {
    inset: 16px -12px -16px 12px;
  }
}

@media (max-width: 620px) {
  :root {
    --max: min(100vw - 24px, 520px);
  }

  body {
    background-size: 54px 54px, 54px 54px, auto;
  }

  .topbar {
    min-height: 64px;
    padding: 0 14px;
  }

  .topbar__brand {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .topbar__cta {
    padding: 10px 12px;
    font-size: 0.66rem;
    letter-spacing: 0.04em;
  }

  .hero {
    min-height: 800px;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(8, 24, 20, 0.28), rgba(8, 24, 20, 0.62) 38%, rgba(8, 24, 20, 0.86)),
      linear-gradient(90deg, rgba(8, 24, 20, 0.74), rgba(8, 24, 20, 0.16));
  }

  .hero__image {
    object-position: 60% center;
  }

  .hero__content {
    padding: 68px 0 292px;
  }

  .hero__overline {
    font-size: 0.84rem;
  }

  h1 {
    font-size: clamp(2.95rem, 13vw, 3.65rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    font-size: 0.76rem;
  }

  .hero__facts article {
    min-height: 104px;
    padding: 18px 14px;
  }

  .hero__facts strong {
    font-size: 2.22rem;
  }

  .hero__facts span {
    font-size: 0.64rem;
  }

  .intro {
    padding-top: 64px;
  }

  .metrics {
    margin-bottom: 68px;
  }

  .metrics article {
    padding: 26px 22px;
  }

  .infrastructure {
    padding-bottom: 72px;
  }

  .section-head p {
    margin-bottom: 0;
  }

  .infrastructure__image {
    min-height: 320px;
  }

  .infrastructure__list {
    padding: 24px 20px 30px;
  }

  .infrastructure__list span {
    min-height: 48px;
    font-size: 0.98rem;
  }

  .finish {
    padding: 68px 0;
  }

  .download__inner,
  .lead {
    padding: 64px 0;
  }

  .lead__form {
    padding: 22px 18px;
  }

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

  .footer__links {
    justify-content: flex-start;
  }
}
