@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-ext-variable.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF;
}
@font-face {
  font-family: "DM Mono";
  src: url("../fonts/dm-mono-latin-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Mono";
  src: url("../fonts/dm-mono-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #040913;
  --bg2: #07101d;
  --panel: #0a1526;
  --panel2: #0d1c31;
  --line: rgba(139, 185, 231, 0.16);
  --line2: rgba(93, 190, 255, 0.36);
  --text: #f2f6fb;
  --muted: #9cafc4;
  --blue: #2587ff;
  --cyan: #64ddff;
  --green: #5ee6b5;
  --amber: #f6c76c;
  --max: 1220px;
  --radius: 14px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    15px/1.65 Manrope,
    Arial,
    sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      900px 600px at 88% -8%,
      rgba(37, 135, 255, 0.18),
      transparent 62%
    ),
    radial-gradient(
      700px 620px at -8% 42%,
      rgba(100, 221, 255, 0.07),
      transparent 70%
    ),
    var(--bg);
}
body:after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(120, 180, 230, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 180, 230, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(#000, transparent 80%);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.shell {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
}
.section {
  padding: 120px 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  margin: 20px 0 26px;
}
h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  font-weight: 500;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.35rem;
}
em {
  font-style: normal;
  background: linear-gradient(
    95deg,
    #eaf8ff 0%,
    var(--cyan) 45%,
    var(--blue) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lang-en {
  display: none;
}
body[data-lang="en"] .lang-de {
  display: none !important;
}
body[data-lang="en"] .lang-en {
  display: revert;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font:
    10px "DM Mono",
    monospace;
  letter-spacing: 0.18em;
  color: var(--cyan);
}
.eyebrow > span {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.eyebrow i {
  font-style: normal;
}
.eyebrow.centered {
  justify-content: center;
}
.eyebrow.centered > span:last-child {
  transform: rotate(180deg);
}
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.25s;
}
.site-header.scrolled {
  background: rgba(4, 9, 19, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #03101c;
  font-size: 20px;
  font-weight: 800;
  border-radius: 8px;
  background: linear-gradient(
    140deg,
    #e7f4ff,
    var(--cyan) 35%,
    var(--blue) 70%,
    #d8e7f5
  );
  box-shadow: 0 7px 22px rgba(37, 135, 255, 0.28);
  transform: skewY(-10deg);
}
.brand b {
  color: var(--cyan);
}
.main-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.main-nav a {
  padding: 9px 11px;
  border-radius: 7px;
  color: #c7d4e2;
  font-size: 12px;
  font-weight: 600;
  transition: 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(100, 221, 255, 0.07);
  color: #fff;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: #c3d2e1;
  border-radius: 7px;
  padding: 8px 10px;
  font: 10px "DM Mono";
  cursor: pointer;
}
.nav-cta {
  background: linear-gradient(110deg, var(--blue), var(--cyan));
  color: #03101b;
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 800;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 19px;
}
.hero {
  padding-top: 78px;
  min-height: 760px;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 44px;
  align-items: center;
  padding: 70px 0;
}
.hero-lead {
  max-width: 650px;
  font-size: 17px;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 34px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  transition: 0.22s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn.primary {
  background: linear-gradient(110deg, var(--blue), var(--cyan));
  color: #03101a;
  box-shadow: 0 12px 35px rgba(37, 135, 255, 0.24);
}
.btn.secondary {
  border-color: var(--line2);
  background: rgba(255, 255, 255, 0.025);
  color: #e8f4ff;
}
.hero-facts {
  display: flex;
  gap: 20px;
  margin-top: 38px;
}
.hero-facts div {
  display: grid;
  gap: 2px;
  padding-left: 12px;
  border-left: 1px solid var(--line2);
}
.hero-facts strong {
  font: 10px "DM Mono";
  color: var(--cyan);
}
.hero-facts span {
  font-size: 10px;
  color: var(--muted);
}
.visual-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #06101e;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}
.visual-frame img,
.web-hero-media img {
  aspect-ratio: 4/3;
}
.slide img {
  aspect-ratio: 16/10;
}
.visual-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 8, 16, 0.58),
    transparent 38%,
    transparent 78%,
    rgba(3, 8, 16, 0.22)
  );
  pointer-events: none;
}
.visual-frame img {
  width: 100%;
  aspect-ratio: 1.08/1;
  object-fit: cover;
}
.scanline {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  height: 1px;
  top: 20%;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 15px var(--cyan);
  opacity: 0.5;
  animation: scan 5s ease-in-out infinite;
}
@keyframes scan {
  50% {
    top: 78%;
    opacity: 0.22;
  }
}
.system-chip {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--line2);
  background: rgba(5, 13, 25, 0.82);
  backdrop-filter: blur(12px);
  border-radius: 8px;
  padding: 10px 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.system-chip small {
  display: block;
  font: 8px "DM Mono";
  letter-spacing: 0.11em;
  color: #83a2bf;
}
.system-chip b {
  font: 9px "DM Mono";
  color: #e8f6ff;
}
.system-chip b i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  margin-right: 5px;
}
.chip-a {
  right: 16px;
  top: 18%;
}
.chip-b {
  left: 16px;
  bottom: 16%;
}
.chip-c {
  right: 16px;
  bottom: 8%;
}
.focus-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 29, 0.7);
}
.focus-strip > a {
  display: grid;
  grid-template-columns: 44px 1fr 18px;
  align-items: center;
  gap: 12px;
  padding: 23px max(22px, calc((100vw - var(--max)) / 6));
  border-right: 1px solid var(--line);
}
.focus-strip > a:last-child {
  border-right: 0;
}
.focus-strip > a:hover {
  background: rgba(37, 135, 255, 0.055);
}
.focus-icon {
  font-size: 25px;
  color: var(--cyan);
}
.focus-strip b,
.focus-strip small {
  display: block;
}
.focus-strip b {
  font-size: 13px;
}
.focus-strip small {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
}
.focus-strip > a > i {
  font-style: normal;
  color: var(--cyan);
}
.section-heading.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 9%;
  align-items: end;
  margin-bottom: 48px;
}
.section-heading.split > div:last-child {
  color: var(--muted);
  font-size: 16px;
}
.section-heading.center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 55px;
}
.section-heading.center h2 {
  margin-inline: auto;
}
.section-heading.center > p:last-child {
  color: var(--muted);
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.capability {
  padding: 30px 27px 28px;
  min-height: 295px;
  border-right: 1px solid var(--line);
  background: linear-gradient(
    145deg,
    rgba(15, 35, 61, 0.48),
    rgba(8, 18, 32, 0.08)
  );
  transition: 0.25s;
}
.capability:first-child {
  border-left: 1px solid var(--line);
}
.capability:hover {
  background: linear-gradient(
    145deg,
    rgba(20, 52, 92, 0.62),
    rgba(8, 18, 32, 0.16)
  );
  transform: translateY(-5px);
}
.capability > span {
  font: 10px "DM Mono";
  color: var(--cyan);
}
.capability h3 {
  margin: 28px 0 14px;
}
.capability p {
  font-size: 12px;
  color: var(--muted);
}
.capability a,
.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
}
.showcase-dark {
  padding: 110px 0;
  background: linear-gradient(120deg, #071221, #09182b);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 7%;
  align-items: center;
}
.slideshow {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #020712;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.slide {
  display: none;
  margin: 0;
  position: relative;
}
.slide.active {
  display: block;
  animation: fadeSlide 0.55s ease;
}
@keyframes fadeSlide {
  from {
    opacity: 0.2;
    transform: scale(1.015);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.slide img {
  width: 100%;
  aspect-ratio: 1.3/1;
  object-fit: cover;
  opacity: 0.86;
}
.slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 8, 16, 0.9), transparent 45%);
}
.slide figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 90px;
  bottom: 19px;
  color: #dceaf7;
  font-size: 11px;
}
.slide-controls {
  position: absolute;
  z-index: 3;
  right: 15px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.slide-controls button {
  width: 29px;
  height: 29px;
  border: 1px solid var(--line2);
  background: rgba(4, 11, 22, 0.75);
  color: white;
  border-radius: 5px;
  cursor: pointer;
}
.slide-controls span {
  font: 8px "DM Mono";
  color: #9eb6cc;
}
.showcase-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
}
.check-list li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.check-list li:before {
  content: "✓";
  color: var(--cyan);
  margin-right: 9px;
}
.workflow-preview {
  overflow: hidden;
}
.mini-flow {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr 60px 1fr 60px 1fr;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(8, 20, 35, 0.7);
  padding: 34px;
  border-radius: 14px;
}
.mini-flow > span {
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  position: relative;
}
.mini-flow > span:after {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}
.mini-node {
  text-align: center;
}
.mini-node i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border: 1px solid var(--line2);
  border-radius: 10px;
  background: var(--panel);
  font: 10px "DM Mono";
  font-style: normal;
  color: var(--cyan);
}
.mini-node.active i {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #03101b;
  box-shadow: 0 0 25px rgba(55, 157, 255, 0.35);
}
.mini-node b,
.mini-node small {
  display: block;
}
.mini-node b {
  font-size: 11px;
}
.mini-node small {
  font-size: 9px;
  color: var(--muted);
}
.center-action {
  text-align: center;
  margin-top: 28px;
}
.industries-teaser {
  padding: 110px 0;
  background: rgba(7, 16, 29, 0.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.industry-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.industry-links a {
  display: grid;
  grid-template-columns: 42px 1fr 20px;
  gap: 10px;
  align-items: center;
  padding: 21px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.industry-links a:nth-child(odd) {
  border-left: 1px solid var(--line);
}
.industry-links a:hover {
  background: rgba(100, 221, 255, 0.05);
}
.industry-links span {
  font: 9px "DM Mono";
  color: var(--cyan);
}
.industry-links b {
  font-size: 13px;
}
.industry-links i {
  font-style: normal;
  color: var(--cyan);
}
.personal-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 9%;
  padding: 48px;
  border: 1px solid var(--line2);
  border-radius: 16px;
  background:
    radial-gradient(
      600px 240px at 10% 0,
      rgba(37, 135, 255, 0.14),
      transparent
    ),
    var(--panel);
}
.personal-card > div:last-child {
  align-self: end;
  color: var(--muted);
}
.contact-cta {
  padding: 110px 0;
  background: linear-gradient(115deg, #0a1a31, #07121f);
  border-top: 1px solid var(--line);
}
.contact-cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 9%;
  align-items: end;
}
.contact-cta-grid > div:last-child > p {
  color: var(--muted);
}
.site-footer {
  border-top: 1px solid var(--line);
  background: #030710;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 50px;
  padding: 52px 0;
}
.footer-intro p {
  font-size: 11px;
  color: var(--muted);
  max-width: 270px;
  margin-top: 16px;
}
.footer-col h4 {
  font: 9px "DM Mono";
  letter-spacing: 0.13em;
  color: #7fa1c1;
  margin: 0 0 14px;
}
.footer-col a {
  display: block;
  color: #b9c8d7;
  font-size: 11px;
  padding: 4px 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: #73889e;
  font: 9px "DM Mono";
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.22s;
}
/* inner pages */
.page-hero {
  padding: 155px 0 85px;
  border-bottom: 1px solid var(--line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 8%;
  align-items: end;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
}
.page-hero p:last-child {
  color: var(--muted);
  font-size: 17px;
}
.page-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.page-hero-meta div {
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.page-hero-meta b {
  display: block;
  color: var(--cyan);
  font: 10px "DM Mono";
}
.page-hero-meta span {
  font-size: 11px;
  color: var(--muted);
}
.content-section {
  padding: 100px 0;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.info-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(11, 25, 44, 0.62);
}
.info-card span {
  font: 9px "DM Mono";
  color: var(--cyan);
}
.info-card h3 {
  margin: 17px 0 10px;
}
.info-card p {
  font-size: 12px;
  color: var(--muted);
}
@media (max-width: 960px) {
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 24px;
    right: 24px;
    flex-direction: column;
    background: #07111f;
    border: 1px solid var(--line);
    padding: 15px;
    border-radius: 10px;
  }
  .nav-cta {
    display: none;
  }
  .hero-grid,
  .section-heading.split,
  .showcase-grid,
  .personal-card,
  .contact-cta-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    padding: 75px 0;
  }
  .hero-visual {
    max-width: 650px;
    margin: auto;
  }
  .focus-strip {
    grid-template-columns: 1fr;
  }
  .focus-strip > a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 24px;
  }
  .focus-strip > a:last-child {
    border-bottom: 0;
  }
  .mini-flow {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  .mini-flow > span {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 2;
  }
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .shell {
    width: calc(100% - 32px);
  }
  .section {
    padding: 82px 0;
  }
  .site-header {
    background: rgba(4, 9, 19, 0.88);
    backdrop-filter: blur(15px);
  }
  .nav {
    height: 68px;
  }
  .lang-toggle {
    padding: 7px;
  }
  .hero {
    padding-top: 68px;
  }
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  .hero-grid {
    padding: 56px 0;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-facts {
    gap: 12px;
    flex-wrap: wrap;
  }
  .hero-facts div {
    width: 45%;
  }
  .capability-grid,
  .industry-links,
  .content-grid {
    grid-template-columns: 1fr;
  }
  .capability {
    border-left: 1px solid var(--line);
  }
  .industry-links a {
    border-left: 1px solid var(--line);
  }
  .mini-flow {
    grid-template-columns: 1fr 1fr;
  }
  .mini-node:last-child {
    grid-column: 1/-1;
  }
  .personal-card {
    padding: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-intro {
    grid-column: 1/-1;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    gap: 12px;
    flex-direction: column;
  }
  .page-hero {
    padding: 120px 0 65px;
  }
  .page-hero-meta {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
}
.about-intro > div:last-child {
  color: var(--muted);
  font-size: 16px;
}
.process-section {
  padding: 100px 0;
  background: #081426;
  border-block: 1px solid var(--line);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.process-steps article {
  padding: 27px 22px;
  border-right: 1px solid var(--line);
}
.process-steps article:first-child {
  border-left: 1px solid var(--line);
}
.process-steps span {
  font: 9px "DM Mono";
  color: var(--cyan);
}
.process-steps h3 {
  margin: 25px 0 11px;
}
.process-steps p {
  font-size: 11px;
  color: var(--muted);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.values-grid article {
  padding: 27px;
  border: 1px solid var(--line);
  background: rgba(10, 24, 42, 0.66);
}
.values-grid article > b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line2);
  border-radius: 7px;
  color: var(--cyan);
}
.values-grid h3 {
  margin: 24px 0 12px;
}
.values-grid p {
  font-size: 11px;
  color: var(--muted);
}
.contact-page {
  padding: 155px 0 100px;
  min-height: 800px;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
}
.contact-page h1 {
  font-size: clamp(3rem, 5vw, 5rem);
}
.contact-page-grid > div > p:not(.eyebrow) {
  font-size: 16px;
  color: var(--muted);
}
.contact-direct {
  margin-top: 35px;
  border-top: 1px solid var(--line);
}
.contact-direct > a,
.contact-direct > div {
  display: grid;
  grid-template-columns: 85px 1fr 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.contact-direct small {
  font: 8px "DM Mono";
  color: #7190aa;
}
.contact-direct b {
  font-size: 11px;
}
.contact-direct span {
  color: var(--cyan);
}
.contact-form {
  padding: 28px;
  border: 1px solid var(--line2);
  border-radius: 12px;
  background: linear-gradient(145deg, #0b1b31, #07121f);
  display: grid;
  gap: 15px;
}
.form-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.form-head span {
  font: 8px "DM Mono";
  color: var(--cyan);
}
.form-head b {
  font-size: 12px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  color: #9eb4c8;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #071323;
  color: white;
  padding: 11px;
  font-size: 11px;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form .consent {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: start;
  font-weight: 400;
  line-height: 1.45;
}
.contact-form .consent input {
  margin: 2px 0;
}
.form-note {
  font-size: 8px;
  color: #6b8298;
}
.legal-page {
  padding: 145px 0 100px;
  max-width: 820px;
}
.legal-page h1 {
  font-size: 3.5rem;
}
.legal-page h2 {
  font-size: 1.4rem;
  margin-top: 36px;
}
.legal-page p {
  color: #a9bac9;
}
.legal-warning {
  padding: 17px;
  border: 1px solid rgba(246, 199, 108, 0.4);
  background: rgba(246, 199, 108, 0.08);
  color: #f4d89c;
  border-radius: 8px;
  font-size: 11px;
}
@media (max-width: 850px) {
  .about-intro,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
  .process-steps,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-page {
    padding-top: 120px;
  }
}
@media (max-width: 560px) {
  .process-steps,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .process-steps article {
    border-left: 1px solid var(--line);
  }
  .contact-form {
    padding: 20px;
  }
  .contact-direct > a,
  .contact-direct > div {
    grid-template-columns: 70px 1fr;
  }
}

/* Nexlogic V4 — cinematic presentation, technical depth and complete device demo */
@keyframes slideTimer {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes marqueeMove {
  to {
    transform: translateX(-50%);
  }
}
@keyframes coreFloat {
  50% {
    transform: translateY(-12px) rotateX(5deg) rotateY(-7deg);
  }
}
@keyframes ringRotate {
  to {
    transform: translate(-50%, -50%) rotateX(69deg) rotateZ(360deg);
  }
}
@keyframes nodeGlow {
  50% {
    border-color: rgba(100, 221, 255, 0.62);
    box-shadow: 0 0 24px rgba(50, 170, 255, 0.18);
  }
}
@keyframes previewLine {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(280%);
  }
}

.hero-home:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    420px 420px at var(--pointer-x, 75%) var(--pointer-y, 32%),
    rgba(39, 150, 255, 0.09),
    transparent 68%
  );
}
.hero-presentation {
  min-height: 590px;
  isolation: isolate;
  border-color: rgba(110, 203, 255, 0.34);
}
.hero-presentation .slide {
  height: 590px;
}
.hero-presentation .slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  opacity: 0.93;
}
.hero-presentation .slide:nth-child(2) img,
.hero-presentation .slide:nth-child(3) img {
  object-position: 58% center;
}
.hero-presentation .slide:after {
  background:
    linear-gradient(0deg, rgba(2, 7, 14, 0.96), transparent 38%),
    linear-gradient(90deg, rgba(2, 7, 14, 0.28), transparent 55%);
}
.hero-presentation .slide figcaption {
  left: 24px;
  right: 160px;
  bottom: 74px;
  display: grid;
  gap: 4px;
}
.hero-presentation .slide figcaption small,
.work-presentation figcaption small,
.code-slideshow figcaption small {
  color: var(--cyan);
  font:
    500 8px/1.2 "DM Mono",
    monospace;
  letter-spacing: 0.13em;
}
.hero-presentation .slide figcaption b {
  color: #fff;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.hero-presentation .scanline,
.hero-presentation .system-chip,
.hero-presentation .hero-orbit,
.hero-presentation .hero-slide-nav {
  z-index: 5;
}
.hero-slide-nav {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto auto;
  align-items: center;
  gap: 14px;
}
.slide-progress {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(177, 216, 244, 0.17);
}
.slide-progress i {
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 12px var(--cyan);
}
.slide-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.slide-dots button {
  width: 5px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: rgba(218, 239, 255, 0.35);
  cursor: pointer;
  transition: 0.25s ease;
}
.slide-dots button.active {
  width: 21px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(100, 221, 255, 0.65);
}
.slide-controls.compact {
  position: static;
}
.hero-presentation .chip-b {
  bottom: 23%;
}
.hero-presentation .chip-c {
  bottom: 15%;
}

.work-presentation {
  overflow: visible;
  border-radius: 18px;
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.52),
    -24px 28px 0 -22px rgba(48, 151, 246, 0.2);
}
.work-presentation:before {
  content: "WORK / 4K";
  position: absolute;
  z-index: 5;
  top: 16px;
  left: 17px;
  padding: 7px 9px;
  border: 1px solid rgba(131, 204, 255, 0.25);
  background: rgba(4, 12, 23, 0.76);
  color: #badcf3;
  font:
    7px "DM Mono",
    monospace;
  letter-spacing: 0.16em;
  backdrop-filter: blur(10px);
}
.work-presentation .slide {
  overflow: hidden;
  border-radius: 18px;
}
.work-presentation .slide img {
  aspect-ratio: 16 / 10;
  opacity: 0.95;
}
.work-presentation .slide figcaption {
  right: 120px;
  bottom: 24px;
  display: grid;
  gap: 6px;
  font-size: 12px;
}
.work-presentation > .slide-progress {
  position: absolute;
  z-index: 4;
  left: 18px;
  right: 18px;
  bottom: 8px;
}
.work-presentation > .slide-dots {
  position: absolute;
  z-index: 5;
  top: 20px;
  right: 18px;
}
.showcase-copy h2 {
  max-width: 680px;
}

.engineering-spectrum {
  position: relative;
  overflow: hidden;
  padding: 0 0 120px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      700px 500px at 51% 58%,
      rgba(27, 129, 238, 0.12),
      transparent 72%
    ),
    #050c17;
}
.engineering-spectrum:before {
  content: "";
  position: absolute;
  inset: 58px 0 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(94, 175, 232, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 175, 232, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}
.spectrum-marquee {
  position: relative;
  overflow: hidden;
  margin-bottom: 96px;
  border-block: 1px solid rgba(115, 190, 239, 0.15);
  background: rgba(9, 23, 40, 0.66);
}
.spectrum-marquee div {
  width: max-content;
  padding: 14px 0;
  color: rgba(171, 218, 247, 0.48);
  font:
    500 9px "DM Mono",
    monospace;
  letter-spacing: 0.22em;
  white-space: nowrap;
  animation: marqueeMove 32s linear infinite;
}
.spectrum-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(270px, 0.8fr) minmax(
      290px,
      0.95fr
    );
  gap: 54px;
  align-items: center;
}
.spectrum-copy > p:not(.eyebrow) {
  color: var(--muted);
}
.spectrum-copy h2 {
  margin-bottom: 22px;
}
.spectrum-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-block: 1px solid var(--line);
}
.spectrum-facts div {
  padding: 15px 10px 15px 0;
}
.spectrum-facts b,
.spectrum-facts span {
  display: block;
}
.spectrum-facts b {
  color: var(--cyan);
  font:
    500 18px "DM Mono",
    monospace;
}
.spectrum-facts span {
  margin-top: 4px;
  color: #9fb2c5;
  font-size: 9px;
}
.tech-core-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  perspective: 1000px;
}
.tech-core {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  align-content: center;
  width: 178px;
  height: 198px;
  clip-path: polygon(50% 0, 92% 22%, 92% 77%, 50% 100%, 8% 77%, 8% 22%);
  background: linear-gradient(
    145deg,
    rgba(33, 118, 204, 0.9),
    rgba(4, 15, 28, 0.96) 52%,
    rgba(35, 156, 232, 0.5)
  );
  box-shadow: 0 0 70px rgba(36, 144, 244, 0.3);
  animation: coreFloat 6s ease-in-out infinite;
}
.tech-core:before {
  content: "";
  position: absolute;
  inset: 1px;
  clip-path: inherit;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.18),
    transparent 25%,
    rgba(2, 8, 16, 0.28)
  );
}
.tech-core-mark {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 64px;
}
.tech-core-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(61, 179, 255, 0.55));
}
.tech-core small,
.tech-core b {
  position: relative;
  z-index: 1;
}
.tech-core small {
  margin-top: 12px;
  color: #b8d7ee;
  font:
    6px "DM Mono",
    monospace;
  letter-spacing: 0.15em;
}
.tech-core b {
  margin-top: 4px;
  color: #fff;
  font:
    800 13px Manrope,
    sans-serif;
  letter-spacing: 0.18em;
}
.tech-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(85, 193, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(69deg);
  filter: drop-shadow(0 0 8px rgba(65, 172, 244, 0.3));
}
.tech-orbit:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 13px var(--cyan);
}
.tech-orbit-one {
  width: 360px;
  height: 360px;
  animation: ringRotate 14s linear infinite;
}
.tech-orbit-two {
  width: 275px;
  height: 275px;
  animation: ringRotate 9s linear infinite reverse;
}
.core-node {
  position: absolute;
  z-index: 4;
  padding: 8px 10px;
  border: 1px solid rgba(109, 185, 238, 0.22);
  border-radius: 5px;
  background: rgba(5, 15, 28, 0.85);
  color: #a9c8de;
  font:
    6px "DM Mono",
    monospace;
  letter-spacing: 0.12em;
  backdrop-filter: blur(10px);
  animation: nodeGlow 4s ease-in-out infinite;
}
.node-one {
  top: 13%;
  left: 2%;
}
.node-two {
  top: 18%;
  right: -4%;
  animation-delay: -1s;
}
.node-three {
  bottom: 14%;
  left: -2%;
  animation-delay: -2s;
}
.node-four {
  right: 2%;
  bottom: 9%;
  animation-delay: -3s;
}
.spectrum-cards {
  border-top: 1px solid var(--line);
}
.spectrum-cards article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  transition: 0.22s ease;
}
.spectrum-cards article:hover {
  padding-left: 8px;
  border-color: var(--line2);
}
.spectrum-cards article > span {
  color: var(--cyan);
  font:
    8px "DM Mono",
    monospace;
}
.spectrum-cards b,
.spectrum-cards small {
  display: block;
}
.spectrum-cards b {
  color: #e9f5ff;
  font-size: 11px;
}
.spectrum-cards small {
  margin-top: 2px;
  color: #8399ad;
  font-size: 9px;
}

