:root {
  --bg: #fff;
  --text: #0b1220;
  --muted: #5d6b86;
  --primary: #0b7cff;
  --ring: rgba(11, 124, 255, .25);
  --surface: #f6f8fc;
  --border: #e6ecf5;
  --ok: #13b17c;
  --warn: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 10px 30px rgba(4, 20, 54, .08);
  --radius: 16px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

html[dir="rtl"] body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Tajawal, Arial, sans-serif
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5
}

a {
  color: var(--primary);
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: none;
  background: var(--primary);
  color: #fff;
  padding: .9rem 1.1rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(11, 124, 255, .2)
}


.btn.secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary)
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border)
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: .9rem;
  color: var(--muted)
}

header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 50
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 0
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary);
  position: relative;
  box-shadow: var(--shadow)
}

.logo:after {
  content: "*";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #fff;
  border-radius: 9px;
  margin: 5px;
  font-weight: 900
}

nav ul {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0
}

nav a {
  color: var(--text);
  font-weight: 600
}

.lang-select select {
  padding: .5rem .7rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.4rem
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0
}

.hero h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.1;
  margin: .25rem 0 1rem
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem
}

.hero-icons {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1rem
}

.hero-icons .chip svg {
  width: 18px;
  height: 18px
}

.phone {
  justify-self: end;
  position: relative;
  width: min(380px, 85%);
  aspect-ratio: 9/19;
  border-radius: 38px;
  background: #000;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .25);
  border: 12px solid #111
}

.phone:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 6px;
  background: #333;
  border-radius: 8px
}

.screen {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(180deg, #111 0%, #0a0a0a 60%, #171717 100%);
  overflow: hidden
}

.screen .bubble {
  --x: 14px;
  --y: 14px;
  --c: #0b7cff;
  position: absolute;
  left: var(--x);
  bottom: var(--y);
  max-width: 70%;
  padding: .7rem .9rem;
  border-radius: 16px 16px 16px 4px;
  background: var(--c);
  color: #fff;
  font-size: .95rem;
  box-shadow: 0 8px 20px rgba(11, 124, 255, .35)
}

.screen .bubble.right {
  left: auto;
  right: var(--x);
  border-radius: 16px 16px 4px 16px;
  background: #262a35
}

.screen .bubble:nth-child(1) {
  bottom: 70%
}

.screen .bubble:nth-child(2) {
  bottom: 52%
}

.screen .bubble:nth-child(3) {
  bottom: 34%
}

.screen .bubble:nth-child(4) {
  bottom: 16%
}

section {
  padding: 4rem 0;
  border-top: 1px solid var(--border)
}

section:first-of-type {
  border-top: none
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.75rem
}

.section-head h3 {
  margin: 0;
  font-size: 1.7rem
}

.grid {
  display: grid;
  gap: 1.2rem
}

.why {
  grid-template-columns: repeat(4, 1fr)
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: var(--shadow)
}

.muted {
  color: var(--muted)
}

.icon {
  width: 28px;
  height: 28px
}

.store-grid {
  grid-template-columns: repeat(6, 1fr)
}

.store {
  display: flex;
  flex-direction: column;
  align-items: center
}

.store .badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  border: 1.5px solid var(--border);
  padding: .55rem 1rem;
  border-radius: 12px;
  background: #fff;
  font-weight: 700;
  box-shadow: var(--shadow)
}

.store small {
  color: var(--muted)
}

.features {
  grid-template-columns: repeat(3, 1fr)
}

.feature {
  display: flex;
  gap: .9rem
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem
}

.security .card h4 {
  display: flex;
  align-items: center;
  gap: .5rem
}

.whitepaper-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem
}

.whitepaper .card h4 {
  display: flex;
  align-items: center;
  gap: .5rem
}

.pricing-compare .table-wrap {
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow)
}

table {
  border-collapse: collapse;
  width: 100%
}

th,
td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left
}

th {
  background: #fafbfe
}

.ok {
  color: var(--ok);
  font-weight: 700
}

.no {
  color: var(--danger);
  font-weight: 700
}

.opt {
  color: var(--warn);
  font-weight: 700
}

.tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  align-items: center;
  flex-wrap: wrap
}

.tabs .pill {
  appearance: none;
  border: 0;
  padding: .6rem 1rem;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-weight: 600
}

.tabs .pill[aria-pressed="true"] {
  background: var(--primary);
  color: #fff
}

.tabs .pill+.pill {
  border-left: 1px solid var(--border)
}

.contact-grid {
  grid-template-columns: 1.1fr .9fr;
  align-items: start
}

/* Form wrapper */
#contactForm {
  max-width: 560px;
  margin: 0 auto;
  padding: 24px 28px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-sizing: border-box;
}

/* Row: email + phone */
#contactForm .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

/* Labels */
#contactForm label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}

/* Inputs & textarea */
#contactForm input[type="email"],
#contactForm input[type="tel"],
#contactForm textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  font-size: 0.95rem;
  outline: none;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

#contactForm textarea {
  min-height: 140px;
  resize: vertical;
}

/* Focus states */
#contactForm input:focus,
#contactForm textarea:focus {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

/* Turnstile wrapper */
#contactForm .turnstile-wrap {
  margin: 16px 0 12px;
}

/* Actions (buttons) */
#contactForm .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

/* Base button */
#contactForm .btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
}

/* Primary button (Send) */
#contactForm .btn:not(.ghost) {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

#contactForm .btn:not(.ghost):hover {
  background: #1d4ed8;
}

