:root {
  --paper: #fbfbf7;
  --surface: #ffffff;
  --ink: #16201e;
  --muted: #58635f;
  --line: #dfe5df;
  --teal: #05766d;
  --teal-dark: #034f4a;
  --mint: #dff6ec;
  --coral: #ef6544;
  --gold: #f4c95d;
  --blue: #2f6fd0;
  --shadow: 0 18px 50px rgba(22, 32, 30, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(22, 32, 30, 0.08);
  background: rgba(251, 251, 247, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--teal);
  box-shadow: inset -6px -6px 0 rgba(244, 201, 93, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.locale-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 5px 6px 5px 9px;
  border: 1px solid rgba(5, 118, 109, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 250, 244, 0.92)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(5, 118, 109, 0.1);
}

.locale-switch__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.locale-switch__flag {
  font-size: 0.95rem;
  line-height: 1;
}

.locale-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(5, 118, 109, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.locale-pill__flag {
  font-size: 1rem;
  line-height: 1;
}

.locale-pill-current {
  color: #ffffff;
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  box-shadow: 0 8px 18px rgba(3, 79, 74, 0.18);
}

.nav-links .locale-pill {
  margin-left: 2px;
}

.nav-links .locale-switch {
  margin-left: 2px;
  flex: 0 0 auto;
}

.footer-links .locale-pill {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.footer-links .locale-pill-current {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.2);
}

.footer-links .locale-switch {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.footer-links .locale-switch__label {
  color: rgba(255, 255, 255, 0.86);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--coral);
  box-shadow: 0 10px 28px rgba(239, 101, 68, 0.24);
}

.button-primary:hover {
  background: #dc593b;
}

.button-secondary {
  color: var(--teal-dark);
  border-color: rgba(5, 118, 109, 0.28);
  background: rgba(223, 246, 236, 0.9);
}

.locale-suggestion {
  padding: 14px 0;
  border-bottom: 1px solid rgba(5, 118, 109, 0.14);
  background:
    linear-gradient(90deg, rgba(223, 246, 236, 0.94), rgba(255, 244, 238, 0.82)),
    var(--mint);
}

.locale-suggestion__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.locale-suggestion strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1rem;
}

.locale-suggestion p {
  margin: 2px 0 0;
  color: var(--muted);
}

.locale-suggestion__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero {
  position: relative;
  min-height: 82vh;
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, #f8faf4 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(251, 251, 247, 0.24);
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.78fr);
  gap: 44px;
  align-items: start;
}

.hero-copy {
  width: min(660px, 100%);
}

.hero-visual {
  margin: 0;
  align-self: start;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 18px;
}

.hero-visual-shell {
  width: min(100%, 380px);
  padding: 12px;
  border: 1px solid rgba(22, 32, 30, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 249, 242, 0.94)),
    radial-gradient(circle at top left, rgba(5, 118, 109, 0.06), transparent 48%);
  box-shadow: var(--shadow);
}

.hero-visual-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: 4.8rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.15rem;
}

.hero-lede {
  max-width: 620px;
  margin: 22px 0 0;
  color: #30413d;
  font-size: 1.25rem;
}

.hero-actions,
.section-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
}

.trust-pill {
  min-height: 74px;
  padding: 14px;
  border: 1px solid rgba(22, 32, 30, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.trust-pill strong {
  display: block;
  font-size: 1.05rem;
}

.trust-pill span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.9rem;
}

.band {
  padding: 78px 0;
  border-bottom: 1px solid var(--line);
}

.band-white {
  background: var(--surface);
}

.band-mint {
  background: var(--mint);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p,
.legal-page p,
.seo-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 0.62fr);
  gap: 46px;
  align-items: center;
}

.product-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(22, 32, 30, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 246, 236, 0.72), rgba(255, 255, 255, 0.92) 44%, rgba(244, 249, 239, 0.95)),
    repeating-linear-gradient(90deg, rgba(5, 118, 109, 0.04) 0 1px, transparent 1px 34px);
  box-shadow: var(--shadow);
  padding: 30px;
}

.product-image::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(5, 118, 109, 0.1);
  border-radius: 8px;
  pointer-events: none;
}

