@font-face {
  font-family: "Onest";
  src: url("fonts/onest-cyrillic.woff2") format("woff2");
  font-weight: 500 700;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  src: url("fonts/onest-latin.woff2") format("woff2");
  font-weight: 500 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2122, U+2191, U+2193, U+2212, U+FEFF;
}

@font-face {
  font-family: "Golos Text";
  src: url("fonts/golos-cyrillic.woff2") format("woff2");
  font-weight: 400 600;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Golos Text";
  src: url("fonts/golos-latin.woff2") format("woff2");
  font-weight: 400 600;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2122, U+2191, U+2193, U+2212, U+FEFF;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

img,
svg,
video {
  max-width: 100%;
}

:root {
  --ib-bg: #ffffff;
  --ib-bg-soft: #f5f6f8;
  --ib-fg: #0f1115;
  --ib-muted: #5c6270;
  --ib-line: #e4e7ec;
  --ib-accent: #0f1115;
  --ib-accent-contrast: #ffffff;
  --ib-radius: 4px;
  --ib-container: 1200px;
  --ib-gutter: 24px;
  --ib-gap: 24px;
  --ib-section: 84px;
  --ib-motion: .5s;
  --ib-ease: cubic-bezier(.22, .61, .36, 1);
  --ib-font-display: "Onest", system-ui, sans-serif;
  --ib-font-body: "Golos Text", system-ui, sans-serif;
  --ib-shadow-sm: 0 1px 2px rgba(15, 17, 21, .04), 0 2px 6px rgba(15, 17, 21, .04);
  --ib-shadow: 0 1px 2px rgba(15, 17, 21, .04), 0 12px 28px rgba(15, 17, 21, .07);
  --ib-shadow-lift: 0 2px 6px rgba(15, 17, 21, .05), 0 28px 60px rgba(15, 17, 21, .12);
}

body {
  font-family: var(--ib-font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ib-fg);
  background: var(--ib-bg);
  -webkit-font-smoothing: antialiased;
}

.ib-title,
.block-hero__title,
.block-cta__title,
.block-stats__value,
.block-pricing__price {
  font-family: var(--ib-font-display);
  font-weight: 600;
}

.ib-container {
  width: 100%;
  max-width: var(--ib-container);
  margin-inline: auto;
  padding-inline: var(--ib-gutter);
}

.ib-section {
  padding-block: var(--ib-section);
}

.ib-section--soft {
  background: var(--ib-bg-soft);
}

.ib-eyebrow {
  display: inline-block;
  font-family: var(--ib-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ib-muted);
}

.ib-title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.ib-lead {
  margin: 0;
  color: var(--ib-muted);
  max-width: 640px;
}

.ib-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  font-family: var(--ib-font-display);
  font-weight: 500;
  border: 1px solid var(--ib-accent);
  border-radius: var(--ib-radius);
  background: var(--ib-accent);
  color: var(--ib-accent-contrast);
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  transition: opacity .2s ease;
}

.ib-button:hover {
  opacity: .82;
}

.ib-button--ghost {
  background: transparent;
  color: var(--ib-fg);
  border-color: var(--ib-line);
}

.ib-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ib-accent);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--ib-motion) var(--ib-ease);
}

.ib-link::after {
  content: '→';
}

.ib-link:hover {
  border-bottom-color: currentColor;
}

.grid > * {
  min-width: 0;
}

.ib-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  :root {
    --ib-section: 48px;
  }
}

.ib-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ib-ease), transform .7s var(--ib-ease);
  transition-delay: var(--ib-reveal-delay, 0ms);
}

.ib-reveal--visible {
  opacity: 1;
  transform: none;
}

.ib-button {
  position: relative;
  overflow: hidden;
  transition: background var(--ib-motion) var(--ib-ease), color var(--ib-motion) var(--ib-ease), border-color var(--ib-motion) var(--ib-ease), box-shadow var(--ib-motion) var(--ib-ease);
}

.ib-button:hover {
  opacity: 1;
  box-shadow: var(--ib-shadow);
}

.ib-button--ghost:hover {
  border-color: var(--ib-accent);
}

.ib-title {
  letter-spacing: -.015em;
}

.ib-eyebrow {
  letter-spacing: .12em;
}

.ib-lead {
  font-size: 17px;
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  .ib-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

::selection {
  background: var(--ib-accent);
  color: var(--ib-accent-contrast);
}

::-moz-selection {
  background: var(--ib-accent);
  color: var(--ib-accent-contrast);
}

@supports (background: color-mix(in srgb, red 20%, transparent)) {
  ::selection {
    background: color-mix(in srgb, var(--ib-accent) 22%, transparent);
    color: var(--ib-fg);
  }
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--ib-line) transparent;
}

@supports (color: color-mix(in srgb, red 20%, transparent)) {
  html {
    scrollbar-color: color-mix(in srgb, var(--ib-accent) 35%, transparent) transparent;
  }
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background-clip: content-box;
  background-color: var(--ib-line);
  transition: background-color var(--ib-motion) var(--ib-ease);
}

