:root {
  --bg: #050608;
  --surface: rgba(19, 21, 25, 0.72);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f4f7fb;
  --muted: #b8c0ca;
  --accent: #ffffff;
  --accent-dark: #0a0d12;
  --max: 1180px;
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(64, 79, 122, 0.2), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(61, 77, 114, 0.16), transparent 42%),
    #06080c;
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.14;
  font-family: "Unbounded", "Manrope", sans-serif;
}

p {
  margin: 0;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.4)),
    url("assets/68f571aba1d1932372b062c21325236f71f66db5.png") center / cover no-repeat;
  filter: saturate(0.28) brightness(0.35) contrast(1.1);
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: #dbe4ef;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(4, 7, 11, 0.3);
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, backdrop-filter 0.2s ease;
}

.site-header.scrolled {
  background: rgba(4, 7, 11, 0.7);
  border-color: var(--border);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: block;
  width: 105px;
  height: 48px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  border: 0;
  background: #ffffff;
  color: #0a0d12;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow:
    0 10px 28px rgba(255, 255, 255, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 14px 34px rgba(34, 101, 255, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 12, 19, 0.72);
  color: #dbe6f5;
  box-shadow: none;
}

.hero {
  padding-top: 160px;
  padding-bottom: 64px;
}

.hero-inner {
  text-align: center;
}

.hero h1 {
  margin-inline: auto;
  max-width: 16ch;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.1;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 22px auto 0;
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.42;
  text-wrap: pretty;
}

.hero-subtitle-muted {
  margin-top: 10px;
  color: #aab4c2;
}

.hero-visual-row {
  margin: 4px auto 18px;
  width: min(640px, 96vw);
  display: block;
}

.hero-sticker-stack {
  display: grid;
  justify-items: center;
}

.polymarket-badge {
  margin: 0 auto 18px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(84, 142, 255, 0.45);
  background: rgba(18, 40, 84, 0.28);
  color: #dbe8ff;
  font-weight: 700;
}

.hero-vector-wrap {
  margin: 0 auto 10px;
  display: grid;
  justify-items: center;
  gap: 8px;
  width: min(640px, 92vw);
}

.hero-vector-chip {
  width: min(170px, 34vw);
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(28, 89, 254, 0.28));
}

.hero-vector-banner {
  width: min(460px, 88vw);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(28, 89, 254, 0.26));
}

.poly-logo-icon {
  width: 18px;
  height: 18px;
  stroke: #4d8dff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.btn-hero {
  width: min(760px, 92vw);
  min-height: 68px;
  font-size: clamp(17px, 2vw, 28px);
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.15;
  padding-inline: clamp(16px, 2vw, 30px);
  white-space: normal;
  text-transform: uppercase;
  box-shadow:
    0 20px 46px rgba(34, 101, 255, 0.34),
    0 0 36px rgba(34, 101, 255, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.poly-icons-row {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.poly-icon-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 12, 20, 0.66);
  color: #c8d6eb;
  font-size: 13px;
  font-weight: 600;
}

.poly-icon-chip svg {
  width: 15px;
  height: 15px;
  stroke: #5f9bff;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stats-grid {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(10, 13, 18, 0.7);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat-card {
  padding: 24px 12px;
  border-right: 1px solid var(--border);
  display: grid;
  gap: 8px;
  place-items: center;
  text-align: center;
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card strong {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
}

.stat-card span {
  color: var(--muted);
  font-size: 13px;
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2 {
  font-size: clamp(26px, 4vw, 42px);
  text-wrap: balance;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 2;
}

#system .container {
  position: relative;
}

.program-card {
  min-height: 286px;
  padding: 22px;
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(9, 12, 17, 0.85);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.program-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(167, 188, 255, 0.2), transparent 70%);
  pointer-events: none;
}

.program-day {
  display: none;
}

.speaker-name {
  height: 18px;
  width: auto;
  margin-bottom: 18px;
}

.program-card h3 {
  font-size: clamp(21px, 1.7vw, 25px);
  max-width: 25ch;
  line-height: 1.2;
  text-wrap: balance;
}

.program-card p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 42ch;
}

.overview-extra {
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(10, 13, 18, 0.6);
  padding: 16px 18px;
  color: #aeb8c7;
}

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

.mentors-grid-poly {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  gap: 18px;
  margin-inline: auto;
}

#mentors .section-head {
  text-align: center;
}

#mentors.section {
  padding-top: 44px;
}

.mentor-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.mentor-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
}

.mentor-card-poly:hover {
  transform: translateY(-4px);
}

.mentor-photo-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: rgba(2, 6, 12, 0.55);
}

