﻿:root {
      --blue-1: #0A1F44;
      --blue-2: #0B4FC5;
      --blue-3: #0B5BE6;
      --green-1: #2EEA73;
      --green-2: #16A34A;
    }
    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; width: 100%; height: 100%; overflow: hidden; }
    body {
      font-family: "Manrope", system-ui, -apple-system, Segoe UI, sans-serif;
      background: transparent;
    }
    .banner {
      position: relative;
      width: 100%;
      height: 116px;
      border-radius: 24px;
      padding: 10px 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      background:
        radial-gradient(circle at 92% 12%, rgba(255,255,255,.20), transparent 28%),
        linear-gradient(135deg, var(--blue-1), var(--blue-2) 58%, var(--blue-3));
      box-shadow: 0 10px 26px rgba(10,31,68,.22);
      isolation: isolate;
    }
    .ticker {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 28px;
      overflow: hidden;
      border-bottom: 1px solid rgba(255,255,255,.16);
      background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.03));
      z-index: 2;
    }
    .ticker-marquee {
      display: flex;
      width: max-content;
      will-change: transform;
    }
    .ticker-track {
      display: inline-flex;
      align-items: center;
      gap: 28px;
      white-space: nowrap;
      padding: 6px 0;
      padding-right: 28px;
      color: rgba(255,255,255,.92);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
    }
    .banner::before {
      content: "";
      position: absolute;
      right: -100px;
      bottom: -150px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: rgba(255,255,255,.10);
      pointer-events: none;
      animation: drift 8s ease-in-out infinite;
    }
    h2 {
      margin: 0;
      color: #fff;
      font-family: "Manrope", "Manrope", system-ui, sans-serif;
      font-size: clamp(18px, 1.8vw, 24px);
      line-height: 1.04;
      letter-spacing: -0.02em;
      white-space: nowrap;
      background: linear-gradient(90deg, #ffffff, #d8e7ff, #ffffff);
      background-size: 180% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: settle .8s ease both, headlineShift 4.8s ease-in-out infinite;
    }
    .cta {
      position: relative;
      border: 0;
      border-radius: 14px;
      min-height: 44px;
      padding: 10px 16px;
      color: #fff;
      font-weight: 900;
      font-size: 13px;
      letter-spacing: .01em;
      text-transform: uppercase;
      cursor: pointer;
      background: linear-gradient(135deg, var(--green-1), var(--green-2) 55%, #0e8a3d);
      box-shadow: 0 12px 28px rgba(22,163,74,.38);
      transition: transform .22s ease, box-shadow .22s ease;
      overflow: hidden;
      animation: settle .9s ease both;
    }
    .cta::after {
      content: "";
      position: absolute;
      top: -140%;
      left: -40%;
      width: 38%;
      height: 350%;
      transform: rotate(18deg);
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
      animation: shine 2.8s ease-in-out infinite;
      pointer-events: none;
    }
    .cta:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 18px 36px rgba(22,163,74,.5);
    }
    .arrow {
      display: inline-block;
      margin-left: 8px;
      animation: nudge 1s ease-in-out infinite;
    }
    @keyframes shine {
      0% { left: -40%; opacity: 0; }
      20% { opacity: .9; }
      60% { left: 120%; opacity: 0; }
      100% { left: 120%; opacity: 0; }
    }
    @keyframes nudge {
      0%,100% { transform: translateX(0); }
      50% { transform: translateX(4px); }
    }
    @keyframes drift {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    @keyframes headlineShift {
      0%,100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    @keyframes settle {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @media (max-width: 760px) {
      .banner {
        height: 166px;
        padding: 14px;
        flex-direction: column;
        gap: 12px;
      }
      .ticker { height: 26px; }
      .ticker-track { font-size: 10px; gap: 18px; padding-right: 18px; }
      h2 { white-space: normal; text-align: center; }
    }




