:root {
  --paper: #f7f8f4;
  --white: #ffffff;
  --ink: #111510;
  --muted: #666d66;
  --line: #dfe3dc;
  --lime: #c8ff3d;
  --blue: #2457ff;
  --blue-light: #a8beff;
  --night: #11150f;
  --content: min(1280px, calc(100vw - 80px));
  --radius: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 66px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Assistant", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

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

button, select { cursor: pointer; }

img, svg { display: block; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  inset: 10px auto auto 10px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 0 max(40px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, height 0.3s ease;
}

.site-header.scrolled {
  height: 66px;
  background: rgba(247, 248, 244, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.brand-mark { width: 29px; height: 29px; }
.brand-mark path { fill: none; stroke: currentColor; stroke-width: 1.6; }
.brand-dot { color: var(--blue); }

.desktop-nav { display: flex; align-items: center; gap: 34px; }

.desktop-nav a,
.language-link {
  position: relative;
  font-size: 12px;
  font-weight: 600;
}

.desktop-nav a::after,
.language-link::after {
  content: "";
  position: absolute;
  inset: auto 0 -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.language-link:hover::after { transform: scaleX(1); transform-origin: left; }

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-small { min-height: 39px; padding: 0 18px; font-size: 11px; }
.button-dark { background: var(--ink); color: white; }
.button-primary { background: var(--blue); color: white; }
.button-primary:hover { background: #1747e7; }
.button-light { background: var(--lime); color: var(--night); }

.menu-toggle,
.mobile-nav { display: none; }

.section-shell { width: var(--content); margin-inline: auto; }

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  max-height: 980px;
  padding-top: 76px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 76px 0 60px;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
  mask-image: linear-gradient(to right, black, transparent 48%);
}

.hero::after {
  width: 1px;
  height: 70%;
  left: 52%;
  top: 15%;
  background: var(--line);
}

.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 87, 255, 0.11), rgba(36, 87, 255, 0) 68%);
  pointer-events: none;
}

.hero-copy { position: relative; z-index: 2; padding-bottom: 20px; }

.eyebrow,
.section-label {
  margin: 0 0 28px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 10px; }

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(36, 87, 255, 0.1);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(58px, 6.2vw, 98px);
  line-height: 0.98;
  letter-spacing: -0.073em;
  font-weight: 500;
}

h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-intro {
  max-width: 600px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 34px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-block: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.hero-system {
  position: relative;
  z-index: 2;
  height: min(62vh, 600px);
  min-height: 500px;
  border: 1px solid #cbd0c8;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 35px 100px rgba(25, 35, 20, 0.08);
  backdrop-filter: blur(8px);
}

.system-topline,
.system-footer {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 18px;
  border-bottom: 1px solid var(--line);
  color: #6b736a;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.live-label { display: flex; align-items: center; gap: 7px; }
.live-label i { width: 5px; height: 5px; border-radius: 50%; background: #49b83e; animation: blink 1.8s infinite; }

.system-stage {
  position: relative;
  height: calc(100% - 119px);
  overflow: hidden;
  background-image: radial-gradient(#bfc5bc 0.7px, transparent 0.7px);
  background-size: 15px 15px;
}

.system-stage::before,
.system-stage::after {
  content: "";
  position: absolute;
  background: var(--line);
}

.system-stage::before { width: 1px; height: 100%; left: 50%; }
.system-stage::after { height: 1px; width: 100%; top: 50%; }

.orbit {
  position: absolute;
  top: 50%; left: 50%;
  border: 1px solid rgba(36, 87, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one { width: 230px; height: 230px; }
.orbit-two { width: 350px; height: 350px; border-style: dashed; animation: rotate 30s linear infinite; }

.core-pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 130px; height: 130px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(36, 87, 255, 0.08);
  animation: pulse 3s ease-out infinite;
}

.core-node {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  box-shadow: 0 12px 40px rgba(36, 87, 255, 0.35);
}

.core-node svg { width: 30px; }
.core-node path { fill: none; stroke: currentColor; stroke-width: 1.8; }
.core-node span { font: 500 8px/1 "DM Mono", monospace; letter-spacing: 0.14em; }

.system-node {
  position: absolute;
  width: 124px;
  padding: 12px;
  border: 1px solid #d6dad3;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 25px rgba(20, 27, 17, 0.06);
}

.system-node i { display: block; width: 5px; height: 5px; margin-bottom: 9px; border-radius: 50%; background: var(--blue); }
.system-node span { display: block; margin-bottom: 3px; font: 500 8px/1 "DM Mono", monospace; letter-spacing: 0.12em; color: var(--blue); }
.system-node b { display: block; font-size: 9px; font-weight: 600; white-space: nowrap; }
.node-web { left: 7%; top: 12%; }
.node-data { right: 7%; top: 12%; }
.node-auto { left: 7%; bottom: 10%; }
.node-agent { right: 7%; bottom: 10%; }

.system-footer {
  height: 65px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.system-footer > div:not(.flow-line) { display: grid; gap: 3px; }
.system-footer span { color: #858c84; font-size: 8px; }
.system-footer strong { color: var(--ink); font: 600 10px/1.2 "Manrope", sans-serif; }
.flow-line { position: relative; flex: 1; height: 1px; margin-inline: 18px; background: #cad0c7; }
.flow-line::after { content: ""; position: absolute; right: 0; top: -2px; width: 5px; height: 5px; border-top: 1px solid #8e968c; border-right: 1px solid #8e968c; transform: rotate(45deg); }
.flow-line i { position: absolute; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); animation: flow 3s linear infinite; }

.hero-footnote {
  position: absolute;
  inset: auto 0 18px;
  display: flex;
  justify-content: space-between;
  color: #737a72;
  font: 500 9px/1 "DM Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-hint { display: flex; align-items: center; gap: 10px; }
.scroll-hint i { width: 22px; height: 1px; background: currentColor; }

.statement {
  padding-block: 150px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement h2 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.12;
  letter-spacing: -0.055em;
  font-weight: 500;
}

.statement h2 span,
.about h2 span { color: #a2a8a0; }

.services,
.process,
.faq { padding-block: 150px; }

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 76px;
}

.section-heading h2,
.solutions h2,
.about h2,
.faq h2,
.contact h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.section-heading > p,
.faq-intro > p:last-child {
  max-width: 430px;
  margin: 0 0 6px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 540px;
  padding: 25px 28px 30px;
  border-right: 1px solid var(--line);
  overflow: hidden;
  transition: background 0.35s ease, transform 0.35s ease;
}

.service-card:last-child { border-right: 0; }
.service-card::after { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.service-card:hover { background: var(--white); transform: translateY(-6px); }
.service-card:hover::after { transform: scaleX(1); }

.service-number { color: #838b82; font: 500 9px/1 "DM Mono", monospace; }

.service-icon {
  position: relative;
  height: 150px;
  margin-block: 45px 42px;
  border: 1px solid var(--line);
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 24px 24px;
}

.service-icon-web { display: grid; place-content: center; }
.service-icon-web span { display: block; width: 90px; height: 5px; margin: 5px; background: #a7ada5; }
.service-icon-web span:nth-child(1) { width: 46px; background: var(--blue); }
.service-icon-web span:nth-child(3) { width: 68px; }

.service-icon-flow i { position: absolute; width: 10px; height: 10px; border: 2px solid var(--blue); border-radius: 50%; background: white; }
.service-icon-flow i:nth-child(1) { left: 25%; top: 28%; }
.service-icon-flow i:nth-child(2) { right: 25%; top: 50%; }
.service-icon-flow i:nth-child(3) { left: 28%; bottom: 20%; }
.service-icon-flow span { position: absolute; left: 28%; top: 31%; width: 46%; height: 45%; border-top: 1px dashed #8a9288; border-right: 1px dashed #8a9288; transform: skewY(25deg); }

.service-icon-agent { display: grid; place-content: center; }
.service-icon-agent i { width: 66px; height: 66px; border: 1px solid var(--blue); border-radius: 50%; animation: pulseSoft 2.6s infinite; }
.service-icon-agent span { position: absolute; width: 12px; height: 12px; left: calc(50% - 6px); top: calc(50% - 6px); border-radius: 50%; background: var(--blue); }
.service-icon-agent b { position: absolute; width: 2px; height: 30px; left: calc(50% - 1px); top: 11px; background: var(--blue); }

.service-icon-code { display: grid; place-content: center; }
.service-icon-code span { color: var(--blue); font: 500 24px/1 "DM Mono", monospace; }

.service-card h3 { margin-bottom: 14px; font-size: 21px; letter-spacing: -0.035em; }
.service-card p { min-height: 104px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.service-card ul { margin: 25px 0 0; padding: 20px 0 0; list-style: none; border-top: 1px solid var(--line); }
.service-card li { position: relative; padding: 4px 0 4px 15px; font: 500 10px/1.5 "DM Mono", monospace; color: #4e554d; }
.service-card li::before { content: "+"; position: absolute; left: 0; color: var(--blue); }

.solutions {
  width: 100%;
  padding: 140px max(40px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
  background: #eef2ff;
  color: var(--ink);
}

.section-label-light { color: var(--blue-light); }
.solutions .section-label-light { color: var(--blue); }
.solutions h2 span { color: var(--blue); }
.solutions-copy > p:not(.section-label) { max-width: 450px; margin: 28px 0 38px; color: var(--muted); }
.solutions .button-light { background: var(--blue); color: white; }

.solution-list { border-top: 1px solid #cbd5f0; }

.solution-row {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 15px;
  min-height: 130px;
  border-bottom: 1px solid #cbd5f0;
  transition: padding 0.3s ease, background 0.3s ease;
}

.solution-row:hover { padding-inline: 14px; background: rgba(36, 87, 255, 0.055); }
.solution-row > span { color: var(--blue); font: 500 9px/1 "DM Mono", monospace; }
.solution-row h3 { max-width: 570px; margin: 0; font-size: clamp(19px, 1.7vw, 25px); line-height: 1.4; font-weight: 500; letter-spacing: -0.03em; }
.solution-row b { color: #66708b; font: 400 8px/1 "DM Mono", monospace; letter-spacing: 0.1em; text-transform: uppercase; }

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid::before { content: ""; position: absolute; top: 55px; left: 0; width: 100%; height: 1px; background: var(--line); }
.process-step { position: relative; padding-right: 48px; }
.process-step > span { color: #838b82; font: 500 9px/1 "DM Mono", monospace; }
.process-dot { position: relative; z-index: 2; width: 11px; height: 11px; margin: 39px 0 34px; border: 3px solid var(--paper); border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
.process-step h3 { margin-bottom: 12px; font-size: 24px; letter-spacing: -0.04em; }
.process-step p { max-width: 250px; color: var(--muted); font-size: 13px; line-height: 1.75; }

.about {
  padding: 105px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
  background: white;
  border: 1px solid var(--line);
}

.founder-card { align-self: stretch; display: flex; flex-direction: column; justify-content: flex-start; }
.founder-photo { position: relative; min-height: 440px; overflow: hidden; background: #edf0e9; }
.founder-photo::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(17, 21, 16, .08); pointer-events: none; }
.founder-photo img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; object-position: 50% 34%; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.founder-card:hover .founder-photo img { transform: scale(1.025); }
.founder-meta { display: grid; gap: 3px; margin-top: 22px; }
.founder-meta strong { font-size: 15px; }
.founder-meta strong a { display: inline-flex; align-items: center; gap: 8px; }
.founder-meta strong a span { color: var(--blue); font-size: 11px; transition: transform .2s ease; }
.founder-meta strong a:hover span { transform: translate(3px, -3px); }
.founder-meta span { color: var(--muted); font: 400 9px/1.5 "DM Mono", monospace; text-transform: uppercase; letter-spacing: .08em; }

.about-copy { align-self: center; }
.about-copy h2 { margin-bottom: 40px; }
.about-lead { color: var(--ink) !important; font-size: 20px !important; line-height: 1.6 !important; }
.about-copy > p:not(.section-label) { max-width: 640px; color: var(--muted); }
.about-points { margin-top: 45px; border-top: 1px solid var(--line); }
.about-points > div { display: grid; grid-template-columns: 55px 1fr; align-items: center; min-height: 66px; border-bottom: 1px solid var(--line); }
.about-points span { color: var(--blue); font: 500 9px/1 "DM Mono", monospace; }
.about-points strong { font-size: 13px; }

.faq { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 110px; }
.faq-intro > p:last-child { margin-top: 30px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 48px 25px 0; list-style: none; font-size: 16px; font-weight: 600; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span::before,
.faq-list summary span::after { content: ""; position: absolute; right: 6px; top: 34px; width: 13px; height: 1px; background: var(--ink); transition: transform .25s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 690px; padding: 0 48px 26px 0; color: var(--muted); font-size: 13px; line-height: 1.8; }

.contact {
  width: 100%;
  padding: 130px max(40px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
  background: var(--blue);
  color: white;
}

.contact h2 span { color: var(--lime); }
.contact-copy > p:not(.section-label) { max-width: 440px; margin: 30px 0 50px; color: #d6dfff; }
.contact-links { border-top: 1px solid rgba(255,255,255,.28); }
.contact-links a { display: grid; grid-template-columns: 85px 1fr auto; align-items: center; min-height: 66px; border-bottom: 1px solid rgba(255,255,255,.28); }
.contact-links small { color: #bdcaff; font: 400 8px/1 "DM Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.contact-links strong { font-size: 12px; font-weight: 600; }
.contact-links a > span { transition: transform .2s ease; }
.contact-links a:hover > span { transform: translate(3px, -3px); }

.form-wrap { padding: 45px; background: var(--paper); color: var(--ink); }
.contact-form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label:not(.radio-label):not(.consent) { display: grid; gap: 8px; }
.contact-form label > span,
.contact-form legend { font: 500 9px/1 "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input:not([type="radio"]):not([type="checkbox"]),
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid #bdc4ba;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  transition: border-color .2s ease;
}

.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--blue) !important; }
.contact-form ::placeholder { color: #929991; }
.contact-form fieldset { display: flex; gap: 20px; margin: 0; padding: 0; border: 0; }
.contact-form legend { margin-bottom: 13px; }
.radio-label,
.consent { display: flex; align-items: center; gap: 8px; color: #5a6258; font-size: 11px; cursor: pointer; }
.radio-label input,
.consent input { accent-color: var(--blue); }
.consent { padding-top: 4px; }
.consent span { font-family: "Manrope", sans-serif !important; font-size: 11px !important; letter-spacing: 0 !important; text-transform: none !important; }
.form-submit { width: 100%; border: 0; margin-top: 5px; }
.form-submit i { margin-left: auto; font-style: normal; }
.form-submit:disabled { cursor: wait; opacity: .65; }
.form-status { min-height: 20px; margin: -8px 0 0; color: #485047; font-size: 11px; }
.form-status.is-error { color: #b91c1c; }
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-footer {
  width: 100%;
  padding: 90px max(40px, calc((100vw - 1280px) / 2)) 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.brand-light .brand-dot { color: var(--blue); }
.footer-brand p { margin: 18px 0 0; color: var(--muted); font-size: 12px; }
.footer-nav { display: grid; grid-template-columns: repeat(2, minmax(100px, 1fr)); gap: 12px 45px; font-size: 11px; }
.footer-nav a:hover { color: var(--blue); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; margin-top: 85px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font: 400 8px/1 "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.founder-link { transition: color .2s ease; }
.founder-link:hover { color: var(--blue); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes rotate { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes pulse { 0% { transform: translate(-50%, -50%) scale(.8); opacity: .8; } 70%,100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; } }
@keyframes pulseSoft { 50% { transform: scale(1.12); opacity: .5; } }
@keyframes flow { from { left: 0; } to { left: 100%; } }
@keyframes blink { 50% { opacity: .3; } }

@media (max-width: 1050px) {
  :root { --content: calc(100vw - 48px); }
  .site-header { padding-inline: 24px; }
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle { display: grid; place-content: center; gap: 6px; width: 38px; height: 38px; padding: 0; border: 1px solid var(--line); background: var(--paper); }
  .menu-toggle span:not(.sr-only) { width: 16px; height: 1px; background: var(--ink); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav { position: fixed; inset: 66px 0 auto; padding: 30px 24px 40px; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; gap: 18px; font-size: 24px; font-weight: 500; }
  .mobile-nav.open { display: flex; }
  .hero { grid-template-columns: 1fr 1fr; gap: 35px; }
  .hero::after { display: none; }
  .hero-system { min-height: 460px; }
  .system-node { width: 106px; padding: 9px; }
  .system-node b { font-size: 8px; }
  .node-web,.node-auto { left: 3%; }
  .node-data,.node-agent { right: 3%; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .solutions,
  .contact { padding-inline: 24px; gap: 60px; }
  .about { padding: 65px; gap: 65px; }
  .faq { gap: 60px; }
}

@media (max-width: 760px) {
  :root { --content: calc(100vw - 32px); }
  .site-header { height: 66px; padding-inline: 16px; }
  .brand { font-size: 17px; }
  .brand-mark { width: 25px; }
  .desktop-cta { display: none; }
  .header-actions { gap: 14px; }
  .language-link { font-size: 11px; }
  .hero { height: auto; min-height: 0; max-height: none; padding-top: 130px; padding-bottom: 75px; grid-template-columns: 1fr; gap: 65px; }
  .hero::before { inset: 66px 0 auto; height: 540px; mask-image: linear-gradient(to bottom, black, transparent); }
  .hero h1 { font-size: clamp(52px, 15vw, 72px); }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-system { width: 100%; height: 520px; min-height: 0; }
  .orbit-two { width: 300px; height: 300px; }
  .orbit-one { width: 200px; height: 200px; }
  .system-node { width: 100px; }
  .node-web,.node-auto { left: 2%; }
  .node-data,.node-agent { right: 2%; }
  .system-node b { white-space: normal; }
  .hero-footnote { position: static; grid-column: 1; }
  .scroll-hint { display: none; }
  .statement,
  .services,
  .process,
  .faq { padding-block: 95px; }
  .statement h2 { font-size: 39px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .section-heading h2,
  .solutions h2,
  .about h2,
  .faq h2,
  .contact h2 { font-size: 45px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 25px 18px 35px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .service-card p { min-height: 0; }
  .solutions,
  .contact { padding: 95px 16px; grid-template-columns: 1fr; gap: 75px; }
  .solution-row { grid-template-columns: 34px 1fr; min-height: 125px; }
  .solution-row b { grid-column: 2; margin-top: -24px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { width: 1px; height: calc(100% - 60px); top: 42px; left: 5px; }
  .process-step { display: grid; grid-template-columns: 34px 1fr; padding: 0 0 42px; }
  .process-step > span { grid-column: 2; }
  .process-dot { grid-column: 1; grid-row: 1 / span 3; margin: 0; }
  .process-step h3 { grid-column: 2; margin: 12px 0 7px; }
  .process-step p { grid-column: 2; max-width: 100%; }
  .about { width: 100%; padding: 80px 16px; grid-template-columns: 1fr; gap: 75px; border-inline: 0; }
  .founder-card { min-height: 0; }
  .founder-photo,
  .founder-photo img { min-height: 390px; }
  .founder-photo img { object-position: 50% top; }
  .faq { grid-template-columns: 1fr; gap: 55px; }
  .contact-links a { grid-template-columns: 70px 1fr auto; }
  .form-wrap { padding: 30px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 22px; }
  .contact-form fieldset { flex-wrap: wrap; }
  .site-footer { padding: 70px 16px 25px; grid-template-columns: 1fr; gap: 50px; }
  .footer-bottom { margin-top: 25px; flex-direction: column; gap: 12px; }
}

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

html[dir="rtl"] body { font-family: "Assistant", "Manrope", sans-serif; }
html[dir="rtl"] .brand { direction: ltr; }
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .section-label,
html[dir="rtl"] .service-number,
html[dir="rtl"] .process-step > span,
html[dir="rtl"] .about-points span,
html[dir="rtl"] .founder-meta span { font-family: "DM Mono", "Assistant", monospace; }
html[dir="rtl"] .contact-form label > span,
html[dir="rtl"] .contact-form legend { font-family: "Assistant", sans-serif; letter-spacing: .04em; }
html[dir="rtl"] .service-card { border-right: 0; border-left: 1px solid var(--line); }
html[dir="rtl"] .service-card:last-child { border-left: 0; }
html[dir="rtl"] .service-card li { padding: 4px 15px 4px 0; }
html[dir="rtl"] .service-card li::before { left: auto; right: 0; }
html[dir="rtl"] .process-step { padding-right: 0; padding-left: 48px; }
html[dir="rtl"] .faq-list summary { padding: 25px 0 25px 48px; }
html[dir="rtl"] .faq-list summary span::before,
html[dir="rtl"] .faq-list summary span::after { right: auto; left: 6px; }
html[dir="rtl"] .faq-list details p { padding: 0 0 26px 48px; }
html[dir="rtl"] .form-submit i { margin-left: 0; margin-right: auto; }

@media (max-width: 1050px) and (min-width: 761px) {
  html[dir="rtl"] .service-card:nth-child(2) { border-left: 0; }
}

@media (max-width: 760px) {
  html[dir="rtl"] .service-card { border-left: 0; }
  html[dir="rtl"] .process-step { padding-left: 0; }
}