.telegram-preview {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  margin: 0 auto;
}

.telegram-preview__frame {
  width: 100%;
  aspect-ratio: 390 / 812;
  margin: 0 auto;
  border-radius: 34px;
  overflow: hidden;
  border: 8px solid #17211f;
  background: #edf4ef;
  box-shadow: 0 28px 64px rgba(22, 32, 30, 0.22);
}

.telegram-preview__header {
  height: 74px;
  display: flex;
  align-items: center;
  padding: 0 18px 0 20px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(22, 32, 30, 0.08);
}

.telegram-preview__back {
  width: 23px;
  height: 23px;
  border-left: 4px solid #1a201e;
  border-bottom: 4px solid #1a201e;
  transform: rotate(45deg);
  margin-right: 16px;
  flex: 0 0 auto;
}

.telegram-preview__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 14px;
  flex: 0 0 auto;
}

.telegram-preview__titles {
  line-height: 1;
}

.telegram-preview__name {
  font-size: 24px;
  font-weight: 700;
  color: #1f2422;
  letter-spacing: 0;
}

.telegram-preview__bot {
  margin-top: 4px;
  font-size: 16px;
  color: #78827b;
}

.telegram-preview__dots {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
}

.telegram-preview__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1f2422;
}

.telegram-preview__body {
  position: relative;
  height: calc(100% - 74px);
  overflow: hidden;
  background: #9cc786;
  padding: 8px;
}

.telegram-preview__body::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 36px 38px, transparent 0 18px, rgba(97, 145, 84, 0.22) 18px 19px, transparent 19px),
    radial-gradient(circle at 78px 72px, rgba(97, 145, 84, 0.24) 0 2px, transparent 3px),
    radial-gradient(circle at 120px 48px, transparent 0 20px, rgba(97, 145, 84, 0.2) 20px 21px, transparent 21px),
    radial-gradient(circle at 158px 110px, rgba(97, 145, 84, 0.2) 0 2px, transparent 3px);
  background-size: 190px 170px;
  opacity: 0.95;
  pointer-events: none;
}

.telegram-preview__thread,
.telegram-preview__composer,
.telegram-preview__keyboard,
.telegram-preview__home,
.telegram-preview__scroll-cue {
  position: relative;
  z-index: 1;
}

.telegram-preview__thread {
  position: absolute;
  inset: 8px 8px auto;
  padding-bottom: 230px;
  animation: telegram-thread-pan 16s infinite cubic-bezier(0.45, 0, 0.2, 1);
}

