@font-face {
  font-family: 'Futura XBlkCnIt BT';
  src: url('fonts/Futura XBlkCnIt BT Extra Black Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans';
  src: url('fonts/OpenSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg: #111;
  --fg: #fff;
  --prism: conic-gradient(from 0deg, #ff5a00, #ffd200, #00ffb3, #00a2ff, #c000ff, #ff5a00);
  --site-gutter: 16px;
}

/* Global reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'OpenSans', sans-serif;
  font-size: 16px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #0a0c11;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  padding: 14px var(--site-gutter);
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  order: 2;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:active {
  background-color: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000; /* Между header и меню */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(4.45px, 4.45px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(4.45px, -4.45px);
}

.logo {
  position: relative;
  display: inline-block;
}

.logo img {
  display: block;
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height 0.3s ease;
}

.nav {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
  text-align: left;
  margin-left: auto;
}

/* Hide nav on very small screens by default */
@media (max-width: 767px) {
  .nav {
    display: none;
  }
}

.nav-link {
  color: #e6e6e6;
  text-decoration: none;
  font-weight: normal;
  opacity: .8;
  font-family: 'OpenSans', sans-serif;
  font-size: 14px;
  white-space: nowrap;
  transition: all .3s ease;
}

.nav-link.active {
  color: #fff;
}

.nav-link:hover {
  font-weight: 900;
  color: #fff;
  opacity: 1;
  transform: scale(1.05);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 12px;
  margin-right: 0;
  padding-right: 0;
}

.soc img {
  display: block;
  filter: invert(1);
  opacity: .8;
  transition: transform .2s ease, opacity .2s ease;
}

.soc:hover img {
  transform: translateY(-2px) scale(1.05);
  opacity: 1;
}

.btn-cta {
  background: #fff;
  color: #000;
  padding: 3.5px 12px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: normal;
  letter-spacing: 0.5px;
  font-family: 'Futura XBlkCnIt BT', sans-serif;
  font-size: 18px;
  
  white-space: nowrap;
}

/* ===== OUR TOOLKIT ===== */
.toolkit {
  padding: 40px 32px 56px 32px;
  background: #0e1016;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  position: relative;
  z-index: 100;
  isolation: isolate;
  --tk-gap: 2px;
  --prism-size: 600px;
}

.toolkit-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Единый стиль для всех заголовков и подзаголовков секций */
.hero-head,
.toolkit-head,
.reels-head {
  margin: 10px 0 60px 0;
}

.hero-title,
.toolkit-title,
.reels-title {
  font-family: 'Futura XBlkCnIt BT', sans-serif;
  font-weight: normal;
  font-size: 48px;
  line-height: 0.94;
  letter-spacing: 0.5px;
}

.hero-sub,
.toolkit-sub,
.reels-sub {
  font-family: 'Futura XBlkCnIt BT', sans-serif;
  font-weight: normal;
  font-size: 18px;
  letter-spacing: 0.5px;
  margin-top: 6px !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  opacity: .8;
  text-transform: uppercase;
  font-style: normal;
}

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 96px;
}

.tk-item {
  position: relative;
  display: grid;
  grid-template-columns: 22px 170px;
  grid-template-rows: min-content min-content;
  column-gap: 12px;
  row-gap: 0;
  align-items: start;
  align-content: start;
  transition: transform .25s ease;
  z-index: 0;
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
  min-height: auto;
  padding: 16px 0;
}

.tk-body {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  margin-top: 6px !important;
  padding-top: 0 !important;
}

.tk-item * {
  -webkit-user-select: none;
  user-select: none;
}

.tk-item:hover,
.tk-item.pop-open {
  transform: translateY(-4px);
  z-index: 1000;
}
.tk-icon {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin-top: 0;
  opacity: .95;
  background: #fff;
  -webkit-mask: var(--icon) no-repeat center / contain;
  mask: var(--icon) no-repeat center / contain;
}

/* ::after псевдоэлемент иконок убран для избежания цветных эффектов */

.tk-item:hover .tk-icon,
.tk-item.pop-open .tk-icon {
  transform: scale(1.15);
}

/* Цветные эффекты с иконок полностью убраны */
/* Неиспользуемые keyframes для иконок убраны */
.tk-title {
  position: relative;
  font-family: 'Futura XBlkCnIt BT', sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 1;
  letter-spacing: .5px;
  grid-column: 2;
  grid-row: 1;
  display: block;
  transform-origin: left center;
  transition: transform .3s ease, color .3s ease, background .3s ease, -webkit-text-fill-color .3s ease;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  align-self: start;
  color: #fff;
  padding: 0;
  margin: 0;
  will-change: transform;
}

/* Убираем радужный эффект с заголовка, оставляя обычный текст */
.tk-title::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  z-index: -1;
  opacity: 0;
}

/* Общие стили для градиентных заголовков */
.tk-item:hover .tk-title,
.tk-item.pop-open .tk-title {
  position: relative;
  z-index: 1;
  /* Движущийся радужный градиент слева направо */
  background: linear-gradient(
    45deg,
    #ff6b00 0%,   /* Оранжевый */
    #ff8c00 8%,   /* Темно-оранжевый */
    #ffb000 16%,  /* Оранжево-желтый */
    #ffd200 24%,  /* Желтый */
    #e6ff00 32%,  /* Желто-зеленый */
    #80ff00 40%,  /* Зеленый */
    #00ff40 48%,  /* Зеленовато-голубой */
    #00ffb3 56%,  /* Голубой */
    #00d4ff 64%,  /* Светло-голубой */
    #00a2ff 72%,  /* Синий */
    #4d6bff 80%,  /* Синий с фиолетовым */
    #8b4dff 88%,  /* Фиолетово-синий */
    #c000ff 96%,  /* Фиолетовый */
    #c000ff 100%  /* Фиолетовый */
  );
  background-size: 350% 100%;
  background-position: 0% 50%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* Анимация движения градиента слева направо с плавным началом и затуханием */
  animation: gradient-flow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  padding-left: 3px;
  margin-left: -2px;
  transform: scale(1.09);
}

/* Анимация движения градиента слева направо */
@keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Transform для hover уже применен выше в основном правиле */

.tk-item.pop-open .tk-title {
  transform: none;
}

.tk-text {
  font-family: 'OpenSans', sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5;
  opacity: .9;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  margin: 0;
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
  align-self: start;
}




/* Анимации градиентов */
@keyframes iris {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes prism-strobe {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes prism-slide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes prism-slide-px {
  0% { background-position: 0px 50%; }
  100% { background-position: var(--prism-size) 50%; }
}

@keyframes prism-slide-static {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ===== REELS SECTION ===== */
.reels {
  background: #0b0d13;
  padding: 40px 0 56px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.reels-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}


/* ===== MEDIA QUERIES ===== */
@media (max-width: 900px) {
  .tk-item {
    grid-template-columns: 22px 160px;
  }

  .tk-text,
  .tk-title {
    max-width: 160px;
  }

  /* Font size remains 48px for all screen sizes */
}

/* Hide old mobile menu elements in desktop */
.mobile-menu-nav,
.mobile-menu-social,
.mobile-menu-cta {
  display: none !important;
}

@media (max-width: 768px) {
  /* Mobile header */


  .mobile-menu-toggle {
    display: flex !important;
    order: 3;
    margin-left: auto !important;
    margin-right: 0;
    z-index: 1001;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:active {
    background-color: rgba(255, 255, 255, 0.1);
  }



  /* Принудительно показываем навигацию на мобильных */
  nav.nav {
    display: flex !important;
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    background: #0a0c11 !important;
    border-radius: 12px !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    transform: translate(-50%, -150%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: none !important;
    z-index: 1002 !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
    max-height: calc(100vh - 100px) !important;
    overflow-y: auto !important;
    width: 90% !important;
    max-width: 400px !important;
  }

  /* Принудительно применяем состояние открытия */
  nav.nav.mobile-open {
    transform: translate(-50%, -50%) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  /* Mobile menu overlay active state */
  .mobile-menu-overlay.mobile-open {
    display: block;
    opacity: 1;
  }

  .nav-link {
    display: block;
    padding: 20px 24px;
    text-align: center;
    width: 100%;
    font-size: 16px;
    font-family: 'Futura XBlkCnIt BT', sans-serif;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 1;
    transform: translateX(0);
  }

  .nav-link:hover {
    transform: translateX(0);
  }

  .nav-link:active {
    transform: scale(0.98);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  /* Show mobile-specific elements in mobile */
  .mobile-menu-social,
  .mobile-menu-cta {
    display: block !important;
  }

  /* Mobile menu social and CTA in one row */
  .mobile-menu-social {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
  }

  /* Force remove ALL backgrounds and borders from mobile menu elements */
  nav.nav .nav-link,
  nav.nav .mobile-menu-social,
  nav.nav .mobile-menu-cta,
  nav.nav .mobile-menu-social .soc {
    background: transparent !important;
    border: none !important;
    border-bottom: none !important;
    border-top: none !important;
    box-shadow: none !important;
  }

  /* Remove hover effects that might add backgrounds */
  nav.nav .nav-link:hover,
  nav.nav .mobile-menu-social .soc:hover,
  nav.nav .mobile-menu-cta:hover {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* Extra force - remove any possible backgrounds from all mobile menu children */
  nav.nav * {
    background: transparent !important;
    border: none !important;
  }

  /* ULTRA SPECIFIC - Target the exact structure you showed */
  nav.nav.mobile-open .nav-link,
  nav.nav.mobile-open .mobile-menu-social,
  nav.nav.mobile-open .mobile-menu-cta,
  nav.nav.mobile-open .mobile-menu-social .soc {
    background: transparent !important;
    border: none !important;
    border-bottom: none !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  /* Target all possible states */
  nav.nav.mobile-open .nav-link:hover,
  nav.nav.mobile-open .nav-link:active,
  nav.nav.mobile-open .nav-link:focus,
  nav.nav.mobile-open .mobile-menu-social .soc:hover,
  nav.nav.mobile-open .mobile-menu-social .soc:active,
  nav.nav.mobile-open .mobile-menu-social .soc:focus,
  nav.nav.mobile-open .mobile-menu-cta:hover,
  nav.nav.mobile-open .mobile-menu-cta:active,
  nav.nav.mobile-open .mobile-menu-cta:focus {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  /* Force override for any inherited styles */
  nav.nav.mobile-open .nav-link,
  nav.nav.mobile-open .mobile-menu-social .soc,
  nav.nav.mobile-open .mobile-menu-cta {
    background-color: transparent !important;
    background-image: none !important;
  }

  /* ABSOLUTE FORCE - Nuclear option for removing all backgrounds */
  nav.nav.mobile-open .nav-link,
  nav.nav.mobile-open .mobile-menu-social,
  nav.nav.mobile-open .mobile-menu-cta,
  nav.nav.mobile-open .mobile-menu-social .soc {
    all: unset !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  /* Re-apply only the styles we want */
  nav.nav.mobile-open .nav-link {
    display: block !important;
    padding: 20px 24px !important;
    text-align: center !important;
    width: 100% !important;
    font-size: 16px !important;
    font-family: 'Futura XBlkCnIt BT', sans-serif !important;
    color: #fff !important;
    text-decoration: none !important;
    opacity: 1 !important;
  }

  /* Additional force for social buttons */
  nav.nav.mobile-open .mobile-menu-social .soc {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: transparent !important;
    border: none !important;
  }

  /* Additional force for CTA button */
  nav.nav.mobile-open .mobile-menu-cta {
    display: block !important;
    text-align: center !important;
    font-size: 18px !important;
    font-family: 'Futura XBlkCnIt BT', sans-serif !important;
    padding: 3.5px 12px !important;
    margin: 16px auto 0 !important;
    background: transparent !important;
    color: #fff !important;
    border: none !important;
    border-radius: 24px !important;
    text-decoration: none !important;
  }

  .mobile-menu-social .soc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }

  /* ===== NEW MOBILE MENU FROM SCRATCH ===== */

  /* Show new mobile menu in mobile */
  .mobile-menu-nav {
    display: flex !important;
    flex-direction: column;
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -150%) !important;
    background: transparent !important;
    border-radius: 16px !important;
    z-index: 1002 !important;
    width: 90% !important;
    max-width: 420px !important;
    padding: 32px 24px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(8px) !important;
  }

  /* Active state for new mobile menu */
  .mobile-menu-nav.mobile-menu-active {
    transform: translate(-50%, -50%) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Menu items container */
  .mobile-menu-items {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin-bottom: 40px !important;
  }

  /* Individual menu links - BIG FONTS */
  .mobile-nav-link {
    display: block !important;
    font-family: 'Futura XBlkCnIt BT', sans-serif !important;
    font-size: 48px !important;
    font-weight: normal !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    color: #fff !important;
    text-align: center !important;
    padding: 8px 0 !important;
    background: transparent !important;
    border: none !important;
    transition: all 0.3s ease !important;
    line-height: 1 !important;
    letter-spacing: 0.5px !important;
  }

  .mobile-nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.02) !important;
    background: transparent !important;
  }

  /* CTA Button */
  .mobile-cta-btn {
    display: block !important;
    font-family: 'Futura XBlkCnIt BT', sans-serif !important;
    font-size: 24px !important;
    font-weight: normal !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    color: #fff !important;
    text-align: center !important;
    padding: 16px 24px !important;
    margin: 24px 0 32px 0 !important;
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 32px !important;
    transition: all 0.3s ease !important;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .mobile-cta-btn:hover {
    border-color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    transform: scale(1.02) !important;
  }

  /* Social section */
  .mobile-social-section {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
  }

  /* Social buttons */
  .mobile-soc-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: transparent !important;
    border: none !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
  }

  .mobile-soc-btn:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    transform: scale(1.1) !important;
  }

  .mobile-soc-btn img {
    width: 28px !important;
    height: 28px !important;
    filter: invert(1) !important;
    opacity: 0.9 !important;
    transition: opacity 0.3s ease !important;
  }

  .mobile-soc-btn:hover img {
    opacity: 1 !important;
  }

  .mobile-menu-social .soc img {
    width: 20px;
    height: 20px;
    filter: invert(1);
    opacity: 0.8;
    transition: opacity 0.2s ease;
  }

  .mobile-menu-social .soc:hover img {
    opacity: 1;
  }

  /* Mobile menu CTA button - same as desktop version */
  .mobile-menu-cta {
    display: block !important;
    text-align: center !important;
    font-size: 18px !important; /* Same as desktop */
    font-family: 'Futura XBlkCnIt BT', sans-serif !important; /* Header font */
    padding: 3.5px 12px !important; /* Same as desktop */
    margin: 16px auto 0 !important; /* Center horizontally, space from above */
    white-space: nowrap;
    border-radius: 24px; /* Same as desktop */
    transition: all 0.2s ease;
    width: fit-content !important; /* Natural width */
    margin-left: auto !important;
    margin-right: auto !important;
    background: transparent !important; /* Remove white background */
    color: #fff !important; /* White text on dark background */
  }





  .header-cta {
    display: none;
  }

  /* Увеличиваем размеры социальных иконок для мобильных */
  .soc {
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
  }

  .soc:hover,
  .soc:active {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .soc img {
    width: 24px;
    height: 24px;
  }

  .header-inner {
    gap: 16px;
  }

  /* Improved mobile typography */
  /* Line height remains 0.94 for all screen sizes */

  .hero-sub,
  .toolkit-sub,
  .reels-sub {
    line-height: 1.4;
  }

  /* Font size remains 18px for all screen sizes */

  .tk-text {
    font-size: 13px;
    line-height: 1.4;
  }

  .toolkit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .tk-item {
    grid-template-columns: 20px 160px;
  }

  .tk-text,
  .tk-title {
    max-width: 160px;
  }

  /* Height remains 24px for all screen sizes */
}

@media (max-width: 520px) {
  .toolkit {
    padding: 32px 12px 48px 12px;
  }

  .tk-item {
    grid-template-columns: 18px 140px;
  }

  .tk-text,
  .tk-title {
    max-width: 140px;
  }

  /* Better mobile typography for small screens */
  /* Line height remains 0.94 for all screen sizes */

  .hero-sub,
  .toolkit-sub,
  .reels-sub {
    line-height: 1.3;
  }

  /* Font size remains 18px for all screen sizes */

  .tk-text {
    font-size: 12px;
    line-height: 1.3;
  }

  .toolkit-grid {
    gap: 20px;
  }

  .tk-icon {
    width: 18px;
    height: 18px;
  }

  .reels-inner {
    padding: 0 12px;
  }

  /* Height remains 24px for all screen sizes */
}

@media (max-width: 400px) {
  .toolkit-grid {
    grid-template-columns: 1fr; /* На очень маленьких экранах возвращаем 1 колонку */
    gap: 20px;
  }

  .tk-item {
    grid-template-columns: 20px 140px;
  }

  .tk-text,
  .tk-title {
    max-width: 140px;
  }

  /* Font size remains 48px for all screen sizes */
  /* Font size remains 18px for all screen sizes */

  .tk-text {
    font-size: 11px;
  }

  /* Height remains 24px for all screen sizes */
}

@media (max-width: 350px) {
  .tk-item {
    grid-template-columns: 16px 120px;
  }

  .tk-text,
  .tk-title {
    max-width: 120px;
  }

  /* Font size remains 48px for all screen sizes */
  /* Font size remains 18px for all screen sizes */
  /* Font size remains 18px for all screen sizes */

  .tk-text {
    font-size: 10px;
  }

  /* Height remains 24px for all screen sizes */
}



/* ===== HERO TOP BLOCK ===== */
.hero {
  background: #0f1116 url('images/IMG-01.jpeg') center/cover no-repeat;
  padding: 120px 0 120px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--site-gutter);
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: left;
}







/* Hero responsive adjustments */
@media (min-width: 1024px) {
  :root { --site-gutter: 16px; }
}

@media (max-width: 768px) {
  .hero {
    padding: 72px 0 72px 0;
    margin-top: 56px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
  }
}

@media (max-width: 520px) {
  :root { --site-gutter: 12px; }

  .hero {
    padding: 60px 0 60px 0;
    margin-top: 52px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 var(--site-gutter);
    gap: 16px;
  }

  .hero-head {
    margin: 0 0 32px 0;
  }
}



/* Dark overlay for readability (behind text) */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .3));
  pointer-events: none;
  z-index: 1;
}






/* ===== HERO BACKGROUND SLIDESHOW ===== */
/* remove slideshow-specific rules */
/* previously: .hero-bg, .slide, @keyframes heroFade/heroSwitch */

/* ===== Сетка превью ===== */
.grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px; /* Возвращаем нормальный зазор между карточками */
  padding: 20px 0 40px 0;
  width: 100%;
  max-width: 1200px; /* Ограничиваем максимальную ширину как у основных элементов */
  margin: 0 auto; /* Центрируем сетку */
}

/* Адаптивные рамки по бокам - выравниваем с основной структурой сайта */
@media (min-width: 1280px) {
  .grid {
    padding: 20px 16px 40px 16px;
    gap: 15px;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .grid {
    padding: 20px 16px 40px 16px;
    gap: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .grid {
    padding: 20px 16px 40px 16px;
    gap: 15px;
  }

  .toolkit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 48px;
  }
}

@media (min-width: 520px) and (max-width: 767px) {
  .grid {
    padding: 20px 16px 40px 16px;
    gap: 15px;
  }
}

@media (max-width: 519px) {
  .grid {
    padding: 20px 12px 40px 12px;
    gap: 15px;
  }
}
.card{
  position:relative;
  flex:0 0 calc(50% - 7.5px); /* 2 карточки в ряд с учетом gap 15px */
  aspect-ratio:1/1;
  overflow:hidden;
  cursor:pointer;
  background:#111;
  box-sizing: border-box; /* Учитываем padding и border в общей ширине */
  border-radius: 12px; /* Закругляем края карточки */
  transition: all 0.3s ease; /* Плавная анимация для всех изменений */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* Базовая тень */
}

.card:hover {
  transform: translateY(-4px) scale(1.02); /* Поднимаем и немного увеличиваем при наведении */
  box-shadow: 0 12px 24px rgba(0,0,0,0.4); /* Оригинальная тень */
  transition: all 0.4s ease-out;
}

/* Белая обводка над изображением */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3.5px solid rgba(255, 255, 255, 0);
  border-radius: 12px;
  transition: border-color 0.3s ease;
  z-index: 3;
  pointer-events: none;
}

.card:hover::before {
  border-color: rgba(255, 255, 255, 1);
}

/* Адаптивные размеры карточек */
@media (min-width: 1280px) {
  .card {
    flex: 0 0 calc((100% - 75px) / 6); /* 6 карточек в ряд с gap 15px */
    max-width: none; /* Убираем ограничение для увеличения превью */
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .card {
    flex: 0 0 calc((100% - 75px) / 6); /* 6 карточек в ряд с gap 15px */
    max-width: none; /* Убираем ограничение для увеличения превью */
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .card {
    flex: 0 0 calc((100% - 45px) / 4); /* 4 карточки в ряд с gap 15px */
    max-width: none; /* Убираем ограничение размера для увеличения превью */
  }
}

@media (min-width: 520px) and (max-width: 767px) {
  .card {
    flex: 0 0 calc((100% - 30px) / 3); /* 3 карточки в ряд с gap 15px */
    max-width: none; /* Убираем ограничение размера для увеличения превью */
  }
}

@media (max-width: 519px) {
  .card {
    flex: 0 0 calc(50% - 7.5px); /* 2 карточки в ряд для мобильных с gap 15px */
    max-width: none; /* На мобильных не ограничиваем */
    min-height: 140px; /* Минимальная высота для лучшего тач-интерактива */
  }

  /* Увеличиваем иконку PLAY на мобильных для лучшей видимости */
  .card::after {
    width: 48px;
    height: 48px;
  }

  .card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.9);
  }

  /* Добавляем активное состояние для тач-устройств */
  .card:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
  }

  /* Специальные настройки для iPhone SE и подобных устройств (ширина около 375px) */
  @media (max-width: 400px) and (min-width: 350px) {
    .card {
      flex: 0 0 calc(50% - 7.5px); /* Гарантируем 2 карточки в ряд для iPhone SE */
      min-height: 130px;
    }

    .card::after {
      width: 42px;
      height: 42px;
    }
  }

  /* Дополнительные улучшения для экранов шириной менее 400px */
  @media (max-width: 399px) {
    .card {
      flex: 0 0 calc(50% - 7.5px); /* 2 карточки в ряд с gap 15px */
      min-height: 120px;
    }

    .card::after {
      width: 40px;
      height: 40px;
    }
  }

  @media (max-width: 350px) {
    .card {
      flex: 0 0 100%; /* Одна карточка в ряд на очень маленьких экранах */
      min-height: 160px;
    }

    .card::after {
      width: 44px;
      height: 44px;
    }
  }
}

/* картинка + эффекты */
.card img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .15s ease, filter .15s ease;
  transform:scale(1.05);
  border-radius: 12px; /* Закругляем края изображения */
}
.card:hover img{
  transform:scale(1);
  filter:brightness(0.97) saturate(1.25) contrast(1.18);
}

/* иконка PLAY */
.card::after{
  content:""; position:absolute; left:50%; top:50%;
  width:56px; height:56px;
  background:url('icons/PLAY.svg') center/contain no-repeat;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.6)); /* Преобразование в белый цвет + тень */
  opacity:0; transform:translate(-50%,-50%) scale(.85); transition:.1s ease;
  z-index: 4;
}
.card:hover::after{ opacity:1; transform:translate(-50%,-50%) scale(1); }

