:root {
  --ink: #0b1018;
  --ink-soft: #131a25;
  --paper: #f2f3ee;
  --paper-deep: #e7e9e2;
  --white: #ffffff;
  --brand-blue: #1683ff;
  --brand-blue-hover: #3f98ff;
  --blue: #6373ff;
  --cyan: #53e2d0;
  --text: #131922;
  --muted: #626b76;
  --line: rgba(13, 18, 27, 0.13);
  --container: 1240px;
  --radius: 24px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

@font-face {
  font-family: "Stack_sans_notch";
  src: local("Stack Sans Notch"), local("Stack_sans_notch"), url("../assets/fonts/StackSansNotch-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 200 700;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

::selection { color: var(--ink); background: var(--brand-blue); }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section { padding: 140px 0; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--brand-blue);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 56px;
  padding: 0 25px;
  border: 0;
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 720;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease, box-shadow .25s ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button-primary {
  color: var(--ink);
  background: var(--brand-blue);
  box-shadow: 0 10px 30px rgba(22, 131, 255, .18);
}

.button-primary:hover { background: var(--brand-blue-hover); box-shadow: 0 14px 36px rgba(22, 131, 255, .28); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { background: var(--brand-blue); }
.button-small { min-height: 44px; padding: 0 20px; font-size: .82rem; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled {
  background: rgba(9, 14, 22, .86);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 86px;
}

.brand { display: inline-flex; align-items: center; font-family: "Stack_sans_notch", Inter, ui-sans-serif, sans-serif; font-size: 2.65rem; font-weight: 700; letter-spacing: -.055em; line-height: 1; }
.brand-wordmark { display: inline-flex; align-items: baseline; white-space: nowrap; }
.brand-flow { color: #FFFFFF; }
.brand-scale { color: var(--brand-blue); }

.desktop-nav { display: flex; gap: 32px; margin: 0 auto; }
.desktop-nav a { position: relative; color: rgba(255, 255, 255, .7); font-size: .83rem; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--brand-blue); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .05);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: var(--white); transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu {
  display: grid;
  height: 0;
  overflow: hidden;
  background: rgba(9, 14, 22, .98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: height .4s var(--ease), opacity .25s ease;
}

.mobile-menu.open { height: calc(100vh - 85px); opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; padding: 36px 24px; }
.mobile-menu a { display: flex; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid rgba(255, 255, 255, .09); font-size: clamp(1.5rem, 7vw, 2rem); font-weight: 650; letter-spacing: -.04em; }
.mobile-menu a:last-child { margin-top: 22px; padding: 18px 22px; color: var(--ink); background: var(--brand-blue); border: 0; border-radius: 14px; font-size: 1rem; }

.hero {
  position: relative;
  min-height: 850px;
  padding: 172px 0 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 73% 35%, rgba(72, 92, 255, .2), transparent 27%),
    radial-gradient(circle at 88% 15%, rgba(83, 226, 208, .08), transparent 20%),
    var(--ink);
}

.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 0%, rgba(11,16,24,.96) 35%, rgba(11,16,24,.35) 68%, rgba(11,16,24,.6) 100%); }
.hero-grid { position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 78%); }
.hero-glow { position: absolute; top: 80px; right: 5%; width: 580px; height: 580px; border: 1px solid rgba(22,131,255,.12); border-radius: 50%; box-shadow: inset 0 0 100px rgba(99,115,255,.09), 0 0 180px rgba(99,115,255,.08); }
.hero-glow::before, .hero-glow::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; }
.hero-glow::before { inset: 70px; }
.hero-glow::after { inset: 155px; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .74; }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .96fr) minmax(470px, .8fr); align-items: center; gap: 72px; }
.hero-copy { max-width: 725px; padding-bottom: 70px; }
.hero h1 { max-width: 790px; margin: 0; font-size: clamp(3.5rem, 6vw, 6.25rem); font-weight: 620; line-height: .96; letter-spacing: -.072em; }
.hero h1 em { color: var(--brand-blue); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-lead { max-width: 650px; margin: 34px 0 0; color: rgba(255,255,255,.67); font-size: clamp(1.05rem, 1.4vw, 1.24rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 42px; }
.text-link { display: inline-flex; align-items: center; gap: 14px; color: rgba(255,255,255,.76); font-size: .9rem; font-weight: 650; }
.text-link:hover { color: var(--white); }

.hero-visual { position: relative; min-width: 0; transform: perspective(1200px) rotateY(-5deg) rotateX(2deg); transform-origin: center right; }
.system-window { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 20px; background: rgba(19,27,39,.72); box-shadow: 0 40px 100px rgba(0,0,0,.45), inset 0 1px rgba(255,255,255,.05); backdrop-filter: blur(14px); }
.window-bar { display: flex; align-items: center; height: 48px; padding: 0 17px; border-bottom: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.45); font-size: .66rem; letter-spacing: .04em; }
.window-dots { display: flex; gap: 5px; }
.window-dots span { width: 6px; height: 6px; background: rgba(255,255,255,.22); border-radius: 50%; }
.window-title { margin: 0 auto; }
.window-live { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.62); }
.window-live i { width: 6px; height: 6px; background: var(--brand-blue); border-radius: 50%; box-shadow: 0 0 9px var(--brand-blue); }
.window-body { padding: 30px 27px 25px; }
.flow-label { margin-bottom: 26px; color: rgba(255,255,255,.42); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.flow-line { display: flex; align-items: center; }
.flow-node { flex: 0 0 115px; display: flex; align-items: center; gap: 9px; min-width: 0; padding: 12px 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 11px; background: rgba(255,255,255,.055); font-size: .61rem; font-weight: 650; line-height: 1.25; }
.flow-node small { display: block; margin-bottom: 2px; color: rgba(255,255,255,.38); font-size: .48rem; font-weight: 500; }
.node-icon { flex: 0 0 26px; display: grid; place-items: center; width: 26px; height: 26px; color: var(--ink); background: var(--brand-blue); border-radius: 7px; font-size: .5rem; font-weight: 800; }
.node-process .node-icon { color: white; background: var(--blue); }
.node-output .node-icon { background: var(--cyan); }
.flow-connector { position: relative; flex: 1; height: 1px; background: rgba(255,255,255,.15); }
.flow-connector i { position: absolute; top: -2px; width: 5px; height: 5px; background: var(--brand-blue); border-radius: 50%; box-shadow: 0 0 8px var(--brand-blue); animation: data-flow 2.4s linear infinite; }
.flow-connector:nth-of-type(4) i { animation-delay: 1.2s; }
@keyframes data-flow { from { left: 0; } to { left: calc(100% - 5px); } }

.system-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); }
.system-stats div { padding: 10px; border-radius: 9px; background: rgba(255,255,255,.035); }
.system-stats span { display: block; color: rgba(255,255,255,.38); font-size: .53rem; }
.system-stats strong { display: block; margin-top: 4px; font-size: 1rem; letter-spacing: -.03em; }
.system-stats small { color: rgba(255,255,255,.42); font-size: .55rem; }

