:root {
      --primary-gradient: linear-gradient(to right, #13a4e3 0%, #013461 100%);
      --blue: #1a56db;
      --blue-dk: #1240a8;
      --blue-mid: #1e3a8a;
      --blue-lt: #e8f0fe;
      --amber: #66b6dd;
      --amber-dk: #d97706;
      --green: #059669;
      --green-lt: #ecfdf5;
      --txt: #0f172a;
      --txt-mid: #334155;
      --txt-soft: #64748b;
      --border: #e2e8f0;
      --bg: #fff;
      --bg-alt: #f8fafc;
      --bg-sec: #f1f5f9;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--txt);
      background: var(--bg);
      overflow-x: hidden;
      line-height: 1.78;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      line-height: 1.22;
    }

    a {
      text-decoration: none;
    }

   
    .site-nav {
      /* position: sticky; */
      top: 0;
      z-index: 1000;
      background: #ffffff69;
      height: 72px;
      /* border-bottom: 1px solid #f0e8d0; */
      box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .nav-logo .logo-icon {
      font-size: 2rem;
      line-height: 1;
    }

    .nav-logo .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .nav-logo .logo-text .l1 {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--txt);
      letter-spacing: -.3px;
    }

    .nav-logo .logo-text .l2 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--amber-dk);
      letter-spacing: -.2px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 34px;
    }

    .nav-links a {
      font-size: .88rem;
      font-weight: 500;
      color: var(--txt-mid);
      white-space: nowrap;
      transition: color .2s;
    }

    .nav-links a:hover {
      color: var(--txt);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #00abff30;
      color: var(--txt);
      font-size: .88rem;
      font-weight: 700;
      padding: 10px 22px;
      border-radius: 50px;
      border: 1px solid #0c6195;
      white-space: nowrap;
      flex-shrink: 0;
      transition: background .2s, box-shadow .2s;
    }

    .nav-cta:hover {
     background: #cfefff;
  box-shadow: 0 4px 14px rgb(167, 218, 255);
      color: var(--txt);
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--txt);
      border-radius: 2px;
      transition: all .3s;
    }

    .nav-mobile {
      display: none;
      flex-direction: column;
      background: #fffdf7;
      border-top: 1px solid #f0e8d0;
      padding: 12px 24px 20px;
    }

    .nav-mobile a {
      padding: 12px 0;
      font-size: .93rem;
      font-weight: 500;
      color: var(--txt-mid);
      border-bottom: 1px solid #f0e8d0;
    }

    .nav-mobile a:last-child {
      border-bottom: none;
    }

    .nav-mobile .nav-cta {
      margin-top: 12px;
      width: 100%;
      justify-content: center;
    }

    .nav-mobile.open {
      display: flex;
    }

    .nav-toggle.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

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

      .nav-toggle {
        display: flex;
      }
    }

 
    .announce {
      background: linear-gradient(90deg, var(--blue-dk), var(--blue) 55%, var(--blue-dk));
      color: #fff;
      text-align: center;
      padding: 10px 16px;
      font-size: .82rem;
      font-weight: 600;
    }

    .announce em {
      color: var(--amber);
      font-style: normal;
    }

    
    section {
      padding: 40px 0;
    }

    .sec-alt {
      background: var(--bg-alt);
    }

    .sec-sec {
      background: #fff;
    }

    .sec-white {
      background: var(--bg);
    }

    .eyebrow {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 8px;
    }

    .sec-h {
      font-size: clamp(1.6rem, 3vw, 2.35rem);
      font-weight: 800;
      color: var(--txt);
      margin-bottom: 18px;
    }

    .sec-p {
    font-size: 16px;
    color: var(--txt-mid);
    line-height: 1.4;
    }

    .bar {
      display: block;
      width: 48px;
      height: 4px;
      background: linear-gradient(90deg, var(--blue), var(--amber));
      border-radius: 4px;
      margin-bottom: 18px;
    }

    .bar.cx {
      margin-left: auto;
      margin-right: auto;
    }


    .img-space {
      width: 100%;
      border-radius: 18px;
      background: linear-gradient(135deg, #e8f0fe 0%, #f1f5f9 100%);
      border: 2px dashed #c7d7f9;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: var(--blue);
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    .img-space i {
      font-size: 2.2rem;
      opacity: .45;
    }

    .img-space.h300 {
      height: 300px;
    }

    .img-space.h260 {
      height: 260px;
    }

    .img-space.h220 {
      height: 220px;
    }

    .img-space.h180 {
      height: 180px;
    }

    .img-space.h420 {
      height: 420px;
    }


    .img-space.dark {
      background: rgba(255, 255, 255, .05);
      border-color: rgba(255, 255, 255, .15);
      color: rgba(255, 255, 255, .4);
    }

 
    .hero {
      background: linear-gradient(135deg, #1b2e3d 0%, #06202f 45%, #01132b 100%);
      padding: 40px 0 60px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    /* .hero::before {
      content: '';
      position: absolute;
      top: -130px;
      right: -130px;
      width: 520px;
      height: 520px;
      background: radial-gradient(circle, rgba(245, 158, 11, .16), transparent 68%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -90px;
      left: -90px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(26, 86, 219, .26), transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    } */

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 890px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .hero-eyebrow {
          display: inline-block;
    background: rgb(86 177 222 / 18%);
    border: 1px solid rgb(13 97 150);
    color: var(--amber);
    font-size: 1.1rem;
    font-weight: 700;
    
    padding: 5px 20px;
    border-radius: 30px;
    margin-bottom: 22px;
    }

    .hero h1 {
      color: #fff;
      font-size: clamp(1.9rem, 4.5vw, 2.2rem);
      font-weight: 700;
      margin-bottom: 12px;
    }

    .hero h1 .gold {
      color: var(--amber);
    }

    .hero-feat {
      color: rgba(255, 255, 255, .52);
      font-size: .9rem;
      /* font-style: italic; */
      margin-bottom: 16px;
    }

    .hero-pos {
      color: rgba(255, 255, 255, .8);
      font-size: 1rem;
      margin-bottom: 28px;
    }

    .commission-pill {
          display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4fa9d7, #0f3c71);
    color: #fff;
    font-weight: 700;
    font-size: .97rem;
    padding: 13px 28px;
    border-radius: 50px;
    box-shadow: 0 8px 28px rgb(91 181 225 / 34%);
    margin-bottom: 36px;
    }

   
    .hero-img-wrap {
      max-width: 680px;
      margin: 0 auto 32px;
    }

    .hero-img-wrap .img-space {
      background: rgba(255, 255, 255, .05);
      border-color: rgba(255, 255, 255, .15);
      color: rgba(255, 255, 255, .38);
    }

  
    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }

    .hstat {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .13);
      border-radius: 14px;
      padding: 16px 24px;
      text-align: center;
      min-width: 110px;
    }

    .hstat .num {
      font-size: 1.75rem;
      font-weight: 900;
      color: var(--amber);
      display: block;
    }

    .hstat .lbl {
      font-size: .68rem;
      color: rgba(255, 255, 255, .52);
      display: block;
      line-height: 1.3;
    }

 
    .hero-cta-btn {
      display: inline-block;
    background: linear-gradient(135deg, #398ebf, #126499);
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 28px rgb(22 104 157 / 52%);
    transition: transform .2s, box-shadow .2s;
    }

    .hero-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgb(22 104 157 / 52%);
      color: #fff;
    }

   
    .launch-section {
      background: #f0f9ff;
      padding: 60px 0;
    }

    .launch-section-inner {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .launch-heading {
      text-align: center;
      margin-bottom: 40px;
    }

    .launch-heading .lh-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(245, 158, 11, .15);
      border: 1px solid rgba(245, 158, 11, .35);
      color: var(--amber);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 30px;
      margin-bottom: 16px;
    }

    .launch-heading h2 {
      color: #000;
      font-size: clamp(1.4rem, 3vw, 2.4rem);
      font-weight: 800;
      margin-bottom: 4px;
    }

    .launch-heading p {
      color: #000;
      font-size: .88rem;
    }

    
    .timer-wrap {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .timer-box {
      background: rgb(5, 83, 134);
  border: 1px solid rgba(0, 10, 95, 0.1);
      border-radius: 16px;
      padding: 20px 18px;
      text-align: center;
      min-width: 88px;
    }

    .timer-box .t-num {
      font-size: 2.2rem;
      font-weight: 900;
      color: #fff;
      display: block;
      line-height: 1;
      font-variant-numeric: tabular-nums;
    }

    .timer-box .t-lbl {
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #fff;
      display: block;
      margin-top: 6px;
    }

    .timer-sep {
      font-size: 2rem;
      font-weight: 900;
      color: var(--amber);
      align-self: center;
      margin-top: -8px;
    }

   
    .launch-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
      margin-bottom: 36px;
    }

    .launch-info-card {
      background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(195, 224, 255, 0.97);
      border-radius: 14px;
      padding: 20px 20px;
      /* display: flex;
      align-items: flex-start; */
      text-align: center;
      gap: 14px;
    }

    .li-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(245, 158, 11, .15);
      color: var(--amber);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .95rem;
      flex-shrink: 0;
    }

    .launch-info-card .li-label {
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgb(102, 182, 221);
      margin-bottom: 4px;
    }

    .launch-info-card .li-value {
      font-size: 1.5rem;
      font-weight: 600;
      color: #000;
      line-height: 1.4;
    }

    
    .launch-cta-wrap {
      text-align: center;
    }

    .launch-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--amber), var(--amber-dk));
      color: #fff;
      font-weight: 700;
      font-size: 1.02rem;
      padding: 15px 38px;
      border-radius: 50px;
      box-shadow: 0 10px 32px rgba(245, 158, 11, .42);
      transition: transform .2s, box-shadow .2s;
    }

    .launch-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 42px rgba(245, 158, 11, .55);
      color: #fff;
    }

   
    .phase-label {
      text-align: center;
      margin-bottom: 14px;
    }

    .phase-badge {
      display: inline-block;
      padding: 5px 16px;
      border-radius: 20px;
      font-size: .9rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .phase-badge.pre {
      background: rgba(99, 102, 241, .2);
      color: #001991;
  border: 1px solid rgb(5, 83, 134);
    }

    .phase-badge.live {
      background: rgba(5, 150, 105, .2);
      color: #6ee7b7;
      border: 1px solid rgba(5, 150, 105, .35);
    }

    .phase-badge.ended {
      background: rgba(220, 38, 38, .2);
      color: #fca5a5;
      border: 1px solid rgba(220, 38, 38, .35);
    }

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

    .icon-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 3px 0;
      font-size: .93rem;
      color: var(--txt-mid);
      /* border-bottom: 1px solid var(--border); */
    }

    .icon-list li:last-child {
      border-bottom: none;
    }

    .icon-list li i {
      color: var(--blue);
      margin-top: 4px;
      flex-shrink: 0;
    }

    .icon-list li strong {
      color: var(--txt);
    }

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

    .cando-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 16px;
      background: var(--blue-lt);
      border-radius: 10px;
      margin-bottom: 8px;
      font-size: .92rem;
      font-weight: 500;
    }

    .cando-list li i {
      color: var(--blue);
      flex-shrink: 0;
    }

    .doc-hl {
      background: #fffbeb;
      border-left: 4px solid var(--amber);
      border-radius: 0 14px 14px 0;
      padding: 16px 20px;
      margin-bottom: 12px;
      font-size: .93rem;
      color: var(--txt-mid);
      line-height: 1.8;
    }

 
    .feat-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 28px 26px;
      height: 100%;
      transition: transform .25s, box-shadow .25s;
    }

    .feat-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 48px rgba(26, 86, 219, .09);
    }

    .feat-icon {
      width: 50px;
      height: 50px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin-bottom: 14px;
    }

    .feat-card h5 {
      font-size: .97rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .feat-card p {
      font-size: .85rem;
      color: var(--txt-soft);
      line-height: 1.7;
      margin: 0;
    }

    
    .sneak-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 30px 26px;
    }

    .sneak-card .sk-icon {
      width: 48px;
      height: 48px;
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin-bottom: 14px;
    }

    .sneak-card h4 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .sneak-card p {
      font-size: .87rem;
      color: var(--txt-mid);
      line-height: 1.75;
      margin-bottom: 14px;
    }

    .demo-badge {
      display: inline-block;
      background: var(--blue-lt);
      color: var(--blue);
      font-size: .7rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 6px;
    }


    .plr-item {
      display: flex;
      gap: 16px;
      padding: 18px 20px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      margin-bottom: 12px;
      transition: border-color .2s;
    }

    .plr-item:hover {
      border-color: var(--blue);
    }

    .plr-icon {
      width: 42px;
      height: 42px;
      border-radius: 11px;
      background: var(--blue-lt);
      color: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .95rem;
      flex-shrink: 0;
    }

    .plr-item h6 {
      font-size: .9rem;
      font-weight: 700;
      margin-bottom: 3px;
    }

    .plr-item p {
      font-size: .82rem;
      color: var(--txt-soft);
      margin: 0;
      line-height: 1.6;
    }

   
    .dark-panel {
      background: linear-gradient(135deg, #0b1526, var(--blue-mid));
      border-radius: 22px;
      padding: 44px 36px;
      color: #fff;
      height: 100%;
    }

    .dark-panel h3 {
      color: #fff;
      font-size: 1.35rem;
      margin-bottom: 16px;
    }

    .dark-panel p {
      color: rgba(255, 255, 255, .72);
      font-size: .9rem;
      line-height: 1.75;
      margin-bottom: 16px;
    }

    .dp-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 13px 16px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 11px;
      margin-bottom: 10px;
      color: rgba(255, 255, 255, .88);
      font-size: .87rem;
      line-height: 1.6;
    }

    .dp-item i {
      color: var(--amber);
      margin-top: 2px;
      flex-shrink: 0;
    }

    .green-panel {
      background: linear-gradient(135deg, #064e3b, var(--green));
      border-radius: 22px;
      padding: 44px 36px;
      color: #fff;
      height: 100%;
    }

    .green-panel h3 {
      color: #fff;
      font-size: 1.35rem;
      margin-bottom: 16px;
    }

    .green-panel p {
      color: rgba(255, 255, 255, .72);
      font-size: .9rem;
      line-height: 1.75;
      margin-bottom: 16px;
    }

    .gp-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 13px 16px;
      background: rgba(255, 255, 255, .09);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 11px;
      margin-bottom: 10px;
      color: rgba(255, 255, 255, .9);
      font-size: .87rem;
      line-height: 1.6;
    }

    .gp-item i {
      color: #6ee7b7;
      margin-top: 2px;
      flex-shrink: 0;
    }

  
    .cmp-card {
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      box-shadow: 0 6px 36px rgba(0, 0, 0, .08);
    }

    .cmp-card-head {
      padding: 26px 28px;
    }

    .cmp-card-head.fe {
      background: linear-gradient(to right, #13a4e3 0%, #013461 100%);
    }

    .cmp-card-head.ug {
      background: linear-gradient(to right, #13a4e3 0%, #013461 100%);
    }

    .cmp-tag {
      display: inline-block;
      background: rgb(0, 82, 136);
      color: #fff;
      font-size: 1.1rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 4px;
      margin-bottom: 10px;
      box-shadow: rgb(18, 158, 220) 0px 5px 15px;
    }

    .cmp-card-head h3 {
      color: #fff;
      font-size: 1.05rem;
      font-weight: 800;
      line-height: 1.3;
      margin: 0;
    }

    .cmp-body {
      background: var(--bg);
      flex: 1;
      padding: 0;
    }

    .cmp-row {
      padding: 16px 24px;
      border-bottom: 1px solid var(--border);
    }

    .cmp-row:last-child {
      border-bottom: none;
    }

    .cmp-row-label {
      background: #005288;
      padding: 11px 24px;
      border-bottom: 1px solid var(--border);
    }

    .cmp-row-label.g {
      background: #005288;
    }

    .cmp-row-label p {
      font-size: .9rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #fff;
      margin: 0;
    }

    .cmp-row-label.g p {
      color: #fff;
    }

    .cmp-row strong {
      font-size: 1.0rem;
      color: var(--txt);
      display: block;
      margin-bottom: 8px;
    }

    .cmp-row ol,
    .cmp-row ul {
      padding-left: 18px;
      margin: 0;
    }

    .cmp-row li {
      font-size: .83rem;
      color: var(--txt-mid);
      margin-bottom: 5px;
    }

    .cmp-plr {
      background: var(--blue-lt);
      padding: 14px 24px;
      text-align: center;
      font-size: .9rem;
      font-weight: 700;
      color: var(--blue);
    }

    .cmp-plr.g {
      background: #e8f0fe;
  color: #1a56db;
    }

   
    .use-tile {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-align: center;
      padding: 24px 16px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      font-size: .88rem;
      font-weight: 600;
      color: var(--txt);
      transition: border-color .2s, box-shadow .2s;
    }

    .use-tile:hover {
      border-color: var(--blue);
      box-shadow: 0 8px 30px rgba(26, 86, 219, .08);
    }

    .use-tile i {
      font-size: 1.6rem;
      color: var(--blue);
    }

   
    .aud-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 11px 22px;
      border-radius: 50px;
      font-size: .88rem;
      font-weight: 600;
      color: var(--txt);
      margin: 7px;
      transition: background .2s, border-color .2s, color .2s;
    }

    .aud-pill:hover {
      background: var(--blue);
      border-color: var(--blue);
      color: #fff;
    }

    .aud-pill i {
      color: var(--blue);
    }

    .aud-pill:hover i {
      color: #fff;
    }

    
    .reason-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 30px 24px;
      height: 100%;
      position: relative;
      transition: transform .2s, box-shadow .2s;
    }

    .reason-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 48px rgba(26, 86, 219, .08);
    }

    .r-num {
      position: absolute;
      top: 18px;
      right: 20px;
      font-size: 3rem;
      font-weight: 900;
      color: var(--blue-lt);
      line-height: 1;
    }

    .r-icon {
      width: 50px;
      height: 50px;
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.7rem;
      margin-bottom: 14px;
    }

    .reason-card h4 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .reason-card p {
      font-size: .83rem;
      color: var(--txt-soft);
      line-height: 1.65;
      margin: 0;
    }

    
    .cta-band {
      background: linear-gradient(135deg, #0b1526, var(--blue-mid) 50%, var(--blue));
      padding: 50px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-band::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 620px;
      height: 620px;
      background: radial-gradient(circle, rgba(245, 158, 11, .1), transparent 68%);
      border-radius: 50%;
      pointer-events: none;
    }

    .cta-band h2 {
      color: #fff;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700;
    }

    .cta-band h2 span {
      color: #77d3ff;
    }

    .cta-band p {
      color: rgba(255, 255, 255, .75);
      font-size: 1rem;
    }

    .btn-cta {
      display: inline-block;
      background: linear-gradient(135deg, var(--amber), var(--amber-dk));
      color: #fff;
      font-weight: 700;
      font-size: 1.05rem;
      padding: 16px 46px;
      border-radius: 50px;
      box-shadow: 0 10px 38px rgba(245, 158, 11, .42);
      transition: transform .2s, box-shadow .2s;
    }

    .btn-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 50px rgba(245, 158, 11, .58);
      color: #fff;
    }

    .btn-cta-sm {
      display: inline-block;
      background: linear-gradient(135deg, var(--amber), var(--amber-dk));
      color: #fff;
      font-weight: 700;
      font-size: .92rem;
      padding: 13px 32px;
      border-radius: 50px;
      box-shadow: 0 8px 24px rgba(245, 158, 11, .35);
      transition: transform .2s, box-shadow .2s;
    }

    .btn-cta-sm:hover {
      transform: translateY(-2px);
      color: #fff;
    }

   
    .partner-card {
      background: var(--bg);
      border: 2px solid var(--blue-lt);
      border-radius: 24px;
      padding: 50px 44px;
      text-align: center;
      max-width: 680px;
      margin: 0 auto;
    }

    .partner-emoji {
      font-size: 4rem;
      margin-bottom: 18px;
      display: block;
    }

    .partner-card h3 {
      font-size: 1.55rem;
      margin-bottom: 14px;
    }

    .partner-card p {
      color: var(--txt-mid);
      font-size: .95rem;
      line-height: 1.8;
      margin-bottom: 14px;
    }

  
    .final-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 50px 46px;
      position: relative;
      overflow: hidden;
      max-width: 860px;
      margin: 0 auto;
    }

    .final-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 6px;
      height: 100%;
      background: linear-gradient(180deg, var(--blue), var(--amber));
    }

    .fp {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 13px 0;
      border-bottom: 1px solid var(--border);
      font-size: .95rem;
      font-weight: 500;
    }

    .fp:last-of-type {
      border-bottom: none;
    }

    .fp i {
      color: var(--blue);
      flex-shrink: 0;
    }

    /* summary table */
    .sum-table {
      width: 100%;
      border-collapse: collapse;
      border-radius: 14px;
      overflow: hidden;
    }

    .sum-table thead th {
      background: var(--blue);
      color: #fff;
      padding: 16px 20px;
      font-size: .9rem;
      font-weight: 700;
    }

    .sum-table thead th:last-child {
      background: var(--green);
    }

    .sum-table tbody td {
      padding: 14px 20px;
      font-size: .87rem;
      border-bottom: 1px solid var(--border);
      vertical-align: middle;
    }

    .sum-table tbody td:first-child {
      background: #f8faff;
      font-weight: 500;
    }

    .sum-table tbody td:last-child {
      background: var(--green-lt);
    }

    .sum-table tbody tr:last-child td {
      border-bottom: none;
    }

    footer {
      background: #0b1526;
      color: rgba(255, 255, 255, .4);
      text-align: center;
      padding: 28px 16px;
      font-size: .78rem;
    }