.mentor-top-img {
  position: absolute;
  left: 50%;
  bottom: 122px;
  transform: translateX(-50%);
  width: min(66%, 250px);
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.48));
}

.mentor-bottom-img {
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  width: 120%;
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.6));
}

.mentor-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 92px;
  background: linear-gradient(180deg, rgba(9, 12, 18, 0) 0%, rgba(9, 12, 18, 0.84) 55%, #090c12 100%);
  z-index: 3;
}

.mentor-meta-poly {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 15, 0.94);
}

.mentor-meta-poly h3 {
  margin: 0 0 4px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.mentor-meta-poly p {
  font-size: clamp(20px, 1.8vw, 24px);
}

.mentor-meta-poly small {
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cbbfa7;
  line-height: 1.25;
}

.mentor-arrow {
  position: absolute;
  right: 16px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.8);
  color: #eaf1ff;
  font-size: 30px;
  line-height: 1;
}

.mentor-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.mentor-meta {
  padding: 16px 16px 20px;
  display: grid;
  gap: 8px;
  position: relative;
  min-height: 116px;
}

.mentor-name {
  height: 18px;
  width: auto;
}

.mentor-meta p {
  color: #dde5ef;
  font-size: 14px;
}

.mentor-meta small {
  color: #aab4c0;
}

.mentor-telegram {
  position: absolute;
  right: 16px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 62px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.86);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.mentor-telegram img {
  width: 24px;
  height: 24px;
  opacity: 0.95;
}

.mentor-telegram:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 1);
  transform: translateY(-1px);
}

.reviews-section {
  padding-bottom: 64px;
}

#reviews .section-head {
  text-align: center;
}

.reviews-wall {
  margin-top: 14px;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0 18px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.reviews-wall::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(5, 8, 13, 0.22) 0%, rgba(5, 8, 13, 0) 18%, rgba(5, 8, 13, 0.42) 100%),
    linear-gradient(90deg, rgba(5, 8, 13, 0.65) 0%, rgba(5, 8, 13, 0) 15%, rgba(5, 8, 13, 0) 85%, rgba(5, 8, 13, 0.65) 100%);
}

.reviews-row {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.reviews-row-single .reviews-track {
  animation: reviews-drift-left 78s linear infinite;
}

.review-lg {
  width: clamp(300px, 29vw, 480px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 19, 0.82);
}

.review-lg img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.review-lg:hover img {
  transform: scale(1.03);
}

@keyframes reviews-drift-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.register-card {
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(840px, 100%);
  margin-inline: auto;
}

.register-copy h2 {
  font-size: clamp(24px, 4vw, 40px);
  max-width: 18ch;
  line-height: 1.15;
  text-wrap: balance;
}

.register-copy p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 52ch;
}

.lead-form {
  display: grid;
  gap: 10px;
  width: 100%;
}

.lead-form-entry {
  display: grid;
  width: 100%;
  justify-items: center;
}

#demoCta {
  width: min(620px, 100%);
  min-height: 64px;
  font-size: clamp(20px, 1.9vw, 26px);
  letter-spacing: -0.005em;
  white-space: nowrap;
  border-radius: 16px;
  box-shadow:
    0 18px 44px rgba(34, 101, 255, 0.34),
    0 0 30px rgba(34, 101, 255, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.lead-form-wrap {
  overflow: hidden;
  max-height: 240px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 0.28s ease, opacity 0.24s ease, transform 0.24s ease;
}

.lead-form-wrap.is-collapsed {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.lead-form label {
  font-size: 13px;
  color: #c9d3df;
}

.lead-form input {
  min-height: 52px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(4, 8, 13, 0.7);
  color: #fff;
  font-size: 16px;
}

.lead-form input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: 1px;
}

.form-note {
  color: #95a0ad;
  font-size: 12px;
}

.site-footer {
  margin-top: 28px;
  border-top: 1px solid var(--border);
  background: #191919;
  padding: clamp(34px, 4.5vw, 62px) 0 20px;
}

.footer-v2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 3vw, 56px);
  align-items: start;
}

.footer-left h2 {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.footer-left p {
  margin-top: 12px;
  color: #c2c2c2;
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.2;
  max-width: 46ch;
}

.footer-nav-wrap {
  margin-top: clamp(22px, 2.8vw, 40px);
}

.footer-label {
  display: block;
  color: #5f5f5f;
  font-size: 12px;
  margin-bottom: 12px;
}

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(22px, 2.8vw, 44px);
}

.footer-nav-links a {
  color: #f0f0f0;
  font-size: clamp(16px, 1.05vw, 22px);
  line-height: 1.1;
  transition: color 0.2s ease;
}

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

