.landing-page-body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  color: #eef5ff;
  background:
    radial-gradient(circle at top center, rgba(85, 125, 255, 0.24), transparent 34%),
    radial-gradient(circle at 20% 20%, rgba(100, 211, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #08153f 0%, #0a1d57 38%, #071236 100%);
  overflow-x: hidden;
}

.landing-page-body::before,
.landing-page-body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.landing-page-body::before {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.6) 0.8px, transparent 1px),
    radial-gradient(rgba(132, 194, 255, 0.35) 0.8px, transparent 1px);
  background-position: 0 0, 26px 26px;
  background-size: 52px 52px;
  opacity: 0.22;
}

.landing-page-body::after {
  background:
    radial-gradient(ellipse at center, rgba(79, 165, 255, 0.08), transparent 58%),
    linear-gradient(180deg, transparent 0%, rgba(130, 169, 255, 0.08) 100%);
}

.landing-shell {
  position: relative;
  z-index: 1;
}

.landing-topbar {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(110, 153, 255, 0.18);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.landing-brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dff3ff;
  background: linear-gradient(135deg, #4097ff, #73d6ff);
  box-shadow: 0 12px 24px rgba(61, 160, 255, 0.28);
}

.landing-brand__text {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #63baff;
}

.landing-brand__text strong {
  color: #f4f8ff;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.landing-nav a {
  color: rgba(235, 242, 255, 0.82);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
}

.landing-nav__cta {
  padding: 11px 20px;
  border-radius: 12px;
  border: 1px solid rgba(119, 169, 255, 0.24);
  background: rgba(14, 32, 88, 0.66);
}

.landing-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(119, 169, 255, 0.24);
  border-radius: 14px;
  background: rgba(14, 32, 88, 0.66);
  color: #eef5ff;
}

.landing-mobile-nav {
  display: none;
}

.landing-page {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 88px;
}

.hero-section,
.about-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.hero-section {
  padding: 32px 0 54px;
}

.hero-copy,
.about-copy {
  max-width: 560px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(35, 92, 192, 0.32);
  border: 1px solid rgba(95, 158, 255, 0.18);
  color: #9ad8ff;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-copy h1,
.about-copy h2,
.section-heading h2 {
  margin: 16px 0 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #f8fbff;
}

.about-copy h2,
.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.about-copy h2 span,
.section-heading h2 span {
  color: #52b7ff;
}

.hero-copy p,
.about-copy p,
.section-heading p {
  margin: 14px 0 0;
  color: rgba(221, 232, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.hero-button,
.landing-plan-card__button {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #2e7cff, #5db8ff);
  box-shadow: 0 16px 30px rgba(33, 112, 255, 0.24);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-button:hover,
.landing-plan-card__button:hover {
  transform: translateY(-1px);
}

.hero-button--ghost {
  background: rgba(12, 29, 80, 0.64);
  border: 1px solid rgba(120, 169, 255, 0.18);
  box-shadow: none;
}

.hero-button.is-loading,
.landing-plan-card__button.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.hero-visual {
  position: relative;
  min-height: 340px;
}

.visual-glow {
  position: absolute;
  inset: 16% 8% 0;
  background: radial-gradient(circle, rgba(78, 184, 255, 0.35), transparent 62%);
  filter: blur(12px);
}

.hero-visual--laptop::before,
.hero-visual--team::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 20px;
  height: 120px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(61, 169, 255, 0.2), rgba(16, 48, 124, 0.35));
  border: 1px solid rgba(114, 180, 255, 0.18);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.24);
}

.visual-screen {
  position: absolute;
  top: 48px;
  left: 24%;
  width: 48%;
  height: 170px;
  border-radius: 18px;
  border: 1px solid rgba(120, 184, 255, 0.24);
  background: linear-gradient(180deg, rgba(12, 37, 104, 0.95), rgba(8, 21, 64, 0.95));
  box-shadow: 0 26px 42px rgba(0, 0, 0, 0.24);
}

.visual-screen::after {
  content: "";
  position: absolute;
  left: -28px;
  right: -28px;
  bottom: -24px;
  height: 24px;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, rgba(74, 190, 255, 0.7), rgba(14, 76, 168, 0.5));
}

.visual-screen__chart {
  position: absolute;
  inset: auto 16px 22px 16px;
  height: 74px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.visual-screen__chart span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, rgba(74, 189, 255, 0.95), rgba(38, 102, 230, 0.62));
}

.visual-screen__chart span:nth-child(1) { height: 28px; }
.visual-screen__chart span:nth-child(2) { height: 48px; }
.visual-screen__chart span:nth-child(3) { height: 42px; }
.visual-screen__chart span:nth-child(4) { height: 64px; }
.visual-screen__chart span:nth-child(5) { height: 54px; }

.visual-line {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 30px;
  height: 84px;
  border-bottom: 3px solid rgba(147, 224, 255, 0.9);
  clip-path: polygon(0 72%, 18% 62%, 38% 74%, 58% 36%, 76% 18%, 100% 48%, 100% 100%, 0 100%);
}

.visual-float {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ebf7ff;
  background: linear-gradient(135deg, rgba(70, 162, 255, 0.92), rgba(63, 115, 255, 0.74));
  border: 1px solid rgba(145, 196, 255, 0.24);
  box-shadow: 0 18px 30px rgba(19, 68, 172, 0.24);
}

.visual-float--shield {
  right: 10%;
  top: 20px;
}

.visual-float--coin {
  right: 0;
  top: 92px;
}

.about-section {
  padding: 22px 0 54px;
}

