/* ===== TICKER ===== */
  .ticker { background: var(--green); padding: 10px 0; overflow: hidden; }
  .ticker-track {
    display: flex; width: max-content; white-space: nowrap;
    animation: marquee 38s linear infinite;
  }
  .ticker-row { display: flex; gap: 40px; padding: 0 20px; }
  .ticker-item { display: flex; align-items: center; gap: 40px; }
  .ticker-item .text { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: #000; }
  .ticker-item .diamond { font-family: var(--mono); font-size: 11px; color: #000; }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ===== NAV ===== */
  nav {
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(160%) blur(12px);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid var(--line-2);
    position: sticky; top: 0; z-index: 100;
  }
  nav .inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 16px; }
  nav .brand {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--head); font-weight: 700; font-size: 22px;
    letter-spacing: -1px; color: var(--fg-12); text-decoration: none;
  }
  nav .brand .brand-mark { width: 32px; height: 32px; display: block; border-radius: 9px; object-fit: cover; }
  nav .brand .brand-word { display: inline-block; white-space: nowrap; }
  nav .brand span.accent { color: var(--green-2); }
  nav .links { display: flex; align-items: center; gap: 28px; }
  .mega-menu { position: relative; }
  .mega-menu summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--fg-11); transition: color .2s; }
  .mega-menu summary::-webkit-details-marker { display: none; }
  .mega-menu summary:hover, .mega-menu[open] summary { color: var(--fg-12); }
  .mega-chevron { font-family: var(--mono); font-size: 10px; color: var(--green-2); transform: translateY(-1px); }
  .mega-panel { position: absolute; top: calc(100% + 18px); left: 50%; transform: translate(-50%, 8px); width: min(760px, calc(100vw - 40px)); background: rgba(255,255,255,0.96); border: 1px solid var(--line-2); border-radius: 8px; box-shadow: 0 28px 70px rgba(0,0,0,0.14); padding: 18px; opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
  .mega-menu[open] .mega-panel { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
  .mega-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid var(--line); }
  .mega-panel-head span { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--green-2); text-transform: uppercase; }
  .mega-panel-head a { font-size: 12px !important; color: var(--fg-10) !important; }
  .mega-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px 10px; }
  .mega-grid a { display: block; padding: 9px 10px; border-radius: 6px; line-height: 1.2; color: var(--fg-11) !important; }
  .mega-grid a:hover, .mega-grid a.active { background: var(--bg-1); color: var(--fg-12) !important; }
  nav .links a {
    font-family: var(--sans); font-size: 14px; font-weight: 500;
    color: var(--fg-11); text-decoration: none; transition: color .2s;
  }
  nav .links a:hover { color: var(--fg-12); }
  nav .nav-actions { display: flex; align-items: center; gap: 10px; }
  nav .cta {
    background: var(--green); border-radius: 999px; padding: 10px 20px;
    font-family: var(--sans); font-size: 13px; font-weight: 600; color: #000;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: background .2s, transform .2s;
  }
  nav .cta:hover { background: var(--green-2); transform: scale(1.03); }
  nav .cta.secondary { background: var(--bg-2); border: 1px solid var(--line-2); color: var(--fg-12); }
  nav .cta.secondary:hover { background: var(--bg-1); border-color: rgba(0,0,0,0.22); }
  nav .cta .dot { width: 6px; height: 6px; border-radius: 50%; background: #000; }

  /* Hamburger — hidden on desktop, shown on mobile */
  nav .hamburger {
    display: none;
    appearance: none; background: transparent; border: 0; cursor: pointer;
    width: 40px; height: 40px; padding: 0;
    align-items: center; justify-content: center;
    border-radius: 10px; transition: background .15s ease;
  }
  nav .hamburger:hover { background: var(--bg-1); }
  nav .hamburger .bars {
    position: relative; width: 22px; height: 16px;
  }
  nav .hamburger .bars span {
    position: absolute; left: 0; right: 0; height: 2px;
    background: var(--fg-12); border-radius: 2px;
    transition: transform .25s ease, top .2s ease, opacity .2s ease;
  }
  nav .hamburger .bars span:nth-child(1) { top: 0; }
  nav .hamburger .bars span:nth-child(2) { top: 7px; }
  nav .hamburger .bars span:nth-child(3) { top: 14px; }
  nav .hamburger[aria-expanded="true"] .bars span:nth-child(1) { top: 7px; transform: rotate(45deg); }
  nav .hamburger[aria-expanded="true"] .bars span:nth-child(2) { opacity: 0; }
  nav .hamburger[aria-expanded="true"] .bars span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

  @media (max-width: 720px) {
    nav .links { display: none; }
    nav .cta { display: none; }
    nav .hamburger { display: inline-flex; }
  }

  /* Mobile fullscreen menu */
  .mobile-menu {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(255,255,255,0.98);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    display: flex; flex-direction: column;
    pointer-events: none; opacity: 0;
    transition: opacity .25s ease;
  }
  .mobile-menu.open { pointer-events: auto; opacity: 1; }
  .mobile-menu .mm-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu .mm-close {
    appearance: none; background: transparent; border: 0; cursor: pointer;
    width: 40px; height: 40px; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--fg-12); font-size: 26px; line-height: 1;
  }
  .mobile-menu .brand .brand-mark { width: 32px; height: 32px; display: block; border-radius: 9px; object-fit: cover; }
  .mobile-menu .brand .brand-word { display: inline-block; white-space: nowrap; }
  .mobile-menu .mm-close:hover { background: var(--bg-1); }
  .mobile-menu .mm-inner {
    flex: 1; display: flex; flex-direction: column; justify-content: center;
    padding: 24px 32px 48px; gap: 4px;
  }
  .mobile-menu .mm-inner a {
    font-family: var(--head); font-size: 32px; font-weight: 600;
    letter-spacing: -1px; color: var(--fg-12);
    text-decoration: none; padding: 14px 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(8px); opacity: 0;
    transition: transform .35s ease, opacity .35s ease, color .15s ease;
  }
  .mobile-menu .mm-inner a:hover { color: var(--green-2); }
  .mobile-menu .mm-section-label { margin-top: 16px; padding-top: 18px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: var(--green-2); text-transform: uppercase; }
  .mobile-menu .mm-industry-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px 12px; padding: 10px 0 16px; border-bottom: 1px solid var(--line); }
  .mobile-menu .mm-industry-grid a { font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0; line-height: 1.2; padding: 8px 0; border: 0; color: var(--fg-11); }
  .mobile-menu .mm-industry-grid a:hover { color: var(--fg-12); }
  .mobile-menu.open .mm-inner a { transform: translateY(0); opacity: 1; }
  .mobile-menu.open .mm-inner a:nth-child(1) { transition-delay: .05s; }
  .mobile-menu.open .mm-inner a:nth-child(2) { transition-delay: .10s; }
  .mobile-menu.open .mm-inner a:nth-child(3) { transition-delay: .15s; }
  .mobile-menu.open .mm-inner a:nth-child(4) { transition-delay: .20s; }
  .mobile-menu .mm-cta {
    margin-top: 24px;
    background: var(--green); color: #000 !important;
    border: 0 !important; border-radius: 999px;
    font-family: var(--sans) !important; font-size: 16px !important; font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-align: center; padding: 16px 20px !important;
    transform: translateY(8px); opacity: 0;
    transition: transform .35s ease, opacity .35s ease, background .15s ease;
  }
  .mobile-menu.open .mm-cta { transform: translateY(0); opacity: 1; transition-delay: .25s; }
  .mobile-menu .mm-cta.secondary { margin-top: 10px; background: var(--fg-12); color: var(--bg-2) !important; }
  .mobile-menu .mm-cta:hover { background: var(--green-2); color: #000 !important; }
  body.mm-locked { overflow: hidden; }

  /* ===== EYEBROW ===== */
  .eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
  .eyebrow .text { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: var(--green); }

  /* ===== HERO ===== */
  .hero { padding: 90px 0; }
  .hero-inner {
    display: grid; grid-template-columns: 3fr 2fr; gap: 56px; align-items: center;
  }
  @media (max-width: 960px) { .hero-inner { grid-template-columns: 1fr; } }

  h1 {
    font-family: var(--head); font-weight: 600;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.98; letter-spacing: -3.2px;
    margin-bottom: 22px;
  }
  h1 .accent { color: var(--green); font-weight: 700; }
  .hero-sub {
    font-size: 20px; line-height: 30px; color: var(--fg-11);
    max-width: 620px; margin-bottom: 32px;
  }
  .hero-sub strong { color: var(--fg-12); font-weight: 700; }

  .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 30px; border-radius: 999px;
    font-family: var(--sans); font-size: 15px; font-weight: 700;
    text-decoration: none; cursor: pointer; border: none;
    transition: all .2s var(--ease);
  }
  .btn.primary { background: var(--green); color: #000; }
  .btn.primary:hover {
    background: var(--green-2); transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(80,200,110,0.35);
  }
  .btn.ghost {
    background: transparent; color: var(--fg-12);
    border: 1px solid var(--fg-11); font-weight: 500;
  }
  .btn.ghost:hover { background: rgba(0,0,0,0.04); }

  .guarantee-line {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 16px;
  }
  .guarantee-line .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
  .guarantee-line .text { font-size: 13px; color: var(--fg-10); }

  .stats { display: flex; gap: 22px; flex-wrap: wrap; align-items: baseline; margin-top: 8px; }
  .stats .stat { display: flex; align-items: baseline; gap: 6px; }
  .stats .stat .num {
    font-family: var(--head); font-weight: 700; font-size: 22px;
    letter-spacing: -1px; color: var(--fg-12);
  }
  .stats .stat .sub { font-size: 13px; color: var(--fg-10); }
  .stats .div { color: var(--green); font-family: var(--mono); font-size: 10px; }

  /* ===== LOYALTY CARD (used in "The Card" section) ===== */
  .loyalty-card {
    width: 360px; aspect-ratio: 1.586;
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: 18px; padding: 22px;
    display: flex; flex-direction: column; justify-content: space-between;
    box-shadow: 0 24px 50px rgba(0,0,0,0.55), 0 0 100px rgba(80,200,110,0.08);
    position: relative;
  }
  .card-head { display: flex; justify-content: space-between; align-items: flex-start; }
  .card-head .label {
    font-family: var(--mono); font-size: 9px; letter-spacing: 2px;
    color: var(--fg-10); margin-bottom: 2px;
  }
  .card-head .shop {
    font-family: var(--head); font-weight: 700; font-size: 26px;
    letter-spacing: -1px; color: var(--fg-12);
  }
  .card-head .addr { font-style: italic; font-size: 11px; color: var(--fg-10); }
  .card-head .count {
    background: var(--green); color: #000;
    padding: 4px 10px; border-radius: 4px;
    font-family: var(--mono); font-weight: 700; font-size: 10px;
    letter-spacing: 1.5px;
  }
  .card-stamps { display: flex; gap: 6px; justify-content: center; }
  .stamp {
    width: 22px; height: 22px; border-radius: 999px;
    border: 1.5px solid var(--fg-12); opacity: 0.5;
  }
  .stamp.on { background: var(--green); border-color: var(--fg-12); opacity: 1; }
  .card-foot { display: flex; justify-content: space-between; align-items: center; }
  .card-foot .caption { font-style: italic; font-size: 12px; color: var(--fg-10); }
  .card-foot .qr {
    width: 44px; height: 44px; background: var(--fg-12); border-radius: 4px;
    background-image:
      linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%),
      linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%);
    background-size: 8px 8px;
    background-position: 0 0, 4px 4px;
  }

  /* ===== HERO PHONE MOCKUP ===== */
  .phone-stage {
    position: relative;
    display: flex; justify-content: center; align-items: center;
    min-height: 660px;
  }
  .phone {
    width: 300px; height: 600px;
    border-radius: 46px;
    background: linear-gradient(135deg, #2c2c2c, #0e0e0e);
    padding: 10px;
    box-shadow:
      0 0 0 2px rgba(255,255,255,0.06) inset,
      0 40px 90px rgba(0,0,0,0.65),
      0 0 120px rgba(80,200,110,0.12);
    animation: phoneFloat 7s ease-in-out infinite;
    position: relative;
  }
  @keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(-1.5deg); }
    50% { transform: translateY(-12px) rotate(1.5deg); }
  }
  .phone::before {
    content: ''; position: absolute; top: 14px; left: 50%;
    transform: translateX(-50%);
    width: 96px; height: 26px; background: #000;
    border-radius: 100px; z-index: 10;
  }
  .phone-screen {
    width: 100%; height: 100%; border-radius: 38px;
    background: linear-gradient(180deg, #ededed 0%, #b8b8b8 100%);
    padding: 54px 14px 18px;
    display: flex; flex-direction: column; gap: 10px;
    position: relative; overflow: hidden;
  }
  .status-bar {
    position: absolute; top: 18px; left: 0; right: 0;
    display: flex; justify-content: space-between;
    padding: 0 26px;
    font-size: 13px; font-weight: 600; color: #000;
    z-index: 5;
  }
  .phone-wallet-label {
    text-align: center;
    font-family: var(--sans); font-size: 10px; font-weight: 700;
    color: rgba(0,0,0,0.5); letter-spacing: 1.5px;
    padding: 2px 0 4px;
  }
  .phone-card {
    background: var(--bg-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px; padding: 14px;
    display: flex; flex-direction: column; justify-content: space-between;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
    color: var(--fg-12);
    aspect-ratio: 1.586;
  }
  .phone-card .card-head .label {
    font-family: var(--mono); font-size: 7px; letter-spacing: 2px; color: var(--fg-10);
  }
  .phone-card .card-head .shop {
    font-family: var(--head); font-weight: 700; font-size: 18px;
    letter-spacing: -0.5px; color: var(--fg-12);
  }
  .phone-card .card-head .addr { font-style: italic; font-size: 9px; color: var(--fg-10); }
  .phone-card .card-head .count {
    background: var(--green); color: #000;
    padding: 3px 7px; border-radius: 3px;
    font-family: var(--mono); font-weight: 700; font-size: 8px;
    letter-spacing: 1.2px;
  }
  .phone-card .card-stamps { gap: 4px; }
  .phone-card .stamp { width: 16px; height: 16px; border-width: 1.2px; }
  .phone-card .card-foot .caption { font-size: 9px; }
  .phone-card .card-foot .qr {
    width: 36px; height: 36px;
    background-size: 7px 7px;
    background-position: 0 0, 3.5px 3.5px;
  }

  /* Stamp pop-in animation when phone card in view */
  .phone-card.animated .stamp.on {
    opacity: 0; transform: scale(0) rotate(-120deg);
    transition: all .5s var(--spring);
  }
  .phone-card.animated.in .stamp.on { opacity: 1; transform: none; }
  .phone-card.animated.in .stamp.on:nth-child(1) { transition-delay: .5s; }
  .phone-card.animated.in .stamp.on:nth-child(2) { transition-delay: .6s; }
  .phone-card.animated.in .stamp.on:nth-child(3) { transition-delay: .7s; }
  .phone-card.animated.in .stamp.on:nth-child(4) { transition-delay: .8s; }
  .phone-card.animated.in .stamp.on:nth-child(5) { transition-delay: .9s; }
  .phone-card.animated.in .stamp.on:nth-child(6) { transition-delay: 1.0s; }
  .phone-card.animated.in .stamp.on:nth-child(7) { transition-delay: 1.1s; }

  /* Floating notifications around phone */
  .notif {
    position: absolute;
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px 12px 12px;
    background: rgba(22,22,22,0.92);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    color: white; font-size: 13px;
    z-index: 20;
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
    opacity: 0;
    animation: notifIn .7s var(--spring) forwards, notifDrift 4s ease-in-out infinite;
  }
  @keyframes notifIn {
    from { opacity: 0; transform: translateY(14px) scale(0.85); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes notifDrift {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -10px; }
  }
  .notif-1 { top: 6%; left: -60px; animation-delay: 1.6s, 2.3s; }
  .notif-2 { top: 46%; right: -70px; animation-delay: 2.0s, 2.7s; }
  .notif-3 { bottom: 8%; left: -80px; animation-delay: 2.4s, 3.1s; }
  @media (max-width: 1080px) {
    .notif-1 { left: -20px; }
    .notif-2 { right: -20px; }
    .notif-3 { left: 0; }
  }
  .notif .icon {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; flex-shrink: 0; font-size: 14px;
  }
  .notif.new .icon { background: rgba(80,200,110,0.18); color: var(--green); }
  .notif.push .icon { background: rgba(130,182,255,0.18); color: #82b6ff; }
  .notif.reward .icon { background: rgba(255,214,116,0.18); color: #ffd674; }
  .notif .title { font-weight: 600; margin-bottom: 1px; }
  .notif .meta { font-size: 11px; color: var(--fg-10); }

  /* ===== SECTIONS ===== */
  section.block { padding: 100px 0; border-top: 1px solid var(--line); }
  section.block.light { background: var(--bg-1); }
  .section-head { max-width: 720px; margin-bottom: 56px; }
  .section-head h2 {
    font-family: var(--head); font-weight: 600;
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.05; letter-spacing: -2px;
  }
  .section-head h2 .accent { color: var(--green); font-weight: 700; }
  .section-head p {
    font-size: 18px; line-height: 28px; color: var(--fg-11);
    max-width: 620px; margin-top: 14px;
  }
  .section-inline-cta {
    display: flex;
    justify-content: center;
    width: min(100%, 720px);
    margin: clamp(34px, 5vw, 54px) auto 0;
    padding-top: clamp(24px, 4vw, 36px);
    border-top: 1px solid var(--line);
  }
  .section-inline-cta .btn {
    box-shadow: 0 14px 34px rgba(34,150,63,0.16);
  }

  /* Who it's for */
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  @media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }
  .box {
    background: var(--bg-2); border-radius: 8px;
    border: 1px solid var(--line-2); padding: 28px;
  }
  .box.skip { background: var(--bg-1); }
  .box .pill { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
  .box .pill .icon {
    width: 26px; height: 26px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--head); font-weight: 700;
  }
  .box.get .icon { background: var(--green); color: #000; }
  .box.skip .icon { background: rgba(0,0,0,0.08); color: var(--fg-11); }
  .box .pill .label {
    font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--fg-12);
  }
  .box.skip .pill .label { color: var(--fg-11); }
  .box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .box li { display: flex; gap: 10px; align-items: flex-start; }
  .box li .arrow {
    font-family: var(--head); color: var(--green); font-weight: 700;
    font-size: 14px; line-height: 22px; flex-shrink: 0;
  }
  .box li .txt { font-size: 15px; line-height: 22px; color: var(--fg-12); flex: 1; }
  .box.skip li .txt { color: var(--fg-11); }
  .box .aside { font-style: italic; font-size: 13px; color: var(--fg-10); margin-top: 14px; }

  /* How it works steps */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  @media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
  .step-col {
    padding: 8px 28px; border-right: 1px solid var(--line-2);
    display: flex; flex-direction: column; gap: 16px;
    position: relative;
  }
  .step-col:first-child { padding-left: 0; }
  .step-col:last-child { border-right: none; padding-right: 0; }
  @media (max-width: 900px) {
    .step-col { border-right: none; border-top: 1px solid var(--line-2); padding: 32px 0; }
    .step-col:first-child { padding-top: 0; border-top: none; }
  }
  .step-num-row { display: flex; align-items: baseline; gap: 14px; }
  .step-num {
    font-family: var(--head); font-weight: 500; font-size: 80px;
    line-height: 80px; letter-spacing: -4px; color: var(--green);
  }
  .step-verb {
    font-family: var(--mono); font-size: 11px; font-weight: 700;
    letter-spacing: 2.5px; color: var(--fg-12);
  }
  .step-col h3 {
    font-family: var(--head); font-weight: 600; font-size: 26px;
    line-height: 32px; letter-spacing: -1px;
  }
  .step-col p { font-size: 15px; line-height: 24px; color: var(--fg-11); }
  .step-col .small {
    font-style: italic; font-size: 13px; color: var(--fg-10); line-height: 20px;
  }

  /* Step mini visuals */
  .step-visual {
    height: 110px; margin-top: 8px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  /* step 1 – mini card spin */
  .mini-card {
    width: 150px; padding: 10px; border-radius: 8px;
    background: var(--bg-2); border: 1px solid var(--line-2);
    animation: miniTilt 5s ease-in-out infinite;
  }
  @keyframes miniTilt {
    0%, 100% { transform: rotate(-4deg); }
    50% { transform: rotate(4deg); }
  }
  .mini-card .mc-label {
    font-family: var(--mono); font-size: 7px; letter-spacing: 1.5px; color: var(--fg-10);
  }
  .mini-card .mc-shop {
    font-family: var(--head); font-weight: 700; font-size: 12px;
    color: var(--fg-12); margin-bottom: 6px;
  }
  .mini-stamps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; }
  .mini-stamp {
    aspect-ratio: 1; border-radius: 50%; border: 1.2px solid var(--fg-12); opacity: 0.4;
  }
  .mini-stamp.on { background: var(--green); border-color: var(--green); opacity: 1; }

  /* step 2 – QR with scan sweep */
  .qr-scan {
    width: 90px; height: 90px; background: white; border-radius: 8px;
    padding: 6px; position: relative; overflow: hidden;
  }
  .qr-scan::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    box-shadow: 0 0 18px rgba(80,200,110,0.7);
    animation: scan 2.4s ease-in-out infinite;
    z-index: 2;
  }
  @keyframes scan {
    0%, 100% { transform: translateY(0); opacity: 0; }
    10%, 90% { opacity: 1; }
    50% { transform: translateY(82px); }
  }
  .qr-grid {
    width: 100%; height: 100%;
    background-image:
      linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%),
      linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%);
    background-size: 10px 10px;
    background-position: 0 0, 5px 5px;
  }

  /* step 3 – reward bubbles */
  .reward-stack { position: relative; width: 220px; height: 100px; }
  .reward-bubble {
    position: absolute;
    padding: 8px 12px; border-radius: 10px;
    background: rgba(0,0,0,0.03); border: 1px solid var(--line-2);
    font-size: 11px; color: var(--fg-12);
    display: flex; align-items: center; gap: 7px;
    backdrop-filter: blur(10px);
    animation: rewardFloat 3.5s ease-in-out infinite;
  }
  .reward-bubble .rb-dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--green);
    box-shadow: 0 0 10px rgba(80,200,110,0.6);
  }
  .reward-bubble:nth-child(1) { top: 0; left: 0; animation-delay: 0s; }
  .reward-bubble:nth-child(2) { top: 34px; left: 36px; animation-delay: .5s; }
  .reward-bubble:nth-child(3) { top: 68px; left: 12px; animation-delay: 1s; }
  @keyframes rewardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  /* ===== THE CARD section ===== */
  .thecard-grid {
    display: grid; grid-template-columns: 2fr 3fr; gap: 56px; align-items: flex-start;
  }
  @media (max-width: 960px) { .thecard-grid { grid-template-columns: 1fr; } }
  .thecard-media {
    display: flex; flex-direction: column; gap: 32px; align-items: center;
  }
  .push-card {
    width: 360px; background: var(--bg-3);
    border: 1px solid var(--line-2); border-radius: 14px; padding: 16px;
    display: flex; flex-direction: column; gap: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    opacity: 0; transform: translateY(20px) scale(0.92);
    transition: all .75s var(--spring);
  }
  .push-card.in { opacity: 1; transform: translateY(0) scale(1); }
  .push-head { display: flex; justify-content: space-between; align-items: center; }
  .push-brand { display: flex; align-items: center; gap: 8px; }
  .push-brand .logo { width: 20px; height: 20px; border-radius: 4px; background: var(--green); }
  .push-brand .text { font-family: var(--sans); font-size: 12px; font-weight: 600; color: var(--fg-11); }
  .push-time { font-size: 11px; color: var(--fg-10); }
  .push-title {
    font-family: var(--head); font-size: 16px; font-weight: 600;
    color: var(--fg-12); line-height: 22px;
  }
  .push-sub {
    font-style: italic; font-size: 13px; color: var(--fg-10); line-height: 18px;
  }
  .thecard-content { display: flex; flex-direction: column; gap: 20px; }
  .thecard-content h2 {
    font-family: var(--head); font-weight: 600;
    font-size: clamp(36px, 5vw, 52px); line-height: 1.05; letter-spacing: -2px;
  }
  .thecard-content h2 .accent { color: var(--green); font-weight: 700; }
  .thecard-content p.lead {
    font-size: 17px; line-height: 27px; color: var(--fg-11);
    max-width: 560px; margin-top: 4px;
  }
  .parts { display: flex; flex-direction: column; margin-top: 16px; }
  .part {
    display: flex; gap: 20px; padding: 20px 0;
    border-top: 1px solid var(--line);
  }
  .part:last-child { border-bottom: 1px solid var(--line); }
  .part .n {
    font-family: var(--head); font-size: 34px; font-weight: 400;
    line-height: 36px; letter-spacing: -1px;
    color: var(--green); min-width: 48px;
  }
  .part h4 {
    font-family: var(--head); font-size: 19px; font-weight: 600;
    line-height: 24px; letter-spacing: -0.5px; margin-bottom: 6px;
  }
  .part p { font-size: 14px; line-height: 22px; color: var(--fg-11); }

  /* Why digital */
  .wd-row {
    display: grid; grid-template-columns: auto 1fr 1fr; gap: 32px;
    padding: 36px 0; border-top: 1px solid var(--line-2);
    align-items: flex-start;
  }
  .wd-row:last-child { border-bottom: 1px solid var(--line-2); }
  @media (max-width: 900px) { .wd-row { grid-template-columns: 1fr; } }
  .wd-num {
    font-family: var(--head); font-size: 56px; font-weight: 400;
    line-height: 56px; letter-spacing: -2.5px; color: var(--green); min-width: 66px;
  }
  .wd-problem h4 {
    font-family: var(--head); font-size: 26px; font-weight: 600;
    line-height: 32px; letter-spacing: -1px; margin-bottom: 10px;
  }
  .wd-problem p { font-size: 15px; line-height: 24px; color: var(--fg-11); max-width: 460px; }
  .wd-good {
    background: var(--bg-2); padding: 22px; border-radius: 6px;
    border: 1px solid var(--line-2); max-width: 420px;
  }
  .wd-good .label {
    font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
    color: var(--green); margin-bottom: 8px;
  }
  .wd-good p {
    font-family: var(--head); font-size: 18px; font-weight: 500;
    line-height: 26px; color: var(--fg-12);
  }

  /* Pricing */
  .pricing-hero { text-align: center; max-width: 780px; margin: 0 auto 0; }
  .pricing-hero .eyebrow { justify-content: center; }
  .pricing-hero h2 {
    font-family: var(--head); font-weight: 600;
    font-size: clamp(42px, 5.5vw, 62px);
    line-height: 1.06; letter-spacing: -2.5px;
    margin-bottom: 14px;
  }
  .pricing-hero h2 .accent { color: var(--green); font-weight: 700; }
  .pricing-hero p {
    font-size: 18px; line-height: 28px; color: var(--fg-11);
    max-width: 620px; margin: 0 auto;
  }
  .plan {
    max-width: 640px; margin: 40px auto 0;
    background: var(--bg-2); border: 1px solid var(--line-2);
    border-radius: 8px; overflow: hidden;
  }
  .plan-ribbon {
    background: var(--green); color: #000; padding: 14px 28px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .plan-ribbon .text {
    font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 2px;
  }
  .plan-body { padding: 36px; }
  .price-row {
    display: flex; align-items: flex-end; gap: 8px; margin-bottom: 4px;
  }
  .price {
    font-family: var(--head); font-weight: 700;
    font-size: clamp(72px, 9vw, 104px); line-height: 0.96; letter-spacing: -5px;
    color: var(--fg-12);
  }
  .price-unit { padding-bottom: 16px; }
  .price-unit .slash {
    font-family: var(--head); font-size: 18px; font-weight: 500; color: var(--fg-11);
  }
  .price-unit .per {
    font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--fg-10);
  }
  .plan-note { font-style: italic; font-size: 13px; color: var(--fg-10); margin-bottom: 28px; }
  .plan-rule { height: 1px; background: var(--line); margin: 0 0 28px; }
  .plan-features-label {
    font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
    color: var(--fg-11); margin-bottom: 12px;
  }
  .plan-features { list-style: none; display: flex; flex-direction: column; }
  .plan-features li {
    display: flex; gap: 14px; padding: 12px 0;
    border-top: 1px solid var(--line); align-items: flex-start;
  }
  .plan-features li:first-child { border-top: none; }
  .plan-features .check {
    font-family: var(--head); font-size: 16px; font-weight: 700;
    color: var(--green); line-height: 22px;
  }
  .plan-features .label {
    font-size: 15px; line-height: 22px; color: var(--fg-12); flex: 1;
  }

  /* Guarantee */
  .guarantee-card {
    background: var(--bg-2); border: 1px solid var(--line-2);
    border-radius: 10px; padding: 40px;
    display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center;
  }
  @media (max-width: 760px) { .guarantee-card { grid-template-columns: 1fr; } }
  .badge-circle {
    width: 140px; height: 140px; border-radius: 50%;
    border: 3px solid var(--green); background: var(--bg-1);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    animation: wobble 6s ease-in-out infinite;
  }
  @keyframes wobble {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
  }
  .badge-circle .num {
    font-family: var(--head); font-size: 38px; font-weight: 700;
    line-height: 38px; color: var(--green); letter-spacing: -2px;
  }
  .badge-circle .label {
    font-family: var(--mono); font-size: 9px; letter-spacing: 2px;
    color: var(--fg-12); margin-top: 4px;
  }
  .guarantee-copy h3 {
    font-family: var(--head); font-size: clamp(24px, 3vw, 34px);
    font-weight: 600; line-height: 1.18; letter-spacing: -1.5px;
    margin-bottom: 12px;
  }
  .guarantee-copy h3 .accent { color: var(--green); font-weight: 700; }
  .guarantee-copy p { font-size: 15px; line-height: 23px; color: var(--fg-11); }

  /* FAQ */
  .faq-row {
    display: grid; grid-template-columns: 54px 1fr; gap: 28px;
    padding: 28px 0; border-top: 1px solid var(--line-2);
    align-items: flex-start;
  }
  .faq-row:last-child { border-bottom: 1px solid var(--line-2); }
  .faq-num {
    font-family: var(--head); font-size: 38px; font-weight: 400;
    line-height: 40px; letter-spacing: -1.5px; color: var(--green);
  }
  .faq-q {
    font-family: var(--head); font-size: 22px; font-weight: 600;
    line-height: 28px; letter-spacing: -0.8px; margin-bottom: 10px;
  }
  .faq-a { font-size: 15px; line-height: 24px; color: var(--fg-11); max-width: 660px; }

  /* Final CTA */
  .final-cta { background: var(--green); padding: 110px 0; color: #000; }
  .final-cta .container { text-align: center; max-width: 900px; }
  .access-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: #000; color: var(--green);
    padding: 8px 16px; border-radius: 999px;
    font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
    margin-bottom: 22px;
  }
  .access-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
  .final-cta h2 {
    font-family: var(--head); font-weight: 700;
    font-size: clamp(54px, 7vw, 78px);
    line-height: 1.02; letter-spacing: -3.5px; margin-bottom: 22px;
  }
  .final-cta h2 .dark { color: #000; }
  .final-cta h2 .light { color: var(--fg-12); }
  .final-cta p {
    font-size: 18px; line-height: 28px; max-width: 620px;
    margin: 0 auto 28px; opacity: 0.92;
  }
  .final-cta .cta-row { justify-content: center; margin-bottom: 12px; }
  .final-cta .btn.dark { background: #000; color: var(--fg-12); }
  .final-cta .btn.dark:hover { background: #1a1a1a; }
  .final-cta .btn.ghost-dark {
    border: 1px solid #000; color: #000; background: transparent; font-weight: 500;
  }
  .final-cta .btn.ghost-dark:hover { background: rgba(0,0,0,0.08); }
  .final-cta .mini { font-size: 13px; opacity: 0.8; }

  /* Footer */
  footer { background: var(--bg-1); border-top: 1px solid var(--line); padding: 56px 0 28px; }
  .foot-top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
  .foot-brand { max-width: 340px; display: flex; flex-direction: column; gap: 14px; }
  .foot-brand .foot-logo { display: flex; align-items: center; gap: 12px; }
  .foot-brand .foot-logo img { width: 40px; height: 40px; display: block; border-radius: 11px; object-fit: cover; }
  .foot-brand .name {
    font-family: var(--head); font-size: 26px; font-weight: 700; letter-spacing: -1px;
  }
  .foot-brand .sub { font-size: 14px; line-height: 22px; color: var(--fg-11); }
  .foot-brand .access { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
  .foot-brand .access .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
  .foot-brand .access .text {
    font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--fg-11);
  }
  .foot-cols { display: flex; gap: 48px; flex-wrap: wrap; }
  .foot-col { display: flex; flex-direction: column; gap: 10px; }
  .foot-col .h {
    font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
    color: var(--green); margin-bottom: 2px;
  }
  .foot-col a {
    font-family: var(--sans); font-size: 14px; color: var(--fg-11);
    text-decoration: none; transition: color .2s;
  }
  .foot-col a:hover { color: var(--fg-12); }
  .foot-rule { height: 1px; background: var(--line); margin: 40px 0 0; }
  .foot-bottom {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    padding-top: 20px;
    font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--fg-10);
  }

  /* ===== VIDEO WALKTHROUGH ===== */
  .video-showcase {
    background:
      linear-gradient(180deg, rgba(80,200,110,0.08), rgba(255,255,255,0) 44%),
      var(--bg-2);
  }
  .video-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 36px;
    align-items: center;
  }
  @media (max-width: 960px) {
    .video-grid { grid-template-columns: 1fr; }
  }
  .video-copy h2 {
    font-family: var(--head); font-weight: 600;
    font-size: clamp(32px, 4.3vw, 52px);
    line-height: 1.04; letter-spacing: -1.8px;
    margin-top: 14px;
  }
  .video-copy h2 .accent { color: var(--green); font-weight: 700; }
  .video-copy p {
    font-size: 16px; line-height: 25px; color: var(--fg-11);
    margin-top: 16px; max-width: 520px;
  }
  .video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #050705;
    border: 1px solid var(--line-2);
    box-shadow: 0 30px 80px rgba(0,0,0,0.16);
  }
  .video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  /* ===== NOTIFICATIONS SECTION ===== */
  .notif-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  @media (max-width: 960px) { .notif-grid { grid-template-columns: 1fr; } }

  .notif-feature {
    background: var(--bg-2); border: 1px solid var(--line-2);
    border-radius: 14px; padding: 32px;
    display: flex; flex-direction: column; gap: 14px;
  }
  .nf-label {
    font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: var(--green);
  }
  .notif-feature h3 {
    font-family: var(--head); font-weight: 600; font-size: 28px;
    line-height: 32px; letter-spacing: -1px;
  }
  .notif-feature h3 .accent { color: var(--green); font-weight: 700; }
  .notif-feature > p {
    font-size: 15px; line-height: 24px; color: var(--fg-11); max-width: 460px;
  }
  .notif-feature > p em { font-style: italic; color: var(--fg-12); }
  .nf-visual {
    margin-top: 14px; border-radius: 10px; overflow: hidden;
    background: var(--bg-1); border: 1px solid var(--line-2);
    position: relative;
  }

  /* Push composer */
  .composer { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
  .composer-head {
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px; margin-bottom: 8px;
  }
  .composer-dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(0,0,0,0.15);
  }
  .composer-dot.y { background: rgba(255,180,60,0.85); }
  .composer-dot.g { background: hsl(130, 55%, 55%); }
  .composer-title {
    font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px;
    color: var(--fg-10); margin-left: 10px;
  }
  .composer-row {
    display: flex; gap: 14px; align-items: baseline;
    padding: 7px 0; border-top: 1px dashed rgba(0,0,0,0.06);
  }
  .composer-row:first-of-type { border-top: none; }
  .composer-k {
    font-family: var(--mono); font-size: 9px; letter-spacing: 1.5px;
    color: var(--fg-10); width: 64px; flex-shrink: 0;
  }
  .composer-v {
    font-family: var(--sans); font-size: 13px; color: var(--fg-12); flex: 1;
  }
  .composer-msg .composer-v {
    font-family: var(--head); font-weight: 500; font-size: 14px;
  }
  .composer-cursor {
    display: inline-block; width: 2px; height: 14px;
    background: var(--green); margin-left: 2px;
    vertical-align: -2px;
    animation: blink 1s step-start infinite;
  }
  @keyframes blink { 50% { opacity: 0; } }
  .composer-send {
    margin-top: 4px; align-self: flex-start;
    background: var(--green); color: #000; border: none;
    border-radius: 8px; padding: 9px 16px;
    font-family: var(--sans); font-size: 13px; font-weight: 700;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    animation: sendPulse 3s ease-in-out infinite;
  }
  @keyframes sendPulse {
    0%, 60%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(80,200,110,0); }
    70% { transform: scale(0.97); box-shadow: 0 0 0 10px rgba(80,200,110,0.2); }
  }
  .composer-status {
    display: flex; align-items: center; gap: 8px;
    padding-top: 10px; margin-top: 4px;
    border-top: 1px dashed rgba(0,0,0,0.06);
    font-size: 12px; color: var(--fg-10);
  }
  .composer-status .check {
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--green); color: #000;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700;
  }
  .composer-status strong { color: var(--fg-12); font-weight: 600; }

  /* Geofence visual */
  .nf-visual.geofence {
    display: grid; grid-template-columns: 1fr 170px; gap: 12px;
    padding: 12px; align-items: stretch;
  }
  @media (max-width: 540px) { .nf-visual.geofence { grid-template-columns: 1fr; } }
  .map {
    background: linear-gradient(135deg, #eef1f5, #dde3ea);
    border-radius: 10px; position: relative; overflow: hidden;
    min-height: 260px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
  }
  .street { position: absolute; background: rgba(255,255,255,0.85); box-shadow: 0 0 0 1px rgba(0,0,0,0.04); }
  .street.s1 { top: 30%; left: -10%; right: -10%; height: 7px; transform: rotate(-6deg); }
  .street.s2 { top: 68%; left: -10%; right: -10%; height: 5px; transform: rotate(4deg); }
  .street.s3 { top: 0; bottom: 0; left: 58%; width: 4px; transform: rotate(16deg); transform-origin: center; }
  .geo-circle {
    position: absolute; top: 50%; left: 50%;
    width: 140px; height: 140px; transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px dashed hsla(130,55%,38%,0.7);
    background: radial-gradient(circle, hsla(130,55%,55%,0.18) 0%, transparent 70%);
    animation: geoBreathe 3s ease-in-out infinite;
  }
  @keyframes geoBreathe {
    0%, 100% { box-shadow: 0 0 0 0 hsla(130,55%,55%,0.30); }
    50% { box-shadow: 0 0 0 10px hsla(130,55%,55%,0); }
  }
  .geo-pin {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -100%);
    display: flex; flex-direction: column; align-items: center; z-index: 3;
  }
  .pin-dot {
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--green); border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  }
  .pin-tail {
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid var(--green);
    margin-top: -1px;
  }
  .map-label {
    position: absolute; top: calc(50% + 18px); left: 50%;
    transform: translateX(-50%);
    font-family: var(--mono); font-size: 9px; letter-spacing: 1.5px;
    color: rgba(0,0,0,0.65); white-space: nowrap;
    text-shadow: 0 1px 2px rgba(255,255,255,0.6);
  }
  .walker {
    position: absolute;
    width: 10px; height: 10px; border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 14px rgba(59,130,246,0.7), 0 0 0 4px rgba(59,130,246,0.18);
    top: 14%; left: 6%;
    animation: walk 7s ease-in-out infinite;
    z-index: 2;
  }
  @keyframes walk {
    0%   { top: 14%; left: 6%;  opacity: 1; transform: scale(1); }
    30%  { top: 36%; left: 30%; opacity: 1; transform: scale(1); }
    48%  { top: 48%; left: 48%; opacity: 1; transform: scale(1.3); }
    55%  { top: 50%; left: 50%; opacity: 1; transform: scale(1); }
    80%  { top: 50%; left: 50%; opacity: 0.5; transform: scale(1); }
    100% { top: 14%; left: 6%;  opacity: 0; transform: scale(1); }
  }

  /* Mini lock screen */
  .mini-lock {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.18) 100%),
      radial-gradient(circle at 50% 25%, #d8e9f4 0%, #a9c8e2 75%, #8ab2d2 100%);
    border-radius: 16px; padding: 12px 10px 10px;
    display: flex; flex-direction: column; gap: 10px;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
    min-height: 260px;
  }
  .mini-lock::before {
    content: ''; position: absolute; top: 10px; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 10px; background: #000;
    border-radius: 100px;
  }
  .mini-lock-date {
    text-align: center; font-size: 9px; color: rgba(0,0,0,0.62);
    margin-top: 22px; font-weight: 600;
  }
  .mini-lock-time {
    font-family: var(--head); font-weight: 300; font-size: 40px;
    color: rgba(0,0,0,0.85); text-align: center; letter-spacing: -1.5px;
    line-height: 1; margin-top: 2px;
  }
  .mini-lock-card {
    background: rgba(255,255,255,0.78); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px; padding: 10px;
    display: flex; gap: 10px; align-items: flex-start;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
    margin-top: auto;
    opacity: 0; transform: translateY(30px);
    animation: lockNotifSlide 7s ease-in-out infinite;
  }
  @keyframes lockNotifSlide {
    0%, 48% { opacity: 0; transform: translateY(30px); }
    55%, 82% { opacity: 1; transform: translateY(0); }
    92%, 100% { opacity: 0; transform: translateY(30px); }
  }
  .mlc-icon {
    width: 28px; height: 28px; border-radius: 7px;
    background: var(--green); color: #000;
    font-family: var(--head); font-weight: 700; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .mlc-body { flex: 1; color: rgba(0,0,0,0.88); min-width: 0; }
  .mlc-title { font-size: 11px; font-weight: 600; margin-bottom: 1px; }
  .mlc-msg {
    font-size: 10px; color: rgba(0,0,0,0.65); line-height: 13px;
  }

  /* ===== BY THE NUMBERS ===== */
  .numbers-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
  .numbers-head .eyebrow { justify-content: center; }
  .numbers-head h2 {
    font-family: var(--head); font-weight: 600;
    font-size: clamp(32px, 4.3vw, 48px);
    line-height: 1.05; letter-spacing: -1.8px;
  }
  .numbers-head h2 .accent { color: var(--green); font-weight: 700; }
  .numbers-head p { font-size: 16px; line-height: 24px; color: var(--fg-11); margin-top: 14px; }

  .numbers-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    border-top: 1px solid var(--line-2);
    border-left: 1px solid var(--line-2);
  }
  @media (max-width: 900px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .numbers-grid { grid-template-columns: 1fr; } }
  .num-card {
    border-right: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
    padding: 28px 24px;
    display: flex; flex-direction: column; gap: 6px;
    position: relative; overflow: hidden; min-height: 180px;
    transition: background .3s;
  }
  .num-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(80,200,110,0.08), transparent 60%);
    opacity: 0; transition: opacity .3s;
  }
  .num-card:hover { background: rgba(80,200,110,0.03); }
  .num-card:hover::before { opacity: 1; }
  .num-big {
    font-family: var(--head); font-weight: 700;
    font-size: clamp(40px, 4.5vw, 58px);
    line-height: 0.95; letter-spacing: -2.5px;
    color: var(--green);
  }
  .num-big .u { font-size: 0.5em; letter-spacing: 0; }
  .num-label { font-size: 13px; line-height: 19px; color: var(--fg-11); }
  .num-link {
    font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px;
    color: var(--fg-10); text-decoration: none;
    margin-top: auto; padding-top: 10px;
    transition: color .2s;
  }
  .num-link:hover { color: var(--green); }

  /* External link underline hint in running copy */
  .ext-link {
    color: var(--green); text-decoration: none;
    border-bottom: 1px dashed rgba(80,200,110,0.4);
    transition: border-color .2s;
  }
  .ext-link:hover { border-color: var(--green); }

  /* ===== RESEARCH SECTION ===== */
  .research-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  }
  @media (max-width: 820px) { .research-grid { grid-template-columns: 1fr; } }
  .research-card {
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: 14px; padding: 28px;
    display: flex; flex-direction: column; gap: 14px;
    transition: border-color .3s, transform .3s;
    position: relative; overflow: hidden;
  }
  .research-card:hover {
    border-color: hsla(130,55%,55%,0.35);
    transform: translateY(-2px);
  }
  .research-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: var(--green); opacity: 0.7;
  }
  .rc-head {
    display: flex; align-items: baseline; gap: 16px;
  }
  .rc-stat {
    font-family: var(--head); font-weight: 700;
    font-size: clamp(36px, 3.8vw, 48px);
    line-height: 0.95; letter-spacing: -2px;
    color: var(--green);
  }
  .rc-tag {
    font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
    color: var(--fg-10);
  }
  .research-card blockquote {
    font-family: var(--head); font-weight: 500;
    font-size: 17px; line-height: 26px;
    color: var(--fg-12); letter-spacing: -0.3px;
    padding-left: 16px;
    border-left: 1px solid rgba(80,200,110,0.25);
  }
  .research-card blockquote .q { color: var(--green); font-size: 20px; }
  .rc-source {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; padding-top: 12px; flex-wrap: wrap;
    border-top: 1px dashed rgba(0,0,0,0.1);
  }
  .rc-src {
    font-family: var(--mono); font-size: 11px; letter-spacing: 1px;
    color: var(--fg-11);
  }
  .rc-link {
    font-family: var(--sans); font-size: 13px; font-weight: 600;
    color: var(--green); text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    border-bottom: 1px dashed rgba(80,200,110,0.4);
    padding-bottom: 2px; transition: border-color .2s;
  }
  .rc-link:hover { border-color: var(--green); }

  .research-foot {
    margin-top: 32px; text-align: center;
    font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px;
    color: var(--fg-10);
  }
  .research-foot a {
    color: var(--fg-11); text-decoration: none;
    border-bottom: 1px dashed rgba(0,0,0,0.18);
    padding-bottom: 2px;
  }
  .research-foot a:hover { color: var(--fg-12); border-color: var(--fg-11); }

  /* ===== TESTIMONIALS ===== */
  .testi-head-wrap { max-width: 760px; margin-bottom: 40px; }
  .testi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  }
  @media (max-width: 960px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px) { .testi-grid { grid-template-columns: 1fr; } }

  .testi-card {
    background: var(--bg-2); border: 1px solid var(--line-2);
    border-radius: 14px; padding: 22px;
    display: flex; flex-direction: column; gap: 16px;
    position: relative; overflow: hidden;
    transition: border-color .25s var(--ease), transform .25s var(--ease);
  }
  .testi-card:hover {
    border-color: hsla(130,55%,55%,0.35);
    transform: translateY(-2px);
  }
  .testi-card[dir="rtl"] { text-align: right; }

  .testi-top { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 42px; height: 42px; flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(130,55%,45%), hsl(130,55%,70%));
    color: #062610;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--head); font-weight: 700; font-size: 14px;
    letter-spacing: -0.5px;
  }
  .testi-id { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .testi-name {
    font-family: var(--head); font-weight: 600; font-size: 15px;
    color: var(--fg-12); letter-spacing: -0.3px;
  }
  .testi-role {
    font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px;
    color: var(--fg-10);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }

  .testi-quote {
    font-family: var(--head); font-weight: 500;
    font-size: 15px; line-height: 23px;
    color: var(--fg-12); letter-spacing: -0.2px;
    flex: 1;
  }
  .testi-quote .q { color: var(--green); font-size: 18px; }

  .testi-foot {
    display: flex; justify-content: space-between; align-items: center;
    gap: 10px; padding-top: 12px;
    border-top: 1px dashed rgba(0,0,0,0.1);
  }
  .testi-locale {
    font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px;
    color: var(--fg-11);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .testi-flag { font-size: 14px; line-height: 1; }
  .testi-metric {
    font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px;
    color: var(--green);
    padding: 4px 8px;
    border: 1px solid hsla(130,55%,55%,0.32);
    border-radius: 999px;
    white-space: nowrap;
  }

  /* ===== NAV GLOBE BUTTON + LANGUAGE DIALOG ===== */
  nav .nav-lang {
    display: inline-flex; align-items: center; gap: 7px;
    background: transparent; border: 1px solid var(--line-2);
    border-radius: 999px; padding: 8px 14px 8px 12px;
    color: var(--fg-11); font-family: var(--mono);
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer; margin-right: 10px;
    transition: border-color .2s, color .2s, transform .2s;
  }
  nav .nav-lang:hover {
    border-color: hsla(130,55%,55%,0.5);
    color: var(--fg-12);
    transform: scale(1.03);
  }
  nav .nav-lang svg { stroke: currentColor; }
  nav .nav-lang-code { margin-top: 1px; }
  @media (max-width: 520px) { nav .nav-lang-code { display: none; } nav .nav-lang { padding: 8px 10px; } }

  .lang-dialog {
    border: none; padding: 0; background: transparent;
    max-width: 560px; width: calc(100vw - 32px);
    color: var(--fg-12);
    position: fixed; inset: 0; margin: auto;
  }
  .lang-dialog::backdrop {
    background: rgba(0,0,0,0.66);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .lang-dialog .ld-card {
    background: var(--bg-1); border: 1px solid var(--line-2);
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  }
  .ld-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 22px 14px;
    border-bottom: 1px solid var(--line);
  }
  .ld-head h3 {
    font-family: var(--head); font-weight: 600; font-size: 18px;
    letter-spacing: -0.4px; color: var(--fg-12);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .ld-head h3 svg { color: var(--green); }
  .ld-close {
    background: transparent; border: 1px solid var(--line-2);
    color: var(--fg-11); border-radius: 50%;
    width: 32px; height: 32px; font-size: 18px; line-height: 1;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: border-color .2s, color .2s;
  }
  .ld-close:hover { border-color: var(--fg-11); color: var(--fg-12); }

  .ld-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
    padding: 18px;
  }
  @media (max-width: 560px) { .ld-grid { grid-template-columns: repeat(2, 1fr); } }

  .ld-option {
    display: flex; flex-direction: column; gap: 2px;
    background: var(--bg-2); border: 1px solid var(--line-2);
    border-radius: 10px; padding: 14px 14px 12px;
    text-decoration: none; color: var(--fg-12);
    transition: border-color .15s, background .15s, transform .15s;
    position: relative;
  }
  .ld-option:hover {
    border-color: hsla(130,55%,55%,0.45);
    transform: translateY(-1px);
  }
  .ld-option.active {
    border-color: var(--green);
    background: linear-gradient(180deg, rgba(80,200,110,0.12), var(--bg-2));
  }
  .ld-option.active::after {
    content: '✓'; position: absolute; top: 10px; right: 12px;
    color: var(--green); font-size: 12px; font-weight: 700;
  }
  .ld-flag { font-size: 22px; line-height: 1; margin-bottom: 4px; }
  .ld-native {
    font-family: var(--head); font-weight: 600; font-size: 14px;
    letter-spacing: -0.2px; color: var(--fg-12);
  }
  .ld-english {
    font-family: var(--mono); font-size: 9px; letter-spacing: 2px;
    color: var(--fg-10); text-transform: uppercase;
  }
  .ld-option[lang="ar"] { direction: rtl; text-align: right; }

  .ld-foot {
    padding: 12px 22px 18px;
    border-top: 1px solid var(--line);
    font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px;
    color: var(--fg-10); text-align: center;
  }

  /* ===== FOOTER LANGUAGE SWITCHER ===== */
  .foot-lang { min-width: 220px; }
  .foot-lang .lang-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 6px 14px;
  }
  .foot-lang .lang-grid a {
    font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }

  /* ===== PER-MARKET PRICING GRID ===== */
  .market-pricing {
    margin-top: 56px; padding-top: 40px;
    border-top: 1px solid var(--line);
    scroll-margin-top: 80px;
  }
  .mp-head { max-width: 760px; margin-bottom: 32px; }
  .mp-head h3 {
    font-family: var(--head); font-weight: 600;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.08; letter-spacing: -1.2px;
    margin: 14px 0 10px;
  }
  .mp-head h3 .accent { color: var(--green); }
  .mp-head p {
    font-size: 15px; line-height: 24px; color: var(--fg-11);
    max-width: 640px;
  }
  .mp-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  }
  @media (max-width: 960px) { .mp-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 640px) { .mp-grid { grid-template-columns: repeat(2, 1fr); } }

  .mp-card {
    background: var(--bg-2); border: 1px solid var(--line-2);
    border-radius: 12px; padding: 20px 18px;
    display: flex; flex-direction: column; gap: 6px;
    position: relative; transition: border-color .2s, transform .2s;
  }
  .mp-card:hover {
    border-color: hsla(130,55%,55%,0.35);
    transform: translateY(-2px);
  }
  .mp-card.mp-anchor {
    border-color: hsla(130,55%,55%,0.45);
    background: linear-gradient(180deg, rgba(80,200,110,0.08), var(--bg-2));
  }
  .mp-flag { font-size: 22px; line-height: 1; margin-bottom: 2px; }
  .mp-price {
    font-family: var(--head); font-weight: 700;
    font-size: 32px; line-height: 1;
    letter-spacing: -1.5px; color: var(--fg-12);
  }
  .mp-card.mp-anchor .mp-price { color: var(--green); }
  .mp-country {
    font-family: var(--sans); font-size: 13px;
    color: var(--fg-11); line-height: 18px;
  }
  .mp-code {
    font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
    color: var(--fg-10); margin-top: 4px;
  }
  .mp-foot {
    margin-top: 24px; font-family: var(--mono); font-size: 11px;
    letter-spacing: 1.5px; color: var(--fg-10); text-align: center;
  }

  /* ===== SIGNUP FORMS ===== */
  .signup-tabs {
    display: flex; gap: 4px; padding: 4px;
    background: var(--bg-1); border: 1px solid var(--line-2);
    border-radius: 12px;
    max-width: 640px; margin: 40px auto 14px;
  }
  .signup-tab {
    flex: 1; display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; padding: 12px 14px;
    background: transparent; border: none; border-radius: 9px;
    color: var(--fg-10); cursor: pointer;
    font-family: var(--sans); font-size: 14px; font-weight: 600;
    letter-spacing: 0.1px;
    transition: background .2s var(--ease), color .2s var(--ease);
  }
  .signup-tab .st-num {
    font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
    color: var(--fg-9); opacity: 0.6;
  }
  .signup-tab:hover { color: var(--fg-12); }
  .signup-tab.active {
    background: var(--bg-2); color: var(--fg-12);
    box-shadow: 0 0 0 1px var(--line-2);
  }
  .signup-tab.active .st-num { color: var(--green); opacity: 1; }
  .signup-panels {
    max-width: 640px; margin: 0 auto;
  }
  .signup-card {
    background: var(--bg-2); border: 1px solid var(--line-2);
    border-radius: 14px; padding: 28px;
    display: none; flex-direction: column; gap: 14px;
    position: relative; overflow: hidden;
    scroll-margin-top: 80px;
  }
  .signup-card.active { display: flex; }
  .signup-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: var(--green); opacity: 0.7;
  }
  .su-lead {
    font-size: 14px; line-height: 22px; color: var(--fg-11);
    margin-bottom: 4px;
  }
  .signup-card label {
    display: flex; flex-direction: column; gap: 6px;
    font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
    color: var(--fg-10);
  }
  .signup-card label em {
    font-style: normal; color: var(--fg-10); opacity: 0.7;
    text-transform: none; letter-spacing: 0.3px;
  }
  .signup-card input,
  .signup-card select,
  .signup-card textarea {
    font-family: var(--sans); font-size: 15px; color: var(--fg-12);
    background: var(--bg-1); border: 1px solid var(--line-2);
    border-radius: 10px; padding: 12px 14px;
    outline: none; transition: border-color .2s, background .2s;
    letter-spacing: 0; text-transform: none;
  }
  .signup-card textarea { resize: vertical; min-height: 84px; }
  .signup-card input::placeholder,
  .signup-card textarea::placeholder { color: rgba(0,0,0,0.35); }
  .signup-card input:focus,
  .signup-card select:focus,
  .signup-card textarea:focus {
    border-color: hsla(130,55%,45%,0.6);
    background: #ffffff;
    box-shadow: 0 0 0 3px hsla(130,55%,55%,0.12);
  }
  .su-btn {
    margin-top: 6px; background: var(--green); color: #000;
    border: none; border-radius: 999px; padding: 14px 22px;
    font-family: var(--sans); font-size: 14px; font-weight: 700;
    letter-spacing: 0.2px; cursor: pointer;
    transition: background .2s var(--ease), transform .2s var(--ease);
  }
  .su-btn:hover { background: var(--green-2); transform: translateY(-1px); }
  .su-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
  .su-msg {
    min-height: 18px; font-family: var(--mono); font-size: 11px;
    letter-spacing: 1.5px; color: var(--fg-10); margin-top: 2px;
  }
  .su-msg.ok { color: var(--green); }
  .su-msg.err { color: #ff7a7a; }

  /* Scroll reveals */
  .reveal {
    opacity: 0; transform: translateY(20px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }
