/* ============================================================
   Spokt marketing site — shared stylesheet (index + guides)
   Brand: cream paper, ink, electric blue. Fraunces / Sora / Space Mono.
   ============================================================ */

:root {
  --bg:          #FAF6EE;
  --paper:       #FFFCF5;
  --ink:         #13110F;
  --ink-soft:    #4A453D;
  --muted:       #6E6860;
  --accent:      #3852FF;
  --accent-deep: #1E2A78;
  --accent-soft: #EEF1FF;
  --coral:       #FF6B57;
  --gold:        #E8AE3D;
  --green:       #4F8F5A;
  --rule:        #E0D7C2;
  --rule-strong: #C9BFA8;
  --shadow-sm:   0 2px 8px rgba(19, 17, 15, 0.06);
  --shadow:      0 14px 36px rgba(19, 17, 15, 0.12);
  --shadow-lg:   0 30px 72px rgba(19, 17, 15, 0.18);
  --shadow-phone: 0 36px 80px rgba(19, 17, 15, 0.28);
  --r-card:  20px;
  --r-phone: 44px;
  --r-pill:  999px;
  --sans:  'Sora', system-ui, -apple-system, sans-serif;
  --serif: 'Fraunces', 'Times New Roman', serif;
  --mono:  'Space Mono', 'JetBrains Mono', monospace;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --w-page: 1120px;
  --w-text: 760px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-deep); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

.wrap { max-width: var(--w-page); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 14px;
}

.accent-word { color: var(--accent); }

.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 620px; }

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
}
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.site-nav { display: flex; gap: 22px; margin-inline-start: auto; align-items: center; }
.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--accent); }
.nav-cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  transition: background 0.2s var(--ease);
}
.nav-cta:hover { background: var(--accent); }

/* Hamburger toggle — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-inline-start: auto;
  padding: 0;
  border: 1.5px solid var(--rule-strong);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  /* Nav becomes a full-width dropdown panel holding every header item */
  .site-nav {
    position: absolute;
    top: 68px;
    inset-inline: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px 20px 18px;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 20px 44px -26px rgba(0, 0, 0, 0.55);
  }
  .site-header.nav-open .site-nav { display: flex; }
  .site-nav a:not(.lang-switch):not(.nav-cta) {
    font-size: 1rem;
    padding: 14px 4px;
    border-bottom: 1px solid var(--rule);
  }
  .site-nav .lang-switch {
    display: flex;
    justify-content: center;
    margin-top: 14px;
    padding: 12px;
  }
  .site-nav .nav-cta {
    margin-top: 10px;
    padding: 14px 18px;
    text-align: center;
    font-size: 1rem;
  }
}

/* ------------------------------------------------------------
   Buttons & badges
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--accent-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  border: 1.5px solid var(--rule-strong);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.appstore-badge img { height: 54px; width: auto; }
.appstore-badge { display: inline-block; transition: transform 0.2s var(--ease-out); }
.appstore-badge:hover { transform: translateY(-2px); }

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero { padding: 72px 0 40px; overflow: hidden; }
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
}
.hero-copy .lead { margin-bottom: 28px; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-bottom: 22px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.86rem;
  color: var(--muted);
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero-proof li { display: flex; align-items: center; gap: 7px; }
.hero-proof .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none; }
.hero-phone { position: relative; }
.hero-phone::before {
  content: "";
  position: absolute;
  inset: 12% -8% -4% -8%;
  background: radial-gradient(ellipse at 50% 45%, rgba(56, 82, 255, 0.14), transparent 68%);
  z-index: 0;
}
.hero-phone img {
  position: relative;
  z-index: 1;
  width: min(360px, 82%);
  margin: 0 auto;
  border-radius: var(--r-phone);
  box-shadow: var(--shadow-phone);
}
@media (max-width: 880px) {
  .hero { padding-top: 44px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-phone img { width: min(300px, 78%); }
}

/* ------------------------------------------------------------
   Sections
   ------------------------------------------------------------ */
.section { padding: 84px 0; }
.section-alt { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }

/* ------------------------------------------------------------
   Download strip
   ------------------------------------------------------------ */
.download-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
@media (max-width: 720px) {
  .download-grid { grid-template-columns: 1fr; }
  .download-grid > .center { justify-self: start; text-align: start; }
}

/* ------------------------------------------------------------
   Screenshot gallery (scroll-snap)
   ------------------------------------------------------------ */