.about-lead {
  font-size: 1.16rem;
  font-weight: 600;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.feature-card {
  display: flex;
  gap: 16px;
  padding: 18px 18px;
  border-radius: 20px;
  border: 1px solid rgba(116, 168, 255, 0.18);
  background: linear-gradient(180deg, rgba(18, 41, 102, 0.82), rgba(10, 24, 71, 0.88));
  box-shadow: 0 20px 45px rgba(1, 9, 33, 0.24);
}

.feature-card i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(56, 127, 255, 0.3), rgba(63, 203, 255, 0.2));
  color: #95d9ff;
  flex-shrink: 0;
}

.feature-card h3 {
  margin: 2px 0 6px;
  font-size: 1.16rem;
  color: #f7fbff;
}

.feature-card p {
  margin: 0;
  font-size: 0.96rem;
}

.team-stage {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 36px;
  height: 140px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(77, 191, 255, 0.22), rgba(21, 71, 161, 0.3));
  border: 1px solid rgba(114, 180, 255, 0.18);
}

.team-figure {
  position: absolute;
  bottom: 76px;
  width: 88px;
}

.team-figure--left {
  left: 30%;
}

.team-figure--right {
  right: 26%;
}

.team-head {
  width: 30px;
  height: 30px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffe0b0, #d89f73);
}

.team-body {
  width: 100%;
  height: 100px;
  margin-top: 10px;
  border-radius: 22px 22px 14px 14px;
  background: linear-gradient(180deg, #173c8f, #091c57);
  position: relative;
}

.team-figure--right .team-body {
  background: linear-gradient(180deg, #2d66c5, #163a8e);
}

.team-body::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 10px;
  height: 26px;
  transform: translateX(-50%);
  background: #dfe9ff;
  box-shadow: -16px 0 0 #dfe9ff, 16px 0 0 #dfe9ff;
}

.visual-float--growth {
  right: 9%;
  top: 74px;
}

.visual-float--secure {
  left: 16%;
  top: 34px;
}

.plans-section,
.stats-section {
  padding: 34px 0 10px;
}

.section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.landing-plan-card {
  padding: 22px 20px;
  border-radius: 28px;
  border: 1px solid rgba(116, 168, 255, 0.18);
  color: #eef4ff;
  box-shadow: 0 24px 46px rgba(1, 9, 33, 0.28);
}

.plan-card--blue {
  background: linear-gradient(180deg, rgba(25, 109, 215, 0.76), rgba(12, 44, 119, 0.9));
}

.plan-card--violet {
  background: linear-gradient(180deg, rgba(84, 63, 215, 0.76), rgba(44, 24, 121, 0.9));
}

.plan-card--cyan {
  background: linear-gradient(180deg, rgba(26, 152, 210, 0.76), rgba(10, 67, 115, 0.9));
}

.plan-card--amber {
  background: linear-gradient(180deg, rgba(205, 121, 34, 0.76), rgba(121, 57, 20, 0.9));
}

.landing-plan-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #f8fbff;
}

.landing-plan-card__header h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #ffffff;
}

.landing-plan-card__rate {
  margin: 18px 0 18px;
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
}

.landing-plan-card__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(243, 248, 255, 0.9);
}

.landing-plan-card__features li::before {
  content: "•";
  margin-right: 10px;
  color: #b7e7ff;
}

.landing-plan-card__button {
  width: 100%;
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.stats-bar {
  padding: 20px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  border: 1px solid rgba(116, 168, 255, 0.18);
  background: linear-gradient(180deg, rgba(18, 41, 102, 0.82), rgba(10, 24, 71, 0.88));
  box-shadow: 0 20px 45px rgba(1, 9, 33, 0.24);
}

.stat-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(128, 175, 255, 0.12);
}

.stat-chip i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(56, 127, 255, 0.3), rgba(63, 203, 255, 0.2));
  color: #95d9ff;
  flex-shrink: 0;
}

.stat-chip strong {
  display: block;
  font-size: 1.4rem;
  color: #ffffff;
}

.stat-chip span {
  display: block;
  margin-top: 4px;
  color: rgba(223, 234, 255, 0.76);
  font-size: 0.95rem;
}

.stat-chip--progress {
  display: block;
}

.chip-progress {
  width: 100%;
  height: 10px;
  margin-top: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(7, 24, 74, 0.72);
}

.chip-progress span {
  display: block;
  height: 100%;
  margin: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #2e7cff, #62d1ff);
}

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

  .landing-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .landing-mobile-nav {
    width: min(1200px, calc(100% - 32px));
    margin: 10px auto 0;
    display: none;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(116, 168, 255, 0.18);
    background: linear-gradient(180deg, rgba(18, 41, 102, 0.92), rgba(10, 24, 71, 0.94));
  }

  .landing-mobile-nav.is-open {
    display: grid;
    gap: 10px;
  }

  .landing-mobile-nav a {
    color: #eef5ff;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .plans-grid,
  .stats-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .landing-topbar,
  .landing-page,
  .landing-mobile-nav {
    width: min(100%, calc(100% - 20px));
  }

  .landing-topbar {
    min-height: 72px;
  }

  .landing-brand__text {
    font-size: 1.38rem;
  }

  .landing-page {
    padding: 20px 0 78px;
  }

  .hero-section,
  .about-section,
  .plans-section,
  .stats-section {
    padding-top: 22px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-button,
  .landing-plan-card__button {
    width: 100%;
  }

  .hero-visual {
    min-height: 270px;
  }

  .visual-screen {
    left: 15%;
    width: 62%;
    height: 140px;
  }

  .team-figure--left {
    left: 22%;
  }

  .team-figure--right {
    right: 18%;
  }

  .plans-grid,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .landing-plan-card {
    border-radius: 22px;
  }

  .stat-chip {
    min-height: 82px;
  }
}
