:root {
  color-scheme: light;
  --ink: #14201d;
  --muted: #5e6c67;
  --line: #dce7e2;
  --surface: #f7faf8;
  --white: #ffffff;
  --deep: #07110f;
  --accent: #1f8f73;
  --accent-strong: #0d6b56;
  --amber: #b7791f;
  --rose: #b44a5b;
  --blue: #276b9f;
  --shadow: 0 24px 80px rgba(16, 33, 29, 0.18);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--line);
}

.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 231, 226, 0.75);
  backdrop-filter: blur(16px);
}

.site-header a,
.site-header a:link,
.site-header a:visited,
.site-header a:hover,
.site-header a:focus,
.site-header a:active {
  text-decoration: none !important;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  object-fit: cover;
  display: block;
}

.footer-brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  overflow-x: auto;
  color: #2c3d38;
  font-size: 12px;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav button,
.footer-links a {
  color: inherit;
}

.site-nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.site-nav button:hover,
.footer-links a:hover {
  color: var(--accent-strong);
}

.site-nav button:hover {
  border-color: rgba(31, 143, 115, 0.55);
  background: #f3faf7;
}

#overview,
#features,
#use-cases,
#quick-start,
#api {
  scroll-margin-top: 92px;
}

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

.link-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius);
  border: 1px solid #123e34;
  background: #10221d;
  color: #f7fffb;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
}

.link-button.ghost,
.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #dceeff;
  color: #102a43;
}

.hero-scene,
#teleide-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(107, 174, 235, 0.34), transparent 38%),
    linear-gradient(90deg, rgba(206, 231, 255, 0.62) 0%, rgba(222, 240, 255, 0.28) 48%, rgba(239, 248, 255, 0.08) 100%),
    linear-gradient(0deg, rgba(190, 222, 250, 0.68) 0%, rgba(220, 238, 255, 0) 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1880px, calc(100% - 20px));
  margin: 0 auto;
  padding: 132px 0 120px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 42px;
}

.hero-copy {
  max-width: none;
}

.hero-copy h1 {
  max-width: 100%;
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.12;
  white-space: normal;
  text-wrap: balance;
}

.hero-slogan span {
  display: block;
}

.hero-product-views {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(190px, .32fr));
  gap: 18px;
  align-items: stretch;
  width: 100%;
}

.hero-product-shot {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(96, 151, 204, 0.42);
  border-radius: 12px;
  background: rgba(233, 245, 255, 0.74);
  box-shadow: 0 28px 80px rgba(45, 96, 140, 0.24);
  backdrop-filter: blur(8px);
}

.hero-product-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 7px;
}

.hero-product-shot [data-lightbox-image] {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.92);
  cursor: zoom-out;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 48px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 100px rgba(0, 0, 0, 0.65);
  cursor: default;
}

.image-lightbox-close {
  position: fixed;
  z-index: 1;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.66);
  color: #fff;
  font: 30px/1 inherit;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

.hero-product-telegram {
  display: flex;
  flex-direction: column;
}

.hero-product-telegram img {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #090d0c;
}

.hero-product-shot figcaption {
  padding: 9px 4px 2px;
  color: #244f73;
  font-size: 12px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #28725f;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hero .eyebrow { color: #aef3dd; }

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 8vw, 88px);
  line-height: .95;
  letter-spacing: 0;
}

.subhero h1 {
  font-size: clamp(38px, 6vw, 72px);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.hero-copy p {
  max-width: 620px;
  color: #d7e7e2;
  font-size: 20px;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 42px;
}

.proof-item {
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(210, 236, 228, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.proof-item strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.proof-item span {
  color: #c7ddd6;
  font-size: 13px;
}

.floating-terminal,
.floating-phone,
.floating-router {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 6vw, 88px);
  border: 1px solid rgba(194, 234, 222, 0.26);
  border-radius: var(--radius);
  background: rgba(7, 17, 15, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}

.floating-terminal {
  top: 22%;
  width: min(500px, 44vw);
  padding: 18px;
}

.terminal-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.terminal-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #75d1b8;
}

.terminal-line {
  height: 13px;
  margin: 12px 0;
  border-radius: 3px;
  background: rgba(206, 255, 239, 0.2);
}

.terminal-line.short { width: 62%; }
.terminal-line.mid { width: 78%; background: rgba(255, 209, 128, 0.34); }
.terminal-line.long { width: 94%; }

.floating-phone {
  top: 52%;
  width: min(270px, 28vw);
  padding: 14px;
}

.phone-message {
  margin: 8px 0;
  padding: 10px 12px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.12);
  color: #e9fff8;
  font-size: 13px;
}

.floating-router {
  top: 68%;
  right: clamp(280px, 29vw, 520px);
  padding: 12px 14px;
  color: #d8fff2;
  font-size: 13px;
}

.page-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: var(--white);
}