/* Анимация контурного выделения для превьюшек портфолио */
.card {
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}





/* Увеличиваем z-index для изображения при hover, чтобы оно было выше контура */
.card:hover img {
  position: relative;
  z-index: 2;
}

/* ===== Модалка и плеер ===== */
.modal{ display:none; position:fixed; inset:0; background:rgba(0,0,0,.9);
  z-index:1000; align-items:center; justify-content:center }
.player{
  position:relative;
  width:min(96vw, 1200px);
  aspect-ratio: 16/9; /* Фиксируем пропорции 16:9 */
  background: #000; /* Черный фон для загрузки */
}

/* Видео вписывается без обрезки */
#modalVideo{
  width:100%;
  height:100%; /* Занимает всю высоту контейнера */
  background:#000;
  display:block;
  object-fit:contain;
  cursor:pointer;
  aspect-ratio: 16/9; /* Поддерживаем пропорции */
}

/* Фуллскрин */
.player:fullscreen #modalVideo,
#modalVideo:fullscreen{
  width:100vw;
  height:100vh;
  max-height:none;
  object-fit:contain;
  aspect-ratio: auto; /* В полноэкранном режиме сбрасываем фиксированные пропорции */
}

/* ===== Адаптивность плеера ===== */
@media (max-width: 768px) {
  .player {
    width: 95vw; /* На мобильных занимаем почти весь экран */
    aspect-ratio: 16/9; /* Сохраняем пропорции */
  }

  /* Увеличиваем размеры элементов управления для мобильных */
  .controls {
    padding: 16px 20px;
    gap: 16px;
  }

  .controls button {
    height: 44px;
    min-width: 44px;
    padding: 10px 14px;
    border-radius: 12px;
  }

  #time {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .player {
    width: 98vw; /* На очень маленьких экранах занимаем весь экран */
    aspect-ratio: 16/9; /* Сохраняем пропорции */
  }

  /* Еще больше увеличиваем элементы управления */
  .controls {
    padding: 18px 24px;
    gap: 20px;
  }

  .controls button {
    height: 48px;
    min-width: 48px;
    padding: 12px 16px;
  }

  #btnPlay {
    min-width: 48px;
    font-size: 16px;
  }

  #btnFs {
    min-width: 48px;
    font-size: 16px;
  }

  #time {
    font-size: 13px;
  }

  /* Увеличиваем спиннер лоадера */
  .spinner {
    width: 48px;
    height: 48px;
  }
}

