:root {
  --navy: #07111f;
  --ink: #152337;
  --yellow: #fff100;
  --blue: #2458ff;
  --muted: #657488;
  --pale: #f4f7fa;
  --line: #dce4ed;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(1200px, calc(100% - 64px));
  margin: auto;
}
.head {
  height: 78px;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.head:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 20%;
  background: var(--yellow);
}
.head .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo-link {
  display: flex;
  width: 116px;
  align-items: center;
  gap: 8px;
  overflow: visible;
}
.header-logo-mark { display:grid; width:32px; height:34px; flex:0 0 32px; place-items:center; overflow:visible; }
.header-logo-mark img { width:30px; transform-origin:50% 55%; will-change:transform; animation:headerLogoFloat 4.8s ease-in-out infinite; filter:drop-shadow(0 8px 10px rgba(255,193,0,.16)); }
.header-logo-word { width:76px; height:auto; filter:brightness(0) saturate(100%) invert(10%) sepia(16%) saturate(1937%) hue-rotate(174deg) brightness(92%) contrast(101%); }
.logo-link:hover .header-logo-mark img { animation-duration:2.2s; filter:drop-shadow(0 10px 12px rgba(255,193,0,.3)); }
@keyframes headerLogoFloat { 0%,100% { transform:translate3d(0,-2px,0) rotate(-3deg); } 48% { transform:translate3d(0,3px,0) rotate(3deg); } 72% { transform:translate3d(1px,1px,0) rotate(1deg); } }
.foot {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 40px !important;
}
.foot .logo {
  width: 115px !important;
  max-width: 115px !important;
  height: auto !important;
  flex: 0 0 115px !important;
  filter: brightness(1.7);
}
.foot small {
  display: block !important;
  max-width: 220px !important;
  line-height: 1.6 !important;
  text-align: right !important;
}
.hero .network {
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
}
.hero .network:before {
  content: '';
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    transparent 0 18deg,
    rgba(36, 88, 255, 0.08) 18deg 19deg
  );
  animation: spin 36s linear infinite;
}
.hero .orbit {
  animation: spin 22s linear infinite;
}
.hero .orbit:after {
  animation: spin-reverse 14s linear infinite;
}
.hero .core {
  animation: core-pulse 3.4s ease-in-out infinite;
}
.hero .node {
  cursor: pointer;
  user-select: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  animation: node-float 4.6s ease-in-out infinite;
}
.hero .node:nth-of-type(2) {
  animation-delay: -0.8s;
}
.hero .node:nth-of-type(3) {
  animation-delay: -1.6s;
}
.hero .node:nth-of-type(4) {
  animation-delay: -2.4s;
}
.hero .node:nth-of-type(5) {
  animation-delay: -3.2s;
}
.hero .node:nth-of-type(6) {
  animation-delay: -4s;
}
.hero .node:hover,
.hero .node.is-active {
  background: var(--yellow);
  border-color: #d8cd00;
  color: var(--navy);
}
@keyframes spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes core-pulse {
  50% {
    transform: scale(1.055);
    box-shadow:
      0 20px 55px rgba(36, 88, 255, 0.28),
      0 0 0 8px rgba(255, 241, 0, 0.08);
  }
}
@keyframes node-float {
  50% {
    translate: 0 -8px;
  }
}
.nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
}
.nav a {
  position: relative;
}
.nav a:after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--yellow);
  transition: right 0.25s;
}
.nav a:hover:after,
.nav a.active:after {
  right: 0;
}
.cta {
  padding: 15px 18px;
  background: var(--navy);
  color: #fff;
  border-left: 4px solid var(--yellow);
  font-size: 12px;
  font-weight: 700;
}
.menu-toggle,
.mobile-panel,
.mobile-dock {
  display: none;
}
.page-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(36, 88, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 88, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 82% 52%, rgba(36, 88, 255, 0.16), transparent 26%);
  background-size:
    56px 56px,
    56px 56px,
    auto;
}
.page-hero:after {
  content: 'CLICK / MOVE / CONNECT';
  position: absolute;
  right: 25px;
  top: 20px;
  font: 700 8px Arial;
  letter-spacing: 0.18em;
  color: #8491a2;
}
.eyebrow {
  font: 700 10px Arial;
  letter-spacing: 0.2em;
  color: #68778b;
}
.eyebrow:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 241, 0, 0.22);
}
.page-hero h1 {
  font-size: clamp(45px, 5.5vw, 74px);
  line-height: 1.25;
  letter-spacing: -0.06em;
  margin: 25px 0;
}
.page-hero .lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}
.float-code {
  position: absolute;
  right: 8%;
  top: 25%;
  width: 340px;
  height: 240px;
}
.code-node {
  position: absolute;
  padding: 10px 13px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 25px rgba(7, 17, 31, 0.08);
  font: 700 10px Arial;
  cursor: pointer;
  transition:
    transform 0.25s,
    background 0.25s;
}
.code-node:hover,
.code-node.is-active {
  background: var(--yellow);
  transform: translateY(-5px) rotate(-2deg);
}
.code-node:nth-child(1) {
  top: 0;
  left: 30%;
}
.code-node:nth-child(2) {
  top: 35%;
  right: 0;
}
.code-node:nth-child(3) {
  bottom: 0;
  left: 40%;
}
.code-node:nth-child(4) {
  top: 42%;
  left: 0;
}
.code-line {
  position: absolute;
  inset: 25%;
  border: 1px dashed rgba(36, 88, 255, 0.35);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}