.code-lab-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(135deg, #050c17, #09182a 58%, #06101c);
}
.code-lab-section:after {
  content: "";
  position: absolute;
  right: -160px;
  top: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(68, 166, 241, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(50, 150, 240, 0.02),
    0 0 0 150px rgba(50, 150, 240, 0.016);
}
.code-lab-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 6.5%;
  align-items: center;
}
.code-lab-media {
  perspective: 1100px;
}
.code-slideshow {
  overflow: visible;
  transform: rotateY(2deg) rotateX(1deg);
  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.5),
    -28px 28px 0 -25px rgba(49, 148, 237, 0.28);
}
.code-slideshow .slide {
  overflow: hidden;
  border-radius: 15px;
}
.code-slideshow .slide img {
  aspect-ratio: 16/10;
  opacity: 0.95;
}
.code-slideshow .slide figcaption {
  right: 108px;
  bottom: 23px;
  display: grid;
  gap: 5px;
}
.code-slideshow > .slide-progress {
  position: absolute;
  z-index: 4;
  left: 17px;
  right: 17px;
  bottom: 8px;
}
.code-slideshow > .slide-dots {
  position: absolute;
  z-index: 4;
  right: 18px;
  top: 18px;
}
.code-lab-copy > p:not(.eyebrow) {
  color: var(--muted);
}
.engineering-points {
  margin-top: 31px;
  border-top: 1px solid var(--line);
}
.engineering-points article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.engineering-points article > span {
  color: var(--cyan);
  font:
    8px "DM Mono",
    monospace;
}
.engineering-points b,
.engineering-points small {
  display: block;
}
.engineering-points b {
  font-size: 11px;
}
.engineering-points small {
  margin-top: 2px;
  color: #8fa5b8;
  font-size: 9px;
}

