:root {
  --red: #ef1717;
  --ink: #171717;
  --muted: #686868;
  --line: #deded9;
  --paper: #f4f4f0;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
a:not(.logo):not(.button):not(.card):not(.nav-cta) {
  transition: color 0.2s ease;
}
a:not(.logo):not(.button):not(.card):not(.nav-cta):hover {
  color: var(--red);
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  height: 84px;
  color: #fff;
  border-bottom: 1px solid #ffffff25;
}
.navigation {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
}
.logo-mark {
  width: 23px;
  height: 22px;
  position: relative;
  margin: -4px 0 0 5px;
}
.logo-mark i {
  position: absolute;
  background: var(--red);
}
.logo-mark i:first-child {
  width: 15px;
  height: 15px;
  left: 0;
  top: 0;
}
.logo-mark i:nth-child(2) {
  width: 6px;
  height: 6px;
  right: 0;
  top: 0;
}
.logo-mark i:last-child {
  width: 6px;
  height: 6px;
  right: 0;
  bottom: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
}
.nav-links > a {
  opacity: 0.8;
}
.nav-links > a:hover {
  opacity: 1;
  color: var(--red);
}
.nav-cta {
  padding: 12px 16px;
  border: 1px solid #ffffff70;
  opacity: 1 !important;
}
.nav-cta b {
  color: var(--red);
  margin-left: 16px;
}
.menu-button {
  display: none;
  background: none;
  border: 0;
}
.menu-button span {
  display: block;
  width: 25px;
  height: 1px;
  background: #fff;
  margin: 7px;
}
.hero {
  height: 100vh;
  min-height: 760px;
  max-height: 920px;
  position: relative;
  overflow: hidden;
  background: #181818;
  color: #fff;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(#fff2 1px, transparent 1px), linear-gradient(90deg, #fff2 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000, transparent 85%);
}
.hero-orbit {
  position: absolute;
  width: 650px;
  height: 650px;
  border: 1px solid #ef171766;
  border-radius: 50%;
  right: -120px;
  bottom: -250px;
  box-shadow:
    0 0 120px #ef17171c,
    inset 0 0 100px #ef171710;
}
.hero-orbit:before,
.hero-orbit:after {
  content: "";
  position: absolute;
  border: 1px solid #ffffff16;
  border-radius: 50%;
  inset: 90px;
}
.hero-orbit:after {
  inset: 185px;
  background: var(--red);
  opacity: 0.7;
}
.hero-layout {
  height: 100%;
  padding-top: 84px;
  display: grid;
  grid-template-columns: 1.6fr 0.55fr;
  gap: 90px;
  align-items: center;
  position: relative;
}
.slide {
  display: none;
  animation: slide-in 0.5s ease;
}
.slide.active {
  display: block;
}
@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font:
    600 12px "Courier New",
    monospace;
  letter-spacing: 1.6px;
  margin: 0 0 27px;
}
.eyebrow > span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--red);
}
.eyebrow.light {
  color: #c5c5c5;
}
h1 {
  font-size: clamp(48px, 5.1vw, 78px);
  line-height: 1.02;
  letter-spacing: -4px;
  font-weight: 600;
  margin: 0;
  max-width: 890px;
}
.lead {
  max-width: 650px;
  color: #bbb;
  font-size: 20px;
  line-height: 1.6;
  margin: 28px 0 37px;
}
.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 21px;
  border: 1px solid transparent;
  font-size: 14px;
  cursor: pointer;
}
.button span {
  margin-left: 33px;
}
.primary {
  background: var(--red);
  color: #fff;
}
.primary:hover {
  background: #d40b0b;
}
.secondary {
  border-color: #555;
}
.secondary:hover {
  border-color: #fff;
}
.principles {
  border-left: 1px solid #ffffff28;
}
.principles div {
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 23px;
  border-bottom: 1px solid #ffffff28;
}
.principles strong {
  color: var(--red);
  font-size: 22px;
  min-width: 54px;
}
.principles span {
  color: #aaa;
  font-size: 13px;
}
.slide-nav {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  color: #888;
  font:
    12px "Courier New",
    monospace;
}
.dots {
  display: flex;
  gap: 8px;
}
.dots button {
  border: 0;
  background: #555;
  width: 34px;
  height: 2px;
  padding: 0;
  cursor: pointer;
}
.dots button.active {
  background: var(--red);
}
.section {
  padding: 120px 0;
}
h2 {
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.08;
  letter-spacing: -3px;
  font-weight: 600;
  margin: 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 110px;
}
.intro-copy {
  padding-top: 42px;
  color: #555;
  font-size: 18px;
  line-height: 1.75;
}
.intro-copy p {
  margin: 0 0 22px;
}
.meaning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border-block: 1px solid var(--line);
}
.meaning-grid article {
  display: flex;
  gap: 24px;
  padding: 43px 32px 43px 0;
  border-right: 1px solid var(--line);
}
.meaning-grid article + article {
  padding-left: 32px;
}
.meaning-grid article:last-child {
  border: 0;
}
.meaning-grid article > b {
  font:
    600 24px "Courier New",
    monospace;
  color: #999;
}
.meaning-grid .red {
  color: var(--red);
}
.meaning-grid h3 {
  font-size: 19px;
  margin: 2px 0 13px;
}
.meaning-grid p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.muted-section {
  background: var(--paper);
}
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 65px;
}
.section-heading > p {
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.service-list {
  border-top: 1px solid #c9c9c4;
}
.service-list article {
  border-bottom: 1px solid #c9c9c4;
}
.service-toggle {
  appearance: none;
  width: 100%;
  display: grid;
  grid-template-columns: 65px 1fr 1.25fr 28px;
  gap: 35px;
  align-items: center;
  padding: 29px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.service-list article:hover,
.service-list article:focus-within,
.service-list article.is-open {
  background: #fff;
}
.service-toggle:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}
.service-number {
  width: 100%;
  text-align: center;
  font:
    12px "Courier New",
    monospace;
  color: #999;
}
.service-title {
  font-size: 22px;
  font-weight: 700;
}
.service-summary {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.service-toggle[aria-expanded="true"] .service-summary {
  visibility: hidden;
}
.service-icon {
  position: relative;
  width: 18px;
  height: 18px;
  color: var(--red);
}
.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 1px;
  width: 16px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease;
}
.service-icon::after {
  transform: rotate(90deg);
}
.service-toggle[aria-expanded="true"] .service-icon::after {
  transform: rotate(0deg);
}
.service-details-inner {
  max-width: 880px;
  padding: 0 55px 26px 100px;
}
.service-details-inner p {
  margin: 0 0 14px;
  color: var(--ink);
  line-height: 1.7;
}
.service-details-inner ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}
.service-details-inner li {
  margin: 8px 0;
  padding-left: 5px;
  line-height: 1.6;
}
.dark-section {
  background: #1b1b1b;
  color: #fff;
}
.expertise-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 120px;
}
.expertise-copy {
  color: #aaa;
  line-height: 1.8;
  max-width: 450px;
  margin-top: 30px;
}
.expertise-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.expertise-lists h3 {
  font:
    12px "Courier New",
    monospace;
  letter-spacing: 2px;
  color: #777;
  margin: 0 0 10px;
}
.expertise-lists p {
  border-bottom: 1px solid #3d3d3d;
  padding: 15px 0;
  margin: 0;
}
.expertise-lists p span {
  font:
    10px "Courier New",
    monospace;
  color: #666;
  margin-right: 22px;
}
.products-section {
  background: #f1f0eb;
}
.product-heading {
  margin-bottom: 50px;
}
.product-feature {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 34px 38px;
  border-block: 1px solid #c9c9c4;
  background: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.product-feature:hover {
  background: #fafafa;
  transform: translateY(-2px);
}
.product-feature + .product-feature { border-top:0; }
.product-feature-crm .product-kicker { color:#39715c; }
.product-feature-crm .product-tags span::before { color:#39715c; }
.product-identity {
  padding-right: 30px;
  border-right: 1px solid var(--line);
}
.product-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font: 11px "Courier New", monospace;
  letter-spacing: 1.6px;
}
.product-identity h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -1.5px;
}
.product-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}
.product-tags {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}
.product-tags span::before {
  content: "+";
  color: var(--red);
  margin-right: 8px;
}
.product-feature > strong {
  white-space: nowrap;
  font-size: 13px;
}
.product-feature > strong b {
  color: var(--red);
  margin-left: 14px;
}
.product-engagement {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
  align-items: center;
  padding: 28px 38px;
  background: #1b1b1b;
  color: #fff;
}
.product-engagement div { display:flex; flex-direction:column; gap:10px; }
.product-engagement small { color:#999; font:9px "Courier New",monospace; letter-spacing:1.4px; }
.product-engagement strong { font-size:18px; line-height:1.45; }
.product-engagement p { margin:0; color:#bbb; font-size:13px; line-height:1.7; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  border: 1px solid var(--line);
  transition: 0.25s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px #00000015;
}
.card:hover .card-copy h3,
.card:hover .card-copy strong {
  color: var(--red);
}
.card-art {
  height: 218px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  background: #202020;
  color: #fff;
  font:
    12px "Courier New",
    monospace;
}
.card-art:before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid #ffffff28;
  right: -40px;
  bottom: -50px;
  transform: rotate(45deg);
}
.card-art b {
  position: absolute;
  right: 12px;
  bottom: -40px;
  font-size: 130px;
  color: #ffffff0e;
}
.card-copy {
  padding: 27px;
}
.card-copy small {
  font:
    10px "Courier New",
    monospace;
  color: #777;
}
.card-copy h3 {
  font-size: 23px;
  line-height: 1.3;
  margin: 19px 0 13px;
}
.card-copy p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}
.card-copy strong {
  display: block;
  margin-top: 28px;
  font-size: 13px;
}
.center {
  text-align: center;
  margin-top: 52px;
}
.text-link {
  font-size: 14px;
  border-bottom: 1px solid;
  padding-bottom: 7px;
}
.text-link span {
  color: var(--red);
  margin-left: 16px;
}
.contact-section {
  background: #202020;
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 125px;
}
.contact-intro {
  color: #aaa;
  font-size: 17px;
  line-height: 1.75;
  margin: 28px 0 48px;
}
.contact-grid dl {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px 18px;
}
.contact-grid dt {
  font:
    10px "Courier New",
    monospace;
  letter-spacing: 1.4px;
  color: #777;
}
.contact-grid dd {
  margin: 0;
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
}
.contact-form {
  background: #fff;
  color: #222;
  padding: 47px;
}
.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 23px;
}
.contact-form em {
  font-style: normal;
  color: #999;
  font-weight: 400;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #ccc;
  padding: 12px 0;
  outline: 0;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}
