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

    :root {
      --navy: #0c1947;
      --navy-mid: #142057;
      --navy-light: #1e306e;
      --navy-deep: #080f2e;
      --ice: #ECF0F3;
      --ice-mid: #dde3e9;
      --soft: #f7faff;
      --mint: #effbf4;
      --green: #27b74c;
      --green-light: #4fd96e;
      --white: #ffffff;
      --muted: #5a6a8a;
      --line: #d8e1eb;
      --radius: 18px;
      --shadow: 0 8px 32px rgba(12, 25, 71, .10);
      --shadow-lg: 0 28px 70px rgba(12, 25, 71, .16);
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--soft);
      color: var(--navy);
      overflow-x: hidden
    }

    body.preloading {
      overflow: hidden
    }

    .preloader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      background:
        radial-gradient(circle at 50% 38%, rgba(39, 183, 76, .18), transparent 34%),
        linear-gradient(145deg, #07102f 0%, #0c1947 52%, #05091e 100%);
      transition: opacity .45s ease, visibility .45s ease
    }

    .preloader.hide {
      opacity: 0;
      visibility: hidden;
      pointer-events: none
    }

    .preloader-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
      color: var(--white)
    }

    .preloader-logo {
      width: 86px;
      height: 86px;
      border-radius: 22px;
      object-fit: cover;
      box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
      animation: logoPulse 1.4s ease-in-out infinite
    }

    .preloader-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.7rem;
      font-weight: 700;
      letter-spacing: 0
    }

    .preloader-name span {
      color: var(--green)
    }

    .preloader-bar {
      width: 156px;
      height: 5px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255, 255, 255, .12)
    }

    .preloader-bar::before {
      content: "";
      display: block;
      width: 45%;
      height: 100%;
      border-radius: inherit;
      background: var(--green);
      animation: loaderMove 1.1s ease-in-out infinite
    }

    @keyframes logoPulse {
      0%,
      100% {
        transform: scale(1)
      }

      50% {
        transform: scale(1.06)
      }
    }

    @keyframes loaderMove {
      0% {
        transform: translateX(-110%)
      }

      100% {
        transform: translateX(230%)
      }
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 60px;
      background: rgba(8, 15, 46, .96);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, .06)
    }

    .nav-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 1.4rem;
      color: var(--white)
    }

    .nav-logo img {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      object-fit: cover
    }

    .nav-logo .g {
      color: var(--green)
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none
    }

    .nav-links a {
      color: rgba(255, 255, 255, .6);
      text-decoration: none;
      font-size: .875rem;
      font-weight: 500;
      transition: color .2s
    }

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

    .nav-cta {
      background: var(--green);
      color: var(--navy);
      border: none;
      padding: 9px 22px;
      border-radius: 50px;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: .82rem;
      cursor: pointer;
      text-decoration: none;
      transition: all .2s
    }

    .nav-cta:hover {
      background: var(--green-light);
      transform: translateY(-1px)
    }

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

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all .3s
    }

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

    .hamburger.open span:nth-child(2) {
      opacity: 0
    }

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

    .mobile-menu {
      display: none;
      position: fixed;
      top: 66px;
      left: 0;
      right: 0;
      background: rgba(8, 15, 46, .98);
      backdrop-filter: blur(12px);
      padding: 12px 24px 20px;
      z-index: 99;
      flex-direction: column;
      border-bottom: 1px solid rgba(255, 255, 255, .06)
    }

    .mobile-menu.open {
      display: flex
    }

    .mobile-menu a {
      color: rgba(255, 255, 255, .75);
      text-decoration: none;
      font-size: .95rem;
      font-weight: 500;
      padding: 13px 8px;
      border-bottom: 1px solid rgba(255, 255, 255, .05);
      transition: color .2s
    }

    .mobile-menu a:last-child {
      border-bottom: none;
      color: var(--green);
      font-weight: 700
    }

    /* BANNER */
    .banner {
      position: relative;
      min-height: 96vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: var(--navy-deep);
      overflow: hidden;
      padding-top: 80px
    }

    .banner-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 55% at 50% -5%, rgba(39, 183, 76, .18) 0%, transparent 55%), radial-gradient(ellipse 50% 70% at 85% 110%, rgba(30, 48, 110, .7) 0%, transparent 55%), linear-gradient(160deg, #080f2e 0%, #0f1c52 55%, #060d26 100%)
    }

    .banner-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
      background-size: 64px 64px
    }

    .banner-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none
    }

    .banner-orb-1 {
      width: 420px;
      height: 420px;
      top: 10%;
      left: -8%;
      background: radial-gradient(circle, rgba(39, 183, 76, .08) 0%, transparent 70%)
    }

    .banner-orb-2 {
      width: 300px;
      height: 300px;
      bottom: 10%;
      right: -4%;
      background: radial-gradient(circle, rgba(30, 48, 110, .5) 0%, transparent 70%)
    }

    .banner-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 800px;
      min-width: 0;
      padding: 40px 24px 60px
    }

    .banner-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(39, 183, 76, .12);
      border: 1px solid rgba(39, 183, 76, .28);
      color: var(--green);
      padding: 6px 18px;
      border-radius: 50px;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 26px;
      animation: fadeUp .8s ease both
    }

    .banner-badge::before {
      content: '●';
      font-size: .45rem;
      animation: pulse 1.5s infinite
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .2
      }
    }

    .banner-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.4rem, 6vw, 5rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.08;
      letter-spacing: -1.5px;
      margin-bottom: 22px;
      animation: fadeUp .8s .15s ease both;
      overflow-wrap: break-word
    }

    .banner-title em {
      color: var(--green);
      font-style: normal
    }

    .banner-desc {
      font-size: clamp(.9rem, 2vw, 1.05rem);
      color: rgba(255, 255, 255, .55);
      line-height: 1.75;
      max-width: 520px;
      margin: 0 auto 36px;
      font-weight: 300;
      animation: fadeUp .8s .3s ease both
    }

    .banner-btns {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp .8s .45s ease both
    }

    .btn-primary {
      background: var(--green);
      color: var(--navy);
      padding: 13px 28px;
      border-radius: 50px;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: .88rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all .2s
    }

    .btn-primary:hover {
      background: var(--green-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(39, 183, 76, .4)
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      padding: 13px 28px;
      border-radius: 50px;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;
      font-size: .88rem;
      text-decoration: none;
      border: 1.5px solid rgba(255, 255, 255, .22);
      cursor: pointer;
      transition: all .2s
    }

    .btn-outline:hover {
      border-color: var(--green);
      color: var(--green);
      transform: translateY(-2px)
    }

    .banner-stats {
      display: flex;
      gap: 0;
      justify-content: center;
      flex-wrap: wrap;
      width: 100%;
      margin-top: 56px;
      padding-top: 36px;
      border-top: 1px solid rgba(255, 255, 255, .07);
      animation: fadeUp .8s .6s ease both
    }

    .stat-item {
      text-align: center;
      padding: 0 28px
    }

    .stat-item+.stat-item {
      border-left: 1px solid rgba(255, 255, 255, .07)
    }

    .stat-num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(1.5rem, 4vw, 2.1rem);
      font-weight: 700;
      color: var(--green)
    }

    .stat-label {
      font-size: .73rem;
      color: rgba(255, 255, 255, .42);
      margin-top: 5px;
      letter-spacing: .5px
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px)
      }

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

    /* SHARED */
    section,
    .dl-section,
    .qr-section {
      isolation: isolate
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: max-content;
      max-width: 100%;
      background: rgba(39, 183, 76, .12);
      border: 1px solid rgba(39, 183, 76, .28);
      border-radius: 50px;
      padding: 6px 18px;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      line-height: 1.2;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 18px;
      white-space: nowrap
    }

    .section-label::before {
      content: '●';
      font-size: .45rem;
      line-height: 1;
      letter-spacing: 0;
      animation: pulse 1.5s infinite
    }

    .section-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(1.7rem, 3.2vw, 2.7rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.12;
      letter-spacing: -.5px
    }

    /* ══════════════════════════
       DOWNLOAD  — bright product band
    ══════════════════════════ */
    .dl-section {
      background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
      position: relative;
      overflow: hidden;
      padding: 96px 60px
    }

    .dl-topbar {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(12, 25, 71, .14), transparent)
    }

    .dl-bg-fx {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 40% 55% at 8% 18%, rgba(39, 183, 76, .10) 0%, transparent 65%), radial-gradient(ellipse 35% 50% at 95% 80%, rgba(12, 25, 71, .08) 0%, transparent 65%);
      pointer-events: none
    }

    .dl-dots {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(12, 25, 71, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(12, 25, 71, .035) 1px, transparent 1px);
      background-size: 64px 64px;
      pointer-events: none;
      mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%)
    }

    .dl-inner {
      position: relative;
      z-index: 2;
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      min-height: 680px;
      align-items: stretch;
      background: rgba(255, 255, 255, .82);
      border: 1px solid rgba(216, 225, 235, .9);
      box-shadow: var(--shadow-lg);
      overflow: hidden
    }

    .dl-text {
      padding: 72px 64px 72px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center
    }

    .dl-text .section-title {
      color: var(--navy)
    }

    .dl-text .section-label {
      color: var(--green)
    }

    .dl-desc {
      font-size: .93rem;
      color: var(--muted);
      line-height: 1.78;
      max-width: 430px;
      margin-top: 14px
    }

    .feat-list {
      list-style: none;
      margin: 28px 0 38px;
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .feat-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #25345f;
      font-size: .875rem;
      font-weight: 600
    }

    .feat-check {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      background: rgba(39, 183, 76, .12);
      border: 1px solid rgba(39, 183, 76, .30);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .feat-check svg {
      width: 10px;
      height: 10px;
      stroke: var(--green);
      stroke-width: 2.5;
      fill: none
    }

    /* Store badges */
    .badges {
      display: flex;
      gap: 14px;
      flex-wrap: wrap
    }

    .badge-a {
      width: 175px;
      height: 52px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 7px 15px;
      border-radius: 9px;
      background: #000;
      border: 1px solid rgba(255, 255, 255, .2);
      color: var(--white);
      text-decoration: none;
      transition: transform .2s, filter .2s
    }

    .badge-a img {
      display: block;
      width: 26px;
      height: 26px;
      object-fit: contain;
      flex-shrink: 0
    }

    .badge-text {
      display: flex;
      flex-direction: column;
      line-height: 1
    }

    .badge-kicker {
      margin-bottom: 4px;
      font-size: 10px;
      font-weight: 500;
      opacity: .7
    }

    .badge-title {
      font-size: 17px;
      font-weight: 600;
      white-space: nowrap
    }

    .badge-a:hover {
      transform: translateY(-3px);
      filter: brightness(1.1)
    }

    .dl-visual {
      border-left: 1px solid rgba(12, 25, 71, .06);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 40px;
      position: relative;
      overflow: hidden
    }

    .dl-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(39, 183, 76, .12) 0%, transparent 70%);
      pointer-events: none
    }

    .phone-wrap {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    .video-thumb {
      position: relative;      
      aspect-ratio: 16 / 10;
      display: block;
      overflow: hidden;
      border: 0;
      border-radius: 18px;
      background: #05091e;
      box-shadow: 0 34px 70px rgba(12, 25, 71, .22);
      cursor: pointer
    }

    .video-thumb img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform .35s ease, filter .35s ease
    }

    .video-thumb-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, rgba(8, 15, 46, .12), rgba(8, 15, 46, .42));
      transition: background .25s ease
    }

    .video-play {
      width: 78px;
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--green);
      color: var(--white);
      box-shadow: 0 18px 38px rgba(39, 183, 76, .32);
      transition: transform .25s ease, background .25s ease
    }

    .video-play svg {
      width: 34px;
      height: 34px;
      fill: currentColor;
      margin-left: 4px
    }

    .video-caption {
      position: absolute;
      left: 22px;
      bottom: 20px;
      z-index: 1;
      color: var(--white);
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      text-shadow: 0 2px 16px rgba(0, 0, 0, .42)
    }

    .video-thumb:hover img,
    .video-thumb:focus-visible img {
      transform: scale(1.04);
      filter: brightness(.9)
    }

    .video-thumb:hover .video-play,
    .video-thumb:focus-visible .video-play {
      transform: scale(1.08);
      background: var(--green-light)
    }

    .video-thumb:focus-visible {
      outline: 3px solid rgba(39, 183, 76, .5);
      outline-offset: 5px
    }

    .video-modal {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 28px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .25s ease, visibility .25s ease
    }

    .video-modal.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto
    }

    .video-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(5, 9, 30, .78);
      backdrop-filter: blur(8px)
    }

    .video-modal-card {
      position: relative;
      z-index: 1;
      width: min(100%, 940px);
      border-radius: 16px;
      background: #05091e;
      box-shadow: 0 30px 90px rgba(0, 0, 0, .42)
    }

    .video-modal-close {
      position: absolute;
      top: -18px;
      right: -18px;
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 50%;
      background: var(--white);
      color: var(--navy);
      font-size: 1.7rem;
      line-height: 1;
      cursor: pointer;
      box-shadow: 0 14px 34px rgba(0, 0, 0, .24)
    }

    .video-modal-close:hover,
    .video-modal-close:focus-visible {
      background: var(--green);
      color: var(--white);
      outline: none
    }

    .video-modal-frame {
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-radius: inherit;
      background: #000
    }

    .video-modal-frame iframe {
      width: 100%;
      height: 100%;
      display: block;
      border: 0
    }

    .fcrd {
      position: absolute;
      backdrop-filter: blur(14px);
      border-radius: 14px;
      padding: 11px 16px;
      white-space: nowrap;
      background: rgba(255, 255, 255, .09);
      border: 1px solid rgba(255, 255, 255, .13)
    }

    .fcrd.tr {
      top: 60px;
      right: -24px
    }

    .fcrd.bl {
      bottom: 60px;
      left: -36px
    }

    .fcrd-tag {
      font-size: .57rem;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 3px
    }

    .fcrd-val {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .98rem;
      font-weight: 700;
      color: var(--white)
    }

    .fcrd-sub {
      font-size: .63rem;
      color: rgba(255, 255, 255, .48);
      margin-top: 2px
    }

    /* ══════════════════════════
       ABOUT  — deep trust band
    ══════════════════════════ */
    .about-section {
      background: linear-gradient(155deg, #08102e 0%, #111f57 58%, #0a1233 100%);
      padding: 104px 60px;
      position: relative;
      overflow: hidden
    }

    .about-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
      background-size: 72px 72px;
      pointer-events: none
    }

    .about-section::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(39, 183, 76, .35), transparent);
      pointer-events: none
    }

    .about-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px
    }

    .acard {
      background: rgba(255, 255, 255, .96);
      border: 1px solid rgba(255, 255, 255, .22);
      border-radius: var(--radius);
      padding: 26px 22px;
      box-shadow: 0 24px 52px rgba(0, 0, 0, .20);
      transition: transform .25s, box-shadow .25s;
      position: relative;
      overflow: hidden
    }

    .acard::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      border-radius: var(--radius) var(--radius) 0 0
    }

    .acard.c1::after {
      background: linear-gradient(90deg, var(--green), var(--green-light))
    }

    .acard.c2::after {
      background: linear-gradient(90deg, #3b82f6, #60a5fa)
    }

    .acard.c3::after {
      background: linear-gradient(90deg, #f59e0b, #fbbf24)
    }

    .acard.c4::after {
      background: linear-gradient(90deg, #8b5cf6, #a78bfa)
    }

    .acard:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 48px rgba(12, 25, 71, .14)
    }

    .acard:nth-child(2) {
      margin-top: 24px
    }

    .acard-icon {
      font-size: 1.6rem;
      margin-bottom: 14px;
      line-height: 1
    }

    .acard h4 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .95rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px
    }

    .acard p {
      font-size: .78rem;
      color: var(--muted);
      line-height: 1.65
    }

    .about-inner .section-title {
      color: var(--white)
    }

    .about-desc {
      font-size: .93rem;
      color: rgba(255, 255, 255, .62);
      line-height: 1.78;
      margin-top: 14px
    }

    .about-numbers {
      display: flex;
      margin-top: 32px;
      padding-top: 28px;
      border-top: 1px solid rgba(255, 255, 255, .12)
    }

    .an-item {
      flex: 1;
      text-align: center
    }

    .an-item+.an-item {
      border-left: 1px solid rgba(255, 255, 255, .12)
    }

    .an-num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--green)
    }

    .an-label {
      font-size: .72rem;
      color: rgba(255, 255, 255, .46);
      margin-top: 3px
    }

    /* ══════════════════════════
       QR  — light install band
    ══════════════════════════ */
    .qr-section {
      background: linear-gradient(180deg, var(--mint) 0%, #ffffff 100%);
      position: relative;
      overflow: hidden;
      padding: 96px 60px
    }

    .qr-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 45% 60% at 0% 50%, rgba(39, 183, 76, .12) 0%, transparent 62%), radial-gradient(ellipse 45% 55% at 100% 35%, rgba(12, 25, 71, .08) 0%, transparent 62%);
      pointer-events: none
    }

    .qr-inner {
      position: relative;
      z-index: 2;
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      min-height: 480px;
      align-items: stretch;
      background: rgba(255, 255, 255, .72);
      border: 1px solid rgba(216, 225, 235, .86);
      box-shadow: var(--shadow);
      overflow: hidden
    }

    .qr-visual {
      border-right: 1px solid rgba(12, 25, 71, .08);
      background: linear-gradient(145deg, #ffffff 0%, #f0f6fb 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px 60px
    }

    .qr-card {
      background: var(--white);
      border-radius: 20px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 28px 60px rgba(12, 25, 71, .18);
      max-width: 240px;
      width: 100%;
      border: 1px solid var(--line)
    }

    .qrc-logo {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--navy);
      margin-bottom: 18px
    }

    .qrc-logo span {
      color: var(--green)
    }

    .qrc-pixels {
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: 3px;
      margin-bottom: 18px
    }
    .qrc-pixels img{
      max-width: 180px;
    }

    .qrc-pixels b {
      display: block;
      height: 20px;
      border-radius: 3px;
      background: var(--navy-deep);
      font-weight: normal
    }

    .qrc-pixels b:nth-child(3n) {
      opacity: .12
    }

    .qrc-pixels b:nth-child(5n) {
      opacity: .45
    }

    .qrc-pixels b:nth-child(7n) {
      opacity: .82
    }

    .qrc-pixels b:nth-child(2n) {
      opacity: .28
    }

    .qrc-pixels b:nth-child(11n) {
      opacity: 1
    }

    .qrc-hint {
      font-size: .74rem;
      color: var(--muted);
      font-weight: 500;
      margin-bottom: 10px
    }

    .qrc-tags {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px
    }

    .qrc-tags span {
      font-size: .65rem;
      color: var(--muted);
      background: var(--ice);
      padding: 3px 10px;
      border-radius: 50px
    }

    .qr-text {
      padding: 80px 60px 80px 64px;
      display: flex;
      flex-direction: column;
      justify-content: center
    }

    .qr-text .section-title {
      color: var(--navy)
    }

    .qr-text .section-label {
      color: var(--green)
    }

    .qr-desc {
      font-size: .92rem;
      color: var(--muted);
      line-height: 1.78;
      max-width: 420px;
      margin-top: 14px
    }

    .qr-steps {
      list-style: none;
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 18px
    }

    .qr-steps li {
      display: flex;
      align-items: flex-start;
      gap: 16px
    }

    .snum {
      width: 30px;
      height: 30px;
      flex-shrink: 0;
      border-radius: 50%;
      background: rgba(39, 183, 76, .14);
      border: 1px solid rgba(39, 183, 76, .28);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Grotesk', sans-serif;
      font-size: .76rem;
      font-weight: 700;
      color: var(--green)
    }

    .stxt {
      font-size: .86rem;
      color: #415070;
      line-height: 1.65;
      padding-top: 5px;
      font-weight: 500
    }

    /* SCREENSHOTS */
    .screenshots-section {
      position: relative;
      overflow: hidden;
      text-align: center;
      padding: 100px 0;
      background: var(--navy-deep)
    }

    .screenshots-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--green), var(--green-light), var(--green), transparent)
    }

    .screenshots-section::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--green), var(--green-light), var(--green), transparent)
    }

    .ss-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(39, 183, 76, .14) 0%, transparent 55%), linear-gradient(160deg, #080f2e 0%, #0f1c52 55%, #060d26 100%);
      pointer-events: none
    }

    .ss-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
      background-size: 64px 64px;
      pointer-events: none
    }

    .ss-content {
      position: relative;
      z-index: 2
    }

    .ss-head {
      padding: 0 60px;
      margin-bottom: 52px
    }

    .ss-head .section-title {
      color: var(--white)
    }

    .ss-head p {
      color: rgba(255, 255, 255, .45);
      margin: 12px auto 0;
      max-width: 480px;
      font-size: .92rem;
      line-height: 1.72
    }

    .swiper {
      overflow: hidden;
      padding: 16px 0 36px !important
    }

    .swiper-wrapper {
      align-items: flex-end
    }

    .swiper-slide {
      width: 200px;
      flex-shrink: 0
    }

    .slide-img {
      width: 200px;
      display: block;
      border-radius: 22px;
      filter: drop-shadow(0 20px 36px rgba(0, 0, 0, .55));
      transition: transform .35s
    }

    .swiper-slide-active .slide-img,
    .swiper-slide:hover .slide-img {
      transform: translateY(-10px) scale(1.04)
    }

    .slide-label {
      text-align: center;
      margin-top: 14px;
      font-family: 'Space Grotesk', sans-serif;
      font-size: .72rem;
      color: rgba(255, 255, 255, .4);
      font-weight: 600;
      letter-spacing: .8px;
      text-transform: uppercase
    }

    .slider-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 28px;
      position: relative;
      z-index: 2
    }

    .slider-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid rgba(255, 255, 255, .18);
      background: rgba(255, 255, 255, .06);
      color: var(--white);
      font-size: 1rem;
      cursor: pointer;
      transition: all .2s;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .slider-btn:hover {
      background: var(--green);
      border-color: var(--green);
      color: var(--navy)
    }

    .swiper-pagination {
      position: static !important;
      width: auto !important;
      transform: none !important;
      display: flex;
      align-items: center;
      gap: 6px
    }

    .swiper-pagination-bullet {
      width: 7px;
      height: 7px;
      background: rgba(255, 255, 255, .25);
      opacity: 1;
      transition: all .25s;
      margin: 0 !important
    }

    .swiper-pagination-bullet-active {
      background: var(--green);
      width: 22px;
      border-radius: 4px
    }

    /* FOOTER */
    footer {
      background: #05091e;
      color: rgba(255, 255, 255, .55)
    }

    .footer-top {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      padding: 72px 60px 52px
    }

    .footer-brand .nav-logo {
      font-size: 1.4rem;
      margin-bottom: 14px;
      display: inline-flex
    }

    .footer-brand p {
      font-size: .83rem;
      line-height: 1.75;
      max-width: 270px
    }

    .footer-col h5 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .8rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: .5px;
      margin-bottom: 16px
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px
    }

    .footer-col ul a {
      color: rgba(255, 255, 255, .45);
      text-decoration: none;
      font-size: .83rem;
      transition: color .2s
    }

    .footer-col ul a:hover {
      color: var(--green)
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .05);
      padding: 20px 60px;
      max-width: 1160px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .75rem
    }

    /* RESPONSIVE */
    @media(max-width:1024px) {
      nav {
        padding: 14px 32px
      }

      .dl-section,
      .qr-section {
        padding: 80px 32px
      }

      .dl-text {
        padding: 64px 40px 64px 32px
      }

      .dl-visual {
        padding: 48px 32px
      }

      .about-section {
        padding: 80px 32px
      }

      .qr-visual {
        padding: 60px 40px
      }

      .qr-text {
        padding: 60px 40px 60px 48px
      }

      .footer-top {
        padding: 56px 32px 40px
      }

      .footer-bottom {
        padding: 18px 32px
      }
    }

    @media(max-width:768px) {
      nav {
        padding: 12px 20px
      }

      .nav-links,
      .nav-cta {
        display: none
      }

      .hamburger {
        display: flex
      }

      .banner {
        padding-top: 60px
      }

      .stat-item {
        padding: 0 14px
      }

      .dl-section,
      .qr-section {
        padding: 64px 20px
      }

      .dl-inner,
      .about-inner,
      .qr-inner {
        grid-template-columns: 1fr
      }

      .dl-text {
        padding: 56px 20px 40px
      }

      .dl-visual {
        border-left: none;
        border-bottom: 1px solid rgba(12, 25, 71, .08);
        padding: 40px 20px;
        order: -1
      }

      .phone-wrap {
        width: min(100%, 320px)
      }

      .video-thumb {
        aspect-ratio: 16 / 11;
        border-radius: 14px
      }

      .video-play {
        width: 62px;
        height: 62px
      }

      .video-play svg {
        width: 28px;
        height: 28px
      }

      .video-caption {
        left: 16px;
        bottom: 15px;
        font-size: .9rem
      }

      .video-modal {
        padding: 18px
      }

      .video-modal-close {
        top: -14px;
        right: -8px;
        width: 38px;
        height: 38px;
        font-size: 1.45rem
      }

      .fcrd {
        display: none
      }

      .about-section {
        padding: 64px 20px
      }

      .acard:nth-child(2) {
        margin-top: 0
      }

      .qr-visual {
        border-right: none;
        border-bottom: 1px solid rgba(12, 25, 71, .08);
        padding: 52px 20px
      }

      .qr-text {
        padding: 48px 20px 56px
      }

      .screenshots-section {
        padding: 64px 0
      }

      .ss-head {
        padding: 0 20px;
        margin-bottom: 36px
      }

      .swiper-slide {
        width: 164px
      }

      .slide-img {
        width: 164px
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 44px 20px 28px
      }

      .footer-brand {
        grid-column: 1/-1
      }

      .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 16px 20px
      }
    }

    @media(max-width:600px) {
      .banner {
        min-height: auto;
        padding-top: 86px;
        padding-bottom: 72px
      }

      .banner-content {
        max-width: 340px;
        padding: 48px 16px 32px;
        overflow: hidden
      }

      .banner-title {
        font-size: clamp(2rem, 9vw, 2.35rem);
        line-height: 1.14;
        letter-spacing: 0
      }

      .banner-title br {
        display: none
      }

      .banner-desc {
        max-width: 310px;
        font-size: .88rem
      }

      .banner-btns {
        flex-direction: column;
        align-items: center
      }

      .btn-primary,
      .btn-outline {
        width: 100%;
        max-width: 280px;
        text-align: center
      }

      .banner-stats {
        margin-top: 38px;
        padding-top: 28px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px 0
      }

      .stat-item {
        padding: 0 10px
      }

      .stat-item:nth-child(odd) {
        border-left: none
      }

      .stat-item:nth-child(even) {
        border-left: 1px solid rgba(255, 255, 255, .07)
      }

      .stat-item+.stat-item {
        border-top: none;
        margin-top: 0;
        padding-top: 0
      }

      .dl-section,
      .qr-section {
        padding: 52px 14px
      }

      .dl-inner,
      .qr-inner {
        max-width: 362px;
        margin-left: auto;
        margin-right: auto
      }

      .section-label {
        font-size: .68rem;
        letter-spacing: 1px;
        padding: 6px 14px;
        white-space: normal
      }
    }

    @media(max-width:480px) {

      .dl-inner,
      .qr-inner {
        box-shadow: 0 18px 42px rgba(12, 25, 71, .12)
      }

      .about-grid {
        grid-template-columns: 1fr
      }

      .badges {
        flex-direction: column;
        align-items: flex-start
      }

      .badge-a {
        max-width: 100%;
      }

      .footer-top {
        grid-template-columns: 1fr
      }
    }
