:root {
  --ink: #080b10;
  --ink-soft: #0d1219;
  --surface: #111820;
  --surface-2: #151e28;
  --line: rgba(172, 201, 218, 0.14);
  --line-strong: rgba(172, 201, 218, 0.24);
  --paper: #f2f5f3;
  --paper-2: #e8edeb;
  --text: #ecf2f0;
  --muted: #a6b2b5;
  --muted-dark: #718085;
  --cyan: #53d9dd;
  --cyan-bright: #8cf7ef;
  --cyan-soft: rgba(83, 217, 221, 0.12);
  --lime: #b8e986;
  --max: 1240px;
  --radius: 22px;
  --spot-x: 50vw;
  --spot-y: 35vh;
  --process-bg: #f2f5f3;
  --process-edge: #e5ecea;
  --process-text: #141c20;
  --process-muted: #5f6c70;
  --process-line: rgba(24,72,76,.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(83, 217, 221, .28); color: #fff; }

.site-shell {
  min-height: 100vh;
  overflow: clip;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255,255,255,.012), transparent 18%),
    var(--ink);
}
.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .25;
  background-image:
    linear-gradient(rgba(140, 247, 239, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 247, 239, .025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.pointer-light {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity .8s ease;
  background: radial-gradient(
    540px circle at var(--spot-x) var(--spot-y),
    rgba(99, 232, 229, .095),
    rgba(57, 156, 181, .04) 36%,
    transparent 70%
  );
}
.site-shell[data-pointer="active"] .pointer-light { opacity: 1; }
.site-header, #content, .site-footer { position: relative; z-index: 2; }
.section-shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 18px; top: 12px; z-index: 100;
  padding: 10px 14px; border-radius: 8px; background: var(--cyan); color: #061013;
  transform: translateY(-150%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(8, 11, 16, .72);
  backdrop-filter: blur(18px) saturate(125%);
}
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 26px; }
.brand {
  --logo-panel:#0d151d;
  --logo-border:rgba(140,247,239,.24);
  --logo-frame:rgba(140,247,239,.46);
  --logo-glyph:#ecf7f5;
  --logo-accent:#5ee0e1;
  display:inline-flex; align-items:center; gap:13px; flex:0 0 auto;
}
.brand-logo {
  width:58px; height:49px; flex:0 0 auto; overflow:visible;
  filter:drop-shadow(0 9px 20px rgba(0,0,0,.22));
  transition:transform .25s ease,filter .25s ease;
}
.brand-logo__panel { fill:var(--logo-panel); stroke:var(--logo-border); stroke-width:1.35; }
.brand-logo__fold { fill:none; stroke:var(--logo-frame); stroke-width:1.2; stroke-linecap:round; stroke-linejoin:round; }
.brand-logo__itc,.brand-logo__s { font-family:Inter,Arial,sans-serif; font-size:27px; font-weight:800; letter-spacing:-1.5px; }
.brand-logo__itc { fill:var(--logo-glyph); }
.brand-logo__s { fill:var(--logo-accent); }
.brand-logo__signal { fill:none; stroke:var(--logo-accent); stroke-width:1.35; stroke-linecap:round; stroke-linejoin:round; }
.brand-logo__node { fill:var(--logo-accent); filter:drop-shadow(0 0 4px var(--logo-accent)); }
.brand:hover .brand-logo { transform:translateY(-1px); filter:drop-shadow(0 10px 22px rgba(83,217,221,.16)); }
.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong { position:relative; display:flex; width:max-content; padding-bottom:5px; font-size:17px; letter-spacing:.055em; line-height:1; }
.brand-copy strong::after { content:""; position:absolute; left:0; right:5px; bottom:0; height:1px; background:linear-gradient(90deg,var(--logo-accent),transparent); }
.brand-copy strong::before { content:""; position:absolute; right:0; bottom:-1.5px; width:4px; height:4px; border-radius:50%; background:var(--logo-accent); box-shadow:0 0 7px var(--logo-accent); }
.brand-copy strong span { color:var(--logo-glyph); }
.brand-copy strong em { color:var(--logo-accent); font-style:normal; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.desktop-nav a { color: #b5c0c2; font-size: 13px; font-weight: 600; transition: color .2s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--cyan-bright); }
.theme-toggle {
  width: 42px; height: 42px; padding: 0; display: grid; place-items: center; flex: 0 0 auto;
  border: 1px solid var(--line-strong); border-radius: 10px; cursor: pointer;
  color: #b9c6c7; background: rgba(255,255,255,.025);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.theme-toggle:hover,.theme-toggle:focus-visible { color: var(--cyan-bright); border-color: rgba(83,217,221,.44); background: var(--cyan-soft); transform: translateY(-1px); }
.theme-toggle:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
.theme-icon { width: 18px; height: 18px; grid-area: 1/1; }
.theme-icon--moon { display: none; }
html[data-theme="light"] .theme-icon--sun { display: none; }
html[data-theme="light"] .theme-icon--moon { display: block; }
.header-cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 16px 12px 18px; border: 1px solid var(--line-strong); border-radius: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .02em; background: rgba(255,255,255,.025);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.header-cta span { color: var(--cyan); font-size: 16px; }
.header-cta:hover { border-color: rgba(83,217,221,.45); background: rgba(83,217,221,.07); transform: translateY(-1px); }
.mobile-menu { display: none; margin-left: auto; position: relative; }
.mobile-menu summary { width: 44px; height: 42px; list-style: none; display: grid; place-content: center; gap: 7px; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 18px; height: 1px; background: var(--text); display: block; }
.mobile-menu nav { position: absolute; right: 0; top: 54px; width: 220px; padding: 12px; display: grid; border: 1px solid var(--line); border-radius: 14px; background: rgba(11,15,21,.97); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.mobile-menu nav a { padding: 11px 12px; border-radius: 8px; color: #cbd4d3; font-size: 14px; }
.mobile-menu nav a:hover { background: var(--cyan-soft); color: var(--cyan-bright); }

.icon { width: 1.3em; height: 1.3em; flex: 0 0 auto; }
.hero { min-height: 820px; padding-top: 174px; padding-bottom: 92px; position: relative; display: flex; align-items: center; }
.hero::before { content:""; position:absolute; width:620px; height:620px; top:80px; right:-170px; border-radius:50%; border:1px solid rgba(83,217,221,.06); box-shadow: 0 0 0 85px rgba(83,217,221,.018), 0 0 0 170px rgba(83,217,221,.012); pointer-events:none; }
.hero-grid { width:100%; display:grid; grid-template-columns: 1.04fr .96fr; align-items:center; gap:96px; }
.eyebrow { display:inline-flex; align-items:center; gap:10px; color:#b5c2c2; font-size:11px; line-height:1; font-weight:700; letter-spacing:.15em; text-transform:uppercase; }
.status-dot { width:8px; height:8px; border-radius:50%; background:var(--lime); box-shadow:0 0 0 5px rgba(184,233,134,.08), 0 0 14px rgba(184,233,134,.55); flex:0 0 auto; }
.hero h1 { max-width:700px; margin:28px 0 26px; font-size:clamp(56px,6.2vw,94px); line-height:.96; letter-spacing:-.062em; font-weight:650; }
.hero h1 span { color:transparent; background:linear-gradient(95deg, #d7e5e3 5%, #70dfdf 55%, #6da7b1); -webkit-background-clip:text; background-clip:text; }
.hero-lead { max-width:600px; margin:0; color:#a7b3b5; font-size:18px; line-height:1.75; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:36px; }
.button { min-height:52px; padding:0 20px; display:inline-flex; align-items:center; justify-content:center; gap:12px; border-radius:11px; border:1px solid transparent; font-size:13px; font-weight:750; letter-spacing:.01em; transition:transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button--primary { color:#061013; background:linear-gradient(135deg,var(--cyan-bright),var(--cyan)); box-shadow:0 12px 34px rgba(83,217,221,.16); }
.button--primary .icon { width:17px; }
.button--primary:hover { transform:translateY(-2px); box-shadow:0 16px 42px rgba(83,217,221,.25); }
.button--ghost { border-color:var(--line-strong); background:rgba(255,255,255,.025); color:#dce5e4; }
.button--ghost:hover { transform:translateY(-2px); border-color:rgba(255,255,255,.32); background:rgba(255,255,255,.05); }
.hero-proof { display:flex; flex-wrap:wrap; gap:20px; padding:0; margin:32px 0 0; list-style:none; color:#98a5a8; font-size:12px; font-weight:650; letter-spacing:.02em; }
.hero-proof li { display:flex; align-items:center; gap:6px; }
.hero-proof .icon { width:14px; color:var(--cyan); }

.hero-system { position:relative; min-height:510px; display:grid; place-items:center; perspective:1200px; }
.system-orbit { position:absolute; border-radius:50%; border:1px solid rgba(83,217,221,.11); }
.system-orbit--one { width:470px; height:470px; animation:orbit 24s linear infinite; }
.system-orbit--two { width:370px; height:370px; border-style:dashed; opacity:.72; animation:orbit 30s linear infinite reverse; }
.system-orbit::after { content:""; position:absolute; top:11%; left:13%; width:7px; height:7px; border-radius:50%; background:var(--cyan); box-shadow:0 0 16px var(--cyan); }
.system-card { width:min(100%,440px); position:relative; z-index:2; border:1px solid rgba(150,204,211,.2); border-radius:20px; overflow:hidden; background:linear-gradient(160deg,rgba(20,29,38,.96),rgba(10,15,21,.96)); box-shadow:0 45px 90px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.055); transform:rotateY(-4deg) rotateX(2deg); }
.system-topbar { padding:15px 18px; display:flex; justify-content:space-between; border-bottom:1px solid var(--line); color:#89979b; font:650 10px/1 ui-monospace,SFMono-Regular,Consolas,monospace; letter-spacing:.11em; }
.system-live { color:#bde98f; display:flex; align-items:center; gap:7px; }
.system-live i { width:5px; height:5px; border-radius:50%; background:var(--lime); box-shadow:0 0 8px var(--lime); }
.system-focus { padding:32px 26px 28px; display:flex; gap:18px; align-items:center; }
.system-mark { width:66px; height:66px; border-radius:16px; display:grid; place-items:center; flex:0 0 auto; border:1px solid rgba(83,217,221,.25); background:linear-gradient(145deg,rgba(83,217,221,.16),rgba(83,217,221,.035)); color:var(--cyan-bright); font-size:20px; font-weight:850; letter-spacing:-.03em; box-shadow:inset 0 0 30px rgba(83,217,221,.07),0 0 30px rgba(83,217,221,.05); }
.system-focus span { display:block; margin-bottom:5px; color:#879599; font:650 10px/1.2 ui-monospace,SFMono-Regular,Consolas,monospace; letter-spacing:.1em; }
.system-focus strong { display:block; font-size:16px; letter-spacing:-.02em; }
.system-metrics { margin:0 18px; display:grid; grid-template-columns:repeat(3,1fr); border:1px solid var(--line); border-radius:12px; overflow:hidden; }
.system-metrics div { padding:15px 13px; border-right:1px solid var(--line); }
.system-metrics div:last-child { border-right:0; }
.system-metrics span,.system-metrics strong { display:block; }
.system-metrics span { color:#819094; font-size:9px; letter-spacing:.08em; text-transform:uppercase; }
.system-metrics strong { margin-top:4px; color:#d8e1df; font:700 10px/1.2 ui-monospace,SFMono-Regular,Consolas,monospace; }
.system-log { display:grid; gap:12px; padding:23px 22px 25px; color:#95a3a6; font:550 11px/1.2 ui-monospace,SFMono-Regular,Consolas,monospace; }
.system-log span { display:flex; align-items:center; gap:10px; }
.system-log i { width:6px; height:6px; border-radius:50%; }
.log-ok { background:#6b7a7d; }
.log-active { background:var(--cyan); box-shadow:0 0 10px var(--cyan); animation:pulse 1.8s ease-in-out infinite; }
.floating-note { position:absolute; z-index:3; display:flex; align-items:center; gap:10px; padding:12px 14px; border:1px solid rgba(145,191,198,.2); border-radius:12px; background:rgba(14,21,28,.9); backdrop-filter:blur(12px); box-shadow:0 18px 44px rgba(0,0,0,.35); color:#a9b6b7; font-size:10px; font-weight:700; letter-spacing:.03em; }
.floating-note .icon { width:17px; color:var(--cyan); }
.floating-note--one { top:58px; right:-12px; animation:floaty 5s ease-in-out infinite; }
.floating-note--two { right:-14px; bottom:34px; flex-direction:column; align-items:flex-start; gap:0; animation:floaty 6.4s 1s ease-in-out infinite; }
.note-value { color:var(--cyan-bright); font-size:21px; line-height:1.05; font-weight:800; }
.scroll-cue { position:absolute; left:0; bottom:34px; display:flex; align-items:center; gap:10px; color:#59666a; font-size:9px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; }
.scroll-cue span { width:38px; height:1px; background:linear-gradient(to right,var(--cyan),transparent); }

.trust-strip { border-block:1px solid var(--line); background:rgba(255,255,255,.015); }
.trust-strip__viewport { overflow:hidden; }
.trust-strip__track { width:100%; }
.trust-strip__inner { min-height:78px; display:flex; align-items:center; justify-content:space-between; gap:28px; color:#7d8c90; font:650 11px/1 ui-monospace,SFMono-Regular,Consolas,monospace; letter-spacing:.1em; white-space:nowrap; }
.trust-strip__inner i { width:3px; height:3px; border-radius:50%; background:rgba(83,217,221,.42); }
.trust-strip__inner--duplicate { display:none; }

.section { padding-block:130px; }
.section-heading { margin-bottom:58px; display:grid; grid-template-columns:1.25fr .75fr; gap:70px; align-items:end; }
.kicker { display:block; color:#5ba1a6; font:750 11px/1.2 ui-monospace,SFMono-Regular,Consolas,monospace; letter-spacing:.14em; text-transform:uppercase; }
.section-heading h2,.remote-copy h2,.region-copy h2,.faq-intro h2,.contact-inner h2,.legal-hero h1,.seo-page h1,.seo-page h2 { margin:18px 0 0; color:#dbe4e2; font-size:clamp(42px,4.2vw,66px); line-height:1.03; letter-spacing:-.052em; font-weight:620; }
.section-heading>p { max-width:430px; margin:0 0 3px; color:#829095; font-size:15px; line-height:1.75; }
.service-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.service-card { min-height:330px; padding:26px; position:relative; overflow:hidden; display:flex; flex-direction:column; border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(150deg,rgba(18,26,34,.88),rgba(12,17,23,.92)); transition:transform .3s ease,border-color .3s ease,background .3s ease; }
.service-card::before { content:""; position:absolute; inset:auto -20% -55% 25%; height:220px; border-radius:50%; background:radial-gradient(circle,rgba(83,217,221,.08),transparent 70%); opacity:0; transition:opacity .3s ease; }
.service-card:hover { transform:translateY(-5px); border-color:rgba(83,217,221,.28); background:linear-gradient(150deg,rgba(20,31,39,.95),rgba(12,18,24,.95)); }
.service-card:hover::before { opacity:1; }
.service-card--wide { grid-column:span 2; }
.service-card__top { display:flex; align-items:flex-start; justify-content:space-between; position:relative; z-index:1; }
.service-icon { width:46px; height:46px; display:grid; place-items:center; border:1px solid rgba(83,217,221,.18); border-radius:13px; background:var(--cyan-soft); color:var(--cyan-bright); }
.service-icon .icon { width:22px; }
.service-number { color:#647277; font:650 11px/1 ui-monospace,SFMono-Regular,Consolas,monospace; }
.service-card h3 { position:relative; z-index:1; margin:38px 0 12px; color:#dce5e3; font-size:22px; letter-spacing:-.035em; }
.service-card p { position:relative; z-index:1; max-width:460px; margin:0; color:#95a2a5; font-size:14px; line-height:1.72; }
.service-tags { position:relative; z-index:1; display:flex; flex-wrap:wrap; gap:6px; margin-top:auto; padding-top:24px; }
.service-tags span { padding:6px 9px; border:1px solid rgba(255,255,255,.09); border-radius:6px; color:#849296; font:650 10px/1 ui-monospace,SFMono-Regular,Consolas,monospace; letter-spacing:.06em; text-transform:uppercase; }

.process-section { position:relative; padding-block:92px; color:var(--process-text); background:linear-gradient(180deg,var(--process-edge),var(--process-bg) 14%,var(--process-bg) 86%,var(--process-edge)); box-shadow:inset 0 1px rgba(83,217,221,.08),inset 0 -1px rgba(83,217,221,.08); }
.process-section::before { content:""; position:absolute; inset:0; opacity:.4; background-image:radial-gradient(rgba(12,35,39,.18) .6px,transparent .6px); background-size:18px 18px; }
.process-section .section-shell { position:relative; }
.process-section .section-heading { margin-bottom:44px; }
.section-heading--light h2 { color:var(--process-text); }
.section-heading--light .kicker { color:#31777a; }
.section-heading--light>p { color:var(--process-muted); }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); position:relative; }
.process-grid::before { content:""; position:absolute; top:47px; left:4%; right:4%; height:1px; background:linear-gradient(to right,transparent,var(--process-line),transparent); }
.process-step { min-height:180px; padding-right:34px; position:relative; }
.process-step>span { color:#738082; font:700 10px/1 ui-monospace,SFMono-Regular,Consolas,monospace; letter-spacing:.08em; }
.process-node { width:16px; height:16px; margin:23px 0 28px; position:relative; z-index:2; border:4px solid var(--process-bg); border-radius:50%; background:#2ca6aa; box-shadow:0 0 0 1px rgba(21,103,107,.24),0 0 22px rgba(44,166,170,.16); }
.process-step h3 { margin:0 0 12px; font-size:19px; letter-spacing:-.03em; }
.process-step p { max-width:240px; margin:0; color:var(--process-muted); font-size:14px; line-height:1.65; }

.remote-panel { min-height:520px; padding:68px; display:grid; grid-template-columns:1fr .92fr; align-items:center; gap:90px; position:relative; overflow:hidden; border:1px solid var(--line); border-radius:30px; background:linear-gradient(145deg,rgba(20,29,38,.92),rgba(10,15,21,.9)); }
.remote-panel::before { content:""; position:absolute; width:500px; height:500px; left:-180px; bottom:-250px; border-radius:50%; background:radial-gradient(circle,rgba(83,217,221,.12),transparent 67%); }
.remote-copy,.schedule-card { position:relative; z-index:1; }
.remote-copy h2 { font-size:clamp(42px,4vw,61px); }
.remote-copy>p { max-width:600px; margin:24px 0 0; color:#a0adaf; font-size:15px; line-height:1.75; }
.remote-features { display:grid; grid-template-columns:repeat(2,1fr); gap:11px 20px; margin-top:30px; }
.remote-features span { display:flex; align-items:center; gap:7px; color:#bac5c5; font-size:12px; font-weight:650; }
.remote-features .icon { width:14px; color:var(--cyan); }
.schedule-card { padding:26px; border:1px solid rgba(144,191,198,.18); border-radius:18px; background:rgba(5,9,13,.48); box-shadow:inset 0 1px 0 rgba(255,255,255,.025); }
.schedule-card__head { display:flex; justify-content:space-between; padding-bottom:20px; border-bottom:1px solid var(--line); color:#849397; font:650 9px/1 ui-monospace,SFMono-Regular,Consolas,monospace; letter-spacing:.1em; }
.schedule-row { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:15px; padding:25px 0; border-bottom:1px solid var(--line); }
.schedule-row>span { color:#bac5c6; font-size:12px; }
.schedule-row strong { font-size:12px; color:#e4ecea; }
.schedule-line { height:1px; background:rgba(255,255,255,.06); position:relative; }
.schedule-line i { position:absolute; left:18%; right:8%; height:1px; background:linear-gradient(to right,var(--cyan),rgba(83,217,221,.12)); }
.schedule-row--muted .schedule-line i { left:55%; opacity:.3; }
.schedule-status { display:flex; align-items:center; gap:10px; margin-top:20px; color:#92a0a4; font:600 10px/1.2 ui-monospace,SFMono-Regular,Consolas,monospace; letter-spacing:.04em; }
.schedule-status .status-dot { width:6px; height:6px; }

.region-section { display:grid; grid-template-columns:.8fr 1.2fr; gap:95px; align-items:center; border-top:1px solid var(--line); }
.region-copy>p { max-width:560px; margin:24px 0 0; color:#96a3a6; font-size:15px; line-height:1.8; }
.text-link { display:inline-flex; align-items:center; gap:10px; margin-top:30px; color:var(--cyan-bright); font-size:13px; font-weight:750; transition:gap .2s ease,color .2s ease; }
.text-link:hover { gap:15px; color:var(--text); }
.text-link .icon { width:17px; }
.region-grid { display:grid; gap:12px; }
.region-grid article { min-height:132px; padding:24px 26px; display:grid; grid-template-columns:95px 1fr; align-items:start; gap:7px 18px; border:1px solid var(--line); border-radius:18px; background:linear-gradient(145deg,rgba(18,27,35,.86),rgba(10,15,21,.8)); }
.region-grid article>span { grid-row:1/3; padding-top:5px; color:#5f8f93; font:700 9px/1.2 ui-monospace,SFMono-Regular,Consolas,monospace; letter-spacing:.12em; }
.region-grid article>strong { color:#d9e3e1; font-size:18px; letter-spacing:-.025em; }
.region-grid article>p { margin:0; color:#8d9a9d; font-size:13px; line-height:1.65; }

.faq-section { display:grid; grid-template-columns:.75fr 1.25fr; gap:110px; align-items:start; }
.faq-intro { position:sticky; top:130px; }
.faq-intro h2 { margin-top:18px; }
.faq-intro p { max-width:330px; margin:22px 0 0; color:#7f8c90; font-size:14px; }
.faq-list { border-top:1px solid var(--line); }
.faq-item { border-bottom:1px solid var(--line); }
.faq-question { width:100%; min-height:94px; padding:0; display:grid; grid-template-columns:42px 1fr 22px; align-items:center; gap:12px; border:0; cursor:pointer; text-align:left; color:#d8e1df; background:transparent; font-size:17px; font-weight:650; letter-spacing:-.015em; }
.faq-question>span { color:#6a777b; font:650 10px/1 ui-monospace,SFMono-Regular,Consolas,monospace; }
.faq-question>strong { font:inherit; }
.faq-question i { width:14px; height:14px; position:relative; }
.faq-question i::before,.faq-question i::after { content:""; position:absolute; inset:50% 0 auto; height:1px; background:var(--cyan); transition:transform .3s ease; }
.faq-question i::after { transform:rotate(90deg); }
.faq-question:hover strong,.faq-question:focus-visible strong { color:var(--cyan-bright); }
.faq-question:focus-visible { outline:2px solid var(--cyan); outline-offset:-2px; border-radius:8px; }
.faq-item[data-open="true"] .faq-question i::after { transform:rotate(0); }
.faq-answer { display:grid; grid-template-rows:0fr; opacity:0; transition:grid-template-rows .38s cubic-bezier(.2,.7,.25,1),opacity .3s ease; }
.faq-answer>div { overflow:hidden; }
.faq-answer p { margin:-7px 42px 30px 54px; color:#96a3a6; font-size:14px; line-height:1.75; transform:translateY(-6px); transition:transform .38s cubic-bezier(.2,.7,.25,1); }
.faq-item[data-open="true"] .faq-answer { grid-template-rows:1fr; opacity:1; }
.faq-item[data-open="true"] .faq-answer p { transform:translateY(0); }

.contact-section { min-height:720px; position:relative; display:grid; place-items:center; overflow:hidden; border-top:1px solid var(--line); background:#0a0e13; }
.contact-section::before { content:""; position:absolute; width:880px; height:880px; left:50%; top:50%; transform:translate(-50%,-50%); border:1px solid rgba(83,217,221,.065); border-radius:50%; box-shadow:0 0 0 100px rgba(83,217,221,.018),0 0 0 200px rgba(83,217,221,.01); }
.contact-glow { position:absolute; width:520px; height:300px; left:50%; top:52%; transform:translate(-50%,-50%); background:radial-gradient(ellipse,rgba(83,217,221,.13),transparent 68%); filter:blur(25px); }
.contact-inner { position:relative; z-index:1; text-align:center; display:flex; flex-direction:column; align-items:center; }
.contact-inner h2 { font-size:clamp(50px,6vw,86px); }
.contact-inner>p:not(.contact-note) { max-width:580px; margin:24px 0 0; color:#879498; font-size:15px; }
.contact-mail { min-width:min(100%,560px); margin-top:42px; padding:15px 18px; display:grid; grid-template-columns:48px 1fr 26px; align-items:center; gap:15px; text-align:left; border:1px solid rgba(83,217,221,.26); border-radius:16px; background:rgba(83,217,221,.07); box-shadow:0 18px 55px rgba(0,0,0,.26); transition:transform .25s ease,border-color .25s ease,background .25s ease; }
.contact-mail:hover { transform:translateY(-3px); border-color:rgba(83,217,221,.52); background:rgba(83,217,221,.105); }
.contact-mail>span:first-child { width:48px; height:48px; display:grid; place-items:center; border-radius:12px; background:var(--cyan); color:#071113; }
.contact-mail>span:nth-child(2) { display:flex; flex-direction:column; color:#dfe9e7; font-size:16px; font-weight:700; letter-spacing:-.02em; }
.contact-mail small { margin-bottom:2px; color:#718084; font-size:9px; font-weight:650; letter-spacing:.1em; text-transform:uppercase; }
.contact-mail>.icon { justify-self:end; color:var(--cyan); }
.contact-note { margin:17px 0 0!important; color:#566367!important; font-size:10px!important; }
.legal-shortcut { min-height:78px; display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--line); color:#617075; font-size:11px; }
.legal-shortcut div { display:flex; gap:22px; }
.legal-shortcut a { color:#879497; transition:color .2s ease; }
.legal-shortcut a:hover { color:var(--cyan); }

.site-footer { border-top:1px solid var(--line); background:#070a0e; }
.footer-grid { padding-block:72px; display:grid; grid-template-columns:2fr .65fr .65fr 1fr; gap:70px; }
.footer-grid>div:first-child>p { max-width:360px; margin:20px 0 0; color:#829095; font-size:14px; line-height:1.7; }
.footer-links,.footer-contact { display:flex; flex-direction:column; align-items:flex-start; gap:10px; }
.footer-links>span,.footer-contact>span { margin-bottom:7px; color:#6f7d81; font:700 10px/1 ui-monospace,SFMono-Regular,Consolas,monospace; letter-spacing:.1em; text-transform:uppercase; }
.footer-links a { color:#a3afb1; font-size:14px; transition:color .2s ease; }
.footer-links a:hover { color:var(--cyan); }
.footer-contact a { color:#d4dddc; font-size:14px; font-weight:650; }
.footer-contact small { color:#829095; font-size:12px; }
.footer-bottom { min-height:68px; display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--line); color:#718085; font-size:12px; letter-spacing:.02em; }

.legal-page { min-height:100vh; padding:160px 0 120px; background:linear-gradient(180deg,rgba(83,217,221,.035),transparent 340px); }
.legal-hero { max-width:850px; padding-bottom:68px; border-bottom:1px solid var(--line); }
.legal-hero h1 { font-size:clamp(62px,8vw,112px); }
.legal-hero>p { max-width:650px; margin:24px 0 0; color:#879498; font-size:16px; }
.legal-layout { display:grid; grid-template-columns:260px 1fr; gap:100px; padding-top:64px; align-items:start; }
.legal-index { position:sticky; top:130px; display:flex; flex-direction:column; gap:5px; }
.legal-index>span { margin-bottom:10px; color:#718085; font:700 10px/1 ui-monospace,SFMono-Regular,Consolas,monospace; letter-spacing:.1em; text-transform:uppercase; }
.legal-index a { padding:7px 0; color:#93a0a3; font-size:13px; transition:color .2s ease,transform .2s ease; }
.legal-index a:hover { color:var(--cyan); transform:translateX(3px); }
.legal-content { max-width:790px; }
.legal-content section { scroll-margin-top:120px; padding:0 0 52px; margin:0 0 52px; border-bottom:1px solid var(--line); }
.legal-number { display:block; margin-bottom:15px; color:#3f7f84; font:750 9px/1 ui-monospace,SFMono-Regular,Consolas,monospace; letter-spacing:.12em; }
.legal-content h2 { margin:0 0 22px; color:#d4dfdd; font-size:25px; letter-spacing:-.035em; }
.legal-content p,.legal-content address { margin:0 0 16px; color:#9aa7aa; font-size:15px; line-height:1.8; font-style:normal; }
.legal-content address strong { color:#bbc7c5; font-weight:650; }
.legal-content a { color:var(--cyan); text-decoration:underline; text-decoration-color:rgba(83,217,221,.25); text-underline-offset:3px; }
.legal-back { display:flex; justify-content:space-between; gap:20px; padding-top:8px; }
.legal-back a { color:#859295; font-size:12px; text-decoration:none; }
.legal-back a:hover { color:var(--cyan); }

.seo-page { padding-top:82px; }
.seo-hero { min-height:720px; padding-block:92px 90px; display:flex; flex-direction:column; justify-content:center; }
.breadcrumbs { margin-bottom:60px; display:flex; gap:10px; color:#6d7b7f; font-size:11px; }
.breadcrumbs a { color:#9ba8aa; }
.breadcrumbs a:hover { color:var(--cyan); }
.seo-hero__grid { display:grid; grid-template-columns:1.2fr .8fr; align-items:end; gap:110px; }
.seo-page h1 { max-width:820px; font-size:clamp(58px,6.6vw,94px); }
.seo-hero__grid>div>p { max-width:720px; margin:28px 0 0; color:#a4b0b2; font-size:18px; line-height:1.75; }
.seo-facts { display:grid; grid-template-columns:1fr 1fr; border:1px solid var(--line); border-radius:20px; overflow:hidden; background:rgba(17,24,31,.72); }
.seo-facts div { min-height:112px; padding:24px; display:flex; flex-direction:column; justify-content:flex-end; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
.seo-facts div:nth-child(2n) { border-right:0; }
.seo-facts div:nth-child(n+3) { border-bottom:0; }
.seo-facts span,.seo-card-grid article>span { color:#5f858a; font:700 9px/1.2 ui-monospace,SFMono-Regular,Consolas,monospace; letter-spacing:.12em; }
.seo-facts strong { margin-top:7px; color:#dce5e3; font-size:13px; }
.seo-intro { display:grid; grid-template-columns:.9fr 1.1fr; gap:110px; border-top:1px solid var(--line); }
.seo-intro>div:last-child { padding-top:4px; }
.seo-intro p { margin:0 0 18px; color:#9aa7aa; font-size:16px; line-height:1.85; }
.seo-services { border-top:1px solid var(--line); }
.seo-card-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.seo-card-grid article { min-height:260px; padding:26px; display:flex; flex-direction:column; border:1px solid var(--line); border-radius:19px; background:linear-gradient(150deg,rgba(18,26,34,.88),rgba(12,17,23,.92)); }
.seo-card-grid h3 { margin:60px 0 12px; color:#dce5e3; font-size:20px; letter-spacing:-.03em; }
.seo-card-grid p { margin:0; color:#8d9a9d; font-size:13px; line-height:1.72; }
.seo-split { display:grid; grid-template-columns:1fr 1fr; gap:14px; border-top:1px solid var(--line); }
.seo-split article { min-height:360px; padding:46px; border:1px solid var(--line); border-radius:24px; background:rgba(17,24,31,.58); }
.seo-split h2 { font-size:clamp(36px,3.4vw,52px); }
.seo-split p { margin:24px 0 0; color:#98a5a8; font-size:15px; line-height:1.8; }
.seo-cta { min-height:640px; display:grid; place-items:center; border-top:1px solid var(--line); background:#0a0e13; text-align:center; }
.seo-cta .section-shell { display:flex; flex-direction:column; align-items:center; }
.seo-cta h2 { max-width:850px; font-size:clamp(48px,5.6vw,78px); }
.seo-cta p { max-width:650px; margin:25px 0 0; color:#8d9a9d; font-size:15px; line-height:1.75; }
.seo-cta .hero-actions { justify-content:center; align-items:center; }
.seo-cta .text-link { margin-top:0; }

html[data-theme="light"] {
  --ink: #f4f7f6;
  --ink-soft: #edf2f0;
  --surface: #ffffff;
  --surface-2: #eef3f1;
  --line: rgba(20, 58, 65, .14);
  --line-strong: rgba(20, 58, 65, .25);
  --text: #172226;
  --muted: #5d6c70;
  --muted-dark: #778589;
  --cyan: #087f86;
  --cyan-bright: #079aa0;
  --cyan-soft: rgba(8, 127, 134, .1);
  --lime: #579a35;
  --process-bg: #11272e;
  --process-edge: #0b1b21;
  --process-text: #eef5f3;
  --process-muted: #a9b8b8;
  --process-line: rgba(96, 218, 217, .34);
}
html[data-theme="light"] body { background:#f4f7f6; color:var(--text); }
html[data-theme="light"] ::selection { background:rgba(8,127,134,.2); color:#102126; }
html[data-theme="light"] .site-shell { background:linear-gradient(180deg,rgba(8,127,134,.025),transparent 20%),#f4f7f6; }
html[data-theme="light"] .site-shell::before {
  opacity:.42;
  background-image:linear-gradient(rgba(8,127,134,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(8,127,134,.04) 1px,transparent 1px);
}
html[data-theme="light"] .pointer-light {
  background:radial-gradient(520px circle at var(--spot-x) var(--spot-y),rgba(20,176,180,.1),rgba(20,176,180,.035) 38%,transparent 70%);
}
html[data-theme="light"] .site-header { border-color:rgba(18,61,68,.11); background:rgba(244,247,246,.82); }
html[data-theme="light"] .brand {
  --logo-panel:#f9fbfa;
  --logo-border:rgba(8,105,112,.28);
  --logo-frame:rgba(8,105,112,.42);
  --logo-glyph:#16343a;
  --logo-accent:#07888f;
}
html[data-theme="light"] .brand-logo { filter:drop-shadow(0 8px 16px rgba(24,62,68,.12)); }
html[data-theme="light"] .brand:hover .brand-logo { filter:drop-shadow(0 10px 20px rgba(8,127,134,.17)); }
html[data-theme="light"] .desktop-nav a { color:#4e5d61; }
html[data-theme="light"] .theme-toggle,html[data-theme="light"] .header-cta { color:#30464b; background:rgba(255,255,255,.64); }
html[data-theme="light"] .header-cta:hover { background:rgba(8,127,134,.08); }
html[data-theme="light"] .mobile-menu nav { background:rgba(249,251,250,.98); box-shadow:0 24px 60px rgba(19,47,53,.16); }
html[data-theme="light"] .mobile-menu nav a { color:#34494e; }
html[data-theme="light"] .eyebrow { color:#4f6266; }
html[data-theme="light"] .hero h1 { color:#132126; }
html[data-theme="light"] .hero h1 span { background:linear-gradient(95deg,#214a51 5%,#078e95 55%,#2e6972); -webkit-background-clip:text; background-clip:text; }
html[data-theme="light"] .hero-lead { color:#526469; }
html[data-theme="light"] .button--ghost { color:#263a3f; background:rgba(255,255,255,.64); }
html[data-theme="light"] .button--ghost:hover { border-color:rgba(8,127,134,.32); background:#fff; }
html[data-theme="light"] .hero-proof { color:#5e6f73; }
html[data-theme="light"] .hero::before { border-color:rgba(8,127,134,.09); box-shadow:0 0 0 85px rgba(8,127,134,.025),0 0 0 170px rgba(8,127,134,.014); }
html[data-theme="light"] .system-orbit { border-color:rgba(8,127,134,.17); }
html[data-theme="light"] .system-card { border-color:rgba(23,91,100,.22); background:linear-gradient(160deg,rgba(255,255,255,.97),rgba(237,244,242,.97)); box-shadow:0 38px 76px rgba(30,64,70,.18),inset 0 1px 0 #fff; }
html[data-theme="light"] .system-topbar,html[data-theme="light"] .system-focus span,html[data-theme="light"] .system-metrics span { color:#607277; }
html[data-theme="light"] .system-focus strong,html[data-theme="light"] .system-metrics strong { color:#1a2b30; }
html[data-theme="light"] .system-log { color:#5a6d72; }
html[data-theme="light"] .floating-note { border-color:rgba(16,91,99,.2); background:rgba(255,255,255,.9); color:#3c5358; box-shadow:0 18px 44px rgba(29,67,73,.15); }
html[data-theme="light"] .trust-strip { background:rgba(255,255,255,.5); }
html[data-theme="light"] .trust-strip__inner { color:#53666a; }
html[data-theme="light"] .section-heading h2,html[data-theme="light"] .remote-copy h2,html[data-theme="light"] .region-copy h2,html[data-theme="light"] .faq-intro h2,html[data-theme="light"] .legal-hero h1,html[data-theme="light"] .seo-page h1,html[data-theme="light"] .seo-page h2 { color:#16272c; }
html[data-theme="light"] .section-heading>p,html[data-theme="light"] .faq-intro p { color:#5b6c70; }
html[data-theme="light"] .service-card { border-color:rgba(20,58,65,.14); background:linear-gradient(150deg,rgba(255,255,255,.96),rgba(238,244,242,.94)); box-shadow:0 16px 45px rgba(24,66,73,.055); }
html[data-theme="light"] .service-card:hover { border-color:rgba(8,127,134,.28); background:#fff; box-shadow:0 20px 55px rgba(24,66,73,.1); }
html[data-theme="light"] .service-card h3 { color:#1b2d32; }
html[data-theme="light"] .service-card p { color:#55686c; }
html[data-theme="light"] .service-number,html[data-theme="light"] .service-tags span { color:#64777b; }
html[data-theme="light"] .service-tags span { border-color:rgba(20,58,65,.12); background:rgba(255,255,255,.55); }
html[data-theme="light"] .section-heading--light h2 { color:var(--process-text); }
html[data-theme="light"] .section-heading--light .kicker { color:#79d7d6; }
html[data-theme="light"] .section-heading--light>p { color:var(--process-muted); }
html[data-theme="light"] .process-step>span { color:#8fa1a3; }
html[data-theme="light"] .process-node { background:#55d2d2; box-shadow:0 0 0 1px rgba(85,210,210,.24),0 0 22px rgba(85,210,210,.18); }
html[data-theme="light"] .remote-panel { border-color:rgba(20,58,65,.14); background:linear-gradient(145deg,#ffffff,#eaf1ef); box-shadow:0 24px 70px rgba(24,66,73,.07); }
html[data-theme="light"] .remote-copy>p,html[data-theme="light"] .remote-features span { color:#55686c; }
html[data-theme="light"] .schedule-card { border-color:rgba(20,58,65,.16); background:rgba(255,255,255,.72); }
html[data-theme="light"] .schedule-card__head,html[data-theme="light"] .schedule-status { color:#617378; }
html[data-theme="light"] .schedule-row>span { color:#4e6166; }
html[data-theme="light"] .schedule-row strong { color:#20353a; }
html[data-theme="light"] .schedule-line { background:rgba(20,58,65,.08); }
html[data-theme="light"] .region-copy>p,html[data-theme="light"] .region-grid article>p { color:#596b6f; }
html[data-theme="light"] .region-grid article { border-color:rgba(20,58,65,.14); background:linear-gradient(145deg,#fff,#edf3f1); }
html[data-theme="light"] .region-grid article>strong { color:#1d3136; }
html[data-theme="light"] .faq-question { color:#263a3f; }
html[data-theme="light"] .faq-question>span { color:#718186; }
html[data-theme="light"] .faq-answer p { color:#56696d; }
html[data-theme="light"] .contact-section { border-color:var(--line); background:#e9f0ee; }
html[data-theme="light"] .contact-section::before { border-color:rgba(8,127,134,.08); box-shadow:0 0 0 100px rgba(8,127,134,.022),0 0 0 200px rgba(8,127,134,.012); }
html[data-theme="light"] .contact-inner h2 { color:#14262b; }
html[data-theme="light"] .contact-inner>p:not(.contact-note) { color:#596b6f; }
html[data-theme="light"] .contact-mail { background:rgba(255,255,255,.74); box-shadow:0 18px 55px rgba(24,66,73,.11); }
html[data-theme="light"] .contact-mail:hover { background:#fff; }
html[data-theme="light"] .contact-mail>span:nth-child(2) { color:#1d3439; }
html[data-theme="light"] .contact-mail small,html[data-theme="light"] .contact-note,html[data-theme="light"] .legal-shortcut { color:#64777b!important; }
html[data-theme="light"] .site-footer { background:#e2e9e7; }
html[data-theme="light"] .footer-grid>div:first-child>p,html[data-theme="light"] .footer-contact small { color:#5d6f73; }
html[data-theme="light"] .footer-links>span,html[data-theme="light"] .footer-contact>span { color:#66787c; }
html[data-theme="light"] .footer-links a { color:#40565b; }
html[data-theme="light"] .footer-contact a { color:#1e363b; }
html[data-theme="light"] .footer-bottom { color:#586b70; }
html[data-theme="light"] .legal-page { background:linear-gradient(180deg,rgba(8,127,134,.055),transparent 340px); }
html[data-theme="light"] .legal-hero>p,html[data-theme="light"] .legal-content p,html[data-theme="light"] .legal-content address { color:#52656a; }
html[data-theme="light"] .legal-content h2 { color:#1f3338; }
html[data-theme="light"] .legal-content address strong { color:#253b40; }
html[data-theme="light"] .legal-index a,html[data-theme="light"] .legal-back a { color:#566a6f; }
html[data-theme="light"] .seo-hero__grid>div>p,html[data-theme="light"] .seo-intro p,html[data-theme="light"] .seo-card-grid p,html[data-theme="light"] .seo-split p { color:#53666a; }
html[data-theme="light"] .seo-facts,html[data-theme="light"] .seo-card-grid article,html[data-theme="light"] .seo-split article { border-color:rgba(20,58,65,.14); background:linear-gradient(145deg,#fff,#edf3f1); }
html[data-theme="light"] .seo-facts strong,html[data-theme="light"] .seo-card-grid h3 { color:#1d3136; }
html[data-theme="light"] .seo-cta { background:#e9f0ee; }

.reveal { opacity:0; transform:translateY(16px); animation:reveal .8s cubic-bezier(.21,.66,.4,1) forwards; }
.reveal--1 { animation-delay:.08s; }
.reveal--2 { animation-delay:.22s; }
@keyframes reveal { to { opacity:1; transform:translateY(0); } }
@keyframes orbit { to { transform:rotate(360deg); } }
@keyframes pulse { 50% { opacity:.35; box-shadow:0 0 4px var(--cyan); } }
@keyframes floaty { 50% { transform:translateY(-8px); } }

@media (max-width: 1080px) {
  .desktop-nav { gap:20px; }
  .hero-grid { grid-template-columns:1fr 1fr; gap:45px; }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .remote-panel { padding:48px; gap:50px; }
  .region-section { gap:50px; }
  .seo-hero__grid { gap:55px; }
  .seo-card-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1.5fr .7fr .7fr; }
  .footer-contact { grid-column:1/-1; padding-top:12px; }
}

@media (max-width: 820px) {
  .section-shell { width:min(calc(100% - 32px),var(--max)); }
  .desktop-nav,.header-cta { display:none; }
  .theme-toggle { margin-left:auto; }
  .mobile-menu { display:block; margin-left:0; }
  .header-inner { min-height:72px; }
  .hero { min-height:auto; padding-top:140px; padding-bottom:94px; }
  .hero-grid { grid-template-columns:1fr; gap:68px; }
  .hero h1 { max-width:700px; }
  .hero-system { min-height:480px; }
  .system-card { transform:none; }
  .floating-note--one { right:0; }
  .floating-note--two { left:auto; right:0; bottom:22px; }
  .scroll-cue { display:none; }
  .trust-strip__viewport { width:100%; max-width:none; padding-inline:0; mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent); }
  .trust-strip__track { width:max-content; display:flex; animation:trustTicker 24s linear infinite; }
  .trust-strip__inner { min-height:70px; width:max-content; justify-content:flex-start; gap:28px; padding-right:28px; }
  .trust-strip__inner--duplicate { display:flex; }
  .section { padding-block:96px; }
  .section-heading { grid-template-columns:1fr; gap:25px; margin-bottom:42px; }
  .section-heading>p { max-width:570px; }
  .process-grid { grid-template-columns:repeat(2,1fr); gap:46px 20px; }
  .process-grid::before { display:none; }
  .process-node { margin-block:20px 24px; }
  .remote-panel { grid-template-columns:1fr; padding:42px 30px; gap:42px; }
  .region-section,.seo-hero__grid,.seo-intro { grid-template-columns:1fr; }
  .region-section,.seo-hero__grid,.seo-intro { gap:48px; }
  .seo-hero { min-height:auto; padding-block:75px 90px; }
  .breadcrumbs { margin-bottom:45px; }
  .seo-split { grid-template-columns:1fr; }
  .faq-section { grid-template-columns:1fr; gap:50px; }
  .faq-intro { position:static; }
  .legal-layout { grid-template-columns:1fr; gap:50px; }
  .legal-index { position:static; display:none; }
  .footer-grid { grid-template-columns:1.5fr 1fr 1fr; gap:35px; }
}

@media (max-width: 560px) {
  .section-shell { width:min(calc(100% - 28px),var(--max)); }
  .brand-copy { display:none; }
  .hero { padding-top:124px; padding-bottom:78px; }
  .hero h1 { margin-top:22px; font-size:clamp(48px,15vw,70px); }
  .hero-lead { font-size:15px; }
  .hero-actions { flex-direction:column; }
  .button { width:100%; }
  .hero-proof { display:grid; gap:9px; }
  .hero-system { min-height:410px; }
  .system-orbit--one { width:360px; height:360px; }
  .system-orbit--two { width:290px; height:290px; }
  .system-focus { padding:25px 18px 22px; }
  .system-mark { width:54px; height:54px; }
  .system-focus strong { font-size:13px; }
  .system-metrics { margin-inline:11px; }
  .system-metrics div { padding:12px 7px; }
  .floating-note--one { top:35px; right:-4px; }
  .floating-note--two { bottom:32px; }
  .trust-strip__inner { gap:24px; padding-right:24px; font-size:10.5px; }
  .section { padding-block:82px; }
  .section-heading h2,.remote-copy h2,.region-copy h2,.faq-intro h2 { font-size:40px; }
  .service-grid { grid-template-columns:1fr; }
  .service-card,.service-card--wide { grid-column:auto; min-height:300px; }
  .process-grid { grid-template-columns:1fr; gap:42px; }
  .process-step { min-height:auto; padding:0; }
  .process-node { display:none; }
  .process-step h3 { margin-top:14px; }
  .remote-panel { padding:36px 22px; border-radius:22px; }
  .remote-features { grid-template-columns:1fr; }
  .region-grid article { grid-template-columns:1fr; }
  .region-grid article>span { grid-row:auto; }
  .seo-page { padding-top:72px; }
  .seo-page h1 { font-size:49px; }
  .seo-facts,.seo-card-grid { grid-template-columns:1fr; }
  .seo-facts div { border-right:0; border-bottom:1px solid var(--line)!important; }
  .seo-facts div:last-child { border-bottom:0!important; }
  .seo-intro { gap:32px; }
  .seo-card-grid article { min-height:240px; }
  .seo-split article { min-height:auto; padding:34px 24px; }
  .seo-cta { min-height:600px; }
  .schedule-row { grid-template-columns:1fr auto; }
  .schedule-line { display:none; }
  .faq-question { grid-template-columns:30px 1fr 20px; min-height:82px; font-size:15px; }
  .faq-answer p { margin:0 28px 25px 42px; }
  .contact-section { min-height:650px; }
  .contact-inner h2 { font-size:48px; }
  .contact-mail { min-width:100%; grid-template-columns:42px 1fr 20px; padding:12px; }
  .contact-mail>span:first-child { width:42px; height:42px; }
  .contact-mail>span:nth-child(2) { font-size:12px; }
  .legal-shortcut { align-items:flex-start; flex-direction:column; justify-content:center; gap:9px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:42px 20px; }
  .footer-grid>div:first-child,.footer-contact { grid-column:1/-1; }
  .footer-grid>div:first-child .brand-copy { display:grid; }
  .footer-bottom { min-height:82px; align-items:flex-start; flex-direction:column; justify-content:center; gap:7px; }
  .legal-page { padding-top:125px; }
  .legal-hero { padding-bottom:45px; }
  .legal-hero h1 { font-size:58px; }
  .legal-layout { padding-top:45px; }
  .legal-content section { margin-bottom:40px; padding-bottom:40px; }
  .legal-back { flex-direction:column; }
}

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

@keyframes trustTicker { to { transform:translateX(-50%); } }

@media (max-width:820px) and (prefers-reduced-motion: reduce) {
  .trust-strip__viewport { overflow-x:auto; mask-image:none; scrollbar-width:none; }
  .trust-strip__viewport::-webkit-scrollbar { display:none; }
  .trust-strip__track { animation:none; }
  .trust-strip__inner--duplicate { display:none; }
}

@media (pointer: coarse) { .pointer-light { display:none; } }
