
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue: #0500FF;
      --blue-dark: #0400cc;
      --blue-light: #e8e7ff;
      --blue-banner: #eef0ff;
      --gradient-blue: linear-gradient(180deg, #0500FF 0%, #4f8cff 100%);
      --text: #141414;
      --text-muted: #6b6b6b;
      --border: #e5e5e5;
      --white: #ffffff;
      --footer-bg: #0f1117;
      --cookie-bg: #1a1d26;
      --radius: 12px;
      --radius-lg: 24px;
      --radius-pill: 999px;
      --font-display: 'Wix Madefor Display', 'Inter', sans-serif;
      --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--white);
      font-size: 16px;
      line-height: 24px;
      -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    img { max-width: 100%; display: block; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    /* Buttons */
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 12px 24px; background: var(--blue); color: var(--white);
      border-radius: var(--radius-pill); font-size: 14px; font-weight: 600;
      transition: background .2s, transform .15s;
    }
    .btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
    .btn-primary--lg { padding: 16px 32px; font-size: 16px; font-weight: 700; border-radius: var(--radius); }
    .btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }

    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 16px; border: 1.5px solid var(--blue); border-radius: var(--radius-pill);
      font-size: 14px; font-weight: 600; color: var(--blue); background: transparent;
    }
    .btn-outline:hover { background: var(--blue-light); }
    .btn-outline svg { width: 18px; height: 18px; }

    .btn-white {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px; background: var(--white); color: var(--blue);
      border-radius: var(--radius-pill); font-size: 15px; font-weight: 700;
    }
    .btn-white:hover { opacity: .92; }

    .wallet-icon { width: 18px; height: 18px; }

    /* Header */
    .header {
      position: sticky; top: 0; z-index: 200;
      background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
    .logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .logo__wordmark { height: 36px; width: auto; display: block; }
    .nav { display: flex; align-items: center; gap: 26px; }
    .nav__link { font-size: 15px; font-weight: 400; line-height: 22px; transition: color .2s; }
    .nav__link:hover { color: var(--blue); }
    .header__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .icon-btn {
      width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
      border-radius: 8px; transition: background .2s;
    }
    .icon-btn:hover { background: #f5f5f5; }

    /* Hero */
    .hero { padding: 64px 0 48px; overflow: hidden; }
    .hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .hero__title {
      font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 52px); font-weight: 700;
      line-height: 1.154; letter-spacing: normal; margin-bottom: 18px;
    }
    .hero__text { font-size: 18px; color: var(--text-muted); line-height: 26px; margin-bottom: 14px; max-width: 520px; }
    .hero__instruction { font-size: 18px; color: var(--text-muted); line-height: 26px; margin-bottom: 18px; max-width: 520px; }
    .badge { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--blue); margin-bottom: 26px; }
    .badge__icon {
      width: 22px; height: 22px; background: var(--blue); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .badge__icon svg { width: 12px; height: 12px; color: white; }

    .hero__visual { display: flex; align-items: center; justify-content: center; }
    .hero__img { width: 100%; max-width: 535px; height: auto; margin: 0 auto; }
    .site-img { display: block; max-width: 100%; height: auto; }
    .site-img--cover { width: 100%; height: 100%; object-fit: cover; }
    .site-img--icon { width: 28px; height: 28px; margin: 0 auto; }
    .site-img--check { width: 18px; height: 18px; margin: 0 auto; }
    .site-img--search { width: 22px; height: 22px; flex-shrink: 0; opacity: .5; }
    .site-img--card-icon { width: 160px; height: auto; margin: 0 auto 16px; display: block; }

    /* Trust bar */
    .trust { padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .trust__grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; text-align: center; }
    .trust__label {
      font-family: var(--font-display); font-size: clamp(18px, 2vw, 25px); font-weight: 700;
      line-height: 27px; margin-top: 6px;
    }
    .trust__icon { width: 28px; height: 28px; color: var(--blue); margin: 0 auto; }
    .trust__stars { display: flex; gap: 2px; justify-content: center; margin-top: 4px; }
    .trust__stars svg { width: 14px; height: 14px; color: var(--blue); }

    /* Banner */
    .promo { padding: 40px 0; }
    .promo__banner { width: 100%; border-radius: 20px; overflow: hidden; }

    /* Section helpers */
    .section { padding: 72px 0; }
    .section-title {
      font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 52px); font-weight: 700;
      line-height: 1.154; letter-spacing: normal; margin-bottom: 16px;
    }
    .section-text { font-size: 18px; color: var(--text-muted); line-height: 26px; max-width: 680px; }

    /* Building on Trust */
    .dev-card {
      background: var(--blue); border-radius: var(--radius-lg); padding: 56px 56px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; color: #fff;
    }
    .dev-card__title {
      font-family: var(--font-display); font-size: clamp(24px, 2.5vw, 32px); font-weight: 700;
      line-height: 1.34; margin-bottom: 16px;
    }
    .dev-card__text { font-size: 18px; line-height: 26px; opacity: .92; margin-bottom: 28px; }
    .dev-card__art { display: flex; align-items: center; justify-content: center; }
    .dev-card__art img { width: 100%; max-width: 320px; height: auto; }

    /* Assets platform */
    .assets-card {
      background: var(--gradient-blue); border-radius: var(--radius-lg);
      padding: 56px 48px 0; color: #fff; overflow: hidden;
    }
    .assets-card .section-title, .assets-card .section-text { color: #fff; }
    .assets-card .section-text { opacity: .9; margin-bottom: 28px; }
    .search-bar {
      display: flex; align-items: center; gap: 12px;
      background: #fff; border-radius: var(--radius-pill); padding: 14px 22px;
      max-width: 560px; margin-bottom: 32px;
    }
    .search-bar { position: relative; }
    .search-bar .site-img--search { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); }
    .search-bar input { padding-left: 36px; }
    .search-bar input { border: none; outline: none; font-size: 18px; line-height: 26px; width: 100%; font-family: inherit; }
    .chain-table {
      background: #fff; border-radius: 20px 20px 0 0; overflow: hidden; color: var(--text);
    }
    .chain-table__head, .chain-table__row {
      display: grid; grid-template-columns: 2fr repeat(5,1fr); gap: 12px;
      padding: 16px 28px; align-items: center;
    }
    .chain-table__head { font-size: 15px; font-weight: 400; line-height: 22px; color: var(--text-muted); border-bottom: 1px solid var(--border); }
    .chain-table__row { border-bottom: 1px solid var(--border); font-size: 16px; font-weight: 400; line-height: 24px; }
    .chain-table__row:last-child { border-bottom: none; }
    .chain-name { display: flex; align-items: center; gap: 10px; }
    .chain-name img { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
    .chain-table__row span:not(.chain-name) { display: flex; justify-content: center; }

    .stats-row {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
      padding: 48px 0 72px; text-align: center;
    }
    .stats-row__num {
      font-family: var(--font-display); font-size: 30px; font-weight: 700; line-height: 33px;
      color: #fff; margin-bottom: 6px;
    }
    .stats-row__label { font-size: 18px; font-weight: 400; line-height: 26px; color: rgba(255,255,255,.92); }

    /* Feature sections */
    .feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .feature-grid--reverse .feature-grid__visual { order: -1; }
    .feature-visual {
      min-height: 320px; border-radius: var(--radius-lg); overflow: hidden;
      background: #f5f5f5; display: flex; align-items: center; justify-content: center;
    }
    .feature-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
    .security-hero { max-width: 280px; margin: 0 auto; display: block; }
    .tabs { display: flex; gap: 8px; margin-bottom: 24px; }
    .tab {
      padding: 10px 20px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600;
      border: 1.5px solid var(--border); color: var(--text-muted);
    }
    .tab--active { background: var(--blue); color: #fff; border-color: var(--blue); }

    /* Security cards */
    .security-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
    .security-card {
      padding: 28px; border: 1px solid var(--border); border-radius: var(--radius);
      transition: box-shadow .2s;
    }
    .security-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.06); }
    .security-card__icon { width: 100px; height: auto; margin-bottom: 16px; display: block; }
    .security-card__title {
      font-family: var(--font-display); font-size: 25px; font-weight: 700; line-height: 27px; margin-bottom: 8px;
    }
    .security-card__text { font-size: 15px; color: var(--text-muted); line-height: 22px; }

    /* Reviews */
    .reviews { background: #fafafa; }
    .reviews__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 40px; }
    .review-card {
      background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
      padding: 36px; text-align: center;
    }
    .review-card__badge { height: 48px; width: auto; margin: 0 auto 20px; }
    .review-card__score { font-size: 56px; font-weight: 800; color: var(--blue); line-height: 1; }
    .review-card__max { font-size: 20px; color: var(--text-muted); margin-bottom: 12px; }
    .review-card__stars { display: flex; gap: 4px; justify-content: center; margin: 12px 0; }
    .review-card__stars svg { width: 20px; height: 20px; color: var(--blue); }

    /* Testimonials */
    .testimonials { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 40px; }
    .testimonial {
      border: 1px solid var(--border); border-radius: var(--radius);
      background: #fff; overflow: hidden;
    }
    .testimonial__photo { width: 100%; height: 220px; object-fit: cover; }
    .testimonial__body { padding: 20px; }
    .testimonial__author { font-weight: 700; margin-bottom: 10px; font-size: 15px; }
    .testimonial__text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }


    /* Cookie banner */
    .cookie {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
      background: var(--cookie-bg); color: rgba(255,255,255,.85);
      padding: 20px 32px; display: flex; align-items: center; justify-content: space-between;
      gap: 24px; border-top: 1px solid rgba(255,255,255,.1);
    }
    .cookie__text { font-size: 13px; line-height: 1.6; max-width: 720px; }
    .cookie__text a { color: #fff; text-decoration: underline; }
    .cookie__actions { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
    .cookie__btn {
      padding: 10px 18px; background: #fff; color: var(--text); border-radius: 8px;
      font-size: 13px; font-weight: 600; text-align: center; white-space: nowrap;
    }
    .cookie__link { color: #fff; font-size: 13px; text-align: center; text-decoration: underline; }
    .cookie.hidden { display: none; }

    @media (max-width: 1024px) {
      .hero__grid, .feature-grid, .dev-card, .reviews__grid { grid-template-columns: 1fr; }
      .hero__visual { order: -1; }
      .feature-grid--reverse .feature-grid__visual { order: -1; }
      .trust__grid { grid-template-columns: repeat(3,1fr); }
      .security-grid, .testimonials { grid-template-columns: repeat(2,1fr); }
    }

    @media (max-width: 768px) {
      .trust__grid { grid-template-columns: repeat(2,1fr); }
      .stats-row, .security-grid, .testimonials { grid-template-columns: 1fr; }
      .chain-table__head, .chain-table__row { grid-template-columns: 1.5fr repeat(3,1fr); font-size: 12px; padding: 12px 16px; }
      .chain-table__head span:nth-child(n+5), .chain-table__row span:nth-child(n+5) { display: none; }
      .cookie { flex-direction: column; align-items: stretch; }
      .section { padding: 48px 0; }
      .dev-card { padding: 32px 24px; }
      .assets-card { padding: 32px 20px 0; }
    }
  
    /* Typography — match trustwallet.com */
    :root {
      --font-display: 'Wix Madefor Display', 'Inter', sans-serif;
      --font-brand: 'Gilroy', 'Wix Madefor Display', 'Inter', sans-serif;
      --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --base-white: #f4f4f7;
    }
    @font-face {
      font-family: 'Wix Madefor Display';
      src: url('../assets/fonts/WixMadeforDisplay.ttf') format('truetype');
      font-weight: 400 800;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Gilroy';
      src: url('../assets/fonts/Gilroy-Extrabold.ttf') format('truetype');
      font-weight: 800;
      font-style: normal;
      font-display: swap;
    }
    body { font-family: var(--font-body); line-height: 24px; }
    h1, h2, h3, h4 {
      font-family: var(--font-display); font-weight: 700; letter-spacing: normal;
    }

    /* Page hero (inner pages) */
    .page-hero { padding: 64px 0 48px; background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 100%); }
    .page-hero__title {
      font-family: var(--font-display); font-size: clamp(28px, 4vw, 52px); font-weight: 700;
      line-height: 1.154; letter-spacing: normal; margin-bottom: 16px;
    }
    .page-hero__text { font-size: 18px; color: var(--text-muted); line-height: 26px; margin-bottom: 14px; max-width: 640px; }
    .page-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .page-hero__visual img { width: 100%; max-width: 520px; margin-left: auto; display: block; }
    .page-hero__coin { width: 56px; height: 56px; margin-bottom: 16px; border-radius: 50%; }
    .download-mockups { display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; align-items: flex-end; }
    .download-mockups img { max-height: 360px; width: auto; }
    .security-grid--photos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .security-card--photo { padding: 0; overflow: hidden; border: none; background: transparent; }
    .security-card__photo { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); }

    /* Wallet connect modal */
    .modal { position: fixed; inset: 0; z-index: 500; display: none; align-items: center; justify-content: center; }
    .modal.is-open { display: flex; }
    .modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); backdrop-filter: blur(4px); }
    .modal__dialog { position: relative; background: var(--white); border-radius: var(--radius-lg); padding: 40px 36px; max-width: 420px; width: calc(100% - 48px); box-shadow: 0 24px 48px rgba(0,0,0,.18); }
    .modal__close { position: absolute; top: 16px; right: 20px; font-size: 28px; line-height: 1; color: var(--text-muted); }
    .modal__close:hover { color: var(--text); }
    .modal__title { font-family: var(--font-display); font-size: 30px; font-weight: 700; line-height: 33px; margin-bottom: 12px; }
    .modal__text { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; line-height: 22px; }
    .modal__wallets { display: flex; flex-direction: column; gap: 10px; }
    .modal__wallet-btn {
      padding: 14px 20px; border: 1.5px solid var(--border); border-radius: var(--radius);
      font-size: 15px; font-weight: 600; text-align: left; transition: border-color .2s, background .2s;
    }
    .modal__wallet-btn:hover { border-color: var(--blue); background: var(--blue-light); }

    /* Logo — Trust Security image assets */
    .logo { gap: 0; color: #0500FF; }
    .logo__variant { display: block; line-height: 0; }
    .logo__variant--desktop { display: none; }
    .logo__variant--mobile { display: block; }
    .logo__img { width: auto; height: auto; display: block; max-width: none; background: transparent; }
    .logo__img--mobile { height: 40px; width: auto; }

    /* Nav dropdown menus */
    /* Header — flat single layer like trustwallet.com (no border, blur, or shadow) */
    .header {
      position: sticky; top: 0; z-index: 400;
      background: var(--white);
      border-bottom: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      box-shadow: none;
      padding: 0 24px;
      width: 100%;
      max-width: 100%;
    }
    .header, .header__inner, .nav { overflow: visible; }
    .nav__item { position: relative; }
    .nav__trigger {
      display: inline-flex; align-items: center;
      font-family: var(--font-body);
      font-size: 15px; font-weight: 500; line-height: 22px;
      color: #1b1b1c; padding: 10px 20px;
      background: none; transition: color .2s;
    }
    .nav__trigger:hover, .nav__item.is-open .nav__trigger { color: var(--blue); }
    .nav__dropdown {
      position: absolute; top: 100%; left: 0;
      padding-top: 10px; background: transparent; border: none; box-shadow: none;
      opacity: 0; visibility: hidden; transform: translateY(4px);
      transition: opacity .2s, transform .2s, visibility .2s;
      z-index: 300; pointer-events: none;
    }
    .nav__dropdown-panel {
      min-width: 300px; background: var(--white);
      border: 1px solid var(--border); border-radius: 16px;
      padding: 8px; box-shadow: 0 20px 48px rgba(0,0,0,.12);
    }
    .nav__dropdown-layout {
      display: flex; align-items: flex-start; gap: 64px;
    }
    .nav__dropdown-art {
      flex-shrink: 0; width: 200px;
      display: flex; align-items: flex-start; justify-content: center;
    }
    .nav__dropdown-art-img {
      height: 200px; width: auto; max-width: 200px; object-fit: contain; display: block;
    }
    .nav__dropdown-links {
      display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr));
      gap: 24px 40px; flex: 1; min-width: 0;
    }
    .nav__dropdown-links--wide {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    @media (min-width: 1200px) {
      .nav__dropdown-links--wide { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }
    .nav__dropdown--wide .nav__dropdown-panel {
      min-width: 560px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 12px;
    }
    .nav__dropdown--wide.nav__dropdown--illustrated .nav__dropdown-panel {
      display: block;
    }
    @media (min-width: 996px) {
      /* Mega-menu panels — full-width flat strip like trustwallet.com */
      .nav__dropdown--illustrated {
        position: fixed;
        top: var(--header-height, 72px);
        left: 0;
        right: 0;
        width: 100%;
        padding-top: 0;
        transform: none;
        background: var(--white);
        z-index: 350;
        min-height: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: none;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
      }
      .nav__item.is-open .nav__dropdown--illustrated {
        pointer-events: auto;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0s;
      }
      .nav__item.is-open .nav__dropdown--illustrated:not(.nav__dropdown--wide) {
        max-height: 300px;
      }
      .nav__item.is-open .nav__dropdown--wide.nav__dropdown--illustrated {
        max-height: 560px;
      }
      .nav__dropdown--illustrated .nav__dropdown-panel {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        min-width: 0;
        padding: 24px 24px 40px;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .nav__item.is-open .nav__dropdown--illustrated .nav__dropdown-panel {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.1s;
      }
      .nav__dropdown:not(.nav__dropdown--wide) .nav__dropdown-links {
        grid-template-columns: repeat(2, minmax(240px, max-content));
        column-gap: 64px;
      }
      .nav__dropdown--wide { left: auto; right: 0; }
      .nav__item:nth-last-child(-n+2) .nav__dropdown:not(.nav__dropdown--wide):not(.nav__dropdown--illustrated) { left: auto; right: 0; }
    }
    .nav__item.is-open .nav__dropdown:not(.nav__dropdown--illustrated),
    .nav__item:hover .nav__dropdown:not(.nav__dropdown--illustrated) {
      opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
    }
    .nav__dropdown-link {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 4px 0; border-radius: 0; transition: color .2s;
    }
    .nav__dropdown-link:hover { background: var(--blue-light); }
    .nav__dropdown--illustrated .nav__dropdown-link {
      padding: 0; min-width: 240px;
    }
    .nav__dropdown--illustrated .nav__dropdown-link:hover {
      background: transparent; text-decoration: underline;
    }
    .nav__dropdown-icon {
      flex-shrink: 0; width: 36px; height: 36px; display: block;
    }
    .nav__dropdown-icon-svg { width: 36px; height: 36px; display: block; }
    .nav__dropdown-copy { display: grid; gap: 4px; min-width: 0; flex: 1; }
    .nav__dropdown-title {
      display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
      font-size: 15px; font-weight: 500; line-height: 22px; color: var(--text); margin-bottom: 0;
    }
    .nav__dropdown-desc {
      display: block; font-size: 13px; color: var(--text-muted); line-height: 20px;
    }
    .nav__badge {
      display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .04em;
      color: #0500ff; background: #e8e7ff;
      padding: 2px 8px; border-radius: 6px; margin-left: 8px; vertical-align: middle;
      text-transform: uppercase;
    }

    /* Mobile header — trustwallet.com switches to burger menu below 996px */
    @media (max-width: 995px) {
      .header {
        padding: 16px 20px;
      }
      .header .nav { display: none !important; }
      .menu-toggle { display: flex !important; }
      .header .container.header__inner {
        padding: 0;
        height: auto;
        min-height: 0;
        gap: 12px;
      }
      .logo { min-width: 0; flex-shrink: 1; }
      .header__right {
        gap: 8px;
        min-width: 0;
        flex-shrink: 0;
        margin-left: auto;
      }
      .header__actions {
        gap: 4px;
        flex-shrink: 0;
      }
      .header__actions .icon-btn,
      .header__actions .lang-switch,
      .header-connect-mobile,
      .header-connect-btn { display: none !important; }
      .menu-toggle { display: flex !important; margin-left: auto; flex-shrink: 0; }
    }

    @media (min-width: 996px) {
      .header { padding: 28px 40px; }
      .menu-toggle { display: none !important; }
      .header .nav { display: flex !important; }
      .header-connect-btn { display: inline-flex; }
      .header-connect-mobile { display: none !important; }
      .logo__variant--desktop { display: block; }
      .logo__variant--mobile { display: none; }
      .logo__img { width: 160px; height: auto; }
    }

    /* Mobile nav overlay — trustwallet.com card menu (fixed fullscreen panel) */
    @media (max-width: 995px) {
      .header.nav--open {
        position: fixed;
        inset: 0;
        z-index: 500;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        height: 100dvh;
        overflow: hidden;
        background: #f6f8fa;
        padding: 16px 20px 0;
      }
      html.dark .header.nav--open {
        background: #121212;
      }
      .header.nav--open::before { display: none; }
      .header.nav--open .container.header__inner {
        width: 100%;
        max-width: 100%;
        flex: 1 1 auto;
        min-height: 0;
        padding: 0;
        gap: 0;
        flex-wrap: wrap;
        align-items: center;
        align-content: flex-start;
      }
      .header.nav--open .logo { order: 1; }
      .header.nav--open .menu-toggle { order: 2; margin-left: auto; }
      .header.nav--open .header__right {
        order: 3;
        position: static;
        display: flex;
        flex-direction: column;
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        min-height: 0;
        margin-left: 0;
        overflow: hidden;
        background: transparent;
      }
      .header.nav--open .logo__variant--desktop { display: none; }
      .header.nav--open .logo__variant--mobile { display: block; }
      .header.nav--open .menu-toggle {
        width: 32px;
        transform: rotate(90deg);
      }
      .header.nav--open .menu-toggle__bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
      }
      .header.nav--open .menu-toggle__bar:nth-child(2) {
        opacity: 0;
      }
      .header.nav--open .menu-toggle__bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
      }
      .header.nav--open .nav {
        display: flex !important;
        flex-direction: column;
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
        min-height: 0;
        margin-top: 28px;
        padding: 0;
        gap: 12px;
        border: none;
        box-shadow: none;
        align-items: stretch;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }
      .header.nav--open .header__actions {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        width: 100%;
        max-width: 100%;
        padding: 20px 0 32px;
        border-top: none;
        flex-shrink: 0;
        background: transparent;
        box-sizing: border-box;
      }
      .header.nav--open .header__mobile-tools {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        width: 100%;
      }
      .header.nav--open .header__actions .theme-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: auto;
        min-width: 104px;
        height: 36px;
        padding: 0 18px;
        border: 1.5px solid #1b1b1c;
        border-radius: var(--radius-pill);
        background: transparent;
        font-size: 15px;
        font-weight: 500;
        color: #1b1b1c;
        margin-left: 0;
      }
      html.dark .header.nav--open .header__actions .theme-toggle {
        border-color: #e8e8e8;
        color: #e8e8e8;
      }
      .header.nav--open .header__actions .lang-switch {
        display: block !important;
        width: auto;
        margin-left: 0;
        flex-shrink: 0;
      }
      .header.nav--open .header__actions .lang-switch__toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: auto;
        min-width: 138px;
        height: 36px;
        padding: 0 18px;
        border: 1.5px solid var(--blue);
        border-radius: var(--radius-pill);
        background: transparent;
        font-size: 15px;
        font-weight: 500;
        color: var(--blue);
      }
      .header.nav--open .header__actions .lang-switch__toggle span { display: inline; }
      .header.nav--open .header__actions .header-connect-mobile {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        height: 51px;
        margin-left: 0;
        padding: 0 24px;
        border: none;
        border-radius: var(--radius-pill);
        background: var(--blue);
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        box-sizing: border-box;
      }
      .header.nav--open .header__actions .header-connect-mobile .wallet-icon {
        filter: brightness(0) invert(1);
      }
      .header.nav--open .theme-toggle__label { display: inline; }
      .nav__item {
        width: 100%;
        max-width: 100%;
        background: var(--white);
        border-radius: 10px;
        border: none;
        overflow: hidden;
        flex-shrink: 0;
      }
      html.dark .nav__item { background: #1e1e1e; }
      .nav__trigger {
        width: 100%;
        justify-content: space-between;
        padding: 14px 20px;
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
        color: #1b1b1c;
        background: var(--white);
        box-sizing: border-box;
      }
      html.dark .nav__trigger {
        color: #f5f5f5;
        background: #1e1e1e;
      }
      .nav__trigger::after {
        content: "";
        width: 7px;
        height: 7px;
        border: none;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(-45deg);
        flex-shrink: 0;
        margin-left: 12px;
        transition: transform .2s;
      }
      .nav__item.is-open .nav__trigger::after { transform: rotate(45deg); }
      .nav__dropdown {
        position: static;
        width: 100%;
        padding-top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        background: var(--white);
      }
      html.dark .nav__dropdown { background: #1e1e1e; }
      .nav__dropdown-panel {
        min-width: 0;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 20px 12px;
        background: transparent;
      }
      .nav__dropdown--wide .nav__dropdown-panel { grid-template-columns: 1fr; min-width: 0; }
      .nav__dropdown--illustrated .nav__dropdown-panel { min-width: 0; padding: 0 20px 12px; }
      .nav__dropdown-layout { flex-direction: column; gap: 8px; align-items: stretch; }
      .nav__dropdown-art { display: none; }
      .nav__dropdown-links,
      .nav__dropdown-links--wide { grid-template-columns: 1fr; gap: 0; }
      .nav__item.is-open .nav__dropdown { display: block; }
      .nav__dropdown-link {
        padding: 12px 0;
        border-top: 1px solid #eef0f3;
      }
      html.dark .nav__dropdown-link { border-top-color: #2a2a2a; }
      .nav__dropdown-link:first-child { border-top: none; }
    }

    /* 404 page */
    .error-page { padding: 120px 0; text-align: center; }
    .error-page__code { font-size: 96px; font-weight: 800; color: var(--blue); line-height: 1; }
    .error-page__title { font-size: 28px; font-weight: 700; margin: 16px 0 12px; }
    .error-page__text { color: var(--text-muted); margin-bottom: 32px; }

    /* Content spacing & button alignment */
    .section-text { margin-bottom: 28px; }
    .hero__actions {
      display: flex; flex-direction: column; align-items: flex-start; gap: 20px; margin-top: 8px;
    }
    .hero__actions .badge { margin-bottom: 0; }
    .feature-grid > div:first-child {
      display: flex; flex-direction: column; align-items: flex-start;
    }
    .feature-grid .btn-primary,
    .feature-grid a.btn-primary { margin-top: 0; align-self: flex-start; }
    a.btn-primary,
    a.btn-primary:hover,
    a.btn-primary:visited,
    a.btn-primary:focus { text-decoration: none; color: var(--white); }
    .btn-primary { border: none; text-decoration: none; }
    .btn-primary--pill { padding: 12px 40px; font-size: 16px; font-weight: 500; border-radius: var(--radius-pill); min-height: 45px; }

    /* Homepage content width — trustwallet.com uses 1200px blocks */
    .page-max {
      max-width: 1200px; width: 100%; margin-left: auto; margin-right: auto;
    }
    .page-max--inset { padding-left: 20px; padding-right: 20px; }

    /* Language switcher */
    .lang-switch { position: relative; }
    .lang-switch__toggle { display: inline-flex; align-items: center; gap: 8px; min-width: 72px; justify-content: center; }
    .lang-switch__menu {
      position: absolute; top: calc(100% + 8px); right: 0; min-width: 140px;
      background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
      box-shadow: 0 12px 32px rgba(0,0,0,.12); padding: 6px; z-index: 250;
    }
    .lang-switch__menu[hidden] { display: none; }
    .lang-switch__menu--flags {
      top: calc(100% + 14px);
      width: 370px;
      min-width: 370px;
      max-height: 366px;
      padding: 20px;
      display: grid;
      grid-template-columns: repeat(4, min-content);
      gap: 40px;
      border-radius: 10px;
      border: 1px solid var(--blue);
      background:
        linear-gradient(323deg, #F4F4F7, rgba(244, 244, 247, 0) 100%),
        var(--white);
      box-shadow: 0 20px 48px rgba(0, 0, 0, .12);
      transform-origin: top right;
      transition: opacity .18s ease, transform .18s ease;
    }
    .lang-switch.is-open .lang-switch__menu--flags {
      animation: langMenuIn .18s ease;
    }
    @keyframes langMenuIn {
      from { opacity: 0; transform: scale(.96); }
      to { opacity: 1; transform: scale(1); }
    }
    .lang-flag {
      position: relative;
      width: 52px;
      height: 51px;
      padding: 0;
      border: 2px solid rgba(5, 0, 255, .18);
      border-radius: 50%;
      overflow: hidden;
      background: #fff;
      transition: border-color .2s, transform .15s;
    }
    .lang-flag:hover { border-color: var(--text); transform: translateY(-1px); }
    .lang-flag.is-current { border-color: var(--blue); }
    .lang-flag img {
      display: block;
      width: 101%;
      height: 105%;
      margin-top: -1px;
      object-fit: cover;
    }

    /* Theme toggle */
    .theme-toggle { color: var(--text); }
    .theme-toggle__label { display: none; }
    .theme-toggle__sun { display: none; }
    html.dark .theme-toggle__moon { display: none; }
    html.dark .theme-toggle__sun { display: block; }

    /* Dark mode (trustwallet.com) */
    html.dark {
      color-scheme: dark;
      background: #121212;
      --text: #f5f5f5;
      --text-muted: #b0b0b0;
      --white: #1b1b1c;
      --border: #2f2f31;
      --blue-light: rgba(72, 255, 145, .12);
      --blue-banner: #151518;
      --green: #48FF91;
    }
    html.dark body { background: #1b1b1c; color: var(--text); }
    html.dark .header {
      background: #1b1b1c;
      border-bottom: none;
    }
    html.dark .nav__trigger,
    html.dark .header .nav__trigger { color: var(--text); }
    html.dark .nav__dropdown-title { color: var(--text); }
    html.dark .nav__dropdown-desc { color: var(--text-muted); }
    html.dark .nav__dropdown-panel,
    html.dark .modal__dialog,
    html.dark .info-card,
    html.dark .blog-card,
    html.dark .download-card,
    html.dark .faq-item,
    html.dark .page-hero,
    html.dark .section--alt { background: #232325; }
    html.dark .nav__dropdown-panel,
    html.dark .modal__dialog,
    html.dark .info-card,
    html.dark .blog-card,
    html.dark .download-card,
    html.dark .faq-item { border-color: var(--border); }
    html.dark .icon-btn:hover { background: rgba(255,255,255,.06); }
    html.dark .btn-outline,
    html.dark .header-connect-btn,
    html.dark .hero-connect-pill { color: var(--green); border-color: var(--green); }
    html.dark .btn-outline:hover,
    html.dark .header-connect-btn:hover,
    html.dark .hero-connect-pill:hover { background: rgba(72, 255, 145, .12); }
    html.dark .hero-trust__item { color: #fff; }
    html.dark .hero-trust__stars { color: var(--green); }
    html.dark .lang-switch__menu--flags {
      border-color: var(--green);
      background:
        linear-gradient(299deg, rgba(219, 220, 229, .20) -2.14%, rgba(219, 220, 229, 0) 97.1%),
        #1b1b1c;
    }
    html.dark .lang-flag { border-color: rgba(255, 255, 255, .12); background: #111; }
    html.dark .lang-flag:hover { border-color: #fff; }
    html.dark .lang-flag.is-current { border-color: var(--green); }
    html.dark .home-chain-card,
    html.dark .home-panel,
    html.dark .home-security-card,
    html.dark .home-review-card,
    html.dark .home-web3__card { background: #232325; border-color: var(--border); }
    html.dark .home-testimonial { background: #232325; border-color: var(--border); }
    html.dark .home-panel__title { color: var(--text); }
    html.dark .home-stack__title--dark,
    html.dark .home-stack__lead--dark { color: var(--text); }
    html.dark .search-bar { background: #2a2a2c; }
    html.dark .search-bar input { background: transparent; color: var(--text); }
    html.dark .modal__overlay { background: rgba(0,0,0,.72); }
    html.dark .logo__shield-left { fill: var(--green); }
    html.dark .logo { color: var(--green); }
    html.dark .footer__brand-shield-left { fill: var(--green); }
    html.dark .badge { color: var(--green); }
    html.dark .badge__icon { background: var(--green); }

    .lang-switch__option {
      display: block; width: 100%; padding: 10px 12px; border-radius: 8px;
      font-size: 14px; font-weight: 600; text-align: left;
    }
    .lang-switch__option:hover, .lang-switch__option.is-active { background: var(--blue-light); color: var(--blue); }

    /* Header layout — logo left, nav + actions grouped on the right (trustwallet.com) */
    .header .container.header__inner {
      max-width: none;
      width: 100%;
      padding: 0;
      height: auto;
      min-height: 0;
      gap: 24px;
      align-items: center;
    }
    .header__right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0;
      margin-left: auto;
      min-width: 0;
      flex-shrink: 1;
    }
    .header .nav { gap: 0; flex-shrink: 0; }
    .header .nav__trigger { padding: 10px 20px; white-space: nowrap; color: #1b1b1c; font-weight: 500; }
    .header__actions { gap: 0; flex-shrink: 0; }
    .header__mobile-tools {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .header__actions .icon-btn {
      width: auto;
      height: 36px;
      padding: 0 16px;
      border-radius: var(--radius-pill);
      margin-left: 8px;
      color: #1b1b1c;
    }
    .header__actions .lang-switch { margin-left: 8px; }
    .header__actions .lang-switch__toggle {
      height: 36px;
      padding: 0 20px;
      min-width: 0;
      font-size: 15px;
      font-weight: 500;
      line-height: 21px;
    }
    .header-connect-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      height: 36px;
      padding: 0 20px;
      margin-left: 8px;
      border: 1.5px solid var(--blue);
      border-radius: var(--radius-pill);
      color: var(--blue);
      background: transparent;
      font-size: 15px;
      font-weight: 500;
      line-height: 21px;
      white-space: nowrap;
      transition: background .2s, color .2s;
    }
    .header-connect-btn:hover { background: var(--blue-light); }
    .header-connect-btn .wallet-icon { width: 16px; height: 16px; }
    .header-connect-mobile { display: none; }
    .menu-toggle {
      display: none;
      width: 40px;
      height: auto;
      padding: 0;
      border: 0;
      background: transparent;
      flex-direction: column;
      align-items: stretch;
      justify-content: center;
      gap: 6px;
      flex-shrink: 0;
      cursor: pointer;
      transition: width .3s, transform .3s;
    }
    .menu-toggle__bar {
      display: block;
      width: 100%;
      height: 3px;
      border-radius: 2px;
      background: var(--blue);
      transition: transform .3s, opacity .2s;
    }
    html.dark .menu-toggle__bar { background: var(--green); }

    /* Product tabs (Mobile / Extension) */
    .product-tabs { width: 100%; }
    .tab-panels { margin-top: 0; }
    .tab-panel { display: none; }
    .tab-panel--active { display: block; }

    /* Download page */
    .download-grid {
      display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px;
    }
    .download-card {
      border: 1px solid var(--border); border-radius: var(--radius-lg);
      padding: 28px 24px; background: var(--white);
    }
    .download-card__title { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
    .download-card__text { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
    @media (max-width: 768px) {
      .download-grid { grid-template-columns: 1fr; }
    }

    .text-link {
      color: var(--blue); font-weight: 600; text-decoration: none;
    }
    .text-link:hover { text-decoration: underline; }
    .review-card__count {
      font-size: 13px; color: var(--text-muted); margin-top: 8px;
    }
    .reviews__date { font-size: 13px; color: var(--text-muted); margin-top: 16px; text-align: center; }
    .reviews__cta { text-align: center; margin-top: 32px; }
    .trust__reviews-link {
      display: block; margin-top: 8px; font-size: 12px; color: var(--blue); font-weight: 600;
    }
    .trust__reviews-link:hover { text-decoration: underline; }

    .store-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
    .store-badge { padding: 0; border: none; background: none; cursor: pointer; }
    .store-badge img { height: 44px; width: auto; display: block; }

    .promo__link { display: block; }

    .section--alt { background: #fafafa; }

    .info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
    .info-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .info-card {
      border: 1px solid var(--border); border-radius: var(--radius-lg);
      padding: 24px; background: var(--white);
    }
    .info-card__title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
    .info-card__text { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

    .steps-list { list-style: none; display: grid; gap: 14px; max-width: 720px; }
    .steps-list__item {
      display: flex; gap: 14px; align-items: flex-start; font-size: 15px; line-height: 1.6;
    }
    .steps-list__num {
      width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: #fff;
      display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0;
    }
    .bullet-list { padding-left: 20px; color: var(--text-muted); line-height: 1.8; }

    .faq-list { display: grid; gap: 12px; max-width: 820px; }
    .faq-item { border: 1px solid var(--border); border-radius: var(--radius); padding: 0 18px; background: var(--white); }
    .faq-item__q { cursor: pointer; font-weight: 700; padding: 16px 0; list-style: none; }
    .faq-item__q::-webkit-details-marker { display: none; }
    .faq-item__a { color: var(--text-muted); padding-bottom: 16px; line-height: 1.7; }

    .blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
    .blog-card {
      border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; background: var(--white);
    }
    .blog-card__thumb { width: 100%; height: 160px; object-fit: cover; border-radius: var(--radius); margin-bottom: 14px; }
    .blog-card__date { font-size: 13px; color: var(--text-muted); display: block; margin-bottom: 10px; }
    .blog-card__title { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
    .blog-card__title a:hover { color: var(--blue); }
    .blog-card__text { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
    .blog-meta { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }

    .chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
    .chip-link {
      display: inline-flex; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-pill);
      font-size: 13px; font-weight: 600; background: var(--white);
    }
    .chip-link:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

    .price-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 20px; }
    .price-stat {
      border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; background: var(--white);
    }
    .price-stat__label { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
    .price-stat__value { font-size: 22px; font-weight: 800; }

    .footer__social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
    .footer__social a {
      width: 31px; height: 31px; border-radius: 0; background: transparent;
      display: inline-flex; align-items: center; justify-content: center;
      transition: opacity .2s; padding: 0; flex-shrink: 0;
    }
    .footer__social svg { width: 31px; height: 31px; display: block; }
    .footer__social-bg { fill: #1b1b1c; }
    .footer__social-icon { fill: #fff; }
    .footer__social a:hover { opacity: .85; }

    /* Footer — trustwallet.com light card layout */
    .footer {
      background: #f4f4f7;
      color: #1b1b1c;
      padding: 48px 20px 0;
    }
    .footer__card {
      max-width: 1440px;
      margin: 0 auto;
      padding: 32px 32px 48px;
      border: 1px solid #dbdce5;
      border-radius: 20px;
      background: #f4f4f7;
      display: grid;
      gap: 32px;
    }
    .footer__social-col { text-align: center; }
    .footer__social-title {
      font-family: var(--font-display); font-size: 18px; font-weight: 700;
      line-height: 1.2; color: #1b1b1c; margin: 0;
    }
    .footer__nav {
      list-style: none; margin: 0; padding: 0;
      display: flex; flex-wrap: wrap; justify-content: space-around; gap: 24px;
    }
    .footer__col {
      width: fit-content; max-width: 110px;
    }
    .footer__col-title,
    .footer__subhead {
      display: block; font-size: 15px; font-weight: 700; line-height: 20px;
      color: #242426; margin: 0 0 12px;
    }
    .footer__subhead { margin-top: 14px; }
    .footer__link {
      display: block; font-size: 15px; font-weight: 400; line-height: 20px;
      color: #1b1b1c; margin-bottom: 8px; transition: color .2s;
    }
    .footer__link:hover { color: var(--blue); }
    .footer__badge {
      display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .04em;
      color: #0500ff; background: #e8e7ff;
      padding: 2px 6px; border-radius: 6px; margin-left: 4px; vertical-align: middle;
      text-transform: uppercase;
    }
    .footer__iso-col {
      display: flex; gap: 12px; align-items: flex-start; justify-content: center;
      width: 100%;
    }
    .footer__iso-col img { width: 58px; height: auto; }
    .footer__download { text-align: center; }
    .footer__download-title {
      display: block; font-family: var(--font-body); font-size: 12px; font-weight: 700;
      line-height: 18px; color: #242426; margin-bottom: 8px;
    }
    .footer__download-text {
      font-family: var(--font-body); font-size: 12px; line-height: 18px;
      color: #242426; margin: 0 0 16px;
    }
    .footer__download-btns {
      display: grid; grid-template-columns: repeat(2, max-content); gap: 12px;
      justify-content: start; width: max-content; max-width: 100%; margin: 0;
    }
    .footer__dl-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      height: 36px; padding: 10px 20px; border: 1px solid var(--blue);
      border-radius: var(--radius-pill); color: var(--blue); background: transparent;
      font-size: 13px; font-weight: 500; line-height: 1; white-space: nowrap;
      transition: background .2s, color .2s;
    }
    .footer__dl-btn:hover { background: var(--blue); color: #fff; }
    .footer__dl-icon { width: auto; height: 18px; flex-shrink: 0; display: block; }
    .footer__dl-icon--img { object-fit: contain; }
    .footer__brand { display: flex; justify-content: center; color: #0500FF; }
    .footer__brand-link {
      display: flex; flex-direction: column; align-items: center; gap: 0;
      text-decoration: none; color: inherit;
    }
    .footer__brand-desktop { display: none; }
    .footer__brand-mobile { display: block; line-height: 0; }
    .footer__brand-img {
      width: auto; height: auto; margin: 0; display: block; max-width: none;
      background: transparent;
    }

    @media (max-width: 995px) {
      .footer { padding: 24px 16px 0; }
      .footer__card {
        padding: 24px 16px 12px;
        margin-bottom: 0;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
      }
      .footer__nav {
        display: grid;
        grid-template-columns: repeat(2, 110px);
        column-gap: 64px;
        row-gap: 24px;
        justify-content: center;
        width: 100%;
      }
      .footer__col {
        width: 110px;
        max-width: 110px;
        min-width: 0;
      }
      .footer__iso-col {
        width: auto;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 0;
      }
      .footer__download-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: none;
        margin: 0 auto;
      }
      .footer__dl-btn {
        width: 100%;
        max-width: 324px;
        box-sizing: border-box;
      }
      .footer__brand-link { align-items: center; }
      .footer__brand { margin: 0; padding: 0; }
      .footer__brand-img--mobile {
        width: min(293px, calc(100vw - 64px));
        height: auto;
        max-width: 100%;
        display: block;
      }
      .logo__img--mobile { width: 92px; height: auto; max-height: 44px; }
    }

    @media (min-width: 996px) {
      .footer { padding: 48px 80px 0; }
      .footer__card {
        border-radius: 30px;
        padding: 48px 80px;
        grid-template-columns: auto 2fr 1fr;
        grid-template-rows: repeat(3, auto);
        gap: 32px 28px;
        align-items: start;
      }
      .footer__card > .footer__brand {
        grid-column: 1; grid-row: 1 / 4;
        justify-content: flex-start; align-self: center; margin-left: 0;
      }
      .footer__brand-desktop {
        display: flex; flex-direction: column; align-items: center;
      }
      .footer__brand-img { width: 180px; height: auto; max-width: none; }
      .footer__brand-mobile { display: none; }
      .footer__card > .footer__nav {
        grid-column: 2 / 4; grid-row: 1;
        display: grid; grid-template-columns: repeat(5, auto) auto;
        gap: 28px; justify-content: start; margin-top: 0;
      }
      .footer__col { max-width: none; width: auto; }
      .footer__iso-col {
        grid-column: 6; justify-content: flex-end; width: auto;
      }
      .footer__card > .footer__download {
        grid-column: 2; grid-row: 2 / 4;
        text-align: left; align-self: end;
      }
      .footer__download-btns { justify-content: start; margin: 0; }
      .footer__card > .footer__social-col {
        grid-column: 3; grid-row: 3;
        text-align: left; align-self: end; justify-self: end; margin-left: 24px;
      }
      .footer__social { flex-wrap: nowrap; }
    }

    html.dark .footer { background: #121212; color: #f5f5f5; }
    html.dark .footer__card {
      background: #1b1b1c; border-color: #2f2f31;
    }
    html.dark .footer__social-title,
    html.dark .footer__link { color: #f5f5f5; }
    html.dark .footer__brand { color: var(--green); }
    html.dark .footer__col-title,
    html.dark .footer__subhead,
    html.dark .footer__download-title,
    html.dark .footer__download-text { color: #b0b0b0; }
    html.dark .footer__link:hover { color: var(--green); }
    html.dark .footer__badge { color: var(--green); background: rgba(72, 255, 145, .12); }
    html.dark .footer__dl-btn {
      color: var(--green); border-color: var(--green);
    }
    html.dark .footer__dl-btn:hover { background: var(--green); color: #1b1b1c; }
    html.dark .footer__social-bg { fill: #f5f5f5; }
    html.dark .footer__social-icon { fill: #1b1b1c; }

    /* Homepage 1:1 layout */
    html { overflow-x: clip; background: #f4f4f7; }
    body { overflow-x: clip; max-width: 100%; padding-bottom: 0; }
    main { overflow-x: clip; }
    .btn-outline--lg { padding: 12px 40px; font-size: 15px; font-weight: 500; line-height: 21px; border-radius: var(--radius-pill); }
    .btn-outline--dark { color: var(--text); border-color: var(--text); background: transparent; }
    .btn-outline--dark:hover { background: rgba(0, 0, 0, .04); }
    html.dark .btn-outline--dark { color: #fff; border-color: #fff; }
    html.dark .btn-outline--dark:hover { background: rgba(255, 255, 255, .08); }
    .tabs--pill {
      display: inline-flex; gap: 4px; padding: 4px; border: 1px solid #1b1b1c;
      border-radius: var(--radius-pill); max-width: 280px; width: 100%; min-height: 52px;
      box-sizing: border-box;
    }
    .tabs--pill .tab {
      flex: 1; border: none; background: transparent; padding: 9px 16px; border-radius: var(--radius-pill);
      font-size: 16px; font-weight: 400; line-height: 24px; color: #1b1b1c;
    }
    .tabs--pill .tab--active { background: var(--blue); color: #fff; }
    .star-gold { width: 20px; height: 20px; }

    .hero-home { padding: 48px 0 0; margin-bottom: 48px; }
    .hero-home__grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 56px 32px; align-items: center;
    }
    .hero-home__title {
      font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 52px); font-weight: 700;
      line-height: 1.154; letter-spacing: normal; margin-bottom: 0;
    }
    .hero-home__text {
      font-size: 18px; color: var(--text-muted); line-height: 26px; max-width: 40ch;
      margin-top: 24px; margin-bottom: 12px;
    }
    .hero-home__aml, .hero-home__instruction {
      font-size: 18px; color: var(--text-muted); line-height: 26px; max-width: 40ch;
      margin-top: 0; margin-bottom: 12px;
    }
    .hero-home__badge, .hero-home__content .badge { margin-top: 0; margin-bottom: 24px; }
    .hero-home__img { width: 100%; max-width: 535px; margin: 0 auto; display: block; }
    .hero-connect-mobile { display: none; }
    .hero-connect-desktop { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 0; }
    .hero-connect-pill {
      display: inline-flex; align-items: center; gap: 12px; height: 60px;
      padding: 0 24px; border: 1.5px solid var(--blue); border-radius: var(--radius-pill);
      color: var(--blue); background: transparent; text-align: left; transition: background .2s, color .2s;
    }
    .hero-connect-pill:hover { background: var(--blue); color: #fff; }
    .hero-connect-pill span { display: flex; flex-direction: column; line-height: 1.2; }
    .hero-connect-pill small { font-size: 12px; font-weight: 500; opacity: .85; }
    .hero-connect-pill strong { font-size: 15px; font-weight: 600; }
    .hero-trust {
      grid-column: 1 / -1; display: flex; flex-wrap: wrap; justify-content: center; gap: 48px;
      text-align: center;
    }
    .hero-trust__item {
      font-family: var(--font-display); font-size: clamp(18px, 2vw, 25px); font-weight: 700;
      line-height: 27px; margin: 0; color: #1b1b1c;
    }
    .hero-trust__item span { color: inherit; }
    .hero-trust__stars {
      display: inline-flex; gap: 2px; margin-top: 6px; justify-content: center;
      color: var(--blue);
    }
    .hero-trust__star { width: 28px; height: 28px; }

    .home-promo { padding: 0 40px; margin-top: 16px; margin-bottom: 48px; }
    .home-promo__link {
      display: block; max-width: 1200px; margin: 0 auto;
      border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
    }
    .home-promo__banner { width: 100%; display: block; }

    .home-dev { padding: 0 40px; margin-bottom: 48px; }
    .home-dev__card {
      display: flex; flex-direction: column-reverse; align-items: center; justify-content: space-between;
      gap: 36px; width: 100%; max-width: 1200px; margin: 0 auto;
      background: var(--blue); color: #fff; border-radius: 20px; padding: 40px 20px;
    }
    .home-dev__copy { width: 100%; }
    .home-dev__title {
      font-family: var(--font-display); font-size: 24px; font-weight: 700;
      line-height: 1.34; margin-bottom: 0;
    }
    .home-dev__text {
      font-size: 18px; line-height: 26px; font-weight: 400; opacity: .92;
      margin-top: 24px; margin-bottom: 28px; max-width: 60ch;
    }
    .home-dev__art { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .home-dev__art img { width: 200px; max-width: 200px; height: auto; }

    .home-stacks {
      display: flex; flex-direction: column; align-items: center;
      gap: 48px;
      padding: 0 40px; margin-bottom: 40px;
    }
    .home-stack {
      position: relative; width: 100%; max-width: 1200px;
      border-radius: 20px; padding: 40px 24px 48px;
    }
    .home-stack--blue {
      background: linear-gradient(152deg, #2eccff -2.65%, #0500ff 82.44%); z-index: 3;
      padding: 40px 24px;
    }
    .home-stack--pink {
      background: linear-gradient(rgb(255, 249, 168) 5.98%, rgb(255, 174, 254) 77.73%); z-index: 2;
    }
    .home-stack--green {
      background: linear-gradient(rgb(255, 244, 101) 5.98%, rgb(72, 255, 145) 77.73%); z-index: 1;
    }
    .home-stack--overlap { margin-top: -80px; padding-top: 96px; }
    .home-stack__inner { width: 100%; margin: 0 auto; }
    .home-stack__title {
      font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 700;
      line-height: 1.154; text-align: center; color: #fff; margin-bottom: 16px;
    }
    .home-stack__title--dark { color: var(--text); }
    .home-stack__lead {
      font-size: 18px; line-height: 26px; text-align: center; color: rgba(255,255,255,.92);
      max-width: 70ch; margin: 0 auto 28px;
    }
    .home-stack__lead--dark { color: var(--text-muted); }
    .home-stack--blue .home-stack__inner { max-width: 1000px; }
    .home-stack--blue .home-stack__lead { margin-bottom: 56px; }
    .home-stack__cta { text-align: center; margin-top: 32px; }

    .home-search {
      position: relative; width: 100%; max-width: 1000px; margin: 0 auto 20px;
    }
    .home-search input {
      width: 100%; height: 60px; border: none; outline: none; background: #fff;
      border-radius: var(--radius-pill); padding: 0 64px; font-size: 18px; line-height: 26px; font-family: inherit;
    }
    .home-search .site-img--search {
      position: absolute; left: 32px; top: 50%; transform: translateY(-50%);
      width: 20px; height: 24px;
    }

    .home-chain-card {
      background: #fff; border-radius: 20px 20px 0 0; padding: 28px 24px 12px; color: var(--text);
    }
    .home-chain-card__head, .home-chain-card__row {
      display: grid; grid-template-columns: 2fr repeat(5, 1fr); gap: 12px; align-items: center; padding: 12px 0;
    }
    .home-chain-card__head { font-size: 15px; font-weight: 400; line-height: 22px; color: var(--text-muted); border-bottom: 1px solid var(--border); }
    .home-chain-card__row { font-size: 16px; font-weight: 400; line-height: 24px; border-bottom: 1px solid var(--border); }
    .home-chain-card__row:last-child { border-bottom: none; }
    .home-chain-card__row span:not(.chain-name) { display: flex; justify-content: center; }
    .chain-name {
      display: flex; align-items: center; gap: 8px; min-width: 0;
    }
    .chain-name img { width: 32px; height: 32px; flex-shrink: 0; object-fit: contain; }

    .home-stats {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center;
      padding: 36px 0 8px; color: #fff;
    }
    .home-stats__num {
      font-family: var(--font-display); font-size: 30px; font-weight: 700; line-height: 33px; margin-bottom: 6px;
    }
    .home-stats__label { font-size: 18px; font-weight: 400; line-height: 26px; opacity: .92; }

    .home-panel {
      display: flex; flex-direction: column-reverse; gap: 28px; align-items: center;
      background: #fff; border: 1px solid #dbdce5; border-radius: 20px;
      padding: 20px; margin-top: 8px;
    }
    .home-panel__title {
      font-family: var(--font-display); font-size: clamp(24px, 2.5vw, 30px); font-weight: 700;
      margin-bottom: 16px; max-width: 18ch; line-height: 1.1; color: var(--text);
    }
    .home-panel__text { font-size: 15px; color: var(--text-muted); line-height: 22px; margin-bottom: 20px; max-width: 40ch; }
    .home-panel__visual { width: 100%; max-width: 445px; height: auto; border-radius: 16px; }
    .home-panel__visual--shield { max-width: 280px; }

    .home-security-cards {
      list-style: none; display: flex; flex-direction: column; gap: 24px;
      margin: 24px 0 0; padding: 0;
    }
    .home-security-card {
      width: 100%; background: #fff; border: 1px solid #dbdce5;
      border-radius: 20px; padding: 32px; display: grid; gap: 20px;
    }
    .home-security-card__title {
      font-family: var(--font-display); font-size: 25px; font-weight: 700; line-height: 27px;
    }
    .home-security-card__icon { width: auto; height: 100px; margin: 0 auto; display: block; object-fit: contain; }
    .home-security-card__text { font-size: 15px; color: var(--text-muted); line-height: 22px; }

    .home-web3 { padding: 0; margin-bottom: 48px; }
    .home-web3__grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch;
    }
    .home-web3__card {
      border: 1px solid #dbdce5; border-radius: 20px; padding: 32px; background: #f4f4f7;
      display: flex; flex-direction: column; justify-content: center; gap: 28px;
    }
    .home-web3__title {
      font-family: var(--font-display); font-size: clamp(24px, 2.5vw, 30px); font-weight: 700;
      line-height: 33px; color: #1b1b1c;
    }
    .home-web3__text { font-size: 15px; color: #242426; line-height: 22px; }
    .home-web3__video-mobile {
      display: none; border-radius: 20px; overflow: hidden; background: #171717;
    }
    .home-web3__asset { display: none; width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
    .home-web3__asset--active { display: block; }
    .home-web3__media {
      display: none; border-radius: 20px; overflow: hidden; background: #171717;
      align-items: center; justify-content: center;
    }
    .home-web3-tabs__list { max-width: 280px; }

    .home-reviews { padding: 0; margin-bottom: 64px; }
    .home-reviews__head {
      text-align: center; max-width: 760px; margin: 0 auto;
      display: flex; flex-direction: column; gap: 12px;
    }
    .home-reviews__title {
      font-family: var(--font-display); font-size: clamp(24px, 2.5vw, 32px); font-weight: 700;
      line-height: 1.34; margin-bottom: 0; color: #1b1b1c;
    }
    .home-reviews__text { font-size: 18px; color: #242426; line-height: 26px; }
    .home-reviews__date { font-size: 15px; color: var(--text-muted); opacity: .7; margin-top: 0; }
    .home-reviews__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
    .home-review-card {
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      border: 1px solid #dbdce5; border-radius: 20px; padding: 32px; background: #f4f4f7;
    }
    .home-review-card__numbers { display: flex; align-items: baseline; gap: 4px; }
    .home-review-card__value {
      font-family: var(--font-display); font-size: clamp(36px, 4vw, 52px); font-weight: 700;
      line-height: 1.154; color: #1b1b1c;
    }
    .home-review-card__max {
      font-family: var(--font-display); font-size: 25px; color: #1b1b1c; font-weight: 700; line-height: 27px;
    }
    .home-review-card__stars { display: flex; gap: 2px; margin: 8px 0; }
    .home-review-card__count { font-size: 15px; color: var(--text-muted); opacity: .7; }
    .home-review-card__badge { width: 86px; height: 86px; object-fit: contain; flex-shrink: 0; }
    .home-reviews__cta { text-align: center; margin-top: 40px; }

    .home-community { padding: 48px 0 72px; }
    .home-community__title {
      font-family: var(--font-display); font-size: clamp(24px, 2.5vw, 30px); font-weight: 700;
      line-height: 1.1; max-width: 28ch;
    }
    .home-community__text { font-size: 18px; color: var(--text-muted); line-height: 26px; max-width: 50ch; margin-top: 16px; }
    .home-testimonials {
      list-style: none; display: flex; gap: 24px; overflow-x: auto; padding: 36px 0 0; margin: 0;
      scroll-snap-type: x mandatory;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    .home-testimonials::-webkit-scrollbar { display: none; }
    .home-testimonial { min-width: 280px; flex: 1; scroll-snap-align: start; }
    .home-testimonial__photo-wrap {
      display: block; position: relative; overflow: hidden; border-radius: 20px; margin-bottom: 16px;
    }
    .home-testimonial__photo-wrap--blue::after {
      content: ""; position: absolute; inset: 0; background: var(--blue); opacity: .55; mix-blend-mode: screen;
    }
    .home-testimonial__photo { width: 100%; height: 253px; object-fit: cover; display: block; }
    .home-testimonial__author { display: block; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
    .home-testimonial__text { font-size: 15px; color: var(--text-muted); line-height: 22px; }
    .home-community__actions {
      display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 36px;
    }

    @media (min-width: 769px) {
      .hero-trust { flex-wrap: nowrap; align-items: flex-start; gap: 96px; }
      .home-stacks { padding: 0 40px; margin-bottom: 48px; gap: 48px; }
      .home-stack { border-radius: 30px; }
      .home-stack--blue { padding: 80px 40px; }
      .home-stack--overlap { margin-top: -160px; padding: 128px 40px 64px; }
      .home-panel { flex-direction: row; padding: 56px 32px; align-items: center; border-radius: 30px; margin-top: 8px; }
      .home-panel__copy { flex: 1; }
      .home-panel__visual { width: 50%; max-width: 445px; }
      .home-security-cards { flex-direction: row; align-items: stretch; }
      .home-security-card { flex: 1 1 0; min-width: 0; border-radius: 30px; min-height: 366px; }
      .home-web3__card, .home-web3__media { border-radius: 30px; }
      .home-web3__grid { min-height: 450px; }
      .home-web3__media { display: flex; }
      .home-dev__card { flex-direction: row; border-radius: 30px; padding: 64px 100px; }
      .home-dev__title { font-size: 32px; line-height: 43px; }
      .home-dev__art img { width: 220px; max-width: 220px; }
      .home-testimonial { min-width: 0; }
      .home-testimonials { overflow-x: visible; }
      .home-testimonial__photo { height: 506px; }
    }

    @media (max-width: 768px) {
      .hero-home__grid { grid-template-columns: 1fr; }
      .hero-home__visual { order: -1; }
      .hero-connect-mobile { display: inline-flex; }
      .hero-connect-desktop { display: none; }
      .hero-trust { gap: 24px; }
      .home-promo { padding: 0 24px; margin-top: 16px; margin-bottom: 40px; }
      .home-dev { padding: 0 24px; margin-bottom: 40px; }
      .home-dev__card { padding: 40px 20px; }
      .home-stacks { padding: 0 24px; margin-bottom: 24px; gap: 40px; }
      .page-max, .page-max--inset { padding-left: 24px; padding-right: 24px; }
      .home-stack--overlap { margin-top: -80px; padding-top: 96px; }
      .home-chain-card__head span:nth-child(n+5), .home-chain-card__row span:nth-child(n+5) { display: none; }
      .home-chain-card { padding: 20px 16px 12px; }
      .home-chain-card__head,
      .home-chain-card__row {
        grid-template-columns: minmax(0, 1fr) 40px 40px 40px;
        gap: 8px;
        padding: 10px 0;
      }
      .home-chain-card__head { font-size: 13px; line-height: 18px; }
      .home-chain-card__row { font-size: 13px; line-height: 18px; }
      .chain-name { font-size: 13px; line-height: 18px; gap: 6px; }
      .chain-name img { width: 28px; height: 28px; }
      .home-stats, .home-reviews__grid, .home-web3__grid { grid-template-columns: 1fr; }
      .home-web3__video-mobile { display: block; }
      .home-web3__media { display: none; }
    }

    @media (max-width: 900px) {
      .info-grid, .info-grid--3, .blog-grid, .price-stats { grid-template-columns: 1fr; }
    }