.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}





 

    @keyframes fuAnim {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fu {
      animation: fuAnim .65s ease forwards;
    }

    .d1 {
      animation-delay: .08s;
      opacity: 0;
    }

    .d2 {
      animation-delay: .2s;
      opacity: 0;
    }

    .d3 {
      animation-delay: .34s;
      opacity: 0;
    }

    .d4 {
      animation-delay: .5s;
      opacity: 0;
    }

    @media(max-width:991px) {

      .dark-panel,
      .green-panel {
        margin-top: 30px;
      }
    }

    @media(max-width:767px) {
      section {
        padding: 60px 0;
      }

      .hero {
        padding: 64px 0 56px;
      }

      .final-card,
      .partner-card {
        padding: 28px 22px;
      }

      .dark-panel,
      .green-panel {
        padding: 30px 22px;
      }

      .cmp-card-head {
        padding: 20px 20px;
      }

      .cmp-row,
      .cmp-row-label {
        padding: 13px 18px;
      }

      .launch-section {
        padding: 44px 0;
      }

      .timer-box {
        min-width: 72px;
        padding: 16px 12px;
      }

      .timer-box .t-num {
        font-size: 1.7rem;
      }

      .timer-sep {
        font-size: 1.5rem;
      }

      .launch-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero-stats {
        gap: 10px;
      }

      .hstat {
        min-width: 80px;
        padding: 13px 14px;
      }
    }




    .blink{
		/* width:200px;
		height: 50px; */
	    background-color: #08445f;
		padding: 15px;	
		text-align: center;
		line-height: 50px;
	}
	.blink span{
		font-size: 35px;
		/* font-family: cursive; */
		color: white;
		animation: blink 1s linear infinite;
    font-weight: 700;
	}
@keyframes blink{
0%{opacity: 0;}
50%{opacity: .5;}
100%{opacity: 1;}
}