/* ===== Лоадер (оверлей + спиннер) ===== */
.loader{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  background:rgba(0,0,0,0.15);
  opacity:0; pointer-events:none;
  transition:opacity .25s ease;
}
.loader.show{ opacity:1; pointer-events:auto; }
.spinner{
  width:42px; height:42px; border-radius:50%;
  border:3px solid rgba(255,255,255,.25); border-top-color:#fff;
  animation:spin .9s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }

/* ===== Кастомные контролы: FADE ===== */
.controls{
  position:absolute; left:0; right:0; bottom:0;
  display:flex; align-items:center; gap:12px; /* Увеличиваю отступы между элементами */
  background:linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,0));
  padding:12px 16px; /* Увеличиваю внутренние отступы */

  opacity:0;                 /* изначально скрыты */
  pointer-events:none;       /* клики выключены, пока скрыто */
  transition:opacity .4s ease;
}
.controls.show{
  opacity:1;                 /* плавное проявление */
  pointer-events:auto;       /* клики включены */
}
.controls button{
  border:none; background:rgba(255,255,255,.1); color:#fff;
  border-radius:10px; padding:8px 12px; cursor:pointer;
  height: 36px; /* Фиксированная высота для всех кнопок */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  min-width: 36px; /* Минимальная ширина для круглых кнопок */
}
.controls button:hover{ background:rgba(255,255,255,.2) }
.controls input[type="range"]{ accent-color:#fff; cursor:pointer }
#seek{ flex:1 }

#time{ 
  color:#fff; 
  font:500 12px/1 system-ui, -apple-system, Segoe UI, Roboto, sans-serif; 
  opacity:.9;
  white-space: nowrap;
  min-width: fit-content;
}
.icon-btn{ display:flex; align-items:center; justify-content:center; padding:6px 8px; background:transparent }

