:root {
  --bg: #0b0b0c;
  --bg-2: #111214;
  --panel: #151619;
  --panel-2: #1a1b1f;
  --soft: #f3efe8;
  --soft-2: #e8e2d9;
  --text: #f8f7f4;
  --muted: #aaa8a3;
  --muted-2: #767570;
  --line: rgba(255,255,255,.105);
  --line-strong: rgba(255,255,255,.18);
  --red: #e6282f;
  --red-2: #ff3b42;
  --red-dark: #8f1017;
  --green: #31c978;
  --shadow: 0 34px 90px rgba(0,0,0,.44);
  --radius: 26px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--red); color: white; }

.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; transform: translateY(-150%); padding: 10px 14px; background: white; color: #111; border-radius: 10px; }
.skip-link:focus { transform: none; }

/* Loader */
.page-loader { position: fixed; inset: 0; z-index: 10000; display: grid; place-items: center; background: #09090a; transition: opacity .65s ease, visibility .65s ease; }
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-mark { display: grid; place-items: center; gap: 14px; }
.loader-mark img { width: 72px; height: 72px; object-fit: contain; animation: loaderPulse 1.2s ease-in-out infinite; }
.loader-line { width: 160px; height: 2px; background: #242428; overflow: hidden; }
.loader-line::after { content:""; display:block; width: 55%; height:100%; background: var(--red); animation: loaderSweep 1.1s ease-in-out infinite; }
@keyframes loaderSweep { from { transform: translateX(-120%); } to { transform: translateX(240%); } }
@keyframes loaderPulse { 50% { transform: scale(.94); opacity: .72; } }

/* Header */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 1000; border-bottom: 1px solid transparent; transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease; }
.site-header.is-scrolled { background: rgba(11,11,12,.82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-color: var(--line); }
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-name { font-weight: 950; font-size: 20px; letter-spacing: .08em; white-space: nowrap; }
.brand-division { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; border-left: 1px solid var(--line-strong); padding-left: 11px; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 750; color: #cfcdc8; }
.nav-links a { position: relative; transition: color .22s ease; }
.nav-links a::after { content:""; position:absolute; height:2px; left:0; right:100%; bottom:-8px; background: var(--red); transition: right .28s ease; }
.nav-links a:hover { color: white; }
.nav-links a:hover::after { right:0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang { display:flex; gap:3px; border:1px solid var(--line); border-radius:999px; padding:3px; background: rgba(255,255,255,.03); }
.lang button { border:0; background:transparent; color:#9f9d98; padding:7px 8px; border-radius:999px; cursor:pointer; font-size:11px; font-weight:900; }
.lang button.is-active { background:#f3efe8; color:#111; }
.menu-btn { display:none; width:44px; height:44px; border:1px solid var(--line); border-radius:12px; background:#151619; cursor:pointer; padding:0; }
.menu-btn span { display:block; width:18px; height:2px; margin:4px auto; background:white; transition:.3s ease; }

/* Buttons */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:10px; min-height:48px; padding:0 20px; border-radius:14px; border:1px solid transparent; font-weight:900; font-size:13px; letter-spacing:.01em; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color:white; box-shadow: 0 14px 34px rgba(230,40,47,.23); }
.btn-red:hover { background: var(--red-2); box-shadow: 0 18px 45px rgba(230,40,47,.32); }
.btn-ghost { border-color: var(--line-strong); background: rgba(255,255,255,.035); color:white; }
.btn-ghost:hover { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.07); }
.btn-light { background: var(--soft); color:#111; }
.btn-light:hover { background:white; }
.arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translate(3px,-2px); }

/* Typography */
.eyebrow, .section-tag { display:inline-flex; align-items:center; gap:9px; color:#c9c6c0; text-transform:uppercase; letter-spacing:.16em; font-size:11px; font-weight:900; }
.eyebrow::before, .section-tag::before { content:""; width:25px; height:2px; background:var(--red); box-shadow:0 0 16px rgba(230,40,47,.55); }
.display { margin: 24px 0 22px; max-width: 920px; font-size: clamp(52px, 7.2vw, 108px); line-height: .91; letter-spacing: -.068em; font-weight: 930; }
.display .accent { color: var(--red); }
.lead { margin:0; max-width:760px; color:#bbb8b1; font-size:clamp(17px,1.8vw,21px); line-height:1.72; }
.section-title { margin:18px 0 16px; max-width:900px; font-size:clamp(38px,5vw,72px); line-height:1.01; letter-spacing:-.052em; font-weight:920; }
.section-copy { color:#aaa8a3; font-size:17px; line-height:1.8; max-width:760px; }

/* Generic motion */
.reveal { opacity:0; transform: translateY(34px); transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.from-left { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.is-visible { opacity:1; transform:none; }
[data-delay="1"] { transition-delay:.08s; } [data-delay="2"] { transition-delay:.16s; } [data-delay="3"] { transition-delay:.24s; } [data-delay="4"] { transition-delay:.32s; }

/* Global hero */
.hero { position:relative; padding: 160px 0 84px; min-height: 860px; overflow:hidden; isolation:isolate; }
.hero::before { content:""; position:absolute; inset:0; z-index:-4; background:
  radial-gradient(circle at 76% 22%, rgba(230,40,47,.17), transparent 24%),
  radial-gradient(circle at 12% 52%, rgba(255,255,255,.045), transparent 26%),
  linear-gradient(180deg,#0a0a0b 0%,#0d0e10 72%,#0b0b0c 100%); }
.grid-bg { position:absolute; inset:0; z-index:-3; opacity:.34; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px); background-size:58px 58px; mask-image:linear-gradient(to bottom, black 0%, transparent 90%); }
.hero-beam { position:absolute; z-index:-2; top:90px; right:-220px; width:760px; height:1px; background:linear-gradient(90deg,transparent,var(--red),transparent); transform:rotate(-32deg); filter:drop-shadow(0 0 10px rgba(230,40,47,.65)); animation: beamDrift 8s ease-in-out infinite alternate; }
.hero-beam.beam-2 { top:360px; right:-100px; opacity:.35; animation-delay:-3s; }
@keyframes beamDrift { to { transform: rotate(-32deg) translateX(-120px); opacity:.35; } }
.hero-layout { display:grid; grid-template-columns: .88fr 1.12fr; gap:54px; align-items:center; }
.hero-copy { position:relative; z-index:4; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:34px; }
.hero-proof { display:flex; flex-wrap:wrap; gap:18px 26px; margin-top:36px; color:#82817c; font-size:12px; font-weight:850; text-transform:uppercase; letter-spacing:.08em; }
.hero-proof span { display:flex; align-items:center; gap:8px; }
.hero-proof i { width:7px; height:7px; border-radius:50%; background:var(--green); box-shadow:0 0 12px rgba(49,201,120,.5); }
.hero-stage { position:relative; min-height:590px; perspective:1200px; }
.hero-screen-wrap { position:absolute; width:118%; left:-2%; top:58px; transform: rotateY(-8deg) rotateX(3deg); transform-style:preserve-3d; transition: transform .18s ease-out; }
.hero-screen { position:relative; border:1px solid rgba(255,255,255,.15); background:#151619; padding:9px; border-radius:24px; box-shadow:var(--shadow); overflow:hidden; }
.hero-screen::before { content:""; position:absolute; inset:0; pointer-events:none; background:linear-gradient(115deg,rgba(255,255,255,.08),transparent 28%); z-index:2; }
.hero-screen img { border-radius:17px; width:100%; }
.float-chip { position:absolute; z-index:6; min-width:170px; padding:15px 16px; border:1px solid rgba(255,255,255,.13); background:rgba(20,21,24,.82); backdrop-filter:blur(16px); border-radius:16px; box-shadow:0 18px 50px rgba(0,0,0,.35); animation: floatChip 5s ease-in-out infinite; }
.float-chip small { display:block; color:#807f7a; font-size:10px; text-transform:uppercase; letter-spacing:.13em; margin-bottom:5px; }
.float-chip strong { font-size:13px; }
.float-chip.one { top:8px; right:-18px; }
.float-chip.two { bottom:46px; left:-35px; animation-delay:-2.2s; }
.float-chip .signal { display:inline-block; width:8px; height:8px; background:var(--red); border-radius:50%; margin-right:8px; box-shadow:0 0 0 0 rgba(230,40,47,.55); animation: signalPulse 1.7s infinite; }
@keyframes floatChip { 50% { transform:translateY(-10px); } }
@keyframes signalPulse { 70% { box-shadow:0 0 0 10px rgba(230,40,47,0); } }

/* Marquee */
.marquee { overflow:hidden; border-block:1px solid var(--line); background:#0f1012; }
.marquee-track { display:flex; width:max-content; animation: marqueeMove 26s linear infinite; }
.marquee-group { display:flex; align-items:center; gap:32px; padding:18px 16px; }
.marquee-group span { color:#9d9b96; white-space:nowrap; font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:.13em; }
.marquee-group b { color:var(--red); font-size:18px; }
@keyframes marqueeMove { to { transform:translateX(-50%); } }

/* Homepage sections */
.section { position:relative; padding:120px 0; }
.section.soft { background:var(--soft); color:#111; }
.section.soft .section-copy { color:#5f5d58; }
.section.soft .section-tag { color:#6e6a63; }
.section.dark-2 { background:#101113; }
.heading-split { display:grid; grid-template-columns:1fr .72fr; gap:60px; align-items:end; margin-bottom:56px; }
.work-grid { display:grid; grid-template-columns:1.3fr .85fr; gap:18px; }
.work-card { position:relative; min-height:520px; border:1px solid var(--line); border-radius:28px; overflow:hidden; background:#151619; padding:34px; display:flex; flex-direction:column; justify-content:space-between; isolation:isolate; transition:transform .3s ease,border-color .3s ease; }
.work-card:hover { transform:translateY(-6px); border-color:rgba(255,255,255,.22); }
.work-card.primary { min-height:650px; }
.work-card::after { content:""; position:absolute; width:360px; height:360px; border-radius:50%; right:-180px; bottom:-180px; background:rgba(230,40,47,.12); filter:blur(30px); z-index:-1; }
.work-card .status { align-self:flex-start; padding:8px 10px; border-radius:999px; font-size:10px; font-weight:950; letter-spacing:.12em; text-transform:uppercase; border:1px solid var(--line); }
.status.live { color:#c9ffe1; background:rgba(49,201,120,.08); border-color:rgba(49,201,120,.3); }
.status.dev { color:#ffb8bb; background:rgba(230,40,47,.08); border-color:rgba(230,40,47,.3); }
.work-card h3 { font-size:clamp(30px,3.4vw,48px); letter-spacing:-.04em; margin:18px 0 12px; }
.work-card p { color:#9f9c96; line-height:1.72; max-width:620px; }
.work-shot { margin-top:30px; border:1px solid var(--line); padding:7px; border-radius:18px; background:#0d0e10; box-shadow:0 28px 70px rgba(0,0,0,.35); transform:perspective(900px) rotateX(2deg); overflow:hidden; }
.work-shot img { border-radius:12px; }
.work-stack { display:grid; grid-template-rows:1fr 1fr; gap:18px; }
.small-work { min-height:316px; }
.work-list { display:flex; flex-wrap:wrap; gap:8px; margin-top:20px; }
.work-list span { padding:8px 10px; border:1px solid var(--line); border-radius:999px; color:#8f8d88; font-size:10px; font-weight:850; }

.about-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:80px; align-items:start; }
.about-big { font-size:clamp(31px,4vw,58px); line-height:1.08; letter-spacing:-.045em; margin:0; font-weight:900; }
.about-points { display:grid; gap:1px; background:#d4cec4; border:1px solid #d4cec4; }
.about-point { background:var(--soft); padding:30px 26px; display:grid; grid-template-columns:54px 1fr; gap:20px; }
.about-point span { color:var(--red); font-size:12px; font-weight:950; }
.about-point h3 { margin:0 0 8px; font-size:20px; }
.about-point p { margin:0; color:#6b6861; line-height:1.65; }

.command-feature { display:grid; grid-template-columns:.72fr 1.28fr; gap:48px; align-items:center; }
.command-copy .mini-list { display:grid; gap:14px; margin-top:28px; }
.command-copy .mini-list div { display:flex; align-items:center; gap:12px; color:#b1aea8; }
.command-copy .mini-list i { width:8px; height:8px; border:2px solid var(--red); border-radius:50%; }
.screen-frame { position:relative; border:1px solid var(--line); background:#16171a; border-radius:24px; padding:9px; box-shadow:var(--shadow); overflow:hidden; cursor:zoom-in; }
.screen-frame img { width:100%; border-radius:16px; transition:transform .55s cubic-bezier(.2,.7,.2,1), filter .55s ease; }
.screen-frame:hover img { transform:scale(1.018); filter:brightness(1.04); }
.screen-frame::after { content:""; position:absolute; inset:-60% auto -60% -30%; width:22%; background:linear-gradient(90deg,transparent,rgba(255,255,255,.09),transparent); transform:rotate(12deg); transition:left .9s ease; pointer-events:none; }
.screen-frame:hover::after { left:120%; }
.map-caption { margin-top:12px; color:#6f6d68; font-size:10px; text-align:right; }

.approach-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.approach { padding:34px 25px 38px; border-right:1px solid var(--line); transition:background .3s ease; }
.approach:last-child { border-right:0; }
.approach:hover { background:rgba(255,255,255,.025); }
.approach .num { color:var(--red); font-size:11px; font-weight:950; }
.approach h3 { font-size:20px; margin:50px 0 12px; }
.approach p { color:#8f8d88; line-height:1.65; font-size:14px; }

.ceo { background:var(--soft); color:#111; }
.ceo-grid { display:grid; grid-template-columns:.45fr 1.55fr; gap:70px; align-items:start; }
.ceo-name { border-top:3px solid var(--red); padding-top:17px; }
.ceo-name strong { display:block; font-size:17px; }
.ceo-name small { color:#68645e; }
.ceo-quote { margin:0; font-size:clamp(30px,4.2vw,60px); font-weight:850; line-height:1.08; letter-spacing:-.045em; }
.ceo-quote em { font-style:normal; color:var(--red); }

.cta-section { padding:100px 0 120px; }
.cta-card { position:relative; overflow:hidden; border:1px solid var(--line); border-radius:30px; padding:64px; background:linear-gradient(125deg,#151619,#101113); display:grid; grid-template-columns:1fr auto; align-items:end; gap:40px; }
.cta-card::before { content:""; position:absolute; width:520px; height:520px; right:-230px; top:-260px; background:rgba(230,40,47,.17); border-radius:50%; filter:blur(45px); }
.cta-card h2 { margin:14px 0 12px; max-width:760px; font-size:clamp(38px,5vw,68px); line-height:1; letter-spacing:-.05em; }
.cta-card p { color:#9c9993; margin:0; }
.cta-actions { position:relative; display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end; }

/* Security page */
.security-hero { min-height:850px; }
.security-hero .display { font-size:clamp(50px,6.5vw,94px); }
.security-strip { display:grid; grid-template-columns:repeat(5,1fr); border-block:1px solid var(--line); background:#0f1012; }
.security-strip div { padding:22px 18px; text-align:center; border-right:1px solid var(--line); color:#989690; font-size:11px; font-weight:900; text-transform:uppercase; letter-spacing:.08em; }
.security-strip div:last-child { border-right:0; }
.security-strip span { color:var(--red); margin-right:7px; }

.product-story { padding:120px 0; }
.story-intro { max-width:900px; margin-bottom:58px; }
.story-row { display:grid; grid-template-columns:.7fr 1.3fr; gap:50px; align-items:center; margin:90px 0; }
.story-row.reverse { grid-template-columns:1.3fr .7fr; }
.story-row.reverse .story-copy { order:2; }
.story-row.reverse .story-visual { order:1; }
.story-copy .story-no { color:var(--red); font-size:11px; font-weight:950; letter-spacing:.16em; }
.story-copy h3 { font-size:clamp(34px,4vw,58px); letter-spacing:-.045em; line-height:1.03; margin:15px 0; }
.story-copy p { color:#999791; line-height:1.75; }
.story-copy ul { list-style:none; padding:0; margin:24px 0 0; display:grid; gap:11px; }
.story-copy li { color:#c0bdb7; font-size:13px; display:flex; align-items:center; gap:10px; }
.story-copy li::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--red); }
.story-visual { position:relative; min-width:0; }
.story-visual.duo { display:grid; grid-template-columns:1fr 1fr; gap:14px; align-items:end; }
.story-visual.duo .screen-frame:nth-child(2) { transform:translateY(40px); }
.story-visual.stack { padding-right:55px; padding-bottom:70px; }
.story-visual.stack .screen-frame:last-child { position:absolute; width:58%; right:0; bottom:0; box-shadow:0 30px 80px rgba(0,0,0,.55); }
.story-visual.trio { display:grid; grid-template-columns:1.15fr .85fr; gap:14px; }
.story-visual.trio .side-col { display:grid; gap:14px; }
.story-visual .frame-label { position:absolute; z-index:4; top:17px; left:17px; padding:7px 9px; border-radius:999px; background:rgba(10,10,11,.75); backdrop-filter:blur(10px); font-size:9px; font-weight:900; text-transform:uppercase; letter-spacing:.1em; }

.workflow { background:var(--soft); color:#111; padding:110px 0; overflow:hidden; }
.workflow .section-tag { color:#6e6a63; }
.workflow-track { position:relative; margin-top:60px; display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.workflow-track::before { content:""; position:absolute; left:8%; right:8%; top:24px; height:1px; background:#c9c2b7; }
.workflow-step { position:relative; z-index:2; padding:0 22px; }
.workflow-dot { width:49px; height:49px; border-radius:50%; display:grid; place-items:center; margin-bottom:28px; background:#111; color:white; border:7px solid var(--soft); box-shadow:0 0 0 1px #c9c2b7; transition:background .3s ease, transform .3s ease; }
.workflow-step:hover .workflow-dot { background:var(--red); transform:scale(1.08); }
.workflow-step h3 { margin:0 0 10px; font-size:20px; }
.workflow-step p { color:#6d6962; line-height:1.65; font-size:14px; }

.command-cinema { padding:120px 0; background:#080809; overflow:hidden; }
.command-cinema .cinema-head { display:flex; justify-content:space-between; align-items:end; gap:35px; margin-bottom:38px; }
.command-cinema .cinema-head p { max-width:520px; color:#8f8d88; line-height:1.75; }
.command-screen { position:relative; width:min(1500px,calc(100% - 28px)); margin:auto; border:1px solid var(--line); border-radius:28px; padding:10px; background:#111214; box-shadow:0 50px 130px rgba(0,0,0,.55); overflow:hidden; }
.command-screen::before { content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at var(--mx,70%) var(--my,30%),rgba(230,40,47,.09),transparent 24%); z-index:3; }
.command-screen img { width:100%; border-radius:19px; }
.command-pills { display:flex; justify-content:center; flex-wrap:wrap; gap:8px; margin-top:24px; }
.command-pills span { border:1px solid var(--line); background:#111214; color:#8f8d88; border-radius:999px; padding:9px 12px; font-size:10px; font-weight:900; text-transform:uppercase; letter-spacing:.1em; }

.access-section { background:#101113; }
.access-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:55px; align-items:center; }
.access-copy h2 { font-size:clamp(38px,5vw,70px); line-height:1; letter-spacing:-.05em; margin:18px 0; }
.access-copy p { color:#9c9993; line-height:1.75; }

/* Lightbox */
.lightbox { position:fixed; inset:0; z-index:5000; display:none; place-items:center; padding:28px; background:rgba(0,0,0,.91); backdrop-filter:blur(12px); }
.lightbox.is-open { display:grid; animation:fadeIn .25s ease; }
.lightbox img { max-width:min(1500px,94vw); max-height:88vh; border-radius:18px; box-shadow:0 40px 100px rgba(0,0,0,.6); }
.lightbox-close { position:absolute; right:22px; top:22px; width:46px; height:46px; border-radius:50%; border:1px solid rgba(255,255,255,.2); background:#151619; color:white; cursor:pointer; font-size:24px; }
@keyframes fadeIn { from { opacity:0; } }
[data-lightbox] { cursor:zoom-in; }

/* Footer */
.site-footer { border-top:1px solid var(--line); padding:38px 0 44px; background:#09090a; }
.footer-grid { display:grid; grid-template-columns:1fr auto; gap:40px; align-items:center; }
.footer-brand { display:flex; align-items:center; gap:14px; }
.footer-brand img { width:42px; height:42px; object-fit:contain; }
.footer-brand strong { display:block; font-size:14px; letter-spacing:.08em; }
.footer-brand small { color:#6e6c67; }
.footer-links { display:flex; gap:22px; color:#85837e; font-size:12px; font-weight:800; }
.footer-links a:hover { color:white; }
.footer-bottom { margin-top:28px; padding-top:22px; border-top:1px solid var(--line); display:flex; justify-content:space-between; gap:20px; color:#5e5c58; font-size:11px; }

/* Arabic */
html[dir="rtl"] .eyebrow::before, html[dir="rtl"] .section-tag::before { order:2; }
html[dir="rtl"] .brand-division { border-left:0; border-right:1px solid var(--line-strong); padding-left:0; padding-right:11px; }
html[dir="rtl"] .story-copy li::before { order:2; }
html[dir="rtl"] .map-caption { text-align:left; }
html[dir="rtl"] .hero-screen-wrap { left:auto; right:-2%; transform:rotateY(8deg) rotateX(3deg); }

/* Responsive */
@media (max-width: 1100px) {
  .nav-links { display:none; position:fixed; inset:82px 18px auto; padding:24px; background:rgba(15,16,18,.97); border:1px solid var(--line); border-radius:20px; flex-direction:column; align-items:stretch; gap:4px; box-shadow:var(--shadow); }
  .nav-links.is-open { display:flex; }
  .nav-links a { padding:14px; border-bottom:1px solid var(--line); }
  .nav-links a:last-child { border-bottom:0; }
  .menu-btn { display:block; }
  .hero-layout { grid-template-columns:1fr; }
  .hero { min-height:unset; }
  .hero-copy { max-width:900px; }
  .hero-stage { min-height:520px; width:min(900px,100%); margin:auto; }
  .hero-screen-wrap { width:100%; left:0; }
  .work-grid, .heading-split, .about-grid, .command-feature, .ceo-grid, .command-feature, .access-grid { grid-template-columns:1fr; }
  .work-stack { grid-template-columns:1fr 1fr; grid-template-rows:none; }
  .approach-grid { grid-template-columns:repeat(2,1fr); }
  .approach:nth-child(2) { border-right:0; }
  .approach:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .story-row, .story-row.reverse { grid-template-columns:1fr; gap:35px; }
  .story-row.reverse .story-copy, .story-row.reverse .story-visual { order:initial; }
  .workflow-track { grid-template-columns:repeat(2,1fr); gap:40px 0; }
  .workflow-track::before { display:none; }
  .security-strip { grid-template-columns:repeat(3,1fr); }
  .security-strip div:nth-child(3) { border-right:0; }
  .security-strip div:nth-child(-n+3) { border-bottom:1px solid var(--line); }
  .cta-card { grid-template-columns:1fr; }
  .cta-actions { justify-content:flex-start; }
}

@media (max-width: 720px) {
  .container { width:min(100% - 30px,var(--max)); }
  .site-header .nav { min-height:72px; }
  .brand img { width:38px; height:38px; }
  .brand-name { font-size:17px; }
  .brand-division { display:none; }
  .lang { display:none; }
  .nav-links { inset:72px 12px auto; }
  .hero { padding:124px 0 58px; }
  .display { font-size:clamp(45px,15vw,72px); }
  .lead { font-size:16px; }
  .hero-stage { min-height:330px; margin-top:25px; }
  .hero-screen-wrap { top:25px; transform:none !important; }
  .float-chip { display:none; }
  .hero-proof { gap:12px 18px; }
  .section, .product-story { padding:82px 0; }
  .heading-split { margin-bottom:36px; gap:20px; }
  .section-title { font-size:clamp(36px,12vw,56px); }
  .work-grid, .work-stack { grid-template-columns:1fr; }
  .work-card.primary, .work-card { min-height:420px; padding:25px; }
  .small-work { min-height:300px; }
  .about-point { grid-template-columns:36px 1fr; padding:22px 18px; }
  .approach-grid { grid-template-columns:1fr; }
  .approach { border-right:0; border-bottom:1px solid var(--line); }
  .approach:last-child { border-bottom:0; }
  .approach h3 { margin-top:24px; }
  .ceo-grid { gap:30px; }
  .cta-card { padding:35px 24px; }
  .story-row { margin:65px 0; }
  .story-visual.duo, .story-visual.trio { grid-template-columns:1fr; }
  .story-visual.duo .screen-frame:nth-child(2) { transform:none; }
  .story-visual.stack { padding:0; display:grid; gap:14px; }
  .story-visual.stack .screen-frame:last-child { position:relative; width:100%; right:auto; bottom:auto; }
  .workflow-track { grid-template-columns:1fr; }
  .workflow-step { padding:0; display:grid; grid-template-columns:55px 1fr; column-gap:14px; }
  .workflow-step .workflow-dot { grid-row:1 / 3; }
  .workflow-step h3 { margin-top:8px; }
  .security-strip { grid-template-columns:1fr 1fr; }
  .security-strip div { border-bottom:1px solid var(--line); }
  .security-strip div:nth-child(odd) { border-right:1px solid var(--line); }
  .security-strip div:nth-child(even) { border-right:0; }
  .command-cinema .cinema-head { align-items:start; flex-direction:column; }
  .command-screen { width:calc(100% - 20px); border-radius:18px; padding:6px; }
  .command-screen img { border-radius:12px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-links { flex-wrap:wrap; }
  .footer-bottom { flex-direction:column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.001ms !important; animation-iteration-count:1 !important; scroll-behavior:auto !important; transition-duration:.001ms !important; }
  .reveal { opacity:1; transform:none; }
  .hero-screen-wrap { transform:none !important; }
}


/* =========================================================
   SECURITY TYPOGRAPHY READABILITY PASS
   Layout/colors untouched; simpler system sans typography.
   ========================================================= */
body[data-page="security"]{
  font-family:"Segoe UI",Arial,Helvetica,sans-serif;
  font-variant-ligatures:common-ligatures;
  text-rendering:optimizeLegibility;
}
body[data-page="security"] .display,
body[data-page="security"] .section-title,
body[data-page="security"] .story-copy h3,
body[data-page="security"] .access-copy h2,
body[data-page="security"] .command-cinema h2,
body[data-page="security"] .cta-card h2{
  font-family:"Segoe UI",Arial,Helvetica,sans-serif;
  font-weight:800;
  letter-spacing:-.035em;
}
body[data-page="security"] .display{line-height:.98}
body[data-page="security"] .section-title,
body[data-page="security"] .story-copy h3{line-height:1.08}
body[data-page="security"] .lead,
body[data-page="security"] .section-copy,
body[data-page="security"] .story-copy p,
body[data-page="security"] .story-copy li,
body[data-page="security"] .workflow-step p,
body[data-page="security"] .command-cinema .cinema-head p,
body[data-page="security"] .access-copy p{letter-spacing:0;line-height:1.72}
body[data-page="security"] .nav-links,
body[data-page="security"] .btn,
body[data-page="security"] .eyebrow,
body[data-page="security"] .section-tag{font-family:"Segoe UI",Arial,Helvetica,sans-serif}

/* =========================================================
   V4 — SECURITY TYPOGRAPHY SIMPLIFICATION
   Intentionally plain, highly readable sans-serif.
   ========================================================= */
body[data-page="security"],
body[data-page="security"] button,
body[data-page="security"] input,
body[data-page="security"] textarea,
body[data-page="security"] select{
  font-family:Arial,Helvetica,sans-serif!important;
  font-weight:400;
  letter-spacing:normal;
}
body[data-page="security"] h1,
body[data-page="security"] h2,
body[data-page="security"] h3,
body[data-page="security"] h4,
body[data-page="security"] .display,
body[data-page="security"] .section-title,
body[data-page="security"] .story-copy h3,
body[data-page="security"] .access-copy h2,
body[data-page="security"] .command-cinema h2,
body[data-page="security"] .cta-card h2{
  font-family:Arial,Helvetica,sans-serif!important;
  font-weight:700!important;
  letter-spacing:-.02em!important;
}
body[data-page="security"] .display{font-weight:700!important;letter-spacing:-.035em!important;line-height:.98}
body[data-page="security"] .eyebrow,
body[data-page="security"] .section-tag,
body[data-page="security"] .nav-links,
body[data-page="security"] .btn{
  font-family:Arial,Helvetica,sans-serif!important;
  font-weight:600!important;
  letter-spacing:.01em!important;
}
body[data-page="security"] .lead,
body[data-page="security"] .section-copy,
body[data-page="security"] p,
body[data-page="security"] li{
  font-weight:400;
  letter-spacing:normal!important;
}


/* =========================================================
   SEO V2 — SECURITY MOBILE HARDENING
   Locks the page to vertical scrolling and exposes languages
   from the mobile navigation.
   ========================================================= */
.mobile-lang{display:none}

html,
body[data-page="security"]{
  max-width:100%;
  overflow-x:clip;
  overscroll-behavior-x:none;
}
body[data-page="security"]{
  width:100%;
  touch-action:pan-y pinch-zoom;
}
body[data-page="security"] main,
body[data-page="security"] section,
body[data-page="security"] .container,
body[data-page="security"] .hero-layout,
body[data-page="security"] .story-row,
body[data-page="security"] .story-visual,
body[data-page="security"] .screen-frame,
body[data-page="security"] picture,
body[data-page="security"] img{
  max-width:100%;
  min-width:0;
}

@supports not (overflow:clip){
  html,body[data-page="security"]{overflow-x:hidden}
}

@media(max-width:1100px){
  .nav-links .mobile-lang{
    display:flex;
    justify-content:center;
    gap:8px;
    padding:14px 8px 4px;
    margin-top:5px;
    border-top:1px solid var(--line);
  }
  .mobile-lang button{
    min-width:54px;
    min-height:40px;
    border:1px solid var(--line-strong);
    border-radius:999px;
    background:#151619;
    color:#b7b4ae;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
  }
  .mobile-lang button.is-active{background:var(--soft);color:#111;border-color:var(--soft)}
}

@media(max-width:720px){
  body[data-page="security"] .container{width:calc(100% - 24px);max-width:100%}
  body[data-page="security"] .nav{width:100%}
  body[data-page="security"] .hero-screen-wrap{width:100%!important;left:0!important;right:auto!important}
  html[dir="rtl"] body[data-page="security"] .hero-screen-wrap{left:auto!important;right:0!important}
  body[data-page="security"] .story-visual,
  body[data-page="security"] .story-visual.duo,
  body[data-page="security"] .story-visual.trio,
  body[data-page="security"] .story-visual.stack,
  body[data-page="security"] .side-col{width:100%;max-width:100%;min-width:0}
  body[data-page="security"] .screen-frame{width:100%;overflow:hidden}
  body[data-page="security"] .command-screen{width:calc(100% - 16px);max-width:100%}
  body[data-page="security"] .lightbox{max-width:100%;overflow:hidden}
}
