/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Onest', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  overflow-x: hidden;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 24px;
  transition: all 0.3s ease;
}

.header.scrolled {
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  background-color: rgba(0, 0, 0, 0.06);
}

.header-content {
  display: flex;
  align-items: center;
  gap: 32px;
}

.version-mobile .header {
  padding: 16px;
}

.version-mobile .header-content {
  justify-content: space-between;
  gap: 0;
}

/* Logotype */
.logotype {
  display: block;
  position: relative;
}

.logotype-desktop {
  width: 190.502px;
  height: 48px;
}

.logotype-mobile {
  display: none;
  width: 48px;
  height: 48px;
}

.version-mobile .logotype-desktop {
  display: none;
}

.version-mobile .logotype-mobile {
  display: block;
}

/* Badge */
.badge {
  display: flex;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 30px;
  background-image: linear-gradient(132.225deg, rgba(22, 22, 26, 0.04) 2.6598%, rgba(22, 22, 26, 0.4) 101.78%);
}

.badge-content {
  font-family: 'Onest', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: white;
  text-align: center;
  white-space: pre;
}

/* Version Control */
.version {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.version:not(.active) {
  display: none;
}

.version.active {
  display: block;
}

/* Background Layer */
.background-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.bg-black {
  position: absolute;
  inset: 0;
  background-color: black;
}

.bg-image-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.version-laptop .bg-image,
.version-mobile .bg-image {
  height: 108.05%;
  left: -56.93%;
  top: 0;
  width: 213.85%;
}

/* Content Wrapper */
.content-wrapper {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 96px;
}

.version-mobile .content-wrapper {
  left: 16px;
  right: 16px;
  top: 80px;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  gap: 96px;
  padding-top: 144px;
  padding-bottom: 96px;
}

.version-laptop .hero-section {
  gap: 84px;
  padding-top: 112px;
  padding-bottom: 84px;
}

.version-mobile .hero-section {
  gap: 72px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.version-laptop .hero-content {
  gap: 40px;
}

.version-mobile .hero-content {
  gap: 24px;
}

.hero-title {
  font-family: 'Onest', sans-serif;
  font-weight: 500;
  font-size: 73px;
  line-height: 1;
  color: white;
  letter-spacing: -2px;
  width: min-content;
  min-width: 100%;
  margin: 0;
}

.version-laptop .hero-title {
  font-size: 55px;
  line-height: 1.1;
}

.version-mobile .hero-title {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -1px;
}

/* CTA Button */
.cta-button {
  display: flex;
  gap: 10px;
  width: 200px;
  height: 56px;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  border: none;
  border-radius: 10px;
  background-image: linear-gradient(88deg, #57B3FF 1.4%, #1194FF 98.6%);
  cursor: pointer;
  font-family: 'Onest', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: white;
  text-align: center;
  white-space: pre;
  text-decoration: none;
}

.version-laptop .cta-button,
.version-mobile .cta-button {
  gap: 8px;
  height: 44px;
  padding: 12px 16px;
}

.cta-button span {
  display: block;
}

/* Awards Section */
.awards-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.version-laptop .awards-section {
  gap: 24px;
}

.version-mobile .awards-section {
  gap: 24px;
}

.awards-text {
  font-family: 'Onest', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: white;
  width: 100%;
}

.version-mobile .awards-text {
  font-size: 14px;
}

.logos-container {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  gap: 80px;
}

.version-laptop .logos-container {
  gap: 80px;
}

.version-mobile .logos-container {
  gap: 0 48px;
}

.logo {
  height: 64px;
  position: relative;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.intel-logo {
  width: 66.37px;
}

.oracle-logo {
  width: 142.222px;
}

.company-logo {
  width: 138.667px;
}

.cern-logo {
  width: 80.593px;
}

/* About Section */
.about-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.version-laptop .about-section {
  gap: 48px;
  padding-top: 84px;
  padding-bottom: 84px;
}

.version-mobile .about-section {
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-divider {
  background-color: white;
  height: 2px;
  width: 100%;
  flex-shrink: 0;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.version-laptop .about-content {
  gap: 48px;
}

.version-mobile .about-content {
  gap: 40px;
}

.about-header {
  display: flex;
  gap: 24px;
}

.version-laptop .about-header {
  gap: 16px;
}

.version-mobile .about-header {
  flex-direction: column;
  gap: 16px;
}

.about-title {
  font-family: 'Onest', sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.1;
  color: white;
  letter-spacing: -2px;
  flex: 1 1 0;
  min-width: 1px;
  margin: 0;
}

.version-laptop .about-title {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.version-mobile .about-title {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -1px;
  width: 100%;
}

.about-description {
  font-family: 'Onest', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  color: white;
  letter-spacing: -1px;
  flex: 1 1 0;
  min-width: 1px;
  padding-top: 12px;
  margin: 0;
}

.version-laptop .about-description {
  padding-top: 8px;
}

.version-mobile .about-description {
  font-size: 21px;
  padding-top: 8px;
  width: 100%;
}

/* Features Grid */
.features-grid {
  display: flex;
  gap: 24px;
}

.version-laptop .features-grid {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  align-items: stretch !important;
  width: 100% !important;
}

.version-mobile .features-grid {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  align-items: stretch !important;
  width: 100% !important;
}

.features-grid-mobile {
  flex-direction: column;
  gap: 16px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1 1 0;
  min-width: 1px;
  min-height: 1px;
}

.version-laptop .feature-card,
.version-mobile .feature-card,
.features-grid-mobile .feature-card {
  flex: 0 0 auto !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 100% !important;
  position: relative !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.card-image-wrapper {
  aspect-ratio: 296 / 296;
  position: relative;
  border-radius: 12px;
  width: 100%;
  flex-shrink: 0;
}

.version-laptop .card-image-wrapper,
.version-mobile .card-image-wrapper {
  border-radius: 8px;
}

.card-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background-color: #f4f1f1;
}

.card-image {
  position: absolute;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: inherit;
  width: 100%;
  height: 100%;
}

.card-title {
  font-family: 'Onest', sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.3;
  color: white;
  width: 100%;
  margin: 0;
}

.version-laptop .card-title,
.version-mobile .card-title {
  font-size: 18px;
}

/* Responsive Breakpoints - управление через JavaScript */

