html {
      scroll-behavior: smooth;
      min-height: 100%;
      overflow-x: hidden;
      overflow-y: auto;
      /* Premium Design: Brand-aligned custom scrollbars */
      scrollbar-color: var(--primary) var(--surface-2);
      scrollbar-width: thin;
    }

    body {
      min-height: 100%;
      font-family: 'Red Hat Display', system-ui, -apple-system, sans-serif;
      color: #1a202c;
      background: #fff;
      overflow-x: hidden;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    

    .wrap {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 52px;
    }

    @media (max-width: 800px) {
      .wrap {
        padding: 0 24px;
      }
    }

    /* ── TYPE ── */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: -.01em;
      color: var(--rose);
      border: 1.5px solid rgba(186, 83, 95, .38);
      border-radius: 8px;
      padding: 7px 20px;
      margin-bottom: 24px;
      background: transparent;
    }

    .h2 {
      font-size: clamp(30px, 3.8vw, 50px);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -.035em;
      color: var(--navy);
      margin-bottom: 18px;
    }

    .h2 em {
      font-style: normal;
      color: var(--primary);
    }

    .lead {
      font-size: clamp(15px, 1.5vw, 17px);
      line-height: 1.78;
      color: var(--muted);
    }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: inherit;
      font-size: 15px;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 8px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all .18s ease;
      letter-spacing: -.01em;
      white-space: nowrap;
    }

    .btn--primary {
      background: var(--primary);
      color: #fff;
      /* Premium Design: Tighter, brand-linked semi-transparent shadows using color-mix */
      box-shadow: 0 4px 14px color-mix(in srgb, var(--primary) 32%, transparent);
    }

    .btn--primary:hover {
      background: var(--primary-d);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px color-mix(in srgb, var(--primary) 45%, transparent);
    }

    .btn--white {
      background: #fff;
      color: var(--primary);
      box-shadow: 0 4px 18px rgba(0, 0, 0, .16);
    }

    .btn--white:hover {
      background: #f9f0f5;
      transform: translateY(-1px);
    }

    /* ── NAV OVERRIDE (For styling fallback if partial fails to inject) ── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, .94);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .nav__inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 52px;
      height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .nav__logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }

    .nav__logo svg {
      height: 27px;
      width: auto;
    }

    .nav__links {
      display: flex;
      align-items: center;
      gap: 30px;
      list-style: none;
    }

    .nav__links a {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      transition: color .15s;
      letter-spacing: -.01em;
    }

    .nav__links a:hover {
      color: var(--ink);
    }

    @media (max-width: 940px) {
      .nav__links {
        display: none;
      }

      .nav__inner {
        padding: 0 24px;
      }
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, #a11e5c 0%, #BA535F 100%);
      position: relative;
      overflow: hidden;
    }

    .hero__glow {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(ellipse 55% 60% at 5% 100%, rgba(0, 0, 0, .18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 95% 0%, rgba(255, 255, 255, .08) 0%, transparent 55%);
    }

    .hero__grid {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image: radial-gradient(circle, rgba(0, 0, 0, .1) 1px, transparent 1px);
      background-size: 30px 30px;
    }

    .hero__inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 108px 52px 104px;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 560px) 1fr;
      align-items: center;
      gap: 0;
    }

    .hero__content {
      position: relative;
      z-index: 2;
    }

    .hero__visual {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      margin-right: -52px;
      pointer-events: none;
    }

    .hero__visual img {
      width: 100%;
      mix-blend-mode: screen;
      display: block;
      user-select: none;
      filter: drop-shadow(0 32px 64px rgba(0, 0, 0, .2));
    }

    @media (max-width: 960px) {
      .hero__visual {
        display: none;
      }

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

    .hero__tag {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .65);
      margin-bottom: 30px;
    }

    .hero__tag-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .9);
      flex-shrink: 0;
    }

    .hero__title {
      font-size: clamp(40px, 5.5vw, 70px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -.04em;
      color: #fff;
      margin-bottom: 28px;
    }

    .hero__sub {
      font-size: clamp(15px, 1.65vw, 18px);
      line-height: 1.76;
      color: rgba(255, 255, 255, .78);
      max-width: 580px;
      margin-bottom: 48px;
    }

    .hero__cta-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    @media (max-width: 768px) {
      .hero__inner {
        padding: 88px 24px 72px;
      }
    }

    /* ── LOGO MARQUEE (Optimized using Grayscale CSS Filters - 50% fewer HTTP requests and DOM nodes) ── */
    .marquee-section {
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 36px 0;
      overflow: hidden;
    }

    .marquee-label {
      text-align: center;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--subtle);
      margin-bottom: 28px;
    }

    .marquee-track {
      display: flex;
      gap: 64px;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    }

    .marquee-reel {
      display: flex;
      align-items: center;
      gap: 64px;
      flex-shrink: 0;
      animation: marquee-scroll 44s linear infinite;
      will-change: transform;
    }

    .marquee-track:hover .marquee-reel {
      animation-play-state: paused;
    }

    .marquee-logo {
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
    }

    .marquee-logo img {
      height: 34px;
      width: auto;
      display: block;
      /* Grayscale filter transition makes separate gray assets redundant */
      filter: grayscale(1) opacity(0.45);
      transition: filter .25s ease, opacity .25s ease;
      will-change: filter, opacity;
    }

    .marquee-logo:hover img {
      filter: grayscale(0) opacity(1);
    }

    @keyframes marquee-scroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* ── TRUST BAR ── */
    .trust {
      background: #fff;
      padding: 44px 0 52px;
      border-bottom: 1px solid var(--border);
    }

    .trust__inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 52px;
    }

    .trust__top {
      display: flex;
      align-items: flex-start;
      gap: 40px;
    }

    .trust__label {
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      white-space: nowrap;
      padding-top: 5px;
    }

    .trust__logos {
      flex: 1;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }

    .trust__pill {
      font-size: 13px;
      font-weight: 500;
      color: var(--muted);
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 6px 16px;
      border-radius: 100px;
      white-space: nowrap;
    }

    @media (max-width: 820px) {
      .trust__inner {
        padding: 0 24px;
      }

      .trust__top {
        flex-direction: column;
        gap: 16px;
      }
    }

    /* ── PARTNERSHIP BANNER ── */
    .partner-banner-sec {
      padding: 48px 0 0;
    }

    .partner-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    @media (max-width: 768px) {
      .partner-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
    }

    .partner-banner {
      display: block;
      width: 100%;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(13, 17, 23, 0.04);
      border: 1px solid var(--border);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .partner-banner:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(13, 17, 23, 0.1);
    }

    .partner-banner img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    /* ── THREE LAYERS (doors pattern) ── */
    .doors {
      padding: var(--pad) 0;
    }

    .doors__intro {
      max-width: 620px;
      margin-bottom: 48px;
    }

    .doors__grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 8px 48px rgba(0, 0, 0, .09), 0 2px 8px rgba(0, 0, 0, .05);
    }

    .door {
      padding: 52px 44px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    .door__ghost {
      position: absolute;
      bottom: -12px;
      right: 20px;
      font-size: 140px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -.06em;
      pointer-events: none;
      user-select: none;
      z-index: 0;
    }

    .door--build {
      background: linear-gradient(155deg, #ffffff 0%, #fef4f5 100%);
      border-right: 1px solid var(--border);
    }

    .door--build::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 65% 55% at 120% 115%, rgba(186, 83, 95, .13) 0%, transparent 55%);
    }

    .door--build .door__ghost {
      color: rgba(186, 83, 95, .07);
    }

    .door--serve {
      background: #fff;
      border-right: 1px solid var(--border);
    }

    .door--serve .door__ghost {
      color: rgba(0, 0, 0, .04);
    }

    .door--operate {
      background: #01b6b1;
    }

    .door--operate::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 60% 55% at 100% 100%, rgba(0, 0, 0, .12) 0%, transparent 60%);
    }

    .door--operate .door__ghost {
      color: rgba(255, 255, 255, .08);
    }

    .door__content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .door__layer-tag {
      display: inline-flex;
      align-items: center;
      font-size: 10px;
      font-weight: 700;
      padding: 4px 13px;
      border-radius: 100px;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: .1em;
      align-self: flex-start;
    }

    .door--build .door__layer-tag {
      background: var(--rose-l);
      color: var(--rose);
      border: 1px solid var(--rose-m);
    }

    .door--serve .door__layer-tag {
      background: var(--surface);
      color: var(--muted);
      border: 1px solid var(--border);
    }

    .door--operate .door__layer-tag {
      background: rgba(255, 255, 255, .18);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .3);
    }

    .door__name {
      font-size: clamp(20px, 2vw, 26px);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .door--build .door__name {
      color: var(--navy);
    }

    .door--serve .door__name {
      color: var(--navy);
    }

    .door--operate .door__name {
      color: #fff;
    }

    .door__subtitle {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .04em;
      margin-bottom: 20px;
    }

    .door--build .door__subtitle {
      color: var(--rose);
    }

    .door--serve .door__subtitle {
      color: var(--muted);
    }

    .door--operate .door__subtitle {
      color: rgba(255, 255, 255, .6);
    }

    .door__desc {
      font-size: 14px;
      line-height: 1.73;
      margin-bottom: 24px;
      flex: 1;
    }

    .door--build .door__desc {
      color: var(--muted);
    }

    .door--serve .door__desc {
      color: var(--muted);
    }

    .door--operate .door__desc {
      color: rgba(255, 255, 255, .82);
    }

    .door__list {
      list-style: none;
      margin-bottom: 32px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .door__list li {
      font-size: 13px;
      padding-left: 18px;
      position: relative;
      line-height: 1.5;
    }

    .door__list li::before {
      content: '→';
      position: absolute;
      left: 0;
      font-weight: 700;
    }

    .door--build .door__list li {
      color: var(--ink);
    }

    .door--build .door__list li::before {
      color: var(--rose);
    }

    .door--serve .door__list li {
      color: var(--ink);
    }

    .door--serve .door__list li::before {
      color: var(--subtle);
    }

    .door--operate .door__list li {
      color: rgba(255, 255, 255, .88);
    }

    .door--operate .door__list li::before {
      color: rgba(255, 255, 255, .9);
    }

    .ewa-link,
    .ewa-link:visited,
    .ewa-link:hover,
    .ewa-link:active {
      color: #ffffff !important;
      text-decoration: underline !important;
      font-weight: 600 !important;
    }

    .door__cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      margin-top: auto;
      transition: gap .18s;
    }

    .door--build .door__cta {
      color: var(--rose);
    }

    .door--serve .door__cta {
      color: var(--muted);
    }

    .door--operate .door__cta {
      color: #fff;
    }

    .door__cta:hover {
      gap: 12px;
    }

    @media (max-width: 960px) {
      .doors__grid {
        grid-template-columns: 1fr;
      }

      .door--build {
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      .door--serve {
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      .door {
        padding: 36px 28px;
      }

      .door__ghost {
        font-size: 100px;
      }
    }

    /* ── FOUNDATION (difference) ── */
    .foundation {
      padding: var(--pad) 0;
      background: #fff;
      position: relative;
      overflow: hidden;
    }

    .foundation__intro {
      max-width: 600px;
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
    }

    .foundation__body {
      max-width: 700px;
      margin-bottom: 56px;
      position: relative;
      z-index: 2;
    }

    .foundation__body p {
      font-size: 15.5px;
      line-height: 1.8;
      color: var(--muted);
      margin-bottom: 16px;
    }

    .foundation__body p:last-child {
      margin-bottom: 0;
    }

    .foundation__card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: 0 4px 32px rgba(0, 0, 0, .06), 0 1px 4px rgba(0, 0, 0, .04);
      padding: 52px 56px 60px;
      position: relative;
      z-index: 2;
    }

    .foundation__card-label {
      font-size: 22px;
      font-weight: 500;
      color: var(--navy);
      letter-spacing: -.02em;
      margin-bottom: 44px;
    }

    .foundation__cols {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto auto;
      column-gap: 48px;
      row-gap: 0;
    }

    .foundation__col {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 3;
    }

    .foundation__col-num {
      font-size: 52px;
      font-weight: 300;
      line-height: 1;
      color: #c8c8c8;
      letter-spacing: -.03em;
      padding-bottom: 10px;
      align-self: start;
    }

    .foundation__col-title {
      font-size: clamp(22px, 2.2vw, 32px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -.03em;
      color: var(--navy);
      padding-bottom: 16px;
      text-transform: lowercase;
      align-self: start;
    }

    .foundation__col-text {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.72;
      align-self: start;
    }

    .foundation__phone {
      position: absolute;
      right: max(-60px, calc(50% - 640px));
      bottom: 60px;
      width: clamp(240px, 24vw, 320px);
      pointer-events: none;
      user-select: none;
      z-index: 1;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .12));
    }

    @media (max-width: 900px) {
      .foundation__phone {
        display: none;
      }
    }

    @media (max-width: 780px) {
      .foundation__card {
        padding: 36px 28px 44px;
      }

      .foundation__cols {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .foundation__col-num {
        font-size: 40px;
      }
    }

    /* ── SERVICES ── */
    .services {
      padding: var(--pad) 0;
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .services__intro {
      max-width: 560px;
      margin-bottom: 20px;
    }

    .services__body {
      max-width: 660px;
      margin-bottom: 44px;
    }

    .services__body p {
      font-size: 15.5px;
      line-height: 1.8;
      color: var(--muted);
    }

    .services__cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 40px;
    }

    .services__card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px 28px 26px;
      transition: box-shadow .2s;
    }

    .services__card:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
    }

    .services__card-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--rose);
      margin-bottom: 10px;
    }

    .services__card-text {
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.66;
    }

    .services__link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 700;
      color: var(--primary);
      text-decoration: none;
      transition: gap .18s;
    }

    .services__link:hover {
      gap: 13px;
    }

    @media (max-width: 720px) {
      .services__cards {
        grid-template-columns: 1fr;
      }
    }

    /* ── SERVICES ROSE ── */
    .services--rose {
      background: #BA535F;
      border-top: none;
      border-bottom: none;
      position: relative;
      overflow: hidden;
    }

    /* ── CTA ── */
    .cta-section {
      background: var(--navy);
      position: relative;
      overflow: hidden;
      padding: clamp(88px, 11vw, 120px) 0;
      text-align: center;
    }

    .cta-section__glow {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 58% 72% at 50% 50%, rgba(161, 30, 92, .24) 0%, transparent 62%);
    }

    .cta-section__dots {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image: radial-gradient(circle, rgba(255, 255, 255, .035) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    .cta-section__inner {
      position: relative;
      z-index: 1;
    }

    .cta-section__inner h2 {
      font-size: clamp(36px, 4.5vw, 58px);
      font-weight: 800;
      color: #fff;
      margin-bottom: 18px;
      letter-spacing: -.045em;
    }

    .cta-section__inner p {
      font-size: clamp(15px, 1.65vw, 17px);
      color: rgba(255, 255, 255, .8);
      font-weight: 500;
      max-width: 520px;
      margin: 0 auto 44px;
      line-height: 1.76;
    }

    /* ── FOOTER ── */
    .footer {
      background: var(--navy);
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding: 44px 0;
    }

    .footer__inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 52px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer__logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }

    .footer__logo svg {
      height: 24px;
      width: auto;
    }

    .footer__links {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .footer__links a {
      font-size: 13px;
      color: rgba(255, 255, 255, .4);
      text-decoration: none;
      transition: color .15s;
    }

    .footer__links a:hover {
      color: rgba(255, 255, 255, .75);
    }

    .footer__copy {
      font-size: 12px;
      color: rgba(255, 255, 255, .25);
      max-width: 1120px;
      margin: 24px auto 0;
      padding: 24px 52px 0;
      border-top: 1px solid rgba(255, 255, 255, .06);
    }

    @media (max-width: 800px) {
      .footer__inner {
        padding: 0 24px;
      }

      .footer__copy {
        padding-left: 24px;
        padding-right: 24px;
      }
    }

    /* ── STABLECOIN PROMO SECTION ── */
    .stablecoin-promo {
      padding: 80px 0;
      background: #00b5b0;
    }

    .stablecoin-card {
      background: #ffffff;
      border-radius: 24px;
      padding: 48px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
      display: grid;
      grid-template-columns: 360px 1fr;
      grid-template-rows: auto auto;
      gap: 24px 64px;
      align-items: end;
      /* Align Row 1 items (title and text) to their bottom edges */
      position: relative;
      /* Absolute positioning context for image */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .stablecoin-card:hover {
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
      transform: translateY(-2px);
    }

    .stablecoin-card__image {
      position: absolute;
      top: -68px;
      /* Bleed over the top edge */
      left: 170px;
      /* Shift right (between columns) */
      width: 220px;
      /* Significantly larger to match reference */
      height: auto;
      transform: rotate(-12deg);
      filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15));
      z-index: 10;
      pointer-events: none;
      display: block;
    }

    .stablecoin-card__left {
      grid-column: 1;
      grid-row: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      /* Pull badge closer to title */
    }

    .badge-live {
      display: inline-flex;
      align-items: center;
      padding: 6px 14px;
      background: #b34d5b;
      /* soft, warm reddish-berry */
      color: #ffffff;
      font-size: 13px;
      font-weight: 700;
      text-transform: none;
      /* Keep natural capitalization like 'Now Live' */
      border-radius: 8px;
      line-height: 1;
    }

    .stablecoin-card__title {
      font-size: 32px;
      font-weight: 700;
      color: #000000;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin: 0;
    }

    .stablecoin-card__text {
      grid-column: 2;
      grid-row: 1;
      font-size: 15px;
      line-height: 1.7;
      color: #333333;
      margin: 0;
    }

    .stablecoin-card__btn {
      grid-column: 2;
      grid-row: 2;
      justify-self: start;
      /* Align button to start of column 2 */
      display: inline-flex;
      align-items: center;
      padding: 10px 24px;
      border: 1.5px solid #00b5b0;
      border-radius: 8px;
      color: #00b5b0;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }

    .stablecoin-card__btn:hover {
      background: #00b5b0;
      color: #ffffff;
      box-shadow: 0 4px 12px rgba(0, 181, 176, 0.25);
      transform: translateY(-1px);
    }

    @media (max-width: 900px) {
      .stablecoin-promo {
        padding: 64px 0 48px;
      }

      .stablecoin-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 24px;
        padding: 32px 24px;
      }

      .stablecoin-card__left {
        grid-column: auto;
        grid-row: auto;
        align-items: center;
        text-align: center;
      }

      .stablecoin-card__title {
        font-size: 26px;
      }

      .stablecoin-card__image {
        position: relative;
        top: 0;
        left: 0;
        margin: -84px auto 16px;
        /* Offset more for larger size */
        width: 170px;
        /* Larger on mobile as well */
        transform: rotate(-6deg);
        display: block;
      }

      .stablecoin-card__text {
        grid-column: auto;
        grid-row: auto;
        text-align: center;
      }

      .stablecoin-card__btn {
        grid-column: auto;
        grid-row: auto;
        justify-self: center;
      }
    }