.floating-pill { position: absolute; display: flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.75); background: rgba(16,23,34,.86); border-radius: 10px; box-shadow: 0 14px 35px rgba(0,0,0,.3); backdrop-filter: blur(12px); font-size: .62rem; font-weight: 650; }
.floating-pill span { display: grid; place-items: center; width: 17px; height: 17px; color: var(--ink); background: var(--brand-blue); border-radius: 50%; font-size: .55rem; }
.floating-pill i { width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 8px var(--cyan); }
.pill-one { top: -26px; right: 24px; animation: float 5s ease-in-out infinite; }
.pill-two { right: -12px; bottom: -19px; animation: float 5s 1.6s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-8px); } }

.hero-bottom { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; min-height: 100px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.45); font-size: .73rem; }
.hero-bottom p { margin: 0; }
.hero-capabilities { display: flex; align-items: center; gap: 17px; color: rgba(255,255,255,.65); font-weight: 600; }
.hero-capabilities i { width: 3px; height: 3px; background: var(--brand-blue); border-radius: 50%; }

.section-heading { margin-bottom: 65px; }
.section-heading h2 { margin: 0; color: var(--ink); font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 630; line-height: 1.02; letter-spacing: -.065em; }
.section-heading h2 span, .about h2 span { color: var(--blue); font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-style: italic; }
.section-heading-wide { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; }
.section-heading-wide > p, .section-heading-split > p { max-width: 470px; margin: 0 0 8px; color: var(--muted); font-size: 1.04rem; line-height: 1.75; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 540px; padding: 34px; overflow: hidden; border-radius: var(--radius); }
.service-card::after { content: ""; position: absolute; top: 0; right: 0; width: 150px; height: 150px; border: 1px solid currentColor; border-radius: 0 0 0 100%; opacity: .08; }
.service-card-dark { color: var(--white); background: var(--ink); }
.service-card-blue { color: var(--white); background: var(--blue); }
.service-card-accent { color: var(--ink); background: var(--brand-blue); }
.service-icon { position: relative; height: 148px; margin: 12px 0 38px; }
.service-card h3 { max-width: 300px; margin: 0 0 16px; font-size: 1.7rem; font-weight: 650; line-height: 1.13; letter-spacing: -.045em; }
.service-card p { margin: 0; opacity: .7; font-size: .91rem; line-height: 1.65; }
.service-card ul { position: absolute; right: 34px; bottom: 30px; left: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin: 0; padding: 22px 0 0; border-top: 1px solid currentColor; list-style: none; }
.service-card li { display: inline-flex; align-items: center; justify-content: center; min-height: 31px; padding: 6px 11px; border: 1px solid currentColor; border-radius: 20px; font-size: .56rem; font-weight: 650; line-height: 1.2; text-align: center; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease); }
.service-card-dark ul, .service-card-blue ul { border-color: rgba(255,255,255,.22); }
.service-card-dark li, .service-card-blue li { color: rgba(255,255,255,.76); border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.035); }
.service-card-dark li:hover, .service-card-blue li:hover { color: #fff; border-color: rgba(255,255,255,.58); background: rgba(255,255,255,.13); transform: translateY(-2px); }
.service-card-accent ul { border-color: rgba(11,16,24,.2); }
.service-card-accent li { color: rgba(11,16,24,.76); border-color: rgba(11,16,24,.28); background: rgba(255,255,255,.08); }
.service-card-accent li:hover { color: var(--ink); border-color: rgba(11,16,24,.55); background: rgba(255,255,255,.25); transform: translateY(-2px); }

.web-icon { border: 1px solid rgba(255,255,255,.17); border-radius: 12px; background: rgba(255,255,255,.035); transform: rotate(-3deg); }
.web-icon::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 28px; border-bottom: 1px solid rgba(255,255,255,.12); }
.web-icon::after { content: ""; position: absolute; top: 43px; right: 15px; bottom: 15px; left: 44%; background: linear-gradient(135deg, var(--brand-blue), var(--cyan)); border-radius: 7px; opacity: .9; }
.web-icon span { position: absolute; left: 15px; height: 6px; background: rgba(255,255,255,.2); border-radius: 5px; }
.web-icon span:nth-child(1) { top: 52px; width: 34%; }
.web-icon span:nth-child(2) { top: 70px; width: 23%; }
.web-icon span:nth-child(3) { top: 101px; width: 18%; height: 18px; background: var(--brand-blue); }

