:root {
--ink: #071d21;
--ink-2: #17383c;
--muted: #5f7476;
--paper: #f7f4ed;
--paper-2: #eee9df;
--white: #fffefa;
--teal: #0b766e;
--teal-deep: #09675f;
--teal-bright: #2ad0b7;
--mint: #d9eee7;
--sand: #f0e0bd;
--blue: #dce8ed;
--line: rgba(7, 29, 33, .13);
--line-light: rgba(255, 255, 255, .16);
--shadow: 0 28px 80px rgba(7, 29, 33, .14);
--radius-sm: 12px;
--radius-md: 22px;
--radius-lg: 34px;
--container: 1200px;
--ease: cubic-bezier(.2, .8, .2, 1);
--font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
--focus-ring: 0 0 0 3px rgba(11, 118, 110, .35);
}

* { box-sizing: border-box; }

::selection {
color: var(--white);
background: var(--teal);
}

html {
scroll-behavior: smooth;
scroll-padding-top: 92px;
background: var(--paper);
scrollbar-width: thin;
scrollbar-color: var(--teal) var(--paper-2);
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb {
border: 3px solid var(--paper-2);
border-radius: 999px;
background: linear-gradient(var(--teal), var(--teal-deep));
}
::-webkit-scrollbar-thumb:hover { background: var(--teal-deep); }

body {
margin: 0;
min-width: 320px;
min-height: 100vh;
background: var(--paper);
color: var(--ink);
font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-feature-settings: "ss01", "cv05";
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}

button, input, textarea, select { font: inherit; }

j-app,
j-layout,
j-header,
j-footer,
j-page-container,
j-page,
j-section,
j-card,
j-card-section,
j-drawer,
j-row,
j-col {
display: block;
}

:where(a, button, [role="button"], j-button):focus-visible {
outline: none;
box-shadow: var(--focus-ring);
border-radius: 8px;
}

.site-root, .site-shell { min-height: 100vh; }
.site-shell { text-align: start; }

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

.site-header {
position: sticky;
z-index: 30;
top: 0;
border-bottom: 1px solid var(--line);
background: color-mix(in srgb, var(--paper) 88%, transparent);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
box-shadow: 0 1px 0 rgba(255, 255, 255, .55) inset;
}

.site-header::before {
content: "";
position: absolute;
inset: 0 0 auto 0;
height: 3px;
background: linear-gradient(90deg, var(--teal) 0%, var(--teal-bright) 45%, var(--sand) 100%);
}

.site-header__inner {
min-height: 78px;
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
gap: 24px;
}

j-button {
box-sizing: border-box;
font: inherit;
}

.brand-button,
.nav-button,
.footer-link,
.text-button,
.button {
border: 0 !important;
background: transparent;
color: inherit;
text-decoration: none;
cursor: pointer;
box-shadow: none !important;
}

.brand-button {
justify-self: start;
display: inline-flex;
align-items: center;
gap: 12px;
min-height: 48px;
padding: 0 !important;
}

.brand-mark {
width: 44px;
height: 44px;
flex: none;
background: transparent url("/images/logo.svg") center / contain no-repeat;
filter: drop-shadow(0 5px 12px rgba(11, 118, 110, .28));
}

.brand-mark span { display: none; }

.brand-copy {
display: flex;
flex-direction: column;
align-items: flex-start;
line-height: 1.05;
}

.brand-copy strong { font-size: 15px; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }

.site-nav {
display: flex;
align-items: center;
gap: 4px;
padding: 5px;
border: 1px solid var(--line);
border-radius: 999px;
background: rgba(255, 254, 250, .58);
}

.nav-button {
min-height: 34px;
padding: 7px 16px !important;
border-radius: 999px !important;
color: var(--ink-2);
font-size: 13px;
font-weight: 650;
transition: background .2s var(--ease), color .2s var(--ease);
}

.nav-button:hover { background: var(--white); color: var(--teal); }

.button {
width: fit-content;
min-height: 48px;
padding: 13px 20px !important;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
border-radius: 999px !important;
font-size: 14px;
font-weight: 750;
letter-spacing: -.01em;
transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}

.button:hover { transform: translateY(-2px); }
.button span { font-size: 18px; line-height: 1; }

.button--header {
justify-self: end;
min-height: 42px;
padding: 10px 18px !important;
color: var(--white);
background: var(--ink) !important;
}

.button--header:hover { box-shadow: 0 12px 28px rgba(7, 29, 33, .19) !important; }

.header-actions {
justify-self: end;
display: flex;
align-items: center;
gap: 10px;
}

.language-switch {
min-height: 42px;
padding-block: 5px !important;
padding-inline: 14px 7px !important;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 9px;
border: 1px solid var(--line);
border-radius: 999px;
background: rgba(255, 254, 250, .74);
color: var(--ink-2);
box-shadow: none !important;
font-size: 12px;
font-weight: 800;
cursor: pointer;
transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}

.language-switch:hover {
border-color: rgba(11, 118, 110, .3);
background: var(--white);
color: var(--teal);
transform: translateY(-1px);
}

.language-switch__icon {
width: 30px;
height: 30px;
flex: none;
display: grid;
place-items: center;
border-radius: 50%;
background: var(--mint);
color: var(--teal);
font-size: 16px;
line-height: 1;
}

.language-switch__label {
min-width: 48px;
text-align: center;
white-space: nowrap;
}

.menu-button {
display: none;
width: 44px;
height: 44px;
padding: 0 !important;
place-items: center;
border: 1px solid var(--line) !important;
border-radius: 13px !important;
background: rgba(255, 254, 250, .74) !important;
box-shadow: none !important;
cursor: pointer;
}

.menu-icon {
width: 18px;
display: grid;
gap: 4px;
}

.menu-icon span {
height: 2px;
border-radius: 2px;
background: var(--ink);
transition: width .2s var(--ease);
}

.menu-icon span:nth-child(2) { width: 72%; }
.menu-button:hover .menu-icon span { width: 100%; }

.drawer-scrim,
.site-drawer.j-drawer {
display: none;
}

.site-drawer.j-drawer {
position: fixed;
z-index: 1000;
inset-block: 0;
width: min(340px, 88vw);
max-width: 88vw;
padding-block: max(20px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-bottom));
padding-inline: 20px;
flex-direction: column;
overflow-y: auto;
overscroll-behavior: contain;
color: var(--ink);
background: linear-gradient(160deg, var(--white) 0%, #edf5f0 100%);
box-shadow: 0 30px 90px rgba(7, 29, 33, .32);
transition: transform .34s var(--ease);
}

.site-drawer.j-drawer--left {
right: auto;
left: 0;
border-right: 1px solid var(--line);
border-left: 0;
transform: translateX(-104%);
}

.site-drawer.j-drawer--right {
right: 0;
left: auto;
border-right: 0;
border-left: 1px solid var(--line);
transform: translateX(104%);
}

.site-drawer.j-drawer--open { transform: translateX(0); }

.site-drawer__head {
display: flex;
align-items: center;
gap: 11px;
padding-bottom: 18px;
border-bottom: 1px solid var(--line);
font-size: 15px;
}

.site-drawer__head .brand-mark { width: 34px; height: 34px; }

.drawer-close {
margin-inline-start: auto;
width: 36px;
height: 36px;
padding: 0 !important;
display: grid;
place-items: center;
border: 1px solid var(--line) !important;
border-radius: 50% !important;
background: var(--white) !important;
box-shadow: none !important;
color: var(--ink-2);
font-size: 13px;
cursor: pointer;
}

.site-drawer__nav {
display: grid;
gap: 4px;
padding-block: 16px;
}

.drawer-link {
min-height: 50px;
padding: 13px 15px !important;
display: flex;
align-items: center;
justify-content: space-between;
border: 1px solid transparent !important;
border-radius: 13px !important;
color: var(--ink);
background: rgba(255, 255, 255, .5);
box-shadow: none !important;
text-decoration: none;
font-size: 15px;
font-weight: 650;
cursor: pointer;
transition: background .2s var(--ease), color .2s var(--ease);
}

.drawer-link i {
color: var(--muted);
font-style: normal;
transition: transform .2s var(--ease), color .2s var(--ease);
}

.drawer-link:hover {
border-color: rgba(11, 118, 110, .12) !important;
background: var(--mint);
color: var(--teal);
}
.drawer-link:hover i { color: var(--teal); transform: translateX(3px); }
.site-shell[dir="rtl"] .drawer-link i { display: inline-block; transform: scaleX(-1); }
.site-shell[dir="rtl"] .drawer-link:hover i { transform: scaleX(-1) translateX(3px); }

.site-drawer__foot {
margin-top: auto;
display: grid;
gap: 12px;
padding-top: 18px;
border-top: 1px solid var(--line);
}

.language-switch--drawer {
width: 100%;
min-height: 50px;
padding-inline: 10px !important;
background: rgba(255, 255, 255, .72);
}
.drawer-cta { width: 100% !important; }

.site-shell.locale-en,
.site-shell.locale-en * {
font-family: "Noto Sans", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.site-shell.locale-ar,
.site-shell.locale-ar * {
font-family: "Noto Kufi Arabic", sans-serif !important;
}

.site-shell.locale-ar :is(h1, h2, h3, h4, h5, h6) {
font-family: "Noto Kufi Arabic", sans-serif !important;
}

.site-shell[dir="rtl"],
.site-shell[dir="rtl"] * {
letter-spacing: 0 !important;
}

.site-shell[dir="rtl"] .hero h1 { line-height: 1.3; font-size: clamp(38px, 4.6vw, 62px); }
.site-shell[dir="rtl"] :is(.section-heading h2, .flow-copy h2, .cta-panel h2, .story-card h2, .platform-grid h2) { line-height: 1.34; font-size: clamp(30px, 3.4vw, 46px); }
.site-shell[dir="rtl"] :is(.inner-hero h1, .contact-hero h1, .not-found h1) { line-height: 1.32; font-size: clamp(34px, 4.2vw, 54px); }
.site-shell[dir="rtl"] :is(.feature-card h3, .capability-card h3, .principles-grid h3, .contact-card h2, .plan-card h2, .faq-item dt, .flow-list strong) { line-height: 1.45; }

.site-shell[dir="rtl"] .button-arrow { display: inline-block; transform: scaleX(-1); }
.site-shell[dir="rtl"] .receipt-card { transform: rotate(-3deg); }
.site-shell[dir="rtl"] .app-window { transform: rotateY(5deg) rotateX(2deg); }

.button--primary {
color: var(--white);
background: var(--teal) !important;
box-shadow: 0 12px 28px rgba(11, 118, 110, .22) !important;
}

.button--primary:hover {
background: #09675f !important;
box-shadow: 0 16px 34px rgba(11, 118, 110, .29) !important;
}

.button--quiet {
border: 1px solid var(--line) !important;
background: rgba(255, 255, 255, .38) !important;
}

.button--quiet:hover { background: var(--white) !important; }

.button--light {
color: var(--ink);
background: var(--white) !important;
}

.hero {
position: relative;
isolation: isolate;
overflow: hidden;
padding: 94px 0 110px;
background:
linear-gradient(90deg, rgba(7, 29, 33, .035) 1px, transparent 1px) 50% 0 / 84px 84px,
linear-gradient(rgba(7, 29, 33, .035) 1px, transparent 1px) 0 50% / 84px 84px;
}

.hero::before {
content: "";
position: absolute;
z-index: -2;
inset: 0;
background: radial-gradient(circle at 74% 38%, rgba(42, 208, 183, .17), transparent 30%);
}

.hero-orbit {
position: absolute;
z-index: -1;
border: 1px solid rgba(11, 118, 110, .13);
border-radius: 50%;
}

.hero-orbit--one { width: 680px; height: 680px; inset-inline-end: -120px; top: -150px; }
.hero-orbit--two { width: 480px; height: 480px; inset-inline-end: -20px; top: -50px; }

.hero-grid {
display: grid;
grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
align-items: center;
gap: 72px;
}

.eyebrow,
.section-kicker {
display: inline-flex;
align-items: center;
gap: 10px;
color: var(--teal);
font-size: 11px;
font-weight: 800;
letter-spacing: .14em;
line-height: 1.5;
text-transform: uppercase;
}

.eyebrow::before {
content: "";
width: 28px;
height: 1px;
flex: none;
background: currentColor;
}

.hero h1 {
max-width: 680px;
margin: 23px 0 26px;
font-family: var(--font-serif);
font-size: clamp(52px, 6vw, 84px);
font-weight: 400;
letter-spacing: -.035em;
line-height: 1.02;
}

.hero h1 em { color: var(--teal); font-weight: 400; }

.hero-lead {
max-width: 580px;
margin: 0;
color: var(--muted);
font-size: 17px;
letter-spacing: .002em;
line-height: 1.8;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.trust-row {
display: flex;
flex-wrap: wrap;
gap: 18px;
margin-top: 26px;
color: var(--muted);
font-size: 12px;
font-weight: 600;
}

.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row i { color: var(--teal); font-style: normal; font-weight: 900; }

.product-stage { position: relative; min-height: 540px; perspective: 1200px; }

.stage-glow {
position: absolute;
width: 430px;
height: 430px;
left: 80px;
top: 45px;
border-radius: 50%;
background: rgba(42, 208, 183, .23);
filter: blur(70px);
}

.app-window {
position: absolute;
inset-block-start: 28px;
inset-inline: 18px 0;
overflow: hidden;
width: 590px;
max-width: calc(100% - 18px);
height: 430px;
border: 1px solid rgba(255, 255, 255, .5);
border-radius: 26px;
background: #f8faf8;
box-shadow: var(--shadow);
transform: rotateY(-5deg) rotateX(2deg);
}

.window-top {
height: 58px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 19px;
border-bottom: 1px solid #e5e9e6;
background: rgba(255, 255, 255, .82);
}

.mini-brand { display: flex; align-items: center; gap: 8px; font-size: 10px; }
.mini-logo { width: 21px; height: 21px; background: transparent url("/images/logo.svg") center / contain no-repeat; }
.window-user span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; background: var(--sand); font-size: 8px; font-weight: 800; }
.window-body { display: grid; grid-template-columns: 58px 1fr; height: calc(100% - 58px); }
.mini-sidebar { padding: 18px 12px; display: flex; flex-direction: column; align-items: center; gap: 18px; background: var(--ink); }
.mini-sidebar span { width: 20px; height: 5px; border-radius: 8px; background: rgba(255, 255, 255, .23); }
.mini-sidebar span.is-active { width: 28px; height: 28px; background: rgba(42, 208, 183, .32); }
.dashboard-preview { padding: 26px 26px 22px; }
.preview-heading { display: flex; justify-content: space-between; align-items: flex-start; }
.preview-heading div { display: flex; flex-direction: column; gap: 4px; }
.preview-heading small, .metric small, .chart-card small, .status-card small { color: #778788; font-size: 8px; }
.preview-heading strong { font-family: var(--font-serif); font-size: 19px; }
.preview-heading b { padding: 6px 9px; border: 1px solid #dce2de; border-radius: 8px; color: #6c7b7c; font-size: 7px; }
.metric-row { display: grid; grid-template-columns: 1.45fr .8fr; gap: 10px; margin-top: 20px; }
.metric { min-height: 92px; padding: 15px; display: flex; flex-direction: column; border: 1px solid #e1e6e2; border-radius: 13px; background: #fff; }
.metric strong { margin-top: 6px; font-size: 17px; letter-spacing: -.04em; }
.metric strong i { font-size: 7px; font-style: normal; font-weight: 600; }
.metric > span { margin-top: auto; color: #718081; font-size: 7px; }
.metric--dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.metric--dark small { color: rgba(255, 255, 255, .72); }
.metric--dark > span { color: var(--teal-bright); }
.preview-lower { display: grid; grid-template-columns: 1.5fr .8fr; gap: 10px; margin-top: 10px; }
.chart-card, .status-card { position: relative; height: 125px; padding: 14px; overflow: hidden; border: 1px solid #e1e6e2; border-radius: 13px; background: #fff; }
.bars { height: 68px; margin-top: 15px; display: flex; align-items: end; justify-content: space-around; gap: 7px; }
.bars i { width: 13px; border-radius: 3px 3px 0 0; background: #dce9e5; }
.bars i:nth-child(1) { height: 34%; } .bars i:nth-child(2) { height: 55%; } .bars i:nth-child(3) { height: 43%; } .bars i:nth-child(4) { height: 70%; } .bars i:nth-child(5) { height: 59%; } .bars i:nth-child(6) { height: 86%; background: var(--teal); } .bars i:nth-child(7) { height: 72%; }
.chart-line { position: absolute; left: 18px; right: 18px; bottom: 17px; border-bottom: 1px solid #edf0ed; }
.status-card { display: flex; flex-direction: column; align-items: center; }
.status-card > small { align-self: flex-start; }
.status-ring { width: 59px; height: 59px; margin-top: 7px; display: grid; place-items: center; border: 7px solid #dbeae5; border-top-color: var(--teal); border-right-color: var(--teal); border-radius: 50%; transform: rotate(25deg); }
.status-ring strong { font-size: 11px; transform: rotate(-25deg); }
.status-card > span { margin-top: 6px; color: #6c7b7c; font-size: 6px; }
.status-card > span i { width: 5px; height: 5px; display: inline-block; border-radius: 50%; background: var(--teal); }

.receipt-card {
position: absolute;
inset-inline-end: -13px;
bottom: 22px;
width: 240px;
min-height: 188px;
padding: 22px;
border: 1px solid rgba(7, 29, 33, .08);
border-radius: 18px;
background: var(--white);
box-shadow: 0 25px 60px rgba(7, 29, 33, .18);
transform: rotate(3deg);
}

.receipt-card::after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: -6px;
height: 12px;
background: radial-gradient(circle at 6px 0, transparent 6px, var(--white) 6.5px) 0 0 / 12px 12px repeat-x;
}

.receipt-head { display: flex; align-items: center; gap: 10px; }
.receipt-icon { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; color: var(--teal); background: var(--mint); font-weight: 900; }
.receipt-head div { display: flex; flex-direction: column; gap: 3px; }
.receipt-head small { color: var(--teal); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.receipt-head strong { font-size: 10px; }
.receipt-line { margin: 18px 0 13px; border-top: 1px dashed var(--line); }
.receipt-total { display: flex; align-items: center; justify-content: space-between; font-size: 9px; }
.receipt-total strong { font-size: 12px; }
.qr-mini { position: absolute; inset-inline-end: 21px; bottom: 24px; width: 34px; height: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.qr-mini i { background: var(--ink); }
.qr-mini i:nth-child(2), .qr-mini i:nth-child(4), .qr-mini i:nth-child(9) { background: transparent; }

.proof-strip { padding: 28px 0; color: #e4efeb; background: var(--ink); }
.proof-grid { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.proof-grid p { margin: 0; color: rgba(255, 255, 255, .78); font-family: var(--font-serif); font-style: italic; }
.proof-grid div { display: flex; align-items: center; gap: 18px; }
.proof-grid strong { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.proof-grid div span { width: 4px; height: 4px; border-radius: 50%; background: var(--teal-bright); }

.section { padding: 118px 0; }
.section--features { background: var(--white); }
.section-heading { margin-bottom: 54px; display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 80px; }
.section-heading h2, .flow-copy h2, .cta-panel h2, .story-card h2, .platform-grid h2 {
margin: 14px 0 0;
font-family: var(--font-serif);
font-size: clamp(38px, 4vw, 56px);
font-weight: 400;
letter-spacing: -.028em;
line-height: 1.1;
}
.section-heading > p, .flow-copy > p, .platform-grid > div > p {
margin: 0;
color: var(--muted);
font-size: 16px;
line-height: 1.75;
}

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 515px; padding: 25px; overflow: hidden; border-radius: var(--radius-md); }
.feature-card--mint { background: var(--mint); }
.feature-card--sand { background: var(--sand); }
.feature-card--blue { background: var(--blue); }
.feature-number { position: absolute; inset-inline-end: 24px; top: 20px; color: rgba(7, 29, 33, .42); font-family: var(--font-serif); font-size: 12px; }
.feature-card > j-card-section { height: 100%; }
.feature-card h3 { margin: 28px 0 10px; font-family: var(--font-serif); font-size: 26px; font-weight: 400; letter-spacing: -.02em; line-height: 1.2; }
.feature-card p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.7; }
.feature-visual { height: 285px; }
.pos-visual { padding: 78px 20px 20px; }
.search-pill { height: 38px; padding: 12px 15px; border-radius: 10px; color: #849390; background: rgba(255, 255, 255, .69); font-size: 9px; box-shadow: 0 12px 30px rgba(7, 29, 33, .07); }
.product-dots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.product-dots i { height: 73px; border-radius: 10px; background: rgba(255, 255, 255, .58); }
.product-dots i::before { content: ""; width: 34px; height: 34px; margin: 10px auto; display: block; border-radius: 8px; background: rgba(11, 118, 110, .15); }
.cart-pill { margin-top: 10px; padding: 13px 14px; display: flex; justify-content: space-between; border-radius: 10px; color: #fff; background: var(--ink); font-size: 9px; }
.invoice-visual { position: relative; display: grid; place-items: center; }
.paper { width: 160px; height: 225px; margin-top: 23px; padding: 42px 25px; border-radius: 4px; background: var(--white); box-shadow: 0 18px 35px rgba(63, 46, 18, .13); transform: rotate(-5deg); }
.paper span { height: 4px; margin-bottom: 12px; display: block; border-radius: 3px; background: #d8d7d0; }
.paper span:nth-child(2) { width: 70%; }
.paper b { width: 48px; height: 48px; margin-top: 28px; display: grid; place-items: center; color: #fff; background: var(--ink); font-size: 8px; letter-spacing: .1em; }
.accepted-stamp { position: absolute; inset-inline-end: 17px; bottom: 38px; padding: 10px 14px; border: 2px solid var(--teal); border-radius: 50%; color: var(--teal); font-size: 10px; font-weight: 850; text-transform: uppercase; transform: rotate(8deg); }
.control-visual { position: relative; padding-top: 78px; display: flex; flex-direction: column; align-items: center; }
.branch-node { width: 76px; height: 76px; display: grid; place-items: center; border: 1px solid rgba(7, 29, 33, .14); border-radius: 19px; color: #fff; background: var(--ink); box-shadow: 0 13px 25px rgba(7, 29, 33, .14); font-family: var(--font-serif); font-size: 21px; }
.branch-line { width: 2px; height: 48px; background: rgba(7, 29, 33, .18); }
.branch-row { position: relative; width: 250px; display: flex; justify-content: space-between; }
.branch-row::before { content: ""; position: absolute; left: 35px; right: 35px; top: -1px; height: 1px; background: rgba(7, 29, 33, .18); }
.branch-row span { width: 66px; height: 48px; padding-top: 12px; display: grid; place-items: center; border-radius: 12px; background: rgba(255, 255, 255, .68); font-size: 10px; font-weight: 800; }

.flow-section { color: var(--white); background: var(--ink); }
.flow-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.section-kicker--light { color: var(--teal-bright); }
.flow-copy h2 { color: var(--white); }
.flow-copy > p { margin-top: 24px; color: rgba(255, 255, 255, .76); }
.flow-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.flow-list li { padding: 27px 0; display: grid; grid-template-columns: 70px 1fr; gap: 20px; border-bottom: 1px solid var(--line-light); }
.flow-list li > span { color: var(--teal-bright); font-family: var(--font-serif); font-size: 13px; }
.flow-list strong { font-family: var(--font-serif); font-size: 25px; font-weight: 400; }
.flow-list p { margin: 7px 0 0; color: rgba(255, 255, 255, .74); font-size: 13.5px; line-height: 1.65; }

.section--cta { padding: 85px 0; background: var(--paper-2); }
.cta-panel { padding: 54px 58px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 12px 50px rgba(7, 29, 33, .06); }
.cta-panel h2 { font-size: clamp(36px, 4vw, 54px); }
.cta-panel > :last-child { display: flex; flex-direction: column; align-items: flex-start; }
.cta-panel p { margin: 0 0 22px; color: var(--muted); line-height: 1.7; }

.inner-hero { padding: 108px 0 100px; border-bottom: 1px solid var(--line); background: var(--paper); }
.inner-hero__grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 90px; }
.inner-hero h1, .contact-hero h1, .not-found h1 { margin: 23px 0 0; font-family: var(--font-serif); font-size: clamp(46px, 5.4vw, 72px); font-weight: 400; letter-spacing: -.032em; line-height: 1.06; }
.inner-hero__grid > p, .contact-hero__grid > div:first-child > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 85px; }
.story-card { position: sticky; top: 120px; align-self: start; }
.story-card h2 { font-size: clamp(37px, 4vw, 51px); }
.story-card p { color: var(--muted); line-height: 1.75; }
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.principles-grid > j-card { min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.principles-grid > j-card:nth-child(2), .principles-grid > j-card:nth-child(3) { background: var(--mint); }
.principles-grid > j-card > j-card-section { height: 100%; }
.principles-grid > j-card span { color: var(--teal); font-family: var(--font-serif); font-size: 12px; }
.principles-grid h3 { margin: 74px 0 10px; font-family: var(--font-serif); font-size: 25px; font-weight: 400; }
.principles-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.platform-section { background: var(--white); }
.platform-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.platform-grid > div > p { margin-top: 22px; }
.layer-stack { display: flex; flex-direction: column; gap: 8px; }
.layer-stack > div { padding: 22px 27px; display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--line); border-radius: 15px; background: var(--paper); box-shadow: 0 10px 24px rgba(7, 29, 33, .05); }
.layer-stack > div:nth-child(2) { margin-inline: 20px; background: var(--mint); }
.layer-stack > div:nth-child(3) { margin-inline: 40px; background: var(--sand); }
.layer-stack > div.layer-stack__base { margin-inline: 60px; color: #fff; background: var(--ink); }
.layer-stack span { color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.layer-stack__base span { color: rgba(255, 255, 255, .74); }
.layer-stack strong { font-size: 12px; }

.contact-hero { background: var(--ink); color: var(--white); }
.contact-hero__grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 100px; }
.contact-hero h1 { max-width: 770px; }
.contact-hero__grid > div:first-child > p { max-width: 650px; margin-top: 25px; color: rgba(255, 255, 255, .78); }
.contact-card { position: relative; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.contact-card.contact-card--primary { padding: 38px; color: var(--white); background: linear-gradient(150deg, #0e8a80, var(--teal-deep)); border-color: rgba(255, 255, 255, .22); box-shadow: 0 26px 60px rgba(11, 118, 110, .28); }
.contact-card.contact-card--primary,
.contact-card.contact-card--primary j-card-section,
.contact-card.contact-card--primary strong { color: var(--white); }
.contact-card--primary strong { margin: 34px 0 8px; display: block; font-family: var(--font-serif); font-size: 25px; font-weight: 400; }
.contact-card.contact-card--primary p { margin: 0 0 26px; color: rgba(255, 255, 255, .94); font-size: 14px; line-height: 1.7; }
.contact-label { color: var(--teal); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-card.contact-card--primary .contact-label { color: #9ff2e2; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-card:not(.contact-card--primary) { min-height: 340px; }
.contact-index { position: absolute; top: 29px; inset-inline-end: 30px; color: var(--muted); font-family: var(--font-serif); font-size: 11px; }
.contact-card h2 { margin: 68px 0 14px; font-family: var(--font-serif); font-size: 29px; font-weight: 400; letter-spacing: -.02em; line-height: 1.15; }
.contact-card > j-card-section { height: 100%; }
.contact-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.text-button { position: absolute; inset-inline-start: 30px; bottom: 28px; padding: 0 !important; color: var(--teal); font-size: 13px; font-weight: 750; }
.text-button span { padding-inline-start: 7px; }

.not-found { min-height: 70vh; padding: 150px 0; text-align: center; }
.not-found h1 { font-size: clamp(48px, 7vw, 80px); }
.not-found p { margin: 20px auto 30px; color: var(--muted); }
.not-found .button { margin-inline: auto; }

.site-footer { padding: 46px 0; color: rgba(236, 246, 243, .86); background: #051619; border-top: 1px solid rgba(42, 208, 183, .18); }
.footer-grid { display: grid; grid-template-columns: 1.2fr auto .8fr; align-items: center; gap: 50px; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.brand-mark--footer { width: 36px; height: 36px; }
.footer-brand strong { color: var(--white); font-size: 14px; letter-spacing: -.01em; }
.footer-brand p { margin: 4px 0 0; color: rgba(236, 246, 243, .72); font-size: 12px; line-height: 1.5; }
.footer-nav { display: flex; align-items: center; gap: 6px; }
.footer-link { padding: 8px 10px !important; color: rgba(236, 246, 243, .85); font-size: 12px; font-weight: 600; transition: color .18s var(--ease); }
.footer-link:hover { color: var(--teal-bright); }
.footer-note { justify-self: end; margin: 0; color: rgba(236, 246, 243, .62); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }

.capability-section { background: var(--white); }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.capability-card {
position: relative;
overflow: hidden;
min-height: 250px;
padding: 27px;
border: 1px solid var(--line);
border-radius: var(--radius-md);
background: var(--paper);
transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.capability-card::after {
content: "";
position: absolute;
inset: auto 0 0 0;
height: 3px;
background: linear-gradient(90deg, var(--teal), var(--teal-bright));
transform: scaleX(0);
transform-origin: 0 50%;
transition: transform .32s var(--ease);
}
.capability-card:hover { transform: translateY(-5px); border-color: rgba(11, 118, 110, .35); box-shadow: 0 22px 50px rgba(7, 29, 33, .1); }
.capability-card:hover::after { transform: scaleX(1); }
.capability-card > j-card-section { height: 100%; }
.capability-glyph {
width: 46px;
height: 46px;
display: grid;
place-items: center;
border-radius: 13px;
color: var(--teal);
background: var(--mint);
font-size: 19px;
font-weight: 700;
}
.capability-card h3 { margin: 22px 0 9px; font-family: var(--font-serif); font-size: 24px; font-weight: 400; letter-spacing: -.03em; }
.capability-card p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.7; }

.pricing-section { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 18px; }
.plan-card {
position: relative;
padding: 34px 30px;
border: 1px solid var(--line);
border-radius: var(--radius-md);
background: var(--paper);
transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(7, 29, 33, .1); }
.plan-card > j-card-section { height: 100%; display: flex; flex-direction: column; }
.plan-card--featured {
border-color: var(--teal);
background: var(--white);
box-shadow: 0 26px 60px rgba(11, 118, 110, .16);
}
.plan-tag {
width: fit-content;
padding: 6px 12px;
border: 1px solid var(--line);
border-radius: 999px;
color: var(--muted);
font-size: 10px;
font-weight: 800;
letter-spacing: .1em;
text-transform: uppercase;
}
.plan-tag--featured { border-color: transparent; color: var(--white); background: var(--teal); }
.plan-card h2 { margin: 24px 0 0; font-family: var(--font-serif); font-size: 31px; font-weight: 400; letter-spacing: -.03em; }
.plan-price { display: flex; align-items: baseline; gap: 7px; margin-top: 13px; }
.plan-price strong { font-family: var(--font-serif); font-size: 54px; font-weight: 400; letter-spacing: -.05em; line-height: 1; }
.plan-currency { color: var(--teal); font-size: 13px; font-weight: 800; }
.plan-period { color: var(--muted); font-size: 12px; }
.plan-blurb { margin: 15px 0 0; color: var(--muted); font-size: 13.5px; line-height: 1.65; }
.plan-list { margin: 22px 0 26px; padding: 20px 0 0; list-style: none; display: grid; gap: 12px; border-top: 1px dashed var(--line); }
.plan-list li { display: flex; align-items: baseline; gap: 9px; font-size: 13.5px; font-weight: 550; }
.plan-list i { color: var(--teal); font-style: normal; font-weight: 900; }
.plan-cta { margin-top: auto; width: 100% !important; }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 85px; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading h2 { margin: 14px 0 0; font-family: var(--font-serif); font-size: clamp(34px, 3.6vw, 48px); font-weight: 400; letter-spacing: -.045em; line-height: 1.05; }
.faq-list { margin: 0; border-top: 1px solid var(--line); }
.faq-item { padding: 26px 0; border-bottom: 1px solid var(--line); }
.faq-item dt { margin: 0; font-family: var(--font-serif); font-size: 21px; font-weight: 400; letter-spacing: -.02em; }
.faq-item dd { margin: 10px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.7; }

.site-shell.locale-ar :is(.capability-card h3, .plan-card h2, .plan-price strong, .faq-heading h2, .faq-item dt) { font-family: "Noto Kufi Arabic", sans-serif; letter-spacing: 0; }
.site-shell[dir="rtl"] .capability-card::after { transform-origin: 100% 50%; }

@keyframes rise-in {
from { opacity: 0; transform: translateY(22px); }
to { opacity: 1; transform: translateY(0); }
}

@keyframes stage-in {
from { opacity: 0; transform: translateY(26px) scale(.985); }
to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes glow-drift {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(16px, -14px); }
}

@keyframes receipt-float {
0%, 100% { transform: rotate(3deg) translateY(0); }
50% { transform: rotate(3deg) translateY(-7px); }
}

.reveal { animation: rise-in .7s var(--ease) both; }
.reveal--late { animation: stage-in .9s var(--ease) .15s both; }
.stage-glow { animation: glow-drift 9s ease-in-out infinite; }
.receipt-card { animation: receipt-float 6s ease-in-out 1.2s infinite; }
.site-shell[dir="rtl"] .receipt-card { animation: none; }

.nav-button, .footer-link { position: relative; }
.nav-button:active { transform: scale(.97); }
.button:active { transform: translateY(0) scale(.98); }

.button--primary .button-arrow,
.button--header .button-arrow,
.text-button span:last-child {
transition: transform .22s var(--ease);
}
.button--primary:hover .button-arrow { transform: translateX(3px); }
.site-shell[dir="rtl"] .button--primary:hover .button-arrow { transform: scaleX(-1) translateX(3px); }
.text-button:hover span:last-child { transform: translate(2px, -2px); }

.bars i { transform-origin: 50% 100%; animation: bar-grow .8s var(--ease) .4s backwards; }
@keyframes bar-grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.bars i:nth-child(2) { animation-delay: .48s; }
.bars i:nth-child(3) { animation-delay: .56s; }
.bars i:nth-child(4) { animation-delay: .64s; }
.bars i:nth-child(5) { animation-delay: .72s; }
.bars i:nth-child(6) { animation-delay: .8s; }
.bars i:nth-child(7) { animation-delay: .88s; }

@media (max-width: 1040px) {
.capability-grid { grid-template-columns: 1fr 1fr; }

.pricing-grid {
grid-auto-flow: column;
grid-auto-columns: min(78%, 360px);
grid-template-columns: none;
overflow-x: auto;
padding: 8px 6px 22px;
scroll-snap-type: x mandatory;
scroll-padding-inline: 6px;
overscroll-behavior-x: contain;
-webkit-overflow-scrolling: touch;
scrollbar-width: thin;
}
.pricing-grid::-webkit-scrollbar { height: 6px; }
.plan-card { scroll-snap-align: center; }
.plan-card--featured { order: -1; }
.faq-grid { gap: 55px; }

.hero-grid { grid-template-columns: 1fr; }
.hero-copy { max-width: 760px; }
.product-stage { width: min(100%, 650px); margin-inline: auto; }
.feature-grid { grid-template-columns: 1fr 1fr; }
.feature-card:last-child { grid-column: 1 / -1; }
.flow-grid, .story-grid, .platform-grid { gap: 55px; }
.contact-hero__grid { gap: 55px; }
.contact-grid { grid-template-columns: 1fr 1fr; }
.contact-card:last-child { grid-column: 1 / -1; }
.footer-grid { grid-template-columns: 1fr auto; }
.footer-note { display: none; }
}

@media (max-width: 780px) {
.site-container { width: min(calc(100% - 30px), var(--container)); }

.site-header__inner { min-height: 66px; grid-template-columns: auto 1fr auto; gap: 12px; }
.menu-button { display: grid; }
.site-drawer.j-drawer { display: flex; }
.drawer-scrim:not([hidden]) {
position: fixed;
z-index: 999;
inset: 0;
width: 100%;
height: 100%;
padding: 0 !important;
display: block;
border: 0 !important;
border-radius: 0 !important;
background: rgba(7, 29, 33, .5) !important;
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
box-shadow: none !important;
cursor: pointer;
}
.site-nav { display: none; }
.header-actions .language-switch { display: none; }
.button--header { padding: 10px 14px !important; }
.button--header .button-arrow { display: none; }
.hero { padding: 72px 0 78px; }
.hero-grid { gap: 45px; }
.hero h1 { font-size: clamp(53px, 16vw, 76px); }
.product-stage { min-height: 430px; }
.app-window { height: 350px; transform: none; }
.dashboard-preview { padding: 18px; }
.preview-lower { display: none; }
.receipt-card { inset-inline-end: 2px; bottom: 0; }
.proof-grid { align-items: flex-start; flex-direction: column; }
.proof-grid div { gap: 10px; flex-wrap: wrap; }
.section { padding: 78px 0; }
.section-heading, .flow-grid, .inner-hero__grid, .story-grid, .platform-grid, .contact-hero__grid, .cta-panel, .faq-grid { grid-template-columns: 1fr; gap: 35px; }
.faq-heading { position: static; }
.capability-grid { grid-template-columns: 1fr; }
.section-heading { align-items: start; }
.feature-grid { grid-template-columns: 1fr; }
.feature-card:last-child { grid-column: auto; }
.feature-card { min-height: 480px; }
.story-card { position: static; }
.principles-grid { grid-template-columns: 1fr 1fr; }
.layer-stack > div, .layer-stack > div:nth-child(2), .layer-stack > div:nth-child(3), .layer-stack > div.layer-stack__base { margin-inline: 0; }
.inner-hero { padding: 78px 0 70px; }
.contact-card--primary { max-width: 500px; }
.contact-grid { grid-template-columns: 1fr; }
.contact-card:last-child { grid-column: auto; }
.cta-panel { padding: 38px 30px; }
.footer-grid { grid-template-columns: 1fr; gap: 22px; }
.footer-nav { flex-wrap: wrap; }
.site-footer { padding-bottom: 44px; }
}

@media (max-width: 520px) {
.brand-copy small { display: none; }
.button--header { font-size: 12px; }
.hero h1 { font-size: 50px; }
.hero-lead { font-size: 15px; }
.hero-actions { align-items: stretch; flex-direction: column; }
.hero-actions .button { width: 100%; }
.product-stage { min-height: 375px; }
.app-window { inset-inline-start: 0; max-width: 100%; height: 300px; }
.window-body { grid-template-columns: 42px 1fr; }
.mini-sidebar { padding-inline: 7px; }
.metric-row { grid-template-columns: 1fr; }
.metric-row .metric:last-child { display: none; }
.receipt-card { width: 205px; min-height: 160px; padding: 17px; }
.qr-mini { display: none; }
.trust-row { flex-direction: column; gap: 8px; }
.proof-grid div strong { font-size: 10px; }
.feature-card { min-height: 465px; padding: 20px; }
.principles-grid { grid-template-columns: 1fr; }
.principles-grid > j-card { min-height: 230px; }
.flow-list li { grid-template-columns: 45px 1fr; }
.layer-stack > div { align-items: flex-start; flex-direction: column; gap: 8px; }
.contact-card--primary strong { overflow-wrap: anywhere; font-size: 21px; }
.contact-card { padding: 25px; }
.text-button { inset-inline-start: 25px; }
.cta-panel { padding: 32px 23px; }
}

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