:root {
  --ink: #f6f7f2;
  --muted: #9ca29b;
  --faint: #6c726d;
  --bg: #080a09;
  --surface: #101310;
  --surface-2: #161a16;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --lime: #cfff3e;
  --lime-ink: #111506;
  --violet: #876bff;
  --coral: #ff745f;
  --cyan: #4fd8e2;
  --shell: min(1320px, calc(100vw - 96px));
  --header: 82px;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  color-scheme: dark;
}

:root[data-theme="light"] {
  --ink: #111411;
  --muted: #515b52;
  --faint: #727d73;
  --bg: #f0f3ec;
  --surface: #ffffff;
  --surface-2: #e7ece3;
  --line: rgba(12, 26, 14, 0.14);
  --line-strong: rgba(12, 26, 14, 0.3);
  --lime: #7eb900;
  --lime-ink: #101700;
  --shadow: 0 24px 80px rgba(29, 43, 28, 0.14);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
[dir="rtl"] { font-family: Tahoma, Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; }
::selection { background: var(--lime); color: var(--lime-ink); }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }
.site { min-height: 100vh; overflow: clip; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed; z-index: 999; inset-block-start: 12px; inset-inline-start: 12px;
  padding: 10px 16px; border-radius: 999px; background: var(--lime); color: var(--lime-ink);
  font-weight: 800; transform: translateY(-150%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: relative; z-index: 100; width: 100%; min-height: var(--header); padding-inline: 48px;
  display: grid; grid-template-columns: 190px 1fr auto; align-items: center; gap: 28px;
  border-block-end: 1px solid var(--line); background: rgba(8,10,9,.92);
  backdrop-filter: blur(18px);
}
.logo { display: inline-flex; width: fit-content; align-items: center; gap: 10px; line-height: 1; }
.logo span { font-size: 28px; font-weight: 950; letter-spacing: -1.7px; }
.logo span i { color: var(--lime); font-style: normal; }
.logo small { max-width: 54px; color: var(--muted); font-size: 8px; font-weight: 850; line-height: 1.05; letter-spacing: 2px; }
.main-nav { justify-self: center; display: flex; align-items: stretch; gap: 2px; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { position: relative; padding: 28px 11px 26px; color: var(--muted); font-size: 13px; font-weight: 670; white-space: nowrap; }
.nav-item > a::after { content: ""; position: absolute; inset-block-end: -1px; inset-inline: 11px; height: 2px; transform: scaleX(0); background: var(--lime); transition: transform .2s ease; }
.nav-item > a:hover, .nav-item > a.active { color: var(--ink); }
.nav-item > a.active::after { transform: scaleX(1); }
.drop-trigger { margin-inline-start: -9px; padding: 6px; background: none; color: var(--muted); cursor: pointer; }
.mega {
  position: absolute; inset-block-start: calc(100% - 3px); inset-inline-start: 50%; width: min(720px, 84vw); padding: 10px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px; transform: translate(-50%, 10px); opacity: 0; visibility: hidden;
  border: 1px solid var(--line); border-radius: 16px; background: color-mix(in srgb, var(--surface) 96%, transparent); box-shadow: var(--shadow); transition: .2s ease;
}
[dir="rtl"] .mega { transform: translate(50%, 10px); }
.mega.open, .nav-item:hover .mega { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
[dir="rtl"] .mega.open, [dir="rtl"] .nav-item:hover .mega { transform: translate(50%, 0); }
.mega a { display: grid; grid-template-columns: 36px 1fr; gap: 12px; padding: 13px; border-radius: 10px; }
.mega a:hover { background: var(--surface-2); }
.mega a b { color: var(--lime); font-size: 20px; }
.mega a span { font-size: 14px; font-weight: 760; }
.mega a small { display: block; margin-block-start: 3px; color: var(--muted); font-size: 11px; font-weight: 450; line-height: 1.45; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.langs { display: flex; gap: 3px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; }
.langs a { padding: 3px 7px; border-radius: 999px; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .5px; }
.langs a.active { background: var(--ink); color: var(--bg); }
.theme-toggle { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.theme-toggle:hover { border-color: var(--line-strong); }
.header-cta, .mobile-cta { padding: 10px 16px; border-radius: 999px; background: var(--lime); color: var(--lime-ink); font-size: 12px; font-weight: 850; white-space: nowrap; }
.header-cta span { margin-inline-start: 14px; }
.mobile-cta, .nav-toggle { display: none; }

/* Core typography and actions */
.eyebrow, .page-hero > p, .section-head > p, .cta-section > p {
  margin: 0 0 22px; color: var(--lime); font-size: 11px; font-weight: 850; letter-spacing: 2.2px; text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow i { width: 22px; height: 1px; background: currentColor; }
h1, h2, h3, p { overflow-wrap: anywhere; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 28px; padding: 0 22px; border-radius: 8px; font-size: 13px; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--lime); color: var(--lime-ink); }
.button.secondary { border: 1px solid var(--line-strong); background: transparent; }
.button.secondary:hover { background: var(--surface-2); }
.button.light { background: #fff; color: #111; }
.text-link { border-block-end: 1px solid currentColor; font-size: 13px; font-weight: 800; }

/* Hero */
.hero { min-height: 690px; display: grid; grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr); align-items: center; gap: 54px; padding-block: 76px 58px; }
.hero-copy { position: relative; z-index: 2; max-width: 690px; }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(52px, 5.3vw, 88px); font-weight: 780; line-height: .95; letter-spacing: -.065em; }
[dir="rtl"] .hero h1 { line-height: 1.12; letter-spacing: -.035em; }
.hero h1 em { color: var(--lime); font-style: normal; }
.hero-body { max-width: 590px; margin: 28px 0 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-block-start: 35px; }
.region-note { display: flex; align-items: center; gap: 8px; margin: 30px 0 0; color: var(--faint); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.region-note span { color: var(--lime); }
.orchestration { position: relative; min-height: 540px; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--lime) 10%, transparent), transparent 30%), var(--surface); }
.visual-grid { position: absolute; inset: 0; opacity: .4; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(circle, #000, transparent 75%); }
.visual-head { position: absolute; z-index: 2; inset: 20px 22px auto; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.visual-head span { display: flex; align-items: center; gap: 8px; }
.live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 6px color-mix(in srgb, var(--lime) 15%, transparent); }
.core { position: absolute; z-index: 3; inset: 50% auto auto 50%; width: 136px; height: 136px; display: grid; place-content: center; border: 1px solid color-mix(in srgb, var(--lime) 70%, transparent); border-radius: 50%; transform: translate(-50%, -50%); background: var(--bg); box-shadow: 0 0 60px color-mix(in srgb, var(--lime) 12%, transparent); text-align: center; }
.core b { font-size: 27px; letter-spacing: -1px; }
.core small { color: var(--muted); font-size: 7px; letter-spacing: 2px; }
.orbit { position: absolute; inset: 50% auto auto 50%; border: 1px solid var(--line); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit.one { width: 300px; height: 300px; }
.orbit.two { width: 460px; height: 460px; }
.solution-node { position: absolute; z-index: 4; min-width: 150px; display: flex; align-items: center; gap: 10px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 11px; background: color-mix(in srgb, var(--surface-2) 94%, transparent); box-shadow: 0 12px 40px rgba(0,0,0,.18); }
.solution-node:hover { border-color: var(--lime); }
.solution-node > b { color: var(--lime); font-size: 20px; }
.solution-node > span { max-width: 120px; font-size: 11px; font-weight: 760; line-height: 1.2; }
.solution-node small { display: block; margin-block-start: 4px; color: var(--faint); font-size: 8px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.solution-node.n1 { inset-block-start: 17%; inset-inline-start: 9%; }
.solution-node.n2 { inset-block-start: 16%; inset-inline-end: 7%; }
.solution-node.n3 { inset-block-start: 48%; inset-inline-end: 4%; }
.solution-node.n4 { inset-block-end: 12%; inset-inline-end: 14%; }
.solution-node.n5 { inset-block-end: 13%; inset-inline-start: 9%; }
.pulse { position: absolute; z-index: 2; width: 10px; height: 10px; border-radius: 50%; background: var(--lime); }
.pulse.p1 { inset-block-start: 28%; inset-inline-start: 44%; animation: pulse 2.4s infinite; }
.pulse.p2 { inset-block-end: 21%; inset-inline-end: 38%; animation: pulse 2.4s .8s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 14px transparent; background: var(--violet); } }
.capability-rail { display: grid; grid-template-columns: repeat(6, 1fr); border-block: 1px solid var(--line); }
.capability-rail a { min-width: 0; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 17px 8px; border-inline-end: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 700; text-align: center; }
.capability-rail a:last-child { border-inline-end: 0; }
.capability-rail i { color: var(--lime); font-style: normal; font-size: 16px; }

/* Shared sections */
.section { padding-block: 126px; }
.section-head { display: grid; grid-template-columns: minmax(220px, .7fr) minmax(420px, 1.25fr) minmax(260px, .65fr); gap: 50px; align-items: start; margin-block-end: 62px; }
.section-head > p { margin: 8px 0 0; }
.section-head h2 { margin: 0; font-size: clamp(37px, 4.4vw, 66px); font-weight: 720; line-height: 1.03; letter-spacing: -.05em; }
[dir="rtl"] .section-head h2 { line-height: 1.18; letter-spacing: -.025em; }
.section-head > span { color: var(--muted); font-size: 16px; line-height: 1.75; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.service-card { min-height: 340px; display: flex; flex-direction: column; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: var(--line-strong); background: var(--surface-2); }
.service-card > div { display: flex; justify-content: space-between; align-items: center; }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: color-mix(in srgb, var(--lime) 13%, transparent); color: var(--lime); font-size: 23px; }
.service-card > div small { color: var(--faint); font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.service-card h3 { margin: 52px 0 12px; max-width: 390px; font-size: 27px; line-height: 1.15; letter-spacing: -.035em; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }
.service-card > b { margin-block-start: auto; display: flex; align-items: center; justify-content: space-between; padding-block-start: 24px; color: var(--ink); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.service-card > b i { color: var(--lime); font-size: 18px; font-style: normal; }
.tone-1 .service-icon, .tone-5 .service-icon { background: color-mix(in srgb, var(--violet) 14%, transparent); color: var(--violet); }
.tone-2 .service-icon { background: color-mix(in srgb, var(--coral) 14%, transparent); color: var(--coral); }
.tone-3 .service-icon { background: color-mix(in srgb, var(--cyan) 14%, transparent); color: var(--cyan); }
.outcomes-section { background: var(--surface); border-block: 1px solid var(--line); }
.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-block-start: 1px solid var(--line); }
.outcome-grid article { min-height: 250px; padding: 30px 24px; border-inline-end: 1px solid var(--line); }
.outcome-grid article:last-child { border-inline-end: 0; }
.outcome-grid article > span, .feature-grid article > span { color: var(--lime); font-size: 10px; font-weight: 850; letter-spacing: 1px; }
.outcome-grid h3, .feature-grid h3 { margin: 58px 0 12px; font-size: 21px; }
.outcome-grid p, .feature-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); margin-block-start: 72px; border-block-start: 1px solid var(--line); }
.stats-row > div { padding: 30px 24px 0; border-inline-end: 1px solid var(--line); }
.stats-row > div:last-child { border-inline-end: 0; }
.stats-row strong { display: block; color: var(--lime); font-size: clamp(42px, 5vw, 72px); line-height: 1; letter-spacing: -.06em; }
.stats-row span { display: block; margin-block-start: 12px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.partners-section { padding-block-end: 70px; }
.partner-card { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); min-height: 430px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow); transition: transform .25s ease, border-color .25s ease; }
.partner-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.partner-logo { min-height: 430px; display: grid; place-items: center; padding: clamp(38px, 7vw, 90px); background: radial-gradient(circle at 45% 45%, #182312, #050605 68%); }
.partner-logo img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 18px 45px rgba(0,0,0,.25)); }
.partner-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 6vw, 82px); }
.partner-copy > small { color: var(--lime); font-size: 9px; font-weight: 850; letter-spacing: 1.5px; text-transform: uppercase; }
.partner-copy h3 { margin: 28px 0 12px; font-size: clamp(40px, 5vw, 72px); line-height: 1; letter-spacing: -.055em; }
.partner-copy p { max-width: 620px; margin: 0; color: var(--muted); font-size: 16px; }
.partner-copy ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 30px 0 0; padding: 0; list-style: none; }
.partner-copy li { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 10px; }
.partner-copy > b { display: flex; align-items: center; justify-content: space-between; margin-block-start: 45px; padding-block-start: 18px; border-block-start: 1px solid var(--line); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.partner-copy > b span { color: var(--lime); font-size: 18px; }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.industry-grid a { position: relative; min-height: 250px; padding: 30px; border-block-start: 1px solid var(--line); border-inline-end: 1px solid var(--line); }
.industry-grid a:nth-child(3n) { border-inline-end: 0; }
.industry-grid a:hover { background: var(--surface); }
.industry-grid span { color: var(--faint); font-size: 10px; }
.industry-grid h3 { margin: 48px 0 10px; font-size: 23px; }
.industry-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.industry-grid b { position: absolute; inset-block-end: 25px; inset-inline-end: 26px; color: var(--lime); }
.process-band, .values-band { background: var(--lime); color: var(--lime-ink); }
.process-band .section-head > p, .values-band .section-head > p { color: var(--lime-ink); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-grid article { padding: 30px; border-block-start: 1px solid rgba(17,21,6,.28); border-inline-end: 1px solid rgba(17,21,6,.28); }
.process-grid article:last-child { border-inline-end: 0; }
.process-grid span { font-size: 10px; font-weight: 900; }
.process-grid h3 { margin: 50px 0 12px; font-size: 22px; }
.process-grid p { margin: 0; opacity: .72; font-size: 14px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.why-grid article { min-height: 250px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.why-grid i { color: var(--lime); font-style: normal; font-size: 10px; }
.why-grid h3 { margin: 65px 0 10px; font-size: 21px; }
.why-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.values-band .why-grid article { border-color: rgba(17,21,6,.2); background: rgba(255,255,255,.26); }
.values-band .why-grid i, .values-band .why-grid p { color: var(--lime-ink); }
.cta-section { position: relative; min-height: 480px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; overflow: hidden; margin-block-end: 100px; padding: 70px; border-radius: 24px; background: #7660ed; color: #fff; }
.cta-section > p { color: #fff; }
.cta-section h2 { position: relative; z-index: 2; max-width: 780px; margin: 0; font-size: clamp(44px, 5.6vw, 82px); line-height: .98; letter-spacing: -.055em; }
.cta-section > span { position: relative; z-index: 2; max-width: 660px; margin-block-start: 22px; opacity: .78; font-size: 17px; }
.cta-section > div:last-child { position: relative; z-index: 2; display: flex; align-items: center; gap: 28px; margin-block-start: 32px; }
.cta-orb { position: absolute; width: 420px; height: 420px; inset-inline-end: -75px; inset-block-start: 30px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: rgba(255,255,255,.08); font-size: 135px; font-weight: 950; transform: rotate(-10deg); }

/* Internal pages */
.page-hero { padding-block: 130px 90px; border-block-end: 1px solid var(--line); }
.page-hero h1 { max-width: 1060px; margin: 0; font-size: clamp(55px, 7.8vw, 112px); font-weight: 735; line-height: .94; letter-spacing: -.065em; }
[dir="rtl"] .page-hero h1 { line-height: 1.12; letter-spacing: -.035em; }
.page-hero > div { max-width: 900px; display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-block-start: 46px; }
.page-hero > div > span { color: var(--muted); font-size: 18px; line-height: 1.75; }
.services-list { border-block-start: 1px solid var(--line); }
.services-list > a { min-height: 170px; display: grid; grid-template-columns: 55px 70px 1fr 30px; align-items: center; gap: 24px; padding: 24px 18px; border-block-end: 1px solid var(--line); transition: padding .2s ease, background .2s ease; }
.services-list > a:hover { padding-inline: 30px; background: var(--surface); }
.services-list > a > span { color: var(--faint); font-size: 11px; }
.services-list > a > i { color: var(--lime); font-style: normal; font-size: 31px; }
.services-list h2 { margin: 0; font-size: clamp(26px, 3vw, 43px); line-height: 1.1; }
.services-list p { max-width: 680px; margin: 12px 0 0; color: var(--muted); }
.services-list > a > b { color: var(--lime); font-size: 22px; }
.detail-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 11vw; }
.sticky-label { position: sticky; inset-block-start: 36px; height: fit-content; }
.sticky-label > span { width: 90px; height: 90px; display: grid; place-items: center; border-radius: 20px; background: var(--surface-2); color: var(--lime); font-size: 38px; }
.sticky-label p { max-width: 420px; margin-block-start: 30px; color: var(--muted); font-size: 20px; }
.detail-layout > div:last-child > h2 { margin: 0 0 30px; color: var(--faint); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.included-list { margin: 0; padding: 0; list-style: none; border-block-start: 1px solid var(--line); }
.included-list li { display: grid; grid-template-columns: 45px 1fr; gap: 20px; padding: 25px 0; border-block-end: 1px solid var(--line); font-size: 22px; font-weight: 680; }
.included-list span { color: var(--lime); font-size: 10px; }
.detail-features { background: var(--surface); border-block: 1px solid var(--line); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-grid article { min-height: 280px; padding: 28px; border-inline-end: 1px solid var(--line); }
.feature-grid article:last-child { border-inline-end: 0; }
.next-service { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-block: 45px; border-block: 1px solid var(--line); }
.next-service > p { margin: 0; color: var(--faint); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.next-service a { max-width: 860px; display: flex; align-items: center; gap: 40px; font-size: clamp(28px, 4vw, 56px); font-weight: 750; line-height: 1.1; }
.next-service a span { color: var(--lime); }
.industry-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-block-start: 1px solid var(--line); }
.industry-detail-grid article { min-height: 400px; padding: 40px; border-block-end: 1px solid var(--line); border-inline-end: 1px solid var(--line); }
.industry-detail-grid article:nth-child(2n) { border-inline-end: 0; }
.industry-detail-grid article > div { display: flex; justify-content: space-between; color: var(--faint); }
.industry-detail-grid article > div i { color: var(--lime); font-size: 30px; font-style: normal; }
.industry-detail-grid h2 { margin: 80px 0 15px; font-size: 34px; line-height: 1.1; }
.industry-detail-grid p { color: var(--muted); }
.industry-detail-grid ul { display: flex; flex-wrap: wrap; gap: 6px; margin: 28px 0 0; padding: 0; list-style: none; }
.industry-detail-grid li a { display: block; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 10px; }
.industry-detail-grid li a:hover { border-color: var(--lime); color: var(--ink); }
.about-statement > p { max-width: 1060px; margin: 0; font-size: clamp(35px, 5vw, 68px); font-weight: 700; line-height: 1.1; letter-spacing: -.05em; }
.process-detail { padding-block-start: 70px; }
.process-detail article { min-height: 330px; display: grid; grid-template-columns: .6fr 1.4fr; gap: 80px; padding: 58px 20px; border-block-end: 1px solid var(--line); }
.process-detail article > div:first-child { display: flex; justify-content: space-between; color: var(--faint); }
.process-detail article > div:first-child i { color: var(--lime); font-size: 36px; font-style: normal; }
.process-detail h2 { margin: 0; font-size: clamp(34px, 4.4vw, 64px); line-height: 1; }
.process-detail p { max-width: 700px; color: var(--muted); font-size: 17px; }
.process-detail ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0 0; padding: 0; list-style: none; }
.process-detail li { padding: 8px 12px; border-radius: 999px; background: var(--surface-2); color: var(--muted); font-size: 11px; }
.insights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.insights-grid article { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.insights-grid article.featured { grid-column: 1 / -1; }
.insight-art { min-height: 230px; display: grid; place-items: center; overflow: hidden; border-radius: 12px; background: linear-gradient(135deg, color-mix(in srgb, var(--violet) 45%, var(--surface)), var(--surface-2)); }
.featured .insight-art { min-height: 350px; }
.insight-art span { font-size: 90px; opacity: .75; }
.art-1 { background: linear-gradient(135deg, color-mix(in srgb, var(--lime) 30%, var(--surface)), var(--surface-2)); }
.art-2 { background: linear-gradient(135deg, color-mix(in srgb, var(--coral) 35%, var(--surface)), var(--surface-2)); }
.art-3 { background: linear-gradient(135deg, color-mix(in srgb, var(--cyan) 35%, var(--surface)), var(--surface-2)); }
.insights-grid article > small { display: block; margin-block-start: 25px; color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase; }
.insights-grid h2 { margin: 12px 0; font-size: 29px; line-height: 1.18; }
.insights-grid article > p, .insight-body { color: var(--muted); }
.insight-body { padding-block: 10px; border-block: 1px solid var(--line); }
.text-button { width: 100%; display: flex; justify-content: space-between; margin-block-start: 20px; padding: 16px 0 0; background: none; color: var(--ink); font-size: 11px; font-weight: 850; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; }
.text-button span { color: var(--lime); }

/* Contact, legal, footer */
.contact-page { min-height: 740px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: center; padding-block: 100px 130px; }
.contact-copy h1 { max-width: 620px; margin: 0; font-size: clamp(54px, 7vw, 100px); line-height: .92; letter-spacing: -.06em; }
.contact-copy > p:not(.eyebrow):not(.contact-note) { max-width: 570px; color: var(--muted); font-size: 17px; }
.contact-lines { margin-block-start: 42px; border-block-start: 1px solid var(--line); }
.contact-lines a { display: grid; grid-template-columns: 105px 1fr 20px; gap: 18px; align-items: center; padding: 18px 0; border-block-end: 1px solid var(--line); font-size: 14px; }
.contact-lines small { color: var(--faint); font-size: 8px; font-weight: 850; letter-spacing: 1px; }
.contact-lines a span { color: var(--lime); }
.contact-note { margin-block-start: 25px; color: var(--lime); font-size: 11px; }
.contact-form { padding: 44px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow); }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.contact-form label { display: block; }
.contact-form label > span { display: block; margin-block-end: 8px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; outline: 0; background: var(--bg); padding: 13px 14px; transition: border-color .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--lime); }
.contact-form textarea { min-height: 140px; margin-block-start: 22px; resize: vertical; }
.contact-form .button { margin-block-start: 22px; }
.privacy-note { display: block; margin-block-start: 18px; color: var(--faint); }
.privacy-note a { border-block-end: 1px solid currentColor; }
.form-note { padding: 10px; border-radius: 7px; background: color-mix(in srgb, var(--lime) 12%, transparent); color: var(--lime); }
.hp-field { position: absolute !important; inset-inline-start: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-form button:disabled { opacity: .55; cursor: wait; }
.legal-copy { max-width: 1000px; }
.legal-copy article { display: grid; grid-template-columns: 55px 1fr; gap: 28px; padding: 38px 0; border-block-end: 1px solid var(--line); }
.legal-copy article > span { color: var(--lime); font-size: 10px; }
.legal-copy h2 { margin: 0 0 12px; font-size: 27px; }
.legal-copy p { margin: 0; color: var(--muted); }
.not-found, .global-not-found { min-height: 650px; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 30px; text-align: center; }
.not-found > span { color: var(--lime); font-size: 12px; letter-spacing: 3px; }
.not-found h1 { max-width: 850px; margin: 20px 0; font-size: clamp(54px, 8vw, 110px); line-height: .95; }
.not-found p { color: var(--muted); }
.not-found > div { display: flex; gap: 10px; margin-block-start: 24px; }
.global-not-found > span { color: var(--lime); font-size: 12px; letter-spacing: 3px; }
.global-not-found h1 { margin: 20px 0 5px; font-size: clamp(52px, 8vw, 100px); line-height: 1; }
.global-not-found p { color: var(--muted); }
.global-not-found a { margin-block-start: 20px; padding: 12px 18px; border-radius: 8px; background: var(--lime); color: var(--lime-ink); font-weight: 800; }
footer { border-block-start: 1px solid var(--line); background: var(--surface); }
.footer-top { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 60px; padding-block: 78px; }
.footer-top > div:first-child h2 { max-width: 390px; margin: 36px 0 0; font-size: 29px; line-height: 1.2; }
.footer-top h3 { margin: 0 0 20px; color: var(--faint); font-size: 9px; letter-spacing: 1.6px; text-transform: uppercase; }
.footer-top > div:not(:first-child) a { display: block; margin-block: 10px; color: var(--muted); font-size: 13px; }
.footer-top > div:not(:first-child) a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 22px; border-block-start: 1px solid var(--line); color: var(--faint); font-size: 10px; letter-spacing: .5px; text-transform: uppercase; }

/* Solution guide */
.guide-launch { position: fixed; z-index: 110; inset-inline-end: 26px; inset-block-end: 24px; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--lime-ink); box-shadow: 0 15px 45px rgba(0,0,0,.35); cursor: pointer; }
.guide-launch > span { font-size: 22px; }
.guide-launch > i { position: absolute; inset-inline-end: 3px; inset-block-start: 3px; width: 9px; height: 9px; border: 2px solid var(--bg); border-radius: 50%; background: #4cff83; }
.guide-panel { position: fixed; z-index: 109; inset-inline-end: 26px; inset-block-end: 92px; width: min(390px, calc(100vw - 32px)); max-height: min(660px, calc(100vh - 125px)); display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 19px; background: var(--surface); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(14px) scale(.97); transform-origin: bottom right; transition: .2s ease; }
[dir="rtl"] .guide-panel { transform-origin: bottom left; }
.guide-panel.open { opacity: 1; visibility: visible; transform: none; }
.guide-head { display: flex; align-items: center; justify-content: space-between; padding: 17px; border-block-end: 1px solid var(--line); }
.guide-head > div { display: flex; align-items: center; gap: 10px; }
.guide-head > div > b { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--lime-ink); }
.guide-head span { display: flex; flex-direction: column; }
.guide-head strong { font-size: 13px; }
.guide-head small { color: var(--muted); font-size: 10px; }
.guide-head > button { background: none; color: var(--muted); font-size: 24px; cursor: pointer; }
.guide-messages { min-height: 180px; overflow-y: auto; padding: 17px; }
.guide-messages p { width: fit-content; max-width: 88%; margin: 0 0 9px; padding: 10px 12px; border-radius: 12px 12px 12px 3px; background: var(--surface-2); font-size: 12px; }
.guide-messages p.user { margin-inline-start: auto; border-radius: 12px 12px 3px 12px; background: var(--lime); color: var(--lime-ink); }
.guide-chips { display: flex; gap: 6px; overflow-x: auto; padding: 0 17px 12px; }
.guide-chips button { flex: none; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); font-size: 10px; cursor: pointer; }
.guide-chips button:hover { border-color: var(--lime); }
.guide-panel form { display: flex; gap: 7px; padding: 12px 17px; border-block-start: 1px solid var(--line); }
.guide-panel form input { min-width: 0; flex: 1; padding: 9px; border: 1px solid var(--line); border-radius: 7px; background: var(--bg); font-size: 11px; }
.guide-panel form button { padding: 8px 10px; border-radius: 7px; background: var(--lime); color: var(--lime-ink); font-size: 10px; font-weight: 800; }
.guide-disclaimer { padding: 0 17px 13px; color: var(--faint); font-size: 8px; text-align: center; }
.back-top { position: fixed; z-index: 90; inset-inline-end: 92px; inset-block-end: 29px; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--muted); font-size: 14px; }
.consent-banner { position: fixed; z-index: 120; inset-inline: 20px; inset-block-end: 18px; width: min(720px, calc(100% - 40px)); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); }
.consent-banner[hidden] { display: none; }
.consent-banner p { margin: 0; color: var(--muted); font-size: 12px; }
.consent-banner > div { display: flex; gap: 8px; }
.consent-banner button { padding: 8px 12px; border: 1px solid var(--line); border-radius: 7px; background: transparent; cursor: pointer; font-size: 11px; }
.consent-banner button:last-child { border-color: var(--lime); background: var(--lime); color: var(--lime-ink); }

/* Light mode receives its own depth, contrast and visual rhythm. */
:root[data-theme="light"] body {
  background:
    radial-gradient(circle at 12% 6%, rgba(126, 185, 0, .09), transparent 24rem),
    radial-gradient(circle at 92% 20%, rgba(135, 107, 255, .07), transparent 30rem),
    var(--bg);
}
:root[data-theme="light"] .site-header { background: rgba(244, 247, 239, .88); box-shadow: 0 8px 28px rgba(35, 50, 32, .05); }
:root[data-theme="light"] .hero { position: relative; }
:root[data-theme="light"] .hero::before { content: ""; position: absolute; z-index: -1; width: 560px; height: 560px; inset-block-start: -180px; inset-inline-start: -250px; border-radius: 50%; background: radial-gradient(circle, rgba(126,185,0,.12), transparent 68%); pointer-events: none; }
:root[data-theme="light"] .hero h1 em { color: #70a900; }
:root[data-theme="light"] .orchestration { border-color: rgba(38, 66, 33, .17); background: radial-gradient(circle at 50% 45%, rgba(126,185,0,.15), transparent 32%), linear-gradient(145deg, #fff, #f4f7f1); box-shadow: 0 30px 80px rgba(38, 55, 35, .13); }
:root[data-theme="light"] .visual-grid { opacity: .55; }
:root[data-theme="light"] .core { background: #fff; box-shadow: 0 18px 60px rgba(66, 91, 56, .16), 0 0 70px rgba(126,185,0,.13); }
:root[data-theme="light"] .solution-node { border-color: rgba(32, 51, 30, .14); background: rgba(255,255,255,.94); box-shadow: 0 13px 35px rgba(35, 50, 33, .13); }
:root[data-theme="light"] .capability-rail { background: rgba(255,255,255,.34); }
:root[data-theme="light"] .service-card,
:root[data-theme="light"] .why-grid article,
:root[data-theme="light"] .insights-grid article { box-shadow: 0 16px 45px rgba(37, 51, 34, .07); }
:root[data-theme="light"] .service-card:hover,
:root[data-theme="light"] .why-grid article:hover { box-shadow: 0 24px 55px rgba(37, 51, 34, .13); }
:root[data-theme="light"] .outcomes-section { background: linear-gradient(180deg, #e8ede3, #f0f3ec); }
:root[data-theme="light"] .process-band { background: #162019; color: #f6f8f3; }
:root[data-theme="light"] .process-band .section-head > p { color: #bce93e; }
:root[data-theme="light"] .process-band .process-grid article { border-color: rgba(255,255,255,.16); }
:root[data-theme="light"] .process-band .process-grid p { color: #bdc5bd; opacity: 1; }
:root[data-theme="light"] .values-band { background: #d9ef9d; }
:root[data-theme="light"] .partner-card { background: linear-gradient(145deg, #fff, #eef2ea); }
:root[data-theme="light"] .partner-copy li { background: rgba(255,255,255,.68); }
:root[data-theme="light"] .cta-section { background: linear-gradient(135deg, #654fdc, #856ff0 62%, #9c86ff); box-shadow: 0 30px 90px rgba(89, 69, 187, .25); }
:root[data-theme="light"] .contact-form { border-color: rgba(25, 45, 26, .14); background: rgba(255,255,255,.9); }
:root[data-theme="light"] .contact-form input,
:root[data-theme="light"] .contact-form select,
:root[data-theme="light"] .contact-form textarea { background: #f7f9f4; }
:root[data-theme="light"] footer { background: #121713; color: #f5f7f2; }
:root[data-theme="light"] footer .logo small,
:root[data-theme="light"] .footer-top h3,
:root[data-theme="light"] .footer-top > div:not(:first-child) a,
:root[data-theme="light"] .footer-bottom { color: #9fa89f; }
:root[data-theme="light"] .guide-panel,
:root[data-theme="light"] .back-top { box-shadow: 0 20px 60px rgba(30,43,29,.18); }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 56px, 1100px); }
  .site-header { padding-inline: 28px; grid-template-columns: 150px 1fr auto; gap: 12px; }
  .nav-item > a { padding-inline: 7px; font-size: 11px; }
  .header-cta { display: none; }
  .hero { grid-template-columns: .92fr 1.08fr; gap: 28px; }
  .solution-node { min-width: 128px; }
  .section-head { grid-template-columns: .45fr 1fr .55fr; gap: 30px; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 40px, 760px); --header: 70px; }
  .site-header { position: relative; grid-template-columns: 1fr auto auto; min-height: var(--header); padding-inline: 20px; }
  .nav-toggle { order: 3; width: 40px; height: 40px; display: grid; place-content: center; gap: 6px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
  .nav-toggle span { width: 16px; height: 1px; background: currentColor; }
  .main-nav { position: absolute; inset: var(--header) 0 auto; max-height: calc(100vh - var(--header)); display: block; overflow-y: auto; padding: 14px 20px 24px; border-block-end: 1px solid var(--line); background: var(--bg); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav-item { display: grid; grid-template-columns: 1fr auto; border-block-end: 1px solid var(--line); }
  .nav-item > a { padding: 15px 5px; font-size: 14px; }
  .nav-item > a::after { display: none; }
  .drop-trigger { margin: 0; }
  .mega { position: static; grid-column: 1 / -1; width: auto; display: none; transform: none !important; opacity: 1; visibility: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .mega.open { display: grid; }
  .mega a { background: var(--surface); }
  .mobile-cta { display: block; margin-block-start: 14px; text-align: center; }
  .header-actions { justify-self: end; }
  .langs { display: none; }
  .hero { min-height: 0; grid-template-columns: 1fr; padding-block: 80px; }
  .hero-copy { max-width: 730px; }
  .orchestration { min-height: 510px; }
  .capability-rail { grid-template-columns: repeat(3, 1fr); }
  .capability-rail a:nth-child(3) { border-inline-end: 0; }
  .capability-rail a:nth-child(-n+3) { border-block-end: 1px solid var(--line); }
  .section { padding-block: 90px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .section-head > p { margin: 0; }
  .section-head > span { max-width: 640px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-grid, .feature-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-grid article:nth-child(2), .feature-grid article:nth-child(2), .process-grid article:nth-child(2) { border-inline-end: 0; }
  .outcome-grid article:nth-child(-n+2), .feature-grid article:nth-child(-n+2), .process-grid article:nth-child(-n+2) { border-block-end: 1px solid var(--line); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row > div:nth-child(2) { border-inline-end: 0; }
  .stats-row > div:nth-child(-n+2) { padding-block-end: 25px; border-block-end: 1px solid var(--line); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid a:nth-child(3n) { border-inline-end: 1px solid var(--line); }
  .industry-grid a:nth-child(2n) { border-inline-end: 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid article:last-child { grid-column: 1 / -1; }
  .partner-card { grid-template-columns: 1fr; }
  .partner-logo { min-height: 320px; }
  .cta-section { min-height: 430px; padding: 50px; }
  .page-hero { padding-block: 95px 70px; }
  .page-hero > div { align-items: flex-start; flex-direction: column; }
  .detail-layout { gap: 55px; }
  .industry-detail-grid article { padding: 28px; }
  .industry-detail-grid h2 { margin-block-start: 55px; }
  .contact-page { grid-template-columns: 1fr; gap: 70px; }
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 28px); }
  .site-header { padding-inline: 14px; }
  .logo span { font-size: 24px; }
  .hero { padding-block: 60px; }
  .hero h1 { font-size: clamp(45px, 14.3vw, 66px); }
  .hero-body { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .orchestration { min-height: 420px; }
  .visual-head { inset-inline: 15px; }
  .orbit.one { width: 220px; height: 220px; }
  .orbit.two { width: 350px; height: 350px; }
  .core { width: 105px; height: 105px; }
  .solution-node { min-width: 0; width: 118px; padding: 8px; }
  .solution-node > span { font-size: 9px; }
  .solution-node.n1 { inset-block-start: 18%; inset-inline-start: 3%; }
  .solution-node.n2 { inset-block-start: 19%; inset-inline-end: 2%; }
  .solution-node.n3 { inset-block-start: 47%; inset-inline-end: 0; }
  .solution-node.n4 { inset-block-end: 10%; inset-inline-end: 8%; }
  .solution-node.n5 { inset-block-end: 11%; inset-inline-start: 3%; }
  .capability-rail { grid-template-columns: repeat(2, 1fr); }
  .capability-rail a { border-block-end: 1px solid var(--line); }
  .capability-rail a:nth-child(2n) { border-inline-end: 0; }
  .capability-rail a:nth-last-child(-n+2) { border-block-end: 0; }
  .section { padding-block: 74px; }
  .section-head { margin-block-end: 40px; }
  .section-head h2 { font-size: 38px; }
  .services-grid, .outcome-grid, .feature-grid, .industry-grid, .why-grid, .process-grid, .industry-detail-grid, .insights-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; padding: 24px; }
  .outcome-grid article, .feature-grid article, .process-grid article, .industry-grid a, .industry-detail-grid article { border-inline-end: 0; }
  .outcome-grid article:not(:last-child), .feature-grid article:not(:last-child), .process-grid article:not(:last-child) { border-block-end: 1px solid var(--line); }
  .why-grid article:last-child { grid-column: auto; }
  .industry-detail-grid article:nth-child(n) { border-inline-end: 0; }
  .stats-row strong { font-size: 44px; }
  .partner-logo { min-height: 260px; padding: 48px; }
  .partner-copy { padding: 30px 24px; }
  .partner-copy h3 { font-size: 43px; }
  .cta-section { width: calc(100% - 20px); min-height: 500px; margin-block-end: 60px; padding: 35px 25px; border-radius: 18px; }
  .cta-section h2 { font-size: 45px; }
  .cta-section > div:last-child { align-items: flex-start; flex-direction: column; }
  .cta-orb { width: 320px; height: 320px; inset-inline-end: -140px; font-size: 95px; }
  .page-hero { padding-block: 75px 55px; }
  .page-hero h1 { font-size: clamp(47px, 15vw, 72px); }
  .services-list > a { grid-template-columns: 30px 40px 1fr 18px; gap: 10px; padding-inline: 5px; }
  .services-list h2 { font-size: 24px; }
  .services-list p { font-size: 13px; }
  .detail-layout { grid-template-columns: 1fr; }
  .sticky-label { position: static; }
  .included-list li { font-size: 18px; }
  .next-service { align-items: flex-start; flex-direction: column; }
  .process-detail article { grid-template-columns: 1fr; gap: 34px; }
  .featured .insight-art { min-height: 250px; }
  .contact-page { padding-block: 70px 90px; }
  .contact-copy h1 { font-size: 57px; }
  .contact-lines a { grid-template-columns: 1fr 18px; }
  .contact-lines small { grid-column: 1 / -1; }
  .contact-form { padding: 22px; }
  .field-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 40px 25px; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .guide-launch { inset-inline-end: 16px; inset-block-end: 16px; }
  .guide-panel { inset-inline-end: 16px; inset-block-end: 82px; }
  .back-top { display: none; }
  .consent-banner { align-items: stretch; flex-direction: column; }
}

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