.web-demo {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(
      760px 480px at 32% 57%,
      rgba(29, 135, 241, 0.13),
      transparent 72%
    ),
    linear-gradient(120deg, #06101d, #071426);
}
.web-demo:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(107, 183, 236, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 183, 236, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.responsive-stage {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.42fr) minmax(220px, 0.58fr);
  gap: 50px;
}
.preview-switch button {
  padding: 10px 16px;
  border-color: rgba(108, 181, 232, 0.22);
}
.preview-device {
  position: relative;
  width: 100%;
  aspect-ratio: 1.56 / 1;
  padding: 0;
  border: 7px solid #18283a;
  border-radius: 15px;
  overflow: hidden;
  color: #eff7ff;
  background: #050b13;
  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(151, 207, 245, 0.1),
    0 0 70px rgba(31, 142, 236, 0.11);
}
.preview-device.tablet {
  width: 76%;
  aspect-ratio: 1.05/1;
  border-radius: 20px;
}
.preview-device.mobile {
  width: 39%;
  aspect-ratio: 0.56/1;
  border-width: 6px;
  border-radius: 25px;
}
.device-browser-bar {
  height: 25px;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  padding: 0 10px;
  border-bottom: 1px solid rgba(124, 183, 225, 0.15);
  background: #101c2a;
}
.device-browser-bar > span {
  display: flex;
  gap: 4px;
}
.device-browser-bar > span i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #46627b;
}
.device-browser-bar > span i:first-child {
  background: #3ea8f0;
}
.device-browser-bar b {
  justify-self: center;
  color: #8198ac;
  font:
    5px "DM Mono",
    monospace;
  letter-spacing: 0.06em;
}
.device-browser-bar small {
  justify-self: end;
  color: var(--green);
  font:
    5px "DM Mono",
    monospace;
}
.demo-site {
  position: relative;
  height: calc(100% - 25px);
  overflow: hidden;
  background:
    radial-gradient(
      280px 220px at 76% 35%,
      rgba(35, 139, 228, 0.17),
      transparent 74%
    ),
    #050c16;
}
.demo-nav {
  height: 13%;
  display: flex;
  align-items: center;
  gap: 4%;
  padding: 0 4.5%;
  border-bottom: 1px solid rgba(126, 186, 228, 0.13);
}
.demo-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: auto;
}
.demo-brand img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}
.demo-brand b {
  font-size: 6px;
  letter-spacing: 0.14em;
}
.demo-links {
  display: flex;
  gap: 12px;
}
.demo-links i {
  color: #8296aa;
  font:
    normal 4.5px "DM Mono",
    monospace;
  letter-spacing: 0.05em;
}
.demo-nav-cta {
  padding: 5px 7px;
  border: 1px solid rgba(74, 179, 246, 0.38);
  border-radius: 3px;
  color: #d9f2ff;
  font:
    5px "DM Mono",
    monospace;
}
.demo-menu {
  display: none;
}
.demo-hero {
  height: 61%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4%;
  align-items: center;
  padding: 4.6%;
}
.demo-hero-copy > small {
  color: var(--cyan);
  font:
    5px "DM Mono",
    monospace;
  letter-spacing: 0.12em;
}
.demo-hero h3 {
  margin: 8px 0 7px;
  color: #f5f9fd;
  font-size: clamp(12px, 1.35vw, 21px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.demo-hero h3 em {
  color: #65c9ff;
  font-style: normal;
}
.demo-hero p {
  max-width: 280px;
  margin: 0 0 10px;
  color: #8ea2b5;
  font-size: clamp(4.5px, 0.48vw, 7px);
  line-height: 1.5;
}
.demo-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: linear-gradient(135deg, #1979e8, #39b8f3);
  border-radius: 3px;
  color: white;
  font:
    5px "DM Mono",
    monospace;
}
.demo-stats {
  display: flex;
  gap: 14px;
  margin-top: 13px;
}
.demo-stats span {
  display: grid;
  border-left: 1px solid rgba(90, 190, 250, 0.32);
  padding-left: 6px;
}
.demo-stats b {
  color: #eaf6ff;
  font:
    7px "DM Mono",
    monospace;
}
.demo-stats small {
  color: #71879b;
  font:
    4px "DM Mono",
    monospace;
}
.demo-visual {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(102, 185, 239, 0.2);
  border-radius: 7px;
  background: #0a1725;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
}
.demo-visual:before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 15, 0.18), transparent 55%),
    linear-gradient(0deg, rgba(3, 9, 16, 0.65), transparent 38%);
}
.demo-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  opacity: 0.88;
}
.demo-visual-label {
  position: absolute;
  z-index: 3;
  left: 7px;
  bottom: 7px;
  padding: 4px 6px;
  background: rgba(4, 12, 21, 0.76);
  border: 1px solid rgba(92, 185, 243, 0.27);
  border-radius: 3px;
  font:
    4px "DM Mono",
    monospace;
}
.demo-visual-label i {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 3px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}
.demo-depth-line {
  position: absolute;
  z-index: 3;
  left: 0;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.6;
  animation: previewLine 4s linear infinite;
}
.line-one {
  top: 27%;
}
.line-two {
  top: 62%;
  animation-delay: -2s;
}
.demo-service-row {
  height: 19%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 4.5%;
  border: 1px solid rgba(121, 184, 226, 0.13);
}
.demo-service-row article {
  position: relative;
  display: grid;
  align-content: center;
  padding: 7px 10px;
  border-right: 1px solid rgba(121, 184, 226, 0.13);
}
.demo-service-row article:last-child {
  border-right: 0;
}
.demo-service-row small {
  color: var(--cyan);
  font:
    4px "DM Mono",
    monospace;
}
.demo-service-row b {
  margin-top: 2px;
  font-size: 6px;
}
.demo-service-row span {
  color: #72899c;
  font-size: 4.5px;
}
.demo-service-row i {
  position: absolute;
  right: 8px;
  top: 9px;
  color: #4fbef8;
  font:
    normal 6px "DM Mono",
    monospace;
}
.demo-proof-row {
  height: 7%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  color: #647d91;
  font:
    4px "DM Mono",
    monospace;
  letter-spacing: 0.08em;
}
.demo-proof-row i {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--cyan);
}
.device-reflection {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    rgba(255, 255, 255, 0.08),
    transparent 18%,
    transparent 72%,
    rgba(87, 177, 239, 0.04)
  );
}
.preview-device.tablet .demo-hero {
  grid-template-columns: 1fr;
  height: 66%;
  padding: 5%;
}
.preview-device.tablet .demo-hero-copy {
  position: absolute;
  z-index: 3;
  width: 51%;
  padding: 12px;
  background: linear-gradient(
    90deg,
    rgba(3, 10, 18, 0.94),
    rgba(3, 10, 18, 0.58),
    transparent
  );
}
.preview-device.tablet .demo-visual {
  grid-column: 1;
  height: 100%;
}
.preview-device.tablet .demo-links {
  display: none;
}
.preview-device.tablet .demo-menu {
  display: block;
  font: 7px "DM Mono";
}
.preview-device.tablet .demo-service-row {
  height: 18%;
}
.preview-device.mobile .device-browser-bar {
  height: 20px;
  grid-template-columns: 1fr auto;
}
.preview-device.mobile .device-browser-bar b {
  display: none;
}
.preview-device.mobile .demo-site {
  height: calc(100% - 20px);
  overflow-y: auto;
  scrollbar-width: none;
}
.preview-device.mobile .demo-nav {
  height: 9%;
  min-height: 38px;
  padding-inline: 7%;
}
.preview-device.mobile .demo-brand img {
  width: 17px;
  height: 17px;
}
.preview-device.mobile .demo-brand b {
  font-size: 5px;
}
.preview-device.mobile .demo-links,
.preview-device.mobile .demo-nav-cta {
  display: none;
}
.preview-device.mobile .demo-menu {
  display: block;
  font: 7px "DM Mono";
}
.preview-device.mobile .demo-hero {
  height: auto;
  min-height: 68%;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 10px;
  padding: 10% 7% 7%;
}
.preview-device.mobile .demo-hero-copy {
  position: static;
  width: auto;
  padding: 0;
  background: none;
}
.preview-device.mobile .demo-hero h3 {
  font-size: 14px;
  margin: 7px 0;
}
.preview-device.mobile .demo-hero p {
  font-size: 5.2px;
}
.preview-device.mobile .demo-visual {
  height: 145px;
  grid-column: auto;
}
.preview-device.mobile .demo-stats {
  gap: 8px;
}
.preview-device.mobile .demo-service-row {
  height: auto;
  grid-template-columns: 1fr;
  margin: 0 7% 7%;
}
.preview-device.mobile .demo-service-row article {
  min-height: 47px;
  border-right: 0;
  border-bottom: 1px solid rgba(121, 184, 226, 0.13);
}
.preview-device.mobile .demo-service-row article:last-child {
  border-bottom: 0;
}
.preview-device.mobile .demo-proof-row {
  display: none;
}

.professional-discretion {
  padding: 92px 0;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(
      600px 300px at 12% 50%,
      rgba(31, 132, 232, 0.1),
      transparent 75%
    ),
    #07111f;
}
.discretion-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8%;
  align-items: start;
}
.discretion-title {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
}
.discretion-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line2);
  border-radius: 10px;
  color: var(--cyan);
  background: rgba(17, 46, 76, 0.55);
  box-shadow: inset 0 0 22px rgba(46, 157, 244, 0.11);
}
.discretion-title h2 {
  margin-bottom: 0;
}
.discretion-copy > p {
  color: var(--muted);
}
.discretion-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 25px 0 18px;
  border-block: 1px solid var(--line);
}
.discretion-points span {
  display: grid;
  gap: 5px;
  padding: 15px 12px 15px 0;
}
.discretion-points i {
  color: var(--cyan);
  font:
    normal 7px "DM Mono",
    monospace;
}
.discretion-points b {
  font-size: 9px;
}
.discretion-copy > small {
  color: #74899d;
  font-size: 8px;
}
.confidential-note {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(104, 189, 244, 0.18);
  border-radius: 9px;
  background: rgba(11, 31, 53, 0.56);
}
.confidential-note > span {
  color: var(--cyan);
}
.confidential-note p {
  margin: 0;
  color: #9eb2c5;
  font-size: 10px;
  line-height: 1.55;
}
.confidential-note b {
  color: #dcebf6;
}

@media (max-width: 1080px) {
  .hero-presentation,
  .hero-presentation .slide {
    min-height: 520px;
    height: 520px;
  }
  .spectrum-grid {
    grid-template-columns: 1fr 1fr;
  }
  .spectrum-copy {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
  }
  .spectrum-copy .eyebrow,
  .spectrum-copy h2 {
    grid-column: 1;
  }
  .spectrum-copy > p:not(.eyebrow),
  .spectrum-facts {
    grid-column: 2;
  }
  .spectrum-copy > p:not(.eyebrow) {
    grid-row: 1 / span 2;
    align-self: end;
  }
  .spectrum-facts {
    align-self: start;
  }
  .code-lab-grid {
    gap: 5%;
  }
}

@media (max-width: 850px) {
  .hero-presentation,
  .hero-presentation .slide {
    min-height: 560px;
    height: 560px;
  }
  .hero-presentation .slide img {
    object-position: center;
  }
  .spectrum-grid,
  .code-lab-grid,
  .discretion-grid {
    grid-template-columns: 1fr;
  }
  .spectrum-copy {
    grid-column: auto;
    display: block;
  }
  .tech-core-wrap {
    min-height: 410px;
  }
  .spectrum-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .spectrum-cards article:nth-child(odd) {
    padding-right: 18px;
  }
  .spectrum-cards article:nth-child(even) {
    padding-left: 18px;
    border-left: 1px solid var(--line);
  }
  .code-lab-media {
    order: 2;
  }
  .responsive-stage {
    grid-template-columns: 1fr;
  }
  .preview-device {
    max-width: 760px;
  }
  .preview-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .preview-notes div {
    grid-template-columns: 25px 1fr;
    align-content: start;
    padding: 15px 10px;
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .hero-presentation,
  .hero-presentation .slide {
    min-height: 475px;
    height: 475px;
  }
  .hero-presentation .slide figcaption {
    left: 16px;
    right: 16px;
    bottom: 71px;
  }
  .hero-presentation .chip-b,
  .hero-presentation .chip-c {
    display: none;
  }
  .hero-presentation .chip-a {
    top: 14px;
    right: 14px;
  }
  .hero-slide-nav {
    left: 16px;
    right: 16px;
    grid-template-columns: 1fr auto;
  }
  .hero-slide-nav .slide-dots {
    display: none;
  }
  .work-presentation .slide img,
  .code-slideshow .slide img {
    aspect-ratio: 4/3;
  }
  .work-presentation .slide figcaption,
  .code-slideshow .slide figcaption {
    left: 15px;
    right: 94px;
    bottom: 20px;
    font-size: 10px;
  }
  .spectrum-marquee {
    margin-bottom: 72px;
  }
  .engineering-spectrum,
  .code-lab-section,
  .web-demo,
  .professional-discretion {
    padding-bottom: 84px;
  }
  .tech-core-wrap {
    min-height: 360px;
    transform: scale(0.9);
  }
  .spectrum-cards {
    grid-template-columns: 1fr;
  }
  .spectrum-cards article:nth-child(odd),
  .spectrum-cards article:nth-child(even) {
    padding-inline: 0;
    border-left: 0;
  }
  .spectrum-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .spectrum-facts span {
    font-size: 8px;
  }
  .code-slideshow {
    transform: none;
  }
  .preview-device {
    aspect-ratio: 0.9/1;
  }
  .preview-device.desktop .demo-hero {
    grid-template-columns: 1fr;
    height: 67%;
  }
  .preview-device.desktop .demo-hero-copy {
    position: absolute;
    z-index: 3;
    width: 53%;
    padding: 10px;
    background: linear-gradient(
      90deg,
      rgba(3, 10, 18, 0.94),
      rgba(3, 10, 18, 0.42),
      transparent
    );
  }
  .preview-device.desktop .demo-visual {
    grid-column: 1;
    height: 100%;
  }
  .preview-device.tablet {
    width: 91%;
  }
  .preview-device.mobile {
    width: 70%;
    min-width: 245px;
  }
  .preview-notes {
    grid-template-columns: 1fr;
  }
  .preview-notes div {
    border-right: 0;
  }
  .discretion-title {
    grid-template-columns: 1fr;
  }
  .discretion-points {
    grid-template-columns: 1fr;
  }
  .discretion-points span {
    grid-template-columns: 28px 1fr;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spectrum-marquee div,
  .tech-core,
  .tech-orbit,
  .core-node,
  .demo-depth-line,
  .slide-progress i {
    animation: none !important;
  }
  .slide-progress i {
    transform: scaleX(1);
  }
}

/* V3: trust, case studies, workflow evidence and mobile-first polish */
:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.brand-emblem {
  background: linear-gradient(145deg, #112235, #07111d);
}
.brand-emblem img {
  object-fit: contain;
  padding: 2px;
}
.footer-logo {
  display: block;
  width: min(330px, 100%);
  margin-bottom: 20px;
}
.footer-logo img {
  width: 100%;
  height: auto;
}

/* Before / after */
.before-after-section {
  padding: 110px 0;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(
      700px 420px at 50% 50%,
      rgba(36, 134, 231, 0.11),
      transparent 72%
    ),
    #06101c;
}
.comparison-board {
  display: grid;
  grid-template-columns: 1fr 150px 1fr;
  align-items: center;
  gap: 0;
  max-width: 1120px;
  margin: auto;
}
.comparison-side {
  position: relative;
  min-height: 420px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(15, 32, 53, 0.92),
    rgba(7, 17, 30, 0.95)
  );
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.28);
}
.comparison-side.automated {
  border-color: rgba(100, 221, 255, 0.35);
  background: linear-gradient(
    145deg,
    rgba(20, 57, 92, 0.92),
    rgba(7, 21, 37, 0.96)
  );
}
.comparison-side header {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.comparison-side header > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line2);
  border-radius: 10px;
  color: var(--cyan);
  font: 500 11px "DM Mono";
}
.comparison-side small {
  color: #7892a8;
  font: 500 10px "DM Mono";
  letter-spacing: 0.12em;
}
.comparison-side h3 {
  margin: 4px 0 0;
  font-size: 1.35rem;
}
.comparison-side ul {
  list-style: none;
  padding: 20px 0 8px;
  margin: 0;
}
.comparison-side li {
  position: relative;
  padding: 11px 0 11px 25px;
  border-bottom: 1px solid rgba(139, 185, 231, 0.09);
  color: #b4c4d2;
  font-size: 13px;
}
.comparison-side li:before {
  content: "×";
  position: absolute;
  left: 0;
  color: #d88989;
}
.comparison-side.automated li:before {
  content: "✓";
  color: var(--green);
}
.comparison-side > strong {
  display: block;
  margin-top: 18px;
  color: #dbe7f1;
  font-size: 12px;
}
.comparison-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 1px solid var(--line2);
  border-radius: 50%;
  background: #071526;
  box-shadow:
    0 0 0 18px rgba(37, 135, 255, 0.035),
    0 0 45px rgba(37, 135, 255, 0.18);
}
.comparison-core:before,
.comparison-core:after {
  content: "";
  position: absolute;
  width: 55px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}
.comparison-core:before {
  left: -55px;
}
.comparison-core:after {
  right: -55px;
  transform: rotate(180deg);
}
.comparison-core i {
  position: absolute;
  width: 78%;
  height: 78%;
  border: 1px dashed rgba(100, 221, 255, 0.35);
  border-radius: 50%;
  animation: orbitSpin 15s linear infinite;
}
.comparison-core span {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #bfeeff;
  font: 500 9px/1.65 "DM Mono";
  letter-spacing: 0.08em;
}

/* Case study teasers */
.case-teaser-section {
  padding: 115px 0;
  background: #050c16;
}
.case-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.case-teaser {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #081526;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.24);
}
.case-teaser img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: 0.55s ease;
}
.case-teaser:hover img {
  transform: scale(1.04);
}
.case-teaser > div {
  padding: 24px;
}
.case-teaser small,
.case-teaser > div > span {
  color: var(--cyan);
  font: 500 10px/1.4 "DM Mono";
}
.case-teaser h3 {
  margin: 17px 0 14px;
}
.case-label {
  margin: 20px 0 0;
  color: #7f96aa;
  font-size: 11px;
}

