
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ink: #06101E;
    --ink2: #0D1A2D;
    --green: #F97316;
    --green-dim: #EA6C0A;
    --green-glow: rgba(249,115,22,0.18);
    --green-line: rgba(249,115,22,0.35);
    --muted: #8892A4;
    --surface: rgba(255,255,255,0.04);
    --border: rgba(255,255,255,0.08);
    --white: #FFFFFF;
    --text: #CBD5E1;
    --r: 16px;
    --r2: 24px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ink);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 5%;
    background: rgba(10,15,30,0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all .3s;
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem; font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--green); }

  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    color: var(--muted); text-decoration: none;
    font-size: .9rem; font-weight: 500;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--white); }

  .btn-primary {
    background: var(--green);
    color: #000; font-family: 'Syne', sans-serif;
    font-weight: 700; font-size: .88rem;
    padding: 11px 24px; border-radius: 50px;
    text-decoration: none; border: none; cursor: pointer;
    transition: all .2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover {
    background: #fff; transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(249,115,22,0.4);
  }

  .btn-outline {
    background: transparent;
    color: var(--white); font-family: 'Syne', sans-serif;
    font-weight: 600; font-size: .88rem;
    padding: 11px 24px; border-radius: 50px;
    text-decoration: none; border: 1px solid var(--border);
    cursor: pointer; transition: all .2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-outline:hover {
    border-color: var(--green); color: var(--green);
    background: var(--green-glow);
  }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 5% 80px;
    position: relative; overflow: hidden;
  }

  /* Radial mesh background */
  .hero::after {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 60% 60% at 70% 50%, rgba(249,115,22,0.1) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(59,130,246,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 80% 80% at 50% 0%, rgba(99,102,241,0.06) 0%, transparent 60%);
  }

  .hero-grid {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center; width: 100%;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(249,115,22,0.1);
    border: 1px solid var(--green-line);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: .78rem; font-weight: 500;
    color: var(--green);
    margin-bottom: 28px;
    animation: fadeUp .6s ease both;
  }
  .hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.4); }
  }

  .hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeUp .7s .1s ease both;
  }
  .hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--green), #FCD34D);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }

  .hero p {
    font-size: 1.05rem; line-height: 1.75;
    color: var(--muted); max-width: 500px;
    margin-bottom: 36px;
    animation: fadeUp .7s .2s ease both;
  }

  .hero-btns {
    display: flex; gap: 14px; flex-wrap: wrap;
    animation: fadeUp .7s .3s ease both;
  }

  .hero-visual {
    position: relative;
    animation: fadeUp .8s .2s ease both;
  }

  /* Phone mockup */
  .phone-wrap {
    position: relative;
    display: flex; justify-content: center;
  }

  .phone {
    width: 260px;
    background: var(--ink2);
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 20px 16px;
    box-shadow:
      0 0 0 8px rgba(255,255,255,0.02),
      0 40px 100px rgba(0,0,0,0.6),
      0 0 80px rgba(249,115,22,0.12);
    position: relative; z-index: 2;
  }

  .phone-notch {
    width: 80px; height: 24px;
    background: var(--ink);
    border-radius: 30px;
    margin: 0 auto 20px;
  }

  .phone-screen {
    background: linear-gradient(160deg, #111827, #0d1520);
    border-radius: 24px;
    padding: 20px;
    overflow: hidden;
  }

  .phone-balance-label {
    font-size: .68rem; color: var(--muted); margin-bottom: 4px;
    text-transform: uppercase; letter-spacing: .08em;
  }
  .phone-balance {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem; font-weight: 800;
    color: var(--white); margin-bottom: 20px;
  }

  .phone-chips {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px; margin-bottom: 16px;
  }
  .phone-chip {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px;
    font-size: .68rem;
  }
  .phone-chip-icon {
    font-size: 1.1rem; margin-bottom: 4px;
  }
  .phone-chip-label { color: var(--muted); }
  .phone-chip-val {
    font-family: 'Syne', sans-serif;
    font-weight: 700; color: var(--white); font-size: .8rem;
  }

  .phone-txns { display: flex; flex-direction: column; gap: 8px; }
  .phone-txn {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px; padding: 8px 10px;
  }
  .txn-dot {
    width: 28px; height: 28px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; flex-shrink: 0;
  }
  .txn-info { flex: 1; }
  .txn-name { font-size: .72rem; color: var(--white); font-weight: 500; }
  .txn-time { font-size: .64rem; color: var(--muted); }
  .txn-amount { font-family: 'Syne',sans-serif; font-size: .78rem; font-weight: 700; }
  .txn-amount.neg { color: #F87171; }
  .txn-amount.pos { color: var(--green); }

  /* floating cards */
  .float-card {
    position: absolute;
    background: var(--ink2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    font-size: .78rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  }
  .float-card-1 {
    right: -50px; top: 30px;
    display: flex; align-items: center; gap: 10px;
    animation: floatA 4s ease-in-out infinite;
  }
  .float-card-2 {
    left: -60px; bottom: 60px;
    animation: floatB 4s 1s ease-in-out infinite;
  }

  @keyframes floatA {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }
  @keyframes floatB {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(10px); }
  }

  .fc-icon {
    width: 36px; height: 36px;
    background: var(--green-glow);
    border: 1px solid var(--green-line);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
  }
  .fc-label { color: var(--muted); font-size: .68rem; }
  .fc-val { color: var(--white); font-weight: 600; font-family: 'Syne', sans-serif; }

  /* ── SECTION COMMONS ── */
  section { position: relative; }
  .container {
    max-width: 1200px; margin: 0 auto;
    padding: 100px 5%;
  }

  .section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .75rem; font-weight: 600;
    color: var(--green); text-transform: uppercase; letter-spacing: .12em;
    margin-bottom: 16px;
  }
  .section-tag::before {
    content: ''; width: 20px; height: 2px; background: var(--green);
  }

  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 1.05rem; line-height: 1.7;
    color: var(--muted); max-width: 600px;
  }

  /* ── ABOUT ── */
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }

  .about-visual {
    position: relative;
  }

  .about-card {
    background: linear-gradient(140deg, var(--ink2), rgba(249,115,22,0.05));
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 40px;
    position: relative; overflow: hidden;
  }
  .about-card::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, var(--green-glow), transparent 70%);
    pointer-events: none;
  }

  .about-stat-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 28px;
  }

  .about-stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 14px; padding: 20px;
  }
  .about-stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem; font-weight: 800;
    color: var(--green); line-height: 1;
    margin-bottom: 6px;
  }
  .about-stat-label { font-size: .8rem; color: var(--muted); }

  /* ── SERVICES ── */
  .services-bg {
    background: linear-gradient(180deg, var(--ink) 0%, #0B1120 50%, var(--ink) 100%);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 60px;
  }

  .service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 32px 28px;
    transition: all .3s;
    position: relative; overflow: hidden;
    cursor: default;
  }
  .service-card::before {
    content: '';
    position: absolute; inset: 0; border-radius: var(--r2);
    background: linear-gradient(135deg, rgba(249,115,22,0.06) 0%, transparent 60%);
    opacity: 0; transition: opacity .3s;
  }
  .service-card:hover {
    border-color: var(--green-line);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(249,115,22,0.08);
  }
  .service-card:hover::before { opacity: 1; }

  .service-icon {
    width: 52px; height: 52px;
    background: var(--green-glow);
    border: 1px solid var(--green-line);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 20px;
  }

  .service-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem; font-weight: 700;
    color: var(--white); margin-bottom: 10px;
  }

  .service-desc { font-size: .88rem; line-height: 1.7; color: var(--muted); }

  /* ── WHY CHOOSE ── */
  .why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
  }

  .why-list { display: flex; flex-direction: column; gap: 24px; margin-top: 10px; }

  .why-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 20px;
    border-radius: var(--r);
    transition: background .2s;
    cursor: default;
  }
  .why-item:hover {
    background: rgba(249,115,22,0.05);
  }

  .why-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem; font-weight: 800;
    color: rgba(249,115,22,0.2);
    line-height: 1; flex-shrink: 0;
    width: 40px;
  }

  .why-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem; font-weight: 700;
    color: var(--white); margin-bottom: 6px;
  }

  .why-desc { font-size: .88rem; line-height: 1.7; color: var(--muted); }

  .why-visual-box {
    background: linear-gradient(140deg, var(--ink2), rgba(249,115,22,0.04));
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 40px;
    position: sticky; top: 120px;
  }

  /* ── STATS ── */
  .stats-section {
    background: linear-gradient(135deg, #0B1120, #0A1510);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--r2); overflow: hidden;
  }

  .stat-item {
    background: var(--ink2);
    padding: 48px 32px; text-align: center;
  }

  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 800;
    color: var(--white); line-height: 1;
    margin-bottom: 10px;
  }
  .stat-num span { color: var(--green); }

  .stat-label { font-size: .85rem; color: var(--muted); }

  /* ── HOW IT WORKS ── */
  .steps-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 24px; margin-top: 60px;
    position: relative;
  }

  .steps-grid::before {
    content: '';
    position: absolute; top: 28px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-line) 30%, var(--green-line) 70%, transparent);
  }

  .step-card {
    text-align: center; padding: 32px 20px;
    position: relative; z-index: 1;
  }

  .step-num {
    width: 56px; height: 56px;
    background: var(--ink2);
    border: 2px solid var(--green-line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem; font-weight: 800;
    color: var(--green);
    margin: 0 auto 24px;
    box-shadow: 0 0 30px rgba(249,115,22,0.2);
  }

  .step-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem; font-weight: 700;
    color: var(--white); margin-bottom: 10px;
  }

  .step-desc { font-size: .85rem; line-height: 1.7; color: var(--muted); }

  /* ── TESTIMONIALS ── */
  .testimonials-bg {
    background: linear-gradient(180deg, var(--ink) 0%, #080E1C 100%);
  }

  .testi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 60px;
  }

  .testi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 32px;
    transition: border-color .3s;
  }
  .testi-card:hover { border-color: var(--green-line); }

  .testi-stars {
    color: var(--green); font-size: 1rem; margin-bottom: 16px;
    letter-spacing: 2px;
  }

  .testi-text {
    font-size: .92rem; line-height: 1.75;
    color: var(--text); font-style: italic;
    margin-bottom: 24px;
  }

  .testi-author {
    display: flex; align-items: center; gap: 12px;
  }

  .testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green), #16A34A);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: .85rem; font-weight: 800; color: #000;
  }

  .testi-name {
    font-family: 'Syne', sans-serif;
    font-size: .88rem; font-weight: 700; color: var(--white);
  }
  .testi-role { font-size: .75rem; color: var(--muted); }

  /* ── DOWNLOAD ── */
  .download-section {
    position: relative; overflow: hidden;
  }
  .download-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 80% at 50% 100%, rgba(249,115,22,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 80% 30%, rgba(59,130,246,0.1) 0%, transparent 60%);
  }

  .download-inner {
    position: relative; z-index: 1;
    text-align: center; max-width: 700px;
    margin: 0 auto; padding: 100px 5%;
  }

  .download-inner .section-tag { justify-content: center; }

  .download-btns {
    display: flex; gap: 16px; justify-content: center;
    flex-wrap: wrap; margin-top: 40px;
  }

  .btn-store {
    display: flex; align-items: center; gap: 12px;
    background: var(--ink2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 24px;
    text-decoration: none; transition: all .2s;
    color: var(--white);
  }
  .btn-store:hover {
    border-color: var(--green-line);
    background: rgba(249,115,22,0.06);
    transform: translateY(-2px);
  }

  .btn-store-icon { font-size: 2rem; }

  .btn-store-text { text-align: left; }
  .btn-store-small { font-size: .68rem; color: var(--muted); display: block; }
  .btn-store-big {
    font-family: 'Syne', sans-serif;
    font-size: 1rem; font-weight: 700;
    display: block;
  }

  /* ── FAQ ── */
  .faq-grid {
    max-width: 800px; margin: 60px auto 0;
    display: flex; flex-direction: column; gap: 12px;
  }

  .faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
  }

  .faq-q {
    width: 100%; background: none; border: none;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-size: .95rem; font-weight: 600;
    color: var(--white); text-align: left;
    transition: color .2s;
  }
  .faq-q:hover { color: var(--green); }

  .faq-arrow {
    width: 28px; height: 28px; flex-shrink: 0;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; transition: transform .3s, background .2s;
  }

  .faq-item.open .faq-arrow {
    transform: rotate(180deg);
    background: var(--green-glow);
    color: var(--green);
  }

  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    padding: 0 28px;
    font-size: .9rem; line-height: 1.75; color: var(--muted);
  }

  .faq-item.open .faq-a {
    max-height: 200px;
    padding-bottom: 22px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--ink2);
    border-top: 1px solid var(--border);
    padding: 60px 5% 32px;
  }

  .footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px; padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
  }

  .footer-brand p {
    font-size: .88rem; line-height: 1.75;
    color: var(--muted); margin: 16px 0 24px;
    max-width: 260px;
  }

  .footer-social {
    display: flex; gap: 12px;
  }

  .social-btn {
    width: 38px; height: 38px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 1rem;
    transition: all .2s;
  }
  .social-btn:hover {
    border-color: var(--green-line);
    background: var(--green-glow);
  }

  .footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: .85rem; font-weight: 700;
    color: var(--white); margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: .08em;
  }

  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-links a {
    color: var(--muted); text-decoration: none;
    font-size: .88rem; transition: color .2s;
  }
  .footer-links a:hover { color: var(--green); }

  .footer-contact-item {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 12px; font-size: .88rem; color: var(--muted);
  }

  .footer-bottom {
    max-width: 1200px; margin: 28px auto 0;
    display: flex; align-items: center; justify-content: space-between;
    font-size: .8rem; color: var(--muted);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .7s, transform .7s;
  }
  .reveal.visible {
    opacity: 1; transform: translateY(0);
  }

  /* ── DIVIDER LINE ── */
  .line-divider {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-grid, .about-grid, .why-grid { grid-template-columns: 1fr; }
    .hero-visual { order: -1; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid::before { display: none; }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .float-card { display: none; }
    .phone { width: 220px; }
  }

  @media (max-width: 560px) {
    .services-grid, .stats-grid, .steps-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-stat-row { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  }

  /* Mobile menu */
  .mobile-menu {
    display: none;
    position: fixed; inset: 0; z-index: 99;
    background: var(--ink2);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 32px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--white); text-decoration: none;
    transition: color .2s;
  }
  .mobile-menu a:hover { color: var(--green); }
  .close-btn {
    position: absolute; top: 24px; right: 5%;
    background: none; border: none;
    color: var(--white); font-size: 2rem; cursor: pointer;
  }
