 :root {
      --bg-1: #0b0c1a;
      --bg-2: #11132a;
      --panel: #0c0f23;
      --card: #1E1F39;
      --muted: #c9c6d9;
      --accent-pink: #ff2f6a;
      --accent-pink-2: #ff66a8;
      --accent-red: #ff3b5d;
      --white-color:#fff;
      --outline: rgba(255, 255, 255, 0.06);
      --glass: rgba(255, 255, 255, 0.03);
      --radius-lg: 18px;
      --radius-md: 12px;
      --container: 1180px;
      font-size: 16px;
    }

    * {
      box-sizing: border-box
    }

    html,
    body {
      height: 100%
    }
    /* img, svg{ */
      /* width: 100%; */
    /* } */

    body {
      margin: 0;
      font-family: 'Jost', sans-serif;
      /* color: var(--white-color); */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* HERO */
    .omn-hero-section {
      position: relative;
      padding: 70px 0 110px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      overflow: visible;
      background-image: url(../images/bnr.png);
      background-color: var(--bg-1);
      background-size: cover;
      background-repeat: no-repeat;
    }

    /* side avatars */
    .omn-side-avatars {
      position: absolute;
      top: 40px;
      bottom: 40px;
      width: 140px;
      display: flex;
      align-items: center;
      pointer-events: none;
      z-index: 2;
    }
.omn-btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 26px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  border: none;
  background: linear-gradient(180deg, var(--accent-red), var(--accent-pink));
  box-shadow: 0 10px 40px rgba(255, 40, 110, 0.12);
  transition: background 0.2s;
}

