:root {
  --ink: #101632;
  --muted: #63708d;
  --line: #dfe7f3;
  --soft: #f4f8fd;
  --white: #ffffff;
  --purple: #5e59e8;
  --purple-deep: #4640c9;
  --blue: #238adf;
  --cyan: #4dd6e8;
  --green: #20b58b;
  --shadow: 0 22px 80px rgba(36, 58, 105, 0.13);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
html[dir="rtl"] body { font-family: Tahoma, Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.skip-link { position: fixed; z-index: 999; top: -100px; left: 18px; padding: 12px 18px; border-radius: 12px; color: #fff; background: var(--purple); transition: top .2s; }
.skip-link:focus { top: 18px; }
.section-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding: 116px 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Header */
.site-header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; border-bottom: 1px solid transparent; transition: background .25s, box-shadow .25s, border-color .25s; }
.site-header.scrolled { border-color: rgba(220, 229, 242, .8); background: rgba(255,255,255,.9); box-shadow: 0 10px 36px rgba(28,48,88,.07); backdrop-filter: blur(18px); }
.nav-shell { width: min(1260px, calc(100% - 44px)); height: 82px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { position: relative; width: 36px; height: 32px; display: inline-block; }
.brand-mark i { position: absolute; top: 3px; width: 20px; height: 27px; border: 7px solid var(--purple); border-top: 0; border-radius: 0 0 8px 8px; transform: skewY(-30deg); }
.brand-mark i:first-child { left: 1px; border-right-width: 4px; }
.brand-mark i:last-child { right: 1px; border-left-width: 4px; transform: skewY(30deg); }
.brand-copy { display: flex; align-items: baseline; gap: 6px; letter-spacing: -.035em; }
.brand-copy strong { font-size: 23px; font-weight: 760; }
.brand-copy small { color: var(--purple); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; margin-right: 20px; }
.desktop-nav a { position: relative; color: #3d4865; font-size: 14px; font-weight: 650; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; content: ""; background: var(--purple); transform: scaleX(0); transform-origin: center; transition: transform .2s; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.language-picker { display: inline-flex; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.82); }
.language-picker button { min-width: 32px; height: 29px; padding: 0 5px; border: 0; border-radius: 8px; cursor: pointer; color: #77819a; background: transparent; font-size: 10px; font-weight: 800; letter-spacing: .04em; }
.language-picker button.is-active { color: #fff; background: var(--ink); }
.menu-button { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; }
.menu-button span { display: block; height: 2px; margin: 4px 0; border-radius: 2px; background: var(--ink); transition: .2s; }
.mobile-nav { display: none; }

/* Buttons */
.button { min-height: 51px; padding: 0 23px; border: 1px solid transparent; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; font-size: 14px; font-weight: 750; transition: transform .2s, box-shadow .2s, color .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--purple), #4b77e8); box-shadow: 0 13px 30px rgba(85, 81, 222, .24); }
.button-primary:hover { box-shadow: 0 17px 38px rgba(85, 81, 222, .32); }
.button-ghost { border-color: var(--line); color: #293553; background: rgba(255,255,255,.75); }
.button-ghost:hover { border-color: #bfcbe0; background: #fff; }
.button-small { min-height: 39px; padding: 0 17px; border-radius: 11px; font-size: 12px; }
.button-white { color: var(--purple-deep); background: #fff; box-shadow: 0 15px 35px rgba(15,22,50,.18); }
.button-outline-light { border-color: rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.06); }
.full { width: 100%; }

/* Hero */
.hero { position: relative; min-height: 790px; padding-top: 168px; padding-bottom: 96px; display: grid; grid-template-columns: .92fr 1.28fr; align-items: center; gap: 54px; }
.hero::before { position: absolute; z-index: -3; top: 0; right: calc(50% - 50vw); left: calc(50% - 50vw); height: 100%; content: ""; background: linear-gradient(135deg, #fbfdff 0%, #f7faff 56%, #f0f7ff 100%); }
.hero::after { position: absolute; z-index: -2; inset: 0; content: ""; opacity: .5; background-image: radial-gradient(#9eb3d2 1px, transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(to right, #000 0, transparent 44%); }
.hero-glow { position: absolute; z-index: -1; border-radius: 999px; filter: blur(8px); }
.hero-glow-one { top: 70px; right: -160px; width: 560px; height: 560px; background: radial-gradient(circle, rgba(97,90,231,.17), transparent 67%); }
.hero-glow-two { bottom: -100px; left: -150px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(43,184,222,.13), transparent 66%); }
.eyebrow { width: fit-content; margin-bottom: 25px; padding: 8px 13px 8px 10px; border: 1px solid #d9e3f4; border-radius: 999px; display: flex; align-items: center; gap: 9px; color: #45526e; background: rgba(255,255,255,.78); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(32,181,139,.13); }
.hero h1, .section-heading h2, .ai-copy h2, .regional-copy h2, .faq-heading h2, .cta-card h2 { margin: 0; color: var(--ink); font-size: clamp(49px, 5vw, 76px); font-weight: 760; line-height: 1.01; letter-spacing: -.055em; }
.hero h1 em, .section-heading h2 em, .regional-copy h2 em, .faq-heading h2 em, .cta-card h2 em { color: var(--purple); font-style: normal; }
.hero-lead { max-width: 600px; margin: 26px 0 29px; color: var(--muted); font-size: 17px; line-height: 1.78; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.hero-notes { margin-top: 27px; display: flex; flex-wrap: wrap; gap: 20px; }
.hero-notes span { display: flex; align-items: center; gap: 7px; color: #6c7690; font-size: 11px; }
.hero-notes i { width: 18px; height: 18px; border-radius: 50%; display: inline-grid; place-items: center; color: var(--green); background: #e9f8f3; font-style: normal; font-size: 10px; }

/* Dashboard product mock */
.product-stage { position: relative; min-width: 0; perspective: 1400px; }
.dashboard-window { position: relative; z-index: 3; overflow: hidden; width: 760px; max-width: 100%; margin-left: auto; border: 1px solid rgba(192,204,224,.75); border-radius: 22px; background: #fff; box-shadow: 0 45px 110px rgba(43,62,101,.21), 0 3px 12px rgba(43,62,101,.08); transform: rotateY(-3deg) rotateX(1deg); transform-origin: right center; }
.window-topbar { height: 47px; padding: 0 14px; border-bottom: 1px solid #e8edf5; display: flex; align-items: center; justify-content: space-between; background: #fbfcfe; }
.traffic { display: flex; gap: 5px; }
.traffic i { width: 7px; height: 7px; border-radius: 50%; background: #d5dce8; }
.window-search { width: 250px; height: 29px; padding: 0 7px 0 10px; border: 1px solid #e2e7f0; border-radius: 7px; display: flex; align-items: center; gap: 7px; color: #a2aabd; background: #fff; }
.window-search span { width: 8px; height: 8px; border: 1.5px solid #a2aabd; border-radius: 50%; }
.window-search b { flex: 1; font-size: 7px; font-weight: 500; }
.window-search kbd { padding: 2px 5px; border: 1px solid #e3e8f0; border-radius: 3px; font-size: 6px; background: #f8fafc; }
.avatar, .user-avatar { border-radius: 50%; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #423cba, #776fec); font-weight: 800; }
.avatar { width: 25px; height: 25px; font-size: 7px; }
.dashboard-body { height: 443px; display: flex; }
.dash-sidebar { width: 122px; padding: 13px 9px; border-right: 1px solid #ebeff5; background: #f7f9fc; }
.mini-logo { height: 35px; padding-left: 7px; }
.brand-mark.tiny { width: 22px; height: 20px; transform: scale(.62); transform-origin: top left; }
.side-item { width: 100%; height: 32px; margin: 2px 0; padding: 0 9px; border: 0; border-radius: 7px; display: flex; align-items: center; gap: 8px; color: #768097; background: transparent; text-align: left; }
.side-item.active { color: var(--purple); background: #ebeafd; }
.side-item b { flex: 1; font-size: 7.5px; font-weight: 650; }
.side-item em { padding: 2px 3px; border-radius: 3px; color: #fff; background: var(--purple); font-size: 4px; font-style: normal; }
.line-icon { position: relative; width: 10px; height: 10px; display: inline-block; opacity: .8; }
.icon-grid { border: 1.2px solid currentColor; border-radius: 2px; box-shadow: inset 4px 0 transparent; }
.icon-grid::before, .icon-grid::after { position: absolute; content: ""; background: currentColor; }
.icon-grid::before { top: 4px; left: 0; width: 100%; height: 1px; }
.icon-grid::after { top: 0; left: 4px; width: 1px; height: 100%; }
.icon-chart { border-bottom: 1.2px solid currentColor; }
.icon-chart::before { position: absolute; inset: 1px; content: ""; border-left: 1.2px solid currentColor; border-top: 1.2px solid currentColor; transform: skewY(-25deg); }
.icon-box { border: 1.2px solid currentColor; border-radius: 2px; transform: rotate(30deg) scale(.75); }
.icon-users::before, .icon-users::after { position: absolute; content: ""; border: 1.2px solid currentColor; border-radius: 50%; }
.icon-users::before { top: 0; left: 3px; width: 4px; height: 4px; }
.icon-users::after { bottom: 0; left: 1px; width: 8px; height: 4px; border-radius: 6px 6px 2px 2px; }
.icon-ai::before { content: "✦"; font-size: 11px; }
.dash-main { flex: 1; padding: 21px 22px 18px; overflow: hidden; background: #fff; }
.dash-heading { display: flex; align-items: center; justify-content: space-between; }
.dash-heading div { display: flex; flex-direction: column; gap: 3px; }
.dash-heading small { color: #8b95a9; font-size: 7px; }
.dash-heading strong { font-size: 14px; }
.dash-heading button { height: 27px; padding: 0 10px; border: 0; border-radius: 7px; display: flex; align-items: center; gap: 5px; color: #fff; background: var(--purple); }
.dash-heading button span { font-size: 12px; }.dash-heading button b { font-size: 6px; }
.kpi-row { margin-top: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.kpi-row article { padding: 11px 12px; border: 1px solid #e8edf4; border-radius: 10px; display: grid; grid-template-columns: 1fr auto; gap: 5px; background: #fff; }
.kpi-row article small { grid-column: 1/-1; color: #8992a7; font-size: 6.5px; }
.kpi-row article strong { font-size: 11px; }.kpi-row article span { align-self: center; padding: 2px 4px; border-radius: 5px; font-size: 5px; }
.positive { color: #0d9d73; background: #e9f8f3; }.neutral { color: var(--purple); background: #eeeeff; }
.chart-card { margin-top: 10px; padding: 12px; border: 1px solid #e8edf4; border-radius: 11px; }
.chart-title { display: flex; justify-content: space-between; align-items: flex-start; }
.chart-title div { display: flex; flex-direction: column; gap: 3px; }.chart-title small { color: #9aa3b5; font-size: 5.5px; text-transform: uppercase; letter-spacing: .1em; }.chart-title strong { font-size: 8px; }.chart-title > span { color: #8d96a9; font-size: 5px; }
.chart-area { position: relative; height: 105px; margin-top: 7px; overflow: hidden; }
.chart-grid { position: absolute; inset: 0; background: repeating-linear-gradient(to bottom, #edf1f6 0, #edf1f6 1px, transparent 1px, transparent 26px); }
.chart-area svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.chart-area path { fill: none; vector-effect: non-scaling-stroke; }.chart-area .area { fill: url(#area); stroke: none; }.revenue-line { stroke: var(--purple); stroke-width: 2.4; }.cost-line { stroke: #61c8d8; stroke-width: 1.6; stroke-dasharray: 4 3; }
.ai-insight { margin-top: 10px; padding: 9px 10px; border: 1px solid #dcdafd; border-radius: 10px; display: flex; align-items: center; gap: 8px; background: linear-gradient(100deg, #f0efff, #f7fbff); }
.spark { width: 23px; height: 23px; border-radius: 7px; display: grid; place-items: center; color: #fff; background: var(--purple); font-size: 10px; }.ai-insight div { flex: 1; display: grid; grid-template-columns: auto 1fr; gap: 2px 7px; }.ai-insight small { color: var(--purple); font-size: 4.5px; font-weight: 850; letter-spacing: .12em; }.ai-insight b { grid-column: 1/-1; font-size: 7px; }.ai-insight p { grid-column: 1/-1; margin: 0; color: #778197; font-size: 5.5px; }.ai-insight button { width: 22px; height: 22px; border: 0; border-radius: 50%; color: var(--purple); background: #fff; font-size: 9px; }
.float-card { position: absolute; z-index: 6; padding: 12px 15px; border: 1px solid rgba(215,224,239,.9); border-radius: 13px; display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.94); box-shadow: 0 16px 38px rgba(44,63,102,.16); backdrop-filter: blur(10px); animation: float 4s ease-in-out infinite; }
.float-card > span { width: 29px; height: 29px; border-radius: 9px; display: grid; place-items: center; color: #fff; font-size: 12px; }.float-card div { display: flex; flex-direction: column; gap: 3px; }.float-card small { color: #8b95a8; font-size: 6px; }.float-card strong { font-size: 8px; white-space: nowrap; }
.float-ai { top: 46px; right: -24px; }.float-ai > span { background: var(--purple); }.float-approval { bottom: 35px; left: -27px; animation-delay: -1.5s; }.float-approval > span { background: var(--green); }
.orbit { position: absolute; z-index: 0; border: 1px solid rgba(89,83,226,.1); border-radius: 50%; }.orbit-one { top: -45px; right: -80px; width: 250px; height: 250px; }.orbit-two { bottom: -65px; left: -75px; width: 210px; height: 210px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Proof */
.proof-strip { border-top: 1px solid #e8edf5; border-bottom: 1px solid #e8edf5; background: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid article { min-height: 124px; padding: 25px 32px; border-right: 1px solid #e8edf5; display: flex; flex-direction: column; justify-content: center; gap: 7px; }.proof-grid article:last-child { border-right: 0; }.proof-grid strong { color: var(--purple); font-size: 31px; letter-spacing: -.04em; }.proof-grid span { color: #748099; font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }

/* Shared headings */
.section-heading.centered { max-width: 800px; margin: 0 auto 58px; text-align: center; }
.section-kicker { display: block; margin-bottom: 19px; color: var(--purple); font-size: 11px; font-weight: 850; letter-spacing: .16em; }
.section-heading h2, .regional-copy h2, .faq-heading h2 { font-size: clamp(38px, 4.5vw, 59px); line-height: 1.06; }
.section-heading p { max-width: 650px; margin: 23px auto 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.split-heading { margin-bottom: 57px; display: flex; align-items: end; justify-content: space-between; gap: 80px; }.split-heading p { width: 360px; margin: 0 0 7px; }

/* Platform */
.platform { background: #fff; }
.platform-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.value-card { position: relative; overflow: hidden; min-height: 360px; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, #fff, #f8fbff); box-shadow: 0 14px 50px rgba(32,53,92,.06); }
.value-card.large-card { grid-row: span 2; min-height: 738px; background: linear-gradient(145deg, #f5f5ff, #f9fcff); }
.card-copy { position: relative; z-index: 3; max-width: 460px; }.number { display: block; margin-bottom: 46px; color: #adb5c7; font-size: 10px; font-weight: 750; letter-spacing: .14em; }.value-card h3 { margin: 0 0 13px; font-size: 26px; letter-spacing: -.035em; }.value-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.network-visual { position: absolute; right: 0; bottom: 15px; left: 0; height: 390px; }
.net-center, .net-node { position: absolute; z-index: 2; border: 1px solid #e1e5fb; border-radius: 50%; display: grid; place-items: center; background: #fff; box-shadow: 0 12px 32px rgba(62,58,174,.13); }
.net-center { top: 110px; left: calc(50% - 65px); width: 130px; height: 130px; color: #fff; background: radial-gradient(circle at 30% 20%, #817bec, #4f49d4); box-shadow: 0 24px 50px rgba(80,74,211,.3); }.net-center b { margin-top: 28px; font-size: 18px; }.net-center small { margin-top: -26px; font-size: 7px; letter-spacing: .18em; }.net-node { width: 65px; height: 65px; color: var(--purple); font-size: 9px; font-weight: 850; }.n1 { top: 2px; left: 47%; }.n2 { top: 74px; right: 9%; }.n3 { right: 19%; bottom: 24px; }.n4 { bottom: 15px; left: 19%; }.n5 { top: 77px; left: 8%; }
.connector { position: absolute; z-index: 1; top: 174px; left: 50%; width: 155px; height: 1px; background: linear-gradient(to right, var(--purple), rgba(94,89,232,.1)); transform-origin: left; }.c1 { transform: rotate(-90deg); }.c2 { transform: rotate(-35deg); }.c3 { transform: rotate(45deg); }.c4 { transform: rotate(133deg); }.c5 { transform: rotate(208deg); }
.language-rings { position: absolute; right: 34px; bottom: 31px; display: flex; }.language-rings span { width: 76px; height: 76px; margin-left: -15px; border: 1px solid #dfe4f0; border-radius: 50%; display: grid; place-items: center; color: var(--purple); background: rgba(255,255,255,.82); box-shadow: 0 10px 30px rgba(45,65,104,.09); font-size: 17px; font-weight: 850; }.language-rings span:nth-child(2) { transform: translateY(-21px); }.language-rings span:nth-child(3) { color: var(--blue); }
.scale-visual { position: absolute; right: 35px; bottom: 25px; width: 240px; height: 95px; display: flex; align-items: end; gap: 9px; }.scale-visual i { width: 35px; border-radius: 8px 8px 3px 3px; background: linear-gradient(to top, #c7d9ef, #eaf2fb); }.scale-visual i:nth-child(1){height:28px}.scale-visual i:nth-child(2){height:43px}.scale-visual i:nth-child(3){height:61px}.scale-visual i:nth-child(4){height:82px;background:linear-gradient(to top,#655ee9,#8983ef)}.scale-visual b { align-self: center; color: var(--purple); font-size: 37px; }

/* AI */
.ai-section { position: relative; overflow: hidden; color: #fff; background: #121534; }
.ai-section::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 16% 15%, rgba(98,91,229,.34), transparent 34%), radial-gradient(circle at 85% 80%, rgba(30,156,211,.18), transparent 37%); }
.ai-mesh { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(circle, #000, transparent 75%); }
.ai-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .83fr 1.17fr; align-items: center; gap: 80px; }
.section-kicker.light { color: #9b96ff; }.ai-copy h2 { color: #fff; font-size: clamp(45px, 5vw, 68px); }.ai-copy h2 em { color: #9b96ff; font-style: normal; }.ai-copy > p { margin: 24px 0 34px; color: #abb4d0; font-size: 16px; line-height: 1.75; }
.feature-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 20px; }.feature-list li { display: flex; gap: 14px; }.feature-list li > span { width: 38px; height: 38px; border: 1px solid rgba(155,150,255,.3); border-radius: 11px; display: grid; place-items: center; color: #b3aeff; background: rgba(126,119,238,.12); }.feature-list strong { display: block; margin-bottom: 4px; font-size: 13px; }.feature-list p { margin: 0; color: #8e99b9; font-size: 12px; line-height: 1.5; }
.ai-console { overflow: hidden; border: 1px solid rgba(178,187,229,.2); border-radius: 24px; background: rgba(27,31,69,.9); box-shadow: 0 40px 90px rgba(0,0,0,.26); }
.ai-console-top { height: 62px; padding: 0 22px; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.025); }.ai-console-top span { font-size: 12px; font-weight: 700; }.ai-console-top i { width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; display: inline-block; background: #5be0ba; box-shadow: 0 0 0 4px rgba(91,224,186,.1); }.ai-console-top small { color: #6fd6c1; font-size: 7px; letter-spacing: .14em; }
.ai-chat { min-height: 400px; padding: 30px; }.question-row, .answer-row { display: flex; gap: 11px; }.question-row { justify-content: flex-end; align-items: end; }.user-avatar, .ai-avatar { width: 32px; height: 32px; flex: 0 0 32px; font-size: 9px; }.ai-avatar { border: 1px solid rgba(163,156,255,.35); border-radius: 10px; display: grid; place-items: center; color: #c7c3ff; background: rgba(104,96,231,.23); }
.user-bubble { max-width: 73%; padding: 13px 16px; border-radius: 15px 15px 3px 15px; color: #fff; background: #5e59db; font-size: 12px; line-height: 1.5; }.answer-row { margin-top: 22px; align-items: flex-start; }.answer-bubble { min-height: 142px; flex: 1; padding: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 3px 15px 15px 15px; color: #c7cee2; background: rgba(255,255,255,.045); font-size: 12px; line-height: 1.65; }.answer-bubble p { margin: 0 0 15px; }.answer-metric { padding: 11px 12px; border: 1px solid rgba(121,114,237,.2); border-radius: 10px; display: flex; align-items: center; justify-content: space-between; background: rgba(106,99,228,.08); }.answer-metric span { display: flex; flex-direction: column; gap: 2px; }.answer-metric small { color: #7f8aaa; font-size: 7px; text-transform: uppercase; letter-spacing: .1em; }.answer-metric strong { color: #fff; font-size: 10px; }.answer-metric > b { padding: 3px 8px; border-radius: 10px; color: #ffbdc4; background: rgba(229,75,93,.14); font-size: 7px; }
.typing-dots { display: none; height: 76px; align-items: center; justify-content: center; gap: 4px; }.typing-dots i { width: 5px; height: 5px; border-radius: 50%; background: #a9a3ff; animation: typing .8s infinite alternate; }.typing-dots i:nth-child(2){animation-delay:.2s}.typing-dots i:nth-child(3){animation-delay:.4s}.ai-console.loading .typing-dots { display: flex; }.ai-console.loading .answer-content { display: none; }@keyframes typing { to { transform: translateY(-5px); opacity: .5; } }
.prompt-label { margin: 27px 0 10px 43px; color: #717c9c; font-size: 7px; letter-spacing: .14em; }.prompt-chips { margin-left: 43px; display: flex; gap: 7px; flex-wrap: wrap; }.prompt-chips button { padding: 8px 11px; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; color: #9da7c3; background: rgba(255,255,255,.03); cursor: pointer; font-size: 8px; }.prompt-chips button:hover, .prompt-chips button.active { border-color: rgba(151,144,255,.5); color: #cac6ff; background: rgba(114,106,233,.12); }
.ai-input { height: 68px; margin: 0 23px 23px; padding: 0 10px 0 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 13px; display: flex; align-items: center; justify-content: space-between; color: #687391; background: rgba(7,10,32,.45); font-size: 10px; }.ai-input button { width: 38px; height: 38px; border: 0; border-radius: 10px; color: #fff; background: var(--purple); cursor: pointer; }

/* Modules */
.modules { background: #f8faff; }.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }.module-card { position: relative; min-height: 270px; padding: 27px; border: 1px solid var(--line); border-radius: 21px; background: #fff; transition: transform .25s, box-shadow .25s, border-color .25s; }.module-card:hover { z-index: 2; border-color: #c9c7f7; box-shadow: 0 22px 45px rgba(44,61,97,.11); transform: translateY(-6px); }.module-card.featured { color: #fff; background: linear-gradient(145deg, #5953d9, #6b65ea); }.module-card > span { position: absolute; top: 28px; right: 27px; color: #b0b8ca; font-size: 9px; }.module-card.featured > span { color: #bdb9ff; }.module-icon { width: 47px; height: 47px; margin-bottom: 44px; border-radius: 13px; display: grid; place-items: center; color: var(--purple); background: #eeedff; font-size: 20px; }.featured .module-icon { color: #fff; background: rgba(255,255,255,.13); }.module-card h3 { margin: 0 0 12px; font-size: 17px; letter-spacing: -.02em; }.module-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }.featured p { color: #d8d6ff; }.module-card a { display: inline-block; margin-top: 18px; color: #fff; font-size: 10px; font-weight: 750; }

/* Region */
.regional { background: #fff; }.regional-card { position: relative; overflow: hidden; min-height: 570px; padding: 76px; border: 1px solid #e1e8f4; border-radius: 34px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; background: linear-gradient(135deg, #f7f7ff, #f3faff); }.regional-card::before { position: absolute; top: -180px; right: -120px; width: 540px; height: 540px; border-radius: 50%; content: ""; background: radial-gradient(circle, rgba(102,94,230,.15), transparent 67%); }.regional-copy { position: relative; z-index: 3; }.regional-copy p { margin: 23px 0 29px; color: var(--muted); font-size: 15px; line-height: 1.8; }.regional-features { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }.regional-features span { display: flex; align-items: center; gap: 8px; color: #3f4b68; font-size: 11px; }.regional-features i { width: 19px; height: 19px; border-radius: 50%; display: grid; place-items: center; color: var(--green); background: #e8f7f2; font-style: normal; font-size: 9px; }
.region-map { position: relative; height: 390px; }.map-ring { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(92,86,229,.14); border-radius: 50%; transform: translate(-50%,-50%); }.r1 { width: 160px; height: 160px; }.r2 { width: 270px; height: 270px; }.r3 { width: 390px; height: 390px; }.map-core { position: absolute; z-index: 3; top: 50%; left: 50%; width: 125px; height: 125px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; background: linear-gradient(145deg, #615be5, #4440ba); box-shadow: 0 22px 55px rgba(70,64,196,.3); transform: translate(-50%,-50%); }.map-core .brand-mark { filter: brightness(0) invert(1); transform: scale(.6); margin-bottom: -4px; }.map-core b { font-size: 14px; }.map-core small { margin-top: 3px; font-size: 5px; letter-spacing: .14em; }.map-pin { position: absolute; z-index: 2; padding: 9px 13px; border: 1px solid #dce4f1; border-radius: 10px; color: #52617c; background: rgba(255,255,255,.94); box-shadow: 0 10px 28px rgba(47,66,103,.1); font-size: 8px; font-weight: 750; }.map-pin i { width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; display: inline-block; background: var(--purple); box-shadow: 0 0 0 3px rgba(94,89,232,.1); }.p1 { top: 40px; left: 40px; }.p2 { top: 83px; right: 5px; }.p3 { bottom: 80px; left: 2px; }.p4 { right: 35px; bottom: 25px; }

/* Pricing */
.pricing { background: #f8faff; }.pricing-grid { max-width: 1050px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }.price-card { position: relative; padding: 35px 31px 30px; border: 1px solid var(--line); border-radius: 24px; background: #fff; }.price-card.recommended { border: 2px solid var(--purple); box-shadow: 0 25px 60px rgba(78,71,207,.15); transform: translateY(-12px); }.popular { position: absolute; top: 0; right: 22px; padding: 6px 10px; border-radius: 0 0 9px 9px; color: #fff; background: var(--purple); font-size: 7px; font-weight: 850; letter-spacing: .1em; }.plan-label { color: #4b5875; font-size: 13px; font-weight: 750; }.price { margin: 25px 0 17px; display: flex; align-items: end; gap: 11px; }.price > strong { font-size: 42px; line-height: .9; letter-spacing: -.05em; }.price div { padding-bottom: 1px; display: flex; flex-direction: column; gap: 2px; }.price b { color: var(--purple); font-size: 10px; }.price small { color: #8c96aa; font-size: 8px; }.price-card > p { min-height: 54px; margin: 0 0 24px; color: var(--muted); font-size: 12px; line-height: 1.6; }.pricing-note { margin: 27px 0 0; color: #7d879c; text-align: center; font-size: 11px; }

/* FAQ */
.faq { background: #fff; }.faq-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 105px; }.faq-heading { padding-top: 9px; }.faq-heading p { margin: 22px 0 20px; color: var(--muted); font-size: 14px; line-height: 1.75; }.faq-heading a { color: var(--purple); font-size: 12px; font-weight: 800; }.accordion { border-top: 1px solid var(--line); }.faq-item { border-bottom: 1px solid var(--line); }.faq-item button { width: 100%; min-height: 82px; padding: 0; border: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: transparent; text-align: left; cursor: pointer; font-size: 14px; font-weight: 700; }.faq-item button i { position: relative; width: 22px; height: 22px; flex: 0 0 22px; }.faq-item button i::before, .faq-item button i::after { position: absolute; top: 10px; left: 4px; width: 14px; height: 1.5px; content: ""; background: var(--purple); transition: transform .2s; }.faq-item button i::after { transform: rotate(90deg); }.faq-item.open button i::after { transform: rotate(0); }.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }.faq-answer p { min-height: 0; margin: 0; overflow: hidden; color: var(--muted); font-size: 12px; line-height: 1.75; }.faq-item.open .faq-answer { grid-template-rows: 1fr; }.faq-item.open .faq-answer p { padding-bottom: 24px; }

/* CTA + footer */
.final-cta { padding-top: 45px; background: #fff; }.cta-card { position: relative; overflow: hidden; min-height: 490px; padding: 90px 40px; border-radius: 34px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg, #4c47cd, #635de6 55%, #287fd1); text-align: center; }.cta-card h2 { position: relative; z-index: 2; color: #fff; font-size: clamp(42px,5vw,65px); }.cta-card h2 em { color: #c9c6ff; }.cta-card p { position: relative; z-index: 2; margin: 21px 0 28px; color: #d9d8ff; font-size: 15px; }.centered-actions { position: relative; z-index: 2; justify-content: center; }.cta-orb { position: absolute; top: -260px; left: -140px; width: 580px; height: 580px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.03), 0 0 0 150px rgba(255,255,255,.025); }.cta-grid { position: absolute; inset: 0; opacity: .13; background-image: radial-gradient(#fff 1px, transparent 1px); background-size: 25px 25px; mask-image: radial-gradient(circle at 75% 40%, #000, transparent 55%); }
footer { padding: 70px 0 25px; background: #fff; }.footer-top { padding-bottom: 45px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 50px; }.footer-brand p { margin: 18px 0 0; color: var(--muted); font-size: 12px; }.footer-links { display: flex; gap: 100px; }.footer-links > div { display: flex; flex-direction: column; gap: 10px; }.footer-links strong { margin-bottom: 6px; font-size: 11px; }.footer-links a { color: var(--muted); font-size: 11px; }.footer-links a:hover { color: var(--purple); }.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; color: #8a94a8; font-size: 9px; }.footer-bottom b { font-weight: 500; }

/* RTL */
html[dir="rtl"] .desktop-nav { margin-right: auto; margin-left: 20px; }
html[dir="rtl"] .hero::after { transform: scaleX(-1); }
html[dir="rtl"] .dashboard-window { margin-right: auto; margin-left: 0; transform: rotateY(3deg) rotateX(1deg); transform-origin: left center; }
html[dir="rtl"] .dash-sidebar { border-right: 0; border-left: 1px solid #ebeff5; }.side-item { text-align: start; }.dash-sidebar .mini-logo { padding-right: 7px; padding-left: 0; }.brand-mark.tiny { transform-origin: top right; }.module-card > span { right: auto; left: 27px; }.faq-item button { text-align: right; }.ai-console-top i, .map-pin i { margin-right: 0; margin-left: 7px; }.prompt-label, .prompt-chips { margin-left: 0; margin-right: 43px; }.user-bubble { border-radius: 15px 15px 15px 3px; }.answer-bubble { border-radius: 15px 3px 15px 15px; }.regional-card::before { right: auto; left: -120px; }

@media (max-width: 1120px) {
  .hero { grid-template-columns: 1fr; padding-top: 140px; }.hero-copy { max-width: 760px; text-align: center; margin-inline: auto; }.eyebrow { margin-inline: auto; }.hero-lead { margin-inline: auto; }.hero-actions,.hero-notes { justify-content: center; }.product-stage { width: min(820px, 100%); margin: 35px auto 0; }.dashboard-window { margin-inline: auto; transform: none; }.hero { min-height: auto; }.ai-layout { gap: 45px; }.regional-card { padding: 58px; }.module-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  .section-shell { width: min(100% - 34px, 700px); }.section-pad { padding: 82px 0; }.desktop-nav,.desktop-cta { display: none; }.menu-button { display: block; }.mobile-nav { position: absolute; top: 72px; right: 17px; left: 17px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; flex-direction: column; background: #fff; box-shadow: var(--shadow); }.mobile-nav.open { display: flex; }.mobile-nav a { padding: 13px 15px; border-radius: 10px; color: #42506e; font-size: 13px; font-weight: 700; }.mobile-nav a:hover { background: #f1f4fb; }.nav-shell { width: calc(100% - 34px); height: 72px; }.hero { padding-top: 126px; }.hero h1 { font-size: clamp(43px, 12vw, 66px); }.hero-lead { font-size: 15px; }.dashboard-window { width: 720px; }.product-stage { width: calc(100vw - 34px); overflow: hidden; padding: 25px 0; }.dashboard-window { transform-origin: top left; transform: scale(.9); width: 760px; margin-bottom: -45px; }.float-ai { right: 2px; }.float-approval { left: 2px; }.proof-grid { grid-template-columns: 1fr 1fr; }.proof-grid article:nth-child(2) { border-right: 0; }.proof-grid article:nth-child(-n+2) { border-bottom: 1px solid #e8edf5; }.platform-grid,.ai-layout,.regional-card,.faq-layout { grid-template-columns: 1fr; }.value-card.large-card { min-height: 650px; }.ai-layout { gap: 65px; }.split-heading { align-items: start; flex-direction: column; gap: 22px; }.split-heading p { width: auto; }.regional-card { padding: 52px 38px; }.region-map { margin-top: 30px; }.pricing-grid { grid-template-columns: 1fr; max-width: 500px; }.price-card.recommended { transform: none; order: -1; }.faq-layout { gap: 50px; }.footer-links { gap: 50px; }
}

@media (max-width: 560px) {
  .section-shell { width: calc(100% - 28px); }.section-pad { padding: 72px 0; }.brand-copy strong { font-size: 20px; }.language-picker button { min-width: 28px; }.nav-actions { gap: 7px; }.hero { padding-top: 112px; padding-bottom: 62px; }.hero h1 { font-size: 43px; }.hero-lead { font-size: 14px; line-height: 1.68; }.hero-actions .button { width: 100%; }.hero-notes { gap: 10px 15px; }.product-stage { width: 100vw; margin-left: calc((100% - 100vw)/2); padding-left: 10px; }.dashboard-window { transform: scale(.58); margin-bottom: -180px; }.float-card { display: none; }.proof-grid article { min-height: 101px; padding: 20px; }.proof-grid strong { font-size: 25px; }.proof-grid span { font-size: 8px; }.section-heading h2,.regional-copy h2,.faq-heading h2 { font-size: 37px; }.section-heading p { font-size: 14px; }.platform-grid,.module-grid { grid-template-columns: 1fr; }.value-card { min-height: 330px; padding: 28px; }.value-card.large-card { min-height: 600px; }.network-visual { transform: scale(.8); transform-origin: bottom center; }.language-rings { right: 25px; }.scale-visual { right: 20px; }.ai-chat { padding: 23px 17px; }.user-bubble { max-width: 85%; }.prompt-label,.prompt-chips { margin-left: 0; }.prompt-chips button { flex: 1; }.ai-input { margin-inline: 14px; }.module-card { min-height: 245px; }.regional-card { padding: 42px 23px; border-radius: 25px; }.regional-features { grid-template-columns: 1fr; }.region-map { height: 330px; transform: scale(.85); }.r3 { width: 340px; height: 340px; }.price-card { padding: 31px 25px; }.faq-item button { min-height: 75px; font-size: 13px; }.cta-card { min-height: 500px; padding: 65px 22px; border-radius: 25px; }.cta-card h2 { font-size: 39px; }.centered-actions .button { width: 100%; }.footer-top { flex-direction: column; }.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }.footer-bottom { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }.reveal { opacity: 1; transform: none; transition: none; }.float-card,.typing-dots i { animation: none; }
}