/* Скрываем время на маленьких экранах */
@media (max-width: 480px) {
  #time { display: none; }
}

/* Скрываем кнопку качества на очень маленьких экранах */
@media (max-width: 400px) {
  #btnQuality { display: none; }
}

.close{
  position:absolute;
  top:14px;
  right:18px;
  font-size:36px;
  cursor:pointer;
  user-select:none;
  color:#fff;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.close:hover,
.close:active {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Увеличиваем кнопку закрытия для мобильных */
@media (max-width: 768px) {
  .close {
    font-size: 32px;
    padding: 12px;
    top: 16px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .close {
    font-size: 28px;
    padding: 16px;
    top: 20px;
    right: 24px;
  }
}

/* Специальные стили для кнопки качества */
#btnQuality {
  min-width: 50px; /* Ширина для текста 1080p/720p */
  font-size: 11px;
  font-weight: 500;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* Специальные стили для кнопки воспроизведения */
#btnPlay {
  min-width: 36px; /* Квадратная кнопка */
  font-size: 14px;
}

/* Специальные стили для кнопки полноэкранного режима */
#btnFs {
  min-width: 36px; /* Квадратная кнопка */
  font-size: 14px;
}

/* ===== Система управления звуком в стиле YouTube ===== */
.mute-btn {
  position: relative;
  transition: all 0.2s ease;
}

.mute-btn:hover {
  background: rgba(255,255,255,.15) !important;
}

/* ===== Align OUR TOOLKIT with PORTFOLIO ===== */
.toolkit {
  padding: 40px 0 56px 0 !important;
}

.toolkit-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Toolkit responsive adjustments */
@media (min-width: 1024px) {
  .toolkit-inner {
    padding: 0 16px;
  }
}

@media (max-width: 520px) {
  .toolkit-inner {
    padding: 0 12px;
  }
}



/* Kicker line in hero */
.hero-kicker {
  display: block;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.5px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  font-weight: normal;
}