/* Trust */
.trust-section {
  padding: 105px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, #081426, #06101c);
}
.trust-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8%;
  align-items: start;
}
.trust-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.trust-points article {
  min-height: 225px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-points article > b {
  color: var(--cyan);
  font: 500 10px "DM Mono";
}
.trust-points h3 {
  margin: 28px 0 12px;
}
.trust-points p {
  color: var(--muted);
  font-size: 12px;
}

/* Founder */
.founder-section {
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(
    620px 420px at 12% 50%,
    rgba(37, 135, 255, 0.13),
    transparent 72%
  );
}
.founder-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8%;
  align-items: center;
}
.founder-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(110, 195, 251, 0.25);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(38, 135, 222, 0.24),
      transparent 35%
    ),
    linear-gradient(145deg, #0c1d31, #050d17);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.38);
}
.founder-visual:before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(100, 221, 255, 0.16);
  border-radius: 50%;
  transform: rotateX(68deg);
  box-shadow:
    0 0 0 40px rgba(100, 221, 255, 0.02),
    0 0 0 90px rgba(100, 221, 255, 0.015);
}
.founder-emblem {
  position: absolute;
  inset: 15% 12% 24%;
  display: grid;
  place-items: center;
  transform: translateZ(32px);
}
.founder-emblem img {
  width: 82%;
  max-height: 100%;
  filter: drop-shadow(0 25px 28px rgba(0, 0, 0, 0.5));
  animation: founderFloat 5.5s ease-in-out infinite;
}
@keyframes founderFloat {
  50% {
    transform: translateY(-12px);
  }
}
.founder-status {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b6cfdf;
  font: 500 9px "DM Mono";
  letter-spacing: 0.1em;
}
.founder-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}
.founder-coordinates {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.founder-coordinates small,
.founder-coordinates b {
  display: block;
}
.founder-coordinates small {
  color: #7892a9;
  font: 500 9px "DM Mono";
}
.founder-coordinates b {
  margin-top: 5px;
  font-size: 17px;
}
.founder-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
}
.founder-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 28px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.founder-facts span {
  padding: 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.founder-facts span:before {
  content: "✓";
  margin-right: 8px;
  color: var(--cyan);
}

/* Detailed concept cases */
.case-hero {
  background: radial-gradient(
    800px 480px at 85% 45%,
    rgba(37, 135, 255, 0.13),
    transparent 72%
  );
}
.case-hero-seal {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(15, 35, 58, 0.9),
    rgba(5, 13, 23, 0.92)
  );
}
.case-hero-seal img {
  width: 100%;
}
.case-hero-seal span {
  color: #7790a6;
  font: 500 10px "DM Mono";
  letter-spacing: 0.14em;
}
.case-study-section {
  padding: 110px 0;
}
.case-study {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 7%;
  align-items: start;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.case-study:first-child {
  padding-top: 0;
}
.case-study.reverse .case-media {
  order: 2;
}
.case-media {
  position: sticky;
  top: 120px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #07111d;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.34);
}
.case-media img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}
.case-media span {
  display: block;
  padding: 14px 17px;
  color: var(--cyan);
  font: 500 9px "DM Mono";
}
.case-content > h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.6rem);
}
.case-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 35px 0;
}
.case-columns > div {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(10, 25, 43, 0.62);
}
.case-columns small {
  color: var(--cyan);
  font: 500 9px "DM Mono";
}
.case-columns p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.case-flow {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  border-top: 1px solid var(--line);
}
.case-flow li {
  display: grid;
  grid-template-columns: 45px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.case-flow b {
  color: var(--cyan);
  font: 500 9px "DM Mono";
}
.case-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.case-outcomes > div {
  padding: 15px;
  border: 1px solid rgba(94, 230, 181, 0.22);
  background: rgba(94, 230, 181, 0.04);
}
.case-outcomes b,
.case-outcomes span {
  display: block;
}
.case-outcomes b {
  color: var(--green);
}
.case-outcomes span {
  margin-top: 9px;
  font-size: 10px;
}
.concept-note {
  padding: 75px 0;
  border-block: 1px solid var(--line);
  background: #081527;
}
.concept-note .shell {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 35px;
  align-items: center;
}
.concept-note .shell > b {
  color: var(--cyan);
  font: 500 10px "DM Mono";
}
.concept-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

/* Live input / document / approval */
.workflow-evidence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.evidence-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(118, 190, 240, 0.2);
  border-radius: 11px;
  background: linear-gradient(
    145deg,
    rgba(11, 28, 48, 0.94),
    rgba(7, 17, 30, 0.96)
  );
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}
.evidence-head {
  min-height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.evidence-head small,
.evidence-head b {
  display: block;
}
.evidence-head small {
  color: #708ba2;
  font: 500 8px "DM Mono";
}
.evidence-head b {
  margin-top: 4px;
  font-size: 12px;
}
.evidence-head > span {
  color: var(--cyan);
  font: 500 8px "DM Mono";
}
.mail-preview {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  padding: 18px 16px 10px;
}
.mail-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line2);
  border-radius: 9px;
  color: var(--cyan);
  font-weight: 800;
}
.mail-preview small,
.mail-preview b,
.mail-preview p {
  display: block;
}
.mail-preview small {
  color: #758da3;
  font-size: 9px;
}
.mail-preview b {
  margin-top: 3px;
  font-size: 11px;
}
.mail-preview p {
  margin: 8px 0 0;
  color: #9fb2c3;
  font-size: 10px;
  line-height: 1.55;
}
.attachment {
  display: grid;
  grid-template-columns: 30px 1fr 20px;
  align-items: center;
  gap: 9px;
  margin: 7px 16px 17px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(5, 14, 25, 0.55);
}
.attachment > span {
  color: var(--cyan);
  font-size: 20px;
}
.attachment b,
.attachment small {
  display: block;
}
.attachment b {
  font-size: 10px;
}
.attachment small {
  color: #70889d;
  font-size: 8px;
}
.attachment i {
  color: var(--green);
  font-style: normal;
}
.extract-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.extract-grid label {
  min-width: 0;
  padding: 14px;
  background: #081526;
}
.extract-grid span,
.extract-grid b {
  display: block;
}
.extract-grid span {
  color: #738ca2;
  font-size: 8px;
}
.extract-grid b {
  overflow: hidden;
  margin-top: 5px;
  color: #d7e7f3;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.confidence {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
  padding: 15px;
  color: #8299ac;
  font-size: 8px;
}
.confidence > div {
  grid-column: 1/-1;
  height: 4px;
  background: #142b40;
}
.confidence > div i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 0.45s;
}
.confidence > b {
  color: var(--cyan);
  font: 500 9px "DM Mono";
}
.result-document {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 18px 16px;
}
.result-document > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(94, 230, 181, 0.35);
  border-radius: 50%;
  color: var(--green);
}
.result-document small,
.result-document b {
  display: block;
}
.result-document small {
  color: #7790a5;
  font-size: 8px;
}
.result-document b {
  margin-top: 4px;
  font-size: 11px;
}
.result-document p {
  margin: 8px 0 0;
  color: #91a7b9;
  font-size: 9px;
  line-height: 1.5;
}
#approval-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 32px);
  min-height: 43px;
  margin: 0 16px 10px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #0a1727;
  color: #617b90;
  font-size: 10px;
}
#approval-button.ready {
  border-color: rgba(94, 230, 181, 0.42);
  background: linear-gradient(110deg, #176ebc, #52d6ed);
  color: #031019;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(34, 155, 218, 0.2);
}
#approval-button.approved {
  background: rgba(94, 230, 181, 0.1);
  color: var(--green);
}
.approval-guard {
  display: block;
  padding: 0 16px 15px;
  color: #637b90;
  font-size: 8px;
}

/* Portfolio dialog */
.portfolio-open {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 9px 12px;
  border: 1px solid var(--line2);
  border-radius: 6px;
  background: rgba(6, 17, 30, 0.7);
  color: #c5eafa;
  font-size: 10px;
  cursor: pointer;
}
.portfolio-dialog {
  width: min(1180px, calc(100% - 32px));
  max-height: 92vh;
  padding: 0;
  overflow: hidden auto;
  border: 1px solid var(--line2);
  border-radius: 15px;
  background: #06101d;
  color: var(--text);
  box-shadow: 0 50px 150px #000;
}
.portfolio-dialog::backdrop {
  background: rgba(1, 5, 10, 0.86);
  backdrop-filter: blur(10px);
}
.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.dialog-head small,
.dialog-head b {
  display: block;
}
.dialog-head small {
  color: #7891a7;
  font: 500 8px "DM Mono";
}
.dialog-head b {
  margin-top: 4px;
  font-size: 13px;
}
.dialog-head button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #0a1727;
  color: #fff;
  font-size: 21px;
  cursor: pointer;
}
.dialog-switch {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 14px;
}
.dialog-switch button {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #081527;
  color: #7f98ac;
  font: 500 9px "DM Mono";
  cursor: pointer;
}
.dialog-switch button.active {
  background: var(--cyan);
  color: #03101a;
}
.dialog-stage {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 25px;
  background: radial-gradient(circle at 50% 50%, #122a43, #030810 72%);
}
.dialog-device {
  overflow: hidden;
  border: 8px solid #182a3b;
  border-radius: 12px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5);
  transition:
    width 0.45s,
    aspect-ratio 0.45s;
}
.dialog-device.desktop {
  width: 92%;
  aspect-ratio: 16/9;
}
.dialog-device.tablet {
  width: 62%;
  aspect-ratio: 4/3;
}
.dialog-device.mobile {
  width: 28%;
  aspect-ratio: 9/17;
}
.dialog-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dialog-device.mobile img {
  object-position: 77% center;
}
.portfolio-dialog > p {
  padding: 0 22px 18px;
  margin: 0;
  color: #7890a5;
  font-size: 10px;
}

/* Contact completion */
.contact-form .consent a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-status {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(94, 230, 181, 0.3);
  border-radius: 7px;
  background: rgba(94, 230, 181, 0.06);
  color: #baf5df;
  font-size: 11px;
}
.calc-result {
  grid-template-columns: 1fr 1fr;
}

