:root {
  --ink: #311540;
  --ink-2: #452653;
  --muted: #716676;
  --soft: #857888;
  --orange: #ff5d32;
  --orange-dark: #c93c1d;
  --lavender: #f4eef8;
  --lavender-2: #ece2f3;
  --peach: #fff0e8;
  --warm: #fffaf6;
  --white: #ffffff;
  --line: rgba(49, 21, 64, 0.12);
  --shadow: 0 26px 70px rgba(49, 21, 64, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 82px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(100% - 56px, 1280px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
  gap: 32px;
}

.brand {
  width: 153px;
  display: block;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
}

.desktop-nav a {
  position: relative;
  padding: 9px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  border-radius: 5px;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-side {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-cta {
  min-width: 132px;
  min-height: 45px;
  padding: 0 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta span {
  color: var(--orange);
  font-size: 16px;
}

.header-cta:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 28px 26px;
  background:
    radial-gradient(circle at 7% 31%, rgba(255, 93, 50, 0.07), transparent 20%),
    radial-gradient(circle at 92% 45%, rgba(104, 53, 129, 0.06), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 66%, var(--warm) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 8px 13px 8px 9px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-2);
  background: var(--lavender);
  border: 1px solid rgba(49, 21, 64, 0.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.eyebrow-pulse,
.stage-pulse {
  position: relative;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(49, 21, 64, 0.08);
}

.eyebrow-pulse::before,
.stage-pulse::before {
  position: absolute;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.eyebrow-pulse i,
.stage-pulse i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  animation: quiet-pulse 2.6s ease-out infinite;
}

@keyframes quiet-pulse {
  0%, 46% { opacity: 0.65; transform: scale(1); }
  72%, 100% { opacity: 0; transform: scale(2.5); }
}

h1 {
  margin: 0;
  font-size: clamp(52px, 5.45vw, 79px);
  font-weight: 600;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

h1 span,
h1 strong {
  display: block;
}

h1 strong {
  margin-top: 8px;
  font-weight: 600;
}

h1 em {
  position: relative;
  color: var(--orange);
  font-style: normal;
  white-space: nowrap;
}

h1 em::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 5px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.18;
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 690px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(49, 21, 64, 0.19);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.button-primary:hover {
  background: var(--ink-2);
  box-shadow: 0 16px 35px rgba(49, 21, 64, 0.24);
  transform: translateY(-2px);
}

.button-secondary {
  padding-left: 9px;
  color: var(--ink);
  background: transparent;
}

.button-secondary > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--peach);
  border: 1px solid rgba(255, 93, 50, 0.16);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.button-secondary svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--orange-dark);
  stroke-width: 1.8;
}

.button-secondary:hover > span {
  background: #ffe4d7;
  transform: scale(1.06);
}

.proof-list {
  margin: 17px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  list-style: none;
  font-size: 12px;
  font-weight: 600;
}

.proof-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.proof-list i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--orange-dark);
  background: var(--peach);
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
}

.demo-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
  margin: 38px auto 0;
  overflow: hidden;
  background: var(--lavender);
  border: 1px solid rgba(49, 21, 64, 0.1);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.demo-stage::before {
  position: absolute;
  top: -190px;
  right: -130px;
  width: 390px;
  height: 390px;
  content: "";
  border: 74px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.demo-stage::after {
  position: absolute;
  top: 80px;
  right: 23%;
  width: 9px;
  height: 72px;
  content: "";
  background: var(--orange);
  border-radius: 999px;
  opacity: 0.13;
  transform: rotate(-43deg);
}

.stage-header {
  position: relative;
  z-index: 3;
  min-height: 72px;
  padding: 14px 22px 14px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.48);
  border-bottom: 1px solid var(--line);
}

.stage-title {
  display: flex;
  align-items: center;
  gap: 11px;
}

.stage-pulse {
  flex: 0 0 auto;
}

.stage-title > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.stage-title strong {
  font-size: 13px;
}

.stage-title small {
  color: var(--soft);
  font-size: 10px;
}

.case-tabs {
  padding: 4px;
  display: flex;
  gap: 3px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(49, 21, 64, 0.08);
  border-radius: 999px;
}

.case-tabs button {
  min-height: 32px;
  padding: 0 13px;
  border: 0;
  color: var(--muted);
  background: transparent;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.case-tabs button:hover {
  color: var(--ink);
}

.case-tabs button.is-active {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 5px 12px rgba(49, 21, 64, 0.17);
}

.stage-canvas {
  position: relative;
  z-index: 2;
  height: 327px;
  overflow: hidden;
}

.stage-canvas::before {
  position: absolute;
  bottom: -105px;
  left: 42%;
  width: 235px;
  height: 235px;
  content: "";
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.listing-card {
  position: absolute;
  top: 141px;
  left: 5%;
  z-index: 3;
  width: 41%;
  max-width: 455px;
  min-height: 158px;
  padding: 16px 18px 16px 16px;
  display: grid;
  grid-template-columns: 126px 1fr;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid rgba(49, 21, 64, 0.1);
  border-radius: 22px;
  box-shadow: 0 17px 38px rgba(49, 21, 64, 0.12);
}

.product-visual {
  position: relative;
  height: 126px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(145deg, #fff6f0, #f5e8fb);
  border-radius: 16px;
}

.product-visual::before,
.product-visual::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.product-visual::before {
  top: -23px;
  right: -17px;
  width: 73px;
  height: 73px;
  background: var(--orange);
  opacity: 0.13;
}

.product-visual::after {
  bottom: -20px;
  left: -18px;
  width: 65px;
  height: 65px;
  background: var(--ink);
  opacity: 0.08;
}

.product-orbit {
  position: absolute;
  width: 86px;
  height: 86px;
  border: 1px dashed rgba(49, 21, 64, 0.18);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.product-visual svg {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-visual .icon-accent {
  stroke: var(--orange);
  stroke-width: 3;
}

.listing-content {
  min-width: 0;
}

.listing-meta {
  display: block;
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.listing-content h2 {
  margin: 7px 0 12px;
  overflow: hidden;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.17;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.listing-bottom {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.listing-bottom strong {
  color: var(--ink);
  font-size: 18px;
}

.listing-bottom span {
  color: var(--soft);
  font-size: 9px;
}

.match-badge {
  position: absolute;
  top: 13px;
  right: 14px;
  padding: 5px 8px;
  color: #328558;
  background: #eef9f2;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
}

.send-path {
  position: absolute;
  top: 216px;
  left: 45.5%;
  z-index: 1;
  width: 15%;
  height: 2px;
  overflow: visible;
  background: repeating-linear-gradient(90deg, rgba(49, 21, 64, 0.19) 0 5px, transparent 5px 10px);
}

.send-path::before {
  position: absolute;
  top: 50%;
  right: -4px;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid rgba(49, 21, 64, 0.25);
  border-right: 2px solid rgba(49, 21, 64, 0.25);
  transform: translateY(-50%) rotate(45deg);
}

.send-path span {
  position: absolute;
  top: -5px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border: 3px solid var(--lavender);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 93, 50, 0.1);
}

.telegram-alert {
  position: absolute;
  top: 160px;
  right: 5%;
  z-index: 3;
  width: 33%;
  max-width: 375px;
  min-height: 116px;
  padding: 17px 16px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 13px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 18px 39px rgba(49, 21, 64, 0.24);
}

.telegram-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--orange);
  border-radius: 14px;
}

.telegram-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.alert-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.alert-copy small {
  color: #cfbdd8;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.alert-copy strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.alert-copy span {
  color: #cfbdd8;
  font-size: 10px;
}

.telegram-alert > b {
  color: var(--orange);
  font-size: 10px;
  white-space: nowrap;
}

.time-proof {
  position: absolute;
  right: 5%;
  top: 20px;
  bottom: auto;
  left: 5%;
  z-index: 4;
  min-height: 88px;
  padding: 13px 17px;
  display: grid;
  grid-template-columns: minmax(155px, 0.78fr) minmax(220px, 1.45fr) minmax(175px, 0.85fr);
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(49, 21, 64, 0.09);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.time-point {
  display: flex;
  align-items: center;
  gap: 10px;
}

.time-point--late {
  justify-content: flex-end;
}

.time-point > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.time-point strong {
  font-size: 21px;
}

.time-point small {
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

.time-dot {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(49, 21, 64, 0.13);
}

.time-point--early .time-dot {
  background: var(--orange);
  box-shadow: 0 0 0 1px rgba(255, 93, 50, 0.25), 0 0 0 6px rgba(255, 93, 50, 0.1);
}

.time-point--late .time-dot {
  order: 2;
  background: #b6aabb;
}

.time-point--late > div {
  text-align: right;
}

.time-track {
  position: relative;
  height: 4px;
  background: #ded5e2;
  border-radius: 999px;
}

.time-track-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--orange), #ff9a7e);
  border-radius: inherit;
  transform-origin: left;
}

.time-track b {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 7px 11px;
  color: var(--orange-dark);
  background: var(--peach);
  border: 1px solid rgba(255, 93, 50, 0.18);
  border-radius: 999px;
  font-size: 11px;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.demo-stage.is-playing .listing-card {
  animation: offer-in 660ms cubic-bezier(0.2, 0.85, 0.24, 1) both;
}

.demo-stage.is-playing .send-path span {
  animation: send-dot 700ms 520ms cubic-bezier(0.2, 0.8, 0.3, 1) both;
}

.demo-stage.is-playing .telegram-alert {
  animation: alert-in 520ms 1.08s cubic-bezier(0.16, 1.3, 0.3, 1) both;
}

.demo-stage.is-playing .time-track-fill {
  animation: fill-time 1.15s 1.45s cubic-bezier(0.25, 0.75, 0.25, 1) both;
}

.demo-stage.is-playing .time-track b {
  animation: label-in 380ms 2.25s cubic-bezier(0.2, 1.4, 0.3, 1) both;
}

@keyframes offer-in {
  0% { opacity: 0; transform: translateY(15px) scale(0.97); }
  64% { transform: translateY(-3px) scale(1.008); }
  100% { opacity: 1; transform: none; }
}

@keyframes send-dot {
  0% { opacity: 0; transform: translateX(0) scale(0.8); }
  14% { opacity: 1; }
  100% { opacity: 1; transform: translateX(calc(15vw - 25px)) scale(1); }
}

@keyframes alert-in {
  0% { opacity: 0; transform: translateY(10px) scale(0.94); }
  62% { transform: translateY(-3px) scale(1.015); }
  100% { opacity: 1; transform: none; }
}

@keyframes fill-time {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes label-in {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.audience-strip {
  width: min(100%, 1180px);
  margin: 30px auto 0;
  padding: 20px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-strip > span {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.audience-strip p {
  margin: 0;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
}

.audience-strip i {
  padding: 0 7px;
  color: var(--orange);
  font-style: normal;
}

.legal-note {
  width: min(100%, 1180px);
  margin: 15px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  color: #766a79;
  font-size: 10.5px;
  line-height: 1.5;
}

.legal-note p {
  max-width: 580px;
  margin: 0;
}

.legal-note p:last-child {
  text-align: right;
}

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: 170px 1fr 150px;
  }

  .listing-card {
    width: 43%;
    grid-template-columns: 105px 1fr;
  }

  .product-visual {
    height: 116px;
  }

  .telegram-alert {
    width: 35%;
  }

  .time-proof {
    grid-template-columns: 155px 1fr 178px;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

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

  .hero {
    padding-top: 48px;
  }

  .stage-canvas {
    height: 510px;
  }

  .listing-card {
    top: 130px;
    right: 7%;
    left: 7%;
    width: auto;
    max-width: none;
  }

  .telegram-alert {
    top: 325px;
    right: 7%;
    width: 54%;
    max-width: none;
  }

  .send-path {
    top: 286px;
    left: 50%;
    width: 2px;
    height: 37px;
    background: repeating-linear-gradient(180deg, rgba(49, 21, 64, 0.19) 0 5px, transparent 5px 10px);
  }

  .send-path::before {
    top: auto;
    right: auto;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .send-path span {
    top: 0;
    left: -5px;
  }

  @keyframes send-dot {
    0% { opacity: 0; transform: translateY(0) scale(0.8); }
    14% { opacity: 1; }
    100% { opacity: 1; transform: translateY(30px) scale(1); }
  }

  .time-proof {
    top: 20px;
    bottom: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 70px;
  }

  .header-inner {
    width: calc(100% - 30px);
    gap: 16px;
  }

  .brand {
    width: 126px;
  }

  .header-cta {
    min-width: 96px;
    min-height: 40px;
    padding: 0 14px;
    gap: 8px;
    font-size: 12px;
  }

  .hero {
    padding: 37px 15px 22px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  h1 {
    font-size: clamp(40px, 11.3vw, 49px);
    letter-spacing: -0.058em;
    line-height: 1.01;
  }

  h1 strong {
    margin-top: 5px;
  }

  .hero-lead {
    margin-top: 21px;
    padding: 0 3px;
    font-size: 15.5px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 23px;
    flex-direction: column;
    gap: 5px;
  }

  .button-primary {
    width: min(100%, 345px);
  }

  .button-secondary {
    min-height: 47px;
  }

  .button-secondary > span {
    width: 35px;
    height: 35px;
  }

  .proof-list {
    max-width: 350px;
    margin: 17px auto 0;
    flex-wrap: wrap;
    gap: 8px 15px;
    font-size: 10px;
  }

  .demo-stage {
    margin-top: 36px;
    border-radius: 25px;
  }

  .stage-header {
    min-height: 111px;
    padding: 15px 14px 13px;
    flex-direction: column;
    align-items: stretch;
    gap: 11px;
  }

  .stage-title {
    padding-left: 2px;
  }

  .case-tabs {
    width: 100%;
  }

  .case-tabs button {
    min-width: 0;
    padding: 0 7px;
    flex: 1;
  }

  .stage-canvas {
    height: 535px;
  }

  .listing-card {
    top: 190px;
    right: 14px;
    left: 14px;
    min-height: 172px;
    padding: 13px;
    grid-template-columns: 92px 1fr;
    gap: 13px;
    border-radius: 18px;
  }

  .product-visual {
    height: 105px;
  }

  .product-visual svg {
    width: 63px;
    height: 63px;
  }

  .product-orbit {
    width: 72px;
    height: 72px;
  }

  .listing-content h2 {
    margin: 6px 0 9px;
    font-size: 15px;
    white-space: normal;
  }

  .listing-bottom {
    flex-direction: column;
    gap: 1px;
  }

  .listing-bottom strong {
    font-size: 16px;
  }

  .match-badge {
    top: auto;
    right: 13px;
    bottom: 12px;
  }

  .send-path {
    top: 362px;
  }

  .telegram-alert {
    top: 401px;
    right: 14px;
    left: 14px;
    width: auto;
    min-height: 100px;
    padding: 14px;
    grid-template-columns: 42px 1fr auto;
    border-radius: 17px;
  }

  .telegram-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .time-proof {
    right: 14px;
    top: 18px;
    bottom: auto;
    left: 14px;
    min-height: 151px;
    padding: 18px 14px 14px;
    display: grid;
    grid-template: 51px 1fr / 1fr 1fr;
    gap: 10px 8px;
  }

  .time-track {
    grid-area: 1 / 1 / 2 / 3;
    margin: 0 24px;
  }

  .time-point--early {
    grid-area: 2 / 1 / 3 / 2;
    align-self: center;
  }

  .time-point--late {
    grid-area: 2 / 2 / 3 / 3;
    align-self: center;
  }

  .time-point {
    align-items: flex-start;
    gap: 7px;
  }

  .time-point--late {
    align-items: flex-end;
  }

  .time-point small {
    max-width: 100px;
    white-space: normal;
  }

  .time-track b {
    font-size: 10px;
  }

  .audience-strip {
    margin-top: 24px;
    padding: 18px 3px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .audience-strip p {
    font-size: 12px;
    line-height: 1.6;
  }

  .audience-strip i {
    padding: 0 3px;
  }

  .legal-note {
    margin-top: 13px;
    flex-direction: column;
    gap: 8px;
    font-size: 10px;
  }

  .legal-note p:last-child {
    text-align: left;
  }
}

@media (max-width: 370px) {
  .header-cta span {
    display: none;
  }

  h1 {
    font-size: 39px;
  }

  .listing-card {
    grid-template-columns: 80px 1fr;
  }

  .product-visual {
    height: 96px;
  }

  .telegram-alert {
    grid-template-columns: 40px 1fr;
  }

  .telegram-alert > b {
    display: none;
  }
}

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

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