:root {
  --page: #071f22;
  --surface: #0a2b2f;
  --gold: #d3a349;
  --gold-light: #f1cd7e;
  --text: #f7efda;
  --max: 1296px;
  --px: 72px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: Manrope, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.625;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(calc(100% - var(--px) * 2), var(--max));
  margin-inline: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.09;
  letter-spacing: -0.02em;
  font-weight: 800;
}
h2 {
  font-size: clamp(34px, 3.5vw, 44px);
  line-height: 1.23;
  letter-spacing: -0.015em;
}
h3 {
  font-size: 28px;
  line-height: 1.28;
  letter-spacing: -0.01em;
}
.lead {
  font-size: 20px;
  line-height: 1.55;
}
.muted {
  color: rgba(247, 239, 218, 0.75);
}
.eyebrow {
  color: var(--gold-light);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--page);
  padding: 18px 32px;
  font-weight: 800;
  line-height: 20px;
  box-shadow: 0 12px 32px rgba(211, 163, 73, 0.28);
  transition:
    0.2s transform,
    0.2s background;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
}
.button-small {
  padding: 14px 24px;
  box-shadow: none;
}
.hero {
  height: 100vh;
  height: 100svh;
  min-height: 720px;
  padding: 36px 0 72px;
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(7, 31, 34, 0.5), rgba(7, 31, 34, 0.5)),
    url("assets/hero.jpg") center/cover fixed no-repeat;
}
.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 100;
  padding: 8px 30px;
  border: 1px solid transparent;
  border-radius: 22px;
  transform: translateX(-50%);
  transition:
    top 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}
body.is-scrolled .nav {
  top: 12px;
  background: rgba(7, 31, 34, 0.84);
  border-color: rgba(211, 163, 73, 0.3);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}