/* Mobile action bar */
.mobile-actionbar {
  display: none;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 0;
  }
  .main-nav a {
    padding-inline: 8px;
    font-size: 11px;
  }
  .comparison-board {
    grid-template-columns: 1fr 90px 1fr;
  }
  .comparison-core {
    width: 110px;
    height: 110px;
    margin-left: -10px;
  }
  .comparison-core:before {
    width: 35px;
    left: -35px;
  }
  .comparison-core:after {
    width: 35px;
    right: -35px;
  }
  .case-teaser-grid {
    grid-template-columns: 1fr 1fr;
  }
  .case-teaser:last-child {
    grid-column: 1/-1;
  }
  .workflow-evidence {
    grid-template-columns: 1fr 1fr;
  }
  .approval-card {
    grid-column: 1/-1;
  }
}
@media (max-width: 960px) {
  body.menu-open {
    overflow: hidden;
  }
  .main-nav.open {
    position: fixed;
    z-index: 110;
    inset: 74px 16px auto;
    display: grid;
    gap: 4px;
    max-height: calc(100dvh - 95px);
    padding: 16px;
    overflow-y: auto;
    border: 1px solid var(--line2);
    border-radius: 14px;
    background: rgba(5, 13, 24, 0.97);
    backdrop-filter: blur(22px);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.6);
  }
  .main-nav.open a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  .trust-grid,
  .founder-grid,
  .case-study {
    grid-template-columns: 1fr;
  }
  .founder-visual {
    min-height: 440px;
  }
  .trust-points {
    margin-top: 12px;
  }
  .case-study {
    gap: 35px;
  }
  .case-study.reverse .case-media {
    order: 0;
  }
  .case-media {
    position: relative;
    top: auto;
  }
  .concept-note .shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .case-outcomes {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 720px) {
  body {
    padding-bottom: 66px;
  }
  .mobile-actionbar {
    position: fixed;
    z-index: 150;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 7px;
    padding: 7px;
    border: 1px solid rgba(116, 192, 244, 0.28);
    border-radius: 13px;
    background: rgba(4, 11, 21, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
  }
  .mobile-actionbar a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #c5d7e4;
    font-size: 10px;
  }
  .mobile-actionbar a.primary {
    border: 0;
    background: linear-gradient(110deg, var(--blue), var(--cyan));
    color: #03101a;
  }
  .comparison-board {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .comparison-core {
    width: 96px;
    height: 96px;
    margin: -3px auto;
  }
  .comparison-core:before,
  .comparison-core:after {
    display: none;
  }
  .comparison-side {
    min-height: 0;
    padding: 24px;
  }
  .case-teaser-grid,
  .workflow-evidence,
  .trust-points,
  .case-columns,
  .case-outcomes {
    grid-template-columns: 1fr;
  }
  .case-teaser:last-child,
  .approval-card {
    grid-column: auto;
  }
  .founder-facts {
    grid-template-columns: 1fr;
  }
  .founder-visual {
    min-height: 390px;
  }
  .process-map {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px;
    overflow: visible;
  }
  .dash-step {
    width: 100%;
    min-width: 0;
    min-height: 108px;
    padding: 15px 17px 15px 60px;
  }
  .dash-step > i {
    position: absolute;
    left: 17px;
    top: 18px;
  }
  .dash-step span {
    margin-top: 0;
    font-size: 13px;
  }
  .dash-step.active {
    transform: translateX(4px);
  }
  .dash-connector {
    width: 1px;
    height: 28px;
    margin-left: 31px;
  }
  .dash-connector i {
    right: -2px;
    top: auto;
    bottom: 0;
  }
  .dash-connector:after {
    animation-name: connectorFlowMobile;
  }
  @keyframes connectorFlowMobile {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(100%);
    }
  }
  .dashboard-grid {
    display: block;
  }
  .dashboard-panel {
    margin-bottom: 10px;
  }
  .metrics-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .agent-grid {
    grid-template-columns: 1fr;
  }
  .log-panel {
    min-height: 0;
  }
  .process-log {
    height: 230px;
  }
  .dialog-stage {
    min-height: 380px;
    padding: 15px;
  }
  .dialog-device.tablet {
    width: 82%;
  }
  .dialog-device.mobile {
    width: 52%;
  }
}
@media (max-width: 480px) {
  .before-after-section,
  .case-teaser-section,
  .trust-section,
  .founder-section,
  .case-study-section {
    padding-block: 76px;
  }
  .comparison-side header {
    grid-template-columns: 40px 1fr;
  }
  .comparison-side header > span {
    width: 40px;
    height: 40px;
  }
  .case-content > h2 {
    font-size: 2.15rem;
  }
  .case-study {
    padding: 60px 0;
  }
  .extract-grid,
  .metrics-panel {
    grid-template-columns: 1fr;
  }
  .calc-result {
    grid-template-columns: 1fr;
  }
  .portfolio-dialog {
    width: calc(100% - 18px);
  }
  .dialog-switch button {
    flex: 1;
    padding-inline: 6px;
  }
  .dialog-device.desktop {
    width: 100%;
  }
  .dialog-device.mobile {
    width: 64%;
  }
  .footer-logo {
    width: 250px;
  }
}
.sector-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.sector-card {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: linear-gradient(
    145deg,
    rgba(13, 32, 56, 0.8),
    rgba(7, 17, 30, 0.75)
  );
  min-height: 330px;
}
.sector-card > span,
.sector-card > div > span {
  font: 9px "DM Mono";
  color: var(--cyan);
}
.sector-card h3 {
  margin: 20px 0 11px;
}
.sector-card p {
  font-size: 12px;
  color: var(--muted);
}
.sector-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.sector-card li {
  font-size: 10px;
  padding: 7px 0;
  border-top: 1px solid var(--line);
}
.sector-card li:before {
  content: "↗";
  color: var(--cyan);
  margin-right: 7px;
}
.sector-card.visual-sector {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  padding: 0;
  overflow: hidden;
}
.visual-sector img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}
.visual-sector > div {
  padding: 38px 38px 30px 0;
}
.principles-section {
  padding: 100px 0;
  background: #081426;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.principle-grid div {
  padding: 24px;
  border-right: 1px solid var(--line);
}
.principle-grid div:first-child {
  border-left: 1px solid var(--line);
}
.principle-grid b,
.principle-grid span {
  display: block;
}
.principle-grid b {
  font: 10px "DM Mono";
  color: var(--cyan);
}
.principle-grid span {
  font-size: 11px;
  margin-top: 15px;
}
.web-hero {
  padding: 145px 0 80px;
  min-height: 730px;
  display: flex;
  align-items: center;
}
.web-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.web-hero p:not(.eyebrow) {
  font-size: 17px;
  color: var(--muted);
}
.web-hero-media {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
}
.web-hero-media img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.web-badges {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.web-badges span {
  padding: 7px 9px;
  background: rgba(5, 13, 25, 0.8);
  border: 1px solid var(--line2);
  border-radius: 4px;
  font: 7px "DM Mono";
  color: #b5d8ef;
}
.web-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.web-service-grid article {
  padding: 27px;
  border: 1px solid var(--line);
  min-height: 250px;
  background: rgba(10, 24, 42, 0.65);
  transition: 0.2s;
}
.web-service-grid article:hover {
  border-color: var(--line2);
  transform: translateY(-4px);
}
.web-service-grid span {
  font: 9px "DM Mono";
  color: var(--cyan);
}
.web-service-grid h3 {
  margin: 24px 0 12px;
}
.web-service-grid p {
  font-size: 11px;
  color: var(--muted);
}
.web-demo {
  padding: 100px 0;
  background: linear-gradient(120deg, #08172a, #07111e);
  border-block: 1px solid var(--line);
}
.responsive-stage {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 45px;
  align-items: center;
}
.preview-switch {
  grid-column: 1/-1;
  text-align: center;
}
.preview-switch button {
  border: 1px solid var(--line);
  background: #071426;
  color: #859db4;
  padding: 8px 12px;
  font: 8px "DM Mono";
  cursor: pointer;
}
.preview-switch button.active {
  color: #03101b;
  background: var(--cyan);
}
.preview-device {
  width: 100%;
  aspect-ratio: 1.5/1;
  background: #e9f3fa;
  border: 8px solid #152434;
  border-radius: 10px;
  padding: 12px;
  transition: 0.45s;
  margin: auto;
  overflow: hidden;
}
.preview-device.tablet {
  width: 72%;
  aspect-ratio: 1.1/1;
}
.preview-device.mobile {
  width: 35%;
  aspect-ratio: 0.55/1;
}
.mock-nav {
  height: 14%;
  display: flex;
  align-items: center;
  gap: 7%;
  padding: 0 5%;
}
.mock-logo {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 4px;
  background: #177fe9;
  color: white;
  font-size: 10px;
}
.mock-logo img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.mock-nav i {
  width: 9%;
  height: 3px;
  background: #9fb5c8;
}
.mock-nav b {
  margin-left: auto;
  width: 16%;
  height: 16px;
  background: #1a82ef;
  border-radius: 3px;
}
.mock-hero {
  height: 55%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  padding: 6%;
}
.mock-hero small {
  display: block;
  width: 25%;
  height: 4px;
  background: #28aee5;
}
.mock-heading {
  display: block;
  width: 90%;
  height: 28%;
  background: #12263d;
  border-radius: 3px;
  margin: 9% 0;
}
.mock-hero p {
  width: 72%;
  height: 14%;
  background: #aec0cf;
  border-radius: 2px;
}
.mock-button {
  display: block;
  width: 30%;
  height: 15%;
  background: #1c82ec;
  border-radius: 3px;
}
.mock-art {
  position: relative;
  background: #c8deec;
  border-radius: 6px;
}
.mock-art i {
  position: absolute;
  width: 28%;
  height: 28%;
  background: #287fd0;
  border-radius: 4px;
}
.mock-art i:nth-child(1) {
  left: 15%;
  top: 18%;
}
.mock-art i:nth-child(2) {
  right: 15%;
  top: 25%;
}
.mock-art i:nth-child(3) {
  left: 38%;
  bottom: 12%;
}
.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
  height: 22%;
  padding: 0 6%;
}
.mock-cards i {
  background: white;
  border: 1px solid #b9cedd;
  border-radius: 4px;
}
.preview-device.mobile .mock-nav i,
.preview-device.mobile .mock-nav b {
  display: none;
}
.preview-device.mobile .mock-hero {
  grid-template-columns: 1fr;
  height: 68%;
}
.preview-device.mobile .mock-art {
  display: none;
}
.preview-device.mobile .mock-cards {
  grid-template-columns: 1fr;
  height: 20%;
}
.preview-device.mobile .mock-cards i:not(:first-child) {
  display: none;
}
.preview-notes {
  border-top: 1px solid var(--line);
}
.preview-notes div {
  display: grid;
  grid-template-columns: 35px 1fr;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.preview-notes b {
  font: 9px "DM Mono";
  color: var(--cyan);
}
.preview-notes span {
  font-size: 11px;
}
@media (max-width: 850px) {
  .sector-showcase,
  .web-hero-grid,
  .responsive-stage {
    grid-template-columns: 1fr;
  }
  .sector-card.visual-sector {
    grid-template-columns: 1fr;
  }
  .visual-sector > div {
    padding: 30px;
  }
  .principle-grid,
  .web-service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .preview-device.mobile {
    width: 45%;
  }
}
@media (max-width: 560px) {
  .sector-showcase,
  .web-service-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }
  .sector-card.visual-sector {
    grid-column: auto;
  }
  .principle-grid div {
    border-left: 1px solid var(--line);
  }
  .web-hero {
    padding-top: 115px;
  }
  .preview-device.tablet {
    width: 85%;
  }
  .preview-device.mobile {
    width: 65%;
  }
}
/* Automation dashboard */
.automation-hero {
  background: radial-gradient(
    700px 400px at 80% 40%,
    rgba(37, 135, 255, 0.1),
    transparent
  );
}
.dashboard-section {
  padding: 55px 0 95px;
  background: #050b14;
  border-bottom: 1px solid var(--line);
}
.dashboard-top {
  display: grid;
  grid-template-columns: 1fr 260px auto;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}
.dashboard-top h2 {
  font-size: 26px;
  margin: 8px 0 0;
}
.live-indicator {
  font: 9px "DM Mono";
  letter-spacing: 0.12em;
  color: #91a9bf;
}
.live-indicator i,
.log-live i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  margin-right: 7px;
}
.scenario-control {
  display: grid;
  gap: 5px;
}
.scenario-control label {
  font: 8px "DM Mono";
  color: #819ab2;
  letter-spacing: 0.1em;
}
.scenario-control select {
  height: 42px;
  border: 1px solid var(--line2);
  border-radius: 6px;
  background: #091526;
  color: #e8f4ff;
  padding: 0 12px;
  font-size: 11px;
}
.dashboard-buttons {
  display: flex;
  gap: 8px;
}
.dash-btn {
  height: 42px;
  padding: 0 13px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}
.dash-btn.ghost {
  border: 1px solid var(--line2);
  background: transparent;
  color: white;
}
.dash-btn.start {
  border: 0;
  background: linear-gradient(110deg, var(--blue), var(--cyan));
  color: #03101b;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(240px, 0.45fr);
  gap: 12px;
}
.dashboard-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(
    145deg,
    rgba(11, 27, 48, 0.9),
    rgba(7, 17, 31, 0.92)
  );
  overflow: hidden;
}
.panel-head {
  height: 60px;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.panel-head small {
  display: block;
  font: 8px "DM Mono";
  letter-spacing: 0.11em;
  color: #7390aa;
}
.panel-head b {
  font-size: 12px;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7890a6;
}
.status b {
  font: 8px "DM Mono";
}
.status.running i {
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 1s infinite;
}
.status.complete i {
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
@keyframes pulse {
  50% {
    opacity: 0.25;
  }
}
.process-map {
  min-height: 260px;
  padding: 38px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dash-step {
  width: 105px;
  min-height: 125px;
  padding: 14px 10px;
  border: 1px solid var(--line);
  background: #081426;
  border-radius: 8px;
  position: relative;
  transition: 0.25s;
}
.dash-step i {
  font: 9px "DM Mono";
  font-style: normal;
  color: var(--cyan);
}
.dash-step span,
.dash-step small {
  display: block;
}
.dash-step span {
  font-size: 10px;
  font-weight: 800;
  margin-top: 25px;
}
.dash-step small {
  font-size: 8px;
  color: #728ba3;
  margin-top: 4px;
}
.dash-step.active {
  border-color: var(--cyan);
  background: linear-gradient(
    145deg,
    rgba(31, 119, 228, 0.55),
    rgba(8, 20, 38, 0.9)
  );
  box-shadow: 0 0 24px rgba(44, 151, 255, 0.2);
  transform: translateY(-5px);
}
.dash-step.done:after {
  content: "✓";
  position: absolute;
  right: 8px;
  top: 8px;
  color: var(--green);
  font-size: 9px;
}
.dash-connector {
  width: 28px;
  height: 1px;
  background: #255c88;
  position: relative;
}
.dash-connector i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  right: 0;
  top: -2px;
  background: var(--cyan);
}
.process-summary {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 8px;
  padding: 15px 17px;
  border-top: 1px solid var(--line);
}
.process-summary small {
  display: block;
  font: 8px "DM Mono";
  color: #718ba4;
}
.process-summary b {
  font-size: 10px;
}
.progress-track {
  grid-column: 1/-1;
  height: 3px;
  background: #14283b;
}
.progress-track i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: 0.35s;
}
.metrics-panel {
  grid-row: span 1;
}
.info-dot {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border: 1px solid var(--line2);
  border-radius: 50%;
  font: 9px "DM Mono";
  color: var(--cyan);
}
.metric {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 17px;
  border-bottom: 1px solid var(--line);
}
.metric span {
  font-size: 9px;
  color: #819ab2;
}
.metric strong {
  grid-row: 1/3;
  grid-column: 2;
  font: 24px "DM Mono";
  color: white;
}
.metric small {
  font: 7px "DM Mono";
  color: #678199;
}
.metric.highlight strong {
  color: var(--cyan);
}
.savings {
  padding: 18px;
}
.savings span,
.savings b,
.savings small {
  display: block;
}
.savings span {
  font-size: 9px;
  color: #819ab2;
}
.savings b {
  font-size: 13px;
  color: var(--green);
  margin: 7px 0;
}
.savings small {
  font-size: 8px;
  color: #617991;
}
.agents-panel {
  min-height: 315px;
}
.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.agent-card {
  min-height: 115px;
  padding: 14px;
  background: #081426;
  display: grid;
  grid-template-columns: 37px 1fr;
  gap: 10px;
  align-items: center;
  position: relative;
}
.agent-avatar {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line2);
  border-radius: 8px;
  color: var(--cyan);
  position: relative;
}
.agent-avatar i {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 7px;
  height: 7px;
  border: 2px solid #081426;
  border-radius: 50%;
  background: #667f97;
}
.agent-card b,
.agent-card small {
  display: block;
}
.agent-card b {
  font-size: 9px;
}
.agent-card small {
  font-size: 7px;
  color: #6f889f;
}
.agent-card em {
  position: absolute;
  right: 9px;
  top: 9px;
  font: 6px "DM Mono";
  font-style: normal;
  color: #647e96;
}
.agent-card.active {
  background: linear-gradient(145deg, rgba(31, 119, 228, 0.42), #081426);
}
.agent-card.active .agent-avatar {
  box-shadow: 0 0 18px rgba(66, 182, 255, 0.35);
}
.agent-card.active .agent-avatar i {
  background: var(--cyan);
  box-shadow: 0 0 7px var(--cyan);
}
.agent-card.active em {
  color: var(--cyan);
}
.agent-card.done .agent-avatar i {
  background: var(--green);
}
.log-panel {
  min-height: 315px;
}
.log-live {
  font: 7px "DM Mono";
  color: #91a9bf;
}
.process-log {
  height: 254px;
  overflow: auto;
  padding: 8px 14px;
}
.empty-log {
  text-align: center;
  padding: 45px 14px;
  color: #607991;
}
.empty-log span {
  font-size: 28px;
}
.empty-log p {
  font-size: 9px;
}
.log-row {
  display: grid;
  grid-template-columns: 48px 1fr 15px;
  gap: 7px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(139, 185, 231, 0.08);
  font-size: 8px;
}
.log-row time {
  font: 7px "DM Mono";
  color: #637c93;
}
.log-row span {
  color: #9eb2c6;
}
.log-row i {
  font-style: normal;
  color: var(--green);
}
.log-row.active span,
.log-row.active i {
  color: var(--cyan);
}
.dashboard-note {
  display: flex;
  gap: 9px;
  margin-top: 13px;
  color: #6f879d;
  font-size: 9px;
}
.dashboard-note p {
  margin: 0;
}
.assistant-visual {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.assistant-visual img {
  width: 100%;
  max-height: 590px;
  object-fit: cover;
}
.assistant-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 9, 18, 0.9), transparent 45%);
}
.assistant-overlay {
  position: absolute;
  z-index: 2;
  left: 35px;
  bottom: 35px;
  max-width: 340px;
}
.assistant-overlay b,
.assistant-overlay span {
  display: block;
}
.assistant-overlay b {
  font-size: 25px;
}
.assistant-overlay span {
  font-size: 11px;
  color: #a8bbcc;
  margin-top: 8px;
}
.potential-section {
  padding: 100px 0;
  background: linear-gradient(120deg, #081528, #091b30);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.potential-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9%;
  align-items: center;
}
.potential-grid > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
}
.calculator {
  padding: 27px;
  border: 1px solid var(--line2);
  border-radius: 12px;
  background: rgba(4, 11, 22, 0.55);
}
.calculator label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 10px;
}
.calculator label b {
  font: 10px "DM Mono";
  color: var(--cyan);
}
.calculator input {
  grid-column: 1/-1;
  width: 100%;
  accent-color: var(--blue);
}
.calc-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  margin-top: 25px;
}
.calc-result > div {
  padding: 18px;
  background: #081527;
}
.calc-result small,
.calc-result strong,
.calc-result span {
  display: block;
}
.calc-result small {
  font-size: 8px;
  color: #7992aa;
}
.calc-result strong {
  font: 23px "DM Mono";
  color: var(--cyan);
  margin: 6px 0;
}
.calc-result span {
  font-size: 8px;
  color: #69839b;
}
@media (max-width: 1000px) {
  .dashboard-top {
    grid-template-columns: 1fr 1fr;
  }
  .dashboard-buttons {
    grid-column: 2;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .process-map {
    overflow-x: auto;
    justify-content: flex-start;
  }
  .metrics-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .metrics-panel .panel-head {
    grid-column: 1/-1;
  }
  .savings {
    grid-column: 1/-1;
  }
  .potential-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 650px) {
  .dashboard-top {
    grid-template-columns: 1fr;
  }
  .dashboard-buttons {
    grid-column: auto;
  }
  .dashboard-buttons .dash-btn {
    flex: 1;
  }
  .process-map {
    padding: 25px 15px;
  }
  .dash-step {
    min-width: 100px;
  }
  .metrics-panel {
    grid-template-columns: 1fr 1fr;
  }
  .agent-grid {
    grid-template-columns: 1fr 1fr;
  }
  .calc-result {
    grid-template-columns: 1fr;
  }
  .assistant-overlay {
    left: 20px;
    bottom: 20px;
    right: 20px;
  }
  .assistant-overlay b {
    font-size: 20px;
  }
}

/* V2 premium refinement: readability, spatial depth and live presentation */
:root {
  --max: 1320px;
  --muted: #b3c2d1;
  --surface-glow: rgba(67, 174, 255, 0.16);
}
body {
  font-size: 16px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}
p {
  letter-spacing: -0.008em;
}
.site-header.scrolled {
  background: rgba(4, 9, 19, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}
.nav {
  height: 86px;
}
.brand {
  gap: 12px;
  min-width: 190px;
}
.brand-emblem {
  position: relative;
  width: 52px;
  height: 48px;
  flex: 0 0 52px;
  overflow: hidden;
  border: 1px solid rgba(144, 199, 244, 0.22);
  border-radius: 9px;
  background: #101d2b;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 28px rgba(0, 113, 215, 0.22);
}
.brand-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-emblem:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 45%,
    rgba(255, 255, 255, 0.16),
    transparent 65%
  );
  transform: translateX(-120%);
  animation: logoShine 6s ease-in-out infinite;
}
@keyframes logoShine {
  0%,
  70% {
    transform: translateX(-120%);
  }
  88%,
  100% {
    transform: translateX(120%);
  }
}
.brand-name {
  display: grid;
  font-size: 14px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #edf6ff;
}
.brand-name > span {
  white-space: nowrap;
}
.brand-name b {
  display: inline;
  color: var(--cyan);
}
.brand-name small {
  margin-top: 7px;
  color: #8198ad;
  font:
    500 9px/1 "DM Mono",
    monospace;
  letter-spacing: 0.13em;
}
.brand-footer .brand-emblem {
  width: 64px;
  height: 58px;
  flex-basis: 64px;
}
.main-nav a {
  font-size: 13px;
  padding: 10px 12px;
}
.lang-toggle,
.nav-cta,
.btn {
  font-size: 12px;
}
.welcome-greeting {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  max-width: 650px;
  padding: 12px 15px;
  margin-bottom: 27px;
  border: 1px solid rgba(105, 198, 255, 0.22);
  border-radius: 11px;
  background: linear-gradient(
    110deg,
    rgba(18, 46, 76, 0.7),
    rgba(7, 19, 34, 0.38)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.welcome-greeting p {
  margin: 0;
  color: #c9d8e6;
  font-size: 13px;
  line-height: 1.45;
}
.welcome-greeting strong {
  color: #fff;
}
.welcome-signal {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line2);
  border-radius: 50%;
}
.welcome-signal i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow:
    0 0 0 6px rgba(94, 230, 181, 0.08),
    0 0 14px var(--green);
  animation: welcomePulse 2s ease-in-out infinite;
}
@keyframes welcomePulse {
  50% {
    transform: scale(0.72);
    opacity: 0.65;
  }
}
.hero-home {
  position: relative;
  isolation: isolate;
}
.hero-home:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  right: -180px;
  top: 90px;
  border: 1px solid rgba(85, 188, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(52, 153, 255, 0.025),
    0 0 0 170px rgba(52, 153, 255, 0.018);
}
.hero-lead,
.page-hero p:last-child,
.web-hero p:not(.eyebrow),
.section-heading.split > div:last-child {
  font-size: 17px;
  line-height: 1.75;
}
.eyebrow {
  font-size: 11px;
  line-height: 1.3;
}
.visual-frame {
  transform-style: preserve-3d;
  border-color: rgba(111, 192, 255, 0.28);
  box-shadow:
    0 45px 120px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset,
    0 0 75px rgba(32, 135, 231, 0.12);
}
.visual-frame:before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 12px;
  border: 1px solid rgba(120, 207, 255, 0.11);
  border-radius: 13px;
  pointer-events: none;
}
.hero-orbit {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(100, 221, 255, 0.45);
  border-radius: 50%;
  pointer-events: none;
  transform: rotateX(68deg) rotateZ(-12deg);
  filter: drop-shadow(0 0 8px rgba(100, 221, 255, 0.4));
}
.orbit-a {
  width: 190px;
  height: 190px;
  right: -55px;
  top: 22%;
  animation: orbitSpin 12s linear infinite;
}
.orbit-b {
  width: 115px;
  height: 115px;
  left: -42px;
  bottom: 9%;
  animation: orbitSpin 8s linear infinite reverse;
}
@keyframes orbitSpin {
  to {
    transform: rotateX(68deg) rotateZ(348deg);
  }
}
[data-tilt] {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  transform-style: preserve-3d;
  will-change: transform;
}
.reveal.visible[data-tilt] {
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition:
    transform 0.22s ease-out,
    opacity 0.7s ease;
}
.capability[data-tilt]:after,
.portfolio-card[data-tilt]:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    circle at var(--glow-x) var(--glow-y),
    rgba(109, 211, 255, 0.16),
    transparent 38%
  );
  transition: opacity 0.25s;
}
.capability[data-tilt]:hover:after,
.portfolio-card[data-tilt]:hover:after {
  opacity: 1;
}
.capability {
  position: relative;
  overflow: hidden;
}
.capability p,
.sector-card p,
.web-service-grid p,
.info-card p,
.process-steps p,
.values-grid p {
  font-size: 13px;
  line-height: 1.7;
}
.capability a,
.text-link,
.check-list li,
.focus-strip small,
.industry-links b,
.footer-col a,
.footer-intro p {
  font-size: 12px;
}

