@font-face {
  font-family: Poppins;
  src: url("assets/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("assets/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
/* Shared surfaces, typography, accents and interaction states. */
:root {
  --surface-dark: #101112;
  --surface-dark-raised: #191b1f;
  --surface-dark-deep: #0c0e11;
  --surface-light: #f5f6f7;
  --surface-tint: #e8f0f8;
  --surface-white: #ffffff;
  --surface-subtle: #e9edf2;
  --text-on-dark: #f6f7f8;
  --text-secondary-dark: #c2cad3;
  --text-muted-dark: #adb7c3;
  --text-on-light: #191b1f;
  --text-secondary-light: #505d6d;
  --text-muted-light: #586676;
  --accent-soft: #43a6ff;
  --accent-strong: #1264db;
  --action: #1463e8;
  --action-hover: #0b4fc4;
  --focus: #2879e8;
  --line-dark: #2e4661;
  --line-dark-strong: #78899e;
  --line-light: #c8d8ed;
  --line-tint: #a8c5e8;
  --success-surface: #e9f5ef;
  --success-text: #327658;
  --success-mark: #3b956c;
  --header-surface: rgba(16, 17, 18, 0.94);
  --separator-blue: #389cff;
  --separator-fade: rgba(56, 156, 255, 0.18);
  --separator-mid: rgba(56, 156, 255, 0.65);
  --separator-header: linear-gradient(90deg, transparent, var(--separator-fade) 18%, var(--separator-blue) 50%, var(--separator-fade) 82%, transparent);
  --separator-section: linear-gradient(90deg, transparent, var(--separator-fade) 18%, var(--separator-mid) 50%, var(--separator-fade) 82%, transparent);
  --hero-edge-left: rgba(40, 95, 146, 0.38);
  --hero-edge-left-fade: rgba(40, 95, 146, 0.16);
  --hero-edge-right: rgba(131, 186, 240, 0.2);
  --hero-edge-right-fade: rgba(131, 186, 240, 0.08);
  --shadow-color: #00000030;
  --shadow-soft: #10111212;
  --media-scrim: #00000022;
  --dialog-scrim: #080c12ba;
  --type-edge-light: #78818f;
  --type-edge-dark: #252e3c;
  --type-edge-blue: #416f9f;
  --type-depth-blue: #1a354f;
  --bg: var(--surface-dark);
  --ink: var(--text-on-dark);
  --muted: var(--text-muted-dark);
  --blue: var(--action);
  --cyan: var(--focus);
  --line: var(--line-dark);
  --paper: var(--surface-light);
  --dark: var(--text-on-light);
  --gutter: 64px;
  --max: 1160px;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--bg);
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font:
    15px/1.65 Poppins,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
}
svg.lucide {
  width: 18px;
  height: 18px;
  stroke-width: 1.6;
  flex: none;
}
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 6px;
}
::selection {
  background: var(--action);
  color: var(--surface-white);
}
.container {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 24px;
  padding: 12px 20px;
  background: var(--surface-white);
  color: var(--text-on-light);
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.header {
  height: 72px;
  position: sticky;
  top: 0;
  background: var(--header-surface);
  backdrop-filter: blur(16px);
  z-index: 30;
  border-bottom: 1px solid var(--separator-blue);
  border-image: var(--separator-header) 1;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.brand-symbol {
  display: block;
  flex-shrink: 0;
  width: 36px;
  height: 38px;
  position: relative;
  overflow: hidden;
}
.brand-symbol img {
  position: absolute;
  width: 58px;
  max-width: none;
  left: -11px;
  top: -5px;
}
.brand-name {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 600;
}
.brand-name > span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 5px;
}
.navigation {
  display: flex;
  gap: 30px;
  font-size: 15px;
  color: var(--text-secondary-dark);
}
.navigation a {
  padding-block: 12px;
  white-space: nowrap;
  transition: color 0.2s;
}
.navigation a:hover {
  color: var(--accent-soft);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  border-bottom: 1px solid var(--line-dark);
  padding-block: 8px;
}
.header-cta:hover {
  border-color: var(--accent-soft);
  color: var(--accent-soft);
}
.icon-button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--muted);
}
.back-to-top {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 25;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--accent-soft);
  border-radius: 6px;
  background: var(--blue);
  color: var(--surface-white);
  box-shadow: 0 4px 16px var(--shadow-color);
  transition: background 0.2s;
}
.back-to-top[hidden] {
  display: none;
}
.back-to-top:hover {
  background: var(--action-hover);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}
