* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'SF Compact Text', sans-serif;
}

body {
  background: #003333;
  color: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.header {
  padding: 20px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* иконка */
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border-radius: 10px;

  color: #00ff00;
  background: rgba(153, 255, 0, 0.08);

  transition: 0.2s ease;
  cursor: pointer;
}

.icon-btn:hover {
  background: rgba(153, 255, 0, 0.15);
  transform: translateY(-1px);
}

.logo {
  color: #00ff00;
  font-weight: 600;
}

.hero {
  padding: 120px 0;
  width: 100%;
  background: rgba(153, 255, 0, 0.15);
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.2;
}

.hero p {
  color: #aaa;
  margin: 20px 0;
}

.hero img {
  max-width: 520px;
  border-radius: 14px;
}

.btn {
  padding: 10px 18px;
  border-radius: 20px;
  border: 1px solid #00ff00;
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn.primary {
  background: #00ff00;
  color: #003333;
}

.btn.big {
  padding: 14px 28px;
  font-size: 16px;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* BENEFITS>> */

.benefits {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #fff;
  letter-spacing: -0.5px;
}

/* сетка */
.benefits-grid {
  display: grid;
  gap: 20px;
}

.benefits-grid {
  grid-template-columns: repeat(3, 1fr);
}

.benefits-grid.small {
  margin-top: 40px;
}

/* карточка */
.benefit {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

.benefit::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 255, 0, 0.08);
  opacity: 0;

  transition: 0.25s ease;
  pointer-events: none;
}


.benefit:hover::before {
  opacity: 1;
}

/* галочка */
.check {
  width: 28px;
  height: 28px;
  min-width: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #00ff00;
  font-weight: bold;

  text-shadow: 0 0 8px #00ff00;
}

/* текст */
.benefit h3 {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.benefit p {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* подзаголовок */
.benefits-subtitle {
  margin-top: 60px;
  font-size: 20px;
  color: #00ff00;
}

/* адаптив */
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* <<BENEFITS */

/* ACCESS>> */

.access {
  padding: 80px 0;
}

.access .section-title {
  text-align: center;
  margin-bottom: 30px;
}

.access-box {
  max-width: 900px;
  margin: 0 auto;

  padding: 24px 28px;
  border-radius: 14px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(153,255,0,0.15);

  transition: 0.25s ease;
}

.access-box:hover {
  border-color: rgba(153,255,0,0.35);
  box-shadow: 0 10px 30px rgba(0,255,0,0.08);
}

/* текст */
.access-box p {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 12px;
}

/* акцент */
.access-box .accent {
  color: #00ff00;
  font-weight: 500;
  margin-top: 10px;
}

/* <<ACCESS REVEAL */


.features {
  padding: 80px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  padding: 28px;
  border-radius: 18px;

  min-height: 320px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.25s ease;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.icon {
  width: 48px;
  margin-bottom: 10px;
}

.how {
  padding: 80px 0;
}

.how-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.how img {
  max-width: 420px;
  border-radius: 12px;
}


/* >>PRICING */

.pricing .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* карточка */
.card {
  position: relative;
  padding: 22px;
  border-radius: 16px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.25s ease;
  cursor: pointer;
}

/* hover */
.card:hover {
  transform: translateY(-4px);
}

/* активная карточка */
.card.active {
  border: 1px solid #00ff00;
  box-shadow: 0 0 25px rgba(0,255,0,0.25);
}

/* заголовок */
.card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

/* описание */
.card .desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

/* список */
.card ul {
  padding-left: 18px;
  margin-bottom: 16px;

  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.6;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0,255,0,0.06);
  opacity: 0;

  transition: 0.25s ease;
  border-radius: 18px;
}

/* hover */
.card:hover::before {
  opacity: 1;
}

/* лёгкое поднятие */
.card:hover {
  transform: translateY(-6px);
}

.card.active {
  border: 1px solid #00ff00;
  box-shadow: 0 0 30px rgba(0,255,0,0.25);
}


/* кнопка цены */
.price-btn {
  display: block;
  width: 100%;

  text-align: center;
  padding: 12px;

  border-radius: 12px;

  background: rgba(153,255,0,0.12);
  color: #99ff00;

  font-weight: 500;
  text-decoration: none;

  transition: 0.2s ease;
}

/* hover кнопки */
.price-btn:hover {
  background: #00ff00;
  color: #003333;

  box-shadow: 0 0 20px rgba(0,255,0,0.5);
}

/* mobile */
@media (max-width: 900px) {
  .pricing .grid {
    grid-template-columns: 1fr;
  }
}

.pricing {
  padding: 80px 0;
  text-align: center;
}

/* PRICING<< */

.highlight {
  border: 1px solid #00ff00;
}

.cta {
  padding: 120px 0;
  text-align: center;
}

.footer {
  padding: 20px 0;
  text-align: center;
  color: #aaa;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-inner,
  .how-inner {
    flex-direction: column;
    text-align: center;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 30px;
  }
}


/* logo rotation */

.motion {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: #003333;
}

/* ===== ЛОГОТИПЫ ===== */

.ticker-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll 18s linear infinite;
  position: relative;
  z-index: 2;
}

.ticker-track img {
  width: 48px;
  height: 48px;
  opacity: 0.9;

  /* плавание */
  animation: float 5s ease-in-out infinite;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* БОЛЕЕ ВЫРАЖЕННОЕ ПЛАВАНИЕ */
@keyframes float {
  0%   { transform: translateY(0px); }
  25%  { transform: translateY(-8px); }
  50%  { transform: translateY(6px); }
  75%  { transform: translateY(-4px); }
  100% { transform: translateY(0px); }
}

/* ===== ЗВЁЗДЫ ===== */

.stars-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: #00ff00;
  animation: starMove linear infinite;
}

/* движение */
@keyframes starMove {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100vw); }
}