/* Portfolio imagery */
.portfolio-showcase {
  position: relative;
  padding: 115px 0 125px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(
      700px 420px at 10% 15%,
      rgba(43, 139, 235, 0.12),
      transparent 68%
    ),
    linear-gradient(145deg, #07111f, #0a1728 55%, #06101d);
}
.portfolio-showcase:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(107, 184, 234, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 184, 234, 0.05) 1px, transparent 1px);
  background-size: 76px 76px;
  transform: perspective(520px) rotateX(65deg) scale(1.5) translateY(28%);
  transform-origin: bottom;
}
.portfolio-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(120, 198, 248, 0.22);
  border-radius: 18px;
  background: linear-gradient(
    150deg,
    rgba(14, 34, 58, 0.96),
    rgba(6, 16, 29, 0.96)
  );
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}
.portfolio-card:nth-child(3) {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: stretch;
}
.portfolio-image {
  position: relative;
  overflow: hidden;
  transform: translateZ(32px);
}
.portfolio-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition:
    transform 0.65s cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 0.4s;
}
.portfolio-card:hover .portfolio-image img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}
.portfolio-image:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(transparent, rgba(4, 10, 19, 0.88));
}
.portfolio-image > span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 15px;
  padding: 7px 9px;
  border: 1px solid rgba(111, 203, 255, 0.34);
  border-radius: 5px;
  background: rgba(4, 12, 22, 0.72);
  backdrop-filter: blur(12px);
  color: #beeaff;
  font:
    500 9px/1 "DM Mono",
    monospace;
  letter-spacing: 0.1em;
}
.portfolio-copy {
  position: relative;
  z-index: 2;
  padding: 26px 28px 30px;
  transform: translateZ(24px);
}
.portfolio-copy small {
  color: var(--cyan);
  font:
    500 10px/1 "DM Mono",
    monospace;
  letter-spacing: 0.12em;
}
.portfolio-copy h3 {
  margin: 15px 0 10px;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}
.portfolio-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.portfolio-card:nth-child(3) .portfolio-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}
.portfolio-disclaimer {
  margin: 22px 0 0;
  color: #8399ad;
  font-size: 11px;
}

/* Larger, self-running live workflow */
.dashboard-section {
  padding-top: 64px;
  background:
    radial-gradient(
      750px 460px at 50% 0,
      rgba(40, 136, 232, 0.12),
      transparent 72%
    ),
    #050b14;
}
.dashboard-top {
  grid-template-columns: minmax(250px, 1fr) 280px auto;
}
.dashboard-buttons {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.dash-btn {
  min-height: 44px;
  font-size: 11px;
}
.dash-btn.autoplay {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line2);
  background: rgba(7, 20, 36, 0.84);
  color: #9eb7cb;
}
.dash-btn.autoplay i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60798f;
}
.dash-btn.autoplay.active {
  color: #d8f7ff;
  border-color: rgba(94, 230, 181, 0.42);
}
.dash-btn.autoplay.active i {
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 1.1s infinite;
}
.live-event-strip {
  display: grid;
  grid-template-columns:
    minmax(170px, 1fr) 70px minmax(230px, 1.2fr)
    70px minmax(170px, 1fr);
  align-items: stretch;
  margin: 0 0 14px;
  border: 1px solid rgba(111, 195, 250, 0.2);
  border-radius: 11px;
  background: rgba(7, 18, 32, 0.72);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}
.live-event-strip > div {
  min-width: 0;
  padding: 15px 17px;
}
.live-event-strip .active-event {
  background: linear-gradient(
    120deg,
    rgba(26, 94, 165, 0.38),
    rgba(8, 24, 43, 0.68)
  );
  box-shadow: inset 0 0 30px rgba(64, 168, 255, 0.08);
}
.live-event-strip small,
.live-event-strip b {
  display: block;
}
.live-event-strip small {
  color: #7893a9;
  font:
    500 9px/1.2 "DM Mono",
    monospace;
  letter-spacing: 0.11em;
}
.live-event-strip b {
  overflow: hidden;
  margin-top: 7px;
  color: #e7f3fb;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.event-link {
  position: relative;
  align-self: center;
  height: 1px;
  background: #255e8d;
}
.event-link i {
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: dataTravel 1.8s linear infinite;
}
@keyframes dataTravel {
  from {
    left: 0;
  }
  to {
    left: calc(100% - 7px);
  }
}
.dashboard-grid {
  grid-template-columns: minmax(0, 1.62fr) minmax(285px, 0.38fr);
  perspective: 1500px;
}
.dashboard-panel {
  border-color: rgba(119, 190, 239, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 18px 45px rgba(0, 0, 0, 0.18);
}
.panel-head {
  height: 68px;
  padding: 0 20px;
}
.panel-head small {
  font-size: 9px;
}
.panel-head b {
  font-size: 13px;
}
.process-map {
  min-height: 310px;
  padding: 42px 24px;
}
.dash-step {
  width: 126px;
  min-height: 150px;
  padding: 16px 13px;
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}
.dash-step > i {
  font-size: 10px;
}
.dash-step span {
  margin-top: 31px;
  font-size: 12px;
  line-height: 1.35;
}
.dash-step small {
  margin-top: 7px;
  color: #91a8ba;
  font-size: 10px;
  line-height: 1.4;
}
.dash-step.active {
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.3),
    0 0 38px rgba(44, 151, 255, 0.24);
  transform: translateY(-8px) scale(1.025);
}
.dash-connector {
  width: 34px;
  overflow: hidden;
}
.dash-connector:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: connectorFlow 1.6s linear infinite;
}
@keyframes connectorFlow {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.process-summary small,
.metric span,
.savings span,
.savings small,
.dashboard-note,
.empty-log p {
  font-size: 10px;
}
.process-summary b,
.agent-card b {
  font-size: 11px;
}
.metric strong {
  font-size: 25px;
}
.metric small,
.agent-card em,
.log-live {
  font-size: 8px;
}
.agent-card {
  min-height: 132px;
  grid-template-columns: 44px 1fr;
  padding: 16px;
}
.agent-avatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}
.agent-card small {
  margin-top: 4px;
  color: #92a8bb;
  font-size: 9px;
  line-height: 1.35;
}
.process-log {
  height: 306px;
  padding: 10px 16px;
}
.log-row {
  grid-template-columns: 58px 1fr 17px;
  gap: 9px;
  padding: 11px 0;
  font-size: 10px;
}
.log-row time {
  font-size: 8px;
}
.scenario-control label,
.status b,
.page-hero-meta b,
.web-service-grid span,
.sector-card > span,
.sector-card > div > span,
.preview-switch button,
.preview-notes b,
.calculator label,
.calculator label b,
.calc-result small,
.calc-result span {
  font-size: 10px;
}
.scenario-control select,
.preview-notes span {
  font-size: 12px;
}
.system-chip small,
.slide-controls span,
.industry-links span,
.footer-col h4,
.info-card span,
.process-steps span,
.contact-direct small,
.form-head span,
.sector-card > span,
.sector-card > div > span,
.web-service-grid span,
.preview-switch button,
.preview-notes b,
.live-indicator,
.scenario-control label,
.panel-head small,
.status b,
.dash-step > i,
.process-summary small,
.metric small,
.log-live,
.log-row time,
.calc-result small,
.calc-result span {
  font-size: 10px;
}
.system-chip b,
.mini-node small,
.contact-form label,
.form-note,
.web-badges span,
.dashboard-note,
.empty-log p,
.savings small,
.agent-card small,
.agent-card em,
.log-row {
  font-size: 11px;
}

@media (max-width: 1100px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-card:nth-child(3) {
    grid-column: auto;
    display: block;
  }
  .dashboard-top {
    grid-template-columns: 1fr 280px;
  }
  .dashboard-buttons {
    grid-column: 1/-1;
    justify-content: flex-start;
  }
  .live-event-strip {
    grid-template-columns: 1fr 36px 1.2fr 36px 1fr;
  }
}
@media (max-width: 760px) {
  .nav {
    height: 74px;
  }
  .brand {
    min-width: 0;
  }
  .brand-emblem {
    width: 44px;
    height: 40px;
    flex-basis: 44px;
  }
  .brand-name {
    font-size: 12px;
  }
  .brand-name small {
    display: none;
  }
  .welcome-greeting {
    margin-bottom: 20px;
  }
  .live-event-strip {
    grid-template-columns: 1fr;
  }
  .event-link {
    width: 1px;
    height: 25px;
    justify-self: center;
  }
  .event-link i {
    animation-name: dataTravelVertical;
  }
  @keyframes dataTravelVertical {
    from {
      top: 0;
      left: -3px;
    }
    to {
      top: calc(100% - 7px);
      left: -3px;
    }
  }
  .portfolio-showcase {
    padding: 82px 0 90px;
  }
  .portfolio-copy,
  .portfolio-card:nth-child(3) .portfolio-copy {
    padding: 23px;
  }
  .portfolio-copy h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 560px) {
  body {
    font-size: 15px;
  }
  .brand-name {
    max-width: 92px;
    font-size: 10px;
  }
  .hero-home:before,
  .hero-orbit {
    display: none;
  }
  .welcome-greeting {
    grid-template-columns: 26px 1fr;
    padding: 10px 12px;
  }
  .welcome-signal {
    width: 26px;
    height: 26px;
  }
  .welcome-greeting p {
    font-size: 12px;
  }
  .dashboard-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .dash-btn.autoplay {
    grid-column: 1/-1;
    justify-content: center;
  }
  .agent-card {
    min-height: 120px;
  }
}