.logo {
  display: block;
  width: 190px;
  line-height: 0;
}
.logo img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(4px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}
.nav-links > a:not(.button):hover {
  color: var(--gold-light);
}
.language-switcher {
  position: relative;
  flex: 0 0 auto;
}
.language-button {
  min-width: 62px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(241, 205, 126, 0.5);
  border-radius: 999px;
  background: rgba(7, 31, 34, 0.72);
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.language-button:hover,
.language-button[aria-expanded="true"] {
  border-color: var(--gold-light);
  background: rgba(211, 163, 73, 0.16);
}
.language-chevron {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  position: relative;
}
.language-chevron::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transform-origin: center;
  transition: top 0.24s ease, transform 0.24s ease;
}
.language-button[aria-expanded="true"] .language-chevron::before {
  top: 3px;
  transform: rotate(225deg);
}
.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 120;
  min-width: 76px;
  padding: 6px;
  border: 1px solid rgba(211, 163, 73, 0.38);
  border-radius: 14px;
  background: rgba(7, 31, 34, 0.97);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px) scale(0.96);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.25s ease;
}
.language-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}
.language-menu button {
  width: 100%;
  padding: 8px 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.language-menu button:hover {
  background: rgba(241, 205, 126, 0.15);
  color: var(--gold-light);
}
.language-menu button.active {
  background: #0d5559;
  color: #fff0b8;
  box-shadow: inset 0 0 0 1px rgba(241, 205, 126, 0.72);
}
.language-menu button.active:hover {
  background: #12666a;
  color: #fff5d5;
}
.menu-button {
  display: none;
}
.hero-content {
  margin-top: auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  animation: hero-enter 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero-content .pill {
  border: 0;
  border-radius: 0;
  padding: 2px;
  background: var(--gold-light);
  clip-path: polygon(7% 0, 93% 0, 100% 50%, 93% 100%, 7% 100%, 0 50%);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}
.hero-content .pill > span {
  display: block;
  padding: 9px 26px;
  background: rgba(7, 31, 34, 0.92);
  clip-path: inherit;
}
.hero-content .lead {
  max-width: 650px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
}
.section {
  padding-block: 96px;
}
.surface {
  background: var(--surface);
}
#about {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --magic-x: 50%;
  --magic-y: 50%;
}
#about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    circle 270px at var(--magic-x) var(--magic-y),
    rgba(255, 224, 143, 0.28),
    rgba(211, 163, 73, 0.11) 40%,
    transparent 74%
  );
  transition: opacity 0.3s ease;
}
#about.magic-active::before {
  opacity: 1;
}
#about > .container {
  position: relative;
  z-index: 1;
}
.magic-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.magic-particle {
  position: absolute;
  width: var(--spark-size);
  height: var(--spark-size);
  border-radius: 50%;
  background: #fff0b8;
  box-shadow:
    0 0 8px rgba(255, 244, 191, 1),
    0 0 20px rgba(241, 205, 126, 0.95),
    0 0 34px rgba(211, 163, 73, 0.7);
  transform: translate(-50%, -50%);
  animation: magic-spark 0.9s ease-out forwards;
}
.magic-particle.star {
  border-radius: 1px;
  transform: translate(-50%, -50%) rotate(45deg);
}
.magic-orb {
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 239, 180, 0.9);
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, #fff8d7 0 14%, #f1cd7e 18%, transparent 62%);
  box-shadow:
    0 0 12px rgba(255, 239, 180, 0.95),
    0 0 30px rgba(211, 163, 73, 0.75);
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
  animation: magic-orb-pulse 1.2s ease-in-out infinite;
}
#about.magic-active .magic-orb {
  opacity: 1;
}
@keyframes magic-orb-pulse {
  50% {
    width: 25px;
    height: 25px;
    box-shadow:
      0 0 18px rgba(255, 239, 180, 1),
      0 0 42px rgba(211, 163, 73, 0.85);
  }
}
@keyframes magic-spark {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35) rotate(0deg);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(
        calc(-50% + var(--spark-x)),
        calc(-50% + var(--spark-y))
      )
      scale(0) rotate(var(--spark-rotate));
  }
}
.split {
  display: grid;
  grid-template-columns: 1fr 1.14fr;
  align-items: center;
  gap: 72px;
}
.copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.image-frame {
  width: 100%;
  height: 568px;
  padding: 3px;
  position: relative;
  background: var(--gold-light);
  filter:
    drop-shadow(2px 0 0 var(--gold-light))
    drop-shadow(-2px 0 0 var(--gold-light))
    drop-shadow(0 2px 0 var(--gold-light))
    drop-shadow(0 -2px 0 var(--gold-light))
    drop-shadow(0 20px 30px rgba(0, 0, 0, 0.24));
}
.image-frame-portal {
  clip-path: polygon(6% 3%, 45% 3%, 50% 0, 55% 3%, 94% 3%, 100% 9%, 100% 94%, 94% 100%, 6% 100%, 0 94%, 0 9%);
}
.image-frame-seal {
  clip-path: polygon(7% 0, 93% 0, 100% 7%, 100% 44%, 97% 50%, 100% 56%, 100% 93%, 93% 100%, 7% 100%, 0 93%, 0 56%, 3% 50%, 0 44%, 0 7%);
}
.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  clip-path: inherit;
}
.metrics {
  display: flex;
  gap: 36px;
  padding-top: 12px;
}
.metrics div {
  display: flex;
  flex-direction: column;
}
.metrics strong {
  color: var(--gold-light);
  font-size: 28px;
  line-height: 36px;
}
.metrics span {
  font-size: 14px;
  color: rgba(247, 239, 218, 0.65);
}
.section-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  min-height: 420px;
  padding: 32px;
  --card-bg: var(--surface);
  border: 0;
  border-radius: 0;
  position: relative;
  background: var(--gold-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  outline: none;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.45s ease;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.16));
}
.card::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: 0;
  background: var(--card-bg);
  clip-path: inherit;
}
.card::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 1;
  width: 11px;
  height: 11px;
  background: var(--gold-light);
  transform: rotate(45deg);
  box-shadow: 0 0 14px rgba(211, 163, 73, 0.3);
}
.card > * {
  position: relative;
  z-index: 1;
}
.card:nth-child(1) {
  clip-path: polygon(7% 0, 100% 0, 100% 93%, 93% 100%, 0 100%, 0 7%);
}
.card:nth-child(2) {
  clip-path: polygon(3% 0, 97% 0, 100% 3%, 100% 92%, 92% 100%, 8% 100%, 0 92%, 0 3%);
}
.card:nth-child(3) {
  clip-path: polygon(0 0, 93% 0, 100% 7%, 100% 100%, 7% 100%, 0 93%);
}
.card:nth-child(3)::after {
  display: none;
}
.card-top {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-top img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}
.card p {
  color: rgba(247, 239, 218, 0.7);
  transition: color 0.35s ease;
}
.card h3 {
  transition:
    color 0.35s ease,
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.features {
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.features li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.features img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.7s ease,
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-icon {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(24px) scale(0.72) rotate(-8deg);
  transition:
    opacity 0.55s ease,
    filter 0.65s ease,
    transform 0.75s cubic-bezier(0.18, 0.8, 0.25, 1.25);
  transition-delay: var(--icon-delay, 0ms);
}
.reveal-icon.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1) rotate(0);
}
.card:hover,
.card:focus-visible,
.card.is-active {
  border-color: rgba(241, 205, 126, 0.9);
  --card-bg: #0d3539;
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.28),
    0 0 32px rgba(211, 163, 73, 0.13);
  transform: translateY(-10px);
}
.card:hover h3,
.card:focus-visible h3,
.card.is-active h3 {
  color: var(--gold-light);
  transform: translateX(6px);
}
.card:hover p,
.card:focus-visible p,
.card.is-active p {
  color: rgba(247, 239, 218, 0.9);
}
.card:hover .reveal-icon.is-visible,
.card:focus-visible .reveal-icon.is-visible,
.card.is-active .reveal-icon.is-visible {
  filter: drop-shadow(0 12px 18px rgba(211, 163, 73, 0.3));
  transform: translateY(-7px) scale(1.1) rotate(3deg);
}
@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.price-section {
  padding-top: 96px;
}
.offer-shell {
  position: relative;
  animation: offer-glow 1.65s ease-in-out infinite;
  will-change: filter;
}
.offer {
  min-height: 360px;
  padding: 42px 48px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, #f1cd7e, #8f6423 40%, #d3a349 70%, #f1cd7e);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(3% 0, 47% 0, 50% 4%, 53% 0, 97% 0, 100% 10%, 100% 90%, 97% 100%, 53% 100%, 50% 96%, 47% 100%, 3% 100%, 0 90%, 0 10%);
}
.offer::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: 0;
  background:
    linear-gradient(rgba(8, 47, 50, 0.78), rgba(8, 47, 50, 0.78)),
    url("assets/offer-map-bg.png") center/cover no-repeat;
  clip-path: inherit;
}
.offer > * {
  position: relative;
  z-index: 2;
}
.offer > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offer s {
  opacity: 0.55;
}
.price {
  font-size: 44px;
  line-height: 54px;
  color: var(--gold-light);
}
.offer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.offer-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.offer-action small {
  opacity: 0.65;
}
.discount-badge {
  position: absolute;
  top: 24px;
  right: 34px;
  z-index: 3;
  padding: 11px 22px 11px 32px;
  border: 1px solid rgba(255, 204, 204, 0.45);
  border-radius: 0;
  background: #d52c38;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  clip-path: polygon(8% 0, 92% 0, 100% 22%, 94% 50%, 100% 78%, 92% 100%, 8% 100%, 0 78%, 6% 50%, 0 22%);
  box-shadow: 0 12px 28px rgba(213, 44, 56, 0.46);
  transform: rotate(-9deg);
  transform-origin: center;
}
.discount-badge::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 21px;
  border-left: 1px dashed rgba(255, 255, 255, 0.55);
}
.pdf-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(241, 205, 126, 0.45);
  text-underline-offset: 5px;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.pdf-link span {
  color: rgba(247, 239, 218, 0.58);
  font-size: 11px;
  text-decoration: none;
}
.pdf-link:hover {
  color: #fff0b8;
  transform: translateY(-2px);
}
@keyframes offer-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 3px rgba(211, 163, 73, 0.18));
  }
  50% {
    filter:
      drop-shadow(0 0 10px rgba(255, 240, 184, 0.78))
      drop-shadow(0 0 28px rgba(241, 205, 126, 0.62))
      drop-shadow(0 0 54px rgba(211, 163, 73, 0.42));
  }
}
.final {
  height: 100vh;
  height: 100svh;
  position: relative;
  background:
    linear-gradient(rgba(7, 31, 34, 0.58), rgba(7, 31, 34, 0.58)),
    url("assets/final.jpg") center/cover fixed no-repeat;
}
.final-inner {
  height: 100%;
  padding: 132px 0 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.final-copy {
  width: min(650px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  text-align: right;
}
.final-copy h2 {
  max-width: 650px;
}
.final-copy .lead {
  max-width: 600px;
}
.final footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: rgba(247, 239, 218, 0.75);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.store-promo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.store-promo > span {
  color: var(--text);
  font-size: 13px;
}
.store-badges {
  display: flex;
  align-items: center;
  gap: 10px;
}
.store-badges img {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
}
.store-badges img:first-child {
  height: 46px;
  margin: -4px -6px;
}
.telegram-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.contact-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.telegram-contact img {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}
@media (max-width: 900px) {
  :root {
    --px: 24px;
  }
  .nav-links {
    display: flex;
    position: absolute;
    top: 92px;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    width: min(300px, 90vw);
    padding: 24px;
    background: rgba(7, 31, 34, 0.98);
    border: 1px solid rgba(211, 163, 73, 0.35);
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scale(0.96);
    transform-origin: top right;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    transition:
      opacity 0.28s ease,
      visibility 0.28s ease,
      transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .nav-links > a {
    opacity: 0;
    transform: translateX(14px);
    transition:
      opacity 0.25s ease,
      transform 0.32s ease,
      color 0.2s ease,
      background 0.2s ease;
  }
  .language-switcher {
    width: 100%;
    opacity: 0;
    transform: translateX(14px);
    transition: opacity 0.25s ease 160ms, transform 0.32s ease 160ms;
  }
  .nav-links.open .language-switcher {
    opacity: 1;
    transform: translateX(0);
  }
  .language-button {
    width: 100%;
    justify-content: space-between;
  }
  .language-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    transform: translateY(-6px);
  }
  .language-menu.open {
    display: grid;
    transform: translateY(0);
  }
  .nav-links.open > a {
    opacity: 1;
    transform: translateX(0);
  }
  .nav-links.open > a:nth-child(1) {
    transition-delay: 70ms;
  }
  .nav-links.open > a:nth-child(2) {
    transition-delay: 115ms;
  }
  .nav-links.open > a:nth-child(3) {
    transition-delay: 160ms;
  }
  .nav-links.open > a:nth-child(5) {
    transition-delay: 230ms;
  }
  .menu-button {
    display: block;
    border: 1px solid var(--gold);
    border-radius: 999px;
    background: rgba(7, 31, 34, 0.8);
    color: var(--text);
    padding: 10px 16px;
    font: inherit;
    transition:
      color 0.25s ease,
      background 0.25s ease,
      transform 0.25s ease;
  }
  .menu-button[aria-expanded="true"] {
    background: var(--gold);
    color: var(--page);
    transform: scale(0.96);
  }
  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 720px;
    padding-bottom: 56px;
    background-attachment: scroll;
  }
  .nav {
    top: 16px;
    height: 76px;
    padding: 7px 18px;
  }
  body.is-scrolled .nav {
    top: 8px;
  }
  .hero-content {
    padding-top: 140px;
  }
  .hero-content .lead {
    max-width: 560px;
  }
  .actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .section {
    padding-block: 72px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .image-frame {
    height: min(62vw, 520px);
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .card {
    min-height: 0;
  }
  .offer {
    grid-template-columns: 1fr;
    padding: 36px;
  }
  .offer-action {
    align-items: flex-start;
  }
  .discount-badge {
    top: 18px;
    right: 18px;
    transform: rotate(-7deg);
  }
  .final {
    height: 100vh;
    height: 100svh;
    background-attachment: scroll;
  }
  .final-inner {
    padding: 112px 0 28px;
  }
  .final footer {
    gap: 20px;
    flex-direction: column;
  }
  .footer-brand {
    gap: 10px;
  }
  .reverse-mobile .image-frame {
    order: 2;
  }
}
@media (max-width: 560px) {
  :root {
    --px: 20px;
  }
  h1 {
    font-size: 39px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }
  .lead {
    font-size: 17px;
  }
  .logo {
    width: 150px;
  }
  .hero {
    min-height: 720px;
  }
  .hero-content {
    padding-top: 100px;
  }
  .hero-content .pill {
    font-size: 11px;
  }
  .metrics {
    gap: 22px;
    flex-wrap: wrap;
  }
  .metrics strong {
    font-size: 24px;
  }
  .image-frame {
    height: 320px;
  }
  .image-frame-portal {
    clip-path: polygon(7% 3%, 44% 3%, 50% 0, 56% 3%, 93% 3%, 100% 9%, 100% 94%, 93% 100%, 7% 100%, 0 94%, 0 9%);
  }
  .card {
    padding: 24px;
  }
  .card-top img {
    width: 80px;
    height: 80px;
  }
  .offer {
    padding: 66px 22px 28px;
    clip-path: polygon(8% 0, 92% 0, 100% 6%, 100% 94%, 92% 100%, 8% 100%, 0 94%, 0 6%);
  }
  .price {
    font-size: 34px;
  }
  .button {
    width: 100%;
    padding-inline: 22px;
  }
  .pdf-link {
    width: 100%;
    flex-wrap: wrap;
    text-align: center;
  }
  .final-copy {
    align-items: stretch;
    text-align: left;
    gap: 20px;
  }
  .final {
    background-position: 38% center;
  }
  .final footer {
    font-size: 12px;
    gap: 6px;
  }
  .footer-brand {
    gap: 6px;
  }
  .store-promo {
    gap: 4px;
  }
  .store-promo > span {
    font-size: 11px;
  }
  .store-badges img {
    height: 28px;
  }
  .store-badges img:first-child {
    height: 34px;
    margin: -3px -4px;
  }
  .contact-line {
    gap: 11px;
    flex-wrap: wrap;
  }
  .final-copy .button {
    margin-top: 4px;
  }
  .telegram-contact img {
    width: 17px;
    height: 17px;
  }
}
@supports (-webkit-touch-callout: none) {
  .hero,
  .final {
    overflow: hidden;
    background: var(--page);
    background-attachment: scroll;
  }
  .final {
    isolation: isolate;
  }
  .nav {
    z-index: 10000;
  }
  .hero::before,
  .final::before {
    content: "";
    position: absolute;
    inset: -40% 0;
    z-index: 0;
    pointer-events: none;
    transform: translate3d(0, var(--ios-parallax-y, 0px), 0);
    will-change: transform;
  }
  .hero::before {
    background:
      linear-gradient(rgba(7, 31, 34, 0.5), rgba(7, 31, 34, 0.5)),
      url("assets/hero.jpg") center/cover no-repeat;
  }
  .final::before {
    background:
      linear-gradient(rgba(7, 31, 34, 0.58), rgba(7, 31, 34, 0.58)),
      url("assets/final.jpg") 38% center/cover no-repeat;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
  .hero-content {
    animation: none;
  }
  .nav,
  .reveal,
  .reveal-icon,
  .nav-links,
  .nav-links > a,
  .menu-button {
    transition: none;
  }
  .reveal,
  .reveal-icon {
    opacity: 1;
    filter: none;
    transform: none;
  }
  .card,
  .card h3,
  .card p {
    transition: none;
  }
  #about::before,
  .magic-layer {
    display: none;
  }
}
