:root {
  --about-bg:
    radial-gradient(circle at top left, rgba(255, 174, 122, 0.32), transparent 34%),
    radial-gradient(circle at top right, rgba(36, 107, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #f6f0e6 0%, #f8fbff 38%, #eef4ff 100%);
  --about-ink: #10213d;
  --about-muted: #5c6a81;
  --about-soft: #7d8aa0;
  --about-card: rgba(255, 255, 255, 0.82);
  --about-card-strong: rgba(255, 255, 255, 0.94);
  --about-line: rgba(16, 33, 61, 0.09);
  --about-accent: #246bff;
  --about-accent-dark: #173f98;
  --about-accent-warm: #ff9d66;
  --about-shadow: 0 28px 90px rgba(25, 43, 83, 0.14);
  --about-shadow-soft: 0 18px 48px rgba(25, 43, 83, 0.11);
  --about-radius: 32px;
  --about-radius-small: 24px;
}

body {
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  background: var(--about-bg);
  color: var(--about-ink);
  font-family: "IBM Plex Sans", var(--font-sans);
}

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

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

button {
  font: inherit;
}

.about-page {
  position: relative;
  min-height: 100dvh;
  padding-bottom: max(40px, var(--telegram-bottom-inset));
}

.about-page::before,
.about-page::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  filter: blur(12px);
}

.about-page::before {
  top: 56px;
  right: -72px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 157, 102, 0.18);
}

.about-page::after {
  left: -80px;
  bottom: 120px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(36, 107, 255, 0.14);
}

.section {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding-top: calc(max(20px, var(--telegram-top-inset)) + 20px);
}

.hero__panel,
.cta-panel,
.info-card,
.showcase-card,
.details-panel,
.details-note {
  border: 1px solid var(--about-line);
  background: var(--about-card);
  box-shadow: var(--about-shadow-soft);
  backdrop-filter: blur(16px);
}

.hero__panel {
  overflow: hidden;
  border-radius: calc(var(--about-radius) + 6px);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--about-shadow);
}

.hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 40%),
    linear-gradient(180deg, rgba(36, 107, 255, 0.08), transparent 65%);
  pointer-events: none;
}

.hero__eyebrow,
.section-heading__eyebrow,
.showcase-card__eyebrow,
.details-note__eyebrow,
.cta-panel__eyebrow {
  position: relative;
  z-index: 1;
  font-family: "IBM Plex Sans", var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--about-soft);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: center;
  margin-top: 24px;
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 33, 61, 0.08);
  box-shadow: 0 12px 30px rgba(25, 43, 83, 0.08);
  font-family: "Manrope", var(--font-sans);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero__title,
.section-heading__title,
.showcase-card__title,
.cta-panel__title,
.info-card__title {
  margin: 0;
  font-family: "Manrope", var(--font-sans);
}

.hero__title {
  margin-top: 22px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 10.6em;
}

.hero__text,
.section-heading__text,
.showcase-card__text,
.cta-panel__text,
.info-card__text,
.details-note__text,
.details-list {
  color: var(--about-muted);
  line-height: 1.7;
}

.hero__text {
  max-width: 38rem;
  margin: 22px 0 0;
  font-size: 18px;
}

.hero__actions,
.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Manrope", var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, var(--about-accent) 0%, #4d89ff 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(36, 107, 255, 0.28);
}

.button--ghost {
  border-color: rgba(16, 33, 61, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--about-ink);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero__chip {
  padding: 11px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 33, 61, 0.09);
  color: var(--about-muted);
  font-size: 14px;
}

.hero__visual {
  position: relative;
  min-height: 520px;
}

.hero-shot {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(16, 33, 61, 0.1);
  background: var(--about-card-strong);
  box-shadow: var(--about-shadow);
}

.hero-shot--desktop {
  width: min(100%, 620px);
  margin-left: auto;
}

.hero-shot--phone {
  position: absolute;
  left: 0;
  bottom: -12px;
  width: min(240px, 42%);
  padding: 10px;
  border-radius: 34px;
  transform: rotate(-7deg);
}

.hero-shot__chrome {
  display: flex;
  gap: 7px;
  padding: 14px 16px 10px;
}

.hero-shot__chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(16, 33, 61, 0.16);
}

.hero-shot__image {
  width: 100%;
}

.section-heading {
  max-width: 760px;
  padding-top: 88px;
}

.section-heading--compact {
  padding-top: 0;
}

.section-heading__title {
  margin-top: 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-heading__text {
  margin: 18px 0 0;
  font-size: 17px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.info-card,
.showcase-card,
.details-panel,
.details-note,
.cta-panel {
  border-radius: var(--about-radius-small);
}

.info-card {
  padding: 24px;
}

.info-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(36, 107, 255, 0.1);
  color: var(--about-accent-dark);
  font-family: "Manrope", var(--font-sans);
  font-weight: 800;
}

.info-card__title {
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.12;
}

.info-card__text {
  margin: 14px 0 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
}

.showcase-card--wide {
  grid-column: 1 / -1;
}

.showcase-card__title {
  margin-top: 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.showcase-card__text {
  margin: 14px 0 0;
}

.showcase-card__image {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(16, 33, 61, 0.08);
  box-shadow: 0 18px 34px rgba(25, 43, 83, 0.1);
}

.showcase-card__image--phone {
  width: min(100%, 360px);
  margin: 0 auto;
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 18px;
  padding-top: 88px;
}

.details-panel,
.details-note {
  padding: 28px;
}

.details-list {
  margin: 22px 0 0;
  padding-left: 18px;
}

.details-list li + li {
  margin-top: 10px;
}

.details-note {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 255, 0.92)),
    var(--about-card-strong);
}

.details-note__text {
  margin: 16px 0 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--about-radius-s