:root {
  --green: #72c73c;
  --green-soft: #dff4cd;
  --green-dark: #174111;
  --black: #050b07;
  --white: #ffffff;
  --card: #f4faef;
  --card-2: #e8f4dc;
  --text: #0b1308;
  --muted: #5b6658;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family:
    Inter,
    Manrope,
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(112, 199, 60, .18), transparent 34rem),
    radial-gradient(circle at 10% 100%, rgba(126, 212, 72, .16), transparent 24rem),
    linear-gradient(135deg, #020503 0%, #06110a 46%, #102411 100%);
}

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

.tb-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  overflow: hidden;
}

.tb-card {
  position: relative;
  width: min(100%, 520px);
  padding: clamp(30px, 5vw, 42px) clamp(22px, 4.5vw, 34px) clamp(28px, 5vw, 40px);
  border-radius: 34px;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(243, 250, 237, .95) 54%, rgba(220, 240, 202, .93));
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow:
    0 44px 110px rgba(0, 0, 0, .48),
    0 0 0 1px rgba(121, 205, 66, .16),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.tb-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .96), transparent 27%),
    radial-gradient(circle at 88% 18%, rgba(116, 201, 61, .18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .28), transparent 52%);
}


.tb-card__brand-ring {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  opacity: .95;
}

.tb-card__brand-ring--one {
  left: -14%;
  bottom: -10%;
  width: 56%;
  height: 34%;
  border: 18px solid rgba(114, 199, 60, .28);
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(-14deg);
  box-shadow: 0 0 34px rgba(114, 199, 60, .10);
}

.tb-card__brand-ring--two {
  right: -10%;
  top: -8%;
  width: 46%;
  height: 28%;
  border: 16px solid rgba(114, 199, 60, .22);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(14deg);
  box-shadow: 0 0 30px rgba(114, 199, 60, .08);
}

.tb-card__beam {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  left: 55%;
  top: -8%;
  width: 14%;
  height: 118%;
  transform: rotate(14deg);
  opacity: .72;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.18) 18%,
      rgba(255,255,255,.55) 48%,
      rgba(170, 223, 127, .24) 72%,
      rgba(255,255,255,0) 100%);
  filter: blur(7px);
}

.tb-hero {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 26px;
}

.tb-hero__logo {
  display: block;
  width: clamp(112px, 20vw, 148px);
  height: auto;
  margin-bottom: 12px;
  object-fit: contain;
  filter:
    drop-shadow(0 10px 20px rgba(31, 70, 20, .14))
    drop-shadow(0 0 18px rgba(114, 199, 60, .12));
}

.tb-hero__eyebrow {
  margin: 0 0 12px;
  color: #41513b;
  font-size: clamp(12px, 2.1vw, 14px);
  line-height: 1.3;
  font-weight: 450;
  letter-spacing: -.01em;
}

.tb-hero__title {
  margin: 0;
  display: grid;
  gap: 2px;
  line-height: .92;
  font-weight: 760;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.tb-hero__title span:first-child {
  color: #121a10;
  font-size: clamp(44px, 8.2vw, 66px);
  text-shadow: 0 10px 28px rgba(255, 255, 255, .44);
}

.tb-hero__title span:last-child {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  justify-self: center;
  padding: .04em .18em .11em;
  color: #245d18;
  font-size: clamp(46px, 8.6vw, 70px);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .72);
}

.tb-hero__title span:last-child::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: .18em -.02em .06em;
  border-radius: .22em;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .74), rgba(223, 244, 205, .72));
  box-shadow:
    0 10px 26px rgba(56, 105, 31, .12),
    inset 0 1px 0 rgba(255, 255, 255, .82);
}

.tb-hero__subtitle {
  margin: 14px 0 0;
  color: #394333;
  font-size: clamp(17px, 3vw, 22px);
  line-height: 1.25;
  font-weight: 520;
  letter-spacing: -.035em;
}

.tb-links {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 12px;
}