.contact-form .button {
  border: 0;
}
.form-note {
  color: #888;
  font-size: 11px;
  line-height: 1.5;
}
footer {
  background: #111;
  color: #fff;
  padding: 62px 0 24px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  padding-bottom: 52px;
}
.footer-main p {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}
.top-link {
  width: 44px;
  height: 44px;
  border: 1px solid #444;
  display: grid;
  place-items: center;
}
.footer-meta {
  border-top: 1px solid #333;
  padding-top: 21px;
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 11px;
}
.article-header {
  position: static;
  background: #171717;
}
.article-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: "Century Gothic", "Avenir Next", Avenir, "Trebuchet MS", Arial, sans-serif;
  font-size: 13px;
}
.article-nav a {
  color: var(--ink);
  padding: 10px 0;
}
.article-nav a:hover {
  color: var(--red);
}
.article-nav span {
  color: var(--red);
  margin-left: 8px;
}
.article-masthead {
  background: var(--paper);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 64px;
  align-items: center;
  padding: 64px max(24px, calc((100% - 1180px) / 2));
}
.article-hero {
  padding: 0;
}
.article-hero .container {
  width: auto;
  margin: 0;
}
.article-hero .back {
  font:
    12px "Courier New",
    monospace;
  color: #777;
}
.article-hero h1 {
  color: var(--ink);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.07;
  letter-spacing: -3px;
  max-width: 700px;
  margin: 30px 0 22px;
}
.article-meta {
  color: #777;
  font:
    12px/1.7 "Courier New",
    monospace;
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 76px 24px 120px;
  font-size: 18px;
  line-height: 1.8;
}
.article-body .standfirst {
  font-size: 24px;
  line-height: 1.55;
  color: #444;
}
.article-body h2 {
  font-size: 34px;
  letter-spacing: -1.5px;
  margin: 58px 0 18px;
}
.article-body blockquote {
  border-left: 3px solid var(--red);
  margin: 40px 0;
  padding: 10px 0 10px 28px;
  font-size: 24px;
  line-height: 1.5;
}
.article-index {
  min-height: 70vh;
}
.article-list {
  border-top: 1px solid var(--line);
  margin-top: 60px;
}
.article-list a {
  display: grid;
  grid-template-columns: 70px 1fr 1fr 30px;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.article-list small {
  width: 100%;
  text-align: center;
  font:
    11px "Courier New",
    monospace;
  color: #999;
}
.article-list h2 {
  font-size: 26px;
  letter-spacing: -1px;
}
.article-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.article-list b {
  color: var(--red);
}
.article-list a:hover h2 {
  color: var(--red);
}
.product-hero { background:#f4f4f0; padding:90px 0 85px; }
.product-hero-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:center; }
.product-back { display:inline-block; margin-bottom:55px; color:#777; font:11px "Courier New",monospace; letter-spacing:1.2px; }
.product-hero h1 { color:var(--ink); font-size:clamp(48px,5vw,72px); }
.product-hero .lead { color:var(--muted); margin-bottom:28px; }
.product-chips { display:flex; flex-wrap:wrap; gap:8px; }
.product-chips span { padding:8px 11px; border:1px solid #c9c9c4; background:#fff; font-size:11px; }
.product-hero-panel { display:grid; grid-template-columns:.86fr 1.14fr; min-height:480px; border:1px solid #b9c9dc; background:#dfefff; overflow:hidden; }
.platform-core { display:flex; flex-direction:column; justify-content:center; padding:46px; background:#172033; color:#fff; position:relative; }
.platform-core::after { content:""; position:absolute; width:150px; height:150px; border:1px solid #ffffff26; border-radius:50%; right:-75px; bottom:-45px; box-shadow:0 0 0 48px #ffffff09; }
.platform-core small { color:#a8bdd6; font:10px "Courier New",monospace; letter-spacing:1.4px; }
.platform-core strong { margin:28px 0 24px; font-size:clamp(54px,5vw,78px); line-height:.82; letter-spacing:-5px; }
.platform-core p { margin:0; color:#c4d2e3; font-size:12px; line-height:1.6; }
.platform-outcomes { display:flex; flex-direction:column; justify-content:center; padding:30px 38px; background:#fff; }
.platform-outcomes > div { display:grid; grid-template-columns:34px 1fr; gap:17px; align-items:start; padding:28px 0; border-bottom:1px solid var(--line); }
.platform-outcomes > div:last-child { border-bottom:0; }
.platform-outcomes b { color:var(--red); font:11px "Courier New",monospace; }
.platform-outcomes span { display:flex; flex-direction:column; gap:7px; }
.platform-outcomes strong { font-size:18px; }
.platform-outcomes small { color:var(--muted); font-size:12px; line-height:1.5; }
.product-architecture img { display:block; width:100%; height:auto; }
.pos-showcase { min-height:590px; position:relative; overflow:hidden; border:1px solid #c9c9c4; background:#1b1b1b; isolation:isolate; }
.pos-showcase::before { content:""; position:absolute; inset:0; opacity:.15; background-image:linear-gradient(#fff 1px,transparent 1px),linear-gradient(90deg,#fff 1px,transparent 1px); background-size:46px 46px; }
.pos-glow { position:absolute; width:430px; height:430px; right:-70px; top:70px; border-radius:50%; background:#ef1717; opacity:.22; filter:blur(2px); }
.pos-device { position:absolute; width:260px; padding:14px 13px 25px; border-radius:26px 26px 36px 36px; background:linear-gradient(145deg,#f6f6f4,#bababa); box-shadow:0 28px 55px #0008, inset 0 0 0 1px #fff9; }
.pos-device::after { content:""; display:block; width:38px; height:3px; margin:17px auto 0; border-radius:2px; background:#777; }
.pos-device-back { left:48px; top:54px; transform:rotate(-7deg); opacity:.86; }
.pos-device-front { right:48px; top:110px; transform:rotate(6deg); z-index:2; }
.pos-speaker { width:42px; height:4px; margin:0 auto 11px; border-radius:3px; background:#777; }
.pos-screen { overflow:hidden; border:5px solid #252525; border-radius:9px; background:#111; aspect-ratio:9/16; }
.pos-screen img { display:block; width:100%; height:100%; object-fit:cover; }
.pos-keypad { display:flex; justify-content:center; gap:14px; margin-top:14px; }
.pos-keypad i { width:17px; height:17px; border-radius:50%; background:#999; box-shadow:inset 0 1px 2px #555; }
.pos-keypad i:first-child { background:#d75454; }
.pos-keypad i:last-child { background:#5c9a68; }
.pos-showcase-label { position:absolute; z-index:4; left:33px; bottom:27px; display:flex; flex-direction:column; gap:5px; padding:15px 18px; border-left:3px solid var(--red); background:#171717e8; color:#fff; }
.pos-showcase-label small { color:#aaa; font:9px "Courier New",monospace; letter-spacing:1.4px; }
.pos-showcase-label strong { font-size:20px; }
.pos-showcase-label span { color:#aaa; font-size:11px; }
.product-intro-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:110px; }
.product-intro-copy { padding-top:40px; color:var(--muted); font-size:18px; line-height:1.75; }
.product-intro-copy p:first-child { margin-top:0; color:var(--ink); font-size:22px; }
.compact-heading { margin-bottom:48px; }
.product-capabilities { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid #c9c9c4; border-left:1px solid #c9c9c4; }
.product-capabilities article { min-height:230px; padding:30px; border-right:1px solid #c9c9c4; border-bottom:1px solid #c9c9c4; background:#fff; }
.product-capabilities small { color:var(--red); font:10px "Courier New",monospace; letter-spacing:1px; }
.product-capabilities h3 { margin:35px 0 12px; font-size:21px; }
.product-capabilities p { margin:0; color:var(--muted); font-size:14px; line-height:1.65; }
.product-architecture { margin:0; padding:24px; border:1px solid var(--line); }
.light-architecture { padding:42px; border:1px solid #c9c9c4; background:#f4f4f0; }
.architecture-tier { padding:24px 28px; border:1px solid #c9c9c4; background:#fff; }
.architecture-tier > small { display:block; margin-bottom:18px; color:#777; font:10px "Courier New",monospace; letter-spacing:1.5px; }
.architecture-tier > div { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.architecture-tier span { padding:18px; border:1px solid var(--line); text-align:center; font-weight:700; font-size:14px; }
.architecture-tier span em { display:inline-block; margin-top:7px; color:var(--muted); font-size:10px; font-style:normal; font-weight:400; }
.architecture-experiences span:first-child { background:#ffe6eb; }
.architecture-experiences span:nth-child(2) { background:#dfefff; }
.architecture-experiences span:last-child { border-style:dashed; color:#777; }
.architecture-terminals span { background:#fff; }
.architecture-core { padding:34px; background:#172033; color:#fff; text-align:center; }
.architecture-core small { display:block; margin-bottom:12px; color:#9db2ca; font:10px "Courier New",monospace; letter-spacing:1.5px; }
.architecture-core strong { display:block; font-size:30px; }
.architecture-core p { margin:11px 0 0; color:#c0cede; font-size:13px; }
.architecture-connector { height:64px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:5px; color:#888; }
.architecture-connector i { width:1px; flex:1; background:#9aa8b7; }
.architecture-connector b { font:9px "Courier New",monospace; letter-spacing:1.3px; }
.flavour-boundary { display:grid; grid-template-columns:1fr 1fr; margin-top:22px; border:1px solid #c9c9c4; }
.flavour-boundary > div { padding:28px; background:#fff; }
.flavour-boundary > div:first-child { border-right:1px solid #c9c9c4; }
.flavour-boundary small { display:block; margin-bottom:14px; color:#777; font:10px "Courier New",monospace; letter-spacing:1.3px; }
.flavour-boundary strong { display:block; font-size:20px; line-height:1.45; }
.flavour-boundary p { margin:13px 0 0; color:var(--muted); font-size:13px; line-height:1.65; }
.flavour-boundary .apk-result { background:#dff5eb; }
.flavour-boundary .apk-result small { color:#39715c; }
.architecture-layout { display:grid; grid-template-columns:1fr .9fr 1fr; gap:22px; align-items:stretch; }
.architecture-note { display:flex; flex-direction:column; justify-content:center; padding:34px; border:1px solid #c9c9c4; background:#fff; }
.architecture-note small { display:block; margin-bottom:18px; color:#777; font:10px "Courier New",monospace; letter-spacing:1.3px; }
.architecture-note strong { display:block; font-size:22px; line-height:1.45; }
.architecture-note p { margin:16px 0 0; color:var(--muted); font-size:13px; line-height:1.7; }
.architecture-note.apk-result { background:#dff5eb; }
.architecture-note.apk-result small { color:#39715c; }
.component-diagram { display:flex; flex-direction:column; align-items:center; justify-content:center; min-height:410px; padding:26px 22px; border:1px solid #b9c9dc; background:#f4f4f0; text-align:center; }
.component-diagram > i { width:1px; height:26px; background:#8d9bac; }
.component-diagram > small { padding:6px 0; color:#777; font:8px "Courier New",monospace; letter-spacing:1px; }
.diagram-customers { display:grid; grid-template-columns:1fr 1fr; gap:7px; width:100%; }
.diagram-devices { display:grid; grid-template-columns:repeat(3,1fr); gap:5px; width:100%; }
.diagram-customers span,.diagram-devices span { padding:11px 7px; border:1px solid #c9c9c4; background:#fff; font-size:11px; font-weight:700; }
.diagram-customers span:first-child { background:#ffe6eb; }
.diagram-customers span:last-child { background:#dfefff; }
.diagram-core { width:100%; padding:24px 14px; background:#172033; color:#fff; }
.diagram-core b { display:block; color:#9db2ca; font:9px "Courier New",monospace; letter-spacing:1.2px; }
.diagram-core strong { display:block; margin:10px 0 8px; font-size:19px; }
.diagram-core span { color:#c0cede; font-size:9px; }
.product-flow { display:flex; justify-content:center; flex-wrap:wrap; gap:15px; margin-top:24px; padding:22px; background:#1b1b1b; color:#fff; font-size:13px; }
.product-flow span { color:var(--red); }
.product-cta-grid { display:grid; grid-template-columns:1.2fr .8fr; gap:100px; align-items:end; }
.product-cta-grid p:not(.eyebrow) { color:#aaa; line-height:1.7; margin:0 0 25px; }
.crm-hero { padding:90px 0 95px; overflow:hidden; background:#f4f4f0; }
.crm-hero-grid { display:grid; grid-template-columns:.82fr 1.18fr; gap:70px; align-items:center; }
.crm-hero h1 { color:var(--ink); font-size:clamp(48px,5vw,72px); }
.crm-hero .lead { color:var(--muted); }
.crm-showcase { min-height:590px; position:relative; }
.crm-showcase::before { content:""; position:absolute; inset:45px 0 0 60px; background:#dff5eb; border:1px solid #b8d8ca; }
.crm-browser { position:absolute; overflow:hidden; border:1px solid #bcbcb7; border-radius:9px; background:#fff; box-shadow:0 24px 55px #0002; }
.crm-browser img { display:block; width:100%; height:100%; object-fit:cover; object-position:top left; }
.crm-browser-bar { height:31px; display:flex; align-items:center; gap:6px; padding:0 10px; background:#1b1b1b; color:#aaa; font-size:9px; }
.crm-browser-bar i { width:6px; height:6px; border-radius:50%; background:#666; }
.crm-browser-bar i:first-child { background:var(--red); }
.crm-browser-bar span { margin-left:8px; }
.crm-browser-back { width:78%; height:350px; right:0; top:45px; transform:rotate(2deg); }
.crm-browser-front { width:83%; height:330px; left:0; bottom:30px; transform:rotate(-2deg); z-index:2; }
.crm-auth-card { position:absolute; z-index:4; right:12px; bottom:0; width:235px; padding:20px; background:#171717; color:#fff; box-shadow:0 16px 35px #0004; }
.crm-auth-card small { color:#999; font:9px "Courier New",monospace; letter-spacing:1.2px; }
.crm-auth-card strong { display:block; margin:10px 0 14px; font-size:18px; }
.crm-auth-card span { display:block; margin-top:7px; padding:8px 10px; border:1px solid #ffffff30; font-size:11px; }
.crm-capabilities { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid #c9c9c4; border-left:1px solid #c9c9c4; }
.crm-capabilities article { min-height:225px; padding:28px; border-right:1px solid #c9c9c4; border-bottom:1px solid #c9c9c4; background:#fff; }
.crm-capabilities small { color:#39715c; font:10px "Courier New",monospace; letter-spacing:1px; }
.crm-capabilities h3 { margin:32px 0 12px; font-size:20px; }
.crm-capabilities p { margin:0; color:var(--muted); font-size:13px; line-height:1.65; }
.crm-efficiency-section { background:#172033; color:#fff; }
.crm-efficiency-grid { display:grid; grid-template-columns:.82fr 1.18fr; gap:100px; align-items:center; }
.crm-efficiency-grid > div:first-child > p:not(.eyebrow) { max-width:520px; color:#b7c4d4; line-height:1.8; }
.crm-runtime { display:grid; grid-template-columns:1fr auto 1fr auto 1fr; gap:14px; align-items:center; }
.crm-runtime > div { min-height:160px; display:flex; flex-direction:column; justify-content:center; padding:22px; border:1px solid #ffffff25; background:#ffffff0a; }
.crm-runtime small { color:#91a8c2; font:9px "Courier New",monospace; letter-spacing:1px; }
.crm-runtime strong { margin-top:18px; font-size:18px; }
.crm-runtime > span { color:var(--red); }
.crm-gallery { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.crm-gallery figure { margin:0; border:1px solid var(--line); background:#fff; }
.crm-gallery figure:first-child { grid-row:span 2; }
.crm-gallery img { display:block; width:100%; height:300px; object-fit:cover; object-position:top left; }
.crm-gallery figure:first-child img { height:650px; }
.crm-gallery figcaption { padding:16px 18px; color:var(--muted); font-size:12px; line-height:1.5; }
.crm-gallery-four figure:first-child { grid-row:auto; }
.crm-gallery-four figure:first-child img { height:300px; }
.crm-gallery-four .crm-invoice-preview img { height:520px; object-fit:contain; object-position:center top; background:#f4f4f0; }
@media (max-width: 900px) {
  .section {
    padding: 85px 0;
  }
  .site-header {
    height: 72px;
  }
  .menu-button {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #171717;
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open {
    display: flex;
  }
  .hero {
    height: auto;
    min-height: 770px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 135px;
    align-content: center;
  }
  .principles {
    display: none;
  }
  .intro-grid,
  .section-heading,
  .expertise-grid,
  .contact-grid,
  .product-feature {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .product-feature {
    gap: 24px;
    padding: 30px;
  }
  .product-engagement {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 30px;
  }
  .product-identity {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .meaning-grid,
  .cards {
    grid-template-columns: 1fr;
  }
  .meaning-grid article {
    border-right: 0;
    padding: 30px 0 !important;
  }
  .expertise-lists {
    gap: 30px;
  }
  .service-toggle {
    grid-template-columns: 45px 1fr 20px;
  }
  .service-summary {
    grid-column: 2;
  }
  .service-icon {
    grid-column: 3;
    grid-row: 1;
  }
  .service-details-inner {
    padding: 0 35px 22px 69px;
  }
  .article-list a {
    grid-template-columns: 40px 1fr 20px;
  }
  .article-list p {
    grid-column: 2;
  }
  .article-list b {
    grid-column: 3;
    grid-row: 1;
  }
  .product-hero-grid,.product-intro-grid,.product-cta-grid { grid-template-columns:1fr; gap:45px; }
  .crm-hero-grid,.crm-efficiency-grid { grid-template-columns:1fr; gap:50px; }
  .crm-capabilities { grid-template-columns:1fr 1fr; }
  .crm-runtime { grid-template-columns:1fr; }
  .crm-runtime > span { text-align:center; transform:rotate(90deg); }
  .product-hero-panel { min-height:420px; }
  .pos-showcase { min-height:610px; }
  .product-capabilities { grid-template-columns:1fr 1fr; }
  .architecture-layout { grid-template-columns:1fr; }
  .component-diagram { min-height:360px; }
  .contact-form {
    padding: 32px;
  }
}
@media (max-width: 600px) {
  .container {
    width: calc(100% - 32px);
  }
  h1 {
    font-size: 44px;
    letter-spacing: -2.5px;
  }
  .lead {
    font-size: 17px;
  }
  .meaning-grid {
    margin-top: 52px;
  }
  .expertise-lists,
  .form-row {
    grid-template-columns: 1fr;
  }
  .product-capabilities { grid-template-columns:1fr; }
  .crm-capabilities,.crm-gallery { grid-template-columns:1fr; }
  .crm-gallery figure:first-child { grid-row:auto; }
  .crm-gallery figure:first-child img { height:420px; }
  .crm-showcase { min-height:500px; }
  .crm-browser-back { width:90%; height:285px; }
  .crm-browser-front { width:92%; height:270px; }
  .crm-auth-card { right:0; width:220px; }
  .product-hero { padding:55px 0 65px; }
  .product-back { margin-bottom:38px; }
  .product-hero-panel { grid-template-columns:1fr; min-height:0; }
  .platform-core { min-height:280px; }
  .pos-showcase { min-height:525px; }
  .pos-device { width:205px; }
  .pos-device-back { left:25px; top:42px; }
  .pos-device-front { right:24px; top:88px; }
  .pos-showcase-label { left:18px; right:18px; bottom:18px; }
  .light-architecture { padding:20px; }
  .architecture-tier > div { grid-template-columns:1fr; }
  .flavour-boundary { grid-template-columns:1fr; }
  .flavour-boundary > div:first-child { border-right:0; border-bottom:1px solid #c9c9c4; }
  .architecture-layout { grid-template-columns:1fr; }
  .component-diagram { min-height:360px; }
  .contact-form {
    padding: 26px 22px;
  }
  .footer-main {
    grid-template-columns: 1fr auto;
    gap: 25px;
  }
  .footer-main p {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .footer-meta {
    display: grid;
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .slide {
    animation: none;
  }
  .card,
  .service-list article {
    transition: none;
  }
}

/* Official registered wordmark */
.site-header {
  background: #fff;
  color: var(--ink);
  border-bottom: 1px solid #e6e6e2;
}
.logo {
  font-size: 0;
  letter-spacing: 0;
  width: 164px;
  height: 56px;
  background: url("../images/wittorz-r.svg") center/contain no-repeat;
}
.logo-mark {
  display: none;
}
.site-header .nav-cta {
  border-color: #c8c8c3;
}
.menu-button span {
  background: var(--ink);
}
.footer-main .logo {
  background-color: #fff;
  background-size: 150px;
  width: 170px;
  height: 56px;
}
@media (max-width: 900px) {
  .nav-links {
    color: #fff;
  }
  .site-header .nav-cta {
    border-color: #ffffff70;
  }
  .logo {
    width: 145px;
    height: 48px;
  }
}

/* Brand typography: Century Gothic echoes the registered wordmark. */
h1,
h2,
h3,
.nav-links,
.button {
  font-family: "Century Gothic", "Avenir Next", Avenir, "Trebuchet MS", Arial, sans-serif;
}
h1,
h2 {
  font-weight: 600;
}

/* Reversed official wordmark for the dark footer. */
.footer-main .logo {
  background-color: transparent;
  background-image: url("../images/wittorz-r-footer.svg");
  filter: none;
  opacity: 1;
}
.cover-art {
  padding: 0;
  background: #171717;
}
.cover-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.cover-art span {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  background: #171717;
  color: #fff;
  padding: 7px 9px;
}
.article-cover {
  width: 100%;
  height: clamp(230px, 25vw, 320px);
  margin: 0;
  background: #171717 center/cover no-repeat;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--red);
  box-shadow: 0 18px 45px #00000014;
}
.article-cover:after {
  content: "WITTORZ / INSIGHTS";
  position: absolute;
  left: 28px;
  bottom: 25px;
  color: #fff;
  font:
    600 11px "Courier New",
    monospace;
  letter-spacing: 2px;
  background: #171717cc;
  padding: 10px 12px;
  border-left: 3px solid var(--red);
}
.article-body figcaption {
  color: #777;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 11px;
  text-align: center;
}
.article-body figure img {
  max-height: 440px;
  object-fit: contain;
}
@media (max-width: 900px) {
  .article-masthead {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 54px 24px;
  }
  .article-hero h1 {
    max-width: 760px;
  }
  .article-cover {
    height: clamp(220px, 52vw, 340px);
  }
}
@media (max-width: 600px) {
  .article-masthead {
    gap: 28px;
    padding: 40px 16px;
  }
  .article-hero h1 {
    font-size: 38px;
    letter-spacing: -2px;
    margin: 24px 0 18px;
  }
  .article-cover {
    height: 205px;
  }
  .article-cover:after {
    left: 18px;
    bottom: 16px;
  }
}

/* Compact, consistent article index rows. */
.article-list a {
  padding: 20px 0;
  gap: 22px;
}
.article-list h2 {
  font-size: 23px;
  line-height: 1.22;
}
.article-list p {
  margin: 0;
  line-height: 1.45;
}
.article-list b {
  font-size: 0;
  text-align: right;
}
.article-list b::after {
  content: "→";
  font:
    600 16px "Century Gothic",
    "Avenir Next",
    Arial,
    sans-serif;
  color: var(--red);
}
@media (max-width: 900px) {
  .article-list a {
    padding: 17px 0;
    gap: 15px;
  }
  .article-list h2 {
    font-size: 21px;
  }
}

/* More compact service rows. */
.service-toggle {
  padding: 20px 0;
}
.service-summary {
  line-height: 1.45;
}
@media (max-width: 900px) {
  .service-toggle {
    padding: 17px 0;
    gap: 12px 24px;
  }
}
