
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --fl-lime: #96FF1A;
  --fl-spring: #D6FFA6;
  --fl-mint: #E6FFC8;
  --fl-forest: #083300;
  --fl-carbon: #0C0A09;
  --fl-onyx: #121212;
  --fl-graphite: #292A2E;
  --fl-charcoal: #323232;
  --fl-slate: #4D4D51;
  --fl-smoke: #71737A;
  --fl-fog: #E6E6E7;
  --fl-mist: #F2F1F0;
  --fl-paper: #FFFFFF;

  --fl-r-btn: 10px;
  --fl-r-card: 16px;
  --fl-r-pill: 9999px;
  --fl-maxw: 1200px;

  --fl-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Smooth scroll for anchor links + sticky-nav offset */
html { scroll-behavior: smooth; }
[id^="rec"] { scroll-margin-top: 80px; }

/* reset within blocks */
.fl-block * { box-sizing: border-box; }
.fl-block { font-family: var(--fl-font); -webkit-font-smoothing: antialiased; }
.fl-block img { display: block; max-width: 100%; height: auto; }
.fl-block a { text-decoration: none; }

/* shared buttons */
.fl-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--fl-r-btn);
  font-size: 14px; font-weight: 600; cursor: pointer; border: none;
  transition: transform 0.12s, background 0.12s; white-space: nowrap;
  font-family: var(--fl-font);
}
.fl-btn:active { transform: scale(0.97); }
.fl-btn-primary {
  background: var(--fl-lime); color: var(--fl-forest);
  border: 1px solid var(--fl-forest);
}
.fl-btn-primary:hover { background: var(--fl-spring); }
.fl-btn-outline {
  background: transparent; color: var(--fl-paper);
  border: 1px solid var(--fl-slate);
}
.fl-btn-outline:hover { background: var(--fl-graphite); }
.fl-btn-ghost {
  background: transparent; color: var(--fl-charcoal); padding: 14px 24px;
}
.fl-btn-ghost:hover { color: var(--fl-carbon); }

.fl-badge {
  display: inline-flex; align-items: center;
  padding: 7px 16px; border-radius: var(--fl-r-pill);
  background: var(--fl-lime); color: var(--fl-forest);
  font-size: 12px; font-weight: 600;
}
.fl-eyebrow {
  font-size: 13px; font-weight: 700; color: var(--fl-smoke);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.fl-title {
  font-size: clamp(32px, 5vw, 44px); font-weight: 700;
  letter-spacing: -0.04em; line-height: 0.9; margin: 0;
}

/* === Существующие стили === */

.myshape_2 .tn-atom { border-radius: 30px 30px 30px 30px;  background: linear-gradient(45deg, #cd90ea60 -10%, #f9fb7960 110%); background: -webkit-linear-gradient(45deg, #cd90ea60 -10%, #f9fb7960 110%);   -webkit-box-shadow: inset 0px 0px px px 00; -moz-box-shadow: inset 0px 0px px px 00; box-shadow: inset 0px 0px px px 00; } .myshape_2 {} .myshape_2 > .tn-atom__sbs-anim-wrapper > .tn-atom, .myshape_2 > .tn-atom__sbs-anim-wrapper {backdrop-filter: blur(0px);-webkit-backdrop-filter: blur(0px); filter: blur(0px); -webkit-filter: blur(0px); border-radius: 30px 30px 30px 30px; }.myshape_2 > .tn-atom {backdrop-filter: blur(0px);-webkit-backdrop-filter: blur(0px); filter: blur(0px); -webkit-filter: blur(0px); border-radius: 30px 30px 30px 30px; opacity: unset!important;background-color: #ffffff60!important;}

/* === Стили для бегущей строки логотипов === */
.marquee-container {
  width: 100vw;
  height: 100px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
}

.marquee {
  display: flex;
  width: fit-content;
  animation: marquee-animation 30s linear infinite;
  will-change: transform;
}

.marquee-item-set {
  display: flex;
  align-items: center;
  gap: 60px;
  height: 100%;
  flex-shrink: 0;
}

.marquee-item-set img {
  height: 80px;
  max-height: 100%;
  width: auto;
  opacity: 0.7;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.marquee-item-set img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
  opacity: 1;
}

@keyframes marquee-animation {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Адаптивность */
@media (max-width: 768px) {
  .marquee-container {
    height: 70px;
  }
  .marquee-item-set {
    gap: 30px;
  }
  .marquee-item-set img {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .marquee-container {
    height: 50px;
  }
  .marquee-item-set {
    gap: 20px;
  }
  .marquee-item-set img {
    height: 40px;
  }
}
</style>