.tb-link {
  --icon-bg: #f7fff1;
  --icon-color: #69bd38;
  --arrow-bg: linear-gradient(135deg, #86d450, #2c641f);
  --title-color: #071006;
  --text-color: #5b6556;

  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 13px;
  min-height: 72px;
  padding: 10px 13px 10px 10px;
  border-radius: 20px;
  background:
    linear-gradient(110deg, rgba(255,255,255,.98), rgba(247,252,243,.94) 70%, rgba(238,248,229,.9));
  border: 1px solid rgba(255, 255, 255, .86);
  box-shadow:
    0 14px 34px rgba(34, 75, 18, .16),
    inset 0 1px 0 rgba(255, 255, 255, .98);
  transition: transform .22s ease, box-shadow .22s ease;
}

.tb-link:hover,
.tb-link:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 20px 44px rgba(34, 75, 18, .23),
    inset 0 1px 0 rgba(255, 255, 255, .98);
}

.tb-link:focus-visible {
  outline: 3px solid rgba(114, 199, 60, .44);
  outline-offset: 4px;
}

.tb-link--accent {
  --icon-bg: #ffffff;
  --icon-color: #0d210b;
  --arrow-bg: rgba(255, 255, 255, .26);
  --title-color: #ffffff;
  --text-color: rgba(255, 255, 255, .88);

  background:
    linear-gradient(108deg, #102c0e, #438d29 50%, #80d346);
  border-color: rgba(232, 255, 214, .68);
  box-shadow:
    0 16px 36px rgba(39, 103, 18, .28),
    inset 0 1px 0 rgba(255, 255, 255, .26);
}

.tb-link--max {
  --icon-color: #397cf6;
}

.tb-link--telegram {
  --icon-color: #2f9ee7;
}

.tb-link--wa {
  --icon-color: #37c96a;
}

.tb-link__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--icon-color);
  background: var(--icon-bg);
  font-size: 16px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: -.05em;
  box-shadow:
    0 10px 22px rgba(18, 43, 10, .12),
    inset 0 1px 0 rgba(255, 255, 255, .96);
}

.tb-link__icon svg {
  width: 27px;
  height: 27px;
  display: block;
}

.tb-link__icon path {
  fill: currentColor;
}

.tb-link__content {
  min-width: 0;
  display: grid;
  gap: 3px;
  line-height: 1.06;
}

.tb-link__title {
  display: block;
  color: var(--title-color);
  font-size: clamp(18px, 3.4vw, 24px);
  font-weight: 680;
  letter-spacing: -.045em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tb-link__text {
  display: block;
  color: var(--text-color);
  font-size: clamp(13px, 2.4vw, 16px);
  font-weight: 470;
  letter-spacing: -.025em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tb-link__arrow {
  justify-self: end;
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--arrow-bg);
  box-shadow:
    0 10px 22px rgba(43, 94, 25, .32),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}

.tb-link__arrow::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 11px;
  width: 10px;
  height: 10px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  border-radius: 2px;
  transform: rotate(45deg);
}

@media (max-width: 620px) {
  .tb-page {
    padding: 14px;
  }

  .tb-card {
    width: min(100%, 470px);
    border-radius: 30px;
    padding: 28px 20px 30px;
  }

  .tb-link {
    grid-template-columns: 54px minmax(0, 1fr) 36px;
    min-height: 68px;
    gap: 11px;
    padding: 9px 12px 9px 9px;
  }

  .tb-link__icon {
    width: 48px;
    height: 48px;
  }

  .tb-link__arrow {
    width: 35px;
    height: 35px;
  }

  .tb-link__arrow::before {
    left: 12px;
    top: 10px;
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 390px) {
  .tb-card {
    padding-inline: 14px;
  }

  .tb-links {
    gap: 10px;
  }

  .tb-link {
    grid-template-columns: 48px minmax(0, 1fr) 32px;
    gap: 9px;
    min-height: 64px;
    border-radius: 18px;
  }

  .tb-link__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .tb-link__arrow {
    width: 32px;
    height: 32px;
  }

  .tb-link__arrow::before {
    left: 10px;
    top: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tb-link {
    transition: none;
  }

  .tb-link:hover,
  .tb-link:focus-visible {
    transform: none;
  }
}


.tb-link--max .tb-link__icon {
  font-size: 26px;
  font-weight: 830;
  letter-spacing: -.06em;
}

.tb-link--max .tb-link__icon::first-letter {
  font-size: 1.08em;
}


@media (max-width: 620px) {
  .tb-card__brand-ring--one {
    left: -18%;
    bottom: -11%;
    width: 60%;
    height: 32%;
  }

  .tb-card__brand-ring--two {
    right: -14%;
    top: -9%;
    width: 50%;
    height: 26%;
  }

  .tb-card__beam {
    left: 58%;
    width: 16%;
    opacity: .66;
  }
}
