  :root {
    --bg: #08080e;
    --bg1: rgba(14, 14, 22, 0.95);
    --sf: rgba(20, 20, 32, 0.72);
    --sf2: rgba(26, 26, 40, 0.82);
    --bd: rgba(255, 255, 255, 0.065);
    --bdh: rgba(255, 255, 255, 0.13);
    --acc: #7b6fff;
    --acc2: #9b7fff;
    --teal: #4ecdc4;
    --red: #ff6b6b;
    --gold: #ffd060;
    --tx: rgba(255, 255, 255, 0.92);
    --tx2: rgba(255, 255, 255, 0.5);
    --tx3: rgba(255, 255, 255, 0.26);
    --r: 16px;
    --r2: 24px;
    --r3: 40px;
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    background: var(--bg);
    color: var(--tx);
    font-family:
      -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
  }
  #aurora {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .z1 {
    position: relative;
    z-index: 1;
  }
  .wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .sec {
    padding: 100px 0;
    position: relative;
    z-index: 1;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(8, 8, 14, 0.8);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border-bottom: 1px solid var(--bd);
  }
  .nav-i {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 60px;
    gap: 24px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.03em;
  }
  .logo-box {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--acc), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    color: #fff;
  }
  .nav-links {
    display: flex;
    gap: 26px;
    list-style: none;
    margin-left: auto;
  }
  .nav-links a {
    font-size: 13.5px;
    color: var(--tx2);
    transition: color 0.2s;
  }
  .nav-links a:hover {
    color: var(--tx);
  }
  .nav-dl {
    background: var(--acc);
    color: #fff;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition:
      opacity 0.2s,
      transform 0.2s;
    white-space: nowrap;
  }
  .nav-dl:hover {
    opacity: 0.85;
    transform: translateY(-1px);
  }

  /* HERO */
  #hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 60px;
    overflow: hidden;
    position: relative;
  }
  .ticker-bg {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.055;
  }
  .t-row {
    display: flex;
    gap: 14px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .t-row.r1 {
    animation: tkL 48s linear infinite;
  }
  .t-row.r2 {
    animation: tkR 62s linear infinite;
  }
  .t-row.r3 {
    animation: tkL 40s linear infinite;
  }
  .t-row .dup {
    display: flex;
    gap: 14px;
  }
  @keyframes tkL {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  @keyframes tkR {
    from {
      transform: translateX(-50%);
    }
    to {
      transform: translateX(0);
    }
  }
  .tc {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(22, 22, 36, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 12.5px;
    white-space: nowrap;
  }
  .tc-ico {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
  }
  .tc-name {
    font-weight: 600;
  }
  .tc-bank {
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
  }
  .tc-amt {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    margin-left: 6px;
  }
  .tc-d {
    color: #ff6b6b;
  }
  .tc-c {
    color: #4ecdc4;
  }

  .hero-c {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px 100px;
  }
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(123, 111, 255, 0.12);
    border: 1px solid rgba(123, 111, 255, 0.28);
    color: var(--acc);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--acc);
    animation: blink 2s infinite;
  }
  @keyframes blink {
    0%,
    100% {
      opacity: 1;
    }
    50% {
      opacity: 0.25;
    }
  }
  h1.hero-h {
    font-size: clamp(44px, 8vw, 84px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1;
    text-wrap: balance;
    margin-bottom: 24px;
  }
  .h-acc {
    color: var(--acc);
  }
  .h-teal {
    color: var(--teal);
  }
  .h-gold {
    color: var(--gold);
  }
  .hero-sub {
    font-size: 18px;
    color: var(--tx2);
    line-height: 1.68;
    max-width: 540px;
    margin: 0 auto 44px;
    text-wrap: balance;
  }
  .ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .btn-p {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--acc);
    color: #fff;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: all 0.25s;
    box-shadow: 0 0 50px rgba(123, 111, 255, 0.3);
  }
  .btn-p:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 70px rgba(123, 111, 255, 0.45);
  }
  .btn-g {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--tx2);
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid var(--bd);
    background: var(--sf);
    backdrop-filter: blur(12px);
    transition: all 0.2s;
  }
  .btn-g:hover {
    color: var(--tx);
    border-color: var(--bdh);
  }
  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: var(--tx3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollHint 2.5s ease-in-out infinite;
  }
  @keyframes scrollHint {
    0%,
    100% {
      transform: translateX(-50%) translateY(0);
      opacity: 0.4;
    }
    50% {
      transform: translateX(-50%) translateY(6px);
      opacity: 0.9;
    }
  }

  /* STATS */
  .stats-bar {
    border-top: 1px solid var(--bd);
    border-bottom: 1px solid var(--bd);
    background: rgba(10, 10, 18, 0.6);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
  }
  .stats-grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .stat {
    padding: 30px 20px;
    text-align: center;
    border-right: 1px solid var(--bd);
  }
  .stat:last-child {
    border-right: none;
  }
  .stat-n {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.04em;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    background: linear-gradient(135deg, var(--acc), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .stat-l {
    font-size: 12.5px;
    color: var(--tx2);
    margin-top: 5px;
  }

  /* SECTION HEADERS */
  .ey {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--acc);
    margin-bottom: 12px;
  }
  .sh {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-wrap: balance;
    margin-bottom: 14px;
  }
  .ss {
    font-size: 17px;
    color: var(--tx2);
    line-height: 1.65;
    max-width: 560px;
    text-wrap: balance;
  }

  /* FEATURES */
  .feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 56px;
  }
  .fcard {
    background: var(--sf);
    border: 1px solid var(--bd);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    transition:
      border-color 0.25s,
      transform 0.25s,
      box-shadow 0.25s;
    opacity: 0;
    transform: translateY(20px);
  }
  .fcard.vis {
    opacity: 1;
    transform: translateY(0);
  }
  .fcard:hover {
    border-color: var(--bdh);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }
  .fcard-ico {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
  }
  .fcard-t {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .fcard-b {
    font-size: 14px;
    color: var(--tx2);
    line-height: 1.62;
  }

  /* HOW IT WORKS */
  #how {
    background: rgba(8, 8, 16, 0.55);
  }
  .how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-top: 56px;
  }
  .steps {
    display: flex;
    flex-direction: column;
  }
  .step {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--bd);
    cursor: pointer;
    transition: opacity 0.25s;
  }
  .step:last-child {
    border-bottom: none;
  }
  .step:not(.act) {
    opacity: 0.45;
  }
  .step.act .s-dot {
    background: var(--acc);
    box-shadow: 0 0 24px rgba(123, 111, 255, 0.5);
    border-color: rgba(123, 111, 255, 0.4);
  }
  .step.act .s-t {
    color: var(--tx);
  }
  .s-dot {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--sf2);
    border: 1px solid var(--bd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
    transition: all 0.3s;
  }
  .s-cnt {
    flex: 1;
    padding-top: 9px;
  }
  .s-t {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 5px;
    color: var(--tx2);
    transition: color 0.3s;
  }
  .s-b {
    font-size: 13.5px;
    color: var(--tx2);
    line-height: 1.58;
  }

  /* PHONE */
  .phone-wrap {
    display: flex;
    justify-content: center;
    position: relative;
  }
  .phone {
    width: 268px;
    height: 560px;
    border-radius: 44px;
    background: #10101c;
    border: 7px solid #22223a;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 40px 80px rgba(0, 0, 0, 0.75),
      inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    animation: float 4s ease-in-out infinite;
  }
  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  .phone-sb {
    display: flex;
    justify-content: space-between;
    padding: 8px 20px 0;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    z-index: 5;
  }
  .phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: #10101c;
    border-radius: 0 0 18px 18px;
    z-index: 10;
  }

  /* phone screens */
  .pscr {
    position: absolute;
    inset: 0;
    background: #0c0c12;
    padding: 36px 14px 14px;
    opacity: 0;
    transition: opacity 0.4s;
    overflow: hidden;
    border-radius: 37px;
  }
  .pscr.pact {
    opacity: 1;
  }
  .ph {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
  }
  .ph-t {
    font-size: 15px;
    font-weight: 700;
  }
  .ph-ic {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(123, 111, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }
  .p-sum {
    background: linear-gradient(
      135deg,
      rgba(123, 111, 255, 0.18),
      rgba(78, 205, 196, 0.12)
    );
    border: 1px solid rgba(123, 111, 255, 0.18);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 14px;
  }
  .p-mo {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .p-row {
    display: flex;
    gap: 20px;
  }
  .p-amt-l {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
  }
  .p-amt-v {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
  }
  .dv {
    color: #ff6b6b;
  }
  .cv {
    color: #4ecdc4;
  }
  .p-sec {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .ptx {
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(20, 20, 32, 0.85);
    border-radius: 11px;
    padding: 9px 11px;
    margin-bottom: 5px;
  }
  .ptx-i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
  }
  .ptx-n {
    font-size: 11.5px;
    font-weight: 600;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .ptx-b {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.35);
  }
  .ptx-a {
    font-size: 11.5px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
  }

  /* sms notification overlay */
  .sms-notif {
    position: absolute;
    top: -90px;
    left: 12px;
    right: 12px;
    background: rgba(18, 18, 30, 0.97);
    border: 1px solid rgba(123, 111, 255, 0.35);
    border-radius: 14px;
    padding: 12px 13px;
    z-index: 30;
    backdrop-filter: blur(12px);
    animation: notifIn 6s ease-in-out infinite;
    animation-delay: 1.5s;
  }
  @keyframes notifIn {
    0% {
      top: -90px;
      opacity: 0;
    }
    12% {
      top: 34px;
      opacity: 1;
    }
    58% {
      top: 34px;
      opacity: 1;
    }
    70% {
      top: -90px;
      opacity: 0;
    }
    100% {
      top: -90px;
      opacity: 0;
    }
  }
  .sn-hd {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 4px;
  }
  .sn-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: rgba(123, 111, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
  }
  .sn-b {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.45;
  }
  .sn-b strong {
    color: #ff6b6b;
  }

  /* txn screen */
  .psrch {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 20, 32, 0.9);
    border-radius: 10px;
    padding: 8px 12px;
    margin-bottom: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
  }
  .pfilter {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
  }
  .pf {
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 7px;
    background: rgba(20, 20, 32, 0.8);
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
  }
  .pf.pfact {
    background: rgba(123, 111, 255, 0.2);
    color: var(--acc);
  }
  .pg {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 8px 0 5px;
    font-weight: 600;
  }

  /* settings screen */
  .pset-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .pset-row:last-child {
    border-bottom: none;
  }
  .pset-l {
    font-size: 12px;
    font-weight: 500;
  }
  .pset-v {
    font-size: 10px;
    color: var(--teal);
    font-weight: 600;
  }
  .ptoggle {
    width: 30px;
    height: 17px;
    border-radius: 9px;
    background: var(--acc);
    position: relative;
  }
  .ptoggle::after {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    top: 2px;
    right: 2px;
  }

  /* BANKS marquee */
  #banks {
    padding: 70px 0 80px;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .mq-track {
    display: flex;
    gap: 10px;
    animation: tkL 32s linear infinite;
  }
  .mq-track.r2 {
    animation: tkR 40s linear infinite;
    margin-top: 10px;
  }
  .bpill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--sf);
    border: 1px solid var(--bd);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--tx2);
    white-space: nowrap;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
  }
  .bp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--acc);
  }

  /* Banks hero card */
  .bhc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--bdh);
    background: var(--sf2);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    margin: 0 0 56px;
    min-height: 320px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  }
  .bhc-vis {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
      135deg,
      rgba(14, 12, 28, 1) 0%,
      rgba(20, 18, 40, 1) 100%
    );
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }
  .bhc-vis::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(
      circle,
      rgba(123, 111, 255, 0.22) 0%,
      transparent 70%
    );
    pointer-events: none;
  }
  .bhc-vis::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(
      circle,
      rgba(78, 205, 196, 0.15) 0%,
      transparent 70%
    );
    pointer-events: none;
  }
  .bank-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    position: relative;
    z-index: 1;
  }
  .btile {
    border-radius: 14px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition:
      transform 0.2s,
      border-color 0.2s;
  }
  .btile:hover {
    transform: scale(1.06);
    border-color: rgba(255, 255, 255, 0.18);
  }
  .btile-abbr {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #fff;
    line-height: 1;
  }
  .btile-type {
    font-size: 8.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .bhc-content {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--bd);
  }
  .bhc-stat-row {
    display: flex;
    gap: 28px;
    margin-top: 28px;
  }
  .bhc-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .bhc-stat-n {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--acc), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
  }
  .bhc-stat-l {
    font-size: 11px;
    color: var(--tx2);
    font-weight: 500;
  }
  .bhc-badge-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 22px;
  }
  .bhc-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(123, 111, 255, 0.1);
    border: 1px solid rgba(123, 111, 255, 0.22);
    color: rgba(255, 255, 255, 0.75);
    border-radius: 8px;
    padding: 5px 11px;
    font-size: 11px;
    font-weight: 600;
  }
  .bhc-badge.tl {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.22);
  }
  .bhc-badge.gd {
    background: rgba(255, 208, 96, 0.08);
    border-color: rgba(255, 208, 96, 0.2);
    color: var(--gold);
  }

  /* CATEGORIES */
  .cats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 52px;
  }
  .ccat {
    background: var(--sf);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 24px 12px;
    text-align: center;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
  }
  .ccat:hover {
    border-color: var(--bdh);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  }
  .ccat-ico {
    font-size: 36px;
    margin-bottom: 10px;
    line-height: 1;
  }
  .ccat-n {
    font-size: 12px;
    font-weight: 600;
    color: var(--tx2);
  }

  /* DEMO section */
  #demo-sec {
    background: rgba(8, 8, 16, 0.5);
  }
  .demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-top: 56px;
  }
  .demo-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .dstep {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
  }
  .dstep.dact {
    background: var(--sf);
    border-color: var(--bdh);
  }
  .dstep-n {
    font-size: 12px;
    font-weight: 700;
    color: var(--acc);
    width: 28px;
    height: 28px;
    background: rgba(123, 111, 255, 0.13);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .dstep h4 {
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .dstep p {
    font-size: 13px;
    color: var(--tx2);
    line-height: 1.52;
  }

  /* PRIVACY */
  #privacy {
    background: rgba(8, 8, 16, 0.7);
  }
  .prv {
    max-width: 720px;
    margin: 0 auto;
  }
  .prv h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 32px 0 10px;
    color: var(--tx);
  }
  .prv h3:first-child {
    margin-top: 0;
  }
  .prv p {
    font-size: 15px;
    color: var(--tx2);
    line-height: 1.72;
    margin-bottom: 12px;
  }
  .prv ul {
    list-style: none;
    margin-bottom: 14px;
  }
  .prv li {
    font-size: 15px;
    color: var(--tx2);
    line-height: 1.7;
    padding-left: 18px;
    position: relative;
    margin-bottom: 5px;
  }
  .prv li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--acc);
    font-weight: 700;
  }
  .prv-date {
    font-size: 12.5px;
    color: var(--tx3);
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid var(--bd);
  }
  .prv-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.25);
    color: var(--teal);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
  }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--bd);
    background: rgba(8, 8, 14, 0.98);
    padding: 40px 0;
    position: relative;
    z-index: 1;
  }
  .ft-i {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .ft-logo {
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.02em;
  }
  .ft-logo-b {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--acc), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    font-weight: 900;
  }
  .ft-links {
    display: flex;
    gap: 22px;
    list-style: none;
  }
  .ft-links a {
    font-size: 13px;
    color: var(--tx2);
    transition: color 0.2s;
  }
  .ft-links a:hover {
    color: var(--tx);
  }
  .ft-copy {
    font-size: 12px;
    color: var(--tx3);
  }

  /* REVEAL */
  .rev {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 0.6s ease,
      transform 0.6s ease;
  }
  .rev.vis {
    opacity: 1;
    transform: none;
  }
  .d1 {
    transition-delay: 0.08s;
  }
  .d2 {
    transition-delay: 0.17s;
  }
  .d3 {
    transition-delay: 0.26s;
  }
  .d4 {
    transition-delay: 0.34s;
  }
  .d5 {
    transition-delay: 0.43s;
  }
  .d6 {
    transition-delay: 0.52s;
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    .t-row,
    .phone,
    .sms-notif {
      animation: none !important;
    }
    .rev {
      opacity: 1;
      transform: none;
    }
  }
  @media (max-width: 920px) {
    .feat-grid {
      grid-template-columns: 1fr 1fr;
    }
    .how-grid,
    .demo-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .how-grid .phone-wrap,
    .demo-grid .phone-wrap {
      display: none;
    }
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .stat:nth-child(2) {
      border-right: none;
    }
    .cats-grid {
      grid-template-columns: repeat(5, 1fr);
    }
    .bhc {
      grid-template-columns: 1fr;
    }
    .bhc-content {
      border-left: none;
      border-top: 1px solid var(--bd);
      padding: 32px 28px;
    }
    .bhc-vis {
      min-height: 220px;
      padding: 28px 24px;
    }
  }
  @media (max-width: 600px) {
    .feat-grid {
      grid-template-columns: 1fr;
    }
    .cats-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    .nav-links {
      display: none;
    }
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .stat:nth-child(2) {
      border-right: none;
    }
    h1.hero-h {
      font-size: 38px;
      letter-spacing: -0.03em;
    }
    .hero-sub {
      font-size: 16px;
    }
    .bhc {
      grid-template-columns: 1fr;
      border-radius: 20px;
    }
    .bhc-content {
      padding: 24px 20px;
    }
    .bhc-vis {
      padding: 24px 16px;
    }
    .bank-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
    }
    .btile {
      padding: 10px 6px;
      border-radius: 11px;
    }
    .btile-abbr {
      font-size: 9.5px;
    }
    .btile-type {
      font-size: 7.5px;
    }
    .bhc-stat-row {
      gap: 16px;
    }
    .bhc-stat-n {
      font-size: 22px;
    }
    .bhc-badge-row {
      gap: 6px;
    }
    .bhc-badge {
      font-size: 10px;
      padding: 4px 9px;
    }
  }

