    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    :root {
      --bg-deep: #0a0f14;
      --bg: #0e1419;
      --bg-warm: #121a22;
      --bg-card: #16202b;
      --bg-surface: #1e2a38;
      --border: rgba(255, 255, 255, .05);
      --border-g: rgba(78, 175, 134, .18);
      --border-gd: rgba(212, 168, 83, .15);
      --tx: #e4eaf1;
      --tx2: #8d9bab;
      --tx3: #576778;
      --grn: #4eaf86;
      --grn-l: #6fc9a1;
      --grn-p: #8dd8b6;
      --grn-gw: rgba(78, 175, 134, .10);
      --gld: #d4a853;
      --gld-l: #e6c373;
      --gld-gw: rgba(212, 168, 83, .08);
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'Outfit', -apple-system, sans-serif;
      --mono: 'JetBrains Mono', monospace;
      --ease: cubic-bezier(.16, 1, .3, 1);
      --max: 1180px;
      --hh: 94px;
      --ticker-h: 36px;
      --ticker-progress: 0;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--hh)+8px);
      overflow-x: hidden
    }

    body {
      font-family: var(--sans);
      background: var(--bg-deep);
      color: var(--tx);
      line-height: 1.72;
      font-size: 17px;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden
    }

    /* Global dark scrollbars */
    html,
    body,
    .mnav,
    .compare__table-wrap,
    .chat-panel__body,
    .popup-form__box,
    .faq-modal,
    .faq-modal__box,
    .modal__box,
    .exit-popup__box {
      scrollbar-width: thin;
      scrollbar-color: rgba(111, 201, 161, .38) rgba(10, 15, 20, .92)
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar,
    .mnav::-webkit-scrollbar,
    .compare__table-wrap::-webkit-scrollbar,
    .chat-panel__body::-webkit-scrollbar,
    .popup-form__box::-webkit-scrollbar,
    .faq-modal::-webkit-scrollbar,
    .faq-modal__box::-webkit-scrollbar,
    .modal__box::-webkit-scrollbar,
    .exit-popup__box::-webkit-scrollbar {
      width: 10px;
      height: 10px
    }

    html::-webkit-scrollbar-track,
    body::-webkit-scrollbar-track,
    .mnav::-webkit-scrollbar-track,
    .compare__table-wrap::-webkit-scrollbar-track,
    .chat-panel__body::-webkit-scrollbar-track,
    .popup-form__box::-webkit-scrollbar-track,
    .faq-modal::-webkit-scrollbar-track,
    .faq-modal__box::-webkit-scrollbar-track,
    .modal__box::-webkit-scrollbar-track,
    .exit-popup__box::-webkit-scrollbar-track {
      background: rgba(10, 15, 20, .92)
    }

    html::-webkit-scrollbar-thumb,
    body::-webkit-scrollbar-thumb,
    .mnav::-webkit-scrollbar-thumb,
    .compare__table-wrap::-webkit-scrollbar-thumb,
    .chat-panel__body::-webkit-scrollbar-thumb,
    .popup-form__box::-webkit-scrollbar-thumb,
    .faq-modal::-webkit-scrollbar-thumb,
    .faq-modal__box::-webkit-scrollbar-thumb,
    .modal__box::-webkit-scrollbar-thumb,
    .exit-popup__box::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, rgba(111, 201, 161, .62), rgba(78, 175, 134, .45));
      border: 2px solid rgba(10, 15, 20, .92);
      border-radius: 999px
    }


    html::-webkit-scrollbar-corner,
    body::-webkit-scrollbar-corner,
    .mnav::-webkit-scrollbar-corner,
    .compare__table-wrap::-webkit-scrollbar-corner,
    .chat-panel__body::-webkit-scrollbar-corner,
    .popup-form__box::-webkit-scrollbar-corner,
    .faq-modal::-webkit-scrollbar-corner,
    .faq-modal__box::-webkit-scrollbar-corner,
    .modal__box::-webkit-scrollbar-corner,
    .exit-popup__box::-webkit-scrollbar-corner {
      background: rgba(10, 15, 20, .92)
    }

    img {
      max-width: 100%;
      display: block
    }

    a {
      color: inherit;
      text-decoration: none
    }

    button {
      cursor: pointer;
      border: none;
      background: none;
      font-family: inherit;
      color: inherit
    }

    ul {
      list-style: none
    }

    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 28px
    }

    /* Reduce initial layout/paint cost for below-the-fold sections */
    section:not(.hero) {
      content-visibility: auto;
      contain-intrinsic-size: 1px 900px;
    }

    /* Custom Cursor */
    .cur {
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      mix-blend-mode: difference
    }

    .cur__d {
      width: 8px;
      height: 8px;
      background: #fff;
      border-radius: 50%;
      position: absolute;
      top: -4px;
      left: -4px;
      transition: transform .1s
    }

    .cur__r {
      width: 36px;
      height: 36px;
      border: 1.5px solid rgba(255, 255, 255, .5);
      border-radius: 50%;
      position: absolute;
      top: -18px;
      left: -18px;
      transition: width .3s, height .3s, top .3s, left .3s, border-color .3s
    }

    .cur.hov .cur__r {
      width: 56px;
      height: 56px;
      top: -28px;
      left: -28px;
      border-color: var(--grn-l)
    }

    .cur.hov .cur__d {
      transform: scale(2.5);
      background: var(--grn)
    }

    @media(max-width:920px) {
      .cur {
        display: none
      }
    }

    /* Spotlight */
    .spotlight {
      position: fixed;
      pointer-events: none;
      z-index: 2;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(78, 175, 134, .025) 0%, transparent 70%);
      transform: translate(-50%, -50%)
    }

    /* Canvas */
    #tradingCanvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none
    }

    .page-content {
      position: relative;
      z-index: 1
    }

    #scrollProg {
      position: fixed;
      top: var(--hh);
      left: 0;
      height: 2px;
      width: 0;
      background: linear-gradient(90deg, var(--grn), var(--gld));
      z-index: 999;
      pointer-events: none
    }

    /* #15 Live Ticker */
    .ticker {
      background: var(--bg-warm);
      border-bottom: 1px solid var(--border);
      padding: 8px 0;
      overflow: hidden;
      position: relative;
      z-index: 1001;
      opacity: calc(1 - var(--ticker-progress, 0));
      transform: translateY(calc(var(--ticker-progress, 0) * -16px));
      transition: opacity .16s linear, transform .24s var(--ease)
    }

    .ticker__track {
      display: flex;
      gap: 48px;
      animation: tickScroll 45s linear infinite;
      white-space: nowrap
    }

    .ticker__item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 500;
      color: var(--tx3)
    }

    .ticker__pair {
      color: var(--tx2)
    }

    .ticker__price {
      color: var(--tx)
    }

    .ticker__ch {
      font-size: 11px;
      padding: 2px 6px;
      border-radius: 4px;
      font-weight: 500
    }

    .ticker__ch--up {
      background: rgba(78, 175, 134, .15);
      color: var(--grn-l)
    }

    .ticker__ch--dn {
      background: rgba(220, 80, 80, .12);
      color: #e06060
    }

    .ticker__dot {
      width: 4px;
      height: 4px;
      border-radius: 50%
    }

    .ticker__dot--up {
      background: var(--grn)
    }

    .ticker__dot--dn {
      background: #e06060
    }

    @keyframes tickScroll {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    /* #15 Market Sessions */
    .msessions {
      background: rgba(14, 20, 25, .9);
      border-bottom: 1px solid var(--border);
      padding: 10px 0;
      font-family: var(--mono);
      font-size: 12px;
      display: none
    }

    .msessions__in {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap
    }

    .msession {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--tx3)
    }

    .msession__dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0
    }

    .msession__dot--open {
      background: var(--grn);
      box-shadow: 0 0 8px var(--grn)
    }

    .msession__dot--closed {
      background: #555
    }

    .msession__name {
      font-weight: 600;
      color: var(--tx2)
    }

    .msession__status {
      font-weight: 500
    }

    .msession__status--open {
      color: var(--grn-l)
    }

    .msession__status--closed {
      color: var(--tx3)
    }

    .msession__time {
      color: var(--tx3);
      font-size: 11px
    }

    /* #3 Header — gap fix on scroll */
    .hdr {
      position: fixed;
      top: var(--hdr-top, var(--ticker-h));
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(10, 15, 20, .65);
      backdrop-filter: blur(32px);
      -webkit-backdrop-filter: blur(32px);
      border-bottom: 1px solid var(--border);
      transition: background .4s, box-shadow .4s
    }

    .hdr.scrolled {
      background: rgba(10, 15, 20, .95);
      box-shadow: 0 4px 40px rgba(0, 0, 0, .45)
    }

    .hdr__in {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: var(--hh)
    }

    /* #1 #2 Logo — big, transparent bg, glowing */
    .hdr__logo {
      display: flex;
      align-items: center;
      position: relative;
      padding: 6px 14px;
      margin: -6px -14px;
      border-radius: 16px;
      transition: background .4s
    }

    .hdr__logo img {
      width: auto;
      height: 80px;
      filter: drop-shadow(0 0 22px rgba(78, 175, 134, .18)) drop-shadow(0 0 6px rgba(212, 168, 83, .08));
      transition: filter .4s, transform .3s
    }

    .hdr__logo::before {
      content: '';
      position: absolute;
      inset: -18px -28px;
      background: radial-gradient(ellipse, rgba(78, 175, 134, .06), rgba(212, 168, 83, .03) 40%, transparent 65%);
      border-radius: 24px;
      pointer-events: none;
      animation: logoPulse 4s ease-in-out infinite
    }

    @keyframes logoPulse {

      0%,
      100% {
        opacity: .7;
        transform: scale(1)
      }

      50% {
        opacity: 1;
        transform: scale(1.04)
      }
    }

    .hdr__nav {
      display: flex;
      align-items: center;
      gap: 6px
    }

    .hdr__nav a:not(.btn) {
      padding: 10px 16px;
      font-size: 15px;
      font-weight: 500;
      color: var(--tx2);
      border-radius: 10px;
      transition: color .25s, background .25s
    }

    /* #4 Buttons — black text on green, white on hover */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-weight: 700;
      letter-spacing: .03em;
      border-radius: 12px;
      transition: all .3s var(--ease);
      white-space: nowrap;
      position: relative;
      overflow: hidden
    }

    .btn svg {
      width: 17px;
      height: 17px;
      flex-shrink: 0
    }

    .btn--p {
      padding: 15px 32px;
      font-size: 16px;
      background: var(--grn);
      color: #0a0f14;
      box-shadow: 0 4px 24px rgba(78, 175, 134, .4), 0 0 0 1px rgba(78, 175, 134, .3)
    }

    .btn--p::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .1), transparent 60%);
      pointer-events: none
    }

    .btn--g {
      padding: 15px 32px;
      font-size: 16px;
      border: 1.5px solid rgba(255, 255, 255, .14);
      color: #fff;
      background: rgba(255, 255, 255, .04)
    }

    .btn--gold {
      padding: 15px 32px;
      font-size: 16px;
      background: var(--gld);
      color: #000;
      box-shadow: 0 4px 24px rgba(212, 168, 83, .35);
      text-shadow: none
    }

    .btn--gold::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 50%);
      pointer-events: none
    }

    .btn--gold svg {
      color: #000;
      stroke: #000
    }

    .btn--lg {
      padding: 19px 46px;
      font-size: 18px;
      border-radius: 14px
    }

    .btn--nav {
      padding: 12px 24px;
      font-size: 14.5px
    }

    .btn:focus-visible {
      outline: none;
      filter: drop-shadow(0 0 12px rgba(111, 201, 161, .5)) drop-shadow(0 0 26px rgba(212, 168, 83, .28))
    }

    .hdr__logo:focus-visible,
    .hdr__nav a:not(.btn):focus-visible,
    .ft__links a:focus-visible {
      outline: none
    }

    /* Mobile */
    .hdr__tog {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      z-index: 1002
    }

    .hdr__tog span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--tx);
      border-radius: 2px
    }

    .mnav {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 320px;
      background: var(--bg-warm);
      z-index: 2101;
      flex-direction: column;
      padding: 58px 18px 18px;
      gap: 4px;
      transform: translateX(100%);
      transition: transform .45s var(--ease);
      border-left: 1px solid var(--border);
      overflow-y: auto
    }

    .mnav.open {
      transform: translateX(0)
    }

    .mnav a {
      padding: 12px 14px;
      font-size: 16px;
      font-weight: 500;
      color: var(--tx2);
      border-radius: 12px
    }

    .mnav .btn {
      margin-top: 12px;
      padding: 11px 14px;
      font-size: 14px;
      justify-content: center;
      background: linear-gradient(135deg, rgba(212, 168, 83, .24), rgba(212, 168, 83, .1));
      border: 1px solid rgba(212, 168, 83, .45);
      color: var(--gld);
      font-weight: 600;
      letter-spacing: .03em;
      box-shadow: 0 10px 26px rgba(0, 0, 0, .35)
    }

    .mnav__x {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 2;
      width: 36px;
      height: 36px;
      font-size: 24px;
      color: var(--tx);
      background: rgba(10, 15, 20, .75);
      border: 1px solid var(--border);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .novl {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .65);
      z-index: 2100;
      opacity: 0;
      transition: opacity .35s
    }

    html.nav-open,
    html.modal-open {
      overflow: hidden;
      touch-action: none
    }

    .novl.act {
      opacity: 1
    }

    @media(max-width:920px) {
      :root {
        --hh: 86px
      }

      .hdr {
        position: fixed;
        top: var(--hdr-top, var(--ticker-h));
        left: 0;
        right: 0;
        z-index: 2000
      }

      .hdr__logo img {
        height: 72px
      }

      .hdr__nav {
        display: none
      }

      .hdr__tog {
        display: flex
      }

      .mnav {
        display: flex;
        top: var(--hdr-top, 0px);
        height: calc(100dvh - var(--hdr-top, 0px))
      }

      html.nav-open .chat-bubble,
      html.nav-open .chat-panel {
        z-index: -1 !important;
        pointer-events: none
      }
    }

    /* Sections */
    section,
    .sec {
      padding: 80px 0;
      position: relative
    }

    .slabel {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gld);
      margin-bottom: 14px
    }

    .slabel::before {
      content: '';
      width: 28px;
      height: 1.5px;
      background: linear-gradient(90deg, var(--gld), transparent)
    }

    .sheading {
      font-family: var(--serif);
      font-size: clamp(2.3rem, 4.5vw, 3.2rem);
      font-weight: 600;
      line-height: 1.14;
      margin-bottom: 18px
    }

    .ssub {
      font-size: 19px;
      color: var(--tx2);
      max-width: 580px;
      line-height: 1.72;
      font-weight: 300
    }

    .scenter {
      text-align: center
    }

    .scenter .slabel {
      justify-content: center
    }

    .scenter .ssub {
      margin: 0 auto
    }

    .inline-cta {
      background: linear-gradient(135deg, rgba(22, 32, 43, .95), rgba(30, 42, 56, .95));
      border: 1px solid var(--border-g);
      border-radius: 20px;
      padding: 32px 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-top: 40px;
      flex-wrap: wrap;
      backdrop-filter: blur(8px)
    }

    .inline-cta p {
      font-size: 18.5px;
      max-width: 560px;
      line-height: 1.6
    }

    .inline-cta p strong {
      color: var(--grn-l);
      font-weight: 600
    }

    @media(max-width:700px) {
      .inline-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px
      }
    }

    /* #20 Section gradient mesh transitions */
    .mesh {
      height: 80px;
      position: relative;
      pointer-events: none;
      margin: -1px 0
    }

    .mesh--1 {
      background: linear-gradient(180deg, rgba(14, 20, 25, 0), rgba(18, 26, 34, 1) 40%, rgba(18, 26, 34, 1) 60%, rgba(14, 20, 25, 0))
    }

    .mesh--2 {
      background: linear-gradient(180deg, rgba(18, 26, 34, 0), rgba(14, 20, 25, 1) 40%, rgba(14, 20, 25, 1) 60%, rgba(18, 26, 34, 0))
    }

    /* Hero */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: calc(var(--hh) + 40px) 0 20px;
      overflow: hidden
    }

    .hero__canvas {
      z-index: 0;
      opacity: .42
    }

    .hero__canvas canvas {
      filter: saturate(.9) brightness(.82)
    }

    .hero__in {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: .95fr 1.25fr;
      gap: 52px;
      align-items: center
    }

    .hero__media {
      width: 100%;
      max-width: 860px;
      justify-self: end
    }

    .hero__ey {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 20px;
      margin-bottom: 24px;
      background: var(--grn-gw);
      border: 1px solid var(--border-g);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      color: var(--grn-l);
      letter-spacing: .08em;
      text-transform: uppercase;
      opacity: 0;
      animation: fadeUp .8s var(--ease) .2s forwards
    }

    .hero__ey::before {
      content: '';
      width: 7px;
      height: 7px;
      background: var(--grn);
      border-radius: 50%;
      animation: pulse 2.5s ease-in-out infinite
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .4;
        transform: scale(1.5)
      }
    }

    @keyframes fadeUp {
      to {
        opacity: 1
      }
    }

    @keyframes fadeUpFrom {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    .hero__t {
      font-family: var(--serif);
      font-size: clamp(2.6rem, 4.8vw, 3.8rem);
      font-weight: 600;
      line-height: 1.06;
      margin-bottom: 28px;
      min-height: 3.2em
    }

    .hero__t .word {
      display: inline-block;
      opacity: 0;
      animation: fadeUpFrom .7s var(--ease) forwards
    }

    .hero__t .word:nth-child(1) {
      animation-delay: .3s
    }

    .hero__t .word:nth-child(2) {
      animation-delay: .4s
    }

    .hero__t .word:nth-child(3) {
      animation-delay: .5s
    }

    .hero__t .word:nth-child(4) {
      animation-delay: .55s
    }

    .hero__t .word:nth-child(5) {
      animation-delay: .6s
    }

    .hero__t .word:nth-child(6) {
      animation-delay: .65s
    }

    .hero__t em {
      font-style: italic;
      color: var(--grn-l)
    }

    .hero__d {
      font-size: 19.5px;
      color: var(--tx2);
      line-height: 1.75;
      margin-bottom: 40px;
      max-width: 520px;
      font-weight: 300;
      min-height: 5.3em;
      opacity: 0;
      animation: fadeUp .8s var(--ease) .9s forwards
    }

    .hero__acts {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp .8s var(--ease) 1.1s forwards
    }

    .hero__iw {
      position: relative;
      aspect-ratio: 16 / 9;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid var(--border-g);
      box-shadow: 0 28px 90px rgba(0, 0, 0, .5);
      opacity: 0;
      animation: fadeUp 1s var(--ease) .6s forwards
    }

    .hero__iw img,
    .hero__iw video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .hero__iw[data-vid] {
      cursor: pointer
    }

    .hero__badge {
      position: absolute;
      bottom: 18px;
      left: 18px;
      background: rgba(10, 15, 20, .9);
      backdrop-filter: blur(16px);
      border: 1px solid var(--border-g);
      border-radius: 14px;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 12px
    }

    .hero__bdot {
      width: 42px;
      height: 42px;
      background: var(--grn-gw);
      border: 1px solid var(--border-g);
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .hero__bdot svg {
      width: 19px;
      height: 19px;
      color: var(--grn-l)
    }

    .hero__btx {
      font-size: 13px;
      color: var(--tx2);
      line-height: 1.4
    }

    .hero__btx strong {
      display: block;
      color: var(--grn-l);
      font-size: 14.5px
    }

    .sacred {
      position: absolute;
      pointer-events: none;
      opacity: .016;
      display: block;
      z-index: 0
    }

    /* First screen without animations (CLS stabilization) */
    .hero__ey,
    .hero__t .word,
    .hero__d,
    .hero__acts,
    .hero__iw {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important
    }

    .hero__ey::before,
    .hdr__logo::before,
    .ticker__track {
      animation: none !important
    }

    @media(max-width:920px) {
      .hero__canvas {
        opacity: .34
      }

      .hero {
        min-height: auto;
        align-items: flex-start;
        padding: calc(var(--hh) + 28px) 0 32px;
        overflow: visible
      }

      .hero__in {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center
      }

      .hero__d {
        min-height: 0;
        margin: 0 auto 40px
      }

      .hero__acts {
        justify-content: center
      }

      .hero__media {
        max-width: 560px;
        margin: 0 auto
      }

      .hero__ey {
        margin: 0 auto 24px
      }

      .hero .sacred {
        display: none
      }
    }


    /* Interactive bg canvases (needed on first paint to prevent CLS) */
    .sec-canvas {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden
    }

    .sec-canvas canvas {
      width: 100%;
      height: 100%;
      display: block
    }

    /* Disable all canvas rendering for PageSpeed/Lighthouse runs */
    html.perf-no-canvas canvas,
    html.perf-no-canvas .sec-canvas {
      display: none !important
    }

    /* Stats */
    .stats {
      background: rgba(18, 26, 34, .88);
      backdrop-filter: blur(10px);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 48px 0
    }

    .stats__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      text-align: center
    }

    .stat__num {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--grn-l);
      line-height: 1;
      margin-bottom: 8px
    }

    .stat__suffix {
      color: var(--gld)
    }

    .stat__label {
      font-size: 14px;
      color: var(--tx2);
      font-weight: 400
    }

    @media(max-width:700px) {
      .stats__grid {
        grid-template-columns: 1fr 1fr
      }
    }

    /* Trust bar */
    .tbar {
      border-bottom: 1px solid var(--border);
      background: rgba(18, 26, 34, .85);
      backdrop-filter: blur(12px);
      padding: 24px 0
    }

    .tbar__in {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 36px;
      flex-wrap: wrap
    }

    .tbar__i {
      display: flex;
      align-items: center;
      gap: 9px;
      color: var(--tx3);
      font-size: 13.5px;
      font-weight: 500;
      letter-spacing: .04em;
      text-transform: uppercase;
      white-space: nowrap
    }

    .tbar__i svg {
      width: 18px;
      height: 18px;
      color: var(--grn);
      flex-shrink: 0
    }