.telegram-preview__message,
.telegram-preview__file {
  position: relative;
  background: #fff;
  border: 1px solid rgba(213, 224, 213, 0.98);
  border-radius: 16px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.telegram-preview__message {
  color: #1d2321;
  margin-bottom: 8px;
}

.telegram-preview__step {
  --step-height: 72px;
  --step-gap: 8px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
  transform: translateY(9px);
  animation-duration: 16s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.telegram-preview__step--1 {
  --step-height: 74px;
  animation-name: telegram-step-1;
}

.telegram-preview__step--2 {
  --step-height: 96px;
  animation-name: telegram-step-2;
}

.telegram-preview__step--3 {
  --step-height: 48px;
  animation-name: telegram-step-3;
}

.telegram-preview__step--4 {
  --step-height: 48px;
  animation-name: telegram-step-4;
}

.telegram-preview__step--5 {
  --step-height: 68px;
  animation-name: telegram-step-5;
}

.telegram-preview__step--6 {
  --step-height: 330px;
  animation-name: telegram-step-6;
}

.telegram-preview__step--7 {
  --step-height: 435px;
  animation-name: telegram-step-7;
}

.telegram-preview__step--8 {
  --step-height: 128px;
  animation-name: telegram-step-8;
}

.telegram-preview__message--snippet {
  width: 91%;
  padding: 9px 48px 11px 14px;
  font-size: 16px;
  line-height: 1.22;
}

.telegram-preview__message--summary {
  width: 78%;
  padding: 12px 46px 12px 18px;
  font-size: 17px;
  line-height: 1.24;
}

.telegram-preview__message--status {
  width: max-content;
  max-width: 74%;
  padding: 9px 48px 9px 14px;
  font-size: 16px;
  line-height: 1.22;
}

.telegram-preview__message--ready {
  width: 84%;
  padding: 10px 48px 10px 14px;
  font-size: 16px;
  line-height: 1.24;
}

.telegram-preview__message--score {
  width: 91%;
  padding: 14px 15px 16px;
}

.telegram-preview__time {
  position: absolute;
  right: 12px;
  bottom: 8px;
  color: #9aa39e;
  font-size: 12px;
}

.telegram-preview__report {
  position: relative;
  width: 91%;
  margin: 8px 0;
  padding: 0;
}

.telegram-preview__report-surface {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(213, 224, 213, 0.98);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.telegram-preview__radar {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f4f6fb;
}

.telegram-preview__report-caption {
  padding: 10px 46px 14px 12px;
  font-size: 17px;
  line-height: 1.18;
  color: #1d2321;
}

.telegram-preview__report-time {
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: #9aa39e;
  font-size: 12px;
}

.telegram-preview__summary-title,
.telegram-preview__summary-heading {
  color: #1d2321;
  font-weight: 700;
  line-height: 1.12;
}

.telegram-preview__summary-title {
  font-size: 18px;
}

.telegram-preview__summary-heading {
  margin-top: 18px;
  font-size: 17px;
}

.telegram-preview__summary-rule {
  height: 2px;
  background: #1d2321;
  margin: 8px 0 12px;
}

.telegram-preview__summary-metrics {
  font-size: 16px;
  line-height: 1.3;
  color: #1d2321;
}

.telegram-preview__summary-body {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.26;
  color: #1d2321;
}

.telegram-preview__file {
  width: 91%;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 42px 12px 13px;
}

.telegram-preview__file-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2ea0e9;
  flex: none;
  position: relative;
}

.telegram-preview__file-icon::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 14px;
  width: 15px;
  height: 24px;
  background: #fff;
  border-radius: 2px;
}

.telegram-preview__file-icon::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 14px;
  width: 0;
  height: 0;
  border-left: 9px solid #d6efff;
  border-top: 9px solid transparent;
}

.telegram-preview__file-name {
  font-size: 17px;
  color: #2c95df;
  font-weight: 700;
  line-height: 1.08;
}

.telegram-preview__file-size {
  margin-top: 5px;
  color: #9aa39e;
  font-size: 13px;
}

.telegram-preview__file-meta {
  margin-top: 8px;
  font-size: 16px;
  color: #1d2321;
  line-height: 1.2;
}

.telegram-preview__file-time {
  bottom: 12px;
}

.telegram-preview__scroll-cue {
  position: absolute;
  right: 10px;
  bottom: 218px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 6px 18px rgba(22, 32, 30, 0.1);
  opacity: 0;
  animation: telegram-scroll-cue 16s infinite both;
}

.telegram-preview__scroll-cue::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 14px;
  width: 14px;
  height: 14px;
  border-right: 4px solid #66716d;
  border-bottom: 4px solid #66716d;
  transform: rotate(45deg);
}

.telegram-preview__composer {
  display: flex;
  align-items: center;
  gap: 9px;
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 154px;
  z-index: 4;
  min-height: 52px;
  padding: 0 9px;
  background: rgba(247, 248, 246, 0.96);
  border: 1px solid rgba(211, 221, 211, 0.94);
  border-radius: 26px;
  box-shadow: 0 4px 14px rgba(22, 32, 30, 0.08);
}

.telegram-preview__menu-button,
.telegram-preview__mic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2ea0e9;
  flex: none;
  position: relative;
}

.telegram-preview__menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.telegram-preview__menu-button span {
  display: block;
  width: 18px;
  height: 3px;
  border-radius: 3px;
  background: #fff;
  margin: 2px 0;
}

.telegram-preview__menu-button {
  flex-direction: column;
}

.telegram-preview__emoji {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid #9aa59f;
  flex: none;
  position: relative;
}

.telegram-preview__emoji::before,
.telegram-preview__emoji::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9aa59f;
}

.telegram-preview__emoji::before {
  left: 8px;
}

.telegram-preview__emoji::after {
  right: 8px;
}

