:root {
      --bg: #020303;
      --ink: #f2f4f1;
      --muted: rgba(242, 244, 241, 0.58);
      --faint: rgba(242, 244, 241, 0.36);
      --line: rgba(255,255,255,0.08);
      --line-soft: rgba(255,255,255,0.05);
      --accent: #00E585;
      --accent-soft: #00D67A;
      --accent-glow: rgba(0,229,133,.4);
      --card: rgba(255,255,255,.018);
      --card-2: rgba(255,255,255,.028);
      --font-display: 'Work Sans', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --font-mono: 'Space Mono', monospace;
    }

    /* When Persian is active we swap to modern Persian faces:
       headings -> Baloo Bhaijaan 2 (bold, contemporary display), body -> Vazirmatn */
    html[dir="rtl"] {
      --font-display: 'Baloo Bhaijaan 2', 'Vazirmatn', sans-serif;
      --font-body: 'Vazirmatn', sans-serif;
    }
    html[dir="rtl"] .hero-title { letter-spacing: -0.02em; line-height: 1.08; }
    html[dir="rtl"] .tagline,
    html[dir="rtl"] .section-title { letter-spacing: -0.01em; }
    html[dir="rtl"] .eyebrow,
    html[dir="rtl"] .count-label,
    html[dir="rtl"] .stat-cap,
    html[dir="rtl"] .status,
    html[dir="rtl"] .footer-inner,
    html[dir="rtl"] .submit-button { letter-spacing: .04em; }

    * { box-sizing: border-box; }

    html, body {
      margin: 0;
      width: 100%;
      background: var(--bg);
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
    }
    body {
      font-family: var(--font-body);
      color: var(--ink);
      overflow-x: hidden;
      position: relative;
      /* one flat deep-space tone for the ENTIRE page. all stars + green nebula
         haze are painted by the single fixed #space-bg canvas behind everything,
         so there is no seam and no section is lighter/darker than another. */
      background: #04060a;
    }
    /* full-page animated space canvas — stars + meteors, sits behind everything */
    #space-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      display: block;
    }

    .sr-only {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }
    .hidden { display: none !important; }

    /* ============ HERO SHELL ============ */
    .page-shell {
      position: relative;
      width: 100%;
      min-height: 100svh;
      overflow: hidden;
      background: transparent;
    }
    .page-shell::before {
      content: "";
      position: absolute;
      inset: -10%;
      pointer-events: none;
      z-index: 1;
      opacity: .1;
      background-image:
        radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,.7), transparent),
        radial-gradient(1px 1px at 28% 62%, rgba(200,255,230,.5), transparent),
        radial-gradient(1px 1px at 44% 32%, rgba(255,255,255,.6), transparent),
        radial-gradient(1.4px 1.4px at 62% 74%, rgba(255,255,255,.55), transparent),
        radial-gradient(1px 1px at 78% 22%, rgba(180,255,220,.45), transparent),
        radial-gradient(1px 1px at 88% 56%, rgba(255,255,255,.6), transparent),
        radial-gradient(1px 1px at 36% 88%, rgba(255,255,255,.4), transparent),
        radial-gradient(1.3px 1.3px at 70% 12%, rgba(220,255,240,.5), transparent),
        radial-gradient(1px 1px at 8% 80%, rgba(200,255,230,.4), transparent),
        radial-gradient(1px 1px at 54% 8%, rgba(255,255,255,.45), transparent),
        radial-gradient(.8px .8px at 20% 40%, rgba(255,255,255,.35), transparent),
        radial-gradient(.8px .8px at 33% 14%, rgba(225,255,240,.3), transparent),
        radial-gradient(.8px .8px at 47% 58%, rgba(255,255,255,.3), transparent),
        radial-gradient(.8px .8px at 66% 44%, rgba(200,255,235,.3), transparent),
        radial-gradient(.8px .8px at 82% 76%, rgba(255,255,255,.3), transparent),
        radial-gradient(.8px .8px at 92% 30%, rgba(215,255,235,.3), transparent),
        radial-gradient(.7px .7px at 16% 66%, rgba(255,255,255,.25), transparent),
        radial-gradient(.7px .7px at 58% 90%, rgba(255,255,255,.25), transparent);
      background-repeat: no-repeat;
      animation: twinkle 7s ease-in-out infinite alternate;
    }
    @keyframes twinkle { 0% { opacity: .06; } 100% { opacity: .13; } }

    /* nebula glow field — soft, deep, not busy */
    .nebula {
      position: absolute; inset: 0;
      z-index: 1; pointer-events: none;
      overflow: hidden;
    }
    .nebula::before, .nebula::after {
      content: ""; position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      mix-blend-mode: screen;
      will-change: transform, opacity;
    }
    .nebula::before {
      width: 60vw; height: 60vw;
      top: -18%; left: -12%;
      background: radial-gradient(circle at 40% 40%, rgba(0,229,133,.08), rgba(0,150,95,.03) 45%, transparent 70%);
      animation: drift1 26s ease-in-out infinite alternate;
    }
    .nebula::after {
      width: 52vw; height: 52vw;
      bottom: -22%; right: -10%;
      background: radial-gradient(circle at 60% 60%, rgba(40,220,160,.06), rgba(0,170,110,.025) 48%, transparent 72%);
      animation: drift2 32s ease-in-out infinite alternate;
    }
    .nebula-core {
      position: absolute;
      width: 42vw; height: 42vw;
      top: 28%; left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      filter: blur(90px);
      mix-blend-mode: screen;
      background: radial-gradient(circle, rgba(0,229,133,.07), rgba(0,190,125,.03) 50%, transparent 72%);
      animation: pulseGlow 14s ease-in-out infinite alternate;
    }
    @keyframes drift1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(6%, 4%) scale(1.12); } }
    @keyframes drift2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-5%, -4%) scale(1.1); } }
    @keyframes pulseGlow { 0% { opacity: .4; } 100% { opacity: .7; } }

    .page-shell::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      /* barely-there grounding under the globe. kept extremely subtle so the
         hero never turns into a dark band that then "pops" back to the
         starfield on scroll — the whole page now shares one continuous space. */
      background: linear-gradient(to bottom, rgba(4,6,10,0) 78%, rgba(4,6,10,.28) 100%);
      z-index: 3;
    }

    #globe-canvas {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      z-index: 2; display: block;
      opacity: 0; transition: opacity 2.4s ease;
    }
    #globe-canvas.ready { opacity: 1; }

    /* ============ HEADER (fixed) ============ */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 16px clamp(20px, 5vw, 60px);
      transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease, padding .4s ease;
      border-bottom: 1px solid transparent;
    }
    .site-header .brand { justify-self: start; }
    .site-header .site-nav { justify-self: center; }
    .site-header .header-actions { justify-self: end; }
    .site-header.scrolled {
      background: rgba(4,6,5,.72);
      backdrop-filter: blur(14px) saturate(140%);
      border-bottom: 1px solid var(--line);
      padding-top: 13px; padding-bottom: 13px;
    }
    .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .brand-logo {
      width: 26px; height: 26px;
      display: grid; place-items: center;
      flex-shrink: 0;
    }
    .brand-logo-img { width: 100%; height: 100%; object-fit: contain; display: block; }
    .brand-logo-svg { width: 26px; height: 26px; }
    /* logo placeholder — shows until you drop your file in assets/ */
    .logo-ph {
      width: 100%; height: 100%;
      border-radius: 8px;
      display: grid; place-items: center;
      border: 1px dashed rgba(0,229,133,.45);
      background: rgba(0,229,133,.06);
      color: rgba(0,229,133,.85);
      box-sizing: border-box;
    }
    .logo-ph svg { width: 58%; height: 58%; stroke: currentColor; fill: none; }
    .aw-tb-logo .logo-ph { border-radius: 4px; }
    .aw-tb-logo { display: inline-grid; place-items: center; width: 14px; height: 14px; }
    .aw-tb-logo-img { width: 14px; height: 14px; object-fit: contain; }
    .brand-name {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 17px;
      letter-spacing: -0.03em;
      color: #f4f6f3;
    }
    .brand-name .mark { color: var(--accent); }

    .site-nav { display: flex; gap: clamp(18px, 2.4vw, 34px); align-items: center; }
    .site-nav a {
      font-family: var(--font-body);
      font-size: 13.5px;
      letter-spacing: -0.01em;
      color: rgba(244,246,243,.6);
      text-decoration: none;
      transition: color .25s ease;
      white-space: nowrap;
    }
    .site-nav a:hover { color: var(--ink); }

    .header-actions { display: flex; align-items: center; gap: 12px; }

    /* ---- language dropdown ---- */
    .lang-picker { position: relative; }
    .lang-toggle {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 14px 7px 11px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--card);
      color: rgba(244,246,243,.78);
      font-family: var(--font-body);
      font-size: 12.5px;
      letter-spacing: -0.01em;
      cursor: pointer;
      transition: border-color .25s ease, color .25s ease, background .25s ease;
    }
    .lang-toggle:hover { border-color: rgba(0,229,133,.4); color: var(--ink); background: var(--card-2); }
    .lang-toggle .lang-flag { width: 18px; height: 18px; border-radius: 50%; object-fit: cover; flex-shrink: 0; display: block; box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); }
    .lang-toggle .lang-flag-fallback { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-size: 10px; }
    .lang-toggle .lang-cur { white-space: nowrap; }
    .lang-toggle .lang-chev { width: 12px; height: 12px; opacity: .5; transition: transform .25s ease; }
    .lang-picker.open .lang-chev { transform: rotate(180deg); }

    .lang-menu {
      position: absolute;
      top: calc(100% + 10px);
      inset-inline-end: 0;
      min-width: 178px;
      padding: 6px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(10,13,11,.92);
      backdrop-filter: blur(20px) saturate(150%);
      box-shadow: 0 20px 50px rgba(0,0,0,.55), 0 0 0 1px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.05);
      opacity: 0; transform: translateY(-6px) scale(.98);
      transform-origin: top right;
      pointer-events: none;
      transition: opacity .22s ease, transform .22s cubic-bezier(.22,1,.36,1);
      z-index: 60;
    }
    html[dir="rtl"] .lang-menu { transform-origin: top left; }
    .lang-picker.open .lang-menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
    .lang-option {
      width: 100%;
      display: flex; align-items: center; gap: 10px;
      padding: 10px 11px;
      border: 0; border-radius: 11px;
      background: none; cursor: pointer;
      font-family: var(--font-body);
      font-size: 13.5px; letter-spacing: -0.01em;
      color: rgba(242,244,241,.72);
      text-align: start;
      transition: background .2s ease, color .2s ease;
    }
    .lang-option:hover { background: rgba(255,255,255,.05); color: var(--ink); }
    .lang-option.active { color: var(--accent); }
    .lang-option .lang-flag, .lang-option .lang-flag-fallback { width: 20px; height: 20px; }
    .lang-option .lang-flag-fallback { border-radius: 50%; display: grid; place-items: center; font-size: 11px; }
    .lang-option .lang-name { flex: 1; }
    .lang-option .lang-tick { width: 15px; height: 15px; stroke: var(--accent); opacity: 0; flex-shrink: 0; }
    .lang-option.active .lang-tick { opacity: 1; }

    /* Sign-in link — same geometry as .cta-pill but outlined, so the
       primary CTA stays the single filled button in the bar. */
    .login-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 9px 15px;
      border-radius: 999px;
      background: transparent;
      border: 1px solid rgba(255,255,255,.14);
      color: var(--ink);
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 13px;
      letter-spacing: -0.01em;
      text-decoration: none;
      transition: border-color .25s ease, background .25s ease;
      white-space: nowrap;
    }
    .login-pill:hover { border-color: rgba(0,255,136,.4); background: rgba(0,255,136,.06); }
    .login-pill svg { width: 15px; height: 15px; }
    @media (max-width: 900px) { .login-pill { display: none; } }

    .cta-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 9px 17px;
      border-radius: 999px;
      background: var(--accent);
      color: #042417;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 13px;
      letter-spacing: -0.01em;
      text-decoration: none;
      transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
      box-shadow: 0 0 0 0 var(--accent-glow);
      white-space: nowrap;
    }
    .cta-pill:hover { background: #1bff97; transform: translateY(-1px); box-shadow: 0 10px 30px rgba(0,229,133,.25); }
    .cta-pill svg { width: 14px; height: 14px; }

    .nav-burger {
      display: none;
      width: 38px; height: 38px;
      border: 1px solid var(--line);
      border-radius: 11px;
      background: var(--card);
      cursor: pointer;
      place-items: center;
    }
    .nav-burger svg { width: 18px; height: 18px; stroke: var(--ink); transition: opacity .2s ease; }
    .nav-burger .icon-close { display: none; }
    .nav-burger.is-open { border-color: rgba(0,229,133,.4); background: rgba(0,229,133,.08); }
    .nav-burger.is-open .icon-open { display: none; }
    .nav-burger.is-open .icon-close { display: block; }

    /* mobile menu sheet — modern full-screen panel */
    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 49;
      background: rgba(6,9,8,.72);
      backdrop-filter: blur(28px) saturate(140%);
      -webkit-backdrop-filter: blur(28px) saturate(140%);
      display: flex;
      flex-direction: column;
      padding: 78px clamp(20px,6vw,32px) calc(28px + env(safe-area-inset-bottom));
      opacity: 0; pointer-events: none;
      transform: translateY(-8px);
      transition: opacity .32s ease, transform .32s cubic-bezier(.22,1,.36,1);
    }
    .mobile-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .mm-list { display: flex; flex-direction: column; margin-top: 6px; }
    .mobile-menu a.mm-link {
      display: flex; align-items: center; gap: 16px;
      padding: 20px 6px;
      border-bottom: 1px solid rgba(255,255,255,.07);
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 21px;
      letter-spacing: -0.02em;
      color: var(--ink);
      text-decoration: none;
      transition: color .2s ease, padding-inline-start .25s ease;
    }
    html[dir="rtl"] .mobile-menu a.mm-link { font-size: 22px; }
    .mobile-menu a.mm-link .mm-idx {
      font-family: var(--font-mono);
      font-size: 11px; letter-spacing: .1em;
      color: var(--accent);
      opacity: .8; min-width: 22px;
    }
    .mobile-menu a.mm-link .mm-arrow {
      margin-inline-start: auto; width: 18px; height: 18px;
      stroke: rgba(255,255,255,.28); fill: none;
      transition: stroke .2s ease, transform .25s ease;
    }
    html[dir="rtl"] .mobile-menu a.mm-link .mm-arrow { transform: scaleX(-1); }
    .mobile-menu a.mm-link:active,
    .mobile-menu a.mm-link:hover { color: var(--accent); padding-inline-start: 12px; }
    .mobile-menu a.mm-link:hover .mm-arrow { stroke: var(--accent); }
    .mobile-menu .mm-cta {
      margin-top: auto;
      display: flex; align-items: center; justify-content: center; gap: 9px;
      padding: 17px;
      border-radius: 16px;
      background: var(--accent);
      color: #042417;
      font-family: var(--font-display); font-weight: 600; font-size: 16px;
      letter-spacing: -0.01em; text-decoration: none;
      box-shadow: 0 12px 34px rgba(0,229,133,.22);
    }
    .mobile-menu .mm-cta svg { width: 17px; height: 17px; stroke: #042417; fill: none; }
    html[dir="rtl"] .mobile-menu .mm-cta svg { transform: scaleX(-1); }
    .mm-foot {
      margin-top: 18px; text-align: center;
      font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em;
      text-transform: uppercase; color: rgba(244,246,243,.32);
    }
    html[dir="rtl"] .mm-foot { letter-spacing: .02em; text-transform: none; font-family: var(--font-body); }

    /* ============ HERO ============ */
    .main-content {
      position: relative;
      z-index: 4;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 92px 24px 64px;
      text-align: center;
    }
    .hero-stack {
      width: min(820px, 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .fade-up { opacity: 0; transform: translateY(16px); animation: fadeUp 1.1s cubic-bezier(.22,1,.36,1) forwards; }
    .delay-1 { animation-delay: .1s; }
    .delay-2 { animation-delay: .28s; }
    .delay-3 { animation-delay: .46s; }
    .delay-4 { animation-delay: .64s; }
    .delay-5 { animation-delay: .82s; }
    .delay-6 { animation-delay: 1s; }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

    .status {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-family: var(--font-mono);
      font-size: 10px;
      line-height: 1;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(240,244,241,.66);
      padding: 7px 15px 7px 12px;
      border: 1px solid rgba(0,229,133,.18);
      border-radius: 999px;
      background: rgba(0,229,133,.04);
      backdrop-filter: blur(4px);
      margin-bottom: 20px;
    }
    .status-dot {
      width: 6px; height: 6px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(0,229,133,.08), 0 0 16px rgba(0,229,133,.4);
      animation: breathe 3.4s ease-in-out infinite;
    }
    @keyframes breathe { 0%,100% { opacity: .68; transform: scale(.85); } 50% { opacity: 1; transform: scale(1.12); } }

    .hero-title {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(40px, 5.6vw, 76px);
      font-weight: 300;
      letter-spacing: -0.055em;
      line-height: .95;
      color: #f6f8f4;
      text-shadow: 0 0 60px rgba(0,229,133,.07);
    }
    .hero-title .mark {
      color: var(--accent); opacity: .96; font-weight: 400;
      background: linear-gradient(120deg, #1bff97, #00e585 45%, #58ffc0);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-chips {
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 8px; margin-top: 16px;
    }
    .hero-chip {
      font-family: var(--font-mono);
      font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
      color: rgba(240,244,241,.7);
      padding: 6px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.022);
      backdrop-filter: blur(4px);
    }
    .hero-chip:first-child { color: var(--accent); border-color: rgba(0,229,133,.28); background: rgba(0,229,133,.05); }
    html[dir="rtl"] .hero-chip { letter-spacing: 0; text-transform: none; font-size: 12px; }

    .tagline {
      margin: 18px 0 0;
      color: rgba(245,247,244,.92);
      font-size: clamp(17px, 1.9vw, 23px);
      line-height: 1.4;
      letter-spacing: -0.025em;
      font-weight: 400;
      max-width: 600px;
    }
    .description {
      width: min(560px, 100%);
      margin: 12px 0 0;
      color: rgba(241,244,241,.52);
      font-size: 14px;
      line-height: 1.65;
      letter-spacing: -0.005em;
    }
    .description b { color: var(--accent); font-weight: 600; }

    .hero-cta-row {
      margin-top: 24px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 13px 24px;
      border-radius: 999px;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 14px;
      letter-spacing: -0.01em;
      text-decoration: none;
      cursor: pointer;
      border: 1px solid transparent;
      transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
    }
    .btn svg { width: 16px; height: 16px; }
    .btn-primary { background: var(--accent); color: #042417; box-shadow: 0 0 0 0 var(--accent-glow); }
    .btn-primary:hover { background: #1bff97; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,229,133,.26); }
    .btn-ghost { background: var(--card); border-color: var(--line); color: var(--ink); }
    .btn-ghost:hover { border-color: rgba(255,255,255,.22); transform: translateY(-2px); background: var(--card-2); }

    /* countdown */
    .countdown {
      margin-top: 28px;
      display: flex;
      align-items: stretch;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
    }
    .count-item {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 7px;
      min-width: 78px;
      padding: 12px 12px 10px;
      border: 1px solid var(--line);
      border-radius: 15px;
      background: var(--card);
      backdrop-filter: blur(3px);
    }
    .count-value {
      font-family: var(--font-display);
      font-size: clamp(26px, 3vw, 36px);
      font-weight: 300;
      letter-spacing: -0.04em;
      font-variant-numeric: tabular-nums;
      color: #f3f5f2;
      line-height: 1;
    }
    .count-label {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(245,247,244,.42);
    }
    .count-note {
      margin-top: 12px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(0,229,133,.62);
    }

    /* scroll cue */
    .scroll-cue {
      position: absolute;
      bottom: 26px; left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(245,247,244,.32);
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: .2em;
      text-transform: uppercase;
    }
    .scroll-cue svg { width: 16px; height: 16px; animation: bob 2.2s ease-in-out infinite; }
    @keyframes bob { 0%,100% { transform: translateY(0); opacity:.5;} 50% { transform: translateY(5px); opacity:1;} }

    /* ============ SECTIONS ============ */
    .section {
      position: relative;
      z-index: 4;
      padding: clamp(48px, 6vw, 84px) clamp(20px, 5vw, 60px);
      max-width: 1180px;
      margin: 0 auto;
    }
    .section-head {
      max-width: 640px;
      margin: 0 auto clamp(30px, 4vw, 48px);
      text-align: center;
    }
    .eyebrow {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(30px, 4.4vw, 50px);
      letter-spacing: -0.045em;
      line-height: 1.05;
      margin: 0;
      color: #f4f6f3;
    }
    .section-sub {
      margin: 18px auto 0;
      max-width: 520px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
      letter-spacing: -0.005em;
    }

    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .reveal.d1 { transition-delay: .08s; }
    .reveal.d2 { transition-delay: .16s; }
    .reveal.d3 { transition-delay: .24s; }

    /* ---- features grid ---- */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .feature-card {
      padding: 30px 26px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: linear-gradient(180deg, var(--card-2), var(--card));
      backdrop-filter: blur(10px) saturate(120%);
      -webkit-backdrop-filter: blur(10px) saturate(120%);
      transition: border-color .35s ease, transform .35s ease, background .35s ease;
      text-align: left;
    }
    html[dir="rtl"] .feature-card { text-align: right; }
    .feature-card:hover { border-color: rgba(0,229,133,.28); transform: translateY(-4px); }
    .feature-icon {
      width: 46px; height: 46px;
      border-radius: 13px;
      display: grid; place-items: center;
      background: rgba(0,229,133,.08);
      border: 1px solid rgba(0,229,133,.18);
      margin-bottom: 20px;
    }
    .feature-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; }
    .feature-card h3 {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 18px;
      letter-spacing: -0.025em;
      margin: 0 0 9px;
      color: #f3f5f2;
    }
    .feature-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.62;
    }

    /* ---- showcase (app preview) ---- */
    .showcase {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(30px, 5vw, 70px);
      align-items: center;
    }
    .showcase-copy { text-align: left; }
    html[dir="rtl"] .showcase-copy { text-align: right; }
    .showcase-copy .eyebrow { margin-bottom: 14px; }
    .showcase-copy h2 {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(28px, 3.6vw, 42px);
      letter-spacing: -0.045em;
      line-height: 1.08;
      margin: 0 0 18px;
      color: #f4f6f3;
    }
    .showcase-copy p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.68;
      margin: 0 0 24px;
    }
    .showcase-list { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 14px; }
    .showcase-list li { display: flex; align-items: flex-start; gap: 12px; color: rgba(242,244,241,.78); font-size: 14.5px; line-height: 1.5; }
    .showcase-list svg { width: 18px; height: 18px; stroke: var(--accent); flex-shrink: 0; margin-top: 1px; }

    /* phone mock */
    .phone-wrap { display: flex; justify-content: center; perspective: 1400px; }
    .phone {
      position: relative;
      width: 280px;
      aspect-ratio: 9 / 19;
      border-radius: 40px;
      padding: 11px;
      background: linear-gradient(160deg, #1a1d1b, #0a0c0b);
      border: 1px solid rgba(255,255,255,.1);
      box-shadow: 0 40px 90px rgba(0,0,0,.6), 0 0 0 1px rgba(0,0,0,.4), inset 0 0 0 1px rgba(255,255,255,.04);
      transform: rotateY(-14deg) rotateX(4deg);
      transition: transform .6s cubic-bezier(.22,1,.36,1);
    }
    .phone:hover { transform: rotateY(-4deg) rotateX(1deg); }
    .phone::before {
      content: ""; position: absolute;
      top: 16px; left: 50%; transform: translateX(-50%);
      width: 54px; height: 5px; border-radius: 999px;
      background: rgba(255,255,255,.1); z-index: 3;
    }
    .phone-screen {
      width: 100%; height: 100%;
      border-radius: 30px;
      overflow: hidden;
      background: radial-gradient(120% 80% at 50% 0%, #07120d 0%, #030504 60%);
      position: relative;
      display: flex; flex-direction: column;
      padding: 30px 18px 20px;
    }
    .ps-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
    .ps-brand { display: flex; align-items: center; gap: 7px; }
    .ps-brand span { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: #eef2ee; }
    .ps-conn {
      font-family: var(--font-mono); font-size: 7.5px; letter-spacing: .1em;
      color: var(--accent); border: 1px solid rgba(0,229,133,.3);
      padding: 4px 8px; border-radius: 999px; background: rgba(0,229,133,.06);
    }
    .ps-ping { text-align: center; margin: 8px 0 18px; }
    .ps-ping .num {
      font-family: var(--font-display); font-weight: 300; font-size: 58px;
      letter-spacing: -0.05em; color: #f4f7f4; line-height: 1;
      font-variant-numeric: tabular-nums;
    }
    .ps-ping .num small { font-size: 18px; color: var(--accent); margin-left: 3px; }
    .ps-ping .cap { font-family: var(--font-mono); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; color: rgba(242,244,241,.4); margin-top: 8px; }
    .ps-graph { height: 46px; margin: 0 2px 18px; display: block; }
    .ps-rows { display: flex; flex-direction: column; gap: 9px; margin-top: auto; }
    .ps-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 12px; border-radius: 12px;
      background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.05);
    }
    .ps-row .lbl { display: flex; align-items: center; gap: 8px; font-size: 11px; color: #dfe4df; font-family: var(--font-body); }
    .ps-row .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px rgba(0,229,133,.6); }
    .ps-row .val { font-family: var(--font-mono); font-size: 9px; color: rgba(242,244,241,.55); letter-spacing: .04em; }
    .ps-cta { margin-top: 14px; text-align: center; padding: 12px; border-radius: 13px; background: var(--accent); color: #042417; font-family: var(--font-display); font-weight: 600; font-size: 12px; }

    /* ---- stat strip ---- */
    .stat-band {
      display: flex; align-items: center; justify-content: center;
      flex-wrap: wrap; gap: clamp(18px, 4vw, 56px);
      padding: 40px clamp(24px, 5vw, 50px);
      border: 1px solid var(--line);
      border-radius: 24px;
      background: linear-gradient(180deg, var(--card-2), rgba(255,255,255,.006));
      backdrop-filter: blur(6px);
    }

    /* ── real frosted glass: STRONG blur but TRANSLUCENT tint, so the stars and
       meteors behind each card stay visible — just softly blurred, like looking
       through frosted glass. (Not opaque: you should still sense what's behind.) */
    .feature-card, .step, .sup-card, .app-window, .faq-item,
    .stat-band, .status-card, .cta-final .cta-card, .count-item {
      backdrop-filter: blur(30px) saturate(130%);
      -webkit-backdrop-filter: blur(30px) saturate(130%);
    }
    /* light translucent tint — lets the blurred starfield read through the glass */
    .feature-card, .step, .sup-card, .faq-item, .status-card {
      background-color: rgba(12, 16, 20, .34);
    }
    .app-window { background-color: rgba(11, 14, 18, .40); }
    .stat-band  { background-color: rgba(12, 15, 19, .34); }
    .count-item { background-color: rgba(12, 16, 20, .32); }
    @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
      /* no blur support → fall back to a more opaque tint so text stays readable */
      .feature-card, .step, .sup-card, .faq-item, .status-card { background-color: rgba(10,13,17,.9); }
      .app-window { background-color: rgba(9,11,15,.93); }
      .stat-band, .count-item { background-color: rgba(11,13,17,.9); }
    }
    .stat { display: flex; flex-direction: column; align-items: center; gap: 7px; }
    .stat-num { font-family: var(--font-display); font-weight: 300; font-size: clamp(30px, 4vw, 44px); letter-spacing: -0.04em; color: #f2f5f1; line-height: 1; }
    .stat-num small { font-size: .42em; color: var(--accent); margin-left: 2px; }
    .stat-cap { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(244,246,243,.42); }
    .stat-div { width: 1px; height: 42px; background: var(--line); }

    /* ---- how it works ---- */
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: step; }
    .step {
      position: relative;
      padding: 30px 26px 28px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: var(--card);
      backdrop-filter: blur(10px) saturate(120%);
      -webkit-backdrop-filter: blur(10px) saturate(120%);
      text-align: left;
    }
    html[dir="rtl"] .step { text-align: right; }
    .step-num {
      font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
      color: var(--accent); margin-bottom: 18px; display: block;
    }
    .step h3 { font-family: var(--font-display); font-weight: 500; font-size: 18px; letter-spacing: -0.025em; margin: 0 0 9px; color: #f3f5f2; }
    .step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
    .step-connector {
      position: absolute; top: 42px; right: -8px; width: 16px; height: 1px;
      background: linear-gradient(90deg, rgba(0,229,133,.4), transparent);
    }
    html[dir="rtl"] .step-connector { right: auto; left: -8px; background: linear-gradient(270deg, rgba(0,229,133,.4), transparent); }

    /* ---- live status section (mirrors status.jupitping.ir) ---- */
    .status-card {
      max-width: 860px; margin: 0 auto;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: linear-gradient(180deg, var(--card-2), rgba(255,255,255,.006));
      backdrop-filter: blur(10px) saturate(120%);
      -webkit-backdrop-filter: blur(10px) saturate(120%);
      padding: clamp(22px, 3vw, 32px);
      box-shadow: 0 8px 40px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.04);
    }
    .status-head {
      display: flex; align-items: center; gap: 18px;
      padding-bottom: 22px; margin-bottom: 22px;
      border-bottom: 1px solid var(--line-soft);
    }
    .status-orb {
      width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
      display: grid; place-items: center;
      position: relative;
    }
    .status-orb::after {
      content: ""; width: 15px; height: 15px; border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(0,229,133,.12), 0 0 20px rgba(0,229,133,.5);
    }
    .status-orb.is-degraded::after, .status-orb.is-maintenance::after { background: #f5b13d; box-shadow: 0 0 0 5px rgba(245,177,61,.14), 0 0 20px rgba(245,177,61,.5); }
    .status-orb.is-down::after { background: #ff6b6b; box-shadow: 0 0 0 5px rgba(255,107,107,.14), 0 0 20px rgba(255,107,107,.5); }
    .status-orb.is-unknown::after { background: rgba(255,255,255,.4); box-shadow: 0 0 0 5px rgba(255,255,255,.06); }
    .status-headline { min-width: 0; }
    .status-headline h3 {
      margin: 0; font-family: var(--font-display); font-weight: 400;
      font-size: clamp(21px, 3vw, 30px); letter-spacing: -0.03em; color: #f4f6f3;
    }
    .status-headline p {
      margin: 5px 0 0; color: var(--muted); font-size: 13.5px; letter-spacing: -0.005em;
      font-family: var(--font-mono);
    }
    html[dir="rtl"] .status-headline p { font-family: var(--font-body); }
    .status-refresh {
      margin-inline-start: auto; flex-shrink: 0;
      font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em;
      text-transform: uppercase; color: var(--faint);
      display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
      transition: color .25s ease;
    }
    html[dir="rtl"] .status-refresh { letter-spacing: 0; text-transform: none; font-family: var(--font-body); }
    .status-refresh:hover { color: var(--accent); }
    .status-refresh svg { width: 13px; height: 13px; stroke: currentColor; fill: none; }
    .status-tallies { display: flex; flex-wrap: wrap; gap: 10px; }
    .status-tally {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 14px; border-radius: 999px;
      border: 1px solid var(--line); background: rgba(255,255,255,.02);
      font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em;
      color: rgba(242,244,241,.8);
    }
    html[dir="rtl"] .status-tally { font-family: var(--font-body); letter-spacing: 0; }
    .status-tally .td { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
    .status-tally .td.op { background: var(--accent); }
    .status-tally .td.dg { background: #f5b13d; }
    .status-tally .td.mt { background: #f5b13d; }
    .status-tally .td.pl { background: #6b8cff; }
    .status-tally .td.dn { background: #ff6b6b; }
    .status-tally b { color: #f4f6f3; font-weight: 700; }
    .status-loading { color: var(--faint); font-family: var(--font-mono); font-size: 12px; padding: 6px 0; }
    html[dir="rtl"] .status-loading { font-family: var(--font-body); }
    .status-cta-row { margin-top: 26px; text-align: center; }
    .status-cta-row .btn { display: inline-flex; }

    /* footer live badge */
    .footer-bottom a.badge.status-live { text-decoration: none; color: rgba(244,246,243,.4); transition: color .25s ease, border-color .25s ease; }
    .footer-bottom a.badge.status-live:hover { color: rgba(244,246,243,.7); border-color: rgba(0,229,133,.3); }
    .status-live .status-dot.is-degraded, .status-live .status-dot.is-maintenance { background: #f5b13d; box-shadow: 0 0 0 3px rgba(245,177,61,.1); }
    .status-live .status-dot.is-down { background: #ff6b6b; box-shadow: 0 0 0 3px rgba(255,107,107,.1); }
    .status-live .status-dot.is-unknown { background: rgba(255,255,255,.4); box-shadow: none; animation: none; }

    /* ---- FAQ ---- */
    .faq-list { max-width: 760px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-q {
      width: 100%;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      padding: 24px 4px;
      background: none; border: 0; cursor: pointer;
      font-family: var(--font-display); font-weight: 400;
      font-size: clamp(16px, 2vw, 19px);
      letter-spacing: -0.02em;
      color: #eef2ee; text-align: left;
      transition: color .25s ease;
    }
    html[dir="rtl"] .faq-q { text-align: right; }
    .faq-q:hover { color: #fff; }
    .faq-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform .35s ease; }
    .faq-icon::before, .faq-icon::after {
      content: ""; position: absolute; background: var(--accent); border-radius: 2px;
      top: 50%; left: 50%; transform: translate(-50%,-50%);
    }
    .faq-icon::before { width: 14px; height: 1.6px; }
    .faq-icon::after { width: 1.6px; height: 14px; transition: transform .35s ease; }
    .faq-item.open .faq-icon::after { transform: translate(-50%,-50%) scaleY(0); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .4s ease, padding .4s ease;
      color: var(--muted); font-size: 14.5px; line-height: 1.7;
      text-align: left;
    }
    html[dir="rtl"] .faq-a { text-align: right; }
    .faq-item.open .faq-a { padding: 0 4px 26px; }

    /* ---- final CTA ---- */
    .cta-final {
      position: relative; z-index: 4;
      text-align: center;
      max-width: 720px;
      margin: 0 auto;
      padding: clamp(48px, 7vw, 90px) clamp(24px, 5vw, 40px) clamp(56px, 8vw, 96px);
    }
    .cta-final h2 {
      font-family: var(--font-display); font-weight: 300;
      font-size: clamp(32px, 5vw, 58px); letter-spacing: -0.05em; line-height: 1.02;
      margin: 0 0 18px; color: #f5f8f4;
    }
    .cta-final p { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 0 0 32px; }

    .waitlist { margin: 0 auto; width: min(480px, 100%); }
    .form-row {
      display: flex; align-items: center;
      padding: 6px 6px 6px 22px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 999px;
      background: rgba(255,255,255,.03);
      backdrop-filter: blur(8px);
      transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
    }
    html[dir="rtl"] .form-row { padding: 6px 22px 6px 6px; }
    .form-row:focus-within {
      border-color: rgba(0,229,133,.7);
      box-shadow: 0 0 0 3px rgba(0,229,133,.14), 0 14px 44px rgba(0,229,133,.16);
      background: rgba(0,229,133,.035);
    }
    .email-input {
      flex: 1; min-width: 0; border: 0; outline: 0 !important; background: transparent;
      color: #f3f5f2; padding: 13px 0; font-size: 15px; letter-spacing: .01em;
      font-family: var(--font-body);
      caret-color: var(--accent);
    }
    html[dir="rtl"] .email-input { text-align: right; }
    .email-input::placeholder { color: rgba(245,247,244,.34); }
    .submit-button {
      border: 0; background: var(--accent); color: #042417;
      padding: 14px 26px; border-radius: 999px;
      font-family: var(--font-mono); font-size: 10px; font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase; cursor: pointer; white-space: nowrap;
      transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
    }
    html[dir="rtl"] .submit-button { font-family: var(--font-display); letter-spacing: 0; }
    .submit-button:hover { background: #1bff97; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,229,133,.28); }
    .submit-button[disabled] { opacity: .5; cursor: wait; transform: none; }
    /* keyboard focus ring only for non-pointer focus, and NOT on the email input
       (the pill itself glows) so we never get the ugly inner rectangle */
    .submit-button:focus-visible, .footer-link:focus-visible, .faq-q:focus-visible, .lang-toggle:focus-visible {
      outline: 2px solid rgba(0,229,133,.75); outline-offset: 3px;
    }
    .email-input:focus, .email-input:focus-visible { outline: none !important; box-shadow: none !important; }
    .message-slot { min-height: 18px; margin-top: 16px; }
    .form-message { font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; opacity: 0; transform: translateY(3px); transition: opacity .25s ease, transform .25s ease; }
    .form-message.visible { opacity: 1; transform: translateY(0); }
    .success { color: rgba(0,229,133,.85); }
    .error { color: rgba(255,132,132,.8); }

    /* ============ FOOTER ============ */
    .footer {
      position: relative; z-index: 4;
      border-top: 1px solid var(--line);
      background: rgba(4,6,10,.45);
      padding: clamp(50px, 7vw, 80px) clamp(20px, 5vw, 60px) 40px;
    }
    .footer-grid {
      max-width: 1180px; margin: 0 auto;
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px 30px;
    }
    .footer-brand .brand { margin-bottom: 16px; }
    .footer-brand p { color: var(--muted); font-size: 13.5px; line-height: 1.65; max-width: 280px; margin: 0 0 20px; }
    .footer-socials { display: flex; gap: 10px; }
    .footer-socials a {
      width: 38px; height: 38px; display: grid; place-items: center;
      border: 1px solid var(--line); border-radius: 11px; background: var(--card);
      color: rgba(244,246,243,.6); transition: color .25s ease, border-color .25s ease, transform .25s ease;
    }
    .footer-socials a:hover { color: var(--accent); border-color: rgba(0,229,133,.35); transform: translateY(-2px); }
    .footer-socials svg { width: 17px; height: 17px; }
    .footer-col h4 {
      font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
      color: rgba(244,246,243,.45); margin: 0 0 16px;
    }
    .footer-col a {
      display: block; color: rgba(242,244,241,.65); text-decoration: none;
      font-size: 14px; margin-bottom: 11px; transition: color .25s ease;
    }
    .footer-col a:hover { color: var(--accent); }
    .footer-bottom {
      max-width: 1180px; margin: clamp(40px,5vw,60px) auto 0;
      padding-top: 26px; border-top: 1px solid var(--line-soft);
      display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
      font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em;
      color: rgba(244,246,243,.4);
    }
    .footer-bottom .badges { display: flex; gap: 10px; align-items: center; }
    .footer-bottom .badge {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 5px 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--card);
    }
    .footer-bottom .badge .status-dot { width: 5px; height: 5px; }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 940px) {
      .feature-grid, .steps { grid-template-columns: 1fr 1fr; }
      .step-connector { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 820px) {
      .site-nav { display: none; }
      .header-actions .cta-pill { display: none; }
      .nav-burger { display: grid; }
      .showcase { grid-template-columns: 1fr; gap: 44px; }
      .showcase-copy { text-align: center; order: 2; }
      html[dir="rtl"] .showcase-copy { text-align: center; }
      .showcase-copy .eyebrow,
      .showcase-list { text-align: left; }
      .showcase-list { max-width: 360px; margin-left: auto; margin-right: auto; }
      .app-window { transform: none !important; width: min(440px, 100%); }
    }
    @media (max-width: 620px) {
      .site-header { padding: 12px 16px; grid-template-columns: auto 1fr auto; }
      .brand-name { font-size: 16px; }
      .lang-toggle { padding: 6px 11px 6px 9px; font-size: 12px; }
      .lang-toggle .lang-cur { display: none; }
      .lang-menu { min-width: 160px; }

      .main-content { padding: 84px 18px 56px; }
      .hero-title { font-size: clamp(34px, 11vw, 50px); line-height: .98; }
      .hero-chip { font-size: 9px; padding: 5px 10px; letter-spacing: .08em; }
      .tagline { font-size: 17px; }
      .description { font-size: 13.5px; }

      .feature-grid, .steps { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .stat-band { gap: 22px 28px; padding: 28px 22px; }
      .stat-div { display: none; }
      .stat { flex: 1 1 40%; }
      .hero-cta-row { width: 100%; }
      .hero-cta-row .btn { flex: 1 1 100%; justify-content: center; }
      .footer-bottom { flex-direction: column; text-align: center; }

      .countdown { gap: 8px; }
      .count-item { min-width: 0; flex: 1 1 22%; padding: 11px 6px 9px; }
      .count-value { font-size: clamp(22px, 7vw, 30px); }

      .scroll-cue { display: none; }

      /* app-window mock: stack & shrink so nothing overflows */
      .app-window { width: 100%; }
      .aw-stats { gap: 7px; }
      .aw-stat-val { font-size: 19px; }
    }
    @media (max-width: 460px) {
      .hero-chips { gap: 6px; }
      .sup-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 380px) {
      .hero-title { font-size: clamp(30px, 12vw, 42px); }
      .count-label { font-size: 8px; letter-spacing: .12em; }
      .footer-grid { grid-template-columns: 1fr; }
    }
    /* short viewports: make sure hero never traps content */
    @media (max-height: 720px) and (min-width: 621px) {
      .main-content { padding-top: 80px; padding-bottom: 48px; }
      .scroll-cue { display: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      .fade-up, .reveal { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
      .status-dot, .scroll-cue svg, .page-shell::before { animation: none !important; }
      .nebula::before, .nebula::after, .nebula-core { animation: none !important; }
      #globe-canvas { transition: none; }
    }

    /* ============================================================
       v1.0.30 — desktop app mock, supported sections, shadows, RTL
       ============================================================ */

    /* ---- soft shadows on existing cards (match desktop app glass) ---- */
    .feature-card { box-shadow: 0 2px 18px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.03); }
    .feature-card:hover { box-shadow: 0 18px 44px rgba(0,0,0,.5), 0 0 22px rgba(0,229,133,.07), inset 0 1px 0 rgba(255,255,255,.05); }
    .step { box-shadow: 0 2px 16px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.03); }
    .stat-band { box-shadow: 0 8px 40px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.04); }
    .count-item { box-shadow: 0 4px 18px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.03); }
    .faq-list { }

    /* ---- DESKTOP APP WINDOW MOCK (replaces phone) ---- */
    .app-wrap { display: flex; justify-content: center; perspective: 1600px; }
    .app-window {
      width: min(520px, 100%);
      border-radius: 16px;
      overflow: hidden;
      background: linear-gradient(160deg, rgba(14,17,22,.82), rgba(9,10,13,.82));
      border: 1px solid rgba(255,255,255,.08);
      box-shadow: 0 50px 110px rgba(0,0,0,.65), 0 0 0 1px rgba(0,0,0,.4),
                  0 0 60px rgba(0,229,133,.05), inset 0 1px 0 rgba(255,255,255,.05);
      transform: rotateY(-9deg) rotateX(4deg);
      transition: transform .6s cubic-bezier(.22,1,.36,1);
    }
    .app-window:hover { transform: rotateY(-3deg) rotateX(1.5deg); }
    html[dir="rtl"] .app-window { transform: rotateY(9deg) rotateX(4deg); }
    html[dir="rtl"] .app-window:hover { transform: rotateY(3deg) rotateX(1.5deg); }

    .aw-titlebar {
      height: 34px; display: flex; align-items: center; justify-content: space-between;
      padding: 0 13px; background: rgba(8,8,10,.95);
      border-bottom: 1px solid rgba(0,229,133,.05);
    }
    .aw-tb-left { display: flex; align-items: center; gap: 8px; }
    .aw-tb-name { font-family: var(--font-display); font-weight: 600; font-size: 11.5px; color: #dfe4df; }
    .aw-tb-ver { font-size: 9px; color: rgba(244,246,243,.32); font-family: var(--font-mono); }
    .aw-tb-beta { font-size: 8px; font-weight: 700; letter-spacing: .06em; padding: 2px 5px; border-radius: 5px;
      background: rgba(0,229,133,.12); color: var(--accent); font-family: var(--font-mono); }
    .aw-tb-ctrls { display: flex; gap: 7px; }
    .aw-tb-ctrls span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.14); display: block; }
    .aw-tb-ctrls .aw-tb-close { background: rgba(255,99,99,.5); }

    .aw-body { display: flex; min-height: 300px; }
    .aw-side {
      width: 50px; flex-shrink: 0; padding: 12px 0; display: flex; flex-direction: column; align-items: center; gap: 6px;
      background: linear-gradient(180deg, rgba(8,8,12,.98), rgba(6,6,10,1));
      border-right: 1px solid rgba(0,229,133,.05);
    }
    .aw-side-sp { flex: 1; }
    .aw-nav {
      width: 34px; height: 34px; border-radius: 10px; border: 0; cursor: default;
      display: grid; place-items: center; background: none; color: rgba(160,174,192,.7);
    }
    .aw-nav svg { width: 17px; height: 17px; }
    .aw-nav.active { background: rgba(0,229,133,.1); color: var(--accent); box-shadow: inset 2px 0 0 var(--accent); }

    .aw-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; background: #0a0a0c; min-width: 0; }
    .aw-head { display: flex; align-items: flex-start; justify-content: space-between; }
    .aw-h1 { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: #fff; letter-spacing: -.02em; }
    .aw-h2 { font-size: 10px; color: rgba(160,174,192,.7); margin-top: 2px; font-family: var(--font-body); }
    .aw-badge {
      display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; border-radius: 8px;
      background: rgba(0,229,133,.12); border: 1px solid rgba(0,229,133,.25);
      font-family: var(--font-mono); font-size: 8px; letter-spacing: .08em; color: var(--accent);
    }
    .aw-bdot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
    .aw-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
    .aw-stat {
      padding: 11px 12px; border-radius: 12px; position: relative; overflow: hidden;
      background: linear-gradient(145deg, rgba(18,20,26,.9), rgba(12,14,18,.95));
      border: 1px solid rgba(0,229,133,.06);
      box-shadow: 0 2px 14px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.04);
    }
    .aw-stat::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0,229,133,.3), transparent); }
    .aw-stat-cap { font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(160,174,192,.7); font-family: var(--font-mono); }
    .aw-stat-val { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: #fff; margin-top: 6px; line-height: 1; letter-spacing: -.03em; }
    .aw-stat-val small { font-size: 11px; color: rgba(160,174,192,.7); margin-left: 2px; font-weight: 400; }
    .aw-chart-card {
      padding: 12px 14px; border-radius: 12px;
      background: linear-gradient(145deg, rgba(18,20,26,.9), rgba(12,14,18,.95));
      border: 1px solid rgba(0,229,133,.06);
      box-shadow: 0 2px 14px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.04);
    }
    .aw-chart-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px;
      font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .06em; }
    .aw-chart-top span:first-child { color: rgba(160,174,192,.7); text-transform: uppercase; }
    .aw-chart-now { color: var(--accent); font-weight: 700; }
    .aw-chart { width: 100%; height: 56px; display: block; }
    .aw-connect {
      display: flex; align-items: center; justify-content: space-between; gap: 10px;
      padding: 12px 14px; border-radius: 12px;
      background: linear-gradient(145deg, rgba(18,20,26,.9), rgba(12,14,18,.95));
      border: 1px solid rgba(0,229,133,.06);
      box-shadow: 0 2px 14px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.04);
      margin-top: auto;
    }
    .aw-conn-game { display: flex; align-items: center; gap: 10px; min-width: 0; }
    .aw-conn-ico { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; display: grid; place-items: center;
      background: linear-gradient(135deg, #ff4655, #a01622); color: #fff; font-weight: 800; font-size: 15px; font-family: var(--font-display); }
    .aw-conn-name { font-size: 12.5px; font-weight: 700; color: #fff; }
    .aw-conn-route { font-size: 9px; color: rgba(160,174,192,.7); margin-top: 1px; font-family: var(--font-mono); }
    .aw-conn-btn { padding: 9px 18px; border-radius: 9px; background: linear-gradient(135deg, var(--accent), var(--accent-soft));
      color: #042417; font-family: var(--font-display); font-weight: 700; font-size: 11px; white-space: nowrap;
      box-shadow: 0 4px 16px rgba(0,229,133,.25); }

    /* ---- SUPPORTED: games / launchers / sites ---- */
    .sup-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
      gap: 14px;
      max-width: 1080px;
      margin: 0 auto;
      justify-content: center;
    }
    .sup-grid.launchers, .sup-grid.sites {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      max-width: 940px;
    }
    .sup-card {
      display: flex; flex-direction: column; align-items: center; gap: 12px;
      padding: 24px 16px;
      border: 1px solid var(--line); border-radius: 18px;
      background: linear-gradient(180deg, var(--card-2), var(--card));
      box-shadow: 0 2px 16px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.03);
      transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
      text-align: center;
    }
    .sup-card:hover { border-color: rgba(0,229,133,.28); transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(0,0,0,.5), 0 0 22px rgba(0,229,133,.08), inset 0 1px 0 rgba(255,255,255,.05); }
    .sup-mono {
      width: 54px; height: 54px; border-radius: 15px; flex-shrink: 0;
      display: grid; place-items: center; overflow: hidden;
      font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #fff;
      letter-spacing: -.02em;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 6px 16px rgba(0,0,0,.35);
    }
    .sup-logo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .sup-name { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: #eef2ee; letter-spacing: -.01em; line-height: 1.25; }
    .sup-tag { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(160,174,192,.55); }

    /* launcher / site rows = horizontal cards */
    .sup-grid.launchers .sup-card, .sup-grid.sites .sup-card {
      flex-direction: row; align-items: center; gap: 13px; text-align: left; padding: 16px 18px;
    }
    html[dir="rtl"] .sup-grid.launchers .sup-card,
    html[dir="rtl"] .sup-grid.sites .sup-card { text-align: right; }
    .sup-grid.launchers .sup-mono, .sup-grid.sites .sup-mono { width: 44px; height: 44px; border-radius: 12px; font-size: 17px; }
    .sup-grid.launchers .sup-meta, .sup-grid.sites .sup-meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
    .sup-check {
      margin-left: auto; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
      display: grid; place-items: center; background: rgba(0,229,133,.12); border: 1px solid rgba(0,229,133,.25);
    }
    html[dir="rtl"] .sup-check { margin-left: 0; margin-right: auto; }
    .sup-check svg { width: 12px; height: 12px; stroke: var(--accent); }

    .sup-more-note {
      text-align: center; margin-top: 26px;
      font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: rgba(160,174,192,.6);
    }
    .sup-more-note b { color: var(--accent); font-weight: 700; }

    @media (max-width: 620px) {
      .sup-grid { grid-template-columns: repeat(auto-fit, minmax(104px, 1fr)); }
      .sup-grid.launchers, .sup-grid.sites { grid-template-columns: 1fr; }
    }

    /* ---- PERSIAN / RTL polish ---- */
    html[dir="rtl"] {
      --font-display: 'Baloo Bhaijaan 2', 'Vazirmatn', sans-serif;
      --font-body: 'Vazirmatn', sans-serif;
      --font-mono: 'Vazirmatn', sans-serif;
    }
    /* Baloo is a display face — headings look bold & modern at normal weight */
    html[dir="rtl"] .hero-title { font-weight: 700; letter-spacing: 0; line-height: 1.22; }
    html[dir="rtl"] .hero-title .mark { font-weight: 700; }
    html[dir="rtl"] .brand-name { font-weight: 700; }
    html[dir="rtl"] .section-title,
    html[dir="rtl"] .showcase-copy h2,
    html[dir="rtl"] .cta-final h2 { font-weight: 600; letter-spacing: 0; line-height: 1.4; }
    html[dir="rtl"] .tagline { font-weight: 500; letter-spacing: 0; line-height: 1.75; }
    html[dir="rtl"] .description,
    html[dir="rtl"] .section-sub,
    html[dir="rtl"] .feature-card p,
    html[dir="rtl"] .step p,
    html[dir="rtl"] .showcase-copy p,
    html[dir="rtl"] .faq-a { line-height: 1.95; letter-spacing: 0; }
    html[dir="rtl"] .feature-card h3,
    html[dir="rtl"] .step h3,
    html[dir="rtl"] .faq-q { font-weight: 600; letter-spacing: 0; }
    /* mono labels were tight/uppercase — relax for Persian */
    html[dir="rtl"] .eyebrow,
    html[dir="rtl"] .count-label,
    html[dir="rtl"] .count-note,
    html[dir="rtl"] .stat-cap,
    html[dir="rtl"] .sup-tag,
    html[dir="rtl"] .footer-col h4,
    html[dir="rtl"] .submit-button,
    html[dir="rtl"] .form-message,
    html[dir="rtl"] .footer-bottom,
    html[dir="rtl"] .scroll-cue { letter-spacing: 0; text-transform: none; font-size: 12px; }
    html[dir="rtl"] .submit-button { font-size: 12.5px; font-weight: 700; }
    html[dir="rtl"] .count-value,
    html[dir="rtl"] .stat-num,
    html[dir="rtl"] .aw-stat-val { font-weight: 600; letter-spacing: 0; }
    /* digit-bearing UI keeps Latin face so Persian numerals shape cleanly via Vazirmatn anyway */
    html[dir="rtl"] .aw-tb-ver, html[dir="rtl"] .aw-tb-beta,
    html[dir="rtl"] .aw-conn-route, html[dir="rtl"] .aw-chart-top { font-size: 9px; }


/* JP-MAINT: hides the Sign in button while the panel is down. Removed by maint.sh off. */
.login-pill{display:none!important}