.shots {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(300px, 74vw);
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 12px 24px 32px;
  max-width: var(--w-page);
  margin: 0 auto;
  scrollbar-width: thin;
  scrollbar-color: var(--rule-strong) transparent;
}
.shot { scroll-snap-align: center; }
.shot img {
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--rule);
}
.shot figcaption {
  margin-top: 16px;
  text-align: center;
}
.shot figcaption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 800;
}
.shot figcaption span { font-size: 0.88rem; color: var(--muted); }

/* ------------------------------------------------------------
   How it works
   ------------------------------------------------------------ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}
.step {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-block;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   Feature split rows
   ------------------------------------------------------------ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 44px 0;
}
.feature-row + .feature-row { border-top: 1px dashed var(--rule-strong); }
.feature-row .feature-h { font-size: 1.6rem; }
.feature-row img {
  width: min(280px, 70%);
  margin: 0 auto;
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--rule);
}
.feature-row ul { padding-inline-start: 20px; color: var(--ink-soft); }
.feature-row li { margin-bottom: 8px; }
.feature-row li strong { color: var(--ink); }
@media (max-width: 880px) {
  .feature-row { grid-template-columns: 1fr; gap: 30px; }
  .feature-row.flip .feature-media { order: -1; }
}

/* ------------------------------------------------------------
   Guides grid
   ------------------------------------------------------------ */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.guide-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  padding: 26px 24px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), border-color 0.2s;
}
.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
  color: var(--ink);
}
.guide-card .tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.guide-card .tag.learn { color: var(--green); }
.guide-card h3 { font-size: 1.12rem; margin: 0; }
.guide-card p { font-size: 0.9rem; color: var(--muted); margin: 0; flex: 1; }
.guide-card .more { font-size: 0.88rem; font-weight: 700; color: var(--accent); }
@media (max-width: 980px) { .guides-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .guides-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.faq-list { max-width: var(--w-text); margin: 0 auto; }
.faq-list details {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  margin-bottom: 12px;
  padding: 0 22px;
}
.faq-list details[open] { border-color: var(--rule-strong); box-shadow: var(--shadow-sm); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-weight: 700;
  font-size: 1.02rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 1.2rem;
  color: var(--accent);
  flex: none;
  transition: transform 0.2s var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list .faq-a { padding: 0 0 20px; color: var(--ink-soft); font-size: 0.97rem; }
.faq-list .faq-a p { margin-bottom: 0.6em; }
.faq-list .faq-a a { font-weight: 700; }

/* ------------------------------------------------------------
   CTA band
   ------------------------------------------------------------ */
.cta-band {
  background: var(--ink);
  color: var(--bg);
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(56, 82, 255, 0.35), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(255, 107, 87, 0.18), transparent 55%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(250, 246, 238, 0.75); max-width: 520px; margin: 0 auto 30px; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }
@media (max-width: 640px) { .cta-band { padding: 48px 24px; } }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 56px 0 40px;
  margin-top: 84px;
  font-size: 0.9rem;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--muted); text-decoration: none; }
.footer-grid a:hover { color: var(--accent); }
.footer-brand p { max-width: 260px; margin-top: 12px; }
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ------------------------------------------------------------
   Guide article pages
   ------------------------------------------------------------ */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 24px 0 0;
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "/"; margin-inline-end: 6px; color: var(--rule-strong); }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); }

.article { max-width: var(--w-text); margin: 0 auto; padding: 28px 24px 0; }
.article header { margin-bottom: 36px; }
.article h1 { font-size: clamp(2rem, 5vw, 3rem); }
.article .lead { font-size: 1.18rem; }
.article h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  margin-top: 2em;
  scroll-margin-top: 90px;
}
.article h3 { margin-top: 1.6em; }
.article ul, .article ol { color: var(--ink-soft); padding-inline-start: 24px; }
.article li { margin-bottom: 7px; }
.article li strong, .article p strong { color: var(--ink); }
.table-scroll { overflow-x: auto; margin: 1.4em 0; }
.article table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.92rem;
  background: var(--paper);
  border: 1px solid var(--rule);
}
.article th, .article td {
  text-align: start;
  padding: 10px 14px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.article th {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  background: var(--bg);
}
.article tr:last-child td { border-bottom: 0; }
.article td strong { color: var(--ink); }
.article-shot {
  float: inline-end;
  width: min(240px, 40%);
  margin: 6px 0 20px;
  margin-inline-start: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--rule);
}
@media (max-width: 640px) {
  .article-shot { float: none; width: min(260px, 80%); margin: 24px auto; }
}