.telegram-preview__emoji span {
  position: absolute;
  left: 9px;
  top: 17px;
  width: 12px;
  height: 7px;
  border-bottom: 3px solid #9aa59f;
  border-radius: 0 0 18px 18px;
}

.telegram-preview__placeholder {
  flex: 1;
  min-width: 0;
  color: #8d9892;
  font-size: 17px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.telegram-preview__attach {
  width: 20px;
  height: 20px;
  border-right: 4px solid #6d7571;
  border-top: 4px solid #6d7571;
  transform: rotate(45deg);
  margin-right: 2px;
}

.telegram-preview__keyboard {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 3;
  padding: 12px 8px 8px;
  background: rgba(237, 244, 239, 0.96);
  border-radius: 20px 20px 0 0;
}

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

.telegram-preview__buttons button {
  min-height: 38px;
  border: 0;
  border-radius: 14px;
  background: #dce5e1;
  color: #58635f;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 0 8px;
}

.telegram-preview__home {
  position: absolute;
  left: 50%;
  bottom: 6px;
  z-index: 4;
  width: 128px;
  height: 5px;
  border-radius: 99px;
  background: #3f4442;
  transform: translateX(-50%);
}

@keyframes telegram-step-1 {
  0%,
  88%,
  97%,
  100% {
    max-height: var(--step-height);
    opacity: 1;
    margin-bottom: var(--step-gap);
    transform: translateY(0);
  }

  94%,
  95% {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    transform: translateY(9px);
  }
}

@keyframes telegram-step-2 {
  0%,
  6%,
  94%,
  100% {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    transform: translateY(9px);
  }

  10%,
  88% {
    max-height: var(--step-height);
    opacity: 1;
    margin-bottom: var(--step-gap);
    transform: translateY(0);
  }
}

@keyframes telegram-step-3 {
  0%,
  12%,
  94%,
  100% {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    transform: translateY(9px);
  }

  16%,
  88% {
    max-height: var(--step-height);
    opacity: 1;
    margin-bottom: var(--step-gap);
    transform: translateY(0);
  }
}

@keyframes telegram-step-4 {
  0%,
  18%,
  94%,
  100% {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    transform: translateY(9px);
  }

  22%,
  88% {
    max-height: var(--step-height);
    opacity: 1;
    margin-bottom: var(--step-gap);
    transform: translateY(0);
  }
}

@keyframes telegram-step-5 {
  0%,
  24%,
  94%,
  100% {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    transform: translateY(9px);
  }

  28%,
  88% {
    max-height: var(--step-height);
    opacity: 1;
    margin-bottom: var(--step-gap);
    transform: translateY(0);
  }
}

@keyframes telegram-step-6 {
  0%,
  32%,
  94%,
  100% {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    transform: translateY(9px);
  }

  37%,
  88% {
    max-height: var(--step-height);
    opacity: 1;
    margin-bottom: var(--step-gap);
    transform: translateY(0);
  }
}

@keyframes telegram-step-7 {
  0%,
  50%,
  94%,
  100% {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    transform: translateY(9px);
  }

  55%,
  88% {
    max-height: var(--step-height);
    opacity: 1;
    margin-bottom: var(--step-gap);
    transform: translateY(0);
  }
}

@keyframes telegram-step-8 {
  0%,
  62%,
  94%,
  100% {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    transform: translateY(9px);
  }

  67%,
  88% {
    max-height: var(--step-height);
    opacity: 1;
    margin-bottom: var(--step-gap);
    transform: translateY(0);
  }
}

@keyframes telegram-thread-pan {
  0%,
  44% {
    transform: translateY(0);
  }

  56%,
  66% {
    transform: translateY(-350px);
  }

  74%,
  79% {
    transform: translateY(-560px);
  }

  84%,
  88% {
    transform: translateY(-720px);
  }

  95%,
  100% {
    transform: translateY(0);
  }
}

@keyframes telegram-scroll-cue {
  0%,
  46%,
  90%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }

  56%,
  78% {
    opacity: 1;
    transform: translateY(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .telegram-preview__thread,
  .telegram-preview__step,
  .telegram-preview__scroll-cue {
    animation: none;
  }

  .telegram-preview__thread {
    transform: translateY(-560px);
  }

  .telegram-preview__step {
    max-height: var(--step-height);
    opacity: 1;
    margin-bottom: var(--step-gap);
    transform: none;
  }

  .telegram-preview__scroll-cue {
    opacity: 0;
  }
}

.feature-list,
.audience-grid,
.cards-grid,
.keyword-grid,
.faq-grid,
.related-grid {
  display: grid;
  gap: 14px;
}

.feature-list {
  grid-template-columns: 1fr;
}

.feature-item,
.audience-card,
.info-card,
.faq-card,
.keyword-card {
  border: 1px solid rgba(22, 32, 30, 0.11);
  border-radius: 8px;
  background: var(--surface);
}

.feature-item {
  padding: 18px;
}

.feature-item p,
.audience-card p,
.info-card p,
.faq-card p,
.keyword-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.audience-card,
.info-card,
.faq-card,
.keyword-card {
  padding: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: rgba(223, 246, 236, 0.9);
  font-size: 0.84rem;
  font-weight: 800;
}

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

.info-card strong,
.keyword-card strong {
  display: block;
  margin-top: 12px;
}

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

.cta-band {
  color: #ffffff;
  background: #0f2b28;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #121816;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}

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

.footer-links a {
  text-decoration: none;
}

.seo-hero {
  padding: 64px 0 44px;
  background: var(--mint);
  border-bottom: 1px solid var(--line);
}

.seo-hero h1 {
  font-size: 4rem;
}

.locale-hero {
  padding: 70px 0 48px;
  background:
    radial-gradient(circle at top left, rgba(5, 118, 109, 0.12), transparent 42%),
    radial-gradient(circle at top right, rgba(239, 101, 68, 0.14), transparent 34%),
    linear-gradient(180deg, var(--mint) 0%, #eef9f3 100%);
  border-bottom: 1px solid var(--line);
}

.locale-hero h1 {
  max-width: 780px;
  font-size: 4rem;
}

.locale-hero .hero-lede {
  max-width: 700px;
}

.locale-hero .hero-actions {
  align-items: center;
}

.locale-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(5, 118, 109, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.locale-flag::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 16px 0 0 var(--gold), 32px 0 0 var(--teal);
}

.locale-flag--india::before {
  background: var(--coral);
  box-shadow: 16px 0 0 var(--gold), 32px 0 0 var(--teal);
}

.locale-flag--hindi::before {
  background: var(--coral);
  box-shadow: 16px 0 0 var(--gold), 32px 0 0 var(--teal);
}

.locale-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.locale-card {
  padding: 24px;
  border: 1px solid rgba(22, 32, 30, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.locale-card--active {
  border-color: rgba(5, 118, 109, 0.42);
  box-shadow: 0 22px 52px rgba(5, 118, 109, 0.14);
}

.locale-card--english {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(240, 248, 245, 0.94)),
    radial-gradient(circle at top right, rgba(5, 118, 109, 0.08), transparent 40%);
}

.locale-card--hindi {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 244, 238, 0.92)),
    radial-gradient(circle at top right, rgba(239, 101, 68, 0.08), transparent 40%);
}

.locale-card h2 {
  font-size: 1.45rem;
}

.locale-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.locale-card .button {
  margin-top: 18px;
}

.breadcrumb {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--teal-dark);
  text-decoration: none;
}

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

.keyword-card ul,
.legal-page ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

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

.related-grid a {
  min-height: 76px;
  padding: 16px;
  border: 1px solid rgba(22, 32, 30, 0.11);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.guide-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-card {
  min-height: 220px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(22, 32, 30, 0.11);
  border-radius: 8px;
  background: var(--surface);
}

.guide-card h3 {
  margin-top: 16px;
  line-height: 1.18;
}

.guide-card h3 a {
  text-decoration: none;
}

.guide-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.tool-card {
  min-height: 190px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(22, 32, 30, 0.11);
  border-radius: 8px;
  background: var(--surface);
}

.tool-card h3 {
  margin-top: 16px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.tool-card h3 a {
  text-decoration: none;
}

.tool-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.guide-hub-hero {
  background: #f5f1df;
}

.tool-hub-hero,
.tool-hero {
  padding: 64px 0 52px;
  background: #eef3f8;
  border-bottom: 1px solid var(--line);
}

.tool-hero h1,
.tool-hub-hero h1 {
  max-width: 960px;
  font-size: 4rem;
}

.tool-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: start;
}

.tool-workbench,
.tool-results {
  border: 1px solid rgba(22, 32, 30, 0.12);
  border-radius: 8px;
  background: var(--surface);
}

.tool-workbench {
  padding: 22px;
}

.tool-results {
  padding: 18px;
}

.tool-label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 900;
}

.tool-textarea {
  width: 100%;
  min-height: 430px;
  resize: vertical;
  border: 1px solid rgba(22, 32, 30, 0.18);
  border-radius: 8px;
  padding: 16px;
  color: var(--ink);
  background: #fbfcf9;
  font: inherit;
  line-height: 1.5;
}

.tool-textarea:focus {
  outline: 3px solid rgba(5, 118, 109, 0.18);
  border-color: var(--teal);
}

.tool-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-score {
  min-height: 118px;
  padding: 18px;
  display: grid;
  align-content: center;
  border-radius: 8px;
  color: #ffffff;
  background: #0f2b28;
}

.tool-score-warning {
  background: #5a3142;
}

.tool-score strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
}

.tool-score span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.tool-result-block {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(22, 32, 30, 0.1);
}

.tool-result-block h2 {
  font-size: 1.2rem;
}

.chip-list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(223, 246, 236, 0.9);
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.tool-chip-muted {
  color: #5d4a11;
  background: rgba(244, 201, 93, 0.26);
}

.empty-state {
  color: var(--muted);
}

.tool-checklist {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.tool-checklist li + li {
  margin-top: 8px;
}

.tool-copy-button {
  width: 100%;
  margin-top: 14px;
}

.tool-copy-area {
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  resize: vertical;
  border: 1px solid rgba(22, 32, 30, 0.16);
  border-radius: 8px;
  color: #30413d;
  background: #fbfcf9;
  font: inherit;
  font-size: 0.94rem;
  line-height: 1.45;
}

.tool-copy-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--teal-dark);
  font-size: 0.94rem;
  font-weight: 800;
}