.app-icon { display: grid; grid-template-columns: .72fr 1.28fr; grid-template-rows: .65fr 1.35fr; gap: 8px; padding: 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; transform: rotate(2deg); }
.app-icon span { border-radius: 7px; background: rgba(255,255,255,.17); }
.app-icon span:nth-child(1) { grid-row: span 2; background: rgba(12,18,27,.25); }
.app-icon span:nth-child(2) { background: var(--brand-blue); }
.app-icon span:nth-child(3), .app-icon span:nth-child(4) { position: absolute; bottom: 18px; width: 22%; height: 45%; background: rgba(255,255,255,.22); }
.app-icon span:nth-child(3) { right: 31%; height: 28%; }
.app-icon span:nth-child(4) { right: 6%; height: 42%; background: rgba(22,131,255,.75); }

.automation-icon::before, .automation-icon::after { content: ""; position: absolute; top: 73px; right: 20%; left: 20%; height: 1px; background: rgba(11,16,24,.3); }
.automation-icon::after { top: 35px; right: 50%; bottom: 35px; left: auto; width: 1px; height: auto; }
.automation-icon span { position: absolute; z-index: 2; display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid rgba(11,16,24,.25); border-radius: 13px; background: rgba(255,255,255,.4); box-shadow: 0 10px 25px rgba(50,70,0,.08); }
.automation-icon span::before { content: ""; width: 15px; height: 15px; border: 2px solid var(--ink); border-radius: 4px; }
.automation-icon span:nth-child(1) { top: 45px; left: 8%; }
.automation-icon span:nth-child(2) { top: 45px; left: calc(50% - 29px); background: var(--ink); }
.automation-icon span:nth-child(2)::before { border-color: var(--brand-blue); border-radius: 50%; }
.automation-icon span:nth-child(3) { top: 45px; right: 8%; }