/* ── Privacy section styles ── */
  /* ── Privacy section styles ── */
  .pv-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
  }
  .pv-header .sh {
    margin-bottom: 14px;
  }
  .pv-intro {
    font-size: 17px;
    color: var(--tx2);
    line-height: 1.7;
    margin-top: 14px;
  }

  /* Canvas visual */
  .pv-vis-wrap {
    background: rgba(12, 12, 22, 0.8);
    border: 1px solid var(--bd);
    border-radius: 24px;
    overflow: hidden;
    padding: 28px 20px;
    margin-bottom: 52px;
    position: relative;
  }
  .pv-vis-inner {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .pv-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 130px;
    flex-shrink: 0;
  }
  .pv-side.right {
    align-items: flex-end;
  }
  .pv-src-tag {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    color: var(--tx2);
    padding: 6px 10px;
    background: rgba(123, 111, 255, 0.07);
    border: 1px solid rgba(123, 111, 255, 0.12);
    border-radius: 8px;
    transition: all 0.35s;
    cursor: default;
  }
  .pv-src-tag.lit {
    color: var(--acc);
    background: rgba(123, 111, 255, 0.16);
    border-color: rgba(123, 111, 255, 0.32);
    box-shadow: 0 0 14px rgba(123, 111, 255, 0.15);
  }
  .pv-blk-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 107, 107, 0.55);
    padding: 6px 10px;
    background: rgba(255, 107, 107, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.1);
    border-radius: 8px;
  }
  .pv-blk-x {
    font-size: 9px;
    font-weight: 800;
    color: rgba(255, 107, 107, 0.85);
    background: rgba(255, 107, 107, 0.15);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  #privCanvas {
    flex: 1;
    min-width: 0;
    display: block;
    height: 220px;
  }

  /* Shield tooltip */
  .pv-tip {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 600;
    color: var(--teal);
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.22);
    border-radius: 100px;
    padding: 4px 14px;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    white-space: nowrap;
  }
  .pv-vis-wrap:hover .pv-tip {
    opacity: 1;
  }

  /* 3 guarantee cards */
  .pv-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 48px;
  }
  .pvc {
    background: var(--sf);
    border: 1px solid var(--bd);
    border-radius: 20px;
    padding: 26px;
    position: relative;
    overflow: hidden;
    transition:
      border-color 0.25s,
      transform 0.25s;
    backdrop-filter: blur(16px);
    cursor: default;
  }
  .pvc:hover {
    border-color: var(--bdh);
    transform: translateY(-4px);
  }
  .pvc-aura {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    filter: blur(35px);
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .pvc:hover .pvc-aura {
    opacity: 1.4;
  }
  .pvc-ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
  }
  .pvc-t {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .pvc-b {
    font-size: 13.5px;
    color: var(--tx2);
    line-height: 1.62;
  }

  /* Counter strip inside card */
  .pvc-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--teal);
  }
  .pvc-count-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    animation: blink 1.8s infinite;
  }

  /* Permissions table */
  .pv-perms {
    background: rgba(12, 12, 22, 0.65);
    border: 1px solid var(--bd);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 48px;
    backdrop-filter: blur(12px);
  }
  .pvp-head {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 14px;
    padding: 12px 22px;
    border-bottom: 1px solid var(--bd);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tx3);
  }
  .pvp-row {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 14px;
    padding: 14px 22px;
    border-bottom: 1px solid var(--bd);
    align-items: center;
    transition: background 0.2s;
    cursor: default;
  }
  .pvp-row:last-child {
    border-bottom: none;
  }
  .pvp-row:hover {
    background: rgba(123, 111, 255, 0.04);
  }
  .pvp-em {
    font-size: 17px;
    text-align: center;
  }
  .pvp-name {
    font-size: 12.5px;
    font-weight: 700;
    font-family: monospace;
    color: var(--acc);
    margin-bottom: 3px;
  }
  .pvp-desc {
    font-size: 12px;
    color: var(--tx2);
    line-height: 1.4;
  }
  .pvp-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--teal);
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 6px;
    padding: 4px 11px;
    white-space: nowrap;
  }
  .pvp-badge.warn {
    color: var(--gold);
    background: rgba(255, 208, 96, 0.08);
    border-color: rgba(255, 208, 96, 0.2);
  }

  /* Accordion */
  .pv-acc {
    border: 1px solid var(--bd);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 48px;
  }
  .pva-item {
  }
  .pva-item + .pva-item {
    border-top: 1px solid var(--bd);
  }
  .pva-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.015em;
    cursor: pointer;
    transition:
      color 0.2s,
      background 0.2s;
    user-select: none;
    gap: 12px;
  }
  .pva-hd:hover {
    background: rgba(123, 111, 255, 0.04);
    color: var(--acc);
  }
  .pva-ico {
    font-size: 18px;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
  }
  .pva-arr {
    font-size: 16px;
    color: var(--tx3);
    transition:
      transform 0.32s,
      color 0.2s;
    flex-shrink: 0;
    margin-left: auto;
  }
  .pva-item.open > .pva-hd .pva-arr {
    transform: rotate(90deg);
    color: var(--acc);
  }
  .pva-item.open > .pva-hd {
    color: var(--acc);
  }
  .pva-bd {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .pva-item.open .pva-bd {
    max-height: 600px;
  }
  .pva-inner {
    padding: 0 22px 20px 62px;
  }
  .pva-inner p {
    font-size: 14.5px;
    color: var(--tx2);
    line-height: 1.73;
    margin-bottom: 10px;
  }
  .pva-inner p:last-child {
    margin-bottom: 0;
  }
  .pva-inner ul {
    list-style: none;
    margin-bottom: 10px;
  }
  .pva-inner li {
    font-size: 14px;
    color: var(--tx2);
    padding-left: 16px;
    position: relative;
    margin-bottom: 5px;
    line-height: 1.6;
  }
  .pva-inner li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--acc);
    font-weight: 700;
  }
  .pva-inner code {
    background: rgba(123, 111, 255, 0.1);
    color: var(--acc);
    padding: 2px 7px;
    border-radius: 5px;
    font-size: 12.5px;
    font-family: monospace;
  }

  .prv-foot {
    text-align: center;
    font-size: 12px;
    color: var(--tx3);
    padding-top: 20px;
    border-top: 1px solid var(--bd);
  }

  @media (max-width: 700px) {
    .pv-vis-inner {
      flex-direction: column;
      gap: 12px;
    }
    .pv-side {
      flex-direction: row;
      width: 100%;
      flex-wrap: wrap;
      gap: 8px;
    }
    .pv-side.right {
      justify-content: flex-start;
    }
    .pv-src-tag,
    .pv-blk-tag {
      padding: 6px 12px;
      font-size: 12px;
    }
    #privCanvas {
      width: 100% !important;
      height: 200px !important;
    }
    .pv-cards {
      grid-template-columns: 1fr;
    }
    .pvp-head {
      display: none;
    }
    .pvp-row {
      grid-template-columns: 36px 1fr;
      gap: 10px;
    }
    .pvp-badge {
      display: none;
    }
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