.tool-next-panel {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  color: #ffffff;
  background: #0f2b28;
}

.tool-next-panel h2 {
  margin-top: 14px;
  font-size: 1.35rem;
}

.tool-next-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.tool-next-panel .tag {
  color: #ffffff;
  background: rgba(223, 246, 236, 0.18);
}

.tool-next-panel .button {
  width: 100%;
  margin-top: 14px;
}

.rewrite-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rewrite-example {
  padding: 20px;
  border: 1px solid rgba(22, 32, 30, 0.11);
  border-radius: 8px;
  background: var(--surface);
}

.rewrite-example p {
  margin: 10px 0 18px;
  color: var(--muted);
}

.rewrite-example p:last-child {
  margin-bottom: 0;
  color: #30413d;
}

.tag-alt {
  color: #5d4a11;
  background: rgba(244, 201, 93, 0.26);
}

.article-hero {
  padding: 64px 0 52px;
  background: #f5f1df;
  border-bottom: 1px solid var(--line);
}

.article-hero h1 {
  max-width: 960px;
  font-size: 4rem;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.article-content {
  max-width: 780px;
}

.article-meta {
  margin-bottom: 22px;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.article-section {
  margin-top: 42px;
}

.article-summary {
  margin-top: 0;
  padding: 24px;
  border: 1px solid rgba(22, 32, 30, 0.11);
  border-radius: 8px;
  background: #f8faf4;
}

.article-section h2 {
  font-size: 2rem;
}

.article-section p {
  margin: 14px 0 0;
  color: #30413d;
  font-size: 1.06rem;
}

.article-section ul {
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.article-section li + li {
  margin-top: 8px;
}

.takeaway-list {
  color: var(--ink);
}

.source-list a {
  color: var(--teal-dark);
  font-weight: 700;
}

.article-sidebar {
  position: sticky;
  top: 90px;
}

.article-panel {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #0f2b28;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.article-panel h2 {
  margin-top: 16px;
  font-size: 1.55rem;
}

.article-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.article-panel .tag {
  color: #ffffff;
  background: rgba(223, 246, 236, 0.18);
}

.article-panel .button {
  width: 100%;
  margin-top: 18px;
}

.legal-page {
  padding: 64px 0 86px;
}

.legal-page h1 {
  font-size: 3.4rem;
}

.legal-page section {
  margin-top: 34px;
  max-width: 780px;
}

.legal-page h2 {
  font-size: 1.55rem;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    padding: 12px 0;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .locale-suggestion__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    background: linear-gradient(180deg, rgba(251, 251, 247, 0.98) 0%, rgba(251, 251, 247, 0.98) 100%);
  }

  .hero-inner {
    padding-top: 54px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .seo-hero h1 {
    font-size: 2.6rem;
  }

  .legal-page h1 {
    font-size: 2.45rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .trust-row,
  .section-head,
  .showcase,
  .audience-grid,
  .cards-grid,
  .faq-grid,
  .keyword-grid,
  .related-grid,
  .guide-grid,
  .guide-grid-compact,
  .tool-grid,
  .tool-layout,
  .rewrite-grid,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-hero h1 {
    font-size: 2.6rem;
  }

  .tool-hero h1,
  .tool-hub-hero h1 {
    font-size: 2.6rem;
  }

  .article-sidebar {
    position: static;
  }

  .band {
    padding: 58px 0;
  }

  .hero-visual {
    order: 2;
    padding-top: 0;
    justify-content: center;
  }

  .hero-visual-shell {
    width: 100%;
    max-width: 520px;
  }

  .showcase {
    gap: 30px;
  }

  .product-image {
    padding: 18px;
  }

  .product-image::before {
    inset: 14px;
  }

  .telegram-preview {
    width: min(100%, 370px);
  }

  .telegram-preview__frame {
    border-width: 7px;
    border-radius: 32px;
  }
}

@media (max-width: 520px) {
  .nav-links {
    gap: 14px;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .section-actions {
    width: 100%;
  }

  .hero-visual-shell {
    padding: 10px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .seo-hero h1 {
    font-size: 2.25rem;
  }

  .article-hero h1 {
    font-size: 2.25rem;
  }

  .tool-hero h1,
  .tool-hub-hero h1 {
    font-size: 2.25rem;
  }

  .tool-textarea {
    min-height: 340px;
  }

  .legal-page h1 {
    font-size: 2.15rem;
  }

  .hero-lede {
    font-size: 1.04rem;
  }

  .trust-pill {
    min-height: auto;
  }

  .container,
  .hero-inner,
  .nav {
    width: min(100% - 24px, 1120px);
  }

  .product-image {
    padding: 10px;
  }

  .product-image::before {
    inset: 8px;
  }

  .telegram-preview {
    width: min(100%, 350px);
  }

  .telegram-preview__frame {
    border-width: 6px;
    border-radius: 28px;
  }

  .telegram-preview__header {
    height: 68px;
    padding: 0 13px 0 15px;
  }

  .telegram-preview__body {
    height: calc(100% - 68px);
  }

  .telegram-preview__back {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }

  .telegram-preview__avatar {
    width: 43px;
    height: 43px;
    margin-right: 12px;
  }

  .telegram-preview__name {
    font-size: 21px;
  }

  .telegram-preview__bot {
    font-size: 15px;
  }

  .telegram-preview__step--6 {
    --step-height: 318px;
  }

  .telegram-preview__step--7 {
    --step-height: 410px;
  }

  .telegram-preview__message--snippet,
  .telegram-preview__message--status,
  .telegram-preview__message--ready,
  .telegram-preview__summary-metrics,
  .telegram-preview__summary-body,
  .telegram-preview__file-meta {
    font-size: 15px;
  }

  .telegram-preview__message--summary,
  .telegram-preview__report-caption,
  .telegram-preview__file-name {
    font-size: 16px;
  }

  .telegram-preview__placeholder {
    font-size: 15px;
  }

  .telegram-preview__buttons button {
    font-size: 12px;
    min-height: 36px;
    padding: 0 6px;
  }
}