/* Final responsive safeguards: keep the complete live demo usable on phones. */
@media (max-width: 760px) {
  .dashboard-top,
  .dashboard-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .dashboard-top {
    gap: 16px;
    padding: 18px;
  }
  .dashboard-buttons {
    grid-column: auto;
    width: 100%;
  }
  .dashboard-buttons .dash-btn {
    min-width: 0;
  }
  .dashboard-grid {
    display: grid;
  }
  .process-map {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    min-height: 0;
    padding: 18px;
    overflow: visible;
  }
  .dash-step {
    width: 100%;
    min-width: 0;
    min-height: 108px;
    padding: 17px 17px 17px 60px;
  }
  .dash-step > i {
    position: absolute;
    top: 18px;
    left: 17px;
  }
  .dash-step span {
    margin-top: 0;
    font-size: 13px;
  }
  .dash-step.active {
    transform: translateX(4px);
  }
  .dash-connector {
    width: 1px;
    height: 28px;
    margin-left: 31px;
    overflow: hidden;
  }
  .dash-connector:after {
    background: linear-gradient(180deg, transparent, var(--cyan), transparent);
    animation: connectorFlowMobile 1.6s linear infinite;
  }
  @keyframes connectorFlowMobile {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(100%);
    }
  }
  .dash-connector i {
    top: auto;
    right: -2px;
    bottom: 0;
  }
  .metrics-panel,
  .agent-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .metrics-panel .panel-head,
  .savings {
    grid-column: auto;
  }
  .panel-head {
    min-width: 0;
    padding-inline: 16px;
  }
  .panel-head b,
  .panel-head span,
  .live-event-strip b {
    overflow-wrap: anywhere;
    white-space: normal;
  }
  .process-summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 16px;
  }
  .process-summary .progress-track {
    grid-column: 1 / -1;
  }
  .workflow-evidence {
    grid-template-columns: minmax(0, 1fr);
  }
  .evidence-card,
  .approval-card {
    min-width: 0;
    grid-column: auto;
  }
  .portfolio-dialog {
    max-height: calc(100dvh - 18px);
  }
}

@media (max-width: 560px) {
  .dashboard-buttons {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .dash-btn.autoplay {
    grid-column: 1 / -1;
  }
  .mobile-actionbar b {
    white-space: nowrap;
  }
  .dialog-head,
  .evidence-head {
    gap: 12px;
  }
  .dialog-stage {
    min-height: 300px;
  }
}

/* V4 cascade lock: the device presentation intentionally replaces the legacy skeleton mockup. */
.web-demo {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(
      760px 480px at 32% 57%,
      rgba(29, 135, 241, 0.13),
      transparent 72%
    ),
    linear-gradient(120deg, #06101d, #071426);
}
.responsive-stage {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.42fr) minmax(220px, 0.58fr);
  gap: 50px;
}
.preview-device,
.preview-device.desktop {
  position: relative;
  width: 100%;
  aspect-ratio: 1.56 / 1;
  padding: 0;
  border: 7px solid #18283a;
  border-radius: 15px;
  overflow: hidden;
  color: #eff7ff;
  background: #050b13;
  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(151, 207, 245, 0.1),
    0 0 70px rgba(31, 142, 236, 0.11);
}
.preview-device.tablet {
  width: 76%;
  aspect-ratio: 1.05 / 1;
  border-radius: 20px;
}
.preview-device.mobile {
  width: 39%;
  aspect-ratio: 0.56 / 1;
  border-width: 6px;
  border-radius: 25px;
}
@media (max-width: 850px) {
  .responsive-stage {
    grid-template-columns: minmax(0, 1fr);
  }
  .preview-device,
  .preview-device.desktop {
    width: 100%;
    max-width: 760px;
  }
  .preview-device.tablet {
    width: 76%;
  }
  .preview-device.mobile {
    width: 39%;
  }
}
@media (max-width: 620px) {
  .web-demo {
    padding-bottom: 84px;
  }
  .preview-device,
  .preview-device.desktop {
    width: 100%;
    aspect-ratio: 0.9 / 1;
  }
  .preview-device.tablet {
    width: 91%;
    aspect-ratio: 1.05 / 1;
  }
  .preview-device.mobile {
    width: 70%;
    min-width: 245px;
    aspect-ratio: 0.56 / 1;
  }
}

/* V5 — stronger logo, readable typography and conversion-focused mobile navigation */
:root {
  --muted: #c0cedb;
  --readable-muted: #afc0cf;
}
body {
  font-size: 17px;
  line-height: 1.72;
}
main p {
  line-height: 1.75;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
}
.brand {
  gap: 12px;
  min-width: 214px;
}
.brand-emblem {
  width: 58px;
  height: 54px;
  flex: 0 0 58px;
  padding: 2px;
  overflow: visible;
  border-color: rgba(113, 209, 255, 0.38);
  border-radius: 12px;
  background: radial-gradient(circle at 35% 25%, #18334e, #07111d 68%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 34px rgba(0, 127, 224, 0.3),
    0 0 24px rgba(76, 198, 255, 0.08);
}
.brand-emblem img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  filter: drop-shadow(0 5px 9px rgba(0, 0, 0, 0.4));
}
.brand-name {
  font-size: 15px;
  letter-spacing: 0.105em;
  color: #f5f9fd;
}
.brand-name small {
  margin-top: 7px;
  color: #a5b7c7;
  font-size: 10.5px;
  letter-spacing: 0.11em;
}
.main-nav > a > small,
.main-nav > a > b,
.mobile-nav-head,
.main-nav .mobile-nav-contact,
.menu-backdrop {
  display: none;
}
.menu-toggle {
  align-items: center;
  justify-content: center;
  min-width: 84px;
  min-height: 48px;
  gap: 9px;
  padding: 7px 10px;
  border: 1px solid rgba(111, 196, 248, 0.28);
  border-radius: 11px;
  background: linear-gradient(
    145deg,
    rgba(18, 42, 68, 0.9),
    rgba(7, 17, 30, 0.95)
  );
  color: #edf8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  cursor: pointer;
}
.menu-bars {
  position: relative;
  display: grid;
  align-content: center;
  width: 21px;
  height: 18px;
  gap: 4px;
}
.menu-bars i {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #e7f7ff, var(--cyan));
  transform-origin: center;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}
.menu-label {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
}
.menu-toggle[aria-expanded="true"] .menu-bars i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-bars i:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-bars i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.menu-toggle[aria-expanded="true"] {
  border-color: rgba(100, 221, 255, 0.58);
  background: rgba(20, 68, 105, 0.94);
}
.lang-toggle {
  min-height: 44px;
  padding-inline: 12px;
  border-color: rgba(120, 188, 232, 0.28);
  color: #e2edf6;
  font-size: 11px;
}

/* Consistent minimum reading sizes for real page content. */
.hero-facts span,
.focus-strip small,
.section-heading.split > div:last-child,
.capability p,
.sector-card p,
.web-service-grid p,
.info-card p,
.process-steps p,
.values-grid p,
.trust-points p,
.case-columns p,
.portfolio-copy p,
.preview-notes span,
.contact-form label,
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size: 14px;
}
.capability a,
.text-link,
.check-list li,
.industry-links b,
.footer-col a,
.footer-intro p,
.case-teaser > div > span,
.case-label,
.portfolio-disclaimer,
.form-note,
.confidential-note p {
  font-size: 13px;
}
.system-chip small,
.slide-controls span,
.industry-links span,
.footer-col h4,
.info-card span,
.process-steps span,
.contact-direct small,
.form-head span,
.sector-card > span,
.sector-card > div > span,
.web-service-grid span,
.preview-switch button,
.preview-notes b,
.live-indicator,
.scenario-control label,
.panel-head small,
.status b,
.dash-step > i,
.process-summary small,
.metric small,
.log-live,
.log-row time,
.calc-result small,
.calc-result span {
  font-size: 11px;
}
.system-chip b,
.mini-node small,
.web-badges span,
.dashboard-note,
.empty-log p,
.savings small,
.agent-card small,
.agent-card em,
.log-row {
  font-size: 12px;
}
.panel-head b,
.dash-step span,
.process-summary b,
.agent-card b,
.contact-direct b {
  font-size: 14px;
}
.dash-step small,
.process-summary span,
.metric span,
.savings span {
  font-size: 12px;
}
.dash-step {
  min-height: 168px;
}
.agent-card {
  min-height: 148px;
}
.slide figcaption,
.work-presentation .slide figcaption,
.code-slideshow .slide figcaption {
  font-size: 13px;
  line-height: 1.5;
}
.hero-presentation .slide figcaption small,
.work-presentation figcaption small,
.code-slideshow figcaption small {
  font-size: 10px;
}
.hero-presentation .slide figcaption b {
  font-size: 16px;
}
.spectrum-cards b,
.engineering-points b {
  font-size: 13px;
}
.spectrum-cards small,
.engineering-points small,
.spectrum-facts span,
.discretion-points b,
.discretion-copy > small {
  font-size: 12px;
  line-height: 1.5;
}

/* The embedded responsive demonstration remains readable instead of decorative. */
.demo-brand b {
  font-size: 8px;
}
.demo-links i,
.demo-nav-cta {
  font-size: 7px;
}
.demo-hero-copy > small {
  font-size: 7px;
}
.demo-hero h3 {
  font-size: clamp(18px, 1.7vw, 27px);
}
.demo-hero p {
  font-size: clamp(7px, 0.66vw, 10px);
}
.demo-button {
  font-size: 7px;
}
.demo-stats b {
  font-size: 10px;
}
.demo-stats small,
.demo-service-row small,
.demo-proof-row {
  font-size: 6px;
}
.demo-visual-label {
  font-size: 6px;
}
.demo-service-row b {
  font-size: 9px;
}
.demo-service-row span {
  font-size: 7px;
}
.demo-service-row i {
  font-size: 9px;
}
.spectrum-marquee div {
  font-size: 11px;
}
.tech-core small,
.core-node {
  font-size: 8px;
}
.work-presentation:before {
  font-size: 9px;
}
.device-browser-bar b,
.device-browser-bar small {
  font-size: 8px;
}
.discretion-points i {
  font-size: 11px;
}
.case-teaser small,
.founder-status,
.founder-coordinates small,
.case-media span,
.case-columns small,
.case-flow b,
.evidence-head small,
.evidence-head > span,
.mail-preview small,
.attachment small,
.extract-grid span,
.confidence > b,
.result-document small,
.approval-guard,
.dialog-head small,
.dialog-switch button {
  font-size: 11px;
}
.mail-preview b,
.attachment b,
.extract-grid b,
.result-document b,
.evidence-head b {
  font-size: 13px;
}
.mail-preview p,
.result-document p,
.dashboard-note p {
  font-size: 12px;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: -14px 0 30px;
}
.hero-assurances span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c6d7e5;
  font-size: 12px;
}
.hero-assurances i {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(94, 230, 181, 0.32);
  border-radius: 50%;
  background: rgba(94, 230, 181, 0.08);
  color: var(--green);
  font:
    normal 10px "DM Mono",
    monospace;
}

/* Image composition is preserved on smaller screens rather than cropped blindly. */
.hero-presentation .slide:nth-child(2) img,
.work-presentation .slide:nth-child(1) img,
.code-slideshow .slide:nth-child(1) img {
  object-position: 38% center;
}
.work-presentation .slide:nth-child(2) img,
.code-slideshow .slide:nth-child(2) img {
  object-position: 35% center;
}
.hero-presentation .slide:nth-child(3) img,
.work-presentation .slide:nth-child(3) img,
.code-slideshow .slide:nth-child(3) img {
  object-position: 57% center;
}
.hero-presentation .slide:nth-child(4) img,
.work-presentation .slide:nth-child(4) img {
  object-position: 50% center;
}
.portfolio-image img,
.case-teaser img,
.web-hero-media img {
  object-position: center;
}

/* Three-step conversion section */
.project-start-section {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(
      680px 420px at 12% 50%,
      rgba(32, 139, 241, 0.13),
      transparent 72%
    ),
    linear-gradient(130deg, #06101c, #09182a 64%, #06111f);
}
.project-start-section:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(102, 180, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 180, 232, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
}
.project-start-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 7%;
  align-items: center;
}
.project-start-copy > p:not(.eyebrow) {
  color: var(--readable-muted);
}
.project-start-steps {
  border: 1px solid rgba(111, 191, 242, 0.2);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(7, 18, 32, 0.74);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}
.project-start-steps article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  transition:
    background 0.25s ease,
    padding-left 0.25s ease;
}
.project-start-steps article:last-child {
  border-bottom: 0;
}
.project-start-steps article:hover {
  padding-left: 30px;
  background: rgba(26, 77, 118, 0.22);
}
.project-start-steps article > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(93, 193, 253, 0.3);
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(27, 90, 145, 0.48),
    rgba(5, 18, 31, 0.72)
  );
  color: var(--cyan);
  font:
    12px "DM Mono",
    monospace;
}
.project-start-steps small {
  color: var(--cyan);
  font:
    11px "DM Mono",
    monospace;
  letter-spacing: 0.1em;
}
.project-start-steps h3 {
  margin: 5px 0 6px;
  font-size: 19px;
}
.project-start-steps p {
  margin: 0;
  color: var(--readable-muted);
  font-size: 14px;
}