.footer-right {
  justify-self: end;
  display: grid;
  justify-items: start;
  gap: clamp(10px, 1.5vw, 16px);
}

.footer-logo {
  width: clamp(132px, 12vw, 186px);
  height: auto;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(46px, 3.3vw, 64px);
  padding: 0 clamp(18px, 1.8vw, 28px);
  border-radius: 999px;
  background: #fff;
  color: #151515;
  font-size: clamp(16px, 1.1vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: background 0.2s ease;
}

.footer-contact-btn:hover {
  background: #ececec;
}

.footer-lang-pill {
  margin-top: 4px;
  display: inline-flex;
  padding: 4px;
  border-radius: 13px;
  background: #2d2d2d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-lang-btn {
  min-width: 48px;
  min-height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7f7f7f;
  font-size: 12px;
  font-weight: 700;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.footer-lang-btn.is-active {
  background: #1d1d1d;
  color: #f2f2f2;
}

.footer-social-wrap {
  margin-top: clamp(10px, 1.3vw, 18px);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: clamp(42px, 3.2vw, 62px);
  height: clamp(42px, 3.2vw, 62px);
  border-radius: 50%;
  background: #242424;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f0f0f0;
  font-size: clamp(11px, 0.75vw, 14px);
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-socials a svg {
  width: 46%;
  height: 46%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a:hover {
  background: #3a3a3a;
  transform: translateY(-1px);
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .program-grid,
  .mentors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .stat-card:nth-child(3),
  .stat-card:nth-child(4) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 124px;
    padding-bottom: 46px;
  }

  .hero-visual-row {
    width: min(640px, 96vw);
  }

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

  .stat-card:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .stat-card:nth-child(even) {
    border-right: 0;
  }

  .program-grid,
  .mentors-grid,
  .footer-v2 {
    grid-template-columns: 1fr;
  }

  .mentors-grid-poly {
    max-width: 560px;
    grid-template-columns: 1fr;
    margin-inline: auto;
    gap: 22px;
  }

  .mentor-photo-wrap {
    height: 460px;
  }

  .mentor-meta-poly h3 {
    font-size: clamp(52px, 8.6vw, 64px);
  }

  .mentor-meta-poly p {
    font-size: clamp(24px, 4.2vw, 30px);
  }

  .mentor-meta-poly small {
    font-size: clamp(15px, 2.2vw, 18px);
    letter-spacing: 0.06em;
  }

  .mentor-meta {
    padding: 22px 24px 28px;
    min-height: 156px;
  }

  .mentor-telegram {
    min-height: 56px;
    min-width: 88px;
    right: 24px;
    bottom: 26px;
  }

  .mentor-telegram img {
    width: 28px;
    height: 28px;
  }

  .program-card {
    min-height: auto;
  }

  .footer-right {
    justify-self: start;
    margin-top: 8px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .section {
    padding: 72px 0;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-visual-row {
    width: min(560px, 92vw);
  }

  .hero-actions .btn {
    min-height: 56px;
  }

  #demoCta {
    width: 100%;
    min-height: 58px;
    font-size: clamp(16px, 5vw, 20px);
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .site-header .btn-small {
    display: none;
  }

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

  .reviews-wall {
    mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  }

  .reviews-row {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .reviews-row::-webkit-scrollbar {
    display: none;
  }

  .reviews-row-single .reviews-track {
    animation: none;
    padding-inline: 2px;
  }

  .reviews-row-single .reviews-track .review-lg:nth-child(n+9) {
    display: none;
  }

  .review-lg {
    width: clamp(250px, 84vw, 410px);
    flex: 0 0 auto;
  }

  .hero-vector-wrap {
    width: min(560px, 92vw);
    gap: 6px;
  }

  .hero-sticker-stack {
    width: 100%;
  }

  .hero-vector-banner {
    width: min(420px, 92vw);
  }

  .mentor-photo-wrap {
    height: 420px;
  }

  .mentors-grid-poly {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 18px;
  }

  .mentor-top-img {
    width: min(72%, 290px);
    bottom: 118px;
  }

  .mentor-bottom-img {
    width: 128%;
    bottom: -28px;
  }

  .mentor-meta-poly h3 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .mentor-meta-poly p {
    font-size: clamp(20px, 6vw, 28px);
  }

  .mentor-meta-poly small {
    font-size: clamp(14px, 4.2vw, 16px);
  }

  .mentor-meta {
    padding: 20px 22px 24px;
    min-height: 146px;
  }

  .mentor-telegram {
    min-height: 50px;
    min-width: 76px;
    right: 20px;
    bottom: 22px;
  }

  .stat-card {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  .reviews-row-single .reviews-track {
    animation: none;
  }
}
