  :root {
    --bg: #060B0A;
    --panel: #0C1614;
    --panel-2: #0F1D1A;
    --line: rgba(57, 255, 158, .14);
    --line-strong: rgba(57, 255, 158, .32);
    --accent: #39FF9E;
    --accent-2: #00D9C0;
    --accent-dim: #1E8A5F;
    --warn: #FFB020;
    --warn-dim: #3A2A0C;
    --text: #EAF7F1;
    --muted: #8CA39B;
    --muted-2: #5B7169;
    --red: #FF5C5C;
    --radius: 14px;
    --maxw: 1180px;
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3, .display {
    font-family: 'Space Grotesk', sans-serif;
  }

  .mono {
    font-family: 'JetBrains Mono', monospace;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  img, video {
    max-width: 100%;
    display: block;
  }

  .wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
  }

  ::selection {
    background: var(--accent);
    color: #04120C;
  }

  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: .001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .001ms !important;
      scroll-behavior: auto !important;
    }
  }

  /* ---------- NAV ---------- */
  header.topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(6, 11, 10, .72);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }

  .nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .02em;
  }

  .logo .mark {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #04120C;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 0 18px rgba(57, 255, 158, .45);
  }

  .logo__img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    background: #000;
    transition: transform var(--transition);
  }

  .navlinks {
    display: flex;
    gap: 28px;
    font-size: 14px;
    color: var(--muted);
  }

  .navlinks a:hover {
    color: var(--accent);
  }

  .lang-switch {
    display: flex;
    gap: 2px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 3px;
  }

  .lang-switch button {
    border: none;
    background: transparent;
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    letter-spacing: .04em;
    transition: .2s;
  }

  .lang-switch button.active {
    background: var(--accent);
    color: #04120C;
  }

  .navlinks {
    display: none;
  }

  @media(min-width:860px) {
    .navlinks {
      display: flex;
    }
  }

  /* ---------- TICKER ---------- */
  .ticker-strip {
    margin-top: 58px;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    position: relative;
    height: 38px;
    display: flex;
    align-items: center;
  }

  .ticker-track {
    display: flex;
    gap: 36px;
    white-space: nowrap;
    animation: tickerScroll 32s linear infinite;
    padding-left: 100%;
  }

  @keyframes tickerScroll {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-100%);
    }
  }

  .tick-item {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--muted);
  }

  .tick-item b {
    color: var(--text);
    font-weight: 600;
  }

  .tick-up {
    color: var(--accent);
  }

  .tick-down {
    color: var(--red);
  }

  .tick-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-dim);
  }

  /* ---------- HERO ---------- */
  .hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #040805;
  }

  .hero-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
  }

  .hero-bg canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-scrim {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 30% 20%, rgba(57, 255, 158, .10), transparent 60%),
      linear-gradient(180deg, rgba(6, 11, 10, .55) 0%, rgba(6, 11, 10, .75) 55%, var(--bg) 100%);
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    padding: 120px 24px 90px;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    letter-spacing: .08em;
    color: var(--accent);
    border: 1px solid var(--line-strong);
    padding: 6px 14px 6px 10px;
    border-radius: 999px;
    margin-bottom: 22px;
    background: rgba(57, 255, 158, .06);
  }

  .eyebrow .pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: pulse 1.8s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }

    50% {
      opacity: .35;
    }
  }

  .hero h1 {
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.05;
    font-weight: 700;
    margin: 0 0 20px;
    max-width: 780px;
    letter-spacing: -.01em;
  }

  .hero h1 .accent-word {
    color: var(--accent);
    text-shadow: 0 0 24px rgba(57, 255, 158, .35);
  }

  .hero p.lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 560px;
    margin: 0 0 34px;
  }

  .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: .2s ease;
    font-family: 'Inter', sans-serif;
  }

  .btn-primary {
    background: var(--accent);
    color: #04120C;
    box-shadow: 0 0 24px rgba(57, 255, 158, .35);
  }

  .btn-primary:hover {
    background: #5CFFB2;
    transform: translateY(-1px);
  }

  .btn-ghost {
    background: transparent;
    border-color: var(--line-strong);
    color: var(--text);
  }

  .btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  .btn-warn {
    background: var(--warn);
    color: #241703;
  }

  .btn-warn:hover {
    background: #FFC152;
  }

  .btn-block {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
  }

  .hero-stats .stat {
    padding: 22px 24px;
    border-right: 1px solid var(--line);
  }

  .hero-stats .stat:last-child {
    border-right: none;
  }

  .hero-stats .stat b {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    color: var(--accent);
  }

  .hero-stats .stat span {
    font-size: 12.5px;
    color: var(--muted);
  }

  /* ---------- WELCOME ---------- */
  .welcome-section {
    background: var(--bg);
  }

  .welcome-head {
    max-width: 760px;
    margin-bottom: 48px;
    text-align: center;
  }

  .welcome-head h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin: 0 0 18px;
    line-height: 1.15;
  }

  .welcome-head p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 8px;
  }

  .feature-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: .2s;
    display: flex;
    flex-direction: column;
  }

  .feature-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-3px);
  }

  .feature-card .icon {
    font-size: 42px;
    margin-bottom: 16px;
    display: block;
  }

  .feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    margin: 0 0 12px;
    line-height: 1.3;
  }

  .feature-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
  }

  @media(max-width:760px) {
    .welcome-head {
      margin-bottom: 32px;
    }

    .feature-grid {
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 16px;
    }

    .feature-card {
      padding: 20px 16px;
    }

    .feature-card .icon {
      font-size: 36px;
      margin-bottom: 12px;
    }

    .feature-card h3 {
      font-size: 15px;
    }
  }

  /* ---------- SECTION shell ---------- */
  section {
    padding: 90px 0;
  }

  .section-head {
    max-width: 640px;
    margin: 0 0 48px;
  }

  .kicker {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: .1em;
    color: var(--accent-2);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
  }

  .section-head h2 {
    font-size: clamp(26px, 3.4vw, 38px);
    margin: 0 0 12px;
    line-height: 1.15;
  }

  .section-head p {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0;
  }

  /* ---------- FX / crypto convert widget ---------- */
  .fx-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    margin-bottom: 20px;
  }

  .fx-item {
    border-right: 1px solid var(--line);
    padding-right: 18px;
  }

  .fx-item:last-child {
    border-right: none;
    padding-right: 0;
  }

  .fx-item .fx-label {
    font-size: 12px;
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: .04em;
  }

  .fx-item .fx-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    margin-top: 4px;
  }

  .fx-item .fx-chg {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    margin-top: 2px;
  }

  .fx-note {
    font-size: 12.5px;
    color: var(--muted-2);
    margin-top: -6px;
  }

  /* ---------- CTA BLOCK ---------- */
  .cta-block {
    background: linear-gradient(135deg, rgba(57, 255, 158, .12), rgba(0, 217, 192, .08));
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 60px;
  }

  .cta-block h2 {
    font-size: clamp(22px, 2.5vw, 28px);
    margin: 0 0 14px;
    line-height: 1.2;
  }

  .cta-block p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 580px;
  }

  .cta-block .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .cta-block .btn {
    flex: 1;
    min-width: 160px;
  }

  @media(max-width:640px) {
    .cta-block {
      padding: 28px;
      margin-bottom: 40px;
    }

    .cta-block .btn-group {
      flex-direction: column;
    }

    .cta-block .btn {
      width: 100%;
    }
  }

  /* ---------- FORM ---------- */
  .form-section {
    position: relative;
    overflow: hidden;
    background: var(--panel-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .form-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--panel-2);
  }

  .form-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .8s ease;
  }

  .form-bg video.is-ready {
    opacity: .90;
  }

  .form-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(12, 22, 20, .88) 0%, rgba(12, 22, 20, .94) 100%);
  }

  .form-section>.wrap {
    position: relative;
    z-index: 2;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }

  @media(min-width:900px) {
    .form-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  .form-side h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    margin: 0 0 14px;
  }

  .form-side p {
    color: var(--muted);
    line-height: 1.65;
    font-size: 15px;
  }

  .form-perks {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: grid;
    gap: 14px;
  }

  .form-perks li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14.5px;
    color: var(--text);
  }

  .form-perks .ico {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(57, 255, 158, .12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex: none;
    margin-top: 1px;
  }

  .lead-form {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
  }

  .field {
    margin-bottom: 18px;
  }

  .field label {
    display: block;
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 7px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: .03em;
  }

  .field input {
    width: 100%;
    background: #04100C;
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 13px 14px;
    color: var(--text);
    font-size: 14.5px;
    font-family: 'Inter', sans-serif;
    transition: .15s;
  }

  .field input::placeholder {
    color: var(--muted-2);
  }

  .field input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(57, 255, 158, .12);
  }

  .field.error input {
    border-color: var(--red);
  }

  .field .err-msg {
    display: none;
    color: var(--red);
    font-size: 12px;
    margin-top: 6px;
    font-family: 'JetBrains Mono', monospace;
  }

  .field.error .err-msg {
    display: block;
  }

  .field-hint {
    font-size: 11.5px;
    color: var(--muted-2);
    margin-top: 6px;
  }

  .form-status {
    margin-top: 14px;
    font-size: 13.5px;
    font-family: 'JetBrains Mono', monospace;
    min-height: 18px;
  }

  .form-status.ok {
    color: var(--accent);
  }

  .form-status.fail {
    color: var(--red);
  }

  .consent {
    font-size: 11.5px;
    color: var(--muted-2);
    margin-top: 14px;
    line-height: 1.5;
  }

  /* ---------- DEPARTMENTS ---------- */
  .dept-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  @media(min-width:760px) {
    .dept-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  .card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: .2s;
  }

  .card:hover {
    border-color: var(--line-strong);
    transform: translateY(-2px);
  }

  .card .card-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(57, 255, 158, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 19px;
  }

  .card h3 {
    margin: 0;
    font-size: 19px;
  }

  .card p {
    margin: 0;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.55;
    flex: 1;
  }

  .warn-card {
    background: linear-gradient(180deg, rgba(255, 176, 32, .08), rgba(255, 176, 32, .02));
    border: 1px solid rgba(255, 176, 32, .35);
  }

  .warn-card .card-ico {
    background: rgba(255, 176, 32, .15);
    color: var(--warn);
  }

  .warn-card h3 {
    color: var(--warn);
  }

  .info-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
  }

  @media(min-width:760px) {
    .info-strip {
      grid-template-columns: 1fr 1fr;
    }
  }

  /* ---------- FAQ ---------- */
  .faq-container {
    display: grid;
    gap: 12px;
    margin-top: 24px;
  }

  .faq-item {
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    background: var(--panel);
  }

  .faq-btn {
    width: 100%;
    padding: 18px 22px;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .2s;
    font-family: 'Inter', sans-serif;
  }

  .faq-btn:hover {
    color: var(--accent);
    background: rgba(57, 255, 158, .05);
  }

  .faq-btn .arrow {
    display: inline-block;
    transition: .3s;
    font-size: 18px;
  }

  .faq-item.active .faq-btn .arrow {
    transform: rotate(180deg);
  }

  .faq-content {
    display: none;
    padding: 0 22px 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
  }

  .faq-item.active .faq-content {
    display: block;
  }

  .faq-content ul {
    margin: 12px 0;
    padding-left: 20px;
    list-style: none;
  }

  .faq-content li {
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
  }

  .faq-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
  }

  /* ---------- SOCIAL ---------- */
  .social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .social-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--muted);
    transition: .2s;
    background: var(--panel);
    flex: none;
  }

  .social-pill svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .social-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(57, 255, 158, .08);
    transform: translateY(-2px);
  }

  .footer-bottom .social-row .social-pill {
    width: 36px;
    height: 36px;
  }

  .footer-bottom .social-row .social-pill svg {
    width: 16px;
    height: 16px;
  }

  /* ---------- FOOTER ---------- */
  footer {
    border-top: 1px solid var(--line);
    padding: 50px 0 30px;
    background: var(--bg);
  }

  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 34px;
  }

  .footer-brand .logo {
    margin-bottom: 12px;
  }

  .footer-brand p {
    color: var(--muted);
    font-size: 13.5px;
    max-width: 280px;
    line-height: 1.6;
  }

  .founder-box {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px 22px;
    min-width: 240px;
  }

  .founder-box .flabel {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    color: var(--muted);
    letter-spacing: .05em;
    margin-bottom: 8px;
  }

  .founder-box a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .founder-box a:hover {
    color: var(--accent);
  }

  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 22px;
    font-size: 12.5px;
    color: var(--muted-2);
  }

  .footer-bottom .social-row .social-pill {
    padding: 8px 14px;
    font-size: 12.5px;
  }

  .disclaimer-box {
    max-width: var(--maxw);
    margin: 0 auto 30px;
    padding: 0 24px;
  }

  .disclaimer-box .inner {
    background: var(--panel);
    border: 1px dashed var(--line-strong);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    font-family: 'JetBrains Mono', monospace;
  }

  /* ============================================================
     MOBILE ADAPTATION
     ============================================================ */
  @media(max-width:640px) {
    .wrap {
      padding: 0 16px;
    }

    .nav-inner {
      padding: 12px 16px;
    }

    .logo {
      font-size: 15px;
    }

    .logo .mark {
      width: 26px;
      height: 26px;
      font-size: 13px;
    }

    .ticker-strip {
      margin-top: 52px;
    }

    .hero {
      min-height: auto;
    }

    .hero-inner {
      padding: 56px 16px 46px;
    }

    .eyebrow {
      font-size: 11px;
      padding: 5px 12px 5px 8px;
    }

    .hero h1 {
      font-size: 30px;
    }

    .hero p.lead {
      font-size: 15px;
    }

    .cta-row {
      flex-direction: column;
    }

    .cta-row .btn {
      width: 100%;
      justify-content: center;
    }

    .hero-stats {
      grid-template-columns: 1fr;
    }

    .hero-stats .stat {
      border-right: none;
      border-bottom: 1px solid var(--line);
    }

    .hero-stats .stat:last-child {
      border-bottom: none;
    }

    section {
      padding: 56px 0;
    }

    .section-head h2 {
      font-size: 24px;
    }

    .fx-card {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px 12px;
      padding: 20px;
    }

    .fx-item {
      border-right: none;
      padding-right: 0;
      border-bottom: 1px solid var(--line);
      padding-bottom: 14px;
    }

    .fx-item:nth-last-child(-n+2) {
      border-bottom: none;
      padding-bottom: 0;
    }

    .fx-item .fx-val {
      font-size: 18px;
    }

    .lead-form {
      padding: 22px;
    }

    .founder-box {
      width: 100%;
    }

    .footer-top {
      flex-direction: column;
    }

    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }

    .social-pill {
      width: 42px;
      height: 42px;
    }

    .social-pill svg {
      width: 18px;
      height: 18px;
    }
  }

  @media(max-width:400px) {
    .hero h1 {
      font-size: 26px;
    }

    .fx-card {
      grid-template-columns: 1fr 1fr;
    }
  }