.solutions { color: var(--white); background: var(--ink); }
.solutions .section-heading h2 { max-width: 690px; color: var(--white); }
.solutions .section-heading h2 span { color: var(--brand-blue); }
.section-heading-split { display: grid; grid-template-columns: 1.2fr .65fr; align-items: end; gap: 80px; }
.solutions .section-heading-split > p { color: rgba(255,255,255,.55); }
.solution-list { border-top: 1px solid rgba(255,255,255,.13); }
.solution-row { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); align-items: center; gap: 48px; min-height: 300px; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.solution-content h3 { margin: 0 0 15px; font-size: clamp(1.6rem, 2.3vw, 2.35rem); font-weight: 630; line-height: 1.1; letter-spacing: -.045em; }
.solution-content > p { max-width: 390px; margin: 0; color: rgba(255,255,255,.53); font-size: .92rem; }
.solution-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 26px; }
.solution-tags span { padding: 5px 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 30px; color: rgba(255,255,255,.57); font-size: .56rem; font-weight: 650; }

.solution-preview { position: relative; justify-self: end; width: min(100%, 520px); height: 220px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: #141c28; box-shadow: 0 25px 45px rgba(0,0,0,.2); transition: transform .5s var(--ease), border-color .4s ease; }
.solution-row:hover .solution-preview { border-color: rgba(22,131,255,.4); transform: translateY(-4px) rotateX(1deg); }
.preview-top { display: flex; align-items: center; gap: 5px; height: 32px; padding: 0 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
.preview-top i { width: 4px; height: 4px; background: rgba(255,255,255,.25); border-radius: 50%; }
.preview-top span { margin-left: auto; color: rgba(255,255,255,.36); font-size: .5rem; }
.pos-layout { display: grid; grid-template-columns: 1.5fr .7fr; gap: 11px; padding: 12px; }
.pos-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.pos-products span { min-height: 75px; border-radius: 7px; background: linear-gradient(145deg, rgba(99,115,255,.16), rgba(83,226,208,.06)); }
.pos-products span:nth-child(2), .pos-products span:nth-child(5) { background: linear-gradient(145deg, rgba(22,131,255,.21), rgba(22,131,255,.05)); }
.pos-ticket { display: flex; flex-direction: column; padding: 10px; border-radius: 7px; background: rgba(255,255,255,.055); font-size: .52rem; }
.pos-ticket b { margin-bottom: 12px; color: rgba(255,255,255,.7); }
.pos-ticket i { width: 100%; height: 5px; margin-bottom: 7px; background: rgba(255,255,255,.1); border-radius: 5px; }
.pos-ticket i:nth-of-type(2) { width: 76%; }
.pos-ticket strong { margin: auto 0 7px; font-size: 1rem; }
.pos-ticket .mock-button { padding: 6px; color: var(--ink); background: var(--brand-blue); border-radius: 5px; font-size: .48rem; font-weight: 750; text-align: center; }

.dashboard-preview { display: grid; grid-template-columns: 45px 1fr; }
.dash-side { display: flex; flex-direction: column; align-items: center; gap: 13px; padding-top: 22px; border-right: 1px solid rgba(255,255,255,.08); }
.dash-side i { width: 14px; height: 14px; border-radius: 4px; background: rgba(255,255,255,.09); }
.dash-side i:first-child { background: var(--brand-blue); }
.dash-main { padding: 16px; }
.dash-header { display: flex; justify-content: space-between; color: rgba(255,255,255,.68); font-size: .58rem; }
.dash-header span { padding: 3px 7px; background: rgba(255,255,255,.05); border-radius: 4px; color: rgba(255,255,255,.36); }
.dash-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 17px; }
.dash-metrics span { padding: 9px; border: 1px solid rgba(255,255,255,.08); border-radius: 6px; }
.dash-metrics small, .dash-metrics b { display: block; }
.dash-metrics small { color: rgba(255,255,255,.35); font-size: .43rem; }
.dash-metrics b { font-size: .95rem; }
.dash-chart { display: flex; align-items: end; gap: 7px; height: 87px; margin-top: 14px; padding: 10px 12px 0; border-radius: 7px; background: rgba(255,255,255,.03); }
.dash-chart i { flex: 1; height: 30%; background: var(--blue); border-radius: 3px 3px 0 0; opacity: .55; }
.dash-chart i:nth-child(2) { height: 44%; }.dash-chart i:nth-child(3) { height: 39%; }.dash-chart i:nth-child(4) { height: 65%; }.dash-chart i:nth-child(5) { height: 54%; }.dash-chart i:nth-child(6) { height: 78%; background: var(--brand-blue); opacity: .9; }.dash-chart i:nth-child(7) { height: 70%; }

.workflow-preview { min-height: 220px; }
.workflow-track { position: absolute; top: 90px; right: 70px; left: 70px; height: 1px; background: rgba(255,255,255,.15); }
.workflow-track::after { content: ""; position: absolute; inset: -1px auto -1px 0; width: 62%; background: var(--brand-blue); box-shadow: 0 0 9px rgba(22,131,255,.72); }
.workflow-box { position: absolute; top: 66px; z-index: 2; display: flex; align-items: center; gap: 7px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 8px; color: rgba(255,255,255,.63); background: #182130; font-size: .56rem; }
.workflow-box i { display: grid; place-items: center; width: 17px; height: 17px; color: var(--ink); background: var(--brand-blue); border-radius: 4px; font-size: .45rem; font-style: normal; font-weight: 800; }
.box-a { left: 28px; }.box-b { left: calc(50% - 42px); }.box-c { right: 28px; }
.box-b i { color: white; background: var(--blue); }.box-c i { background: var(--cyan); }
.workflow-status { position: absolute; bottom: 36px; left: 50%; padding: 6px 10px; border: 1px solid rgba(22,131,255,.18); color: var(--brand-blue); background: rgba(22,131,255,.08); border-radius: 20px; font-size: .48rem; transform: translateX(-50%); }

.tasks-preview { padding: 15px; }
.tasks-head { display: flex; justify-content: space-between; margin-bottom: 14px; color: rgba(255,255,255,.7); font-size: .58rem; }
.tasks-head span { color: var(--ink); padding: 4px 7px; background: var(--brand-blue); border-radius: 4px; font-size: .46rem; font-weight: 750; }
.task-row { display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 8px; padding: 9px; margin-bottom: 6px; background: rgba(255,255,255,.035); border-radius: 7px; }
.task-row > i { display: grid; place-items: center; width: 16px; height: 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 4px; color: var(--ink); font-size: .42rem; font-style: normal; }
.task-row > i.done { border: 0; background: var(--brand-blue); }
.task-row span b, .task-row span small { display: block; }
.task-row span b { color: rgba(255,255,255,.67); font-size: .53rem; }
.task-row span small { color: rgba(255,255,255,.28); font-size: .42rem; }
.task-row em { padding: 3px 6px; color: var(--cyan); background: rgba(83,226,208,.07); border-radius: 10px; font-size: .39rem; font-style: normal; }

.solutions-note { display: flex; align-items: center; justify-content: space-between; gap: 50px; margin-top: 66px; padding: 38px 42px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.025); }
.solutions-note p { max-width: 670px; margin: 0; color: rgba(255,255,255,.55); }
.solutions-note p span { color: var(--white); font-weight: 700; }
.solutions-note .button { flex: 0 0 auto; }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; }
.about-sticky { align-self: start; position: sticky; top: 135px; }
.about h2 { margin: 0; font-size: clamp(2.9rem, 4.5vw, 4.8rem); font-weight: 630; line-height: 1.04; letter-spacing: -.065em; }
.about-content { padding-top: 10px; }
.about-content > p { max-width: 690px; margin: 0 0 26px; color: var(--muted); font-size: 1.02rem; line-height: 1.8; }
.about-content .about-lead { margin-bottom: 36px; color: var(--ink); font-size: clamp(1.5rem, 2.3vw, 2.15rem); font-weight: 520; line-height: 1.4; letter-spacing: -.035em; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 60px; }
.value-card { position: relative; display: flex; flex-direction: column; min-height: 245px; padding: 25px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.35); transition: background .3s ease, border-color .3s ease, transform .3s var(--ease), box-shadow .3s ease; }
.value-card::after { content: ""; position: absolute; top: -42px; right: -42px; width: 120px; height: 120px; border: 1px solid rgba(22,131,255,.14); border-radius: 50%; }
.value-card:hover { border-color: rgba(22,131,255,.28); background: var(--white); box-shadow: 0 18px 38px rgba(13,24,40,.07); transform: translateY(-3px); }
.value-visual { display: grid; place-items: center; width: 74px; height: 74px; margin-bottom: 30px; color: var(--brand-blue); border: 1px solid rgba(22,131,255,.18); background: rgba(22,131,255,.055); border-radius: 18px; transition: background .3s ease, transform .3s var(--ease); }
.value-card:hover .value-visual { background: rgba(22,131,255,.1); transform: translateY(-2px); }
.value-visual svg { width: 54px; height: 54px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { margin: auto 0 8px; font-size: 1.1rem; letter-spacing: -.025em; }
.value-card p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.55; }