.section {
  padding: 105px 0;
}
.section.alt {
  background: var(--pale);
}
.section.dark {
  background: var(--navy);
  color: #fff;
}
.section h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.4;
  letter-spacing: -0.045em;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.copy {
  color: var(--muted);
  line-height: 2;
}
.dark .copy {
  color: #9dacbe;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.section-lead { max-width: 760px; margin: 22px 0 38px; color: var(--muted); line-height: 1.9; }
.dark-lead { color: #9dacbe; }
.feature {
  position: relative;
  border: 1px solid var(--line);
  padding: 30px;
  min-height: 210px;
  background: #fff;
}
.feature:after {
  content: '+';
  position: absolute;
  right: 10px;
  top: 8px;
  color: #99a6b5;
}
.feature b {
  font: 700 10px Arial;
  color: var(--blue);
}
.feature h3 {
  font-size: 20px;
  margin: 45px 0 15px;
}
.feature p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.dark .feature {
  background: #0b1728;
  border-color: #2a394e;
}
.dark .feature p {
  color: #9aa9bb;
}
.tech-ticker {
  overflow: hidden;
  background: var(--yellow);
  padding: 10px 0;
  font: 800 9px Arial;
  letter-spacing: 0.18em;
  white-space: nowrap;
}
.tech-ticker span {
  display: inline-block;
  animation: ticker 20s linear infinite;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.step {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 150px;
}
.step small {
  font: 700 9px Arial;
  color: var(--blue);
}
.step h3 {
  margin-top: 35px;
}
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #2c3b50;
}
.compare article {
  padding: 32px;
  background: #07111f;
  color: #fff;
}
.compare article + article {
  border-left: 1px solid #2c3b50;
}
.compare .ours {
  border-top: 3px solid var(--yellow);
  background: linear-gradient(145deg, #102c6c, #081321);
}
.compare ul {
  list-style: none;
  padding: 0;
}
.compare li {
  padding: 13px 0 13px 20px;
  border-top: 1px solid #25354a;
  color: #a7b5c5;
  position: relative;
}
.compare li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 7px;
  height: 2px;
  background: #77869a;
}
.ours li:before {
  height: 7px;
  background: var(--yellow);
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.work {
  border: 1px solid var(--line);
  padding: 34px;
  min-height: 300px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.work:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--yellow);
}
.work small {
  font: 700 9px Arial;
  color: var(--blue);
}
.work h3 {
  font-size: 23px;
  line-height: 1.5;
  margin: 45px 0;
}
.work p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.tech-visual { position: relative; height: 104px; margin: 22px 0 0; overflow: hidden; border: 1px solid #dbe3ed; color: var(--navy); background: linear-gradient(145deg,#f7faff,#edf3fb); font-family: Arial,sans-serif; }
.tech-visual:before { content: ''; position: absolute; inset: 0; opacity: .55; background-image: linear-gradient(rgba(36,88,255,.09) 1px,transparent 1px),linear-gradient(90deg,rgba(36,88,255,.09) 1px,transparent 1px); background-size: 18px 18px; }
.has-tech-visual h3,.work.has-tech-visual h3,.case.has-tech-visual h3 { margin-top: 24px; }
.tv-brief { position: absolute; z-index: 2; inset: 15px 13px 30px; display: flex; align-items: center; justify-content: center; gap: 9px; }.tv-brief > span { padding: 12px 10px; color: var(--navy); border: 1px solid #afbed0; border-radius: 18px; background: #fff; font-size: 7px; font-weight: 700; }.tv-brief > i { color: var(--blue); font-style: normal; }.tv-brief > div { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }.tv-brief > div b { display: grid; width: 38px; height: 38px; place-items: center; color: var(--blue); border: 1px solid rgba(36,88,255,.3); background: #fff; font: 700 7px Arial; }.tv-brief > div b:last-child { color: var(--navy); border-color: var(--yellow); box-shadow: inset 0 -4px var(--yellow); }
.tv-prototype { position: absolute; z-index: 2; inset: 10px 13px 25px; overflow: hidden; border: 1px solid #afbed0; background: #fff; }.tv-prototype header { display: flex; align-items: center; gap: 4px; height: 15px; padding: 0 6px; background: #dfe7f1; }.tv-prototype header i { width: 4px; height: 4px; border-radius: 50%; background: #9aaabd; }.tv-prototype header b { margin-left: auto; color: var(--blue); font: 700 5px Arial; }.tv-prototype main { display: grid; grid-template-columns: 28px 1fr; height: calc(100% - 15px); }.tv-prototype aside { background: #102036; }.tv-prototype main > div { padding: 9px; }.tv-prototype strong { display: block; width: 68%; height: 5px; margin-bottom: 5px; background: #1a293d; }.tv-prototype strong + strong { width: 43%; height: 3px; background: #aebdce; }.tv-prototype main span { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; margin-top: 9px; }.tv-prototype main span i { height: 22px; border: 1px solid #d7e0ea; background: #eff4f9; }
.tv-workflow { position: absolute; z-index: 2; inset: 12px; display: flex; align-items: center; gap: 5px; }.tv-workflow span { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid #afbed0; border-radius: 50%; color: var(--navy); background: #fff; font-size: 6px; font-weight: 700; }.tv-workflow span:nth-of-type(2) { opacity: .35; text-decoration: line-through; }.tv-workflow i { flex: 1; height: 1px; background: var(--blue); }.tv-workflow b { position: absolute; left: 29%; right: 8%; bottom: 3px; padding: 4px; color: #0e9c6d; border-top: 1px dashed #21b684; text-align: center; font-size: 5px; letter-spacing: .1em; }
.tv-lifecycle { position: absolute; z-index: 2; left: 13px; right: 13px; top: 19px; display: flex; align-items: center; gap: 5px; }.tv-lifecycle span { color: var(--blue); font: 700 7px Arial; }.tv-lifecycle > i { position: relative; flex: 1; height: 2px; background: #bdcada; }.tv-lifecycle > i b { position: absolute; top: -3px; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); animation: lifecycle-run 3s ease-in-out infinite; }.tv-loop { position: absolute; z-index: 2; left: 14px; right: 14px; bottom: 13px; display: flex; align-items: center; gap: 8px; }.tv-loop i { width: 22px; height: 22px; border: 2px solid var(--blue); border-left-color: transparent; border-radius: 50%; animation: spin 2s linear infinite; }.tv-loop b { color: #66788e; font-size: 6px; letter-spacing: .1em; }
.tv-stack { position: absolute; z-index: 2; inset: 8px 12px 24px; display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: 1fr 1fr; gap: 5px; }
.tv-stack > b { grid-row: 1 / 3; display: grid; place-items: center; color: var(--yellow); background: var(--navy); border: 1px solid var(--blue); font: 800 13px Arial; box-shadow: inset 0 0 18px rgba(36,88,255,.38); }
.tv-stack span { display: grid; place-items: center; color: var(--blue); border: 1px solid #b7c4d4; background: #fff; font: 700 6px Arial; }
.tv-stack span:nth-of-type(4),.tv-stack span:nth-of-type(5),.tv-stack span:nth-of-type(6) { color: var(--navy); border-color: rgba(255,241,0,.75); box-shadow: inset 0 -3px var(--yellow); }
.tv-stack i { position: absolute; left: 19%; width: 66%; height: 1px; background: linear-gradient(90deg,var(--blue),transparent); transform-origin: left; animation: stack-signal 1.8s ease-in-out infinite; }
.tv-stack i:nth-of-type(1) { top: 24%; }.tv-stack i:nth-of-type(2) { top: 50%; animation-delay: -.6s; }.tv-stack i:nth-of-type(3) { top: 76%; animation-delay: -1.2s; }
.tv-flow { position: absolute; z-index: 2; left: 12px; right: 12px; top: 13px; display: flex; align-items: center; gap: 7px; }
.tv-flow b { flex: none; padding: 7px 8px; border: 1px solid #aebdd0; background: #fff; color: var(--blue); font-size: 7px; letter-spacing: .08em; }
.tv-flow i { position: relative; flex: 1; height: 1px; background: var(--blue); }
.tv-flow i:after { content: ''; position: absolute; right: -1px; top: -2px; border: 3px solid transparent; border-left-color: var(--blue); }
.tv-wave { position: absolute; z-index: 2; left: 14px; bottom: 16px; display: flex; align-items: center; gap: 3px; height: 31px; }
.tv-wave i { display: block; width: 3px; height: 30%; background: var(--blue); animation: tv-wave 1s ease-in-out infinite alternate; }
.tv-wave i:nth-child(2n) { height: 85%; animation-delay: -.4s; }.tv-wave i:nth-child(3n) { height: 55%; animation-delay: -.7s; }
.tech-visual > strong { position: absolute; z-index: 2; right: 13px; bottom: 15px; color: #6e7e93; font-size: 7px; letter-spacing: .1em; }
.tech-visual > strong em { margin-left: 5px; color: var(--blue); font-style: normal; font-size: 18px; }
.tv-browser { position: absolute; z-index: 2; inset: 11px 15px; padding: 22px 10px 8px 42px; border: 1px solid #afbed0; background: #fff; box-shadow: 5px 5px 0 rgba(36,88,255,.1); }
.tv-browser > span { position: absolute; inset: 0 0 auto; height: 14px; border-bottom: 1px solid #dbe3ed; background: linear-gradient(90deg,var(--blue) 0 7px,transparent 7px 12px,var(--yellow) 12px 19px,transparent 19px); }
.tv-browser b { font-size: 7px; letter-spacing: .1em; }
.tv-browser i { display: block; height: 5px; margin-top: 6px; background: #dfe6ef; }.tv-browser i:nth-of-type(2) { width: 72%; }.tv-browser i:nth-of-type(3) { width: 48%; }
.tv-browser small { position: absolute; right: 8px; bottom: 7px; color: #14a979; font: 700 6px Arial; }
.tv-mail,.tv-plan { position: absolute; z-index: 2; inset: 15px 12px 31px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.tv-mail b { padding: 10px 9px; border: 1px solid #aebdd0; background: #fff; color: var(--blue); font-size: 7px; }.tv-mail > i { color: var(--blue); font-style: normal; }
.tv-mail span { display: grid; gap: 3px; width: 52px; }.tv-mail em { height: 5px; background: #cbd6e4; }.tv-mail em:nth-child(2) { width: 72%; }
.tech-visual > small { position: absolute; z-index: 2; left: 12px; bottom: 9px; color: #77889e; font: 700 6px Arial; letter-spacing: .1em; }
.tv-plan span { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; width: 50px; height: 48px; padding: 4px; border: 1px solid #aebdd0; background: #fff; }.tv-plan span i { border: 1px solid #cdd7e4; }.tv-plan span i:first-child { grid-row: span 2; }
.tv-plan b { padding: 7px 5px; color: var(--blue); border: 1px solid rgba(36,88,255,.25); background: rgba(36,88,255,.07); font-size: 6px; animation: tv-scan 1.8s ease-in-out infinite; }
.tv-progress { position: absolute; z-index: 2; left: 13px; right: 95px; bottom: 22px; height: 5px; background: #dbe3ed; }.tv-progress i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg,var(--blue),var(--yellow)); animation: tv-progress 2.4s ease-in-out infinite; transform-origin: left; }
.tv-core { position: absolute; z-index: 2; inset: 10px; display: grid; place-items: center; }.tv-core b { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--blue); border-radius: 50%; color: var(--blue); background: #fff; box-shadow: 0 0 0 8px rgba(36,88,255,.08); font-size: 12px; }.tv-core i { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 3px rgba(255,241,0,.18); }.tv-core i:nth-child(1) { transform: translate(-74px,-25px); }.tv-core i:nth-child(2) { transform: translate(-72px,28px); }.tv-core i:nth-child(3) { transform: translate(72px,-25px); }.tv-core i:nth-child(5) { transform: translate(74px,28px); }.tv-core i:nth-child(6) { transform: translate(0,-37px); }
.tv-line { position: absolute; z-index: 2; inset: 10px 12px; display: grid; grid-template-columns: 42px 1fr; overflow: hidden; border: 1px solid #afbed0; background: #fff; }
.tv-line aside { display: grid; align-content: start; gap: 7px; padding: 9px; background: #e9f0f8; }
.tv-line aside i { width: 23px; height: 23px; border-radius: 50%; background: linear-gradient(145deg,#9fb0c5,#d6e0eb); }
.tv-line main { position: relative; padding: 10px; }
.tv-line main b { color: #1ab66b; font-size: 8px; }
.tv-line main > span { display: block; width: 62%; height: 7px; margin-top: 6px; border-radius: 6px; background: #e2e8f0; }
.tv-line main > span:nth-of-type(2) { width: 48%; margin-left: auto; background: #bdf39b; }
.tv-line main > span:nth-of-type(3) { width: 72%; }
.tv-line main small { position: absolute; right: 6px; bottom: 5px; color: var(--blue); font: 700 5px Arial; }
.tv-ops { position: absolute; z-index: 2; inset: 10px 12px; display: grid; grid-template-columns: 36px 1fr; overflow: hidden; border: 1px solid #afbed0; background: #fff; }.tv-ops aside { display: grid; align-content: start; gap: 8px; padding: 9px; background: #0c1a2c; }.tv-ops aside i { height: 5px; background: #52657d; }.tv-ops aside i:first-child { background: var(--yellow); }.tv-ops main { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 9px; }.tv-ops main > span { padding: 6px; color: #8391a4; background: #f0f4f9; font-size: 5px; }.tv-ops main > span b { display: block; color: var(--blue); font-size: 15px; }.tv-ops main div { grid-column: 1 / -1; display: flex; align-items: end; gap: 4px; height: 25px; }.tv-ops main div i { flex: 1; height: 40%; background: #9cb5ff; }.tv-ops main div i:nth-child(2) { height: 85%; }.tv-ops main div i:nth-child(3) { height: 62%; background: var(--yellow); }
.tv-connect { position: absolute; z-index: 2; inset: 12px; display: flex; align-items: center; justify-content: center; gap: 4px; }.tv-connect span { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid #afbed0; border-radius: 50%; color: var(--blue); background: #fff; font: 700 6px Arial; }.tv-connect i { width: 13px; height: 1px; background: var(--blue); }.tv-connect b { position: absolute; bottom: 0; color: #15a978; font-size: 6px; letter-spacing: .12em; }
.tv-auto { position: absolute; z-index: 2; left: 12px; right: 12px; top: 15px; display: flex; align-items: center; gap: 6px; }.tv-auto span { padding: 8px; border: 1px solid #afbed0; color: var(--blue); background: #fff; font: 700 6px Arial; }.tv-auto i { flex: 1; height: 2px; background: linear-gradient(90deg,var(--blue),var(--yellow)); }.tv-auto-log { position: absolute; z-index: 2; left: 13px; right: 13px; bottom: 13px; display: flex; align-items: center; gap: 4px; }.tv-auto-log i { width: 5px; height: 5px; border-radius: 50%; background: #18ad78; }.tv-auto-log b { margin-left: auto; color: #63758b; font-size: 6px; letter-spacing: .1em; }
.tv-improve { position: absolute; z-index: 2; left: 13px; right: 13px; top: 22px; display: flex; align-items: center; gap: 6px; }.tv-improve span { color: var(--blue); font: 700 7px Arial; }.tv-improve > i { position: relative; flex: 1; height: 3px; background: #cad5e2; }.tv-improve > i b { position: absolute; left: 0; top: -2px; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); animation: improve-run 2.2s ease-in-out infinite; }
@keyframes tv-wave { to { transform: scaleY(.45); opacity: .5; } }
@keyframes lifecycle-run { 0% { left: 0; } 70%,100% { left: calc(100% - 8px); } }
@keyframes stack-signal { 0%,100% { opacity: .15; transform: scaleX(.15); } 55% { opacity: 1; transform: scaleX(1); } }
@keyframes tv-scan { 50% { color: var(--navy); background: var(--yellow); box-shadow: 0 0 18px rgba(255,241,0,.35); } }
@keyframes tv-progress { 0% { transform: scaleX(.15); } 70%,100% { transform: scaleX(1); } }
@keyframes improve-run { 0% { left: 0; } 70%,100% { left: calc(100% - 7px); } }
.system-process-visual { position: relative; display: grid; grid-template-columns: 260px 1fr; align-items: center; gap: 38px; margin: 45px 0 22px; padding: 28px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(145deg,#07111f,#102a54); box-shadow: 12px 12px 0 rgba(36,88,255,.1); }
.system-process-visual:before { content: ''; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px); background-size: 24px 24px; }
.process-screen { position: relative; z-index: 2; overflow: hidden; border: 5px solid #31445d; border-radius: 7px; background: #fff; box-shadow: 0 20px 35px rgba(0,0,0,.28); }
.process-screen-head { display: flex; align-items: center; gap: 5px; height: 24px; padding: 0 7px; background: #dfe7f1; }.process-screen-head i { width: 5px; height: 5px; border-radius: 50%; background: #99aabd; }.process-screen-head span { margin-left: auto; color: var(--blue); font: 700 5px Arial; letter-spacing: .1em; }
.process-screen-body { display: grid; grid-template-columns: 42px 1fr; min-height: 130px; }.process-screen-body aside { display: grid; align-content: start; gap: 8px; padding: 10px; background: #0d1a2c; }.process-screen-body aside i { height: 5px; background: #4b5d73; }.process-screen-body aside i:first-child { background: var(--yellow); }.process-screen-body main { padding: 17px; }.process-screen-body main > strong { display: block; width: 72%; height: 8px; margin-bottom: 8px; background: #17263a; }.process-screen-body main > strong + strong { width: 44%; height: 5px; background: #a9b7c8; }.process-screen-body main div { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-top: 18px; }.process-screen-body main div i { height: 42px; background: #edf2f8; border: 1px solid #d9e1eb; }
.process-pipeline { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }.process-pipeline span { display: grid; gap: 4px; color: #c2cfdd; font-size: 8px; white-space: nowrap; }.process-pipeline span b { color: var(--yellow); font: 700 8px Arial; }.process-pipeline > i { flex: 1; height: 1px; margin: 0 7px; background: #49617d; }.process-pipeline > i:after { content: ''; display: block; width: 32%; height: 3px; margin-top: -1px; background: var(--yellow); box-shadow: 0 0 12px var(--yellow); animation: pipeline-run 2s linear infinite; }
@keyframes pipeline-run { from { transform: translateX(0); } to { transform: translateX(210%); } }
.team-architecture { display: grid; grid-template-columns: 1fr 80px 1.2fr 80px 1fr; align-items: center; gap: 10px; margin: 44px 0 18px; }.team-architecture article { min-height: 180px; padding: 26px; border: 1px solid #304159; background: #0a1727; }.team-architecture article small { color: #6f829b; font: 700 7px Arial; letter-spacing: .15em; }.team-architecture article > b { display: block; margin: 36px 0 12px; font-size: 21px; }.team-architecture article > span { color: #93a3b7; font-size: 10px; }.team-architecture-hub { border-color: var(--yellow) !important; background: linear-gradient(145deg,#123278,#0b192a) !important; box-shadow: 0 0 30px rgba(36,88,255,.2); }.team-architecture-hub div { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }.team-architecture-hub div span { padding: 6px; color: var(--yellow); border: 1px solid rgba(255,241,0,.24); text-align: center; font-size: 7px; }.team-architecture > i { display: grid; justify-items: center; gap: 4px; color: var(--yellow); font-style: normal; }.team-architecture > i b { font-size: 22px; }.team-architecture > i em { color: #667a94; font: 700 6px Arial; letter-spacing: .1em; }
.system-case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.system-case-grid > article { padding: 28px; border: 1px solid var(--line); background: #fff; }
.system-case-grid > article > small { color: var(--blue); font: 700 8px Arial; letter-spacing: .14em; }
.system-case-grid h3 { margin: 18px 0 12px; font-size: 23px; }
.system-case-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.9; }
.budget-system-ui,.uploader-system-ui { height: 210px; margin-bottom: 25px; overflow: hidden; border: 1px solid #b9c6d6; background: #f4f7fb; box-shadow: 7px 7px 0 rgba(36,88,255,.09); }
.budget-system-ui header,.uploader-system-ui header { display: flex; align-items: center; justify-content: space-between; height: 32px; padding: 0 12px; color: #fff; background: var(--navy); font: 700 7px Arial; letter-spacing: .12em; }
.budget-system-ui header b,.uploader-system-ui header b { color: var(--yellow); font-size: 6px; }
.budget-system-ui > div { display: grid; grid-template-columns: 48px 1fr; height: calc(100% - 32px); }
.budget-system-ui aside { display: grid; align-content: start; gap: 9px; padding: 12px; background: #dfe7f1; }
.budget-system-ui aside i { height: 5px; background: #9eafc2; }
.budget-system-ui aside i:first-child { background: var(--blue); }
.budget-system-ui main { padding: 20px; }
.budget-system-ui main > strong { color: #697a90; font-size: 8px; }
.budget-system-ui main > strong b { margin-left: 7px; color: var(--blue); font-size: 23px; }
.budget-bars { display: flex; align-items: end; gap: 8px; height: 75px; margin: 15px 0 8px; border-bottom: 1px solid #cbd6e3; }
.budget-bars i { flex: 1; height: 35%; background: #93adff; }.budget-bars i:nth-child(2) { height: 64%; }.budget-bars i:nth-child(3) { height: 48%; }.budget-bars i:nth-child(4) { height: 85%; background: var(--blue); }.budget-bars i:nth-child(5) { height: 72%; background: var(--yellow); }
.budget-system-ui main small { color: #8998aa; font: 700 5px Arial; }
.upload-flow { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 35px 15px 22px; }
.upload-flow span { display: grid; width: 82px; min-height: 55px; place-items: center; border: 1px solid #afbed0; color: var(--blue); background: #fff; font: 700 7px Arial; }
.upload-flow span small { color: #8a99ac; font-size: 6px; }.upload-flow > i { color: var(--blue); font-style: normal; }
.upload-progress { position: relative; height: 6px; margin: 0 20px; background: #d6e0eb; }.upload-progress i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg,var(--blue),var(--yellow)); animation: tv-progress 2.4s ease-in-out infinite; transform-origin: left; }.upload-progress b { position: absolute; right: 0; top: 12px; color: #16a978; font-size: 6px; letter-spacing: .12em; }
.system-scale { display: grid; grid-template-columns: 1fr 150px 1fr; align-items: stretch; margin-top: 18px; color: #fff; background: var(--navy); }
.system-scale > div { padding: 30px; }.system-scale > div.large { background: linear-gradient(145deg,#12337a,#0b192b); }.system-scale small { color: #71849b; font: 700 7px Arial; letter-spacing: .14em; }.system-scale div > b { display: block; margin: 28px 0 8px; color: #fff; font-size: 20px; }.system-scale strong { display: block; color: var(--yellow); font: 500 40px Arial; }.system-scale p { color: #9dacbe; font-size: 11px; line-height: 1.8; }
.system-scale > i { position: relative; display: grid; place-items: center; overflow: hidden; color: #71849b; font-style: normal; background: #0a1727; }.system-scale > i:before { content: ''; position: absolute; width: 1px; height: 72%; background: linear-gradient(transparent,var(--yellow),transparent); }.system-scale > i span { position: relative; padding: 10px; background: #0a1727; writing-mode: vertical-rl; font: 700 7px Arial; letter-spacing: .14em; }
.scale-note { margin: 12px 0 0; color: var(--muted); font-size: 9px; line-height: 1.7; }
.outcome-grid .metric { position: relative; min-height: 390px; overflow: hidden; color: #fff; border-color: #2b3c52; background: linear-gradient(145deg,#0d1d31,#081321); }
.outcome-grid .metric:before { content: ''; position: absolute; width: 180px; height: 180px; right: -90px; top: -90px; border: 1px solid rgba(255,241,0,.22); border-radius: 50%; box-shadow: 0 0 0 26px rgba(36,88,255,.06),0 0 0 52px rgba(36,88,255,.035); }
.outcome-grid .metric small { color: var(--yellow); }
.outcome-grid .metric b { position: relative; margin-top: 62px; color: #fff; font-family: inherit; font-size: clamp(25px,3vw,38px); line-height: 1.45; }
.outcome-grid .metric p { position: relative; color: #a8b6c7; font-size: 13px; line-height: 1.95; }
.outcome-grid .metric em { position: absolute; left: 30px; bottom: 25px; color: #60738c; font: 700 7px Arial; letter-spacing: .16em; }
.profile {
  border-top: 1px solid var(--line);
}
.company-philosophy { grid-template-columns: minmax(0,1.2fr) minmax(320px,.8fr); gap: 55px; }
.philosophy-title { font-size: clamp(38px,3.7vw,56px); letter-spacing: -.045em; }
.philosophy-title span { display: block; white-space: nowrap; }
.company-philosophy .copy { padding-top: 100px; }
.profile div {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.profile dd {
  margin: 0;
  color: var(--muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}
.contact-note {
  padding: 35px;
  background: var(--navy);
  color: #fff;
  height: max-content;
}
.contact-note p {
  color: #9eacbd;
  line-height: 1.9;
}
.form {
  display: grid;
  gap: 20px;
}
.form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}
.form input,
.form select,
.form textarea {
  border: 1px solid var(--line);
  padding: 15px;
  font: inherit;
  background: #fafbfd;
}
.button {
  display: inline-flex;
  justify-content: center;
  padding: 18px 24px;
  border: 0;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  box-shadow: 8px 8px 0 var(--yellow);
  cursor: pointer;
}
.content-grid,
.scope-grid,
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.content-card,
.scope-item,
.metric {
  border: 1px solid var(--line);
  background: #fff;
  padding: 30px;
}
.content-card h3,
.scope-item h3 {
  margin: 18px 0 12px;
  font-size: 20px;
}
.content-card p,
.scope-item p,
.content-card li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}
.content-card small,
.scope-item small,
.metric small {
  color: var(--blue);
  font: 700 9px Arial;
  letter-spacing: 0.14em;
}
a.content-card { display: block; transition: .25s; }
a.content-card:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 var(--yellow); }
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.bullet-list li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-top: 1px solid var(--line);
}
.bullet-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 7px;
  height: 7px;
  background: var(--yellow);
}
.metric b {
  display: block;
  margin: 18px 0 8px;
  font: 800 clamp(30px, 4vw, 52px) Arial;
  color: var(--navy);
}
.metric p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
.callout {
  margin-top: 28px;
  padding: 28px 32px;
  border-left: 5px solid var(--yellow);
  background: var(--navy);
  color: #fff;
}
.callout p {
  color: #aab6c5;
  line-height: 1.9;
}
.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0 6px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 44px 24px 0;
  font-weight: 700;
  position: relative;
}
.faq summary:after {
  content: '+';
  position: absolute;
  right: 8px;
  color: var(--blue);
  font-size: 22px;
}
.faq details[open] summary:after {
  content: '−';
}
.faq details p {
  max-width: 820px;
  margin: -4px 0 24px;
  color: var(--muted);
  line-height: 1.9;
}
.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  background: var(--navy);
  color: #fff;
}
.page-cta p {
  color: #aab6c5;
  margin-bottom: 0;
}
.page-cta .button {
  flex: 0 0 auto;
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 8px 8px 0 var(--blue);
}
.editorial-layout {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 70px;
}
.editorial-filter {
  display: grid;
  align-content: start;
  position: sticky;
  top: 110px;
  height: max-content;
}
.editorial-filter a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.editorial-filter a.active { color: var(--navy); font-weight: 700; }
.news-list { border-top: 1px solid var(--line); }
.news-row {
  display: grid;
  grid-template-columns: 110px 95px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.news-row time { color: var(--muted); font: 700 11px Arial; }
.news-row > span { height: max-content; padding: 6px 8px; color: var(--blue); border: 1px solid #bfcdfd; font-size: 9px; text-align: center; }
.news-row h2 { margin: 0 0 12px; font-size: 22px; }
.news-row p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.9; }
.news-row.featured { border-left: 4px solid var(--yellow); padding-left: 22px; background: linear-gradient(90deg, rgba(255,241,0,.08), transparent 55%); }
.news-row { transition: .25s; }
.news-row:hover { padding-left: 18px; padding-right: 18px; background: var(--pale); }
.blog-feature {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.blog-feature p { color: var(--muted); line-height: 2; }
.blog-feature a { display: inline-block; margin-top: 20px; font-weight: 700; border-bottom: 2px solid var(--yellow); }
.terminal-art {
  min-height: 360px;
  padding: 32px;
  display: grid;
  align-content: center;
  gap: 18px;
  color: #b9c7d8;
  background-color: var(--navy);
  background-image: linear-gradient(rgba(36,88,255,.15) 1px,transparent 1px),linear-gradient(90deg,rgba(36,88,255,.15) 1px,transparent 1px);
  background-size: 32px 32px;
  box-shadow: 12px 12px 0 var(--yellow);
}
.terminal-art small { color: #708299; font: 700 8px Arial; letter-spacing: .2em; }
.terminal-art code { padding-bottom: 12px; border-bottom: 1px solid #2b3c52; font-size: 12px; }
.terminal-art code i { color: var(--yellow); margin-right: 18px; }
.terminal-art b { color: #52ff9a; font: 700 10px Arial; letter-spacing: .12em; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.blog-card { position: relative; min-height: 360px; padding: 30px; border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; transition: .25s; }
.blog-card:hover { transform: translate(-4px,-4px); box-shadow: 8px 8px 0 var(--yellow); }
.blog-index { position: absolute; top: 12px; right: 14px; color: #d5dde7; font: 700 32px Arial; }
.blog-card > small { color: var(--blue); font: 700 8px Arial; letter-spacing: .12em; }
.blog-card h3 { margin: 42px 0 20px; font-size: 20px; line-height: 1.55; }
.blog-card p { color: var(--muted); font-size: 12px; line-height: 1.9; }
.blog-card footer { display: flex; justify-content: space-between; margin-top: auto; padding: 18px 0 0; color: var(--muted); background: none; border-top: 1px solid var(--line); font: 700 8px Arial; }
.home-journal { background: #fff; }
.journal-head { display: grid; grid-template-columns: 1fr .65fr; gap: 70px; align-items: end; }
.journal-head > p { color: var(--muted); line-height: 2; }
.journal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 45px; }
.latest-news,.latest-blog { padding: 34px; border: 1px solid var(--line); }
.journal-title { display: flex; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.journal-title small { color: var(--blue); font: 700 9px Arial; letter-spacing: .14em; }
.journal-title a { font-size: 11px; font-weight: 700; }
.news-mini { display: grid; grid-template-columns: 90px 75px 1fr; gap: 12px; align-items: center; padding: 21px 0; border-bottom: 1px solid var(--line); }
.news-mini time { color: var(--muted); font: 700 9px Arial; }
.news-mini span { padding: 5px; color: var(--blue); border: 1px solid #c9d4ff; font-size: 8px; text-align: center; }
.news-mini h3 { margin: 0; font-size: 14px; line-height: 1.6; }
.terminal-mini { display: grid; grid-template-columns: 30px 1fr; gap: 12px; margin: 24px 0; padding: 24px; color: #c1ccda; background: var(--navy); font-size: 10px; }
.terminal-mini i { color: var(--yellow); }
.latest-blog > small { color: var(--blue); font: 700 8px Arial; }
.latest-blog > h3 { margin: 18px 0; font-size: 24px; line-height: 1.5; }
.latest-blog > p { color: var(--muted); font-size: 12px; line-height: 1.8; }
.article-hero {
  padding: 100px 0 85px;
  color: #fff;
  background-color: var(--navy);
  background-image: linear-gradient(rgba(36,88,255,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(36,88,255,.18) 1px,transparent 1px),radial-gradient(circle at 82% 50%,rgba(36,88,255,.34),transparent 30%);
  background-size: 46px 46px,46px 46px,auto;
}
.article-width { max-width: 920px; }
.article-back { display: inline-block; margin-bottom: 55px; color: #8ea0b6; font: 700 9px Arial; letter-spacing: .14em; }
.article-hero h1 { max-width: 850px; margin: 24px 0 30px; font-size: clamp(46px,6vw,76px); line-height: 1.22; letter-spacing: -.06em; }
.article-intro { max-width: 760px; color: #afbdcc; font-size: 16px; line-height: 2; }
.article-meta { display: flex; gap: 28px; margin-top: 40px; padding-top: 20px; border-top: 1px solid #34445a; color: #8192a8; font: 700 8px Arial; letter-spacing: .12em; }
.article-layout { display: grid; grid-template-columns: 240px minmax(0,760px); gap: 80px; padding-top: 90px; padding-bottom: 110px; }
.article-toc { display: grid; align-content: start; position: sticky; top: 110px; height: max-content; }
.article-toc small { margin-bottom: 18px; color: var(--blue); font: 700 9px Arial; letter-spacing: .15em; }
.article-toc a { padding: 14px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; line-height: 1.6; }
.article-body { color: #3f5065; }
.article-lead { margin: 0 0 70px; padding-bottom: 45px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 19px; font-weight: 700; line-height: 2; }
.article-body section { scroll-margin-top: 100px; margin-bottom: 85px; }
.article-body section > small { color: var(--blue); font: 700 9px Arial; letter-spacing: .16em; }
.article-body h2 { margin: 18px 0 30px; color: var(--ink); font-size: clamp(32px,4vw,48px); line-height: 1.4; }
.article-body p { font-size: 15px; line-height: 2.15; }
.article-point { margin: 35px 0; padding: 26px 30px; border-left: 4px solid var(--yellow); background: var(--pale); }
.article-point b { color: var(--blue); font: 700 9px Arial; letter-spacing: .15em; }
.article-point p { margin: 10px 0 0; color: var(--ink); font-weight: 700; }
.article-body blockquote { margin: 40px 0; padding: 34px; color: #fff; background: var(--navy); border-bottom: 4px solid var(--yellow); font-size: 20px; font-weight: 700; line-height: 1.8; }
.article-flow { display: grid; grid-template-columns: repeat(4,1fr); margin: 35px 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.article-flow div { min-height: 150px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article-flow i { display: block; color: var(--blue); font: normal 700 9px Arial; }
.article-flow b { display: block; margin: 32px 0 9px; font: 700 10px Arial; }
.article-flow span { color: var(--muted); font-size: 10px; line-height: 1.6; }
.article-cta { margin-top: 90px; padding: 45px; color: #fff; background: var(--blue); background-image: linear-gradient(rgba(255,255,255,.09) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.09) 1px,transparent 1px); background-size: 32px 32px; }
.article-cta > small { color: var(--yellow); font: 700 9px Arial; letter-spacing: .15em; }
.article-cta h2 { color: #fff; }
.article-cta p { color: #d6def4; }
.article-cta .button { margin-top: 15px; background: var(--yellow); color: var(--navy); box-shadow: 8px 8px 0 var(--navy); }
.form-trap { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.privacy-check { display: flex !important; grid-template-columns: none !important; align-items: flex-start; gap: 10px !important; color: var(--muted); font-size: 11px !important; line-height: 1.7; }
.privacy-check input { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; padding: 0; }
.form-status { padding: 32px; border: 1px solid var(--line); background: #fff; }
.form-status small { color: var(--blue); font: 700 8px Arial; letter-spacing: .15em; }
.form-status h2 { margin: 20px 0 12px; font-size: 30px; }
.form-status p,.form-status li { color: var(--muted); line-height: 1.8; }
.form-status.success { border-left: 5px solid var(--yellow); box-shadow: 8px 8px 0 rgba(36,88,255,.1); }
.form-status.error { margin-bottom: 24px; border-left: 5px solid #d74444; background: #fff8f8; }
.recaptcha-note { margin: 2px 0 0; color: #8795a8; font-size: 9px; font-weight: 400; line-height: 1.7; }
.recaptcha-note a { color: #687b94; }
.form .button:disabled { cursor: wait; opacity: .65; }
.news-article { max-width: 820px; padding-top: 90px; padding-bottom: 110px; }
.news-article section { margin: 65px 0; }
.news-article section h2 { font-size: clamp(30px,4vw,44px); }
.news-article section p { color: #3f5065; font-size: 15px; line-height: 2.15; }
.news-detail-hero h1 { font-size: clamp(44px,5.5vw,70px); }
footer {
  background: #040c17;
  color: #8e9caf;
  padding: 55px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-inner img {
  width: 115px;
  filter: brightness(1.5);
}

/* Rich common footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: #a9b5c5;
  background: #040c17;
  border-top: 1px solid #1a2a3f;
}
.site-footer:before { content:''; position:absolute; width:460px; height:460px; right:-170px; top:-190px; border-radius:50%; background:radial-gradient(circle,rgba(36,88,255,.24),transparent 68%); }
.footer-grid-bg { position:absolute; inset:0; opacity:.38; 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:52px 52px; mask-image:linear-gradient(to bottom,#000,transparent 78%); }
.footer-shell { position:relative; z-index:1; padding-top:72px; }
.footer-cta-panel { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:55px; align-items:end; padding:0 0 65px; border-bottom:1px solid #263549; }
.footer-cta-panel small,.footer-nav small { color:var(--yellow); font:700 9px Arial; letter-spacing:.2em; }
.footer-cta-panel h2 { max-width:1050px; margin:20px 0 18px; color:#fff; font-size:clamp(34px,3.45vw,54px); line-height:1.35; letter-spacing:-.065em; }
.footer-cta-panel h2 span { display:block; white-space:nowrap; }
.footer-cta-panel p { margin:0; color:#8f9daf; font-size:13px; line-height:1.9; }
.footer-talk { display:flex; width:210px; height:78px; align-items:center; justify-content:space-between; padding:0 24px; color:var(--navy); background:var(--yellow); box-shadow:10px 10px 0 var(--blue); font-size:13px; font-weight:800; transition:.25s; }
.footer-talk:hover { transform:translate(-4px,-4px); box-shadow:14px 14px 0 var(--blue); }
.footer-talk b { font:400 24px Arial; }
.footer-main { display:grid; grid-template-columns:minmax(230px,.8fr) 1.6fr; gap:80px; padding:62px 0 70px; }
.footer-brand > a { display:inline-block; }
.footer-brand img { width:150px; filter:brightness(1.65); }
.footer-brand p { margin:26px 0; color:#dce3ec; font-size:17px; font-weight:700; line-height:1.8; }
.footer-status { display:flex; align-items:center; gap:9px; color:#718198; font:700 8px Arial; letter-spacing:.13em; }
.footer-status i { width:8px; height:8px; border-radius:50%; background:var(--yellow); box-shadow:0 0 14px rgba(255,241,0,.8); animation:footerBlink 2s ease-in-out infinite; }
.footer-nav { display:grid; grid-template-columns:repeat(3,1fr); gap:36px; }
.footer-nav div { display:flex; flex-direction:column; align-items:flex-start; gap:13px; }
.footer-nav small { margin-bottom:10px; }
.footer-nav a { color:#c3ccd8; font-size:12px; line-height:1.5; transition:.2s; }
.footer-nav a:hover { color:#fff; transform:translateX(4px); }
.footer-bottom { display:grid; grid-template-columns:1fr auto 1fr; gap:24px; align-items:center; min-height:72px; border-top:1px solid #263549; color:#65758a; font:700 8px Arial; letter-spacing:.11em; }
.footer-bottom span:nth-child(2) { color:#8e9bae; }
.footer-bottom a { justify-self:end; color:#cbd3de; }
@keyframes footerBlink { 50% { opacity:.35; transform:scale(.75); } }
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.spark {
  position: fixed;
  width: 7px;
  height: 7px;
  background: var(--yellow);
  pointer-events: none;
  z-index: 99;
  animation: spark 0.65s ease-out forwards;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
@keyframes spark {
  to {
    transform: translate(var(--x), var(--y)) scale(0);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 950px) {
  .nav {
    display: none;
  }
  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 11px;
    margin-left: auto;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    z-index: 42;
  }
  .menu-toggle i {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    transition: 0.25s;
  }
  .menu-toggle.is-open i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open i:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-panel {
    display: block;
    visibility: hidden;
    position: fixed;
    inset: 78px 0 auto;
    padding: 22px max(32px, calc((100vw - 1200px) / 2));
    background: rgba(7, 17, 31, 0.98);
    color: #fff;
    opacity: 0;
    transform: translateY(-12px);
    transition: 0.25s;
    pointer-events: none;
  }
  .mobile-panel.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .mobile-panel nav { display: grid; }
  .mobile-panel nav a { padding: 15px 0; border-bottom: 1px solid #26354a; font-weight: 700; }
  .mobile-panel nav a.active { color: var(--yellow); }
  .mobile-cta { display: block; margin-top: 18px; padding: 16px; text-align: center; background: var(--yellow); color: var(--navy); font-weight: 700; }
  .float-code {
    opacity: 0.35;
  }
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .content-grid,
  .scope-grid,
  .metric-row {
    grid-template-columns: 1fr 1fr;
  }
  .editorial-layout,
  .blog-feature,
  .journal-head,
  .article-layout { grid-template-columns: 1fr; }
  .editorial-filter { position: static; grid-template-columns: repeat(4,auto); gap: 10px; overflow-x: auto; }
  .editorial-filter .eyebrow { grid-column: 1 / -1; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .article-toc { position: static; grid-template-columns: 1fr 1fr; }
  .article-toc small { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .head {
    height: 66px;
  }
  .head .cta {
    display: none;
  }
  .philosophy-title { font-size: clamp(34px,10vw,44px); letter-spacing: -.035em; }
  .philosophy-title span { white-space: normal; }
  .mobile-panel { inset-block-start: 66px; padding: 18px; max-height: calc(100vh - 66px); overflow-y: auto; }
  .page-hero {
    min-height: 500px;
  }
  .page-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }
  .float-code {
    right: -80px;
    top: 44%;
    transform: scale(0.78);
    transform-origin: right center;
  }
  .section {
    padding: 75px 0;
  }
  .feature-grid,
  .works-grid,
  .steps,
  .compare,
  .content-grid,
  .scope-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }
  .feature,
  .work,
  .content-card,
  .scope-item,
  .metric { padding: 24px; }
  .page-cta { align-items: stretch; flex-direction: column; padding: 28px; }
  .page-cta .button,
  .form .button { width: 100%; }
  .contact-grid { gap: 34px; }
  .form input,
  .form select,
  .form textarea { width: 100%; font-size: 16px; }
  .compare article + article {
    border-left: 0;
    border-top: 1px solid #2c3b50;
  }
  .profile div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }
  .footer-cta-panel { grid-template-columns:1fr; align-items:start; }
  .footer-main { grid-template-columns:1fr; gap:55px; }
}

/* Mobile-first art direction: a dedicated compact tech interface, not a reduced desktop. */
@media (max-width: 700px) {
  :root {
    --mobile-gutter: 20px;
  }
  body {
    padding-bottom: 76px;
    background: #f8fafc;
  }
  .wrap {
    width: calc(100% - (var(--mobile-gutter) * 2));
  }
  .head {
    height: 64px;
    color: #fff;
    background: rgba(4, 12, 23, 0.93);
    border-color: rgba(255, 255, 255, 0.12);
  }
  .head:after {
    width: 38%;
    box-shadow: 0 0 16px rgba(255, 241, 0, 0.65);
  }
  .head .wrap {
    gap: 14px;
  }
  .logo-link {
    width: 104px;
  }
  .header-logo-mark { width:29px; height:31px; flex-basis:29px; }
  .header-logo-mark img { width:28px; }
  .header-logo-word { width:68px; filter:brightness(0) invert(1); }
  .menu-toggle {
    width: 40px;
    height: 40px;
    border-color: #304057;
    background: #0a1728;
    box-shadow: inset 0 0 0 1px rgba(36, 88, 255, 0.14);
  }
  .menu-toggle i {
    background: var(--yellow);
  }
  .mobile-panel {
    inset-block-start: 64px;
    padding: 20px;
    max-height: calc(100dvh - 64px);
    background-image:
      linear-gradient(rgba(36, 88, 255, 0.12) 1px, transparent 1px),
      linear-gradient(90deg, rgba(36, 88, 255, 0.12) 1px, transparent 1px);
    background-size: 32px 32px;
  }
  .mobile-panel nav a {
    position: relative;
    padding: 17px 0 17px 18px;
    font-size: 14px;
    letter-spacing: 0.04em;
  }
  .mobile-panel nav a:before {
    content: '>'; position: absolute; left: 0; color: var(--yellow);
  }
  .mobile-dock {
    display: flex;
    position: fixed;
    z-index: 29;
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    height: 56px;
    padding: 0 18px;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: rgba(7, 17, 31, 0.96);
    border: 1px solid #304057;
    border-left: 4px solid var(--yellow);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(14px);
  }
  .mobile-dock span {
    font: 700 7px Arial;
    letter-spacing: 0.14em;
    color: #8fa0b5;
  }
  .mobile-dock span i {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 7px;
    border-radius: 50%;
    background: #52ff9a;
    box-shadow: 0 0 9px #52ff9a;
    animation: core-pulse 2s ease-in-out infinite;
  }
  .mobile-dock b {
    font-size: 13px;
    color: var(--yellow);
  }
  .hero {
    min-height: 760px !important;
    padding: 62px 0 38px !important;
    align-items: flex-start !important;
    color: #fff;
    background-color: var(--navy);
    background-image:
      linear-gradient(rgba(36, 88, 255, 0.2) 1px, transparent 1px),
      linear-gradient(90deg, rgba(36, 88, 255, 0.2) 1px, transparent 1px),
      radial-gradient(circle at 60% 70%, rgba(36, 88, 255, 0.34), transparent 42%) !important;
    background-size: 34px 34px, 34px 34px, auto !important;
  }
  .hero:after,
  .page-hero:before {
    content: '';
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: -10%;
    height: 25%;
    pointer-events: none;
    background: linear-gradient(transparent, rgba(255, 241, 0, 0.08), transparent);
    animation: mobile-scan 5s linear infinite;
  }
  .hero:before {
    right: 18px !important;
    top: 18px !important;
    color: #71829a !important;
  }
  .hero-grid {
    display: block !important;
    position: relative;
    min-height: 660px;
  }
  .hero-grid > div:first-child {
    position: relative;
    z-index: 3;
  }
  .hero .label,
  .hero .eyebrow {
    color: #98a9bc;
  }
  .hero h1 {
    margin: 22px 0 24px !important;
    font-size: clamp(40px, 12.4vw, 56px) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.075em !important;
  }
  .hero .lead {
    max-width: 92%;
    font-size: 14px;
    line-height: 1.9;
    color: #adbac9;
  }
  .hero .lead strong {
    color: var(--yellow);
  }
  .hero .actions {
    align-items: stretch;
    gap: 22px;
    margin-top: 28px;
  }
  .hero .button {
    width: 100%;
    padding: 18px 16px;
    color: var(--navy);
    background: var(--yellow);
    box-shadow: 7px 7px 0 var(--blue);
  }
  .hero .sub {
    width: max-content;
    color: #fff;
  }
  .hero .network {
    position: absolute;
    z-index: 1;
    width: 330px;
    max-width: none !important;
    right: -96px;
    bottom: -54px;
    margin: 0 !important;
    opacity: 0.82;
  }
  .hero .core {
    font-size: 9px;
    background: rgba(7, 17, 31, 0.9);
    box-shadow: 0 0 35px rgba(255, 241, 0, 0.16);
  }
  .hero .node {
    padding: 8px 10px;
    font-size: 8px;
    color: #fff;
    border-color: #33445b;
    background: rgba(7, 17, 31, 0.84);
  }
  .stats {
    overflow: hidden;
  }
  .stats .wrap {
    display: flex !important;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .stats .wrap::-webkit-scrollbar { display: none; }
  .stat {
    flex: 0 0 67vw;
    min-height: 130px;
    padding: 28px 22px !important;
    scroll-snap-align: start;
  }
  .stat:before {
    content: 'DATA / 0' attr(data-index);
    display: block;
    margin-bottom: 14px;
    color: #5f7189;
    font: 700 7px Arial;
    letter-spacing: 0.16em;
  }
  .section {
    padding: 72px 0;
  }
  .section h2 {
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.34;
  }
  .page-hero {
    min-height: 620px;
    padding: 78px 0 190px;
    align-items: flex-start;
    color: #fff;
    background-color: var(--navy);
    background-image:
      linear-gradient(rgba(36, 88, 255, 0.2) 1px, transparent 1px),
      linear-gradient(90deg, rgba(36, 88, 255, 0.2) 1px, transparent 1px),
      radial-gradient(circle at 82% 70%, rgba(36, 88, 255, 0.38), transparent 34%);
    background-size: 34px 34px, 34px 34px, auto;
  }
  .page-hero .wrap { position: relative; z-index: 2; }
  .page-hero h1 {
    font-size: clamp(38px, 11vw, 51px);
    line-height: 1.22;
  }
  .page-hero .lead { color: #aebccc; font-size: 14px; line-height: 1.9; }
  .page-hero:after { content: 'MOBILE SYSTEM / TOUCH ENABLED'; right: 18px; top: 20px; color: #71829a; }
  .float-code {
    width: 280px;
    height: 190px;
    right: -46px;
    top: auto;
    bottom: 22px;
    opacity: 0.82;
    transform: none;
  }
  .code-node {
    padding: 8px 10px;
    color: #fff;
    border-color: #33445b;
    background: rgba(7, 17, 31, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  }
  .code-line { border-color: rgba(255, 241, 0, 0.42); }
  .feature,
  .work,
  .content-card,
  .scope-item,
  .metric,
  .card,
  .case {
    position: relative;
    overflow: hidden;
    min-height: 0;
    border-radius: 0;
    border-left: 3px solid var(--blue);
    box-shadow: 0 12px 35px rgba(7, 17, 31, 0.07);
  }
  .feature:before,
  .content-card:before,
  .scope-item:before,
  .work:before,
  .case:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, transparent 50%, rgba(36, 88, 255, 0.12) 50%);
  }
  .cards { margin-top: 34px; gap: 10px; }
  .cards .card { min-height: 320px; padding: 28px; }
  .cards .card h3 { margin-top: 40px; }
  .reason {
    gap: 10px 14px;
    padding: 26px 0;
  }
  .reason b {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid #405069;
  }
  .reason p { margin-bottom: 0; }
  .off-head { gap: 30px; }
  .facts { overflow: hidden; }
  .facts b { display: block; }
  .facts span { margin: 6px 0 0; display: block; }
  .compare article { padding: 25px 22px; }
  .price { gap: 24px; margin-top: 42px; }
  .contact { text-align: left; }
  .contact .button { color: var(--navy); background: var(--yellow); box-shadow: 7px 7px 0 var(--navy); }
  .footer-inner,
  .foot {
    align-items: flex-start !important;
    flex-direction: column;
    gap: 24px !important;
  }
  .footer-inner small,
  .foot small { text-align: left !important; }
  .site-footer { padding-bottom:0; }
  .footer-shell { padding-top:50px; }
  .footer-cta-panel { gap:30px; padding-bottom:50px; }
  .footer-cta-panel h2 { font-size:34px; }
  .footer-cta-panel h2 span { white-space:normal; }
  .footer-talk { width:100%; height:68px; box-shadow:7px 7px 0 var(--blue); }
  .footer-main { padding:50px 0; }
  .footer-nav { grid-template-columns:1fr 1fr; gap:40px 25px; }
  .footer-nav div:last-child { grid-column:1 / -1; }
  .footer-bottom { grid-template-columns:1fr auto; padding:22px 0; }
  .footer-bottom span:nth-child(2) { display:none; }
  .editorial-layout { gap: 38px; }
  .editorial-filter { width: calc(100vw - 20px); padding-right: 20px; scrollbar-width: none; }
  .editorial-filter a { white-space: nowrap; padding: 12px 16px; border: 1px solid var(--line); }
  .news-row { grid-template-columns: 1fr auto; gap: 12px; padding: 28px 0; }
  .news-row > div { grid-column: 1 / -1; }
  .news-row h2 { font-size: 20px; line-height: 1.5; }
  .news-row.featured { padding-left: 18px; }
  .blog-feature { gap: 38px; }
  .terminal-art { min-height: 300px; padding: 24px 20px; box-shadow: 8px 8px 0 var(--yellow); }
  .blog-grid,.journal-grid { grid-template-columns: 1fr; }
  .blog-card { min-height: 330px; padding: 26px 23px; }
  .journal-head { gap: 10px; }
  .journal-grid { margin-top: 28px; }
  .latest-news,.latest-blog { padding: 24px 20px; }
  .news-mini { grid-template-columns: 1fr auto; gap: 9px; }
  .news-mini h3 { grid-column: 1 / -1; }
  .article-hero { padding: 70px 0 60px; }
  .article-back { margin-bottom: 42px; }
  .article-hero h1 { font-size: clamp(38px,11vw,50px); line-height: 1.25; }
  .article-intro { font-size: 14px; line-height: 1.9; }
  .article-meta { flex-wrap: wrap; gap: 12px 20px; }
  .article-layout { gap: 55px; padding-top: 55px; padding-bottom: 75px; }
  .article-toc { grid-template-columns: 1fr; padding: 22px; color: #fff; background: var(--navy); }
  .article-toc small { grid-column: auto; color: var(--yellow); }
  .article-toc a { color: #aebccc; border-color: #33445a; }
  .article-lead { margin-bottom: 55px; font-size: 17px; }
  .article-body section { margin-bottom: 65px; }
  .article-body p { font-size: 14px; line-height: 2; }
  .article-point,.article-body blockquote { padding: 25px 22px; }
  .article-body blockquote { font-size: 17px; }
  .article-flow { grid-template-columns: 1fr 1fr; }
  .article-flow div { min-height: 135px; }
  .article-cta { margin-top: 65px; padding: 30px 24px; }
  .news-article { padding-top: 55px; padding-bottom: 75px; }
  .news-article section { margin: 52px 0; }
}

/* 2026 refinement: quiet motion, crisp layers, and consistent depth. */
.figma-hero .network {
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
  filter: none;
}
.figma-hero .network:before {
  opacity: .22;
  background: conic-gradient(from 30deg,transparent 0 18%,rgba(36,88,255,.14) 24%,transparent 31% 62%,rgba(216,165,0,.12) 70%,transparent 78%);
  animation-duration: 80s;
}
.figma-hero .orbit {
  border-width: 1px;
  border-color: rgba(36,88,255,.16);
  animation-duration: 54s;
}
.figma-hero .orbit:after {
  border-color: rgba(7,17,31,.08);
  animation-duration: 72s;
}
.figma-hero .orbit-sub {
  border-color: rgba(216,165,0,.2);
  border-style: dashed;
  animation-duration: 66s;
}
.figma-hero .core {
  inset: 28%;
  padding: 34px;
  border: 1px solid rgba(7,17,31,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.86);
  box-shadow: 0 24px 70px rgba(7,17,31,.1),inset 0 0 0 9px rgba(255,255,255,.52);
  backdrop-filter: blur(12px);
  transform: none;
  animation: refined-core-float 9s ease-in-out infinite;
}
.figma-hero .core:before {
  width: 9px;
  height: 9px;
  left: 16%;
  top: 20%;
  background: var(--yellow);
  box-shadow: none;
}
.figma-hero .core:after { display: none; }
.figma-hero .core img {
  width: 132px;
  filter: none;
  transform: none;
}
.figma-hero .core small {
  color: #647187;
  transform: none;
}
.figma-hero .node {
  min-width: 104px;
  padding: 12px 15px;
  border: 1px solid rgba(7,17,31,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 32px rgba(7,17,31,.075);
  backdrop-filter: blur(10px);
  animation: refined-node-float 10s ease-in-out infinite;
}
.figma-hero .node:before {
  width: 5px;
  height: 5px;
  box-shadow: none;
}
.figma-hero .node:hover,.figma-hero .node.is-active {
  color: var(--blue);
  border-color: rgba(36,88,255,.34);
  box-shadow: 0 15px 38px rgba(36,88,255,.1);
  translate: 0 -2px;
}
.figma-hero .signal {
  width: 5px;
  height: 5px;
  background: #d8a500;
  box-shadow: 0 0 0 4px rgba(216,165,0,.08);
  animation: refined-signal 6s ease-in-out infinite;
}
@keyframes refined-core-float { 0%,100% { translate: 0 4px; } 50% { translate: 0 -7px; } }
@keyframes refined-node-float { 0%,100% { translate: 0 2px; } 50% { translate: 0 -5px; } }
@keyframes refined-signal { 0%,100% { opacity: .25; translate: 0 5px; } 50% { opacity: 1; translate: 0 -5px; } }

/* Shared refinement for lower-level pages. */
.page-hero {
  background-image: radial-gradient(circle at 82% 24%,rgba(36,88,255,.09),transparent 34%),linear-gradient(180deg,#fff,#f8faff);
}
.float-code,.content-card,.feature,.blog-card,.terminal-art,.system-process-visual,.medical-demo,.ctr-chart {
  box-shadow: 0 18px 48px rgba(7,17,31,.07);
}
.content-card,.feature,.blog-card {
  border-color: rgba(117,137,163,.22);
}
a.content-card:hover {
  transform: translateY(-3px);
  border-color: rgba(36,88,255,.28);
  box-shadow: 0 22px 54px rgba(7,17,31,.1);
}
.code-node {
  box-shadow: 0 9px 24px rgba(7,17,31,.08);
  transition: transform .35s ease,border-color .35s ease,box-shadow .35s ease;
}
.code-node:hover,.code-node.is-active {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(36,88,255,.1);
}
.medical-demo { box-shadow: 0 20px 50px rgba(7,17,31,.14); }

@media (max-width: 700px) {
  .figma-hero .network { transition: none; }
  .figma-hero .core {
    inset: 27%;
    padding: 24px;
    border-radius: 50%;
    box-shadow: 0 18px 44px rgba(7,17,31,.1),inset 0 0 0 6px rgba(255,255,255,.55);
  }
  .figma-hero .core img { width: 92px; }
  .figma-hero .node { padding: 8px 10px; box-shadow: 0 8px 20px rgba(7,17,31,.07); }
  .float-code,.content-card,.feature,.blog-card,.terminal-art,.system-process-visual,.medical-demo,.ctr-chart {
    box-shadow: 0 12px 32px rgba(7,17,31,.065);
  }
}

@media (prefers-reduced-motion: reduce) {
  .figma-hero .network:before,.figma-hero .orbit,.figma-hero .orbit:after,.figma-hero .orbit-sub,
  .figma-hero .core,.figma-hero .node,.figma-hero .signal { animation: none !important; }
}

@media (max-width: 950px) {
  .company-philosophy .copy { padding-top: 0; }
  .system-process-visual { grid-template-columns: 220px 1fr; gap: 24px; }
  .system-scale { grid-template-columns: 1fr 90px 1fr; }
  .team-architecture { grid-template-columns: 1fr; gap: 0; }
  .team-architecture > i { min-height: 46px; align-content: center; }
  .team-architecture > i b { transform: rotate(90deg); }
  .team-architecture article { min-height: 0; }
}
@media (max-width: 620px) {
  .system-process-visual { grid-template-columns: 1fr; gap: 25px; margin-top: 32px; padding: 18px 14px; }
  .process-screen { width: min(260px,100%); margin: auto; }
  .process-pipeline { overflow-x: auto; justify-content: flex-start; padding-bottom: 8px; }
  .process-pipeline span { min-width: 52px; }
  .process-pipeline > i { min-width: 24px; }
  .team-architecture { margin-top: 32px; }
  .team-architecture article { padding: 23px 20px; }
  .team-architecture article > b { margin-top: 24px; }
  .system-build-grid .tech-visual { height: 96px; }
  .system-case-grid { grid-template-columns: 1fr; }
  .system-case-grid > article { padding: 20px; }
  .budget-system-ui,.uploader-system-ui { height: 190px; }
  .upload-flow { gap: 5px; padding-inline: 8px; }
  .upload-flow span { width: 70px; }
  .system-scale { grid-template-columns: 1fr; }
  .system-scale > i { min-height: 70px; }
  .system-scale > i:before { width: 72%; height: 1px; background: linear-gradient(90deg,transparent,var(--yellow),transparent); }
  .system-scale > i span { writing-mode: initial; }
}

/* Home hero: SQair interpretation of the light, dimensional reference direction. */
.figma-hero {
  min-height: 760px;
  background-color: #fbfcfd;
  background-image:
    radial-gradient(circle at 78% 48%, rgba(255,241,0,.18), transparent 30%),
    radial-gradient(circle at 20% 20%, rgba(36,88,255,.055), transparent 24%),
    linear-gradient(rgba(36,88,255,.045) 1px, transparent 1px),
    linear-gradient(90deg,rgba(36,88,255,.045) 1px,transparent 1px);
  background-size: auto,auto,72px 72px,72px 72px;
}
.figma-hero:before { content: 'SQAIR / BUSINESS ARCHITECTURE / 2026'; color: #a6afba; }
.figma-hero .hero-grid { grid-template-columns: 1.06fr .94fr; gap: 70px; }
.figma-hero .label {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border: 1px solid #f1df72;
  border-radius: 999px;
  color: #5f5d45;
  background: rgba(255,241,0,.13);
}
.figma-hero .label:before { border-radius: 50%; box-shadow: 0 0 11px rgba(255,193,0,.75); }
.figma-hero h1 { max-width: 720px; font-size: clamp(52px,5.6vw,78px); line-height: 1.16; }
.figma-hero .hero-line { display: block; white-space: nowrap; }
.figma-hero h1 em { color: #d8a500; font-style: normal; }
.figma-hero .lead { max-width: 650px; color: #536175; font-weight: 600; }
.figma-hero .lead strong { color: var(--navy); background: linear-gradient(transparent 62%,rgba(255,241,0,.55) 62%); }
.figma-hero .button { border-radius: 5px; box-shadow: 0 12px 28px rgba(7,17,31,.18),7px 7px 0 var(--yellow); }
.figma-hero .sub { padding: 15px 18px; border: 1px solid var(--line); border-radius: 5px; background: rgba(255,255,255,.78); }
.figma-hero .network { min-height: 540px; transform-style: preserve-3d; }
.figma-hero .network:before {
  inset: 4%;
  background: repeating-conic-gradient(from 0deg,transparent 0 20deg,rgba(216,165,0,.13) 20deg 20.5deg);
}
.figma-hero .orbit { inset: 7%; border-color: rgba(222,176,0,.36); }
.figma-hero .orbit:after { inset: 13%; border-color: rgba(36,88,255,.14); }
.figma-hero .orbit-sub { inset: 20%; border-style: dashed; animation-duration: 29s; animation-direction: reverse; }
.figma-hero .orbit-sub:after { display: none; }
.figma-hero .core {
  inset: 24%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 48px;
  border: 0;
  border-radius: 26%;
  color: #6b5700;
  background: linear-gradient(145deg,#ffb900,#fff100 55%,#ffd21f);
  box-shadow: 0 30px 70px rgba(220,165,0,.27),inset 0 1px 0 rgba(255,255,255,.65);
  transform: rotate(-7deg);
}
.figma-hero .core:before,.figma-hero .core:after { content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%; background: rgba(255,255,255,.46); box-shadow: 90px 80px 0 rgba(255,255,255,.34),-65px 105px 0 rgba(255,255,255,.28); }
.figma-hero .core:before { left: 26%; top: 22%; }
.figma-hero .core:after { right: 25%; bottom: 23%; }
.figma-hero .core img { position: relative; z-index: 2; width: 150px; filter: brightness(.28); transform: rotate(7deg); }
.figma-hero .core small { position: relative; z-index: 2; color: rgba(7,17,31,.55); font: 700 8px Arial; letter-spacing: .18em; transform: rotate(7deg); }
.figma-hero .node {
  z-index: 3;
  min-width: 104px;
  padding: 14px 16px;
  border: 0;
  border-radius: 8px;
  color: #283548;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 35px rgba(7,17,31,.13);
  backdrop-filter: blur(9px);
}
.figma-hero .node:before { border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,241,0,.14); }
.figma-hero .n1 { top: 6%; left: 31%; transform: rotate(5deg); }
.figma-hero .n2 { top: 30%; right: -2%; transform: rotate(-4deg); }
.figma-hero .n3 { bottom: 18%; right: 0; transform: rotate(4deg); }
.figma-hero .n4 { bottom: 3%; left: 38%; transform: rotate(-5deg); }
.figma-hero .n5 { bottom: 23%; left: -2%; transform: rotate(3deg); }
.figma-hero .n6 { top: 24%; left: -4%; transform: rotate(-3deg); }
.figma-hero .signal { position: absolute; z-index: 2; width: 12px; height: 12px; border-radius: 50%; background: #f0b700; box-shadow: 0 0 0 7px rgba(255,220,0,.13),0 0 22px rgba(240,183,0,.6); animation: node-float 3.8s ease-in-out infinite; }
.figma-hero .s1 { top: 3%; right: 25%; }.figma-hero .s2 { bottom: 8%; right: 18%; animation-delay: -1.2s; }.figma-hero .s3 { top: 48%; left: 8%; animation-delay: -2.1s; }

@media (max-width: 900px) {
  .figma-hero .hero-grid { grid-template-columns: 1fr; }
  .figma-hero .network { width: min(520px,100%); min-height: auto; margin: -20px auto 0; }
}
@media (max-width: 700px) {
  .figma-hero {
    min-height: 850px !important;
    padding: 54px 0 24px !important;
    color: var(--navy);
    background-color: #fbfcfd;
    background-image: radial-gradient(circle at 68% 72%,rgba(255,241,0,.23),transparent 31%),linear-gradient(rgba(36,88,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(36,88,255,.06) 1px,transparent 1px) !important;
    background-size: auto,38px 38px,38px 38px !important;
  }
  .figma-hero:after { background: linear-gradient(transparent,rgba(255,210,0,.08),transparent); }
  .figma-hero .hero-grid { min-height: 750px; }
  .figma-hero .label { color: #5f5d45; }
  .figma-hero h1 { font-size: clamp(42px,12.2vw,55px) !important; color: var(--navy); }
  .figma-hero .hero-line { white-space: normal; }
  .figma-hero .lead { max-width: 100%; color: #59687a; font-size: 13px; }
  .figma-hero .lead strong { color: var(--navy); }
  .figma-hero .actions { width: 100%; }
  .figma-hero .button { color: #fff; background: var(--navy); }
  .figma-hero .sub { color: var(--navy); background: rgba(255,255,255,.86); }
  .figma-hero .network { width: 330px; right: -82px; bottom: -48px; opacity: 1; }
  .figma-hero .core { inset: 23%; padding: 26px; border-radius: 25%; }
  .figma-hero .core img { width: 105px; }
  .figma-hero .node { min-width: auto; padding: 9px 11px; color: #263447; border: 0; background: rgba(255,255,255,.94); font-size: 8px; }
}
@keyframes mobile-scan {
  to { transform: translateY(520%); }
}

.team-flow {
  display: grid;
  grid-template-columns: 1fr 44px 1.15fr 44px 1fr;
  align-items: stretch;
  margin: 45px 0 16px;
}
.team-flow article { padding: 28px; border: 1px solid #304159; background: rgba(3,11,23,.72); }
.team-flow article.flow-hub { border-color: var(--yellow); background: linear-gradient(145deg,rgba(36,88,255,.28),rgba(7,17,31,.9)); }
.team-flow > i { display: grid; place-items: center; color: var(--yellow); font-style: normal; font-size: 20px; }
.team-flow small,.cost-reasons small { color: #7f91a8; font: 700 8px Arial; letter-spacing: .14em; }
.team-flow h3 { margin: 28px 0 12px; font-size: 22px; }
.team-flow p { margin: 0; color: #9fadc0; font-size: 12px; line-height: 1.8; }
.cost-reasons { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 16px; background: #304159; border: 1px solid #304159; }
.cost-reasons article { position: relative; padding: 32px; background: #081422; }
.cost-reasons b { position: absolute; right: 18px; top: 12px; color: #27384d; font: 700 38px Arial; }
.cost-reasons h3 { margin: 42px 0 16px; font-size: 20px; line-height: 1.5; }
.cost-reasons p { margin: 0; color: #9fadc0; font-size: 12px; line-height: 1.9; }
.price-note { margin: 18px 0 0; color: #708196; font-size: 10px; line-height: 1.7; }

@media (max-width: 950px) {
  .team-flow { grid-template-columns: 1fr; gap: 0; }
  .team-flow > i { min-height: 38px; transform: rotate(90deg); }
  .cost-reasons { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .team-flow { margin-top: 34px; }
  .team-flow article { padding: 24px 22px; }
  .cost-reasons article { padding: 28px 22px; }
}

.medical-intro { overflow: hidden; }
.medical-intro-grid,.medical-visual-split,.medical-person { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.medical-copy,.medical-section-lead { color: var(--muted); line-height: 2; }
.medical-phone { position: relative; height: 520px; margin: 0; display: grid; place-items: center; background: linear-gradient(145deg,#f2fbf8,#eef3ff); border: 1px solid var(--line); overflow: hidden; }
.medical-phone:before { content: ''; position: absolute; width: 340px; height: 340px; border: 1px solid rgba(36,88,255,.2); border-radius: 50%; box-shadow: 0 0 0 55px rgba(36,88,255,.035); animation: spin 28s linear infinite; }
.medical-phone img { position: relative; z-index: 2; width: 205px; filter: drop-shadow(0 24px 30px rgba(7,17,31,.18)); }
.medical-phone figcaption,.medical-chart figcaption { position: absolute; left: 18px; bottom: 14px; color: #75859a; font: 700 8px Arial; letter-spacing: .14em; }
.medical-three { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 40px; }
.medical-three article { position: relative; min-height: 280px; padding: 32px; border: 1px solid var(--line); background: #fff; }
.medical-three b { position: absolute; right: 18px; top: 12px; color: #e2e8ef; font: 700 38px Arial; }
.medical-three small { color: var(--blue); font: 700 8px Arial; letter-spacing: .14em; }
.medical-three h3 { margin: 52px 0 18px; font-size: 21px; }
.medical-three p { color: var(--muted); font-size: 13px; line-height: 1.9; }
.medical-visual-split.reverse > :first-child { order: 2; }
.medical-visual-split.reverse > :last-child { order: 1; }
.medical-demo { position: relative; padding: 22px; background: var(--navy); box-shadow: 12px 12px 0 var(--yellow); }
.medical-demo img { display: block; width: 100%; }
.responsive-lab { min-height: 480px; overflow: hidden; color: #fff; background: radial-gradient(circle at 80% 12%,rgba(36,88,255,.38),transparent 34%),linear-gradient(145deg,#07111f,#0b1b31); }
.responsive-lab:before { content: ''; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px); background-size: 28px 28px; }
.lab-head,.lab-foot { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; color: #7f91aa; font: 700 8px Arial; letter-spacing: .16em; }
.lab-head span { display: flex; align-items: center; gap: 9px; color: #c4d0df; }
.lab-head span i { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 12px var(--yellow); animation: lab-pulse 1.4s ease-in-out infinite; }
.lab-head b { padding: 6px 8px; color: var(--yellow); border: 1px solid rgba(255,241,0,.4); }
.device-stage { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1fr) 46px 118px; align-items: center; gap: 14px; min-height: 380px; padding: 22px 0; }
.desktop-device { overflow: hidden; border: 5px solid #263850; border-radius: 9px; background: #f5f8fc; box-shadow: 0 22px 40px rgba(0,0,0,.35); animation: desktop-breathe 5s ease-in-out infinite; }
.browser-bar { display: flex; align-items: center; gap: 5px; height: 25px; padding: 0 8px; background: #dfe7f1; }
.browser-bar > i { width: 5px; height: 5px; border-radius: 50%; background: #9aabc0; }
.browser-bar span { margin-left: 6px; color: #7a8ca2; font: 700 6px Arial; }
.mock-site { color: #0b1829; background: #fff; }
.mock-site header { display: flex; align-items: center; justify-content: space-between; height: 32px; padding: 0 12px; }
.mock-site header b { color: var(--blue); font: 800 7px Arial; letter-spacing: .12em; }
.mock-site header nav { display: flex; gap: 6px; }
.mock-site header nav i { display: block; width: 20px; height: 3px; background: #cad5e2; }
.mock-hero { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 132px; background: #eef5ff; }
.mock-hero > div { padding: 20px 14px; }
.mock-hero small { color: var(--blue); font: 700 5px Arial; letter-spacing: .14em; }
.mock-hero strong { display: block; width: 82%; height: 7px; margin-top: 8px; background: #16253a; }
.mock-hero strong + strong { width: 58%; }
.mock-hero button { margin-top: 14px; padding: 7px 13px; border: 0; color: #07111f; background: var(--yellow); font: 700 6px Arial; }
.mock-hero figure { margin: 0; background: linear-gradient(145deg,#2458ff,#78a2ff); clip-path: polygon(18% 0,100% 0,100% 100%,0 100%); }
.mock-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; padding: 10px; }
.mock-cards i { display: block; height: 48px; border: 1px solid #dce4ee; background: linear-gradient(#fff,#f5f8fc); }
.responsive-flow { display: grid; justify-items: center; gap: 9px; color: #7790ad; font: 700 6px Arial; letter-spacing: .1em; }
.responsive-flow i { width: 2px; height: 55px; background: linear-gradient(transparent,var(--yellow),transparent); animation: data-flow 1.6s ease-in-out infinite; }
.responsive-flow b { writing-mode: vertical-rl; color: var(--yellow); font-size: 7px; letter-spacing: .18em; }
.mobile-device { position: relative; overflow: hidden; padding: 7px 5px 5px; border: 5px solid #263850; border-radius: 20px; background: #07111f; box-shadow: 0 22px 40px rgba(0,0,0,.4); animation: phone-focus 5s ease-in-out infinite; }
.phone-speaker { width: 28px; height: 3px; margin: 0 auto 6px; border-radius: 4px; background: #53657b; }
.mobile-device .mock-site { overflow: hidden; border-radius: 10px; }
.mobile-device .mock-site header { height: 25px; padding: 0 7px; }
.mobile-device .mock-site header nav i { width: 12px; height: 2px; box-shadow: 0 4px #cad5e2,0 -4px #cad5e2; }
.mobile-device .mock-hero { display: flex; min-height: 170px; flex-direction: column-reverse; }
.mobile-device .mock-hero figure { height: 72px; clip-path: none; }
.mobile-device .mock-hero > div { padding: 10px; }
.mobile-device .mock-hero strong { height: 5px; margin-top: 5px; }
.mobile-device .mock-hero button { width: 100%; margin-top: 8px; padding: 7px 4px; }
.mobile-device .mock-cards { grid-template-columns: 1fr; gap: 4px; padding: 6px; }
.mobile-device .mock-cards i { height: 18px; }
.mobile-device footer { display: grid; grid-template-columns: 1fr 1fr; }
.mobile-device footer span { padding: 7px 2px; color: #fff; background: var(--blue); text-align: center; font: 700 6px Arial; }
.mobile-device footer span:last-child { color: #07111f; background: var(--yellow); }
.lab-foot { gap: 12px; padding-top: 12px; border-top: 1px solid #263850; }
.lab-foot b { margin-left: auto; color: var(--yellow); }
@keyframes data-flow { 0%,100% { opacity: .25; transform: translateY(-8px); } 50% { opacity: 1; transform: translateY(8px); } }
@keyframes desktop-breathe { 0%,42%,100% { opacity: 1; transform: scale(1); } 55%,82% { opacity: .55; transform: scale(.97); } }
@keyframes phone-focus { 0%,42%,100% { transform: scale(.96); box-shadow: 0 22px 40px rgba(0,0,0,.4); } 55%,82% { transform: scale(1.04); box-shadow: 0 0 0 2px rgba(255,241,0,.38),0 26px 45px rgba(0,0,0,.48); } }
.medical-checks { list-style: none; padding: 0; margin: 28px 0 0; }
.medical-checks li { position: relative; padding: 13px 0 13px 26px; border-top: 1px solid var(--line); color: #425268; font-size: 13px; }
.medical-checks li:before { content: ''; position: absolute; left: 0; top: 18px; width: 9px; height: 9px; background: var(--yellow); box-shadow: 0 0 0 4px rgba(255,241,0,.2); }
.medical-chart { position: relative; margin: 0; padding: 30px 24px 50px; border: 1px solid var(--line); background: #fff; }
.medical-chart img { display: block; width: 100%; }
.medical-callout { margin-top: 30px; padding: 25px; border-left: 4px solid var(--yellow); background: var(--navy); color: #fff; }
.medical-callout small { display: block; color: #8192a8; font: 700 8px Arial; letter-spacing: .14em; }
.medical-callout strong { display: block; margin: 12px 0; font-size: 20px; }
.medical-callout p { margin: 0; color: #aab7c7; font-size: 12px; }
.medical-section-lead { max-width: 760px; }
.medical-skills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.medical-skills span { padding: 13px 16px; border: 1px solid var(--line); background: #fff; color: #45566b; font: 700 10px Arial; box-shadow: 4px 4px 0 rgba(36,88,255,.08); }
.medical-timeline { margin-top: 50px; border-top: 1px solid var(--line); }
.medical-timeline article { display: grid; grid-template-columns: 90px 1fr; gap: 30px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.medical-timeline b { color: var(--blue); font: 500 40px Arial; }
.medical-timeline small { color: var(--blue); font: 700 8px Arial; letter-spacing: .15em; }
.medical-timeline h3 { margin: 12px 0; font-size: 22px; }
.medical-timeline p { max-width: 780px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.9; }
.medical-philosophy { border-top: 1px solid #26364b; }
.medical-person figure {
  width: min(440px,100%);
  aspect-ratio: 1;
  margin: 0 auto;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: linear-gradient(145deg,rgba(36,88,255,.34),rgba(255,241,0,.2));
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
}
.medical-person figure img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.medical-person p { color: #aab7c7; line-height: 2; }
.medical-person > div > small { color: var(--yellow); font-weight: 700; }
.kpi-split { align-items: center; }
.kpi-split .copy { padding-top: 0; }
.keyword-examples { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.keyword-examples small { width: 100%; color: var(--blue); font: 700 8px Arial; letter-spacing: .15em; }
.keyword-examples span { padding: 11px 14px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: 13px; font-weight: 700; box-shadow: 4px 4px 0 rgba(255,241,0,.55); }
.keyword-examples span i { margin: 0 8px; color: var(--blue); font-style: normal; }
.medical-seo-section .medical-visual-split { align-items: start; }
.css-chart { min-height: 430px; padding: 55px 22px 55px 62px; overflow: hidden; }
.css-chart:before { content: ''; position: absolute; inset: 55px 22px 55px 62px; background: repeating-linear-gradient(to top,var(--line) 0 1px,transparent 1px 20%); }
.chart-y { position: absolute; z-index: 2; left: 14px; top: 49px; bottom: 49px; display: flex; flex-direction: column; justify-content: space-between; color: #8291a4; font: 700 8px Arial; }
.line-plot { position: relative; z-index: 2; height: 320px; border-left: 1px solid #95a4b6; border-bottom: 1px solid #95a4b6; }
.line-plot .point { position: absolute; left: var(--x); top: 0; width: 0; height: 100%; }
.line-plot .point > i { position: absolute; z-index: 3; left: -5px; bottom: calc(var(--y) - 5px); width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(36,88,255,.12); }
.line-plot .point b { position: absolute; left: 0; bottom: calc(var(--y) + 12px); transform: translateX(-50%); color: var(--blue); font: 700 8px Arial; white-space: nowrap; }
.line-plot .point span { position: absolute; left: 0; bottom: -28px; transform: translateX(-50%); color: #66768b; font: 700 8px Arial; white-space: nowrap; }
.line-plot .line { position: absolute; z-index: 1; left: var(--x); bottom: var(--y); width: var(--w); height: 3px; background: linear-gradient(90deg,var(--blue),#6e8fff); transform-origin: left center; transform: rotate(var(--r)); animation: line-draw .8s ease both; }
.line-plot .p1 { --x:0%; --y:91.4%; }.line-plot .p2 { --x:11.11%; --y:61%; }.line-plot .p3 { --x:22.22%; --y:40.6%; }.line-plot .p4 { --x:33.33%; --y:37.4%; }.line-plot .p5 { --x:44.44%; --y:24.4%; }.line-plot .p6 { --x:55.55%; --y:19.2%; }.line-plot .p7 { --x:66.66%; --y:15.8%; }.line-plot .p8 { --x:77.77%; --y:17.2%; }.line-plot .p9 { --x:88.88%; --y:18%; }.line-plot .p10 { --x:100%; --y:15.2%; }
.line-plot .l1 { --x:0%; --y:91.4%; --w:18.9%; --r:53.8deg; }.line-plot .l2 { --x:11.11%; --y:61%; --w:15.1%; --r:42.6deg; }.line-plot .l3 { --x:22.22%; --y:40.6%; --w:11.2%; --r:8.2deg; }.line-plot .l4 { --x:33.33%; --y:37.4%; --w:12.9%; --r:30.3deg; }.line-plot .l5 { --x:44.44%; --y:24.4%; --w:11.4%; --r:13.2deg; }.line-plot .l6 { --x:55.55%; --y:19.2%; --w:11.2%; --r:8.7deg; }.line-plot .l7 { --x:66.66%; --y:15.8%; --w:11.1%; --r:-3.6deg; }.line-plot .l8 { --x:77.77%; --y:17.2%; --w:11.1%; --r:-2.1deg; }.line-plot .l9 { --x:88.88%; --y:18%; --w:11.2%; --r:7.2deg; }
.css-chart > small { position: absolute; right: 22px; bottom: 16px; color: #8493a7; font: 700 7px Arial; letter-spacing: .14em; }
@keyframes line-draw { from { scale: 0 1; } }
.ctr-chart { overflow: hidden; padding: 28px 28px 20px; border: 1px solid #dbe2ec; background: linear-gradient(145deg,#fff 0%,#f8faff 100%); box-shadow: 14px 18px 0 rgba(15,30,51,.05); }
.ctr-chart-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.ctr-chart-head small { color: var(--blue); font: 700 8px Arial; letter-spacing: .16em; }
.medical-chart .ctr-chart-head figcaption { position: static; margin-top: 8px; color: var(--navy); font-size: 19px; font-weight: 700; line-height: 1.45; letter-spacing: 0; }
.ctr-chart-head > strong { display: none; }
.ctr-chart-head > strong small { margin-left: 3px; font-size: 14px; letter-spacing: 0; }
.ctr-chart-intro { max-width: 520px; margin: 14px 0 4px; color: #718197; font-size: 10px; line-height: 1.7; }
.ctr-plot { margin: 10px -8px 0; }
.ctr-plot svg { display: block; width: 100%; height: auto; overflow: visible; }
.ctr-grid path { fill: none; stroke: #dce3ed; stroke-width: 1; }
.ctr-grid text { fill: #8795a8; font: 700 15px Arial; }
.ctr-area { fill: url(#ctrArea); }
.ctr-line { fill: none; stroke: url(#ctrLine); stroke-width: 7; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 7px 8px rgba(36,88,255,.18)); stroke-dasharray: 1300; animation: ctr-draw 1.25s cubic-bezier(.22,.72,.18,1) both; }
.ctr-points circle { fill: #fff; stroke: var(--blue); stroke-width: 5; }
.ctr-points .top circle { fill: var(--yellow); stroke: var(--navy); }
.ctr-points text { fill: #53647a; font: 700 14px Arial; text-anchor: middle; }
.ctr-points .top text { fill: var(--navy); font-size: 16px; }
.ctr-points .top text:first-of-type { fill: var(--blue); font-size: 27px; font-weight: 800; paint-order: stroke; stroke: #fff; stroke-width: 7px; stroke-linejoin: round; filter: drop-shadow(0 4px 5px rgba(36,88,255,.22)); }
.ctr-chart-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 14px; border-top: 1px solid #dbe2ec; }
.ctr-chart-foot span { color: #8795a8; font-size: 0; }
.ctr-chart-foot span:after { content: '* スニペット／AI概要：38.9–42.9%、ローカルパック：23.7%　** スニペット／AI概要：27.4–29.5%、ローカルパック：15.1%'; font-size: 8px; }
.ctr-chart-foot a { color: var(--blue); font-size: 9px; font-weight: 700; text-decoration: none; }
.ctr-chart-foot a:hover { text-decoration: underline; }
@keyframes ctr-draw { from { stroke-dashoffset: 1300; } to { stroke-dashoffset: 0; } }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1.25fr; gap: 14px; margin-top: 42px; }
.price-card { position: relative; min-height: 340px; padding: 30px; border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; }
.price-card.primary { border-top: 4px solid var(--yellow); }
.price-card.rank { color: #fff; background: var(--navy); border-color: var(--navy); }
.price-card > small { color: var(--blue); font: 700 8px Arial; letter-spacing: .14em; }
.price-card.rank > small { color: var(--yellow); }
.price-card h3 { margin: 35px 0 15px; font-size: 20px; }
.price-card > strong { display: flex; align-items: baseline; gap: 4px; color: var(--navy); }
.price-card > strong b,.rank-price strong b { font: 500 56px Arial; }
.price-card p { margin-top: auto; color: var(--muted); font-size: 12px; line-height: 1.85; }
.price-card.rank p { color: #9fadc0; }
.rank-price { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 5px; background: #304159; border: 1px solid #304159; }
.rank-price > span { padding: 16px; color: #9fadc0; background: #0b1829; font-size: 10px; }
.rank-price strong { display: block; margin-top: 8px; color: var(--yellow); white-space: nowrap; }
.pricing-note { margin-top: 18px; color: var(--muted); font-size: 10px; line-height: 1.7; }

@media (max-width: 950px) {
  .medical-intro-grid,.medical-visual-split,.medical-person { grid-template-columns: 1fr; gap: 45px; }
  .medical-visual-split.reverse > :first-child,.medical-visual-split.reverse > :last-child { order: initial; }
  .medical-three { grid-template-columns: 1fr 1fr; }
  .medical-phone { height: 460px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card.rank { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .medical-intro-grid,.medical-visual-split,.medical-person { gap: 34px; }
  .medical-phone { height: 390px; }
  .medical-phone img { width: 155px; }
  .medical-three { grid-template-columns: 1fr; gap: 10px; margin-top: 30px; }
  .medical-three article { min-height: 0; padding: 26px 22px; border-left: 3px solid var(--blue); }
  .medical-three h3 { margin-top: 42px; }
  .medical-demo { padding: 10px; box-shadow: 8px 8px 0 var(--yellow); }
  .responsive-lab { min-height: 430px; padding: 16px 12px; }
  .device-stage { grid-template-columns: minmax(0,1fr) 25px 92px; gap: 7px; min-height: 340px; padding: 18px 0; }
  .desktop-device { border-width: 4px; }
  .browser-bar { height: 20px; }
  .browser-bar span { display: none; }
  .mock-site header { padding-inline: 7px; }
  .mock-site header nav { gap: 3px; }
  .mock-site header nav i { width: 12px; }
  .mock-hero { min-height: 110px; }
  .mock-hero > div { padding: 13px 8px; }
  .mock-cards { gap: 4px; padding: 6px; }
  .mock-cards i { height: 34px; }
  .responsive-flow span { display: none; }
  .responsive-flow i { height: 42px; }
  .mobile-device { border-width: 4px; border-radius: 16px; }
  .mobile-device .mock-hero { min-height: 150px; }
  .lab-foot span:nth-child(2) { display: none; }
  .medical-chart { padding: 18px 12px 46px; }
  .medical-skills { gap: 7px; }
  .medical-skills span { padding: 11px 12px; font-size: 8px; }
  .medical-timeline { margin-top: 34px; }
  .medical-timeline article { grid-template-columns: 54px 1fr; gap: 12px; padding: 25px 0; }
  .medical-timeline b { font-size: 30px; }
  .medical-person figure { width: min(390px,100%); padding: 7px; }
  .kpi-split .copy { padding-top: 0; }
  .css-chart { min-height: 350px; padding: 45px 10px 50px 42px; }
  .css-chart:before { inset: 45px 10px 50px 42px; }
  .chart-y { left: 5px; top: 40px; bottom: 44px; }
  .line-plot { height: 255px; }
  .line-plot .point b { font-size: 6px; }
  .line-plot .point span { font-size: 7px; bottom: -25px; }
  .ctr-chart { padding: 22px 14px 16px; box-shadow: 8px 10px 0 rgba(15,30,51,.05); }
  .medical-chart .ctr-chart-head figcaption { font-size: 15px; }
  .ctr-chart-head > strong { font-size: 32px; }
  .ctr-chart-intro { font-size: 9px; }
  .ctr-plot { margin: 8px -7px 0; overflow-x: auto; }
  .ctr-plot svg { min-width: 620px; }
  .ctr-chart-foot { align-items: flex-start; flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 30px; }
  .price-card,.price-card.rank { grid-column: auto; min-height: 300px; padding: 26px 22px; }
  .rank-price { grid-template-columns: 1fr; }
}

/* Final polish overrides: keep these after every page-specific style. */
.figma-hero .network { transition: transform .7s cubic-bezier(.2,.8,.2,1); filter: none; }
.figma-hero .network:before { display: none; }
.figma-hero .orbit { border-width: 1px; border-style: dashed; border-color: rgba(36,88,255,.2); animation: spin 18s linear infinite; }
.figma-hero .orbit:after { border-style: solid; border-color: rgba(7,17,31,.1); animation: spin-reverse 26s linear infinite; }
.figma-hero .orbit-sub { border-color: rgba(216,165,0,.28); animation: spin-reverse 30s linear infinite; }
.figma-hero .core { inset: 28%; padding: 34px; border: 1px solid rgba(7,17,31,.12); border-radius: 50%; background: rgba(255,255,255,.86); box-shadow: 0 24px 70px rgba(7,17,31,.1),inset 0 0 0 9px rgba(255,255,255,.52); backdrop-filter: blur(12px); transform: none; animation: refined-core-float 5.5s ease-in-out infinite; }
.figma-hero .core:before { width: 9px; height: 9px; left: 16%; top: 20%; background: var(--yellow); box-shadow: none; }
.figma-hero .core:after { display: none; }
.figma-hero .core img { width: 132px; filter: none; transform: none; }
.figma-hero .core small { color: #647187; transform: none; }
.figma-hero .node { min-width: 104px; padding: 12px 15px; border: 1px solid rgba(7,17,31,.1); border-radius: 999px; background: rgba(255,255,255,.82); box-shadow: 0 12px 32px rgba(7,17,31,.075); backdrop-filter: blur(10px); animation: refined-node-float 6.5s ease-in-out infinite; }
.figma-hero .node:before { width: 5px; height: 5px; box-shadow: none; }
.figma-hero .node:hover,.figma-hero .node.is-active { color: var(--blue); border-color: rgba(36,88,255,.34); box-shadow: 0 15px 38px rgba(36,88,255,.1); translate: 0 -2px; }
.figma-hero .signal { width: 6px; height: 6px; background: #d8a500; box-shadow: 0 0 0 4px rgba(216,165,0,.1); animation: refined-signal 3.8s ease-in-out infinite; }
.page-hero { background-image: radial-gradient(circle at 82% 24%,rgba(36,88,255,.09),transparent 34%),linear-gradient(180deg,#fff,#f8faff); }
.float-code,.content-card,.feature,.blog-card,.terminal-art,.system-process-visual,.medical-demo,.ctr-chart { box-shadow: 0 18px 48px rgba(7,17,31,.07); }
.content-card,.feature,.blog-card { border-color: rgba(117,137,163,.22); }
a.content-card:hover { transform: translateY(-3px); border-color: rgba(36,88,255,.28); box-shadow: 0 22px 54px rgba(7,17,31,.1); }
.code-node { box-shadow: 0 9px 24px rgba(7,17,31,.08); transition: transform .35s ease,border-color .35s ease,box-shadow .35s ease; }
.code-node:hover,.code-node.is-active { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(36,88,255,.1); }
.medical-demo { box-shadow: 0 20px 50px rgba(7,17,31,.14); }
@media (max-width: 700px) {
  .figma-hero .network { transition: none; }
  .figma-hero .core { inset: 27%; padding: 24px; border-radius: 50%; box-shadow: 0 18px 44px rgba(7,17,31,.1),inset 0 0 0 6px rgba(255,255,255,.55); }
  .figma-hero .core img { width: 92px; }
  .figma-hero .node { padding: 8px 10px; border: 1px solid rgba(7,17,31,.1); box-shadow: 0 8px 20px rgba(7,17,31,.07); }
  .float-code,.content-card,.feature,.blog-card,.terminal-art,.system-process-visual,.medical-demo,.ctr-chart { box-shadow: 0 12px 32px rgba(7,17,31,.065); }
}

/* Second-level hero: preserve contrast and reserve space for its visual. */
.page-hero {
  color: #fff;
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(36,88,255,.15) 1px,transparent 1px),
    linear-gradient(90deg,rgba(36,88,255,.15) 1px,transparent 1px),
    radial-gradient(circle at 82% 52%,rgba(36,88,255,.32),transparent 31%);
  background-size: 56px 56px,56px 56px,auto;
}
.page-hero > .wrap { position: relative; z-index: 2; width: min(1180px,calc(100% - 48px)); }
.page-hero h1 { max-width: calc(100% - 410px); color: #fff; }
.page-hero .contact-heading { max-width: 900px; font-size: clamp(48px,4.7vw,68px); }
.contact-heading > span { display: block; white-space: nowrap; }
.page-hero .lead { max-width: min(680px,calc(100% - 410px)); color: #aebccc; }
.page-hero .eyebrow { color: #95a7bd; }
.page-hero .float-code {
  z-index: 2;
  right: max(5vw,40px);
  top: 50%;
  opacity: 1;
  transform: translateY(-50%);
}
.page-hero .code-node {
  color: #fff;
  border-color: rgba(150,170,198,.35);
  background: rgba(13,28,49,.9);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}
.page-hero .code-node:hover,.page-hero .code-node.is-active { color: var(--navy); background: var(--yellow); }
.page-hero .code-line { border-color: rgba(255,241,0,.46); }

@media (max-width: 700px) {
  .page-hero {
    min-height: 690px;
    padding: 72px 0 230px;
    background-size: 34px 34px,34px 34px,auto;
  }
  .page-hero > .wrap { width: min(100% - 36px,1180px); }
  .page-hero h1 {
    max-width: none;
    margin: 24px 0 22px;
    font-size: clamp(36px,10.5vw,46px);
    line-height: 1.3;
    letter-spacing: -.055em;
  }
  .page-hero .contact-heading { max-width: none; font-size: clamp(36px,10.5vw,46px); }
  .contact-heading > span { white-space: normal; }
  .page-hero .lead { max-width: none; font-size: 14px; line-height: 1.9; }
  .page-hero .float-code {
    width: min(280px,78vw);
    height: 190px;
    right: 50%;
    top: auto;
    bottom: 25px;
    transform: translateX(50%);
  }

  .form .privacy-check {
    width: 100%;
    display: flex !important;
    align-items: flex-start;
    gap: 12px !important;
  }
  .form .privacy-check input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin: 2px 0 0;
  }
  .form .privacy-check span {
    min-width: 0;
    flex: 1 1 auto;
    line-height: 1.8;
    overflow-wrap: normal;
    word-break: normal;
  }
}

.sp-only-break { display: none; }
@media (max-width: 700px) {
  .sp-only-break { display: initial; }
  .reason-heading { font-size: clamp(37px,10.5vw,46px) !important; line-height: 1.38 !important; letter-spacing: -.045em; }
}
