:root {
  --ink: #0b0c0f;
  --ink-2: #17191f;
  --paper: #f4f5f2;
  --paper-2: #fbfbf8;
  --muted: #626872;
  --line: rgba(11, 12, 15, .12);
  --line-dark: rgba(255,255,255,.13);
  --accent: #5d6dff;
  --accent-2: #4c5cf5;
  --green: #52d489;
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 26px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img, svg { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.mono { font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace; }
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 200; background: var(--ink); color: white; padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244,245,242,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; }
.brand-mark { position: relative; width: 29px; height: 29px; flex: 0 0 auto; }
.brand-mark span, .brand-mark i { position: absolute; display: block; border-radius: 2px; background: var(--ink); }
.brand-mark span:nth-child(1) { left: 0; top: 0; width: 24px; height: 6px; }
.brand-mark span:nth-child(2) { left: 0; top: 0; width: 6px; height: 29px; }
.brand-mark span:nth-child(3) { left: 0; bottom: 0; width: 24px; height: 6px; }
.brand-mark i { right: 0; top: 0; width: 6px; height: 6px; background: var(--accent); }
.brand-word { font-size: 22px; font-weight: 800; letter-spacing: -.055em; }
.brand-word b { color: var(--accent); font-weight: inherit; }
.desktop-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 650; }
.desktop-nav a[aria-current="page"] { color: var(--accent-2); }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 17px; }
.lang-link { font: 600 11px "SFMono-Regular", ui-monospace, monospace; letter-spacing: .04em; }
.menu-toggle { display: none; width: 30px; padding: 6px 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 1.5px; margin: 6px 0; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 78px 0 0;
  z-index: 99;
  background: var(--paper);
  padding: 28px 24px 44px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 26px; font-weight: 720; letter-spacing: -.04em; }