#contactForm .btn:not(.ghost):active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.35);
}

/* Ghost button (Reset) */
#contactForm .btn.ghost {
  background: transparent;
  color: #374151;
  border: 1px solid #d1d5db;
  box-shadow: none;
}

#contactForm .btn.ghost:hover {
  background: #f3f4f6;
}

/* Status text */
#contactForm .muted {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  #contactForm {
    padding: 20px 18px;
  }

  #contactForm .row {
    grid-template-columns: 1fr;
  }

  #contactForm .actions {
    flex-direction: column;
    align-items: stretch;
  }

  #contactForm .btn {
    width: 100%;
    text-align: center;
  }
}

details {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  background: #fff
}

details+details {
  margin-top: .8rem
}

summary {
  cursor: pointer;
  font-weight: 700
}

footer {
  margin-top: 3rem;
  background: #fafbfe;
  border-top: 1px solid var(--border)
}

.foot-grid {
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
  padding: 2rem 0
}

.subtle {
  color: var(--muted);
  font-size: .95rem
}

.super-bottom {
  border-top: 1px solid var(--border);
  background: #fff
}

.super-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  color: var(--muted)
}

.footer-list ul {
  margin-left: -45px;
}

.footer-list li {
  margin-bottom: 3px;
  border-bottom: 1px solid gray;
  display: block;
  padding: 2px;
}

.pay-icons img {
  width: 36px;
  height: 36px;
  margin-left: .5rem;
  float: left;
}

@media (max-width:1000px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem
  }

  .phone {
    justify-self: center
  }

  .why {
    grid-template-columns: repeat(2, 1fr)
  }

  .features {
    grid-template-columns: repeat(2, 1fr)
  }

  .store-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .security-grid {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr
  }

  .super-row {
    flex-direction: column;
    gap: .7rem;
    align-items: flex-start
  }
}

@media (max-width:720px) {
  nav ul {
    display: none;
    position: absolute;
    right: 1rem;
    top: 64px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    gap: .8rem
  }

  .hamburger {
    display: inline-flex
  }
}


.btn-x {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: none;
  background: var(--primary);
  color: #fff;
  padding: .8rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(11, 124, 255, .2)
}

.asterix-cta {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(180deg, color-mix(in oklab, var(--ax-bg-elev) 88%, transparent), transparent);
  border: 1px solid color-mix(in oklab, 18%, transparent);
  padding: .6rem .8rem;
  border-radius: 12px;
}

.asterix-cta__icon {
  width: 22px;
  height: 22px;
  fill: var(--ax-ok);
  flex: 0 0 22px;
}


.asterix-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.25rem 0 0;
}


.asterix-btn {
  --_bg: transparent;
  --_fg: var(--ax-fg);
  --_bd: color-mix(in oklab, var(--ax-accent) 40%, transparent);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.1rem;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--_bd);
  color: var(--_fg);
  background: var(--_bg);
  box-shadow: 0 0 0 0 var(--ax-ring);
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

.asterix-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

.asterix-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px color-mix(in oklab, var(--ax-accent) 30%, transparent);
}

.asterix-btn__icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}


.asterix-btn--primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.asterix-btn--ghost {
  background: transparent;
}


.asterix-cta__note {
  color: var(--ax-fg-dim);
  margin-top: .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.asterix-cta__badge {
  display: inline-block;
  font-size: .8rem;
  line-height: 1;
  padding: .35rem .5rem;
  border-radius: 999px;
  background: color-mix(in oklab, var(--ax-accent) 22%, transparent);
  color: var(--ax-fg);
  border: 1px solid color-mix(in oklab, var(--ax-accent) 38%, transparent);
}


.asterix-cta__bullets {
  list-style: none;
}

/* Book cover mockup */
.asterix-cta__art {
  display: grid;
  place-items: center;
}

.asterix-cta__cover {
  width: min(360px, 90%);
  aspect-ratio: 3/4.2;
  background: var(--ax-bg-elev);
  border-radius: 18px;
  border: 1px solid color-mix(in oklab, var(--ax-accent) 24%, transparent);
  box-shadow: var(--ax-shadow);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  position: relative;
}

.asterix-cta__cover-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem .6rem;
  border-bottom: 1px solid color-mix(in oklab, var(--ax-accent) 14%, transparent);
}

.asterix-cta__brand {
  font-weight: 800;
  letter-spacing: .02em;
}

.asterix-cta__tag {
  font-size: .9rem;
  color: var(--ax-fg-dim);
}

.asterix-cta__cover-mid {
  position: relative;
}


.asterix-cta__mesh {
  --g1: color-mix(in oklab, var(--ax-accent) 42%, transparent);
  --g2: color-mix(in oklab, var(--ax-accent-2) 42%, transparent);
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120px 160px at 20% 30%, var(--g1), transparent 58%),
    radial-gradient(160px 120px at 80% 50%, var(--g2), transparent 60%),
    radial-gradient(220px 200px at 40% 80%, color-mix(in oklab, var(--ax-accent) 24%, transparent), transparent 70%);
  filter: saturate(120%);
}

.asterix-cta__cover-bottom {
  padding: .8rem 1rem 1rem;
  color: var(--ax-fg-dim);
  font-size: .95rem;
}

.social {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 30px;

}

.social-icon {
  width: 32px;
  height: 32px;
  float: left;
}


.whitepaper-oi {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;

  align-items: center;
  flex-wrap: wrap
}
    .wallet{display:flex;flex-direction:column;gap:4px;padding:10px;border:1px dashed var(--border);border-radius:10px;}