.section-head {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-head p,
.subhero p,
.info-panel p,
.split-card p,
.feature-card p,
.timeline p {
  color: var(--muted);
}

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

.split-card,
.feature-card,
.info-panel,
.price-card,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(18, 39, 34, 0.06);
}

.split-card {
  width: 100%;
  min-height: 290px;
  padding: 28px;
  text-align: left;
  cursor: pointer;
}

.split-card.is-active {
  border-color: rgba(31, 143, 115, 0.65);
  box-shadow: 0 20px 54px rgba(31, 143, 115, 0.16);
}

.split-card .tag,
.feature-card .tag,
.price-card .tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e8f6f1;
  color: #126a55;
  font-size: 12px;
  font-weight: 800;
}

.use-detail {
  display: none;
  margin-top: 18px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fdfefe;
}

.use-detail.is-active {
  display: block;
}

.detail-grid,
.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.detail-item,
.feature-card {
  padding: 22px;
}

.detail-item {
  border-left: 3px solid var(--accent);
  background: #f7fbf9;
}

.use-map-root {
  position: relative;
  width: max-content;
  margin: 0 auto 54px;
  padding: 16px 28px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
}

.use-map-root::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 28px;
  background: var(--accent);
}

.use-map-branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.use-map-branches::before {
  content: "";
  position: absolute;
  top: -26px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: var(--accent);
}

.use-map-branch {
  position: relative;
}

.use-map-branch::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 2px;
  height: 26px;
  background: var(--accent);
}

.use-map-heading {
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(18, 39, 34, 0.06);
}

.use-map-heading .tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e8f6f1;
  color: #126a55;
  font-size: 12px;
  font-weight: 800;
}

.use-map-heading p,
.use-map-items p {
  color: var(--muted);
}

.use-map-items {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-left: 26px;
}

.use-map-items::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 2px;
  background: var(--accent);
}

.use-map-items .detail-item {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}

.use-map-items .detail-item::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 100%;
  width: 18px;
  height: 2px;
  background: var(--accent);
}

.product-showcase {
  background: #eef5f1;
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-top: 26px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(18, 39, 34, 0.08);
}

.showcase-row-reverse .showcase-copy {
  order: 2;
}

.showcase-row-reverse .showcase-gallery {
  order: 1;
}

.showcase-copy .tag,
.telegram-agents .tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e8f6f1;
  color: #126a55;
  font-size: 12px;
  font-weight: 800;
}

.showcase-copy h3,
.telegram-agents h3 {
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.08;
}

.showcase-copy p,
.telegram-agents p {
  color: var(--muted);
  font-size: 17px;
}

.showcase-media {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #cedbd6;
  border-radius: 10px;
  background: #111;
  box-shadow: 0 18px 46px rgba(15, 30, 26, 0.16);
}

.showcase-media img {
  display: block;
  width: 100%;
  height: auto;
}

.showcase-media-portrait {
  width: min(100%, 380px);
  justify-self: center;
}

.quick-agent-media {
  width: min(100%, 430px);
  justify-self: center;
}

.origin-media {
  width: min(100%, 500px);
  justify-self: center;
}

.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.target-gallery {
  grid-template-columns: 1fr;
}

.showcase-gallery .showcase-media-tall {
  grid-column: 1 / -1;
  max-height: 620px;
}

.showcase-gallery .showcase-media-tall img {
  max-height: 620px;
  object-fit: contain;
  object-position: top;
}

.telegram-agents {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: 28px;
  align-items: center;
  margin-top: 26px;
  padding: clamp(24px, 5vw, 48px);
  border-radius: 14px;
  background: #0b1714;
  color: #eafff8;
  box-shadow: var(--shadow);
}

.instruction-feature-grid {
  margin-top: 26px;
}

.telegram-agents p {
  color: #b8cec6;
}

.topic-stack {
  display: grid;
  gap: 10px;
}

.topic-stack div {
  padding: 14px 16px;
  border: 1px solid rgba(216, 255, 242, 0.16);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
}

.topic-stack strong,
.topic-stack span {
  display: block;
}

.topic-stack span {
  margin-top: 3px;
  color: #b8cec6;
  font-size: 13px;
}

