:root {
  color-scheme: light;
  --ink: #081a2f;
  --ink-soft: #34465a;
  --muted: #58697b;
  --page: #f6f8fb;
  --surface: #ffffff;
  --surface-cool: #eff5f8;
  --line: #d9e1e8;
  --line-strong: #bdc9d4;
  --hero: #061827;
  --hero-surface: #0a2034;
  --hero-line: #294258;
  --hero-text: #f3f8fc;
  --hero-muted: #aebdca;
  --cyan: #72e2ef;
  --cyan-strong: #08758a;
  --cyan-pale: #e1f7fa;
  --emerald: #13845d;
  --emerald-pale: #e4f6ef;
  --coral: #b64242;
  --coral-pale: #fff0ef;
  --amber: #a66710;
  --amber-pale: #fff5df;
  --focus: #20bdd0;
  --radius: 8px;
  --shadow-soft: 0 16px 42px rgba(8, 26, 47, 0.08);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, "Noto Sans Arabic", Tahoma, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.site-shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.site-header-dark {
  border-color: var(--hero-line);
  background: rgba(6, 24, 39, 0.97);
  color: var(--hero-text);
}

.site-nav {
  position: relative;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-lockup {
  display: inline-grid;
  justify-items: center;
  gap: 4px;
  color: inherit;
  line-height: 1;
}

.brand-line {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.brand-line img {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-word {
  margin-left: -0.08em;
  font-weight: 900;
}

.brand-arabic {
  font-family: Tahoma, "Noto Sans Arabic", sans-serif;
  font-size: 0.32em;
  font-weight: 700;
}

.brand-lockup-compact {
  font-size: 24px;
}

.brand-lockup-footer {
  justify-items: start;
  font-size: 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.brand-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.site-header-dark .nav-links {
  color: var(--hero-muted);
}

.nav-links > a:not(.nav-cta):hover {
  color: var(--cyan-strong);
}

.site-header-dark .nav-links > a:not(.nav-cta):hover {
  color: var(--cyan);
}

.nav-toggle {
  display: none;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.site-header-dark .nav-toggle {
  border-color: var(--hero-line);
  background: var(--hero-surface);
  color: var(--hero-text);
}

.nav-cta,
.button-primary,
.button-secondary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 19px;
  font-size: 14px;
  font-weight: 800;
}

.nav-cta,
.button-primary {
  border: 1px solid #56d6e5;
  background: var(--cyan);
  color: #052332;
}

.nav-cta:hover,
.button-primary:hover {
  border-color: #8aeaf4;
  background: #91edf5;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--cyan-strong);
  color: var(--cyan-strong);
}

.site-header-dark + main .button-secondary,
.landing-page .hero-scene .button-secondary {
  border-color: #4b6275;
  color: var(--hero-text);
}

.site-header-dark + main .button-secondary:hover,
.landing-page .hero-scene .button-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.hero-scene {
  border-bottom: 1px solid var(--hero-line);
  background: var(--hero);
  color: var(--hero-text);
}

.hero-scene-inner {
  display: grid;
  justify-items: center;
  padding-top: 62px;
  padding-bottom: 68px;
  text-align: center;
}

.hero-kicker {
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-brand {
  margin: 0 0 24px;
  font-size: 78px;
}

.hero-brand .brand-arabic {
  color: #d8f8fb;
}

.hero-arabic-promise {
  margin: -10px 0 14px;
  color: var(--cyan);
  font-family: Tahoma, "Noto Sans Arabic", sans-serif;
  font-size: 19px;
  font-weight: 800;
}

.hero-outcome {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.08;
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-scene .hero-subtitle {
  color: var(--hero-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-proof {
  margin-bottom: 16px;
  color: var(--hero-muted);
  font-size: 13px;
}

.hero-proof strong {
  color: var(--hero-text);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  color: var(--hero-muted);
  font-size: 12px;
  list-style: none;
}

.hero-facts li {
  position: relative;
  padding: 0 15px;
}

.hero-facts li + li::before {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 1px;
  background: var(--hero-line);
  content: "";
}

.hero-facts strong {
  color: var(--hero-text);
}

.section {
  scroll-margin-top: 68px;
  padding: 88px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--cyan-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section h1,
.section h2,
.closing-band h2 {
  margin-bottom: 16px;
  font-size: 43px;
  line-height: 1.1;
}

.section h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.35;
}

.section-lede {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.section-head-wide {
  max-width: 900px;
}

.market-band {
  background: var(--surface);
}

.market-lenses {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.market-lenses article {
  min-width: 0;
  padding: 28px 26px 6px 0;
}

.market-lenses article + article {
  border-left: 1px solid var(--line);
  padding-left: 26px;
}

.market-lenses span,
.feature-index {
  display: block;
  margin-bottom: 24px;
  color: var(--cyan-strong);
  font-size: 11px;
  font-weight: 900;
}

.market-lenses p,
.intelligence-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.intelligence-band {
  background: var(--surface-cool);
}

.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 34px;
}

.intelligence-grid article {
  display: grid;
  min-width: 0;
  align-content: start;
  border-top: 1px solid var(--line-strong);
  padding: 28px 0 32px;
}

.intelligence-grid article:nth-child(n + 4) {
  border-bottom: 1px solid var(--line-strong);
}

.intelligence-grid h3 {
  font-size: 20px;
}

.intelligence-grid p {
  margin-bottom: 20px;
}

.intelligence-grid strong {
  align-self: end;
  color: var(--ink-soft);
  font-size: 12px;
}

.signals-band {
  background: var(--surface);
}

.signal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(540px, 1.28fr);
  align-items: start;
  gap: 80px;
}

.signal-layout .section-head {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

.feature-proof {
  border-left: 3px solid var(--cyan-strong);
  margin: 26px 0 0;
  padding-left: 16px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.signal-list {
  border-top: 1px solid var(--line-strong);
}

.signal-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 22px 0 22px 20px;
}

.signal-item::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 3px;
  background: var(--cyan-strong);
  content: "";
}

.signal-item.signal-coral::before {
  background: var(--coral);
}

.signal-item.signal-amber::before {
  background: var(--amber);
}

.signal-item.signal-emerald::before {
  background: var(--emerald);
}

.signal-item span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-item h3,
.signal-item p {
  margin-bottom: 0;
}

.signal-item p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.evidence-band {
  border-top: 1px solid var(--hero-line);
  border-bottom: 1px solid var(--hero-line);
  background: var(--hero);
  color: var(--hero-text);
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 84px;
}

.evidence-copy .section-kicker {
  color: var(--cyan);
}

.evidence-copy .section-lede {
  color: var(--hero-muted);
}

.evidence-standard {
  margin: 0;
  border-top: 1px solid var(--hero-line);
  padding: 0;
  list-style: none;
}

.evidence-standard li {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--hero-line);
  padding: 16px 0;
}

.evidence-standard strong {
  color: var(--cyan);
  font-size: 12px;
}

.evidence-standard span {
  color: var(--hero-muted);
  font-size: 13px;
}

.evidence-snapshot {
  overflow: hidden;
  border: 1px solid #426077;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.evidence-snapshot > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 24px;
}

.evidence-snapshot header span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.evidence-snapshot h3 {
  margin: 4px 0 0;
  font-size: 21px;
}

.evidence-snapshot header > strong {
  border: 1px solid #a5dac6;
  border-radius: 4px;
  background: var(--emerald-pale);
  padding: 5px 8px;
  color: #116747;
  font-size: 10px;
  text-transform: uppercase;
}

.evidence-snapshot dl {
  margin: 0;
  padding: 0 24px;
}

.evidence-snapshot dl > div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}

.evidence-snapshot dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.evidence-snapshot dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.evidence-qualifier {
  margin: 0;
  background: var(--cyan-pale);
  padding: 18px 24px;
  color: var(--ink-soft);
  font-size: 12px;
}

.evidence-qualifier strong {
  color: var(--ink);
}

.evidence-snapshot .button-primary {
  width: calc(100% - 48px);
  margin: 20px 24px 24px;
}

.benefits-band {
  background: var(--surface);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.benefit-list article {
  min-width: 0;
  padding: 28px 32px 6px 0;
}

.benefit-list article + article {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}

.benefit-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--cyan-strong);
  font-size: 12px;
  font-weight: 900;
}

.benefit-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-band {
  background: var(--surface-cool);
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 72px;
}

.product-story .section-head {
  margin-bottom: 0;
}

.product-teaser {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.teaser-heading {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 14px 20px;
}

.teaser-heading span,
.teaser-signal > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.teaser-heading strong {
  font-size: 14px;
}

.teaser-dates {
  display: grid;
  grid-template-columns: repeat(5, minmax(116px, 1fr));
  gap: 1px;
  overflow-x: auto;
  background: var(--line);
  scrollbar-color: var(--line-strong) var(--surface-cool);
  scrollbar-width: thin;
}

.teaser-date {
  display: grid;
  min-height: 102px;
  align-content: center;
  gap: 8px;
  border-top: 3px solid transparent;
  background: var(--surface);
  padding: 18px;
}

.teaser-date b {
  font-size: 14px;
}

.teaser-date em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.teaser-date.state-good {
  border-top-color: var(--emerald);
}

.teaser-date.state-review {
  border-top-color: var(--coral);
}

.teaser-date.state-closed {
  border-top-color: var(--amber);
}

.teaser-date.is-selected {
  background: var(--coral-pale);
}

.teaser-date.state-good em {
  color: var(--emerald);
}

.teaser-date.state-review em {
  color: var(--coral);
}

.teaser-date.state-closed em {
  color: var(--amber);
}

.teaser-signal {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 24px;
}

.teaser-signal strong {
  font-size: 21px;
  line-height: 1.25;
}

.teaser-signal p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.workflow-band {
  background: var(--surface);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 80px;
}

.workflow-layout .section-head {
  margin-bottom: 0;
}

.workflow-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.workflow-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.workflow-steps li > span {
  color: var(--cyan-strong);
  font-size: 13px;
  font-weight: 900;
}

.workflow-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-band {
  background: var(--hero);
  color: var(--hero-text);
}

.pricing-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: 88px;
}

.pricing-story .section-head {
  margin-bottom: 0;
}

.pricing-story .section-kicker {
  color: var(--cyan);
}

.pricing-story .section-lede {
  color: var(--hero-muted);
}

.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 30px;
}

.pricing-card-featured {
  border-color: #3d6075;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.pricing-card > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.pricing-card header span {
  font-size: 21px;
  font-weight: 900;
}

.pricing-card header p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.pricing-card header > strong,
.price-number {
  font-size: 36px;
  line-height: 1;
  white-space: nowrap;
}

.pricing-card small,
.price-number small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.pricing-card ul,
.included-list {
  display: grid;
  gap: 11px;
  margin: 22px 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
}

.pricing-card li,
.included-list li {
  position: relative;
  padding-left: 20px;
}

.pricing-card li::before,
.included-list li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  content: "";
}

.pricing-card .button-primary {
  width: 100%;
}

.pricing-card .hero-actions {
  display: block;
}

.text-link {
  display: block;
  margin-top: 14px;
  color: var(--cyan-strong);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.custom-note {
  margin: 22px -30px -30px;
  border-top: 1px solid var(--line);
  background: var(--cyan-pale);
  padding: 18px 30px;
  color: var(--ink-soft);
  font-size: 12px;
}

.custom-note strong {
  color: var(--ink);
}

.faq-band {
  background: var(--page);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 80px;
}

.faq-layout .section-head {
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  position: relative;
  padding: 22px 40px 22px 0;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 19px;
  right: 0;
  color: var(--cyan-strong);
  content: "+";
  font-size: 22px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 650px;
  margin-bottom: 22px;
  color: var(--muted);
}

.closing-band {
  border-top: 1px solid var(--hero-line);
  background: var(--hero-surface);
  color: var(--hero-text);
  padding: 58px 0;
}

.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.closing-inner .section-kicker {
  color: var(--cyan);
}

.closing-band h2 {
  max-width: 660px;
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  padding: 30px 0;
  font-size: 12px;
}

.site-footer-dark {
  border-color: var(--hero-line);
  background: var(--hero);
  color: var(--hero-muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand p {
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--cyan-strong);
}

.site-footer-dark .footer-links a:hover {
  color: var(--cyan);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 28px;
  align-items: start;
}

.pricing-page-head {
  max-width: 760px;
}

.pricing-checkout-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: 42px;
}

.pricing-plan-header {
  align-items: center;
}

.plan-badge {
  border: 1px solid #8fcdbb;
  border-radius: 4px;
  background: var(--emerald-pale);
  color: var(--emerald);
  padding: 6px 9px;
  font-size: 11px !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.billing-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface-cool);
  padding: 3px;
}

.billing-toggle button {
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.billing-toggle button span {
  display: inline-block;
  margin-left: 4px;
  color: var(--emerald);
  font-size: 10px;
}

.billing-toggle button.is-active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(8, 26, 47, 0.1);
}

.localized-price {
  display: flex;
  min-height: 64px;
  align-items: baseline;
  gap: 9px;
  margin-top: 24px;
}

.localized-price strong {
  color: var(--ink);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
}

.localized-price > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.localized-price-note {
  min-height: 42px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
}

.checkout-email {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.checkout-email small {
  color: var(--muted);
  font-weight: 600;
}

.checkout-email input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  padding: 0 13px;
  font: inherit;
  font-size: 14px;
}

.checkout-email input:focus {
  border-color: var(--focus);
  outline: 2px solid rgba(32, 189, 208, 0.2);
}

.subscribe-button {
  width: 100%;
  border: 1px solid #56d6e5;
  cursor: pointer;
}

.subscribe-button:disabled {
  border-color: var(--line-strong);
  background: var(--surface-cool);
  color: var(--muted);
  cursor: wait;
}

.checkout-status {
  min-height: 20px;
  margin: 9px 0 0;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 700;
}

.checkout-status.is-error {
  color: var(--coral);
}

.pricing-feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 20px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.pricing-policy-line {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.pricing-policy-line a {
  color: var(--cyan-strong);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.onboarding-panel {
  border-top: 3px solid var(--cyan-strong);
  background: var(--surface-cool);
  padding: 30px;
}

.onboarding-panel h2 {
  font-size: 26px;
}

.setup-steps {
  display: grid;
  gap: 0;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.setup-steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.setup-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.setup-steps li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--surface);
  font-size: 12px;
  font-weight: 900;
}

.setup-steps strong {
  color: var(--ink);
  font-size: 14px;
}

.setup-steps p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.assisted-note {
  border-left: 3px solid var(--emerald);
  background: var(--surface);
  padding: 16px;
}

.assisted-note p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.onboarding-contact {
  width: 100%;
  margin-top: 18px;
}

.welcome-panel {
  max-width: 900px;
  margin-inline: auto;
}

.welcome-panel > h1 {
  max-width: 720px;
  font-size: 56px;
  line-height: 1.04;
}

.welcome-panel > .hero-subtitle {
  max-width: 720px;
}

.welcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.welcome-grid article {
  padding: 28px 24px 28px 0;
}

.welcome-grid article + article {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.welcome-grid span {
  color: var(--cyan-strong);
  font-size: 12px;
  font-weight: 900;
}

.welcome-grid h2 {
  margin: 16px 0 8px;
  font-size: 18px;
}

.welcome-grid p,
.welcome-next p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.welcome-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 30px;
  background: var(--surface-cool);
  padding: 24px;
}

.welcome-next > div {
  max-width: 560px;
}

.welcome-next p {
  margin-top: 5px;
}

.price-number {
  margin: 18px 0;
  font-weight: 900;
}

.note-panel {
  border-left: 3px solid var(--cyan-strong);
  background: var(--surface-cool);
  padding: 28px;
}

.note-panel h2 {
  font-size: 22px;
}

.note-panel p {
  color: var(--ink-soft);
}

.note-panel a,
.legal-content a {
  color: var(--cyan-strong);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.arabic-line {
  width: fit-content;
  margin-bottom: 10px;
  color: var(--cyan-strong);
  font-family: Tahoma, "Noto Sans Arabic", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.legal-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 96px;
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-nav a {
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.legal-nav a:hover {
  color: var(--cyan-strong);
}

.legal-content {
  min-width: 0;
}

.legal-card {
  border-top: 1px solid var(--line-strong);
  padding: 28px 0 8px;
}

.legal-card h2 {
  font-size: 23px;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready [data-reveal] {
    opacity: 0.88;
    transform: translateY(12px);
    transition: opacity 300ms ease, transform 300ms ease;
  }

  .motion-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 1020px) {
  .product-story,
  .workflow-layout,
  .pricing-story,
  .faq-layout,
  .signal-layout,
  .evidence-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-story .section-head,
  .workflow-layout .section-head,
  .pricing-story .section-head,
  .faq-layout .section-head {
    max-width: 760px;
  }

  .signal-layout .section-head {
    position: static;
  }

  .signal-list,
  .evidence-snapshot {
    max-width: 760px;
  }

  .market-lenses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-lenses article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .market-lenses article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .intelligence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intelligence-grid article:nth-child(n + 4) {
    border-bottom: 0;
  }

  .intelligence-grid article:nth-child(n + 5) {
    border-bottom: 1px solid var(--line-strong);
  }

  .pricing-story .pricing-card {
    max-width: 620px;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-nav {
    min-height: 62px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    padding: 10px;
    color: var(--ink-soft);
  }

  .nav-links[data-open] {
    display: grid;
  }

  .nav-links a {
    min-height: 44px;
    padding: 12px 10px;
  }

  .nav-links .nav-cta {
    margin-top: 4px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 32px, 1160px);
  }

  .site-nav {
    min-height: 62px;
  }

  .brand-lockup-compact {
    font-size: 22px;
  }

  .pricing-checkout-layout {
    gap: 24px;
  }

  .pricing-feature-list {
    grid-template-columns: 1fr;
  }

  .localized-price strong {
    font-size: 31px;
  }

  .billing-toggle button span {
    display: block;
    margin: 2px 0 0;
  }

  .onboarding-panel {
    padding: 24px;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
  }

  .welcome-panel > h1 {
    font-size: 38px;
  }

  .welcome-grid article,
  .welcome-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 22px 0;
  }

  .welcome-grid article:first-child {
    border-top: 0;
  }

  .welcome-next {
    align-items: stretch;
    flex-direction: column;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    padding: 10px;
    color: var(--ink-soft);
  }

  .nav-links[data-open] {
    display: grid;
  }

  .nav-links a {
    min-height: 44px;
    padding: 12px 10px;
  }

  .nav-links .nav-cta {
    margin-top: 4px;
  }

  .hero-scene-inner {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .hero-brand {
    margin-bottom: 20px;
    font-size: 52px;
  }

  .hero-arabic-promise {
    margin-top: -8px;
    font-size: 17px;
  }

  .hero-outcome {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-facts {
    display: grid;
    gap: 5px;
  }

  .hero-facts li {
    padding: 0;
  }

  .hero-facts li + li::before {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .section h1,
  .section h2,
  .closing-band h2 {
    font-size: 34px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .market-lenses,
  .intelligence-grid {
    grid-template-columns: 1fr;
  }

  .market-lenses article,
  .market-lenses article + article,
  .market-lenses article:nth-child(3),
  .market-lenses article:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 24px 0;
  }

  .market-lenses span,
  .feature-index {
    margin-bottom: 14px;
  }

  .intelligence-grid article,
  .intelligence-grid article:nth-child(n + 4),
  .intelligence-grid article:nth-child(n + 5) {
    border-bottom: 0;
    padding: 24px 0;
  }

  .intelligence-grid article:last-child {
    border-bottom: 1px solid var(--line-strong);
  }

  .signal-item {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .evidence-standard li {
    grid-template-columns: 125px minmax(0, 1fr);
    gap: 16px;
  }

  .benefit-list article {
    border-top: 1px solid var(--line);
    padding: 24px 0;
  }

  .benefit-list article + article {
    border-left: 0;
    padding-left: 0;
  }

  .benefit-list span {
    margin-bottom: 16px;
  }

  .teaser-dates {
    grid-template-columns: repeat(5, 116px);
  }

  .workflow-steps li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
  }

  .pricing-card {
    padding: 24px;
  }

  .pricing-card > header {
    align-items: flex-end;
  }

  .pricing-card header > strong,
  .price-number {
    font-size: 31px;
  }

  .custom-note {
    margin: 22px -24px -24px;
    padding: 17px 24px;
  }

  .closing-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-card h2 {
    font-size: 24px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions a {
    min-width: 0;
    padding-inline: 10px;
  }

  .hero-outcome {
    font-size: 34px;
  }

  .teaser-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .teaser-signal {
    padding: 20px;
  }

  .pricing-card > header {
    display: grid;
  }

  .evidence-standard li,
  .evidence-snapshot dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) and (max-height: 700px) {
  .hero-scene-inner {
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .hero-kicker {
    display: none;
  }

  .hero-brand {
    margin-bottom: 10px;
    font-size: 40px;
  }

  .hero-arabic-promise {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .hero-outcome {
    margin-bottom: 10px;
    font-size: 28px;
  }

  .hero-subtitle {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 0;
  }

  .hero-proof {
    display: none;
  }

  .hero-facts {
    display: none;
  }
}