/* Professional imprint layout */
.legal-page.legal-imprint {
  max-width: 1080px;
  padding-top: 150px;
}
.legal-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 {
  margin-bottom: 12px;
}
.legal-intro {
  margin: 0;
  color: var(--readable-muted);
  font-size: 16px;
}
.legal-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(246, 199, 108, 0.35);
  border-radius: 8px;
  background: rgba(246, 199, 108, 0.07);
  color: #f3d493;
  font:
    11px "DM Mono",
    monospace;
  letter-spacing: 0.08em;
}
.legal-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 10px rgba(246, 199, 108, 0.7);
}
.legal-warning.prominent {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  margin: 36px 0;
  padding: 22px;
  font-size: 14px;
}
.legal-warning.prominent > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(246, 199, 108, 0.45);
  border-radius: 50%;
  font:
    700 20px Manrope,
    sans-serif;
}
.legal-warning.prominent b {
  display: block;
  margin-bottom: 5px;
  color: #ffe8b8;
  font-size: 16px;
}
.legal-warning.prominent p {
  margin: 0;
  color: #dccaa4;
  font-size: 14px;
}
.legal-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.legal-card {
  padding: 26px;
  border: 1px solid rgba(114, 181, 228, 0.18);
  border-radius: 13px;
  background: linear-gradient(
    145deg,
    rgba(13, 31, 52, 0.78),
    rgba(7, 17, 29, 0.8)
  );
}
.legal-card-wide {
  grid-column: 1 / -1;
}
.legal-card > small {
  color: var(--cyan);
  font:
    11px "DM Mono",
    monospace;
  letter-spacing: 0.1em;
}
.legal-card h2 {
  margin: 12px 0 18px;
  font-size: 24px;
}
.legal-card p {
  margin: 0 0 12px;
  color: var(--readable-muted);
  font-size: 14px;
}
.legal-card strong {
  color: #f2f7fb;
}
.legal-card a {
  color: #8fddff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-card dl {
  margin: 0;
}
.legal-card dl div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.legal-card dt {
  color: #8da3b7;
  font-size: 13px;
}
.legal-card dd {
  margin: 0;
  color: #e0ebf3;
  font-size: 14px;
}
.legal-hint {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: #8fa4b6 !important;
}
.legal-privacy-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(94, 230, 181, 0.24);
  border-radius: 12px;
  background: rgba(94, 230, 181, 0.055);
}
.legal-privacy-note > span {
  color: var(--green);
  font-size: 20px;
}
.legal-privacy-note b {
  color: #dff9ee;
  font-size: 15px;
}
.legal-privacy-note p {
  margin: 5px 0 0;
  color: #a9c5b8;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .brand {
    min-width: 198px;
  }
  .brand-emblem {
    width: 54px;
    height: 50px;
    flex-basis: 54px;
  }
  .brand-name {
    font-size: 14px;
  }
  .brand-name small {
    font-size: 9.5px;
  }
  .main-nav a {
    padding-inline: 9px;
  }
  .nav-cta {
    padding-inline: 11px;
  }
}

@media (max-width: 960px) {
  .site-header {
    background: rgba(4, 9, 18, 0.92);
    border-bottom: 1px solid rgba(118, 190, 237, 0.15);
    backdrop-filter: blur(20px);
  }
  .nav {
    height: 78px;
    gap: 12px;
  }
  .nav-actions {
    margin-left: auto;
    gap: 8px;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .menu-backdrop {
    position: fixed;
    z-index: 104;
    inset: 0;
    border: 0;
    background: rgba(1, 6, 13, 0.7);
    backdrop-filter: blur(4px);
  }
  body.menu-open .menu-backdrop {
    display: block;
  }
  .main-nav.open {
    position: fixed;
    z-index: 110;
    inset: 88px 12px 82px;
    display: block;
    max-height: none;
    padding: 14px;
    overflow-y: auto;
    border: 1px solid rgba(102, 197, 255, 0.36);
    border-radius: 18px;
    background: linear-gradient(
      145deg,
      rgba(8, 22, 39, 0.985),
      rgba(3, 10, 19, 0.99)
    );
    box-shadow:
      0 40px 120px rgba(0, 0, 0, 0.7),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }
  .mobile-nav-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 8px 7px 18px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav-head > span {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mobile-nav-head i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px var(--green);
  }
  .mobile-nav-head b {
    font-size: 14px;
  }
  .mobile-nav-head > small {
    color: #93a8ba;
    font-size: 12px;
  }
  .main-nav.open > a:not(.mobile-nav-contact) {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 24px;
    align-items: center;
    min-height: 60px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    color: #e9f3fa;
    font-size: 16px;
  }
  .main-nav.open > a:not(.mobile-nav-contact):hover,
  .main-nav.open > a:not(.mobile-nav-contact).active {
    background: rgba(65, 159, 228, 0.11);
  }
  .main-nav.open > a > small,
  .main-nav.open > a > b {
    display: block;
  }
  .main-nav.open > a > small {
    color: var(--cyan);
    font:
      10px "DM Mono",
      monospace;
  }
  .main-nav.open > a > b {
    justify-self: end;
    color: #6ecfff;
    font-size: 14px;
  }
  .main-nav.open .mobile-nav-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 14px;
    padding: 16px;
    border: 0;
    border-radius: 11px;
    background: linear-gradient(110deg, #1578e9, #55d3fa);
    color: #03101a;
  }
  .mobile-nav-contact span {
    display: grid;
    gap: 2px;
  }
  .mobile-nav-contact strong {
    font-size: 14px;
  }
  .mobile-nav-contact small {
    display: block !important;
    color: rgba(3, 16, 26, 0.72) !important;
    font:
      11px Manrope,
      sans-serif !important;
  }
  .mobile-nav-contact > b {
    display: block !important;
    color: #03101a !important;
    font-size: 20px !important;
  }
  .project-start-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }
  .shell {
    width: calc(100% - 28px);
  }
  .brand {
    min-width: 0;
    gap: 9px;
  }
  .brand-emblem {
    width: 48px;
    height: 44px;
    flex-basis: 48px;
  }
  .brand-name {
    max-width: none;
    font-size: 13px;
  }
  .brand-name small {
    display: none;
  }
  .lang-toggle {
    min-width: 50px;
    padding: 7px 8px;
    font-size: 10px;
  }
  .menu-toggle {
    min-width: 78px;
    min-height: 46px;
    padding-inline: 9px;
  }
  .menu-label {
    font-size: 12px;
  }
  .main-nav.open {
    inset: 84px 10px 82px;
  }
  .mobile-nav-head {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .hero-assurances {
    display: grid;
    margin-top: -8px;
  }
  .hero-assurances span {
    font-size: 13px;
  }
  .hero-facts span {
    font-size: 13px;
  }
  h1 {
    font-size: clamp(2.3rem, 11vw, 2.75rem);
    line-height: 1.04;
  }
  h2 {
    font-size: clamp(2rem, 9vw, 2.35rem);
    line-height: 1.08;
  }
  .btn {
    min-height: 52px;
    justify-content: space-between;
    font-size: 14px;
  }
  .hero-presentation,
  .hero-presentation .slide {
    min-height: 420px;
    height: 420px;
  }
  .hero-presentation .slide figcaption {
    bottom: 66px;
  }
  .work-presentation .slide img,
  .code-slideshow .slide img {
    aspect-ratio: 16/10;
  }
  .work-presentation .slide figcaption,
  .code-slideshow .slide figcaption {
    font-size: 12px;
  }
  .case-teaser img {
    aspect-ratio: 16/9;
  }
  .project-start-section {
    padding: 86px 0;
  }
  .project-start-steps article {
    grid-template-columns: 50px 1fr;
    gap: 14px;
    padding: 20px 16px;
  }
  .project-start-steps article:hover {
    padding-left: 16px;
  }
  .project-start-steps article > span {
    width: 46px;
    height: 46px;
  }
  .project-start-steps h3 {
    font-size: 18px;
  }
  .legal-page.legal-imprint {
    padding-top: 118px;
  }
  .legal-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .legal-status {
    justify-self: start;
  }
  .legal-card-grid {
    grid-template-columns: 1fr;
  }
  .legal-card-wide {
    grid-column: auto;
  }
  .legal-card {
    padding: 21px;
  }
  .legal-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .legal-warning.prominent {
    grid-template-columns: 1fr;
  }
  .legal-privacy-note {
    grid-template-columns: 1fr;
  }
  .demo-hero p {
    font-size: 8px;
  }
  .preview-device.mobile .demo-hero p {
    font-size: 8px;
  }
  .mobile-actionbar a {
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .nav {
    gap: 7px;
  }
  .brand-emblem {
    width: 44px;
    height: 41px;
    flex-basis: 44px;
  }
  .brand-name {
    font-size: 12px;
    letter-spacing: 0.075em;
  }
  .nav-actions {
    gap: 6px;
  }
  .lang-toggle {
    min-width: 46px;
    padding-inline: 6px;
  }
  .menu-toggle {
    min-width: 48px;
    width: 48px;
  }
  .menu-label {
    display: none;
  }
  .mobile-nav-head > small {
    font-size: 11px;
  }
}

/* ================================================================
   V6 — WELCOME CINEMATIC, BUSINESS IDENTITY & LEGAL COMPLETION
   ================================================================ */
body.intro-open {
  overflow: hidden;
}
.site-intro {
  display: none;
  position: fixed;
  z-index: 400;
  inset: 0;
  min-height: 100dvh;
  overflow: hidden;
  background: #020711;
  opacity: 0;
  transition: opacity 0.65s ease;
}
.site-intro.active {
  display: block;
  opacity: 1;
}
.site-intro.leaving {
  opacity: 0;
  pointer-events: none;
}
.intro-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition:
    opacity 0.55s ease,
    transform 1.8s cubic-bezier(0.2, 0.72, 0.25, 1),
    visibility 0.55s;
}
.intro-slide.active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.intro-slide > img:not(.intro-logo) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.08) brightness(0.72);
}
.intro-slide:first-of-type > img {
  object-position: center 42%;
}
.intro-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(1, 7, 15, 0.92) 0%,
      rgba(2, 9, 18, 0.62) 46%,
      rgba(2, 7, 14, 0.25) 100%
    ),
    linear-gradient(0deg, rgba(1, 5, 11, 0.72), transparent 55%),
    radial-gradient(
      circle at 70% 30%,
      rgba(29, 145, 229, 0.11),
      transparent 38%
    );
}
.intro-slide figcaption {
  position: absolute;
  z-index: 2;
  left: max(7vw, 28px);
  bottom: clamp(70px, 12vh, 142px);
  width: min(720px, calc(100% - 56px));
}
.intro-slide figcaption::before {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, #50ceff, #2a7eea);
  box-shadow: 0 0 18px rgba(80, 206, 255, 0.7);
}
.intro-logo {
  display: block;
  width: clamp(230px, 24vw, 390px);
  max-height: 118px;
  margin: 0 0 22px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 15px 32px rgba(0, 0, 0, 0.5));
}
.intro-slide figcaption small {
  display: block;
  margin-bottom: 13px;
  color: #84dfff;
  font:
    700 12px "DM Mono",
    monospace;
  letter-spacing: 0.17em;
}
.intro-slide h2 {
  max-width: 680px;
  margin: 0 0 18px;
  color: #f5f9fc;
  font-size: clamp(2.65rem, 5.4vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 10px 38px rgba(0, 0, 0, 0.5);
}
.intro-slide h2 em {
  color: #68d6ff;
  font-style: normal;
}
.intro-slide figcaption p {
  max-width: 590px;
  margin: 0;
  color: #d6e6f1;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.55;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
}
.intro-progress {
  position: absolute;
  z-index: 8;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.13);
}
.intro-progress i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #0878e6, #63ddff, #9cf0ff);
  box-shadow: 0 0 20px rgba(72, 205, 255, 0.8);
  animation: intro-progress 4.5s linear forwards;
}
.intro-skip {
  position: absolute;
  z-index: 10;
  top: max(28px, env(safe-area-inset-top));
  right: max(32px, env(safe-area-inset-right));
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgba(170, 218, 246, 0.32);
  border-radius: 999px;
  background: rgba(3, 12, 23, 0.66);
  color: #eef8ff;
  font:
    700 12px Manrope,
    sans-serif;
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.25s;
}
.intro-skip:hover {
  transform: translateY(-2px);
  border-color: #64d8ff;
  background: rgba(9, 36, 58, 0.88);
}
.intro-counter {
  position: absolute;
  z-index: 8;
  right: max(7vw, 30px);
  bottom: max(48px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: auto 78px auto;
  align-items: center;
  gap: 10px;
  color: #cbe4f2;
  font:
    700 11px "DM Mono",
    monospace;
  letter-spacing: 0.12em;
}
.intro-counter i {
  height: 1px;
  background: linear-gradient(90deg, #53d3ff, rgba(255, 255, 255, 0.16));
}
@keyframes intro-progress {
  to {
    transform: scaleX(1);
  }
}

.legal-status.complete {
  border-color: rgba(94, 230, 181, 0.38);
  background: rgba(94, 230, 181, 0.08);
  color: #c5f7e3;
}
.legal-status.complete i {
  background: var(--green);
  box-shadow: 0 0 11px rgba(94, 230, 181, 0.8);
}
.legal-confirmation {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  margin: 36px 0;
  padding: 22px;
  border: 1px solid rgba(94, 230, 181, 0.27);
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(94, 230, 181, 0.08),
    rgba(30, 129, 205, 0.05)
  );
}
.legal-confirmation > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(94, 230, 181, 0.45);
  border-radius: 50%;
  color: var(--green);
  font-size: 20px;
}
.legal-confirmation b {
  display: block;
  margin-bottom: 5px;
  color: #dff9ee;
  font-size: 16px;
}
.legal-confirmation p {
  margin: 0;
  color: #acd5c4;
  font-size: 14px;
}
.founder-identity {
  margin: 28px 0;
  padding: 19px 21px;
  border-left: 2px solid #55d3fa;
  background: linear-gradient(90deg, rgba(57, 158, 224, 0.1), transparent);
}
.founder-identity strong,
.founder-identity b {
  display: block;
  color: #f1f8fc;
  font-size: 18px;
}
.founder-identity span {
  display: block;
  margin-top: 4px;
  color: #a9c1d2;
  font-size: 14px;
}
.footer-intro address {
  display: grid;
  gap: 3px;
  margin-top: 22px;
  color: #9fb6c7;
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
}
.footer-intro address b {
  color: #dfebf3;
}

@media (max-width: 700px) {
  .intro-slide > img:not(.intro-logo) {
    object-position: 62% center;
  }
  .intro-slide:first-of-type > img {
    object-position: 59% center;
  }
  .intro-shade {
    background:
      linear-gradient(
        0deg,
        rgba(1, 6, 13, 0.96) 0%,
        rgba(2, 8, 16, 0.71) 58%,
        rgba(2, 7, 14, 0.38) 100%
      ),
      radial-gradient(
        circle at 60% 26%,
        rgba(38, 154, 231, 0.15),
        transparent 42%
      );
  }
  .intro-slide figcaption {
    left: 22px;
    bottom: max(82px, calc(env(safe-area-inset-bottom) + 62px));
    width: calc(100% - 44px);
  }
  .intro-slide figcaption::before {
    width: 40px;
    margin-bottom: 16px;
  }
  .intro-logo {
    width: min(255px, 76vw);
    margin-bottom: 17px;
  }
  .intro-slide figcaption small {
    margin-bottom: 9px;
    font-size: 10px;
  }
  .intro-slide h2 {
    margin-bottom: 13px;
    font-size: clamp(2.15rem, 10.4vw, 3.15rem);
    line-height: 1.01;
  }
  .intro-slide figcaption p {
    max-width: 92%;
    font-size: 15px;
    line-height: 1.48;
  }
  .intro-skip {
    top: max(18px, env(safe-area-inset-top));
    right: 16px;
    min-height: 42px;
  }
  .intro-counter {
    right: 20px;
    bottom: max(24px, env(safe-area-inset-bottom));
    grid-template-columns: auto 48px auto;
  }
  .legal-confirmation {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-progress i {
    animation: none;
    transform: scaleX(1);
  }
  .intro-slide {
    transition: opacity 0.15s linear;
    transform: none;
  }
  .site-intro {
    transition-duration: 0.08s;
  }
}