.feature-card:nth-child(2n) .tag { background: #eef5fb; color: var(--blue); }
.feature-card:nth-child(3n) .tag { background: #fff4df; color: var(--amber); }
.feature-card:nth-child(4n) .tag { background: #fff0f2; color: var(--rose); }

.workflow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 28px;
  align-items: start;
}

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

.timeline-item {
  padding: 18px;
}

.quick-start-workflow {
  display: block;
}

.quick-start-workflow > div:first-child {
  text-align: center;
}

.quick-start-workflow .timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.quick-start-workflow .timeline-item {
  padding: 24px;
  border-top: 4px solid var(--accent);
}

.quick-start-workflow .timeline-item h3 {
  margin-bottom: 10px;
}

.screen-placeholder {
  min-height: 440px;
  border: 1px solid #263b36;
  border-radius: var(--radius);
  background: #0b1714;
  box-shadow: var(--shadow);
  padding: 18px;
  color: #eafff8;
}

.screen-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: #9fcdbf;
  font-size: 13px;
}

.screen-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 12px;
}

.screen-list,
.screen-main {
  min-height: 320px;
  border: 1px solid rgba(216, 255, 242, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px;
}

.screen-row {
  min-height: 42px;
  margin-bottom: 10px;
  border-radius: 6px;
  background: rgba(216, 255, 242, 0.09);
}

.screen-code {
  height: 12px;
  margin: 13px 0;
  border-radius: 3px;
  background: rgba(216, 255, 242, 0.16);
}

.screen-code:nth-child(3n) { width: 70%; background: rgba(255, 209, 128, 0.28); }
.screen-code:nth-child(4n) { width: 86%; }

.subhero {
  padding: 150px 0 70px;
  background: #edf5f1;
  border-bottom: 1px solid var(--line);
}

.content-stack {
  display: grid;
  gap: 18px;
  padding: 42px 0 88px;
}

.info-panel {
  padding: 28px;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.cloud-price-tree {
  position: relative;
}

.cloud-root-card {
  position: relative;
}

.cloud-root-card::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 28px;
  background: var(--accent);
}

.cloud-price-branches {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding-left: 28px;
}

.cloud-price-branches::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 2px;
  background: var(--accent);
}

.cloud-price-branches .cloud-price-card {
  position: relative;
}

.cloud-price-branches .cloud-price-card::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 100%;
  width: 18px;
  height: 2px;
  background: var(--accent);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 26px;
}

.cloud-price-card {
  min-height: 0;
  padding: 20px;
}

.cloud-price-card h2 {
  font-size: clamp(24px, 2.5vw, 34px);
}

.server-specs {
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 750;
}

.price {
  margin: 10px 0 16px;
  font-size: 34px;
  font-weight: 800;
}

.price-card ul {
  padding-left: 20px;
  color: var(--muted);
}

.price-card .button {
  margin-top: auto;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.site-footer p {
  max-width: 560px;
  margin: 10px 0 0;
  color: #afc6be;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: end;
  gap: 14px;
  color: #cde3dc;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-nav.is-open,
  .nav-open .header-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  .floating-terminal,
  .floating-phone,
  .floating-router {
    opacity: .34;
    right: 18px;
    width: 72vw;
  }

  .floating-router {
    right: 18px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-bottom: 84px;
  }

  .hero-copy h1 {
    font-size: clamp(27px, 5.8vw, 40px);
  }

  .hero-product-shot {
    transform: none;
  }

  .hero-proof,
  .use-grid,
  .detail-grid,
  .feature-grid,
  .pricing-grid,
  .pricing-options,
  .workflow,
  .screen-grid,
  .showcase-row,
  .telegram-agents,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .showcase-row-reverse .showcase-copy,
  .showcase-row-reverse .showcase-gallery {
    order: initial;
  }

  .quick-start-workflow .timeline {
    grid-template-columns: 1fr;
  }

  .use-map-branches {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .use-map-branches::before {
    display: none;
  }

  .use-map-branch::before {
    left: 50%;
  }

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding-top: 118px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-product-shot {
    padding: 4px;
  }

  .hero-product-views {
    grid-template-columns: 1fr;
    margin-inline: -8px;
    width: calc(100% + 16px);
  }

  .hero-product-telegram {
    width: min(78vw, 360px);
    justify-self: center;
  }

  .section {
    padding: 64px 0;
  }

  .split-card,
  .info-panel,
  .use-detail,
  .price-card {
    padding: 20px;
  }

  .showcase-row {
    padding: 18px;
  }

  .showcase-gallery {
    grid-template-columns: 1fr;
  }

  .showcase-gallery .showcase-media-tall {
    grid-column: auto;
  }

  .telegram-agents {
    padding: 22px;
  }
}