.back-to-top:focus-visible {
  outline: 2px solid var(--surface-white);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--action);
}
@media (max-width: 540px) {
  .back-to-top {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
  }
}
.menu-button {
  display: none;
}
.hero {
  height: calc(100svh - 124px);
  min-height: 690px;
  max-height: 830px;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(
      ellipse 50% 82% at -12% 20%,
      var(--hero-edge-left) 0%,
      var(--hero-edge-left-fade) 40%,
      transparent 90%
    ),
    radial-gradient(
      ellipse 42% 78% at 112% 90%,
      var(--hero-edge-right) 0%,
      var(--hero-edge-right-fade) 40%,
      transparent 90%
    );
}
.hero-copy {
  text-align: center;
  padding-top: 46px;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.hero-copy a {
  pointer-events: auto;
}
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.5;
}
.hero .eyebrow {
  justify-content: center;
  color: var(--text-muted-dark);
}
.blue-dot,
.green-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: inline-block;
  flex: none;
}
.hero h1 {
  font-size: 56px;
  line-height: 1.14;
  margin: 20px 0 18px;
}
.hero h1 > .title-line--accent {
  color: var(--accent-soft);
}
.depth-title {
  --title-back-drift: 12px;
  --title-front-drift: 18px;
  --title-lift: 3px;
}
.title-line {
  display: block;
  transform-origin: 50% 50%;
  text-shadow:
    0 1px 0 var(--type-edge-light),
    0 2px 0 var(--type-edge-dark),
    0 12px 20px var(--shadow-color);
  animation: title-depth-back 7s ease-in-out infinite;
}
.title-line--accent {
  text-shadow:
    0 1px 0 var(--type-edge-blue),
    0 2px 0 var(--type-depth-blue),
    0 12px 20px var(--shadow-color);
  animation-name: title-depth-front;
}
@keyframes title-depth-back {
  0%,
  100% {
    transform: translate(
      calc(-1 * var(--title-back-drift)),
      calc(-1 * var(--title-lift))
    );
  }
  50% {
    transform: translate(var(--title-back-drift), var(--title-lift));
  }
}
@keyframes title-depth-front {
  0%,
  100% {
    transform: translate(var(--title-front-drift), var(--title-lift));
  }
  50% {
    transform: translate(
      calc(-1 * var(--title-front-drift)),
      calc(-1 * var(--title-lift))
    );
  }
}
html.motion-paused .title-line,
.depth-title.motion-idle .title-line {
  animation-play-state: paused;
}
@media (max-width: 540px) {
  .depth-title {
    --title-back-drift: 5px;
    --title-front-drift: 8px;
    --title-lift: 2px;
  }
}
.hero-description {
  font-size: 16px;
  color: var(--text-muted-dark);
  line-height: 1.8;
}
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.primary {
  background: var(--blue);
  color: var(--surface-white);
}
.primary:hover {
  background: var(--action-hover);
  transform: translateY(-2px);
}
.hero .button {
  margin-top: 23px;
}
.sculpture {
  position: absolute;
  left: 0;
  right: 0;
  top: 327px;
  bottom: 55px;
  z-index: 0;
  cursor: grab;
}
.sculpture:active {
  cursor: grabbing;
}
.sculpture canvas {
  display: block;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.sculpture.is-ready canvas {
  visibility: visible;
}
.scene-fallback {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.scene-fallback img {
  position: absolute;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.is-ready .scene-fallback {
  display: none;
}
.hero-notes {
  position: absolute;
  top: 65%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.hero-note {
  pointer-events: auto;
  width: 230px;
  padding-top: 15px;
  border-top: 1px solid var(--line-dark);
}
.index {
  display: block;
  font-size: 12px;
  color: var(--text-muted-dark);
  margin-bottom: 12px;
}
.hero-note strong {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  display: block;
}
.hero-note svg {
  margin-top: 16px;
  color: var(--accent-soft);
  transition: transform 0.3s;
}
.hero-note:hover svg {
  transform: translate(4px, 4px);
}
.hero-bottom {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted-dark);
}
.hero-bottom > a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-bottom > .motion-toggle {
  width: 30px;
  height: 30px;
}
.hero-bottom svg {
  width: 14px;
  height: 14px;
}
/* A shared blue hairline connects the page's main editorial sections. */
.hero-note,
.header-cta,
.section-top,
.web-video-proof,
.web-proof-grid,
.web-proof-source,
.software-custom,
.impact-practical,
.contact-email,
.contact-bottom {
  border-image: var(--separator-section) 1;
}
.header-cta:hover,
.contact-email:hover {
  border-image-source: var(--separator-header);
}
.light-section {
  color: var(--dark);
  background: var(--paper);
}
.light-section .eyebrow {
  color: var(--accent-strong);
}
.web-section .eyebrow {
  color: var(--accent-soft);
}
.software,
.web-section {
  padding: 62px 0 84px;
}
.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 22px;
  margin-bottom: 45px;
}
.section-aside {
  font-size: 14px;
  color: var(--text-muted-light);
}
.section-intro {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: end;
  gap: 72px;
  margin-bottom: 48px;
}
h2 {
  font-size: 36px;
  line-height: 1.3;
}
h2 > span {
  color: var(--accent-strong);
}
.section-intro > p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-secondary-light);
  max-width: 370px;
  justify-self: end;
}
.software-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.service-selector {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-tab {
  text-align: left;
  background: transparent;
  border-bottom: 1px solid var(--line-light);
  padding: 24px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  gap: 14px;
  position: relative;
}
.service-tab:before {
  position: absolute;
  content: "";
  left: -16px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--blue);
  transform: scaleY(0);
  transition: transform 0.25s;
}
.service-tab.active:before {
  transform: scaleY(1);
}
.service-tab strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.service-tab small {
  display: block;
  font-size: 14px;
  color: var(--text-muted-light);
  line-height: 1.8;
  max-width: 260px;
}
.service-tab svg {
  color: var(--text-muted-light);
  margin-top: 4px;
}
.service-tab.active strong,
.service-tab.active svg,
.service-tab:hover strong {
  color: var(--action);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 600;
}
.service-options > .text-link {
  margin-top: 30px;
  align-self: flex-start;
}
.text-link:hover {
  color: var(--accent-soft);
}
.light-section .text-link:hover,
.business-impact .text-link:hover,
.contact-section .text-link:hover {
  color: var(--accent-strong);
}
.demo-wrap {
  min-width: 0;
}
.software-demo {
  border-radius: 8px;
  border: 1px solid var(--line-light);
  background: var(--surface-white);
  box-shadow: 0 18px 50px var(--shadow-soft);
  overflow: hidden;
  min-height: 399px;
  color: var(--text-on-light);
}
.app-top {
  height: 53px;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
}
.app-wordmark {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-mark {
  background: var(--blue);
  color: var(--surface-white);
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 600;
}
.avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface-subtle);
  color: var(--text-muted-light);
  font-size: 12px;
}
.app-content {
  padding: 24px;
}
.app-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-breadcrumb {
  font-size: 12px;
  color: var(--text-muted-light);
}
.app-heading h3 {
  font-size: 20px;
  margin-top: 4px;
  line-height: 1.4;
}
.app-heading > svg {
  color: var(--text-muted-light);
  width: 15px;
}
.app-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}
.app-stats > div + div {
  border-left: 1px solid var(--line-light);
  padding-left: 24px;
}
.app-stats > div > span {
  font-size: 12px;
  color: var(--text-muted-light);
}
.app-stats strong {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 28px;
  font-weight: 600;
  margin-top: 3px;
  line-height: 1.4;
}
.app-stats small {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted-light);
}
.app-table {
  padding-top: 18px;
}
.table-heading {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  margin-bottom: 8px;
}
.table-heading > span {
  font-size: 12px;
  color: var(--text-muted-light);
}
.project-row {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
}
.project-icon {
  background: var(--surface-subtle);
  width: 26px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--text-muted-light);
  border-radius: 4px;
}
.project-icon svg {
  width: 14px;
  height: 14px;
}
.project-row strong {
  font-size: 12px;
  display: block;
  font-weight: 400;
}
.project-row small {
  font-size: 12px;
  color: var(--text-muted-light);
  display: block;
}
.status {
  padding: 3px 7px;
  background: var(--surface-tint);
  color: var(--accent-strong);
  border-radius: 3px;
  font-size: 12px;
  white-space: nowrap;
}
.status.green {
  background: var(--success-surface);
  color: var(--success-text);
}
.progress-label {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted-light);
}
.progress-label strong {
  color: var(--accent-strong);
  font-weight: 400;
}
.progress-track {
  height: 4px;
  background: var(--surface-subtle);
  border-radius: 3px;
  margin-top: 7px;
  overflow: hidden;
}
.progress-track span {
  display: block;
  height: 100%;
  width: 72%;
  background: var(--action);
  transition: width 0.6s;
}
.app-foot {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted-light);
}
.green-dot {
  background: var(--success-mark);
  width: 4px;
  height: 4px;
}
.demo-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted-light);
  margin-top: 14px;
}
.demo-caption > span {
  font-size: 12px;
  color: var(--text-secondary-light);
}
.web-section .section-top {
  border-color: var(--line);
}
.web-section .section-aside {
  color: var(--text-muted-dark);
}
.web-section .section-intro > p {
  color: var(--text-muted-dark);
}
.web-section h2 > span {
  color: var(--accent-soft);
}
.web-video-proof {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  align-items: center;
  gap: 64px;
  padding-block: 38px 54px;
  border-top: 1px solid var(--line);
}
.web-proof-copy .eyebrow {
  color: var(--accent-soft);
  font-size: 13px;
  margin-bottom: 22px;
}
.web-proof-copy h3 {
  font-size: 27px;
  line-height: 1.35;
}
.web-proof-copy h3 span {
  color: var(--text-secondary-dark);
}
.web-proof-copy > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-secondary-dark);
  max-width: 480px;
  margin-top: 20px;
}
.web-proof-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--text-secondary-dark);
}
.web-proof-points li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.web-proof-points svg {
  width: 17px;
  height: 17px;
  color: var(--accent-soft);
}
.web-video-example {
  min-width: 0;
}
.web-video-stage {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 202px;
  position: relative;
  overflow: hidden;
  background: var(--surface-dark-deep);
  border: 1px solid var(--line-dark-strong);
  border-radius: 6px;
}
.web-video-stage > img,
.web-video-stage > iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.web-video-start {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  background: var(--media-scrim);
  color: var(--surface-white);
  font: inherit;
  cursor: pointer;
}
.web-video-start > span:last-child {
  padding: 9px 14px;
  background: var(--surface-dark);
  border: 1px solid var(--line-dark-strong);
  border-radius: 4px;
  font-size: 14px;
}
.web-play-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--action);
  box-shadow: 0 2px 18px var(--shadow-color);
}
.web-play-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.web-video-start:hover .web-play-icon {
  background: var(--action-hover);
}
.web-video-start:focus-visible {
  outline-offset: -7px;
}
.web-video-start[hidden],
.web-video-stop[hidden] {
  display: none;
}
.web-video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  margin-top: 14px;
}
.web-video-actions > p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted-dark);
  flex: 1 1 240px;
}
.web-video-actions > p a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.web-video-stop {
  padding: 8px 0;
  background: none;
  color: var(--surface-white);
  border: 0;
  cursor: pointer;
  min-height: 44px;
}
.web-video-credit {
  display: inline;
  font-size: 13px;
  line-height: 1.8;
  color: var(--accent-soft);
}
.web-video-credit svg {
  display: inline-block;
  width: 12px;
  height: 12px;
  vertical-align: middle;
}
.web-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}
.web-proof {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 28px;
  min-width: 0;
}
.web-capture-open {
  display: block;
  position: relative;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: var(--surface-dark-deep);
}
.web-capture-open > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 1040;
  object-fit: contain;
}
.web-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--surface-dark);
  border: 1px solid var(--line-dark-strong);
  border-radius: 4px;
}
.web-zoom svg {
  width: 18px;
  height: 18px;
}
.web-capture-open:hover .web-zoom {
  background: var(--action);
}
.web-proof-source {
  border-bottom: 1px solid var(--line);
  padding-block: 24px 30px;
  color: var(--text-muted-dark);
  font-size: 13px;
  line-height: 1.9;
}
.web-proof-source a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.web-proof-source svg {
  width: 13px;
  height: 13px;
  display: inline;
  vertical-align: middle;
}
.web-project-cta {
  min-height: 44px;
  margin-top: 28px;
}
@media (max-width: 1000px) {
  .web-video-proof {
    gap: 32px;
    grid-template-columns: 1fr 1.1fr;
  }
  .web-proof-copy h3 {
    font-size: 24px;
  }
  .web-proof-grid {
    gap: 28px;
  }
}
@media (min-width: 801px) and (max-width: 1000px) {
  .header-cta {
    margin-left: auto;
  }
  .menu-button {
    display: grid;
    flex: none;
  }
  .navigation {
    display: none;
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    padding: 22px 44px;
    flex-direction: column;
    gap: 3px;
    font-size: 17px;
    background: var(--surface-dark-raised);
    border-bottom: 1px solid var(--line);
  }
  .navigation.is-open {
    display: flex;
  }
}
@media (max-width: 800px) {
  .web-video-proof {
    grid-template-columns: minmax(0, 1fr);
  }
  .web-proof-copy > p:not(.eyebrow) {
    max-width: 620px;
  }
}
@media (max-width: 600px) {
  .web-proof-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .web-proof {
    gap: 22px;
  }
  .web-proof-copy h3 {
    font-size: 23px;
  }
  .web-video-proof {
    padding-top: 30px;
    padding-bottom: 38px;
  }
  .web-proof-points {
    font-size: 14px;
  }
}
.web-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 34px;
}
.web-benefits > div {
  min-width: 0;
}
.web-benefits h3 {
  font-size: 15px;
  line-height: 1.6;
}
.web-benefits p {
  font-size: 14px;
  color: var(--text-muted-dark);
  margin-top: 5px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.business-impact {
  position: relative;
  isolation: isolate;
  padding: 80px 0 64px;
  background: var(--surface-tint);
  color: var(--dark);
}
.business-impact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("assets/map.webp") center top / cover no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.24;
  pointer-events: none;
}
.impact-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.impact-heading .eyebrow {
  justify-content: center;
  color: var(--accent-strong);
  margin-bottom: 24px;
}
.impact-heading h2 > span {
  color: var(--accent-strong);
}
.impact-heading > p:last-child {
  max-width: 600px;
  margin: 24px auto 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary-light);
}
.impact-scope {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary-light);
}
.impact-statistics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
  text-align: center;
}
.impact-statistics li {
  min-width: 0;
}
.impact-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: var(--accent-strong);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 20px;
}
.impact-count {
  display: inline-block;
  width: 2.15ch;
  text-align: right;
  font-size: 56px;
  font-variant-numeric: tabular-nums;
}
.impact-percent {
  font-size: 30px;
  margin-left: 4px;
}
.impact-statistics h3 {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.impact-statistics li > p:last-child {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary-light);
}
.impact-sources {
  max-width: 900px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.85;
  color: var(--text-secondary-light);
  text-align: center;
}
.impact-sources a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.impact-practical {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  gap: 64px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line-tint);
}
.impact-practical h3 {
  font-size: 18px;
  margin-bottom: 14px;
}
.impact-practical p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary-light);
}
@media (max-width: 1000px) {
  .impact-statistics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }
  .impact-statistics li > p:last-child {
    max-width: 320px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .business-impact {
    padding: 48px 0;
  }
  .business-impact::before {
    background-size: auto 650px;
    opacity: 0.2;
  }
  .impact-heading .eyebrow {
    margin-bottom: 20px;
  }
  .impact-statistics {
    gap: 32px 20px;
  }
  .impact-count {
    font-size: 44px;
  }
  .impact-percent {
    font-size: 24px;
  }
  .impact-practical {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 380px) {
  .impact-statistics {
    grid-template-columns: 1fr;
  }
}
/* Original cube composition, aligned with the new site's visual language. */
.original-services {
  background: var(--surface-dark);
  color: var(--text-on-dark);
  overflow: clip;
}
.original-services-inner {
  width: 80%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 78px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.original-services-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.original-services-eyebrow {
  color: var(--accent-soft);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase;
}
.original-services-heading h2 {
  max-width: 640px;
  color: var(--text-on-dark);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  margin: 12px 0 8px;
}
.original-services-heading h2 > span {
  color: var(--accent-soft);
}
.original-services-lead {
  max-width: 540px;
  color: var(--text-secondary-dark);
  font-size: 15px;
  line-height: 1.9;
}
.original-services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(30px, calc(-23.95px + 5.263vw), 50px);
  width: 100%;
}
.original-service {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 30%;
  min-width: 0;
  margin-bottom: 30px;
}
.original-cube {
  width: 35%;
  height: auto;
  flex-shrink: 0;
  align-self: flex-start;
}
.original-service-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.original-service h3 {
  color: var(--text-on-dark);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}
.original-service p {
  color: var(--text-secondary-dark);
  font-size: 15px;
  line-height: 1.8;
}
.original-service.service-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.service-center .original-cube {
  align-self: center;
}
.original-service.service-right {
  flex-direction: row-reverse;
  text-align: right;
}
.original-services-list.cubes-ready:not(.move) .original-cube {
  opacity: 0;
}
.original-services-list.move .original-cube {
  animation: original-cube-left 1.5s ease both;
}
.original-services-list.move .service-center .original-cube {
  animation-name: original-cube-down;
}
.original-services-list.move .service-right .original-cube {
  animation-name: original-cube-right;
}
@keyframes original-cube-left {
  from { transform: translateX(-300px); }
  to { transform: translateX(0); }
}
@keyframes original-cube-right {
  from { transform: translateX(300px); }
  to { transform: translateX(0); }
}
@keyframes original-cube-down {
  from { transform: translateY(-300px); }
  to { transform: translateY(0); }
}
html.motion-paused .original-services-list.cubes-ready .original-cube {
  animation: none;
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .original-services-list.cubes-ready:not(.move) .original-cube {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .original-services-list {
    flex-direction: column;
    align-items: center;
  }
  .original-services-list .original-service {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }
  .original-service-content {
    margin-bottom: 0;
  }
  .original-services-list .original-cube,
  .original-services-list.cubes-ready:not(.move) .original-cube {
    width: 20%;
    align-self: center;
    animation: none;
    opacity: 1;
  }
  .original-services-heading h2 {
    font-size: 32px;
  }
  .original-service p {
    max-width: 420px;
    font-size: 15px;
  }
}
@media (max-width: 540px) {
  .original-services-inner {
    width: calc(100% - var(--gutter) * 2);
    padding: 48px 0;
    gap: 40px;
  }
  .original-services-heading h2 {
    font-size: 26px;
  }
  .original-service p {
    font-size: 15px;
    line-height: 1.8;
  }
}
.contact-section {
  padding: 86px 0 0;
  background: var(--surface-light);
  color: var(--text-on-light);
}
.contact-inner {
  text-align: center;
}
.contact-inner > .eyebrow {
  justify-content: center;
  color: var(--accent-strong);
}
.contact-inner h2 {
  font-size: 44px;
  margin-top: 24px;
  line-height: 1.3;
}
.contact-inner h2 > span {
  color: var(--accent-strong);
}
.contact-inner > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--text-secondary-light);
  margin-top: 22px;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 24px;
  margin-top: 30px;
  color: var(--accent-strong);
  border-bottom: 1px solid var(--line-tint);
  padding-bottom: 14px;
}
.contact-email:hover {
  color: var(--action-hover);
}
.contact-email svg {
  width: 26px;
  height: 26px;
}
.contact-bottom {
  border-top: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 13px;
  color: var(--text-muted-light);
}
.contact-bottom .text-link {
  font-size: 13px;
  font-weight: 400;
}
.contact-bottom .text-link:hover {
  color: var(--accent-strong);
}
.footer {
  min-height: 108px;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted-dark);
  font-size: 13px;
  flex-wrap: wrap;
  padding-block: 24px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 24px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-links a:hover {
  color: var(--accent-soft);
}
.footer .brand {
  color: var(--text-on-dark);
}
.footer .brand-symbol {
  width: 24px;
  height: 26px;
}
.footer .brand-symbol img {
  width: 40px;
  left: -8px;
  top: -3px;
}
.footer .brand-name {
  font-size: 14px;
}
.reveal {
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.reveal.pending {
  opacity: 0;
  transform: translateY(20px);
}
@media (min-width: 1700px) {
  :root {
    --max: 1260px;
  }
  .hero {
    max-height: 830px;
  }
  .sculpture {
    top: 335px;
    bottom: 45px;
  }
}
@media (max-width: 1100px) {
  :root {
    --gutter: 44px;
  }
  .header-inner {
    gap: 20px;
  }
  .navigation {
    gap: 22px;
  }
  .brand-name {
    font-size: 17px;
  }
  .header-cta {
    font-size: 15px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-note {
    width: 190px;
  }
  .hero-note strong {
    font-size: 13px;
  }
  .section-intro,
  .software-layout {
    gap: 40px;
  }
  h2 {
    font-size: 30px;
  }
  .app-stats strong {
    font-size: 24px;
    gap: 6px;
  }
  .app-stats small {
    font-size: 12px;
  }
}
@media (max-width: 800px) {
  :root {
    --gutter: 32px;
  }
  .header {
    height: 68px;
  }
  .header-cta {
    margin-left: auto;
  }
  .menu-button {
    display: grid;
    flex: none;
  }
  .navigation {
    display: none;
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    background: var(--surface-dark-raised);
    border-bottom: 1px solid var(--line);
    padding: 22px 32px;
    flex-direction: column;
    gap: 3px;
    font-size: 17px;
  }
  .navigation.is-open {
    display: flex;
  }
  .hero {
    min-height: 670px;
  }
  .hero-copy {
    padding-top: 44px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-notes {
    top: 69%;
  }
  .hero-note {
    width: 148px;
  }
  .hero-note .index {
    font-size: 12px;
  }
  .hero-note strong {
    font-size: 12px;
  }
  .sculpture {
    top: 315px;
    bottom: 90px;
  }
  .section-intro {
    gap: 28px;
    grid-template-columns: 1fr;
  }
  .section-intro > p {
    justify-self: start;
    max-width: 500px;
  }
  .software-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .service-tab {
    grid-template-columns: 1fr;
    padding: 12px 0;
    gap: 8px;
    border-top: 2px solid transparent;
  }
  .service-tab:before,
  .service-tab > svg,
  .service-tab small {
    display: none;
  }
  .service-tab.active {
    border-top-color: var(--blue);
  }
  .service-tab strong {
    font-size: 15px;
  }
  .service-options > .text-link {
    grid-column: 1/-1;
    margin-top: 8px;
  }
  .demo-wrap {
    width: 100%;
    max-width: 650px;
  }
  .app-stats small {
    font-size: 12px;
  }
  .web-benefits {
    gap: 20px;
  }
  .web-benefits > div {
    display: block;
  }
  .web-benefits h3 {
    margin-top: 8px;
  }
  .footer > span:last-child {
    display: none;
  }
}
@media (max-width: 540px) {
  :root {
    --gutter: 24px;
  }
  .header {
    height: 64px;
  }
  .header-inner {
    gap: 8px;
  }
  .header .brand {
    flex: 1;
    min-width: 0;
  }
  .header .brand-name {
    min-width: 0;
  }
  .header .brand-name > span {
    max-width: 180px;
    line-height: 1.25;
    margin-top: 3px;
  }
  .brand-name {
    font-size: 15px;
  }
  .brand-name > span {
    font-size: 12px;
  }
  .brand-symbol {
    width: 29px;
    height: 31px;
  }
  .brand-symbol img {
    width: 47px;
    left: -9px;
    top: -4px;
  }
  .header-cta {
    font-size: 0;
    border: 0;
    padding: 0;
    gap: 0;
  }
  .header-cta svg {
    width: 20px;
    height: 20px;
    color: var(--accent-soft);
  }
  .menu-button {
    width: 32px;
    height: 32px;
  }
  .navigation {
    top: 63px;
    padding: 20px 24px;
  }
  .hero {
    height: calc(100svh - 105px);
    min-height: 640px;
    max-height: 750px;
  }
  .hero-copy {
    padding-top: 32px;
  }
  .hero .eyebrow {
    font-size: 12px;
    gap: 7px;
  }
  .hero h1 {
    font-size: 30px;
    line-height: 1.25;
    margin: 22px 0 16px;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.8;
  }
  .hero .button {
    font-size: 14px;
    max-width: 100%;
    padding-inline: 16px;
    gap: 15px;
    min-height: 44px;
    margin-top: 22px;
  }
  .sculpture {
    top: 280px;
    bottom: 100px;
  }
  .hero-notes {
    top: auto;
    bottom: 68px;
    gap: 30px;
  }
  .hero-note {
    width: 50%;
    padding-top: 10px;
  }
  .hero-note strong {
    font-size: 12px;
    line-height: 1.6;
  }
  .hero-note .index {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .hero-note svg {
    display: none;
  }
  .hero-bottom {
    bottom: 17px;
    font-size: 13px;
  }
  .hero-bottom > span {
    display: none;
  }
  .hero-bottom > a {
    gap: 10px;
  }
  .software,
  .web-section {
    padding: 38px 0 48px;
  }
  .section-top {
    padding-bottom: 18px;
    margin-bottom: 30px;
  }
  .eyebrow {
    font-size: 13px;
  }
  .section-aside {
    display: none;
  }
  h2 {
    font-size: 25px;
    line-height: 1.35;
  }
  .section-intro {
    gap: 18px;
    margin-bottom: 30px;
  }
  .section-intro > p {
    font-size: 15px;
    line-height: 1.85;
  }
  .service-selector {
    gap: 12px;
  }
  .service-tab strong {
    font-size: 15px;
    line-height: 1.6;
  }
  .service-options > .text-link {
    font-size: 15px;
  }
  .software-layout {
    gap: 28px;
  }
  .app-top {
    padding-inline: 16px;
    height: 46px;
  }
  .app-content {
    padding: 16px;
  }
  .software-demo {
    min-height: 385px;
  }
  .app-breadcrumb {
    font-size: 12px;
  }
  .app-heading h3 {
    font-size: 18px;
  }
  .app-stats {
    gap: 16px;
    padding: 18px 0;
  }
  .app-stats > div + div {
    padding-left: 16px;
  }
  .app-stats strong {
    font-size: 25px;
    display: block;
  }
  .app-stats small {
    display: block;
    font-size: 12px;
    margin-top: 1px;
  }
  .table-heading {
    font-size: 12px;
  }
  .table-heading > span {
    font-size: 12px;
  }
  .project-row {
    gap: 6px;
    grid-template-columns: 23px 1fr auto;
  }
  .project-row strong {
    font-size: 12px;
  }
  .project-row small {
    font-size: 12px;
  }
  .project-icon {
    width: 22px;
    height: 26px;
  }
  .status {
    font-size: 12px;
    padding: 3px 5px;
  }
  .demo-caption {
    font-size: 12px;
  }
  .demo-caption > span {
    font-size: 12px;
  }
  .web-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 26px;
  }
  .web-benefits > div {
    display: block;
  }
  .web-benefits h3 {
    margin-top: 0;
    font-size: 15px;
  }
  .web-benefits p {
    font-size: 14px;
  }
  .contact-section {
    padding-top: 48px;
  }
  .contact-inner > .eyebrow {
    font-size: 13px;
  }
  .contact-inner h2 {
    font-size: 32px;
  }
  .contact-inner > p:not(.eyebrow) {
    font-size: 15px;
  }
  .contact-email {
    font-size: 19px;
    gap: 12px;
    margin-top: 26px;
  }
  .contact-email svg {
    width: 21px;
    height: 21px;
  }
  .contact-bottom {
    margin-top: 48px;
    align-items: start;
    gap: 20px;
    font-size: 13px;
  }
  .contact-bottom > span {
    max-width: 135px;
  }
  .contact-bottom .text-link {
    font-size: 13px;
    gap: 8px;
  }
  .footer {
    min-height: 88px;
    font-size: 13px;
  }
  .footer .brand-name {
    font-size: 12px;
  }
}
@media (max-width: 359px) {
  :root {
    --gutter: 20px;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero .eyebrow {
    font-size: 12px;
  }
  .hero-note .index {
    font-size: 12px;
  }
  .contact-email {
    font-size: 17px;
  }
  .app-content {
    padding: 13px;
  }
  .service-tab strong {
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal.pending {
    opacity: 1;
    transform: none;
  }
}
html.motion-paused {
  scroll-behavior: auto;
}
html.motion-paused .reveal.pending {
  opacity: 1;
  transform: none;
}
html.motion-paused *,
html.motion-paused *::before {
  transition: none !important;
}

/* Keep the identity and object inside their own visual bounds. */
.brand-symbol {
  height: 35px;
}
.footer .brand-symbol {
  height: 24px;
}
.hero {
  height: calc(100svh - 164px);
  min-height: 650px;
}
.sculpture {
  top: 355px;
}
.app-breadcrumb,
.app-foot,
.app-stats > div > span,
.app-stats small,
.table-heading > span,
.project-row small,
.status,
.progress-label {
  font-size: 12px;
}
.app-wordmark,
.table-heading,
.project-row strong {
  font-size: 12px;
}
.app-stats strong {
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 0;
}
.demo-caption {
  font-size: 12px;
}
.demo-caption > span {
  font-size: 12px;
}
.software-demo {
  min-height: 440px;
}
@media (max-width: 800px) {
  .sculpture {
    top: 330px;
  }
  .hero {
    min-height: 650px;
  }
}
@media (max-width: 540px) {
  .brand-symbol {
    height: 29px;
  }
  .hero {
    height: calc(100svh - 145px);
    min-height: 640px;
  }
  .sculpture {
    top: 290px;
    bottom: 135px;
  }
  .hero-notes {
    bottom: 70px;
  }
  .software-demo {
    min-height: 430px;
  }
  .project-row {
    grid-template-columns: 23px 1fr auto;
  }
  .project-row strong {
    font-size: 12px;
  }
  .project-row small,
  .status {
    font-size: 12px;
  }
  .app-breadcrumb,
  .app-foot,
  .progress-label,
  .table-heading > span {
    font-size: 12px;
  }
  .app-stats small {
    font-size: 12px;
  }
  .app-stats > div > span {
    font-size: 12px;
  }
  .demo-caption {
    font-size: 12px;
  }
  .demo-caption > span {
    font-size: 12px;
  }
  .table-heading {
    font-size: 12px;
  }
}

.hero-note .mobile-note {
  display: none;
}
.service-tab small {
  font-size: 14px;
  color: var(--text-muted-light);
}
.app-breadcrumb,
.app-foot,
.app-stats > div > span,
.app-stats small,
.table-heading > span,
.project-row small,
.status,
.progress-label {
  font-size: 12px;
}
.app-wordmark,
.table-heading,
.project-row strong {
  font-size: 13px;
}
.app-breadcrumb,
.app-foot,
.app-stats > div > span,
.app-stats small,
.table-heading > span,
.project-row small,
.progress-label,
.demo-caption {
  color: var(--text-muted-light);
}
.project-row {
  min-height: 61px;
}
.software-demo {
  min-height: 470px;
}
@media (max-width: 540px) {
  .header-cta,
  .menu-button {
    width: 44px;
    height: 44px;
    justify-content: center;
  }
  .hero-note .desktop-note,
  .hero-note .index {
    display: none;
  }
  .hero-note .mobile-note {
    display: block;
    font-size: 13px;
  }
  .hero-note {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding-top: 6px;
  }
  .hero-note svg {
    display: block;
    width: 14px;
    height: 14px;
    margin: 0;
  }
  .hero-bottom {
    font-size: 13px;
  }
  .hero-bottom > .motion-toggle {
    height: 36px;
    width: 36px;
  }
  .hero .eyebrow {
    font-size: 12px;
  }
  .hero-description {
    font-size: 15px;
  }
  .app-wordmark,
  .project-row strong {
    font-size: 12px;
  }
  .app-breadcrumb,
  .app-foot,
  .app-stats > div > span,
  .app-stats small,
  .table-heading > span,
  .project-row small,
  .status,
  .progress-label {
    font-size: 12px;
  }
  .table-heading {
    font-size: 12px;
  }
  .table-heading > span {
    display: none;
  }
  .project-row {
    grid-template-columns: 23px 1fr;
    row-gap: 3px;
  }
  .project-row .status {
    grid-column: 2;
    justify-self: start;
  }
  .project-row small {
    line-height: 1.6;
  }
  .software-demo {
    min-height: 500px;
  }
  .demo-caption {
    font-size: 12px;
  }
}
@media (max-width: 359px) {
  .hero-note .mobile-note {
    font-size: 13px;
  }
  .hero .eyebrow {
    font-size: 12px;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.65;
  }
  .hero-description br {
    display: none;
  }
  .hero-copy {
    padding-top: 28px;
  }
}

.software-custom {
  display: grid;
  grid-template-columns: 1fr minmax(0, 460px);
  gap: 72px;
  align-items: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line-light);
}
.software-custom-copy .eyebrow {
  font-size: 13px;
  color: var(--accent-strong);
  margin-bottom: 18px;
}
.software-custom-copy h3 {
  font-size: 28px;
  line-height: 1.35;
}
.software-custom-copy h3 span {
  color: var(--text-muted-light);
}
.software-custom-copy > p:not(.eyebrow) {
  max-width: 470px;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-secondary-light);
  margin-top: 22px;
}
.software-custom-points {
  margin-top: 26px;
  display: grid;
  gap: 22px;
}
.software-custom-points dt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}
.software-custom-points dt svg {
  width: 18px;
  height: 18px;
  color: var(--accent-strong);
  margin-top: 2px;
}
.software-custom-points dd {
  margin: 7px 0 0 30px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary-light);
}
.software-form-example {
  margin: 0;
  min-width: 0;
}
.software-form-example .example-heading {
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 13px;
}
.software-form-open {
  display: block;
  position: relative;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  background: var(--surface-white);
}
.software-form-open picture,
.software-form-open img {
  display: block;
  width: 100%;
}
.software-form-open img {
  height: auto;
  aspect-ratio: 600 / 611;
}
.form-preview-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 12px;
  min-height: 44px;
  font-size: 14px;
  color: var(--accent-strong);
  border-top: 1px solid var(--line-light);
  border-radius: 0 0 6px 6px;
}
.software-form-open:hover .form-preview-label {
  background: var(--action);
  color: var(--surface-white);
}
.capture-dialog.form-preview {
  width: 640px;
}
.capture-dialog.form-preview .capture-full {
  width: 600px;
  max-width: 100%;
  max-height: none;
}
.capture-dialog.form-preview .capture-dialog-heading {
  position: sticky;
  top: 0;
  background: var(--surface-white);
  border-bottom: 1px solid var(--line-light);
  z-index: 1;
}
@media (max-width: 1000px) {
  .software-custom {
    gap: 36px;
    grid-template-columns: 1fr 1fr;
  }
  .software-custom-copy h3 {
    font-size: 25px;
  }
}
@media (max-width: 800px) {
  .software-custom {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 36px;
    padding-top: 36px;
  }
  .software-form-example {
    width: 100%;
    max-width: 460px;
    justify-self: center;
  }
  .software-custom-copy > p:not(.eyebrow) {
    max-width: 620px;
  }
}
@media (max-width: 540px) {
  .software-custom-copy h3 {
    font-size: 24px;
  }
  .software-form-open img {
    aspect-ratio: 390 / 678;
  }
}
.calendeos-example {
  margin: 0;
}
.calendeos-example[hidden],
.illustrative-demo[hidden],
.illustrative-caption[hidden] {
  display: none;
}
.demo-wrap {
  min-height: 560px;
}
.example-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--text-muted-light);
  font-size: 13px;
}
.capture-modes {
  display: flex;
  background: var(--surface-subtle);
  padding: 3px;
  border-radius: 5px;
}
.capture-modes button {
  width: 38px;
  height: 34px;
  background: transparent;
  border-radius: 3px;
  display: grid;
  place-items: center;
  color: var(--text-muted-light);
}
.capture-modes button[aria-pressed="true"] {
  background: var(--surface-white);
  color: var(--action);
  box-shadow: 0 1px 4px var(--shadow-soft);
}
.capture-open {
  position: relative;
  display: block;
  padding: 0;
  width: 100%;
  height: 410px;
  background: var(--surface-subtle);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  overflow: hidden;
  cursor: zoom-in;
}
.capture-open picture {
  display: block;
  height: 100%;
}
.capture-open img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.capture-expand {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-light);
  background: var(--surface-white);
  color: var(--accent-strong);
  border-radius: 4px;
  box-shadow: 0 3px 12px var(--shadow-soft);
}
.capture-open:hover .capture-expand {
  background: var(--action);
  color: var(--surface-white);
}
.example-caption {
  padding-top: 16px;
  font-size: 14px;
  color: var(--text-muted-light);
}
.example-caption strong {
  display: block;
  color: var(--text-on-light);
  font-size: 15px;
  font-weight: 600;
}
.example-caption p > span {
  display: block;
  margin-top: 3px;
}
.capture-disclaimer {
  display: block;
  font-size: 13px;
  margin-top: 10px;
}
.capture-dialog {
  width: fit-content;
  max-width: calc(100% - 64px);
  max-height: calc(100dvh - 48px);
  padding: 0;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--surface-white);
  color: var(--text-on-light);
}
.capture-dialog::backdrop {
  background: var(--dialog-scrim);
  backdrop-filter: blur(5px);
}
.capture-dialog-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px;
  font-size: 14px;
}
.capture-close {
  color: var(--text-secondary-light);
  border-color: var(--line-light);
  flex: none;
}
.capture-full {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - 115px);
  object-fit: contain;
  margin: 0 auto;
}
.capture-is-open {
  overflow: hidden;
}
@media (max-width: 800px) {
  .demo-wrap {
    min-height: 575px;
  }
}
@media (max-width: 540px) {
  .example-heading {
    font-size: 13px;
    gap: 10px;
  }
  .capture-modes button {
    width: 40px;
    height: 38px;
  }
  .capture-open {
    height: 400px;
  }
  .demo-wrap {
    min-height: 590px;
  }
  .example-caption {
    font-size: 14px;
  }
  .capture-disclaimer {
    font-size: 13px;
  }
  .capture-dialog {
    max-width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
  }
  .capture-dialog-heading {
    padding: 10px 12px;
    font-size: 14px;
    gap: 12px;
  }
  .capture-close {
    width: 40px;
    height: 40px;
  }
  .capture-full {
    max-height: calc(100dvh - 95px);
  }
}