.omn-btn.omn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.omn-btn.omn-outline-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.omn-btn.omn-cta {
  background: linear-gradient(180deg, var(--accent-red), var(--accent-pink));
  color: #fff;
  border: none;
  box-shadow: 0 10px 40px rgba(255, 40, 110, 0.12);
}
    .omn-side-avatars.omn-left {
      left: 28px;
    }

    .omn-side-avatars.omn-right {
      right: 28px;
      transform: scaleX(-1);
    }

    .omn-avatar-col {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      align-items: center;
      justify-items: center;
      transform: translateY(6%);
    }

    .omn-avatar-col .omn-a {
      width: 92px;
      height: 92px;
      border-radius: 12px;
      background: linear-gradient(180deg, #171726, #0b0c1a);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.03);
    }

    /* center hero inner */
    .omn-hero-inner {
      max-width: 980px;
      margin: 0 auto;
      z-index: 3;
      text-align: center;
      padding-top: 12px;
    }

   .omn-title {
        font-size: 34px;
        line-height: 1.15;
        font-weight: 800;
        margin: 0 auto 10px;
        color: var(--white-color);
        max-width: 820px;
        width: 100%;
        margin: 0 auto;
    }
    .omn-pill-row {
      display: flex;
      justify-content: center;
      margin: 10px 0;
    }

    .omn-pink-pill {
      display: inline-block;
      padding: 12px 30px;
      border-radius: 10px;
      font-weight: 800;
      background: linear-gradient(90deg, var(--accent-pink), var(--accent-pink-2));
      box-shadow: 0 12px 40px rgba(255, 50, 110, 0.12);
      color: white;
    }

    .omn-subtitle {
      color: var(--white-color);
      font-size: 18px;
      margin-top: 14px;
      margin-bottom: 22px;
      font-weight: 600;
    }

    /* video block */
    .omn-video-wrap {
      max-width: 780px;
      margin: 0 auto;
    }

    .omn-video-player {
      height: 440px;
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      background: linear-gradient(180deg, #0b172b, #071026);
      border: 1px solid rgba(255, 255, 255, 0.03);
      box-shadow: 0 30px 80px rgba(6, 8, 25, 0.75);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .omn-video-player .omn-yt {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      font-size: 46px;
      color: rgba(255, 255, 255, 0.12);
    }

    .omn-video-player .omn-video-txt {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 700;
      font-size: 18px;
    }

    /* CTA */
    .omn-cta {
      display: inline-block;
      margin-top: 18px;
      padding: 12px 26px;
      border-radius: 26px;
      background: linear-gradient(180deg, var(--accent-red), var(--accent-pink));
      color: #fff;
      border: none;
      box-shadow: 0 10px 40px rgba(255, 40, 110, 0.12);
      text-decoration: none;
      font-weight: 700;
    }

    /* bottom wave */
    .omn-wave-bottom {
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      width: 100%;
      height: 140px;
      z-index: 2;
    }

    .omn-wave-top path {
      fill: #11132a;
    }

    /* MIDDLE BANNER */
    .omn-mid-banner {
      position: relative;
      padding: 90px 0 220px;
      background-color: var(--bg-2);
      overflow: visible;
      background-image: url(../images/unlock-bg-shape-1.png);
      background-size: cover;
      background-repeat: no-repeat;
    }

    .omn-mid-banner .omn-badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.03);
      color: var(--white-color);
      padding: 6px 12px;
      border-radius: 14px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .omn-mid-title {
      font-size: 24px;
      margin: 6px auto 18px;
      max-width: 900px;
      font-weight: 700;
      color:var(--white-color);
    }

    /* mockup */
    .omn-mockup .omn-devices {
      max-width: 640px;
      width: 100%;
      margin: 0 auto;
      border-radius: 16px;
      background: linear-gradient(180deg, #0d1530, #071025);
      border: 1px solid rgba(255, 255, 255, 0.02);
      box-shadow: 0 30px 80px rgba(2, 6, 16, 0.8);
    }

    /* buttons */
    .omn-btn.omn-outline {
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: transparent;
      border-radius: 28px;
      padding: 10px 20px;
      font-weight: 700;
      text-decoration: none;
      display: inline-block;
    }

    .omn-btn.omn-outline-alt {
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
      border-radius: 28px;
      padding: 10px 20px;
      font-weight: 700;
    }

    /* waves top */
    .omn-wave-top {
      position: absolute;
      left: 0;
      right: 0;
      top: -80px;
      width: 100%;
      height: 120px;
      transform: translateY(-40px);
      z-index: 1;
    }

    .omn-wave-top path {
      fill: var(--bg-2);
    }

    /* HOW IT WORKS */
 .omn-how-it-works {
    padding: 100px 0 60px;
    background-color: var(--bg-1);
    background-image: url(../images/bg-shap.png);
    position: relative;
}

    .omn-small-pill {
      display: inline-block;
      background: linear-gradient(90deg, var(--accent-pink), var(--accent-pink-2));
      color: #fff;
      padding: 6px 12px;
      border-radius: 14px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .omn-section-title {
      font-size: 22px;
      margin-top: 6px;
      margin-bottom: 18px;
      font-weight: 800;
      color:var(--white-color);
    }
.omn-how-it-works svg {
    position: absolute;
    top: -113px;
    left: 0;
    right: 0;
    z-index: 1;
}
.omn-person-img img {
    max-width: 340px;
}
.omn-how-it-works svg path{
  fill: var(--bg-1);
}
    /* feature cards */
    .omn-feature-card {
      background: var(--card);
      border-radius: 16px;
      padding: 40px 40px;
      box-shadow: 0 18px 60px rgba(3, 6, 25, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.03);
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: center;
      max-width: 1120px;
      width: 100%;
      margin: 0 auto;
    }
    .omn-leftside h2{
      font-size: 30px;
      font-weight: 700;
      color: var(--white-color);
      margin: 15px auto ;
    }

    .omn-feature-card .omn-ribbon {
      display: inline-block;
      background: linear-gradient(90deg, var(--accent-pink), var(--accent-pink-2));
      color: #fff;
      padding: 6px 10px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 10px;
    }

    .omn-feature-card h4 {
      margin-top: 6px;
      margin-bottom: 6px;
      font-size: 18px;
    }
   .omn-feature-card p{
    font-size: 16px;
    color:var(--white-color);
   }

    .omn-thumb img {
      max-width: 600px;
      width: 100%;
      border-radius: 10px;
    }

    /* bonuses */
.omn-bonuses {
    padding: 60px 0 180px;
    background-color: var(--bg-2);
    background-image: url(../images/bg-3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
    .omn-bonus-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      max-width: 900px;
      margin: 24px auto 0;
    }

    .omn-bonus-item {
      text-align: left;
      padding: 32px;
      border-radius: 12px;
      border: 2px solid rgba(124, 82, 255, 0.14);
      background: var(--card);
      box-shadow: 1px 1px 7px 3px rgba(100.99999999999982, 14.000000000000002, 190, 0.7019607843137254);
    }
.omn-bonus-item h5{
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 10px;
    align-items: center;
    color:var(--white-color);
}
.omn-bonus-item p{
    color:var(--white-color);
}
    /* review */
    .omn-review-section {
      padding: 50px 0 0;
      position: relative;
      background-image: url();
      background-color: var(--bg-1);
    }
.omn-review-section > svg{
  position: absolute;
  top: -120px;
  right: 0;
  left: 0;
  z-index: 1;
}
.omn-review-section > svg path{
  fill: var(--bg-1);
}
    .omn-review-left {
      max-width: 520px;
    }

    .omn-score {
      list-style: none;
      padding: 0;
      margin-top: 12px;
      color: var(--white-color);
      margin-left:0;
    }

    .omn-score li {
      margin-bottom: 20px;
    }
  .omn-score li h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--white-color);
  }

    .omn-person-card {
      text-align: center;
    }
    .omn-rev-row {
    max-width: 1120px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr ;
    gap: 20px;
    align-items: center;
}

.omn-score li span svg{
  width:100px
}
    /* footer */
.omn-site-footer {
    background-color: var(--bg-2);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    color: var(--white-color);
    background-image: url(../images/bg-2.png);
    padding: 80px 0;
    background-position: center;
    background-repeat: no-repeat;
}

    /* reveal animations */
   .omn-review-left h4 {
    font-size: 40px;
    font-weight: 700;
    color: var(--white-color);
   }

    .omn-reveal.omn-is-visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
.omn-site-footer .container{
  max-width: 1120px;
}
.omn-site-footer p{
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
}

.omn-reveal .omn-leftside{
    order:2;
} 
.omn-reveal .omn-rightside{
    order:1;
} 
    /* responsive */
    @media(min-width:1320px){
        .omn-review-section > svg {
            top: -110px;
        }
    }
    @media (min-width: 992px) {
      .omn-bonus-list {
        grid-template-columns: 1fr;
      }

      .omn-title {
        font-size: 40px;
      }
    }

    @media (max-width: 991px) {
      .omn-side-avatars {
        display: none;
      }

      .omn-title {
        font-size: 24px;
      }

      .omn-video-player {
        height: 260px;
      }

      .omn-person-img {
        width: 160px;
        height: 220px;
      }

      .omn-mid-title {
        font-size: 20px;
      }
      .omn-feature-card{
        grid-template-columns: 1fr;
      }
      .omn-review-section > svg, .omn-how-it-works svg{
        display: none;
      }
      .omn-how-it-works{
        margin-top: 0;
      }
      .omn-rev-row{
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 576px) {
      .omn-title {
        font-size: 20px;
      }
      .omn-site-footer p{
        font-size: 13px;
      }
    .omn-leftside h2 {
      font-size: 22px;
    } 
    .omn-review-left h4{
      font-size: 28px;
    }
      .omn-video-player {
        height: 200px;
      }

      .omn-mockup .omn-devices {
        width: 320px;
        height: 140px;
      }

      .omn-bonus-item {
        padding: 16px;
      }
    }
	
	#ast-scroll-top .ast-icon.icon-arrow{
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
	}
	 