.mobile-menu .mobile-meta { margin-top: 32px; color: var(--muted); font-size: 13px; line-height: 1.65; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: var(--accent-2); }
.button-primary { background: var(--accent); color: #fff; box-shadow: 0 14px 32px rgba(76,92,245,.18); }
.button-primary:hover { background: var(--accent-2); }
.button-small { min-height: 40px; padding-inline: 17px; font-size: 12px; }
.icon { width: 18px; height: 18px; flex: 0 0 auto; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 720; }
.text-link .icon { width: 17px; height: 17px; transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(3px); }

.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font: 600 10px "SFMono-Regular", ui-monospace, monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow { margin-bottom: 24px; }
.status-dot { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(82,212,137,.12); }

.hero {
  padding: 92px 0 86px;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(390px,.95fr);
  align-items: center;
  gap: 64px;
}
.hero > * { min-width: 0; }
.hero h1, .page-hero h1, .section-heading h2, .cta h2 {
  margin: 0;
  font-weight: 730;
  letter-spacing: -.065em;
  line-height: .96;
}
.hero h1 { font-size: clamp(58px, 6.3vw, 88px); }
.hero h1 .soft, .page-hero h1 .soft, .section-heading h2 .soft { color: #747a84; }
.hero-lead {
  max-width: 640px;
  margin: 28px 0 32px;
  color: #505660;
  font-size: 17px;
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }

.hero-system {
  width: 100%;
  min-width: 0;
  max-width: 520px;
  justify-self: end;
  overflow: hidden;
  border-radius: 30px;
  background: var(--ink);
  color: #fff;
  padding: 22px;
  box-shadow: 0 30px 70px rgba(11,12,15,.15);
  position: relative;
}
.hero-system::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(#000,transparent 86%);
}
.system-top, .system-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 18px; color: #989da8; font: 500 9px "SFMono-Regular", ui-monospace, monospace; letter-spacing: .06em; text-transform: uppercase; }
.system-top span:first-child, .system-status { display: inline-flex; align-items: center; gap: 7px; }
.system-top i, .system-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.system-main { position: relative; z-index: 1; padding: 52px 10px 38px; }
.system-logo { position: relative; width: 64px; height: 64px; margin-bottom: 34px; }
.system-logo b, .system-logo i { position: absolute; display: block; border-radius: 3px; }
.system-logo b { background: #fff; }
.system-logo b:nth-child(1) { left:0;top:0;width:52px;height:11px; }
.system-logo b:nth-child(2) { left:0;top:0;width:11px;height:64px; }
.system-logo b:nth-child(3) { left:0;bottom:0;width:52px;height:11px; }
.system-logo i { right:0;top:0;width:11px;height:11px;background:var(--accent); }
.system-label { margin: 0 0 10px; color: #868b96; font: 500 9px "SFMono-Regular",ui-monospace,monospace; letter-spacing:.08em; }
.system-title { margin:0; max-width: 410px; font-size: clamp(34px,3.5vw,52px); line-height:1; letter-spacing:-.055em; font-weight:650; }
.system-steps { position:relative;z-index:1;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;margin-bottom:28px; }
.system-step { border-top:1px solid var(--line-dark);padding-top:10px;min-width:0; }
.system-step span { display:block;color:#676c77;font:500 8px "SFMono-Regular",ui-monospace,monospace;margin-bottom:7px; }
.system-step b { display:block;color:#d5d8df;font-size:9px;font-weight:650;white-space:nowrap;overflow:hidden;text-overflow:ellipsis; }
.system-bottom .system-status { color:#78e7a1; }

.quick-strip { border-block: 1px solid var(--line); }
.quick-strip-inner { min-height: 68px; display:flex;align-items:center;justify-content:space-between;gap:18px;color:#555b64;font:600 10px "SFMono-Regular",ui-monospace,monospace;letter-spacing:.08em;text-transform:uppercase; }
.quick-strip-inner i { width:3px;height:3px;border-radius:50%;background:var(--accent);flex:0 0 auto; }

.section { padding: 112px 0; }
.section-heading { display:grid;grid-template-columns:.52fr 1.48fr;gap:48px;align-items:start;margin-bottom:56px; }
.section-heading .section-kicker { color:#797f89; margin-top:7px; }
.section-heading h2 { font-size: clamp(46px,5vw,70px); }
.section-heading p { max-width:650px;margin:22px 0 0;color:var(--muted);font-size:15px;line-height:1.7; }

.cards { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px; }
.card { min-width:0; min-height:330px; display:flex; flex-direction:column; padding:28px; border-radius:var(--radius); background:var(--paper-2); }
.card-index { color:#888d96;font:600 9px "SFMono-Regular",ui-monospace,monospace;letter-spacing:.08em; }
.card-icon { width:46px;height:46px;margin:42px 0 30px;color:var(--ink); }
.card h3 { margin:0 0 12px;font-size:23px;line-height:1.18;letter-spacing:-.035em; }
.card p { margin:0;color:var(--muted);font-size:13px;line-height:1.65; }
.card .text-link { margin-top:auto;padding-top:28px;color:var(--accent-2); }

.process-preview { background:var(--ink);color:#fff; }
.process-preview .section-heading p { color:#989da7; }
.process-preview .section-kicker { color:#777d88; }
.process-preview .section-heading h2 .soft { color:#747985; }
.process-grid { display:grid;grid-template-columns:repeat(4,minmax(0,1fr));border-top:1px solid var(--line-dark); }
.process-item { min-width:0;padding:26px 22px 28px 0;border-bottom:1px solid var(--line-dark); }
.process-item + .process-item { padding-left:22px;border-left:1px solid var(--line-dark); }
.process-item .process-icon { width:26px;height:26px;color:var(--accent);margin-bottom:52px; }
.process-item span { display:block;color:#707681;font:500 9px "SFMono-Regular",ui-monospace,monospace;margin-bottom:12px; }
.process-item h3 { margin:0 0 12px;font-size:22px;letter-spacing:-.035em; }
.process-item p { margin:0;color:#989da7;font-size:12.5px;line-height:1.6; }

.principles { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));border-top:1px solid var(--line);border-left:1px solid var(--line); }
.principle { min-height:220px;padding:28px;border-right:1px solid var(--line);border-bottom:1px solid var(--line); }
.principle span { color:var(--accent-2);font:600 9px "SFMono-Regular",ui-monospace,monospace; }
.principle h3 { margin:62px 0 10px;font-size:24px;letter-spacing:-.035em; }
.principle p { margin:0;max-width:500px;color:var(--muted);font-size:13px;line-height:1.65; }

.cta { padding:100px 0;background:var(--accent);color:#fff; }
.cta .section-kicker { color:rgba(255,255,255,.65); }
.cta h2 { max-width:970px;margin:28px 0 34px;font-size:clamp(48px,6vw,82px); }
.cta p { max-width:650px;margin:0 0 38px;color:rgba(255,255,255,.8);font-size:15px;line-height:1.7; }
.cta-link { display:flex;align-items:center;justify-content:space-between;gap:20px;padding:22px 0;border-block:1px solid rgba(255,255,255,.38);font-size:clamp(26px,4.3vw,54px);font-weight:650;letter-spacing:-.05em; }
.cta-link .icon { width:38px;height:38px;transition:transform .2s ease; }
.cta-link:hover .icon { transform:translate(4px,-4px); }

.page-hero { padding:90px 0 72px; }
.page-hero .eyebrow { color:#575d67; }
.page-hero h1 { max-width:920px;font-size:clamp(54px,6vw,84px); }
.page-hero p { max-width:680px;margin:28px 0 0;color:var(--muted);font-size:17px;line-height:1.7; }
.page-grid { display:grid;grid-template-columns:.62fr 1.38fr;gap:64px;padding-bottom:112px; }
.page-aside { align-self:start;position:sticky;top:110px; }
.page-aside p { margin:0;color:#858a93;font:600 10px "SFMono-Regular",ui-monospace,monospace;letter-spacing:.08em;text-transform:uppercase; }
.content-stack { border-top:1px solid var(--line); }
.content-block { padding:42px 0;border-bottom:1px solid var(--line); }
.content-block .block-head { display:flex;align-items:flex-start;gap:18px;margin-bottom:18px; }
.content-block .block-icon { width:28px;height:28px;color:var(--accent-2);flex:0 0 auto;margin-top:3px; }
.content-block h2 { margin:0;font-size:34px;letter-spacing:-.045em;line-height:1.08; }
.content-block p { max-width:690px;margin:0;color:var(--muted);font-size:14px;line-height:1.75; }
.content-block ul { max-width:690px;margin:22px 0 0;padding:0;list-style:none;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 24px; }
.content-block li { position:relative;padding-left:16px;color:#484e57;font-size:13px;line-height:1.5; }
.content-block li::before { content:"";position:absolute;left:0;top:.62em;width:5px;height:5px;border-radius:50%;background:var(--accent); }

.contact-grid { display:grid;grid-template-columns:1fr 1fr;gap:16px;padding-bottom:112px; }
.contact-card { padding:34px;border-radius:var(--radius);background:var(--paper-2);min-height:260px;display:flex;flex-direction:column; }
.contact-card span { color:#858a93;font:600 9px "SFMono-Regular",ui-monospace,monospace;text-transform:uppercase;letter-spacing:.08em; }
.contact-card .block-icon { width:34px;height:34px;color:var(--accent-2);margin-top:36px; }
.contact-card h2 { margin:24px 0 14px;font-size:28px;letter-spacing:-.04em; }
.contact-card p { margin:0;color:var(--muted);font-size:13px;line-height:1.65; }
.contact-card a { margin-top:auto;padding-top:28px;color:var(--accent-2);font-weight:700;font-size:16px; }

.footer { background:var(--ink);color:#fff;padding:30px 0; }
.footer-inner { min-height:74px;display:grid;grid-template-columns:1fr auto auto;align-items:center;gap:34px; }
.footer .brand-mark span { background:#fff; }
.footer .brand-word { color:#fff; }
.footer p { margin:0;color:#858a94;font-size:10px; }
.footer-links { display:flex;gap:22px;color:#a0a4ac;font-size:11px; }

.reveal { opacity:0;transform:translateY(14px);transition:opacity .6s ease,transform .6s ease; }
.reveal.visible { opacity:1;transform:none; }

@media (max-width: 920px) {
  :root { --shell:min(760px,calc(100vw - 36px)); }
  .nav { grid-template-columns:1fr auto; }
  .desktop-nav,.nav-actions .button-small { display:none; }
  .menu-toggle { display:block; }
  .hero { grid-template-columns:1fr;gap:48px;padding-top:72px; }
  .hero-system { justify-self:start;max-width:620px; }
  .section-heading,.page-grid { grid-template-columns:1fr;gap:26px; }
  .page-aside { position:static; }
  .cards { grid-template-columns:1fr; }
  .card { min-height:290px; }
  .process-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .process-item:nth-child(3) { border-left:0; }
  .principles { grid-template-columns:1fr 1fr; }
  .contact-grid { grid-template-columns:1fr; }
}
@media (max-width: 600px) {
  :root { --shell:calc(100vw - 32px); --radius:22px; }
  .nav { height:68px; }
  .brand-mark { width:27px;height:27px; }
  .brand-mark span:nth-child(1),.brand-mark span:nth-child(3){width:22px;height:5.5px}
  .brand-mark span:nth-child(2){width:5.5px;height:27px}
  .brand-mark i{width:5.5px;height:5.5px}
  .brand-word { font-size:21px; }
  .mobile-menu { inset:68px 0 0;padding-inline:16px; }
  .nav-actions { gap:14px; }
  .hero { padding:56px 0 64px;gap:38px; }
  .eyebrow { margin-bottom:20px;font-size:9px;letter-spacing:.09em; }
  .hero h1 { font-size:clamp(44px,12.5vw,58px);letter-spacing:-.06em;line-height:.98; }
  .hero h1 br { display:none; }
  .hero h1 .soft { display:block;margin-top:4px; }
  .hero-lead { margin:24px 0 28px;font-size:15px;line-height:1.65; }
  .hero-actions { gap:15px; }
  .hero-actions .button { width:auto;min-height:48px;padding:0 18px; }
  .hero-system { max-width:100%;border-radius:24px;padding:18px;box-shadow:0 20px 48px rgba(11,12,15,.13); }
  .system-top { font-size:8px; }
  .system-top span:last-child { display:none; }
  .system-main { padding:38px 4px 30px; }
  .system-logo { width:52px;height:52px;margin-bottom:28px; }
  .system-logo b:nth-child(1){width:42px;height:9px}.system-logo b:nth-child(2){width:9px;height:52px}.system-logo b:nth-child(3){width:42px;height:9px}.system-logo i{width:9px;height:9px}
  .system-title { max-width:290px;font-size:34px;line-height:1.02; }
  .system-steps { grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 12px;margin-bottom:24px; }
  .system-step b { font-size:9px;white-space:normal; }
  .system-bottom { font-size:8px; }
  .quick-strip { overflow:hidden; }
  .quick-strip-inner { min-height:58px;justify-content:flex-start;white-space:nowrap;gap:16px; }
  .quick-strip-inner span:nth-of-type(n+4),.quick-strip-inner span:nth-of-type(n+4) + i { display:none; }
  .section { padding:82px 0; }
  .section-heading { gap:22px;margin-bottom:42px; }
  .section-heading h2 { font-size:44px;line-height:.98; }
  .section-heading p { margin-top:18px;font-size:14px; }
  .card { min-height:260px;padding:24px; }
  .card-icon { width:40px;height:40px;margin:34px 0 25px; }
  .card h3 { font-size:22px; }
  .process-grid { grid-template-columns:1fr; }
  .process-item,.process-item + .process-item { padding:26px 0;border-left:0; }
  .process-item .process-icon { margin-bottom:28px; }
  .process-item h3 { font-size:23px; }
  .principles { grid-template-columns:1fr; }
  .principle { min-height:190px;padding:24px; }
  .principle h3 { margin-top:44px;font-size:22px; }
  .cta { padding:78px 0; }
  .cta h2 { margin:24px 0 28px;font-size:44px;line-height:.98; }
  .cta p { font-size:14px; }
  .cta-link { padding:19px 0;font-size:27px; }
  .cta-link .icon { width:28px;height:28px; }
  .page-hero { padding:62px 0 52px; }
  .page-hero h1 { font-size:46px;line-height:.98; }
  .page-hero p { margin-top:22px;font-size:15px; }
  .page-grid { padding-bottom:82px;gap:30px; }
  .content-block { padding:34px 0; }
  .content-block h2 { font-size:29px; }
  .content-block ul { grid-template-columns:1fr; }
  .contact-grid { padding-bottom:82px; }
  .contact-card { min-height:225px;padding:26px; }
  .contact-card h2 { margin-top:42px;font-size:25px; }
  .footer-inner { grid-template-columns:1fr;gap:16px; }
  .footer-links { flex-wrap:wrap; }
}
@media (max-width: 380px) {
  :root { --shell:calc(100vw - 26px); }
  .hero h1 { font-size:42px; }
  .section-heading h2,.page-hero h1,.cta h2 { font-size:40px; }
  .hero-actions { align-items:flex-start;flex-direction:column; }
  .system-title { font-size:31px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { transition-duration:.01ms!important;animation-duration:.01ms!important;animation-iteration-count:1!important; }
  .reveal { opacity:1;transform:none; }
}
/* 2026-09 mobile + desktop polish */
.hero h1,
.page-hero h1,
.section-heading h2,
.cta h2 {
  letter-spacing: -.052em;
  line-height: 1;
  text-wrap: balance;
}
.hero h1 { font-size: clamp(56px, 5.9vw, 82px); }
.section-heading h2 { font-size: clamp(44px, 4.65vw, 64px); }
.page-hero h1 { max-width: 900px; font-size: clamp(52px, 5.45vw, 76px); }
.section-heading p,
.page-hero p { line-height: 1.76; }

.card-index,
.principle span {
  font-size: 10.5px;
}
.card-icon { width: 52px; height: 52px; }
.principle h3 { margin-top: 44px; }

.process-item {
  padding-top: 30px;
  padding-bottom: 31px;
}
.process-item .process-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 30px;
}
.process-title-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 12px;
}
.process-title-row span {
  display: block;
  flex: 0 0 24px;
  margin: 0;
  color: #727883;
  font: 600 10.5px "SFMono-Regular", ui-monospace, monospace;
}
.process-title-row h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.process-item > p {
  padding-left: 38px;
  font-size: 13px;
  line-height: 1.65;
}

.page-grid {
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
}
.page-aside { padding-top: 4px; }
.content-block .block-icon { width: 32px; height: 32px; }
.content-block h2 { letter-spacing: -.035em; }

.cta { padding: 92px 0; }
.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: 68px;
  align-items: start;
}
.cta-copy { padding-top: 4px; }
.cta-copy h2 {
  max-width: 660px;
  margin: 26px 0 28px;
  font-size: clamp(44px, 4.75vw, 66px);
}
.cta-copy > p:not(.section-kicker) {
  max-width: 590px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.72;
}
.email-image-wrap {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.35);
}
.email-image-wrap > span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.66);
  font: 600 9px "SFMono-Regular", ui-monospace, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.email-image {
  width: auto;
  height: auto;
  max-width: min(100%, 360px);
}
.email-image-light { filter: none; }
.email-image-dark { max-width: min(100%, 330px); }

.contact-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 26px;
  background: var(--paper-2);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(14, 18, 34, .13);
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form label > span {
  font-size: 11px;
  font-weight: 720;
  letter-spacing: -.01em;
}
.contact-form label > span em {
  color: #8a8f98;
  font-size: 10px;
  font-style: normal;
  font-weight: 550;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(11,12,15,.12);
  border-radius: 13px;
  outline: none;
  background: #f4f5f2;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}
.contact-form textarea {
  min-height: 126px;
  resize: vertical;
  padding: 13px 14px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #969ba3; }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(93,109,255,.11);
}
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 2px;
}
.form-actions p {
  max-width: 270px;
  margin: 0;
  color: #7b8089;
  font-size: 10px;
  line-height: 1.55;
}
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  transition: transform .18s ease, background .18s ease;
}
.form-submit:hover { transform: translateY(-1px); background: var(--accent-2); }
.form-submit:disabled { cursor: wait; opacity: .65; transform: none; }
.form-submit .icon { width: 17px; height: 17px; }
.form-status {
  min-height: 18px;
  margin: -4px 0 0;
  color: #626872;
  font-size: 11px;
  line-height: 1.5;
}
.form-status.is-success { color: #177642; }
.form-status.is-error { color: #b72f32; }
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, .84fr);
  gap: 64px;
  align-items: start;
  padding-bottom: 112px;
}
.contact-page-form .contact-form {
  box-shadow: none;
  border: 1px solid var(--line);
}
.contact-aside {
  position: sticky;
  top: 110px;
  padding: 30px 0 0 4px;
}
.contact-aside .section-kicker { color: #7d828c; }
.contact-aside h2 {
  margin: 28px 0 16px;
  font-size: 34px;
  line-height: 1.04;
  letter-spacing: -.04em;
}
.contact-aside > p:not(.section-kicker) {
  max-width: 430px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.contact-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 28px;
  color: #858a93;
  font: 600 9px "SFMono-Regular", ui-monospace, monospace;
  letter-spacing: .07em;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .page-grid { grid-template-columns: 1fr; gap: 24px; }
  .page-aside { padding-top: 0; }
  .cta-layout { grid-template-columns: 1fr; gap: 42px; }
  .cta-copy h2 { max-width: 760px; }
  .contact-page-layout { grid-template-columns: 1fr; gap: 42px; }
  .contact-aside { position: static; padding-top: 0; }
}
@media (max-width: 600px) {
  .hero h1,
  .section-heading h2,
  .page-hero h1,
  .cta h2 {
    letter-spacing: -.045em;
    line-height: 1.02;
  }
  .hero h1 { font-size: clamp(43px, 11.7vw, 54px); }
  .section-heading h2 { font-size: 41px; }
  .page-hero h1 { font-size: 43px; }
  .card-icon { width: 46px; height: 46px; }
  .process-item .process-icon { width: 29px; height: 29px; margin-bottom: 22px; }
  .process-title-row { gap: 12px; margin-bottom: 10px; }
  .process-title-row span { flex-basis: 22px; font-size: 10px; }
  .process-title-row h3 { font-size: 22px; }
  .process-item > p { padding-left: 34px; font-size: 12.5px; }
  .principle h3 { margin-top: 34px; }
  .cta { padding: 72px 0; }
  .cta-layout { gap: 34px; }
  .cta-copy h2 { font-size: 41px; }
  .email-image-wrap { margin-top: 34px; padding-top: 20px; }
  .contact-form { padding: 22px; border-radius: 21px; gap: 16px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .form-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .form-actions p { max-width: none; }
  .form-submit { width: 100%; }
  .contact-page-layout { padding-bottom: 82px; }
  .contact-aside h2 { font-size: 29px; }
}
@media (max-width: 380px) {
  .hero h1,
  .section-heading h2,
  .page-hero h1,
  .cta h2 { font-size: 38px; }
  .contact-form { padding: 18px; }
}

/* 2026-09-24 navigation, services and contact refinement */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 11.5px;
  font-weight: 760;
  letter-spacing: -.01em;
  transition: background .18s ease, transform .18s ease;
}
.nav-cta .icon { width: 14px; height: 14px; }
.nav-cta:hover { background: var(--accent-2); transform: translateY(-1px); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(93,109,255,.28);
  outline-offset: 3px;
}

/* Process alignment */
.process-title-row {
  display: grid;
  grid-template-columns: 25px minmax(0,1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.process-title-row span {
  display: block;
  margin: 0;
  color: var(--accent);
  font: 650 11px/1 "SFMono-Regular", ui-monospace, monospace;
  transform: translateY(1px);
}
.process-title-row h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -.028em;
}
.process-item > p { padding-left: 37px; }

/* Form rhythm */
.contact-form { gap: 14px; }
.contact-form label { gap: 5px; }
.contact-form label > span { line-height: 1.2; }
.form-row { gap: 12px; }
.contact-form input { min-height: 45px; }
.contact-form textarea { min-height: 116px; }
.form-actions { padding-top: 0; }
.form-status { margin-top: -2px; }

/* Services */
.services-hero { padding-bottom: 56px; }
.capability-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.capability-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #626872;
  background: rgba(255,255,255,.3);
  font-size: 10.5px;
  font-weight: 650;
}
.services-layout {
  display: grid;
  grid-template-columns: 230px minmax(0,1fr);
  gap: 52px;
  align-items: start;
  padding-bottom: 104px;
}
.services-nav {
  position: sticky;
  top: 112px;
  padding-top: 8px;
}
.services-nav .section-kicker { color: #858a93; }
.services-nav nav {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.services-nav a {
  display: grid;
  grid-template-columns: 27px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  color: #626872;
  font-size: 11.5px;
  font-weight: 650;
  transition: color .18s ease, padding-left .18s ease;
}
.services-nav a span {
  color: var(--accent);
  font: 650 9px/1 "SFMono-Regular",ui-monospace,monospace;
}
.services-nav a:hover { color: var(--ink); padding-left: 4px; }

.services-stack { border-top: 1px solid var(--line); }
.service-panel {
  scroll-margin-top: 105px;
  padding: 38px 4px 42px;
  border-bottom: 1px solid var(--line);
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}
.service-number {
  color: var(--accent);
  font: 650 11px/1 "SFMono-Regular",ui-monospace,monospace;
}
.service-icon { width: 34px; height: 34px; color: var(--accent-2); }
.service-panel h2 {
  max-width: 760px;
  margin: 0 0 15px;
  font-size: clamp(30px,3vw,40px);
  line-height: 1.05;
  letter-spacing: -.042em;
}
.service-panel > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.76;
}
.service-panel ul {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px 28px;
  max-width: 760px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}
.service-panel li {
  position: relative;
  padding-left: 16px;
  color: #484e57;
  font-size: 12.5px;
  line-height: 1.5;
}
.service-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.service-panel-ai {
  margin-top: 26px;
  padding: 32px;
  border: 1px solid rgba(93,109,255,.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(93,109,255,.11), transparent 36%),
    rgba(93,109,255,.045);
}
.service-panel-ai .service-top { margin-bottom: 22px; }
.ai-label {
  width: max-content;
  margin-bottom: 17px;
  color: var(--accent-2);
  font: 650 9px/1 "SFMono-Regular",ui-monospace,monospace;
  letter-spacing: .08em;
}
.services-next {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 104px;
  padding: 38px 0;
  border-block: 1px solid var(--line);
}
.services-next h2 {
  max-width: 720px;
  margin: 16px 0 0;
  font-size: clamp(32px,3.7vw,48px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.services-next .section-kicker { color: #858a93; }
.services-next-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 740;
}
.services-next-link .icon { width: 16px; height: 16px; }

/* Contact page */
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(430px,1.1fr);
  gap: 76px;
  align-items: start;
  padding: 82px 0 92px;
}
.contact-hero-copy { padding-top: 12px; }
.contact-hero-copy h1 {
  margin: 0;
  font-size: clamp(58px,6vw,84px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 730;
}
.contact-hero-copy h1 .soft { color: #747a84; }
.contact-hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.contact-points {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}
.contact-points > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: baseline;
  min-height: 48px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.contact-points span {
  color: var(--accent);
  font: 650 9px "SFMono-Regular",ui-monospace,monospace;
}
.contact-points p { margin: 0; color: #424750; font-size: 12.5px; line-height: 1.45; }
.contact-direct {
  margin-top: 38px;
}
.contact-direct > span {
  display: block;
  margin-bottom: 12px;
  color: #858a93;
  font: 650 9px "SFMono-Regular",ui-monospace,monospace;
  letter-spacing: .08em;
}
.contact-direct .email-image { max-width: min(100%,320px); }
.contact-form-panel {
  border-radius: 28px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(11,12,15,.08);
  padding: 34px;
}
.contact-form-head {
  margin-bottom: 27px;
}
.contact-form-head > span {
  color: var(--accent);
  font: 650 9px "SFMono-Regular",ui-monospace,monospace;
  letter-spacing: .08em;
}
.contact-form-head h2 {
  margin: 14px 0 8px;
  font-size: 31px;
  line-height: 1.05;
  letter-spacing: -.04em;
}
.contact-form-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}
.contact-form-page {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.contact-expectations {
  background: var(--ink);
  color: #fff;
}
.contact-expectations > .shell {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
}
.contact-expectations article {
  min-height: 210px;
  padding: 32px 30px 32px 0;
}
.contact-expectations article + article {
  padding-left: 30px;
  border-left: 1px solid var(--line-dark);
}
.contact-expectations article > span {
  color: var(--accent);
  font: 650 10px "SFMono-Regular",ui-monospace,monospace;
}
.contact-expectations h3 {
  margin: 50px 0 10px;
  font-size: 22px;
  letter-spacing: -.03em;
}
.contact-expectations p {
  max-width: 340px;
  margin: 0;
  color: #959aa5;
  font-size: 12.5px;
  line-height: 1.65;
}

/* Subtle interaction polish */
.card,
.principle {
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); background: #fff; }
.principle:hover { background: rgba(255,255,255,.45); }
.desktop-nav a { transition: color .18s ease; }
.desktop-nav a:hover { color: var(--accent-2); }

@media (max-width: 920px) {
  .nav-cta { display: none; }
  .services-layout { grid-template-columns: 1fr; gap: 28px; }
  .services-nav { position: static; padding-top: 0; }
  .services-nav nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    border: 0;
    padding: 2px 0 8px;
    scrollbar-width: none;
  }
  .services-nav nav::-webkit-scrollbar { display: none; }
  .services-nav a {
    display: inline-flex;
    grid-template-columns: none;
    gap: 7px;
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper-2);
    white-space: nowrap;
  }
  .services-nav a:hover { padding-left: 12px; }
  .contact-hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 64px;
  }
  .contact-hero-copy { padding-top: 0; }
}
@media (max-width: 600px) {
  .process-title-row {
    grid-template-columns: 23px minmax(0,1fr);
    gap: 10px;
  }
  .process-title-row span { font-size: 10.5px; }
  .process-item > p { padding-left: 33px; }

  .services-hero { padding-bottom: 44px; }
  .capability-chips { margin-top: 25px; gap: 7px; }
  .capability-chips span { min-height: 30px; padding: 0 10px; font-size: 10px; }
  .services-layout { padding-bottom: 76px; }
  .services-nav .section-kicker { margin-bottom: 16px; }
  .service-panel { padding: 30px 0 34px; }
  .service-top { margin-bottom: 25px; }
  .service-icon { width: 30px; height: 30px; }
  .service-panel h2 { font-size: 30px; }
  .service-panel > p { font-size: 13.5px; }
  .service-panel ul { grid-template-columns: 1fr; gap: 9px; margin-top: 21px; }
  .service-panel-ai { margin-top: 20px; padding: 24px; border-radius: 20px; }
  .services-next {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 78px;
    padding: 30px 0;
  }
  .services-next h2 { font-size: 35px; }
  .services-next-link { justify-content: space-between; width: 100%; }

  .contact-hero { gap: 36px; padding: 56px 0 72px; }
  .contact-hero-copy h1 { font-size: 47px; }
  .contact-hero-copy > p:not(.eyebrow) { margin-top: 22px; font-size: 14.5px; }
  .contact-points { margin-top: 34px; }
  .contact-direct { margin-top: 32px; }
  .contact-form-panel { padding: 23px; border-radius: 22px; }
  .contact-form-head { margin-bottom: 22px; }
  .contact-form-head h2 { font-size: 27px; }
  .contact-form { gap: 13px; }
  .contact-form label { gap: 4px; }
  .contact-form input { min-height: 44px; }
  .contact-form textarea { min-height: 112px; }
  .contact-expectations > .shell { grid-template-columns: 1fr; }
  .contact-expectations article,
  .contact-expectations article + article {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .contact-expectations h3 { margin-top: 27px; }
}

/* Navigation + principle alignment refinement */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(11, 12, 15, .075);
  border-radius: 14px;
  background: rgba(255,255,255,.46);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 700;
}
.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 10px;
  color: #535964;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}
.desktop-nav a:hover {
  color: var(--ink);
  background: rgba(255,255,255,.84);
}
.desktop-nav a[aria-current="page"] {
  color: var(--accent-2);
  background: rgba(93,109,255,.105);
  box-shadow: inset 0 0 0 1px rgba(93,109,255,.16);
}
.desktop-nav a[aria-current="page"]::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(93,109,255,.08);
}
.lang-link {
  transition: color .18s ease;
}
.lang-link:hover {
  color: var(--accent-2);
}

.mobile-menu a[aria-current="page"] {
  color: var(--accent-2);
  background: linear-gradient(90deg, rgba(93,109,255,.085), rgba(93,109,255,0));
  margin-inline: -10px;
  padding-inline: 10px;
  border-radius: 10px;
}
.mobile-menu a[aria-current="page"] .icon {
  color: var(--accent);
}

.principle {
  min-height: 176px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.principle-title-row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.principle-title-row span {
  margin: 0;
  color: var(--accent);
  font: 700 11px/1 "SFMono-Regular", ui-monospace, monospace;
  letter-spacing: .02em;
}
.principle-title-row h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.032em;
}
.principle > p {
  margin: 0 0 0 36px;
  max-width: 500px;
}

.card-index {
  color: var(--accent-2);
}
.card-icon {
  color: var(--accent-2);
}
.section-heading .section-kicker {
  color: var(--accent-2);
}
.services-nav .section-kicker,
.services-next .section-kicker {
  color: var(--accent-2);
}
.footer-links a,
.footer .brand {
  transition: color .18s ease, opacity .18s ease;
}
.footer-links a:hover {
  color: #fff;
}

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .principle {
    min-height: 0;
    padding: 22px;
  }
  .principle-title-row {
    grid-template-columns: 23px minmax(0, 1fr);
    gap: 9px;
    margin-bottom: 9px;
  }
  .principle-title-row span {
    font-size: 10.5px;
  }
  .principle-title-row h3 {
    font-size: 22px;
  }
  .principle > p {
    margin-left: 32px;
  }
}

/* Simplified navigation + unified feature/process rhythm */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
}
.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 2px;
  border-radius: 0;
  color: #4e545e;
  background: transparent;
}
.desktop-nav a:hover {
  color: var(--ink);
  background: transparent;
}
.desktop-nav a[aria-current="page"] {
  color: var(--accent-2);
  background: transparent;
  box-shadow: none;
}
.desktop-nav a[aria-current="page"]::before {
  content: none;
}
.desktop-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateX(-50%);
}

.card {
  min-height: 312px;
}
.card-icon,
.process-item .process-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin: 0 0 30px;
}
.card-title-row,
.process-title-row {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.card-title-row .card-index,
.process-title-row span {
  display: block;
  margin: 0;
  color: var(--accent);
  font: 700 11px/1 "SFMono-Regular", ui-monospace, monospace;
  letter-spacing: .01em;
  transform: translateY(1px);
}
.card-title-row h3,
.process-title-row h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.card > p,
.process-item > p {
  margin: 0;
  padding-left: 37px;
}
.card .text-link {
  margin-top: auto;
  margin-left: 37px;
  padding-top: 28px;
}
.process-item {
  padding-top: 30px;
  padding-bottom: 31px;
}

.contact-form textarea {
  min-height: 158px;
}
.form-status:empty {
  display: none;
}
.contact-form {
  padding-bottom: 24px;
}

@media (max-width: 920px) {
  .desktop-nav { display: none; }
}

@media (max-width: 600px) {
  .card {
    min-height: 0;
  }
  .card-icon,
  .process-item .process-icon {
    width: 29px;
    height: 29px;
    margin-bottom: 22px;
  }
  .card-title-row,
  .process-title-row {
    grid-template-columns: 23px minmax(0, 1fr);
    gap: 10px;
  }
  .card-title-row .card-index,
  .process-title-row span {
    font-size: 10.5px;
  }
  .card-title-row h3,
  .process-title-row h3 {
    font-size: 22px;
  }
  .card > p,
  .process-item > p {
    padding-left: 33px;
  }
  .card .text-link {
    margin-left: 33px;
  }
  .contact-form textarea {
    min-height: 126px;
  }
}

/* 2026-09-24 FR + form + navigation polish */
.desktop-nav {
  font-weight: 600;
}
.desktop-nav a {
  font-weight: 600;
}
.mobile-menu a {
  font-weight: 650;
}
.nav-cta {
  font-weight: 700;
}
.contact-form:not(.contact-form-page) {
  gap: 11px;
  padding: 22px 24px 14px;
  align-content: start;
}
.contact-form:not(.contact-form-page) textarea {
  min-height: 176px;
}
.contact-form-page {
  gap: 11px;
}
.contact-form-page textarea {
  min-height: 148px;
}
.form-row {
  gap: 11px;
}
.contact-form label {
  gap: 4px;
}
.form-actions {
  margin-top: 2px;
}
.form-status:empty {
  display: none;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 9px;
  background: rgba(11,12,15,.045);
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 26px;
  padding: 0 6px;
  border-radius: 7px;
  color: #686e78;
  font: 600 9px/1 "SFMono-Regular", ui-monospace, monospace;
  letter-spacing: .04em;
  transition: color .18s ease, background .18s ease;
}
.lang-switch a:hover {
  color: var(--ink);
}
.lang-switch a[aria-current="true"] {
  color: var(--accent-2);
  background: rgba(93,109,255,.11);
}
@media (max-width: 600px) {
  .lang-switch {
    gap: 1px;
    padding: 2px;
  }
  .lang-switch a {
    min-width: 25px;
    min-height: 24px;
    padding: 0 4px;
    font-size: 8.5px;
  }
  .contact-form:not(.contact-form-page) {
    padding: 20px 20px 12px;
  }
  .contact-form:not(.contact-form-page) textarea {
    min-height: 138px;
  }
  .contact-form-page textarea {
    min-height: 126px;
  }
}

/* Navigation weight, form density, and language switch */
.desktop-nav {
  font-weight: 600;
}
.mobile-menu a {
  font-weight: 650;
}
.nav-cta {
  font-weight: 680;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lang-switch a {
  color: #6c727d;
  font: 550 10.5px/1 "SFMono-Regular", ui-monospace, monospace;
  letter-spacing: .035em;
  transition: color .18s ease;
}
.lang-switch a:hover,
.lang-switch a[aria-current="true"] {
  color: var(--accent-2);
}
.lang-switch i {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #a9adb4;
}
.contact-form {
  gap: 11px;
  padding: 24px 24px 18px;
}
.contact-form label {
  gap: 4px;
}
.form-row {
  gap: 11px;
}
.contact-form textarea {
  min-height: 184px;
}
.form-actions {
  margin-top: 2px;
}
.contact-form-page {
  padding: 0;
}
.contact-form-page textarea {
  min-height: 176px;
}
@media (max-width: 600px) {
  .lang-switch {
    display: none;
  }
  .contact-form {
    padding: 20px 20px 16px;
  }
  .contact-form-page {
    padding: 0;
  }
  .contact-form textarea,
  .contact-form-page textarea {
    min-height: 136px;
  }
}

/* Final navigation + contact-form rhythm */
.desktop-nav {
  font-weight: 600;
}
.desktop-nav a {
  font-weight: 600;
}
.desktop-nav a[aria-current="page"] {
  font-weight: 650;
}

.language-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font: 580 10.5px/1 "SFMono-Regular", ui-monospace, monospace;
  letter-spacing: .035em;
  color: #737984;
}
.language-nav a {
  position: relative;
  padding: 7px 2px;
  transition: color .18s ease;
}
.language-nav a:hover {
  color: var(--ink);
}
.language-nav a[aria-current="true"] {
  color: var(--accent-2);
}
.language-nav a[aria-current="true"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 10px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateX(-50%);
}

.contact-form:not(.contact-form-page) {
  padding: 26px 30px 16px;
  gap: 12px;
}
.contact-form-page {
  padding: 0;
  gap: 12px;
}
.contact-form label {
  gap: 4px;
}
.contact-form textarea {
  min-height: 174px;
}
.contact-form-page textarea {
  min-height: 164px;
}
.form-actions {
  margin-top: 0;
}
.form-status:empty {
  display: none;
}

@media (max-width: 600px) {
  .language-nav {
    gap: 6px;
    font-size: 10px;
  }
  .contact-form:not(.contact-form-page) {
    padding: 22px 22px 14px;
  }
  .contact-form textarea,
  .contact-form-page textarea {
    min-height: 132px;
  }
}

.mobile-language-nav {
  display: none;
}
@media (max-width: 600px) {
  .nav-actions > .language-nav {
    display: none;
  }
  .mobile-language-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    padding: 16px 0 4px;
    border-top: 1px solid var(--line);
  }
  .mobile-language-nav a {
    padding: 0;
    border: 0;
    font: 650 12px/1 "SFMono-Regular", ui-monospace, monospace;
    letter-spacing: .04em;
  }
  .mobile-language-nav a[aria-current="true"] {
    color: var(--accent-2);
  }
}

/* Final 3-language navigation and form density */
.desktop-nav,
.desktop-nav a {
  font-weight: 560;
}
.desktop-nav a[aria-current="page"] {
  font-weight: 620;
}
.mobile-menu a {
  font-weight: 600;
}
.nav-cta {
  font-weight: 650;
}
.language-nav {
  font-weight: 540;
}

.contact-form:not(.contact-form-page) {
  padding: 22px 24px 12px;
  gap: 10px;
}
.contact-form-page {
  gap: 10px;
}
.contact-form label {
  gap: 3px;
}
.contact-form:not(.contact-form-page) textarea {
  min-height: 210px;
}
.contact-form-page textarea {
  min-height: 188px;
}
.form-actions {
  margin-top: 0;
}
.form-status:empty {
  display: none;
}

@media (max-width: 600px) {
  .mobile-menu a {
    font-weight: 590;
  }
  .contact-form:not(.contact-form-page) {
    padding: 20px 20px 12px;
  }
  .contact-form:not(.contact-form-page) textarea,
  .contact-form-page textarea {
    min-height: 140px;
  }
}

/* iOS mobile menu + services overflow fix */
@media (max-width: 920px) {
  .site-header {
    isolation: isolate;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: calc(100dvh - 78px);
    max-height: calc(100dvh - 78px);
    padding: 24px 16px max(32px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    background: var(--paper);
    z-index: 110;
  }

  .mobile-menu.open {
    display: block;
  }

  body.menu-open main,
  body.menu-open .footer {
    pointer-events: none;
  }

  .services-nav nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 0;
  }

  .services-nav a {
    min-width: 0;
    width: 100%;
    white-space: normal;
    line-height: 1.25;
  }

  .services-nav a:hover {
    padding-left: 12px;
  }

  .service-panel,
  .service-panel-ai,
  .services-next,
  .capability-chips,
  .ai-label {
    min-width: 0;
    max-width: 100%;
  }

  .ai-label {
    width: auto;
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .mobile-menu {
    height: calc(100dvh - 68px);
    max-height: calc(100dvh - 68px);
  }

  .mobile-menu > a {
    min-height: 58px;
    font-size: 24px;
  }

  .services-nav nav {
    grid-template-columns: 1fr 1fr;
  }

  .services-nav a {
    min-height: 44px;
    padding: 8px 10px;
    border-radius: 12px;
  }

  .service-panel h2,
  .services-next h2,
  .service-panel > p,
  .service-panel li {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .services-nav nav {
    grid-template-columns: 1fr;
  }
}

/* Mobile menu redesign + stronger services presentation */
@media (max-width: 920px) {
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 78px 0 0;
    z-index: 90;
    background: rgba(11, 12, 15, .42);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    animation: menuBackdropIn .18s ease both;
  }

  .mobile-menu {
    top: calc(100% + 10px);
    right: 12px;
    bottom: auto;
    left: 12px;
    width: auto;
    height: auto;
    max-height: calc(100dvh - 104px);
    padding: 12px;
    border: 1px solid rgba(11,12,15,.09);
    border-radius: 24px;
    background:
      radial-gradient(circle at 100% 0%, rgba(93,109,255,.09), transparent 34%),
      rgba(250,250,247,.985);
    box-shadow: 0 26px 80px rgba(11,12,15,.24);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .mobile-menu.open {
    display: flex;
    flex-direction: column;
    gap: 3px;
    animation: mobileMenuIn .22s cubic-bezier(.2,.8,.2,1) both;
  }

  .mobile-menu > a {
    min-height: 58px;
    padding: 0 14px;
    border: 0;
    border-radius: 14px;
    font-size: 22px;
    font-weight: 590;
    letter-spacing: -.035em;
    transition: background .16s ease, color .16s ease, transform .16s ease;
  }

  .mobile-menu > a:hover {
    background: rgba(11,12,15,.04);
  }

  .mobile-menu > a[aria-current="page"] {
    margin: 0;
    padding-inline: 14px;
    color: var(--accent-2);
    background: rgba(93,109,255,.095);
  }

  .mobile-menu > a .icon {
    width: 30px;
    height: 30px;
    padding: 7px;
    border-radius: 50%;
    color: #5d626c;
    background: rgba(11,12,15,.045);
  }

  .mobile-menu > a[aria-current="page"] .icon {
    color: var(--accent);
    background: rgba(93,109,255,.1);
  }

  .mobile-language-nav {
    margin: 14px 4px 0;
    padding: 16px 10px 4px;
    border-top: 1px solid var(--line);
  }

  .mobile-menu .mobile-meta {
    margin: 14px 4px 0;
    padding: 14px;
    border-radius: 14px;
    color: #6d737d;
    background: rgba(93,109,255,.055);
    font-size: 11px;
    line-height: 1.55;
  }

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

  @keyframes menuBackdropIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}

@media (max-width: 600px) {
  body.menu-open::before {
    inset: 68px 0 0;
  }

  .mobile-menu {
    top: calc(100% + 8px);
    right: 10px;
    left: 10px;
    max-height: calc(100dvh - 88px);
    border-radius: 22px;
    padding: 10px;
  }

  .mobile-menu > a {
    min-height: 56px;
    font-size: 21px;
  }
}

/* Four clearer service cards on the homepage */
.cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.card {
  min-height: 286px;
}
.card-title-row h3 {
  font-size: 25px;
}
.card > p {
  max-width: 520px;
  font-size: 13.5px;
  line-height: 1.68;
}

@media (min-width: 701px) and (max-width: 920px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* Services page emphasis */
.capability-chips span {
  min-height: 34px;
  padding: 0 13px;
  font-size: 11px;
}
.services-nav a {
  font-size: 12px;
}
.service-panel {
  padding-top: 42px;
  padding-bottom: 46px;
}
.service-icon {
  width: 36px;
  height: 36px;
}
.service-panel h2 {
  max-width: 820px;
  font-size: clamp(34px,3.25vw,44px);
}
.service-panel > p {
  max-width: 800px;
  font-size: 14.5px;
  line-height: 1.78;
}
.service-panel ul {
  max-width: 800px;
}
.service-panel li {
  font-size: 13px;
}
@media (max-width: 920px) {
  .services-nav nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-nav a:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}
@media (max-width: 600px) {
  .service-panel h2 {
    font-size: 31px;
  }
  .service-panel > p {
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  .services-nav nav {
    grid-template-columns: 1fr;
  }
  .services-nav a:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