@supports (background: color-mix(in srgb, red 20%, transparent)) {
  ::-webkit-scrollbar-thumb {
    background-color: color-mix(in srgb, var(--ib-accent) 30%, transparent);
  }

  ::-webkit-scrollbar-thumb:hover {
    background-color: color-mix(in srgb, var(--ib-accent) 55%, transparent);
  }
}

:focus-visible {
  outline: 2px solid var(--ib-accent);
  outline-offset: 3px;
}

.ib-section p a:not([class]),
.ib-section li a:not([class]),
.ib-section dd a:not([class]),
.ib-section blockquote a:not([class]) {
  position: relative;
  color: var(--ib-fg);
  text-decoration: none;
  transition: color var(--ib-motion) var(--ib-ease);
}

.ib-section p a:not([class])::after,
.ib-section li a:not([class])::after,
.ib-section dd a:not([class])::after,
.ib-section blockquote a:not([class])::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--ib-accent);
  transition: width var(--ib-motion) var(--ib-ease);
}

.ib-section p a:not([class]):hover::after,
.ib-section li a:not([class]):hover::after,
.ib-section dd a:not([class]):hover::after,
.ib-section blockquote a:not([class]):hover::after {
  width: 32%;
}

.ib-section p a:not([class]):hover,
.ib-section li a:not([class]):hover,
.ib-section dd a:not([class]):hover,
.ib-section blockquote a:not([class]):hover {
  color: var(--ib-accent);
}

.ib-has-decor {
  position: relative;
}

.ib-has-decor > .ib-container {
  position: relative;
  z-index: 1;
}

.ib-decor {
  position: absolute;
  z-index: 0;
  width: 120px;
  height: auto;
  opacity: .85;
  pointer-events: none;
  animation: ib-decor-float 9s var(--ib-ease) infinite alternate;
}

.ib-decor--tr {
  top: 44px;
  right: 56px;
}

.ib-decor--br {
  bottom: 44px;
  right: 56px;
}

.ib-decor--tl {
  top: 44px;
  left: 56px;
}

.ib-decor--bl {
  bottom: 44px;
  left: 56px;
}

@keyframes ib-decor-float {
  from { transform: translateY(-6px); }
  to { transform: translateY(6px); }
}

@media (max-width: 1100px) {
  .ib-decor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ib-decor {
    animation: none;
  }
}

.ib-box {
  position: relative;
  background: var(--ib-box-bg, transparent);
}

.ib-box--round-s,
.ib-box--round-m,
.ib-box--round-l {
  overflow: hidden;
  margin-inline: clamp(12px, 4vw, 64px);
}

.ib-box--round-s { border-radius: 16px; }
.ib-box--round-m { border-radius: 28px; }
.ib-box--round-l { border-radius: 44px; }

.ib-box--image {
  background-image: var(--ib-box-image);
  background-size: cover;
  background-position: center;
}

.ib-box--image > * {
  position: relative;
  z-index: 1;
}

.ib-box--dim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, .58) 0%, rgba(15, 23, 42, .68) 100%);
}

.ib-box--fill .block-cta,
.ib-box--fill .block-stats__box,
.ib-box--fill .block-heading__box,
.ib-box--fill .block-quote__box,
.ib-box--fill .block-buttons__box {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.ib-box--round-s,
.ib-box--round-m,
.ib-box--round-l {
  margin-block: 24px;
}

.ib-box--light,
.ib-box--light .ib-title,
.ib-box--light .ib-eyebrow,
.ib-box--light p,
.ib-box--light li,
.ib-box--light dd,
.ib-box--light h2,
.ib-box--light h3,
.ib-box--light .block-stats__value,
.ib-box--light .block-cta__title {
  color: #fff;
}

.ib-box--light .ib-lead,
.ib-box--light .block-stats__label,
.ib-box--light .block-cta__text {
  color: rgba(255, 255, 255, .78);
}

.ib-box--light .ib-button {
  background: #fff;
  border-color: #fff;
  color: #0f172a;
}

.ib-box--light .block-stats__icon {
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
}

@media (max-width: 700px) {
  .ib-box--round-s,
  .ib-box--round-m,
  .ib-box--round-l {
    margin-inline: 12px;
  }

  .ib-box--round-l { border-radius: 28px; }
}

.ib-box--edge-slant {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - clamp(24px, 4vw, 64px)), 0 100%);
  padding-bottom: clamp(24px, 4vw, 64px);
}

.ib-box--edge-peak {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - clamp(20px, 3vw, 48px)), 50% 100%, 0 calc(100% - clamp(20px, 3vw, 48px)));
  padding-bottom: clamp(20px, 3vw, 48px);
}

.ib-box--edge-both {
  clip-path: polygon(0 clamp(24px, 4vw, 64px), 100% 0, 100% calc(100% - clamp(24px, 4vw, 64px)), 0 100%);
  padding-block: clamp(24px, 4vw, 64px);
}

body {
  overflow-x: clip;
}
