@font-face {
  font-family: "Manrope Variable";
  src: url("/fonts/manrope-latin.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face { font-family: "Manrope Variable"; src: url("/fonts/manrope-latin-ext.woff2") format("woff2-variations"); font-weight: 100 900; font-display: swap; }
@font-face { font-family: "Manrope Variable"; src: url("/fonts/manrope-cyrillic.woff2") format("woff2-variations"); font-weight: 100 900; font-display: swap; }
@font-face { font-family: "Tajawal"; src: url("/fonts/tajawal-arabic-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Tajawal"; src: url("/fonts/tajawal-arabic-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Tajawal"; src: url("/fonts/tajawal-arabic-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Tajawal"; src: url("/fonts/tajawal-arabic-800.woff2") format("woff2"); font-weight: 800; font-display: swap; }

:root {
  --ink: #101827;
  --ink-soft: #53627a;
  --muted: #718096;
  --line: #dde3ec;
  --canvas: #fbfaf7;
  --surface: #ffffff;
  --blue: #1467f3;
  --blue-dark: #0b54cf;
  --blue-soft: #eaf3ff;
  --green: #1f9d49;
  --green-soft: #eaf7ef;
  --coral: #f04d3a;
  --coral-soft: #fff0ed;
  --shadow: 0 28px 80px rgb(19 34 56 / 14%), 0 8px 24px rgb(19 34 56 / 8%);
  --radius: 14px;
  --radius-lg: 24px;
  --page-width: 1320px;
  --page-gutter: 48px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Manrope Variable", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
html[lang="ar"] body { font-family: "Tajawal", sans-serif; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] strong { letter-spacing: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
.hidden { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 20;
  display: grid;
  width: min(calc(100% - var(--page-gutter)), var(--page-width));
  min-height: 84px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.site-brand { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-size: 25px; font-weight: 800; letter-spacing: -.045em; }
.site-brand img { width: 32px; height: 32px; border-radius: 9px; }
.desktop-nav { display: flex; align-items: center; gap: 32px; color: var(--ink-soft); font-size: 14px; font-weight: 600; }
.desktop-nav a:hover { color: var(--blue); }
.nav-actions { display: flex; justify-content: flex-end; align-items: center; gap: 8px; }
.language-control { position: relative; display: inline-flex; align-items: center; }
.desktop-language { border-right: 1px solid var(--line); padding-right: 8px; }
.language-control > button { display: inline-flex; min-height: 40px; align-items: center; gap: 7px; border: 0; border-radius: 8px; background: transparent; padding: 7px 8px; color: var(--ink-soft); font-size: 13px; font-weight: 700; }
.language-control > button:hover, .language-control > button[aria-expanded="true"] { background: #f5f8fc; color: var(--ink); }
.language-control > button i:first-child { color: var(--blue); font-size: 16px; }
.language-control > button i:last-child { color: var(--muted); font-size: 12px; }
.switcher-menu { position: absolute; z-index: 50; top: calc(100% + 8px); right: 0; width: max-content; min-width: 180px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow); padding: 6px; }
.switcher-menu button { display: flex; width: 100%; min-height: 42px; align-items: center; justify-content: space-between; gap: 18px; border: 0; border-radius: 8px; background: transparent; padding: 9px 11px; text-align: left; white-space: nowrap; }
.switcher-menu button:hover, .switcher-menu button[aria-checked="true"] { background: var(--blue-soft); color: var(--blue); }
.language-menu button span { color: var(--muted); font-size: 11px; }
.mobile-language { display: none; width: 100%; margin-top: 5px; border-top: 1px solid var(--line); padding: 13px 14px 8px; }
.mobile-language > button { width: 100%; justify-content: space-between; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 9px;
  padding: 0 17px;
  font-weight: 720;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--blue); color: white; box-shadow: 0 8px 22px rgb(8 102 229 / 18%); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 12px 26px rgb(8 102 229 / 25%); }
.button-secondary { border: 1px solid #a9c0e5; background: transparent; color: var(--blue); box-shadow: none; }
.button-secondary:hover { border-color: var(--blue); background: var(--blue-soft); box-shadow: 0 8px 22px rgb(20 103 243 / 10%); }
.button-quiet { color: var(--ink-soft); }
.button-quiet:hover { background: white; }
.button-large { min-height: 54px; padding: 0 23px; border-radius: 10px; }
.button-light { background: white; color: var(--blue); }

.menu-button { display: none; width: 42px; height: 42px; place-items: center; border: 0; border-radius: 8px; background: white; font-size: 21px; }
.mobile-nav { position: absolute; top: 73px; right: 0; left: 0; display: grid; border: 1px solid var(--line); border-radius: 12px; background: white; box-shadow: var(--shadow); padding: 10px; }
.mobile-nav a { border-radius: 8px; padding: 12px 14px; font-weight: 650; }
.mobile-nav a:hover { background: var(--blue-soft); color: var(--blue); }

.hero {
  position: relative;
  display: grid;
  width: min(calc(100% - var(--page-gutter)), var(--page-width));
  min-height: 660px;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  margin: 16px auto 48px;
  border: 1px solid #d5e4fa;
  border-radius: 32px;
  background: #edf5ff;
  padding: 62px clamp(28px, 4vw, 58px) 68px;
}

.eyebrow { margin: 0; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero .eyebrow { display: flex; align-items: center; gap: 9px; }
.hero .eyebrow span { width: 24px; height: 2px; background: var(--blue); }
.hero h1 { max-width: 760px; margin: 20px 0 22px; font-size: clamp(48px, 5.8vw, 82px); font-weight: 760; letter-spacing: -.06em; line-height: .99; }
.hero h1 em { display: block; color: var(--blue); font-style: normal; }
.hero-lede { max-width: 610px; margin: 0; color: var(--ink-soft); font-size: clamp(17px, 1.4vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-soft); font-weight: 680; }
.text-link:hover { color: var(--blue); }
.trust-list { display: flex; flex-wrap: wrap; gap: 14px 22px; margin: 30px 0 0; padding: 0; color: var(--muted); font-size: 12px; list-style: none; }
.trust-list li { display: flex; align-items: center; gap: 6px; }
.trust-list i { color: var(--green); font-size: 17px; }

.hero-product { position: relative; min-width: 0; }
.preview-frame { overflow: hidden; border: 1px solid #cfd7e3; border-radius: 18px; background: white; box-shadow: var(--shadow); transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.preview-bar { display: flex; height: 38px; align-items: center; gap: 6px; border-bottom: 1px solid var(--line); background: #f7f8fa; padding: 0 13px; }
.preview-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #c5ccd7; }
.preview-bar small { flex: 1; color: #9099a8; font-size: 9px; text-align: center; }
.preview-frame img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: top; }
.hero-proof { position: absolute; right: -20px; bottom: -30px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 12px; background: white; box-shadow: 0 16px 40px rgb(19 34 56 / 18%); padding: 13px 16px; }
.hero-proof > i { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 9px; background: var(--blue-soft); color: var(--blue); font-size: 18px; }
.hero-proof span { display: grid; }
.hero-proof strong { max-width: 190px; overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.hero-proof small { color: var(--muted); font-size: 10px; }

.clarity-strip { display: flex; min-height: 82px; align-items: center; justify-content: center; gap: clamp(22px, 5vw, 68px); border-block: 1px solid var(--line); background: white; padding: 18px 24px; }
.clarity-strip p { color: var(--muted); }
.clarity-strip div { display: flex; align-items: center; gap: 9px; }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot-green { background: var(--green); }
.dot-coral { background: var(--coral); }
.dot-blue { background: var(--blue); }

.section { width: min(calc(100% - var(--page-gutter)), var(--page-width)); margin: 0 auto; padding: 112px clamp(0px, 5vw, 70px); }
.section-heading { max-width: 680px; }
.section-heading.centered { margin: 0 auto; text-align: center; }
.section h2, .final-cta h2 { margin: 13px 0 18px; font-size: clamp(36px, 4vw, 56px); letter-spacing: -.045em; line-height: 1.08; }
.section-heading > p:last-child, .fit-copy > p, .apps-copy > p { color: var(--ink-soft); font-size: 18px; line-height: 1.65; }

.plans-section { padding-top: 96px; }
.plans-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 52px; }
.plan-card { position: relative; display: flex; min-height: 500px; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: #fff; padding: 28px; box-shadow: 0 18px 44px rgb(19 34 56 / 6%); }
.billing-cycle-toggle { display: flex; width: max-content; gap: 4px; margin: 34px auto 0; border: 1px solid var(--line); border-radius: 999px; background: #f5f8fc; padding: 4px; }
.billing-cycle-toggle button { border: 0; border-radius: 999px; background: transparent; color: var(--ink-soft); cursor: pointer; padding: 9px 16px; font-size: 12px; font-weight: 800; }
.billing-cycle-toggle button.is-active { background: #fff; color: var(--blue); box-shadow: 0 4px 14px rgb(19 34 56 / 9%); }
.billing-cycle-toggle button[data-billing-cycle="year"] { display: inline-flex; align-items: center; gap: 8px; }
.billing-promo { display: inline-flex; min-height: 25px; align-items: center; gap: 5px; margin-left: 2px; border: 1px solid #a6ddb7; border-radius: 999px; background: linear-gradient(135deg, #eaf7ef, #d8f6e3); box-shadow: 0 5px 12px rgb(31 157 73 / 16%); color: #16783b !important; padding: 4px 8px 4px 6px; font-size: 10px !important; line-height: 1; }
.billing-promo i { color: var(--coral); font-size: 13px; }
.billing-promo strong { font-size: 10px; letter-spacing: .01em; }
.billing-promo small { color: #16783b; font-size: 8px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.plans-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 52px; }
.plan-card { position: relative; display: flex; min-height: 500px; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: #fff; padding: 28px; box-shadow: 0 18px 44px rgb(19 34 56 / 6%); }
.plan-card.is-current { border-color: #b6c8df; background: #f7f9fc; box-shadow: none; }
.plan-card.is-current .button { pointer-events: none; border-color: #c8d2df; background: #e8edf4; color: #728096; }
.current-plan-label { display: inline-flex; align-self: flex-start; border-radius: 999px; background: var(--green-soft); color: var(--green); padding: 5px 10px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.plan-card-featured { border-color: #8fb9ff; box-shadow: 0 22px 60px rgb(20 103 243 / 16%); transform: translateY(-10px); }
.plan-badge { position: absolute; top: 16px; right: 16px; border-radius: 999px; background: var(--blue-soft); color: var(--blue); padding: 5px 10px; font-size: 10px; font-weight: 800; }
.plan-kicker { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.plan-card h3 { margin: 12px 0 0; font-size: 29px; letter-spacing: -.045em; }
.plan-card-top { min-height: 166px; }
.plan-card-featured .plan-card-top { padding-top: 4px; }
.plan-price { display: flex; align-items: baseline; gap: 7px; margin: 13px 0 0; }
.plan-price strong { font-size: 42px; letter-spacing: -.06em; line-height: 1; }
.plan-price span { color: var(--muted); font-size: 11px; }
.trial-copy { min-height: 21px; margin: 10px 0 0; color: var(--blue); font-size: 12px; font-weight: 800; }
.plan-card ul { display: grid; gap: 14px; flex: 1; margin: 26px 0 28px; padding: 0; list-style: none; }
.plan-card li { display: flex; align-items: flex-start; gap: 9px; color: var(--ink-soft); font-size: 13px; line-height: 1.45; }
.plan-card li i { flex: 0 0 auto; color: var(--green); font-size: 17px; }
.plan-card .button { width: 100%; }
.plans-footnote { margin: 22px auto 0; color: var(--muted); font-size: 12px; text-align: center; }

.steps-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 58px; border-top: 1px solid var(--line); }
.steps-grid article { position: relative; display: grid; min-height: 150px; grid-template-columns: 90px 56px minmax(0, 1fr); align-items: center; column-gap: 24px; overflow: hidden; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; padding: 24px 10px; }
.steps-grid article > i { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 12px; background: var(--blue-soft); color: var(--blue); font-size: 25px; }
.steps-grid article:nth-child(2) > i { background: var(--green-soft); color: var(--green); }
.steps-grid article:nth-child(3) > i { background: var(--coral-soft); color: var(--coral); }
.step-number { position: static; color: #b9c9dc; font-size: 42px; font-weight: 800; }
.steps-grid h3 { grid-column: 3; align-self: end; margin: 0 0 4px; font-size: 22px; }
.steps-grid p { grid-column: 3; align-self: start; max-width: 760px; margin: 0; color: var(--ink-soft); line-height: 1.6; }
.steps-grid article > i { grid-row: 1 / span 2; grid-column: 2; }
.steps-grid .step-number { grid-row: 1 / span 2; grid-column: 1; }

.fit-section { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(56px, 9vw, 120px); }
.feature-list { display: grid; gap: 23px; margin: 36px 0 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 27px 1fr; gap: 12px; }
.feature-list i { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: 14px; }
.feature-list span { display: grid; gap: 3px; color: var(--ink-soft); }
.feature-list strong { color: var(--ink); }
.fit-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fit-card { display: flex; min-height: 190px; flex-direction: column; justify-content: flex-end; border: 1px solid var(--line); border-radius: var(--radius); background: white; padding: 25px; }
.fit-card i { margin-bottom: auto; color: var(--blue); font-size: 31px; }
.fit-card span { color: var(--ink-soft); font-size: 12px; }
.fit-card strong { margin-top: 3px; font-size: 19px; }
.fit-card-blue { background: var(--blue); color: white; }
.fit-card-blue i, .fit-card-blue span { color: white; }
.fit-card-green { background: var(--green-soft); }
.fit-card-green i { color: var(--green); }

.security-section { display: grid; grid-template-columns: 100px minmax(0, 1fr) minmax(250px, .7fr); align-items: center; gap: 38px; width: min(calc(100% - var(--page-gutter)), var(--page-width)); border: 1px solid #cae0ff; border-radius: var(--radius-lg); background: var(--blue-soft); padding: 55px; }
.security-section h2 { max-width: 700px; font-size: clamp(32px, 3.5vw, 49px); }
.security-section > div:nth-child(2) > p:last-child { max-width: 700px; color: var(--ink-soft); }
.security-mark { display: grid; width: 82px; height: 82px; place-items: center; border-radius: 22px; background: var(--blue); color: white; font-size: 42px; }
.security-mark img { width: 56px; height: 56px; }
.security-section ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.security-section li { display: flex; align-items: center; gap: 11px; border-bottom: 1px solid #c9dbf1; padding: 0 0 13px; font-weight: 700; }
.security-section li i { color: var(--blue); font-size: 21px; }

.apps-section { display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: center; gap: clamp(70px, 11vw, 150px); overflow: hidden; }
.store-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.store-button { display: flex; min-width: 178px; align-items: center; gap: 11px; border: 1px solid var(--line); border-radius: 11px; background: white; padding: 11px 15px; }
.store-button > i { color: var(--blue); font-size: 27px; }
.store-button > span { display: grid; }
.store-button small { color: var(--muted); font-size: 9px; }
.store-button strong { font-size: 15px; }
.store-button:not(.coming-soon):hover { border-color: var(--blue); }
.coming-soon { opacity: .65; }
.phone-preview { position: relative; width: 310px; height: 610px; overflow: hidden; border: 9px solid #101827; border-radius: 43px; background: white; box-shadow: var(--shadow); }
.phone-speaker { position: absolute; z-index: 2; top: 9px; left: 50%; width: 72px; height: 18px; transform: translateX(-50%); border-radius: 99px; background: #101827; }
.phone-preview img { width: 1020px; max-width: none; height: 610px; object-fit: cover; object-position: 13% top; }

.final-cta { width: min(calc(100% - var(--page-gutter)), var(--page-width)); margin: 0 auto 90px; border-radius: var(--radius-lg); background: var(--blue); color: white; padding: 85px 36px; text-align: center; }
.final-cta .eyebrow { color: #cfe2ff; }
.final-cta h2 { max-width: 760px; margin-inline: auto; }
.final-cta > p:not(.eyebrow) { max-width: 590px; margin: 0 auto 28px; color: #dceaff; font-size: 18px; }

.site-footer { display: grid; width: min(calc(100% - var(--page-gutter)), var(--page-width)); grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; margin: 0 auto; border-top: 1px solid var(--line); padding: 34px 0 40px; color: var(--muted); }
.site-footer p { margin: 0; font-size: 13px; }
.site-footer nav { display: flex; gap: 22px; font-size: 13px; }
.site-footer nav a:hover { color: var(--blue); }
.site-footer small { grid-column: 1 / -1; font-size: 11px; }
.legal-page { padding-top: 72px; padding-bottom: 80px; }
.legal-content { width: min(920px, 100%); margin: 0 auto; border: 1px solid var(--line); border-radius: 24px; background: #fff; padding: clamp(26px, 5vw, 62px); box-shadow: 0 24px 70px rgb(19 34 56 / 8%); }
.legal-content h1 { margin: 0 0 12px; font-size: clamp(36px, 5vw, 58px); letter-spacing: -.055em; line-height: 1.05; }
.legal-content h2 { margin: 38px 0 8px; font-size: 22px; letter-spacing: -.025em; }
.legal-content p, .legal-content li { color: var(--ink-soft); }
.legal-content ul { padding-left: 24px; }
.legal-updated { color: var(--muted); font-size: 13px; }
.legal-note { border-left: 3px solid var(--blue); background: var(--blue-soft); padding: 14px 18px; }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; min-height: 0; padding-top: 70px; }
  .hero-copy { max-width: 800px; }
  .hero-product { width: min(100%, 820px); margin: 10px auto 0; }
  .security-section { grid-template-columns: 80px 1fr; }
  .security-section ul { grid-column: 2; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --page-gutter: 32px; }
  .site-brand { width: auto; }
  .site-header, .hero, .section, .site-footer { width: min(calc(100% - var(--page-gutter)), var(--page-width)); }
  .site-header { min-height: 72px; }
  .site-brand { width: auto; }
  .menu-button { display: grid; }
  .desktop-language { display: none; }
  .mobile-language { display: flex; }
  .nav-actions > .button-primary { min-height: 42px; padding: 0 13px; font-size: 13px; }
  .mobile-language .language-menu { right: 0; }
  .hero { margin-bottom: 32px; padding: 54px 24px 62px; }
  .hero h1 { font-size: clamp(45px, 13vw, 65px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-proof { right: 10px; bottom: -42px; }
  .clarity-strip { align-items: flex-start; flex-direction: column; gap: 10px; }
  .clarity-strip p { margin: 0 0 5px; }
  .section { padding: 86px 0; }
  .steps-grid, .fit-section { grid-template-columns: 1fr; }
  .steps-grid article { min-height: 240px; }
  .fit-section { gap: 55px; }
  .security-section { width: min(calc(100% - var(--page-gutter)), var(--page-width)); grid-template-columns: 1fr; padding: 32px 24px; }
  .security-section ul { grid-column: 1; grid-template-columns: 1fr; }
  .apps-section { grid-template-columns: 1fr; }
  .phone-preview { width: 280px; height: 550px; margin: 0 auto; }
  .phone-preview img { height: 550px; }
  .final-cta { width: min(calc(100% - var(--page-gutter)), var(--page-width)); margin-bottom: 60px; padding: 65px 22px; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { flex-wrap: wrap; }
}

@media (max-width: 460px) {
  .nav-actions > .button-primary i { display: none; }
  .nav-actions > .button-primary { padding-inline: 11px; }
  .billing-promo small { display: none; }
  .hero h1 { font-size: 46px; }
  .hero-proof { display: none; }
  .fit-cards { grid-template-columns: 1fr; }
  .fit-card { min-height: 165px; }
  .store-actions { flex-direction: column; }
  .store-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .hero .eyebrow,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .trust-list,
html[dir="rtl"] .clarity-strip div,
html[dir="rtl"] .feature-list li,
html[dir="rtl"] .store-button,
html[dir="rtl"] .security-section li { direction: rtl; }
html[dir="rtl"] .preview-frame { transform: perspective(1400px) rotateY(2deg) rotateX(1deg); }
html[dir="rtl"] .feature-list { padding: 0; }
html[dir="rtl"] .section-heading.centered,
html[dir="rtl"] .final-cta { text-align: center; }

/* Interactive product story */
.hero { min-height: 690px; grid-template-columns: minmax(360px, .88fr) minmax(560px, 1.12fr); padding-block: 58px 70px; }
.hero h1 { font-weight: 790; }
.hero-product { align-self: center; }
.live-ledger { overflow: hidden; border: 1px solid #cdd8e8; border-radius: 22px; background: #fff; box-shadow: 0 34px 90px rgb(18 46 89 / 16%), 0 8px 24px rgb(18 46 89 / 7%); }
.live-ledger-head { display: flex; min-height: 54px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding: 0 20px; }
.live-project, .live-status { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 750; }
.live-project i { color: var(--blue); font-size: 17px; }
.live-status { color: var(--green); }
.live-status i { font-size: 7px; animation: ledger-pulse 1.8s ease-in-out infinite; }
.live-balance { display: grid; grid-template-columns: 1.2fr 1fr 1fr; border-bottom: 1px solid var(--line); padding: 20px; }
.live-balance > span { display: grid; gap: 3px; border-left: 1px solid var(--line); padding-inline: 18px; }
.live-balance > span:first-child { border-left: 0; padding-left: 0; }
.live-balance small, .live-entry label > span, .live-history-title small, .live-row small, .live-proof small { color: var(--muted); font-size: 10px; }
.live-balance strong { font-size: clamp(20px, 2vw, 30px); font-variant-numeric: tabular-nums; letter-spacing: -.04em; }
.positive { color: var(--green); }
.negative { color: var(--coral); }
.live-ledger-body { display: grid; grid-template-columns: minmax(210px, .78fr) minmax(280px, 1.22fr); }
.live-entry { display: grid; gap: 10px; border-right: 1px solid var(--line); background: #f4fbf6; padding: 18px; transition: background 180ms ease; }
.live-entry.is-out { background: #fff7f5; }
.live-label { margin: 0; font-size: 12px; font-weight: 800; }
.live-type { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.live-type button { display: flex; min-height: 38px; align-items: center; justify-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 8px; background: white; font-size: 10px; font-weight: 800; }
.live-type button.is-active { border-color: var(--green); background: var(--green); color: white; }
.live-entry.is-out .live-type button.is-active { border-color: var(--coral); background: var(--coral); }
.live-entry label { display: grid; gap: 3px; border: 1px solid var(--line); border-radius: 8px; background: white; padding: 8px 10px; }
.live-entry label strong { font-size: 12px; }
.live-add { min-height: 40px; border: 0; border-radius: 8px; background: var(--green); color: white; font-size: 11px; font-weight: 800; }
.live-entry.is-out .live-add { background: var(--coral); }
.live-history { padding: 18px 20px; }
.live-history-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; font-size: 12px; }
.live-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); padding: 12px 0; }
.live-row > span:nth-child(2), .live-proof > span { display: grid; }
.live-row strong { font-size: 11px; }
.live-row-icon { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 9px; font-size: 13px; }
.live-row-icon.in { background: var(--green-soft); color: var(--green); }
.live-row-icon.out { background: var(--coral-soft); color: var(--coral); }
.live-row.is-new { animation: ledger-row 3.4s ease-in-out infinite; }
.live-proof { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; margin-top: 10px; border-radius: 9px; background: var(--blue-soft); color: var(--blue); padding: 9px 11px; font-size: 11px; }
.demo-hint { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 13px 0 0; color: var(--muted); font-size: 11px; font-weight: 700; }

.money-equation { width: min(calc(100% - var(--page-gutter)), var(--page-width)); display: grid; grid-template-columns: minmax(300px, .72fr) minmax(650px, 1.28fr); align-items: center; gap: 56px; margin: 0 auto; overflow: hidden; border-radius: 28px; background: var(--blue); color: white; padding: 58px; }
.money-equation-copy { max-width: 440px; }
.money-equation .eyebrow { color: #d7e7ff; }
.money-equation h2 { margin: 12px 0 0; font-size: clamp(30px, 3.4vw, 48px); line-height: 1.08; letter-spacing: -.045em; }
.money-equation-copy > p:last-child { margin: 20px 0 0; color: #deebff; line-height: 1.65; }
.equation-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1.12fr; align-items: center; gap: 12px; }
.equation-flow article { display: grid; min-height: 168px; align-content: space-between; border: 1px solid rgb(255 255 255 / 34%); border-radius: 17px; background: linear-gradient(145deg, rgb(255 255 255 / 24%), rgb(255 255 255 / 9%)); box-shadow: inset 0 1px 0 rgb(255 255 255 / 22%), 0 16px 32px rgb(4 28 78 / 12%); -webkit-backdrop-filter: blur(18px) saturate(140%); backdrop-filter: blur(18px) saturate(140%); color: white; padding: 21px; }
.equation-flow article > i { font-size: 25px; }
.equation-flow article span { display: grid; gap: 4px; }
.equation-flow small { color: #ffffff; font-weight: 800; }
.equation-flow strong { font-size: clamp(20px, 2.1vw, 30px); letter-spacing: -.045em; }
.equation-in > i { color: #76efaa; }
.equation-out > i { color: #ff9b8d; }
.equation-in strong, .equation-out strong { color: #ffffff; }
.equation-balance { border-color: #102449 !important; background: #102449 !important; color: white !important; }
.equation-balance small { color: #d9e8ff; }
.equation-symbol { color: white; font-size: 28px; font-weight: 700; }

.mobile-ledger { width: 310px; min-height: 590px; margin: 0 auto; overflow: hidden; border: 9px solid #101827; border-radius: 43px; background: #fbfaf7; box-shadow: var(--shadow); padding: 28px 18px 20px; }
.mobile-ledger header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 15px; }
.mini-brand { display: flex; align-items: center; gap: 7px; color: var(--blue); font-weight: 800; letter-spacing: -.04em; }
.mini-brand img { width: 25px; height: 25px; border-radius: 7px; }
.mobile-ledger header > i { color: var(--blue); font-size: 23px; }
.mobile-ledger > .eyebrow { margin-top: 26px; }
.mobile-ledger h3 { margin: 7px 0 15px; font-size: 24px; }
.mobile-balance { display: grid; gap: 3px; border-radius: 16px; background: #101b30; color: white; padding: 19px; }
.mobile-balance small { color: #afbed1; }
.mobile-balance > strong { font-size: 34px; letter-spacing: -.05em; }
.mobile-balance span { color: #afbed1; font-size: 10px; }
.mobile-balance span b:first-child { color: #54d481; }
.mobile-balance span b:last-child { color: #ff7666; }
.mobile-type { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 16px; }
.mobile-type span { display: flex; min-height: 39px; align-items: center; justify-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 9px; background: white; font-size: 10px; font-weight: 800; }
.mobile-type .active { border-color: var(--green); background: var(--green); color: white; }
.mobile-field { display: grid; gap: 3px; margin-top: 10px; border: 1px solid var(--line); border-radius: 9px; background: white; padding: 10px 12px; }
.mobile-field small { color: var(--muted); }
.mobile-movement { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; margin-top: 17px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 12px 0; font-size: 10px; }
.mobile-movement > span:nth-child(2) { display: grid; }
.mobile-movement small { color: var(--blue); }
.mobile-movement > b { color: var(--green); }

@keyframes ledger-pulse { 0%,100% { opacity:.35; transform:scale(.8); } 50% { opacity:1; transform:scale(1.25); } }
@keyframes ledger-row { 0%,70%,100% { background:transparent; } 76%,88% { background:#eef6ff; } }

.motion-ready .hero-copy > * { animation: hero-enter 680ms cubic-bezier(.2,.75,.2,1) both; }
.motion-ready .hero-copy > *:nth-child(2) { animation-delay: 70ms; }
.motion-ready .hero-copy > *:nth-child(3) { animation-delay: 140ms; }
.motion-ready .hero-copy > *:nth-child(4) { animation-delay: 210ms; }
.motion-ready .hero-copy > *:nth-child(5) { animation-delay: 280ms; }
.motion-ready .hero-product { animation: product-enter 800ms 140ms cubic-bezier(.2,.75,.2,1) both; }
.motion-ready .reveal-item { opacity: 0; transform: translateY(24px); transition: opacity 620ms ease calc(var(--reveal-order) * 55ms), transform 620ms cubic-bezier(.2,.75,.2,1) calc(var(--reveal-order) * 55ms); }
.motion-ready .reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.equation-flow article, .fit-card, .steps-grid article { transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease; }
.equation-flow article:hover, .fit-card:hover { transform: translateY(-4px); border-color: #9bbff6; box-shadow: 0 16px 34px rgb(18 46 89 / 9%); }
.steps-grid article:hover { background: #f7faff; }
.live-ledger { position: relative; }
@keyframes hero-enter { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes product-enter { from { opacity: 0; transform: translateY(20px) scale(.985); } to { opacity: 1; transform: translateY(0) scale(1); } }

@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr; }
  .money-equation { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .plan-card-featured { transform: none; }
}

@media (max-width: 760px) {
  .site-brand { font-size: 21px; }
  .site-brand img { width: 28px; height: 28px; }
  .live-ledger-body { grid-template-columns: 1fr; }
  .hero { width: min(calc(100% - var(--page-gutter)), var(--page-width)); border-radius: 22px; }
  .steps-grid article { grid-template-columns: 64px 44px minmax(0, 1fr); gap: 14px; padding-inline: 0; }
  .live-entry { border-right: 0; border-bottom: 1px solid var(--line); }
  .money-equation { width: min(calc(100% - var(--page-gutter)), var(--page-width)); gap: 34px; padding: 38px 24px; }
  .equation-flow { grid-template-columns: 1fr; }
  .equation-symbol { height: 20px; text-align: center; }
  .equation-flow article { min-height: 112px; }
}

@media (max-width: 520px) {
  .live-balance { grid-template-columns: 1fr 1fr; }
  .live-balance > span { padding-inline: 12px; }
  .live-balance > span:first-child { grid-column: 1 / -1; border-bottom: 1px solid var(--line); padding: 0 0 13px; }
  .live-balance > span:nth-child(2) { border-left: 0; padding-left: 0; }
  .live-history { padding: 15px; }
  .mobile-ledger { width: 286px; }
}

html[dir="rtl"] .live-entry { border-right: 0; border-left: 1px solid var(--line); }
html[dir="rtl"] .live-balance > span { border-left: 0; border-right: 1px solid var(--line); }
html[dir="rtl"] .live-balance > span:first-child { border-right: 0; padding-left: 18px; padding-right: 0; }
