* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #000;
  padding-top: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  max-width: none;
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 300;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #00CDE8;
}

.btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 300;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: opacity 0.2s, border-color 0.2s, background 0.2s, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s;
}

.btn:hover {
  opacity: 0.95;
  transform: scale(1.05);
}

.btn-primary {
  background: linear-gradient(180deg, #1a1a1a 0%, #252525 50%, #151515 100%);
  color: #fff;
  border: 1px solid #2a2a2a;
  min-width: 11rem;
  text-align: center;
}

.btn-primary:hover {
  background: #00CDE8;
  color: #000;
  opacity: 1;
  border-color: #2a2a2a;
}

.btn-lang {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #2a2a2a;
  min-width: 7.5rem;
  text-align: center;
}

.btn-lang:hover {
  background: #00CDE8;
  color: #000;
  border-color: #2a2a2a;
  opacity: 1;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
}

/* Hero video block */
.hero-video {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  margin-top: 0;
}

.hero-video__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.hero-video__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 3rem 2rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 300;
  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;
  transition: opacity 0.2s, border-color 0.2s, background 0.2s, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
  min-width: 10rem;
  text-align: center;
  width: 12.5rem;
  box-sizing: border-box;
  white-space: nowrap;
}

.hero-btn:hover {
  transform: scale(1.05);
}

.hero-btn--dark {
  background: linear-gradient(180deg, #1a1a1a 0%, #252525 50%, #151515 100%);
  color: #fff;
  border-color: #2a2a2a;
}

.hero-btn--dark:hover {
  background: #00CDE8;
  color: #000;
  border-color: #2a2a2a;
  opacity: 1;
}

.hero-btn--light {
  background: #fff;
  color: #000;
}

.hero-btn--light:hover {
  opacity: 0.95;
}

.section {
  min-height: 100vh;
  background: #000;
  position: relative;
  z-index: 60;
}

/* Pricing — $1 subscription, no custom options */
.pricing {
  padding: 5rem 2rem 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing__inner {
  text-align: center;
  width: 100%;
  max-width: 820px;
  padding: 4rem 4rem 4.5rem;
  border: 1px solid #2a2a2a;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.95) 0%, rgba(18, 18, 18, 0.98) 100%);
  box-shadow: 0 0 0 1px rgba(0, 205, 232, 0.12), 0 32px 64px rgba(0, 0, 0, 0.6);
  position: relative;
}

.pricing__inner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 33px;
  border: 1px solid rgba(0, 205, 232, 0.2);
  pointer-events: none;
}

.pricing__title {
  position: relative;
  z-index: 1;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  background: linear-gradient(to bottom, #737373 0%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing__price {
  font-size: 1.2rem;
  font-weight: 300;
  color: #a3a3a3;
  margin-bottom: 2rem;
}

.pricing__amount {
  font-size: 3.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.03em;
}

.pricing__btn {
  display: inline-block;
  margin-bottom: 2.5rem;
  padding: 0.9rem 2.5rem;
  font-size: 1.05rem;
}

.pricing__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 3rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.pricing__features li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 300;
  color: #a3a3a3;
  line-height: 1.6;
}

.pricing__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00CDE8;
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .pricing__inner {
    padding: 3rem 2rem;
    max-width: 100%;
  }
  .pricing__features {
    grid-template-columns: 1fr;
    gap: 0.5rem 0;
  }
}