.contact { position: relative; overflow: hidden; color: var(--white); background: #111824; }
.contact::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(90deg, black, transparent); }
.contact-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.contact-orb-one { top: -280px; left: -230px; width: 650px; height: 650px; border: 1px solid rgba(99,115,255,.25); box-shadow: inset 0 0 180px rgba(99,115,255,.08); }
.contact-orb-two { right: -120px; bottom: -320px; width: 580px; height: 580px; background: radial-gradient(circle, rgba(22,131,255,.11), transparent 67%); border: 1px solid rgba(22,131,255,.12); }
.contact-grid { position: relative; display: grid; grid-template-columns: .86fr 1.14fr; align-items: start; gap: 100px; }
.contact-copy h2 { margin: 0; font-size: clamp(3.1rem, 5vw, 5.4rem); font-weight: 620; line-height: .98; letter-spacing: -.068em; }
.contact-copy h2 span { color: var(--brand-blue); font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-style: italic; }
.contact-copy > p { max-width: 500px; margin: 32px 0 0; color: rgba(255,255,255,.57); font-size: 1rem; line-height: 1.75; }
.contact-direct { margin-top: 60px; border-top: 1px solid rgba(255,255,255,.12); }
.contact-direct > a, .contact-direct > div { display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 14px; min-height: 78px; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-direct > a { transition: padding .25s var(--ease), color .25s ease; }
.contact-direct > a:hover { padding-left: 8px; color: var(--brand-blue); }
.contact-icon { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; color: var(--brand-blue); font-size: .8rem; font-weight: 700; }
.contact-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-direct small { display: block; margin-bottom: 2px; color: rgba(255,255,255,.34); font-size: .58rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.contact-direct > * > span:nth-child(2) { font-size: .85rem; }

.contact-panel { padding: 38px; border: 1px solid rgba(255,255,255,.11); border-radius: 22px; background: rgba(255,255,255,.055); box-shadow: 0 35px 80px rgba(0,0,0,.2); backdrop-filter: blur(18px); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { position: relative; margin-bottom: 20px; }
.field label { display: block; margin-bottom: 8px; color: rgba(255,255,255,.7); font-size: .68rem; font-weight: 650; }
.field label span, .consent b { color: var(--brand-blue); }
.field label small { color: rgba(255,255,255,.32); font-size: .6rem; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; outline: 0; color: var(--white); background: rgba(6,10,16,.38); font-size: .82rem; transition: border .2s ease, background .2s ease, box-shadow .2s ease; }
.field input, .field select { height: 50px; padding: 0 14px; }
.field textarea { min-height: 137px; padding: 14px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.25); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.45) 50%), linear-gradient(135deg, rgba(255,255,255,.45) 50%, transparent 50%); background-position: calc(100% - 17px) 22px, calc(100% - 12px) 22px; background-size: 5px 5px; background-repeat: no-repeat; }
.field select option { color: var(--ink); background: white; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(22,131,255,.78); background-color: rgba(6,10,16,.58); box-shadow: 0 0 0 3px rgba(22,131,255,.1); }
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: rgba(255,105,105,.55); }
.character-count { position: absolute; right: 10px; bottom: 8px; color: rgba(255,255,255,.28); font-size: .52rem; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent { display: flex; align-items: flex-start; gap: 9px; color: rgba(255,255,255,.46); font-size: .66rem; cursor: pointer; }
.consent input { position: absolute; opacity: 0; pointer-events: none; }
.custom-check { flex: 0 0 17px; display: grid; place-items: center; width: 17px; height: 17px; margin-top: 1px; border: 1px solid rgba(255,255,255,.25); border-radius: 4px; }
.consent input:checked + .custom-check { border-color: var(--brand-blue); background: var(--brand-blue); }
.consent input:checked + .custom-check::after { content: "✓"; color: var(--ink); font-size: .64rem; font-weight: 900; }
.consent input:focus-visible + .custom-check { outline: 3px solid var(--brand-blue); outline-offset: 3px; }
.consent a { color: rgba(255,255,255,.75); text-decoration: underline; text-underline-offset: 2px; }
.form-footer { display: flex; align-items: center; gap: 18px; margin-top: 25px; }
.form-footer p { max-width: 180px; margin: 0; color: rgba(255,255,255,.32); font-size: .61rem; line-height: 1.45; }
.submit-button { position: relative; min-width: 195px; }
.submit-button.loading { pointer-events: none; opacity: .76; }
.button-loader { display: none; width: 15px; height: 15px; border: 2px solid rgba(11,16,24,.3); border-top-color: var(--ink); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.submit-button.loading .button-loader { display: block; }
.form-status { display: none; margin-top: 18px; padding: 11px 13px; border-radius: 7px; font-size: .72rem; }
.form-status.visible { display: block; }
.form-status.success { color: #a9d4ff; background: rgba(22,131,255,.1); border: 1px solid rgba(22,131,255,.22); }
.form-status.error { color: #ffc4c4; background: rgba(255,105,105,.08); border: 1px solid rgba(255,105,105,.16); }
.noscript-note { color: #ffc4c4; font-size: .75rem; }
.noscript-note a { text-decoration: underline; }

.site-footer { color: var(--white); background: #090e15; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 80px 0 70px; }
.footer-brand p { margin: 25px 0 0; color: rgba(255,255,255,.4); font-size: .86rem; line-height: 1.65; }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.footer-nav > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-nav h3 { margin: 0 0 14px; color: rgba(255,255,255,.3); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-nav a, .footer-nav span { color: rgba(255,255,255,.58); font-size: .78rem; }
.footer-nav a:hover { color: var(--brand-blue); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; min-height: 82px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.3); font-size: .68rem; }
.footer-bottom p { margin: 0; }
.footer-bottom > div { display: flex; align-items: center; gap: 28px; }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom button { display: inline-flex; align-items: center; gap: 8px; padding: 0; border: 0; color: rgba(255,255,255,.55); background: none; font-size: .68rem; cursor: pointer; }
.footer-admin-link { color: inherit; text-decoration: none; }
.footer-admin-link:hover, .footer-admin-link:active { color: inherit; text-decoration: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-delay-1 { transition-delay: .1s; }.reveal-delay-2 { transition-delay: .2s; }.reveal-delay-3 { transition-delay: .3s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .section { padding: 110px 0; }
  .desktop-nav { gap: 20px; }
  .hero { min-height: 790px; padding-top: 155px; }
  .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 35px; }
  .hero h1 { font-size: clamp(3.6rem, 6.7vw, 5.2rem); }
  .flow-node { flex-basis: 91px; padding: 9px 7px; }
  .node-icon { display: none; }
  .system-stats div { padding: 7px; }
  .system-stats strong { font-size: .85rem; }
  .section-heading-wide, .section-heading-split { gap: 45px; }
  .service-card { min-height: 535px; padding: 27px; }
  .service-card ul { right: 27px; left: 27px; flex-wrap: wrap; }
  .solution-row { grid-template-columns: .8fr 1.2fr; gap: 30px; }
  .about-grid { gap: 65px; }
  .contact-grid { gap: 55px; }
  .contact-panel { padding: 30px; }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .desktop-nav, .header-cta { display: none; }
  .brand { font-size: 2.05rem; }
  .menu-toggle { display: block; margin-left: auto; }
  .hero { min-height: 0; padding-top: 145px; }
  .hero::before { background: linear-gradient(180deg, rgba(11,16,24,.45), var(--ink) 76%); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; padding-bottom: 20px; }
  .hero-visual { width: min(100%, 570px); margin: 20px auto 70px; transform: none; }
  .hero-glow { top: 300px; right: -200px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; justify-content: center; gap: 12px; padding: 24px 0; }
  .section-heading-wide, .section-heading-split { grid-template-columns: 1fr; gap: 30px; }
  .section-heading-wide > p, .section-heading-split > p { margin: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 460px; }
  .service-icon { width: min(100%, 370px); height: 120px; margin: 30px 0; }
  .service-card h3 { max-width: 420px; }
  .solution-row { grid-template-columns: 1fr; gap: 28px; padding: 50px 0; }
  .solution-preview { grid-column: auto; justify-self: start; width: 100%; margin-top: 8px; }
  .solutions-note { align-items: flex-start; flex-direction: column; }
  .about-grid { grid-template-columns: 1fr; }
  .about-sticky { position: static; }
  .about-content { padding-top: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { max-width: 630px; }
  .contact-panel { width: 100%; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 85px 0; }
  .header-inner { height: 74px; }
  .mobile-menu.open { height: calc(100vh - 73px); }
  .brand { font-size: 1.85rem; }
  .hero { padding-top: 120px; }
  .hero h1 { font-size: clamp(3.05rem, 14vw, 4.15rem); }
  .hero-lead { margin-top: 26px; font-size: .99rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 32px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { margin-top: 12px; margin-bottom: 55px; }
  .window-body { padding: 21px 14px 16px; }
  .flow-line { gap: 0; }
  .flow-node { flex: 0 0 83px; font-size: .52rem; }
  .system-stats { gap: 5px; }
  .system-stats span { font-size: .42rem; }
  .system-stats strong { font-size: .75rem; }
  .floating-pill { display: none; }
  .hero-capabilities { flex-wrap: wrap; gap: 10px; }
  .section-heading { margin-bottom: 45px; }
  .section-heading h2, .about h2 { font-size: clamp(2.65rem, 13vw, 3.65rem); }
  .section-heading-wide > p, .section-heading-split > p { font-size: .93rem; }
  .service-card { min-height: 510px; padding: 25px; }
  .service-card ul { right: 25px; left: 25px; }
  .service-card li { font-size: .52rem; }
  .solution-row { grid-template-columns: 1fr; gap: 22px; }
  .solution-content > p { font-size: .84rem; }
  .solution-preview { height: 190px; }
  .pos-layout { gap: 6px; padding: 8px; }
  .pos-products span { min-height: 64px; }
  .box-a { left: 10px; }.box-c { right: 10px; }
  .workflow-box { padding: 7px; font-size: .48rem; }
  .workflow-track { right: 30px; left: 30px; }
  .task-row { grid-template-columns: 20px 1fr; }
  .task-row em { display: none; }
  .solutions-note { gap: 28px; padding: 28px 24px; }
  .solutions-note .button { width: 100%; }
  .about-content .about-lead { font-size: 1.42rem; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 225px; }
  .contact-grid { gap: 55px; }
  .contact-copy h2 { font-size: clamp(3rem, 14vw, 4rem); }
  .contact-direct { margin-top: 40px; }
  .contact-panel { padding: 23px 17px; border-radius: 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .form-footer p { max-width: none; text-align: center; }
  .footer-main { grid-template-columns: 1fr; gap: 50px; padding: 60px 0; }
  .footer-nav { gap: 25px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 14px; padding: 24px 0; }
  .footer-bottom > div { width: 100%; justify-content: space-between; gap: 12px; }
}

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

@media (forced-colors: active) {
  .window-live i, .hero-capabilities i { forced-color-adjust: none; background: CanvasText; }
}

/* Legal page */
.legal-page { color: var(--white); background: var(--ink); }
.legal-header { border-bottom: 1px solid rgba(255,255,255,.1); background: #0b1018; }
.legal-header .header-inner { justify-content: space-between; }
.legal-back { color: rgba(255,255,255,.58); font-size: .78rem; font-weight: 600; }
.legal-back:hover { color: var(--brand-blue); }
.legal-main { padding: 105px 0 125px; }
.legal-layout { display: grid; grid-template-columns: .65fr 1.35fr; align-items: start; gap: 120px; }
.legal-layout aside { position: sticky; top: 50px; }
.legal-layout aside h1 { margin: 0; font-size: clamp(3rem, 5vw, 5.2rem); font-weight: 620; line-height: 1; letter-spacing: -.065em; }
.legal-layout aside h1 em { color: var(--brand-blue); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.legal-layout aside > p:last-child { margin-top: 34px; color: rgba(255,255,255,.35); font-size: .67rem; line-height: 1.6; }
.legal-content { max-width: 720px; }
.legal-intro { margin: 0 0 70px; color: rgba(255,255,255,.82); font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.45; letter-spacing: -.025em; }
.legal-content section { padding: 31px 0; border-top: 1px solid rgba(255,255,255,.11); }
.legal-content h2 { margin: 0 0 13px; font-size: 1.12rem; letter-spacing: -.025em; }
.legal-content section p { margin: 0; color: rgba(255,255,255,.52); font-size: .9rem; line-height: 1.78; }
.legal-content section a { color: var(--brand-blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-contact { display: flex; align-items: center; justify-content: space-between; margin-top: 50px; padding: 24px 26px; color: var(--ink); background: var(--brand-blue); border-radius: 12px; }
.legal-contact span { font-size: .82rem; }.legal-contact a { font-weight: 750; }
.legal-footer { border-top: 1px solid rgba(255,255,255,.1); background: #090e15; }
.legal-footer .container { display: flex; align-items: center; justify-content: space-between; min-height: 80px; color: rgba(255,255,255,.35); font-size: .67rem; }
.legal-footer p { margin: 0; }

@media (max-width: 860px) {
  .legal-main { padding: 80px 0 100px; }
  .legal-layout { grid-template-columns: 1fr; gap: 70px; }
  .legal-layout aside { position: static; }
}

@media (max-width: 560px) {
  .legal-header .brand { font-size: 1.7rem; }
  .legal-main { padding: 65px 0 80px; }
  .legal-layout { gap: 55px; }
  .legal-intro { margin-bottom: 50px; }
  .legal-contact { align-items: flex-start; flex-direction: column; gap: 8px; }
  .legal-footer .container { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; }
}