.how-spokt {
  clear: both;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--bg));
  border-radius: var(--r-card);
  padding: 30px 30px 22px;
  margin: 2.2em 0;
}
.how-spokt > h2 { margin-top: 0; }
.how-spokt ol { counter-reset: hs; list-style: none; padding: 0; margin: 20px 0 0; }
.how-spokt ol > li {
  counter-increment: hs;
  position: relative;
  padding: 0 0 18px;
  padding-inline-start: 52px;
  margin: 0;
}
.how-spokt ol > li::before {
  content: counter(hs);
  position: absolute;
  inset-inline-start: 0;
  top: 1px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-spokt ol > li strong { display: block; color: var(--ink); margin-bottom: 2px; }

.article-cta {
  clear: both;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  padding: 36px 28px;
  margin: 2.4em 0;
  box-shadow: var(--shadow-sm);
}
.article-cta h2 { margin-top: 0; font-size: 1.5rem; }
.article-cta p { color: var(--ink-soft); max-width: 460px; margin: 0 auto 20px; }

.related { max-width: var(--w-text); margin: 56px auto 0; padding: 0 24px; }
.related h2 { font-size: 1.4rem; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .related-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   Legal pages (privacy / terms)
   ------------------------------------------------------------ */
.legal-page { padding: 56px 0 40px; }
.legal-page .wrap { max-width: var(--w-text); }
.legal-page h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 8px; }
.legal-page .last-updated {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.85rem;
  margin-bottom: 36px;
}
.legal-page h2 { font-size: 1.5rem; margin-top: 2em; margin-bottom: 0.4em; }
.legal-page h3 { font-size: 1.12rem; margin-top: 1.6em; margin-bottom: 0.35em; }
.legal-page p, .legal-page li { color: var(--ink-soft); line-height: 1.75; margin-bottom: 12px; }
.legal-page ul { padding-inline-start: 1.5rem; margin-bottom: 16px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-page a:hover { color: var(--accent-deep); }
.legal-page strong { color: var(--ink); }
html[lang="ar"] .legal-page p, html[lang="ar"] .legal-page li { line-height: 1.95; }

/* ------------------------------------------------------------
   Utility
   ------------------------------------------------------------ */
.center { text-align: center; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------
   Language switcher (header)
   ------------------------------------------------------------ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 7px 12px;
  border: 1.5px solid var(--rule-strong);
  border-radius: var(--r-pill);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.lang-switch:hover { border-color: var(--accent); color: var(--accent); }
.lang-switch .globe { font-size: 0.95em; line-height: 1; }

/* ------------------------------------------------------------
   Arabic / RTL typography
   Applied only on lang="ar" pages (which also carry dir="rtl").
   Directional layout is handled by logical properties above,
   so this block only fixes Arabic-specific type concerns.
   ------------------------------------------------------------ */
html[lang="ar"] {
  --sans:  'Cairo', 'Segoe UI', system-ui, sans-serif;
  --serif: 'Cairo', 'Segoe UI', system-ui, sans-serif;
  --mono:  'Cairo', 'Segoe UI', system-ui, sans-serif;
}
html[lang="ar"] body { line-height: 1.85; }
/* Arabic is cursive — letter-spacing breaks glyph joining; kill it everywhere. */
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] .eyebrow,
html[lang="ar"] .footer-grid h4,
html[lang="ar"] .guide-card .tag,
html[lang="ar"] .article th,
html[lang="ar"] .lang-switch,
html[lang="ar"] .btn { letter-spacing: 0; }
html[lang="ar"] h1 { line-height: 1.28; }
html[lang="ar"] h2, html[lang="ar"] h3 { line-height: 1.35; }
html[lang="ar"] .article h1 { line-height: 1.3; }
/* Arabic has no italic form — synthetic slant looks broken; emphasize with weight/color. */
html[lang="ar"] em { font-style: normal; font-weight: 700; color: var(--accent-deep); }
html[lang="ar"] .cta-band em { color: #fff; }
/* Digits/counters read better slightly larger against Arabic text. */
html[lang="ar"] .step::before,
html[lang="ar"] .how-spokt ol > li::before { font-family: 'Cairo', system-ui, sans-serif; }
