:root {
  color-scheme: dark;
  --bg: #0a0a0a;
  --panel: #141414;
  --panel-strong: #1d1d1d;
  --panel-soft: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --muted-strong: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.1);
  --orange: #ff7a00;
  --orange-hot: #ff281a;
  --purple: #aa33f2;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
  --radius-card: 8px;
  --shell: 1150px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-shell {
  width: min(100% - 40px, var(--shell));
  margin-inline: auto;
}

.promo {
  position: relative;
  isolation: isolate;
  display: flex;
  width: 100%;
  height: 64px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  background: linear-gradient(90deg, #fe7a01 0%, var(--purple) 100%);
  cursor: pointer;
}

.promo__line {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.promo__center {
  display: inline-flex;
  height: 45px;
  align-items: center;
  justify-content: center;
}

.promo__center img {
  width: auto;
  height: 100%;
}

.promo__cluster {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 18px;
  pointer-events: none;
}

.promo__cluster img:first-child {
  width: 82px;
  transform: rotate(-14deg);
}

.promo__cluster img:last-child {
  height: 40px;
  width: auto;
}

.promo__cluster--left {
  left: max(20px, calc((100vw - var(--shell)) / 2));
}

.promo__cluster--right {
  right: max(20px, calc((100vw - var(--shell)) / 2));
}

.promo__cluster--right img:first-child {
  width: 56px;
  transform: rotate(-56deg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 10, 10, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px 0 12px;
  border-radius: 999px;
  background: var(--panel-strong);
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-pill:hover {
  background: #393939;
  transform: translateY(-1px);
}

.contact-pill img {
  width: 24px;
  height: 24px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--panel-strong);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 88px 0 auto 0;
  z-index: 29;
  display: grid;
  gap: 12px;
  padding: 20px;
  background: #161616;
  box-shadow: var(--shadow);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.mobile-menu img {
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 612px;
  padding: 48px 0 52px;
  background:
    linear-gradient(90deg, #0a0a0a 0%, rgba(10, 10, 10, 0.88) 43%, rgba(10, 10, 10, 0.56) 68%, #0a0a0a 100%),
    radial-gradient(ellipse at 70% 0%, rgba(255, 122, 0, 0.18), transparent 42%),
    linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 190px;
  background: linear-gradient(180deg, transparent, #131313);
}

.hero__media {
  position: absolute;
  inset: 18px max(24px, calc((100vw - 1160px) / 2)) 0 auto;
  z-index: -2;
  width: 440px;
  opacity: 0.68;
  filter: saturate(0.94);
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 6% -12% -6% 15%;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  transform: rotate(5deg);
  background: rgba(255, 255, 255, 0.04);
}

.hero__media img {
  width: 100%;
  max-height: 650px;
  object-fit: contain;
  object-position: bottom;
}

.hero__content {
  display: grid;
  min-height: 512px;
  align-content: space-between;
  gap: 44px;
}

.hero__copy {
  width: min(100%, 590px);
  padding-top: 20px;
}

.hero h1 {
  margin: 0;
  max-width: 570px;
  font-size: 58px;
  line-height: 64px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero__lead {
  display: grid;
  gap: 4px;
  max-width: 410px;
  margin: 30px 0 0;
  color: var(--muted-strong);
  font-size: 20px;
  line-height: 32px;
}

.hero__lead span {
  color: #ffffff;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  border-radius: 999px;
  border: 0;
  padding: 0 32px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  transition: transform 180ms ease, filter 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.button--primary {
  background: linear-gradient(135deg, #ff9000 0%, var(--orange) 48%, var(--orange-hot) 100%);
  box-shadow: 0 18px 34px rgba(255, 94, 0, 0.28);
}

.button--small {
  min-height: 52px;
  padding: 0 26px;
  font-size: 16px;
}

.button--light {
  background: #ffffff;
  color: #000000;
  box-shadow: none;
}

.button--icon img {
  width: 24px;
  height: 24px;
}

.login-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.login-note a {
  color: var(--orange);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 1040px);
}

.metric {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(34px);
}

.metric h2 {
  margin: 0 0 3px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 900;
}

.metric p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

.metric img {
  width: 42px;
  height: 42px;
}

.rating-proof {
  display: flex;
  width: min(100%, 1040px);
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(28px);
}

.rating-proof strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  white-space: nowrap;
}

.rating-proof span {
  font-size: 14px;
  line-height: 22px;
}

.section {
  padding: 88px 0;
  overflow: hidden;
}

.section--work,
.section--faq,
.section--referral {
  background: #131313;
}

.section--looks,
.section--contacts {
  background: #0f0f0f;
}

.section--safe {
  background: #0a0a0a;
}

.section--longread {
  background: #101010;
}

.split {
  display: grid;
  grid-template-columns: minmax(300px, 510px) minmax(0, 1fr);
  align-items: center;
  gap: 76px;
}

.split--safe {
  grid-template-columns: minmax(300px, 530px) minmax(0, 1fr);
}

.section-copy {
  display: grid;
  justify-items: start;
  gap: 28px;
}

.section-copy h2 {
  margin: 0;
  max-width: 590px;
  font-size: 48px;
  line-height: 56px;
  font-weight: 900;
  letter-spacing: 0;
}

.section-copy p {
  margin: 0;
  max-width: 430px;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
}

.section-copy--wide p {
  max-width: 660px;
}

.section-copy--wide .button {
  margin-top: 2px;
}

.tilt-scene {
  position: relative;
  min-height: 420px;
}

.tilt-card {
  position: absolute;
  display: grid;
  place-items: center;
  width: 238px;
  height: 238px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.12);
}

.tilt-card--back {
  left: 34px;
  top: 84px;
  transform: rotate(-13deg);
}

.tilt-card--back img {
  width: 112px;
}

.tilt-card--front {
  left: 180px;
  top: 118px;
  overflow: hidden;
  border: 6px solid var(--orange);
  background: #000000;
  box-shadow: 0 28px 56px rgba(255, 94, 0, 0.28);
  transform: rotate(12deg);
}

.tilt-card--front img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: 50% 15%;
}

.steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 900;
}

.steps li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  line-height: 1.35;
}

.steps span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.looks-grid {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.preview {
  display: grid;
  gap: 12px;
}

.preview__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.preview-tab {
  display: grid;
  width: 42px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 900;
}

.preview-tab.is-active {
  background: linear-gradient(135deg, #ff9000, var(--orange-hot));
  color: #ffffff;
}

.preview__stage {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%),
    #161616;
}

.preview-card {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end center;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.preview-card.is-active {
  opacity: 1;
  transform: translateX(0);
}

.preview-card:nth-child(2) img {
  filter: saturate(0.7) contrast(1.05);
  transform: translateY(6px) scale(1.02);
}

.preview-card:nth-child(3) img {
  filter: hue-rotate(10deg) brightness(0.94);
  transform: translateY(12px) scale(1.05);
}

.preview-card img {
  width: min(70%, 410px);
  height: 430px;
  object-fit: contain;
  object-position: bottom;
}

.scan-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0.8;
}

.scan-corner--tl {
  left: 24px;
  top: 24px;
  transform: rotate(-90deg);
}

.scan-corner--tr {
  right: 24px;
  top: 24px;
}

.scan-corner--bl {
  left: 24px;
  bottom: 24px;
  transform: rotate(180deg);
}

.scan-corner--br {
  right: 24px;
  bottom: 24px;
  transform: rotate(90deg);
}

.safe-image {
  width: 100%;
  max-width: 530px;
  justify-self: center;
  background: #000000;
}

.longread {
  display: grid;
  gap: 28px;
}

.longread > h2 {
  max-width: 820px;
  margin: 0;
  font-size: 48px;
  line-height: 56px;
  font-weight: 900;
  letter-spacing: 0;
}

.longread__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.longread__columns p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 27px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.fact-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.06);
}

.fact-grid h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 900;
}

.fact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 24px;
}