/* Download block — no image, CTA on the right */
.download {
  padding: 5rem 2rem 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.download__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download__tagline {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #1a1a1a;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 300;
  color: #a3a3a3;
  margin-bottom: 1.25rem;
}

.download__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  background: linear-gradient(to bottom, #737373 0%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.download__desc {
  font-size: 1rem;
  font-weight: 300;
  color: #737373;
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

.download__platforms-label {
  font-size: 1rem;
  font-weight: 400;
  color: #a3a3a3;
  margin-bottom: 1rem;
}

.download__platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.download__platform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 300;
  font-family: inherit;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid #2a2a2a;
  background: linear-gradient(180deg, #1a1a1a 0%, #252525 50%, #151515 100%);
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s, transform 0.2s ease;
  text-align: left;
}

.download__platform:hover {
  background: #00CDE8;
  color: #000;
  border-color: #2a2a2a;
  opacity: 1;
}

.download__platform.is-selected {
  background: #00CDE8;
  color: #000;
  border-color: #2a2a2a;
}

@media (max-width: 900px) {
  .download__platforms {
    max-width: 360px;
  }
}

.about-client {
  padding: 5rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-client__title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(to bottom, #737373 0%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-client__title-line {
  font-weight: 600;
}

.about-client__title-accent {
  font-weight: 600;
}

.about-client__content {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.about-client__features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3.5rem;
}

.about-client__feature {
  position: relative;
  padding-left: 1rem;
  transition: transform 0.4s ease;
  transform: scale(1);
  transform-origin: left center;
  cursor: pointer;
}

.about-client__feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, #00CDE8 45%, #00CDE8 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-client__feature.is-active {
  transform: scale(1.06);
}

.about-client__feature.is-active::before {
  opacity: 1;
}

.about-client__nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.about-client__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #404040;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}

.about-client__dot:hover {
  background: #737373;
}

.about-client__dot.is-active {
  background: #00CDE8;
}

.about-client__feature-title {
  font-size: 1.25rem;
  font-weight: 300;
  color: #505050;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.about-client__feature.is-active .about-client__feature-title {
  color: #fff;
}

.about-client__feature-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: #3d3d3d;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.about-client__feature.is-active .about-client__feature-desc {
  color: #fff;
}

.about-client__footer {
  font-size: 0.9rem;
  color: #737373;
  margin-top: 0.5rem;
  margin-bottom: 0;
}


.advantages {
  padding: 5rem 2rem 6rem;
}

.advantages__title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(to bottom, #737373 0%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.advantages__subtitle {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 300;
  margin: 0 auto 3.5rem;
  line-height: 1.6;
  background: linear-gradient(to bottom, #737373 0%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.advantages__grid-wrap {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 0;
}

.advantages__grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(to bottom, transparent 0%, #00CDE8 15%, #00CDE8 85%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #00CDE8 15%, #00CDE8 85%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #00CDE8 15%, #00CDE8 85%, transparent 100%),
    linear-gradient(to right, transparent 0%, #00CDE8 15%, #00CDE8 85%, transparent 100%);
  background-size: 1px 100%, 1px 100%, 1px 100%, 100% 1px;
  background-position: 25% 0, 50% 0, 75% 0, 0 50%;
  background-repeat: no-repeat;
}

.advantages__card {
  padding: 2.75rem 2rem;
  background: #000;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.advantages__card:nth-child(4n) {
  border-right: none;
}

.advantages__card:nth-child(n+5) {
  border-bottom: none;
}

.advantages__icon {
  display: flex;
  margin-bottom: 1.5rem;
  color: #737373;
  opacity: 0.9;
  transition: color 0.25s ease, transform 0.25s ease;
  transform: scale(1);
  transform-origin: left top;
}

.advantages__icon svg {
  width: 48px;
  height: 48px;
}

.advantages__card:hover .advantages__icon {
  color: #fff;
  transform: scale(1.02);
}

.advantages__card-title {
  font-size: 1.2rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.6rem;
}

.advantages__card-desc {
  font-size: 1rem;
  font-weight: 300;
  color: #737373;
  line-height: 1.55;
  margin: 0;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

@media (max-width: 900px) {
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
  }
  .advantages__grid-lines {
    background-image:
      linear-gradient(to bottom, transparent 0%, #00CDE8 15%, #00CDE8 85%, transparent 100%),
      linear-gradient(to right, transparent 0%, #00CDE8 15%, #00CDE8 85%, transparent 100%);
    background-size: 1px 100%, 100% 1px;
    background-position: 50% 0, 0 50%;
  }
  .advantages__card:nth-child(4n),
  .advantages__card:nth-child(2n) {
    border-right: none;
  }
  .advantages__card:nth-child(n+5),
  .advantages__card:nth-child(n+7) {
    border-bottom: none;
  }
}

@media (max-width: 500px) {
  .advantages__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .advantages__grid-lines {
    background-image:
      linear-gradient(to right, transparent 0%, #00CDE8 15%, #00CDE8 85%, transparent 100%),
      linear-gradient(to right, transparent 0%, #00CDE8 15%, #00CDE8 85%, transparent 100%),
      linear-gradient(to right, transparent 0%, #00CDE8 15%, #00CDE8 85%, transparent 100%),
      linear-gradient(to right, transparent 0%, #00CDE8 15%, #00CDE8 85%, transparent 100%),
      linear-gradient(to right, transparent 0%, #00CDE8 15%, #00CDE8 85%, transparent 100%),
      linear-gradient(to right, transparent 0%, #00CDE8 15%, #00CDE8 85%, transparent 100%),
      linear-gradient(to right, transparent 0%, #00CDE8 15%, #00CDE8 85%, transparent 100%);
    background-size: 100% 1px;
    background-position: 0 12.5%, 0 25%, 0 37.5%, 0 50%, 0 62.5%, 0 75%, 0 87.5%;
  }
  .advantages__card {
    border: none !important;
  }
}

/* Footer */
.footer {
  color: #fff;
  border-radius: 48px 48px 0 0;
  overflow: hidden;
  margin-top: 0;
  background: linear-gradient(180deg, rgba(18, 22, 24, 1) 0%, rgba(0, 205, 232, 0.04) 20%, rgba(10, 10, 10, 1) 100%);
}

.footer__top {
  padding: 4rem 2rem 3rem;
}

.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.footer__logo:hover {
  color: #00CDE8;
}

.footer__desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: #737373;
  line-height: 1.6;
  margin: 0;
}

.footer__col-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  font-size: 0.95rem;
  font-weight: 300;
  color: #737373;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #00CDE8;
}

.footer__separator {
  height: 1px;
  background: #2a2a2a;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright,
.footer__company {
  font-size: 0.85rem;
  font-weight: 300;
  color: #525252;
  margin: 0;
}

.footer__company {
  flex: 1;
  text-align: center;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.85rem;
  font-weight: 300;
  color: #525252;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: #00CDE8;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer__brand {
    max-width: none;
    grid-column: 1 / -1;
  }
}

@media (max-width: 500px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer__company {
    order: -1;
  }
}