.usage-note {
  display: grid;
  gap: 16px;
  max-width: 980px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  background: rgba(0, 0, 0, 0.24);
}

.usage-note p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 27px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(180px, 270px) minmax(0, 1fr);
  align-items: start;
  gap: 52px;
}

.faq-layout > h2 {
  margin: 0;
  font-size: 36px;
  line-height: 42px;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) 36px;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  border: 0;
  background: transparent;
  color: #ffffff;
  text-align: left;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 13px 4px auto;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 220ms ease, opacity 220ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 56px 22px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
}

.feature-panel {
  position: relative;
  display: grid;
  min-height: 344px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--panel-strong);
  padding: 56px;
}

.feature-panel h2 {
  margin: 8px 0 18px;
  font-size: 36px;
  line-height: 42px;
  font-weight: 900;
}

.feature-panel p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.feature-panel strong {
  display: inline-flex;
  margin-top: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #383838;
  font-size: 13px;
}

.eyebrow {
  margin: 0;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-panel__float {
  position: absolute;
  z-index: 0;
  width: 170px;
  transform: rotate(-12deg);
  pointer-events: none;
}

.feature-panel--peach > div,
.feature-panel--peach > a,
.feature-panel--telegram > div,
.feature-panel--telegram > a {
  position: relative;
  z-index: 2;
}

.feature-panel__float--one {
  right: -58px;
  top: 44px;
}

.feature-panel__float--two {
  right: 126px;
  bottom: -66px;
  width: 205px;
}

.telegram-coin {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  transform: rotate(-12deg);
  pointer-events: none;
}

.telegram-coin--big {
  right: 116px;
  top: -74px;
  width: 280px;
}

.telegram-coin--small {
  right: 38px;
  bottom: -78px;
  width: 210px;
}

.site-footer {
  background: #161616;
  padding: 34px 0;
  box-shadow: 0 -22px 50px rgba(0, 0, 0, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 22px;
}

.language {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  padding: 10px 14px;
  font-weight: 800;
}

.language img {
  width: 20px;
  height: 20px;
}

.copyright {
  max-width: 220px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 18px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.socials img {
  width: 22px;
  height: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 18px;
  text-align: right;
}

.footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 1023px) {
  .promo__cluster {
    gap: 10px;
  }

  .promo__cluster--left {
    left: 16px;
  }

  .promo__cluster--right {
    right: 16px;
  }

  .promo__cluster img:first-child {
    width: 58px;
  }

  .promo__cluster img:last-child {
    height: 32px;
  }

  .header-grid {
    min-height: 76px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    inset: 76px 0 auto 0;
  }

  .hero {
    min-height: 560px;
    padding-top: 28px;
  }

  .hero__media {
    right: -58px;
    width: 320px;
    opacity: 0.42;
  }

  .hero__content {
    min-height: 470px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: 44px;
    line-height: 50px;
  }

  .hero__lead {
    font-size: 18px;
    line-height: 28px;
  }

  .metric-strip {
    grid-template-columns: 1fr;
    width: min(100%, 440px);
  }

  .rating-proof {
    width: min(100%, 440px);
    flex-direction: column;
    align-items: flex-start;
  }

  .metric {
    min-height: 92px;
    padding: 18px;
  }

  .section {
    padding: 70px 0;
  }

  .split,
  .split--safe,
  .looks-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 44px;
  }

  .tilt-scene {
    width: min(100%, 520px);
    min-height: 360px;
    margin-inline: auto;
  }

  .tilt-card--back {
    left: 4%;
  }

  .tilt-card--front {
    left: 38%;
  }

  .section-copy {
    justify-items: center;
    text-align: center;
  }

  .section-copy h2 {
    font-size: 40px;
    line-height: 46px;
  }

  .section-copy p {
    max-width: 560px;
  }

  .longread {
    justify-items: center;
  }

  .longread > h2 {
    font-size: 40px;
    line-height: 46px;
    text-align: center;
  }

  .longread__columns,
  .fact-grid {
    grid-template-columns: 1fr;
  }

  .longread__columns {
    max-width: 720px;
  }

  .steps {
    justify-self: stretch;
    text-align: left;
  }

  .preview__stage {
    min-height: 410px;
  }

  .safe-image {
    max-width: 420px;
  }

  .faq-layout {
    gap: 16px;
  }

  .faq-layout > h2 {
    text-align: center;
  }

  .feature-panel {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 40px;
  }

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

  .footer-links {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 32px, var(--shell));
  }

  .promo {
    height: 48px;
  }

  .promo__center {
    height: 32px;
  }

  .promo__cluster {
    opacity: 0.65;
  }

  .promo__cluster img:first-child {
    display: none;
  }

  .promo__cluster img:last-child {
    height: 26px;
  }

  .brand {
    gap: 10px;
    font-size: 21px;
  }

  .brand img {
    width: 54px;
    height: auto;
  }

  .hero {
    min-height: 510px;
    padding: 22px 0 30px;
  }

  .hero__media {
    right: -92px;
    bottom: 18px;
    width: 280px;
    opacity: 0.28;
  }

  .hero__content {
    min-height: 456px;
    gap: 30px;
  }

  .hero__copy {
    padding-top: 4px;
    text-align: center;
  }

  .hero h1 {
    margin-inline: auto;
    max-width: 330px;
    font-size: 36px;
    line-height: 39px;
  }

  .hero__lead {
    max-width: 343px;
    margin-inline: auto;
    font-size: 14px;
    line-height: 24px;
  }

  .hero__cta-row {
    justify-content: center;
    margin-top: 24px;
  }

  .button {
    min-height: 54px;
    padding-inline: 28px;
    font-size: 16px;
  }

  .metric-strip {
    width: 100%;
  }

  .metric {
    gap: 14px;
  }

  .metric h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .section {
    padding: 60px 0;
  }

  .section-copy h2 {
    font-size: 36px;
    line-height: 39px;
  }

  .longread > h2 {
    font-size: 36px;
    line-height: 39px;
  }

  .fact-grid article {
    min-height: auto;
    padding: 22px;
  }

  .tilt-scene {
    min-height: 310px;
  }

  .tilt-card {
    width: 198px;
    height: 198px;
  }

  .tilt-card--back {
    top: 52px;
  }

  .tilt-card--front {
    left: 33%;
    top: 92px;
  }

  .tilt-card--front img {
    height: 340px;
  }

  .steps li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    font-size: 15px;
  }

  .preview__stage {
    min-height: 360px;
  }

  .preview-card img {
    width: 82%;
    height: 350px;
  }

  .faq-item button {
    min-height: 76px;
    gap: 14px;
    font-size: 20px;
  }

  .faq-answer p {
    padding-right: 0;
  }

  .feature-panel {
    min-height: 360px;
    padding: 30px;
  }

  .feature-panel h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .feature-panel__float--one {
    right: -80px;
    top: 42px;
    width: 145px;
  }

  .feature-panel__float--two {
    right: 12px;
    bottom: -96px;
    width: 180px;
  }

  .telegram-coin--big {
    right: -66px;
    top: -32px;
    width: 210px;
    opacity: 0.55;
  }

  .telegram-coin--small {
    right: 36px;
    bottom: -70px;
    width: 160px;
  }

  .footer-brand {
    justify-items: start;
  }

  .footer-links {
    gap: 9px 18px;
  }
}
