@font-face {
  font-family: Manrope;
  src: url('/assets/fonts/manrope-latin.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary: #002554;
  --primary-hover: #174879;
  --accent: #b8d6ec;
  --ink: #14263c;
  --ink-muted: #586574;
  --canvas: #fff;
  --surface: #f2f5f7;
  --border: #dce3e9;
  --brand-grey: #888b8d;
  --inverse-muted: #b9c9dc;
  --display: Manrope, 'Century Gothic', Arial, sans-serif;
  --body: Manrope, 'Century Gothic', Arial, sans-serif;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow: 0 16px 48px rgba(0, 37, 84, 0.1);
  --photo-shade: linear-gradient(180deg, rgba(0, 37, 84, 0.45), transparent 65%);
  --motion-duration: 600ms;
  --motion-easing: cubic-bezier(0.2, 0.7, 0.2, 1);
  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-64: 64px;
  --space-80: 80px;
  --space-96: 96px;
  --space-120: 120px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font: 400 17px/1.7 var(--body);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(48px, 6.3vw, 90px);
}
h2 {
  font-size: clamp(36px, 4vw, 56px);
}
h3 {
  font-size: 26px;
  letter-spacing: -0.025em;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  display: block;
}
::selection {
  background: var(--accent);
  color: var(--primary);
}
:focus-visible {
  outline: 3px solid var(--primary-hover);
  outline-offset: 5px;
}
.dark :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--accent);
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: var(--space-80);
}
.surface {
  background: var(--surface);
}
.dark {
  background: var(--primary);
  color: var(--canvas);
}
.muted {
  color: var(--ink-muted);
}
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.dark .eyebrow {
  color: var(--accent);
}
.section-title .eyebrow {
  margin-bottom: 24px;
}
.section-title > p:last-child {
  max-width: 490px;
  color: var(--ink-muted);
  margin-top: 24px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  align-items: flex-end;
  margin-bottom: var(--space-40);
}
.section-heading > p {
  color: var(--ink-muted);
  max-width: 390px;
  padding-bottom: 4px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 56px;
  padding: 16px 24px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-md);
  background: var(--primary);
  color: var(--canvas);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s;
}
.btn:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
}
.btn .icon {
  width: 20px;
  height: 20px;
}
.btn-secondary {
  color: var(--primary);
  background: transparent;
  border-color: var(--border);
}
.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--primary);
}
.btn-white {
  background: var(--canvas);
  color: var(--primary);
  border-color: var(--canvas);
}
.btn-white:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.button-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 650;
  border-bottom: 1px solid currentColor;
}
.text-link:hover {
  color: var(--primary-hover);
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: 96px;
  background: rgba(255, 255, 255, 0.97);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.brand img {
  width: 170px;
  height: 61px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav > a:not(.btn) {
  font-size: 14px;
  font-weight: 550;
  position: relative;
  padding-block: 12px;
}
.main-nav > a:not(.btn):hover,
.main-nav > a[aria-current='page'] {
  color: var(--primary-hover);
}
.main-nav > a[aria-current='page']::after {
  content: '';
  height: 2px;
  background: currentColor;
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
}
.main-nav .btn {
  min-height: 48px;
  padding: 12px 20px;
  margin-left: 12px;
  gap: 20px;
}
.menu-toggle {
  display: none;
  background: none;
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}
.hero {
  padding: var(--space-40) 0 var(--space-64);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-copy {
  padding: 16px 0 32px;
  position: relative;
  z-index: 1;
}
.hero-copy .eyebrow {
  margin-bottom: 32px;
}
.hero-copy h1 {
  margin-bottom: 32px;
}
.hero-copy h1 span {
  color: var(--primary-hover);
}
.hero-copy > .lead {
  max-width: 455px;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.8;
}
.hero-copy .button-row {
  margin-top: 32px;
}
.hero-note {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-muted);
}
.hero-note .icon {
  width: 17px;
  height: 17px;
}
.hero-visual {
  position: relative;
  min-width: 0;
}
.hero-image {
  position: relative;
  height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--primary);
}
.hero-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 37, 84, 0.12) 30%, rgba(0, 37, 84, 0.82));
}
.image-label {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--canvas);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.image-label .icon {
  width: 28px;
  height: 28px;
}
.image-caption {
  position: absolute;
  bottom: 48px;
  left: 32px;
  color: white;
  z-index: 1;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.hero-badge {
  position: absolute;
  bottom: -24px;
  right: 24px;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.hero-badge strong {
  display: block;
  font-weight: 650;
  color: var(--ink);
  font-size: 14px;
}
.microsoft-mark {
  display: grid;
  grid-template-columns: repeat(2, 13px);
  grid-template-rows: repeat(2, 13px);
  gap: 3px;
  flex-shrink: 0;
}
.microsoft-mark i {
  background: var(--primary);
}
.technology-section {
  padding-block: var(--space-64);
  border-top: 1px solid var(--border);
}
.technology-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: var(--space-64);
  margin-bottom: var(--space-40);
}
.technology-heading .eyebrow {
  margin-bottom: var(--space-16);
}
.technology-heading h2 {
  font-size: 36px;
  line-height: 1.2;
}
.technology-heading > p {
  max-width: 520px;
  color: var(--ink-muted);
  font-size: 16px;
}
.technology-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-32);
}
.technology-item {
  min-width: 0;
  padding-block: var(--space-24) var(--space-8);
  border-top: 1px solid var(--border);
  transition: border-color 0.2s;
}
.technology-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary);
  margin-bottom: var(--space-24);
}
.technology-item h3 {
  max-width: 310px;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: var(--space-12);
  text-wrap: balance;
}
.technology-item > p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-muted);
}
.technology-arrow {
  width: 18px;
  height: 18px;
  color: var(--ink-muted);
  transition: color 0.2s, transform 0.2s;
}
.technology-item:hover {
  border-color: var(--primary);
}
.technology-item:hover .technology-arrow {
  color: var(--primary);
  transform: translate(2px, -2px);
}
@media (max-width: 1023px) {
  .technology-heading {
    gap: var(--space-32);
  }
  .technology-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 639px) {
  .technology-heading,
  .technology-grid {
    grid-template-columns: 1fr;
    gap: var(--space-24);
  }
  .technology-heading h2 {
    font-size: 32px;
  }
  .technology-item h3 {
    max-width: none;
    text-wrap: initial;
  }
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.service-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  min-height: 0;
}
.service-card:hover {
  border-color: var(--primary-hover);
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--primary);
}
.card-top > .icon {
  width: 32px;
  height: 32px;
}
.card-number {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 500;
}
.service-card h3 {
  font-size: 23px;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.service-card > p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.8;
  flex: 1;
}
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}
.card-bottom > span:first-child {
  font-size: 12px;
  color: var(--ink-muted);
}
.circle-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.circle-arrow .icon {
  width: 18px;
  height: 18px;
}
.service-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.featured .card-top {
  color: var(--accent);
}
.featured > p,
.featured .card-number,
.featured .card-bottom > span:first-child {
  color: var(--inverse-muted);
}
.featured .circle-arrow {
  border-color: var(--primary-hover);
}
.automation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.automation-grid h2 {
  margin: 24px 0;
}
.automation-grid > .section-title > p:last-of-type {
  color: var(--inverse-muted);
}
.automation-grid .btn {
  margin-top: 32px;
}
.workflow {
  padding: 32px;
  border: 1px solid var(--primary-hover);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
}
.workflow-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--primary-hover);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  color: var(--inverse-muted);
  text-transform: uppercase;
}
.workflow-label .icon {
  color: var(--accent);
}
.workflow ol {
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.workflow li {
  display: flex;
  gap: 16px;
  padding: 20px 16px;
  border: 1px solid var(--primary-hover);
  border-radius: var(--radius-md);
  align-items: center;
  position: relative;
}
.workflow li > span {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--primary-hover);
  border-radius: var(--radius-md);
  color: var(--accent);
}
.workflow li strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}
.workflow li p {
  font-size: 13px;
  color: var(--inverse-muted);
  margin-top: 4px;
}
.workflow-bottom {
  font-size: 12px;
  margin-top: 24px;
  color: var(--inverse-muted);
  display: flex;
  gap: 8px;
  align-items: center;
}
.workflow-bottom .icon {
  width: 16px;
  height: 16px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-photo figcaption {
  font-size: 12px;
  color: var(--ink-muted);
  padding-top: 12px;
}
.about-copy .eyebrow {
  margin-bottom: 24px;
}
.about-copy h2 {
  margin-bottom: 24px;
}
.about-copy > p {
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.values {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}
.values li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  font-size: 15px;
}
.values li .icon {
  margin-top: 2px;
  color: var(--primary);
}
.values li strong {
  font-weight: 650;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-top: 40px;
}
.process-item {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.process-number {
  display: block;
  font-size: 14px;
  color: var(--primary-hover);
  margin-bottom: 32px;
}
.process-item h3 {
  margin-bottom: 16px;
  font-size: 24px;
}
.process-item p {
  font-size: 15px;
  color: var(--ink-muted);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-list details {
  border-bottom: 1px solid var(--border);
}
.faq-list summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: '+';
  font-size: 25px;
  line-height: 1;
  font-weight: 400;
  flex-shrink: 0;
}
.faq-list details[open] summary::after {
  content: '−';
}
.faq-list details p {
  color: var(--ink-muted);
  font-size: 15px;
  padding: 0 40px 24px 0;
}
.faq-list details a {
  text-decoration: underline;
}
.cta-section {
  padding: 0 0 64px;
}
.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  background: var(--primary);
  color: var(--canvas);
  border-radius: var(--radius-lg);
  padding: 64px;
}
.cta-panel .eyebrow {
  color: var(--accent);
  margin-bottom: 24px;
}
.cta-panel h2 {
  font-size: clamp(32px, 3.5vw, 48px);
}
.cta-panel p {
  margin-top: 20px;
  color: var(--inverse-muted);
  max-width: 560px;
  font-size: 16px;
}
.cta-panel .btn {
  flex-shrink: 0;
}
.site-footer {
  background: var(--primary);
  color: var(--canvas);
  padding: 64px 0 24px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-brand img {
  width: 175px;
  height: 63px;
  object-fit: contain;
}
.footer-brand > p {
  font-size: 14px;
  color: var(--inverse-muted);
  max-width: 245px;
  margin-top: 20px;
}
.footer-col h2 {
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 650;
  margin-bottom: 24px;
}
.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.footer-col li,
.footer-col address {
  font-size: 13px;
  color: var(--inverse-muted);
  font-style: normal;
}
.footer-col a {
  display: inline-block;
  min-height: 28px;
}
.footer-col a:hover {
  color: white;
  text-decoration: underline;
}
.footer-col .footer-location {
  display: flex;
  gap: 10px;
}
.footer-location .icon {
  width: 17px;
  height: 17px;
  margin-top: 3px;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--primary-hover);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--inverse-muted);
  font-size: 12px;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  padding-block: 10px;
}
.footer-legal a:hover {
  color: white;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 40px;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .icon {
  width: 14px;
  height: 14px;
}
.page-hero {
  padding: 32px 0 64px;
}
.page-hero h1 {
  font-size: clamp(44px, 5.8vw, 76px);
  max-width: 970px;
  margin-top: 24px;
}
.page-hero .lead {
  font-size: 20px;
  color: var(--ink-muted);
  max-width: 700px;
  margin-top: 32px;
  line-height: 1.7;
}
.page-hero .button-row {
  margin-top: 32px;
}
.page-hero .topic-tags {
  margin-top: 40px;
}
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.topic-tags span {
  font-size: 13px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--ink-muted);
}
.detail-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}
.detail-grid h2 {
  font-size: 40px;
}
.detail-grid .eyebrow {
  margin-bottom: 24px;
}
.detail-copy > p {
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.benefit-list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 32px;
}
.benefit-list li {
  display: flex;
  gap: 20px;
}
.benefit-list .icon {
  margin-top: 4px;
  color: var(--primary);
}
.benefit-list h3 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 8px;
}
.benefit-list p {
  font-size: 15px;
  color: var(--ink-muted);
}
.usecase {
  margin-top: 48px;
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--canvas);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
}
.usecase h3 {
  font-size: 28px;
  margin-top: 20px;
}
.usecase p {
  color: var(--ink-muted);
  font-size: 16px;
}
.usecase .small-note {
  font-size: 13px;
  margin-top: 16px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}
.contact-intro .eyebrow {
  margin-bottom: 24px;
}
.contact-intro h2 {
  font-size: 40px;
  margin-bottom: 24px;
}
.contact-intro > p {
  color: var(--ink-muted);
}
.contact-details {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.contact-item > .icon {
  margin-top: 4px;
}
.contact-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}
.contact-item address,
.contact-item p {
  font-size: 16px;
  font-style: normal;
  color: var(--ink-muted);
}
.placeholder {
  color: var(--ink-muted);
  font-size: 14px;
  display: inline-block;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
}
.form-card {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--canvas);
}
.form-card h2 {
  font-size: 28px;
  margin-bottom: 12px;
}
.form-card > p {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 14px;
  font-weight: 600;
}
.field label span {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 400;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  background: var(--canvas);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--ink);
  font-size: 15px;
  min-height: 52px;
}
.field textarea {
  resize: vertical;
  min-height: 144px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-muted);
  opacity: 0.8;
}
.form-note {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 24px 0;
}
.form-note a {
  text-decoration: underline;
}
.form-card .btn {
  width: 100%;
}
.form-status {
  font-size: 14px;
  margin-top: 16px;
}
.form-result {
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.form-result h3 {
  font-size: 21px;
  margin-bottom: 12px;
}
.form-result pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font: 400 14px/1.8 var(--body);
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 20px;
}
.form-result .button-row {
  margin-top: 20px;
}
.form-result .btn {
  width: auto;
  flex: 1;
}
.preview-notice {
  border-left: 3px solid var(--primary);
  background: var(--surface);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 40px;
}
.preview-notice strong {
  color: var(--ink);
}
.legal-layout {
  max-width: 820px;
  margin-inline: auto;
}
.legal-layout h1 {
  font-size: clamp(44px, 5vw, 64px);
  margin-bottom: 40px;
}
.legal-layout h2 {
  font-size: 26px;
  letter-spacing: -0.025em;
  margin: 40px 0 16px;
  line-height: 1.4;
}
.legal-layout h3 {
  font-size: 19px;
  margin: 24px 0 12px;
}
.legal-layout p,
.legal-layout li,
.legal-layout address {
  font-size: 16px;
  font-style: normal;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.legal-layout ul {
  padding-left: 24px;
}
.legal-layout a {
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.legal-layout dl {
  margin: 0;
}
.legal-layout dt {
  font-weight: 650;
  margin-top: 20px;
}
.legal-layout dd {
  margin: 6px 0 0;
  color: var(--ink-muted);
  font-size: 15px;
}
.legal-layout .placeholder {
  margin: 4px 0;
}
.legal-layout .last-updated {
  font-size: 13px;
  margin-top: 48px;
}
.full-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.full-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.full-photo figcaption {
  font-size: 12px;
  background: var(--surface);
  padding: 12px 24px;
  color: var(--ink-muted);
}
.error-page {
  text-align: center;
  padding: 120px 0;
}
.error-page .eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}
.error-page p {
  margin: 24px auto 32px;
  max-width: 520px;
  color: var(--ink-muted);
}
@media (min-width: 1500px) {
  .hero-image {
    height: 580px;
  }
  .hero {
    padding-top: 48px;
  }
  .hero-grid {
    gap: 56px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .main-nav {
    gap: 24px;
  }
  .main-nav .btn {
    margin-left: 0;
  }
  .hero-grid {
    gap: 24px;
  }
  .hero-image {
    height: 570px;
  }
  .hero-copy h1 {
    font-size: clamp(48px, 6.5vw, 76px);
  }
  .hero-copy > .lead {
    font-size: 17px;
  }
  .hero-copy .button-row {
    gap: 12px;
  }
  .hero-copy .btn {
    gap: 12px;
    padding-inline: 18px;
  }
  .hero-badge {
    right: 16px;
    padding: 16px;
  }
  .automation-grid,
  .about-grid,
  .faq-grid,
  .detail-grid,
  .contact-grid {
    gap: 48px;
  }
  .service-card {
    padding: 24px;
  }
  .service-card h3 {
    font-size: 21px;
  }
  .footer-main {
    gap: 24px;
  }
  .section-heading {
    gap: 40px;
  }
  .section {
    padding-block: 64px;
  }
  .about-photo img {
    height: 480px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    gap: 18px;
  }
  .main-nav > a:not(.btn) {
    font-size: 13px;
  }
  .brand img {
    width: 140px;
    height: 50px;
  }
  .main-nav .btn {
    padding-inline: 14px;
    font-size: 13px;
    gap: 12px;
  }
  .hero-image {
    height: 550px;
  }
  .hero-copy h1 {
    font-size: 56px;
  }
  .hero-copy .eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .hero-copy > .lead {
    font-size: 16px;
  }
  .hero-note {
    font-size: 12px;
    margin-top: 24px;
  }
  .hero-badge {
    right: 12px;
    left: 12px;
    bottom: -20px;
    padding: 14px;
  }
  .image-caption {
    left: 24px;
    bottom: 72px;
    font-size: 30px;
  }
  .image-label {
    left: 24px;
    right: 24px;
    font-size: 10px;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-heading {
    align-items: flex-start;
    gap: 32px;
  }
  .section-heading > p {
    max-width: 310px;
    font-size: 15px;
  }
  .section-heading h2 {
    font-size: 40px;
  }
  .about-grid,
  .automation-grid {
    gap: 40px;
  }
  .about-photo img {
    height: 560px;
  }
  .about-copy h2,
  .automation-grid h2 {
    font-size: 38px;
  }
  .workflow {
    padding: 24px;
  }
  .workflow li {
    padding: 16px 12px;
    gap: 12px;
  }
  .workflow li > span {
    width: 36px;
    height: 36px;
  }
  .process-grid {
    gap: 24px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-panel {
    padding: 48px;
    gap: 32px;
  }
  .footer-main {
    grid-template-columns: 1.3fr 1fr;
    row-gap: 40px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-details {
    grid-template-columns: 1fr 1fr;
  }
  .contact-item:first-child {
    grid-column: 1/-1;
  }
  .usecase {
    gap: 32px;
    padding: 32px;
  }
  .usecase h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 48px;
  }
  .site-header {
    height: 80px;
  }
  .brand img {
    width: 140px;
    height: 50px;
  }
  .header-inner {
    gap: 16px;
  }
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 79px;
    background: var(--canvas);
    padding: 24px 20px 32px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav > a:not(.btn) {
    font-size: 16px;
    padding: 12px 0;
  }
  .main-nav > a[aria-current='page']::after {
    right: auto;
    width: 24px;
  }
  .main-nav .btn {
    font-size: 15px;
    min-height: 52px;
    margin-top: 8px;
  }
  .hero {
    padding: 40px 0 48px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero-copy .eyebrow {
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
  }
  .hero-copy h1 {
    font-size: clamp(50px, 10.5vw, 76px);
    margin-bottom: 24px;
  }
  .hero-copy > .lead {
    font-size: 17px;
    max-width: 520px;
  }
  .hero-copy .button-row {
    margin-top: 24px;
  }
  .hero-copy .btn {
    padding: 16px 20px;
    gap: 16px;
    font-size: 14px;
  }
  .hero-note {
    margin-top: 24px;
    font-size: 12px;
  }
  .hero-visual {
    margin-top: 16px;
    margin-bottom: 24px;
  }
  .hero-image {
    height: 420px;
  }
  .image-caption {
    font-size: 34px;
    bottom: 56px;
  }
  .image-label {
    font-size: 11px;
    top: 24px;
  }
  .hero-badge {
    right: 16px;
    left: auto;
    padding: 16px 20px;
    bottom: -24px;
  }
  .section-heading {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }
  .section-heading h2 {
    font-size: 38px;
  }
  .section-heading > p {
    font-size: 16px;
    max-width: 520px;
  }
  .section-title .eyebrow {
    margin-bottom: 20px;
  }
  .services-grid {
    gap: 16px;
  }
  .service-card {
    padding: 24px;
    min-height: 320px;
  }
  .card-top {
    margin-bottom: 32px;
  }
  .card-bottom {
    margin-top: 24px;
  }
  .automation-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .automation-grid h2,
  .about-copy h2 {
    font-size: 40px;
  }
  .workflow {
    padding: 24px;
  }
  .workflow li {
    padding: 20px 16px;
  }
  .workflow li strong {
    font-size: 15px;
  }
  .about-photo img {
    height: 400px;
  }
  .about-copy > p {
    font-size: 16px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }
  .process-item {
    position: relative;
    padding-left: 48px;
  }
  .process-number {
    position: absolute;
    top: 28px;
    left: 0;
  }
  .process-item h3 {
    font-size: 24px;
  }
  .process-item p {
    font-size: 16px;
  }
  .faq-list summary {
    font-size: 16px;
    gap: 20px;
    padding-block: 24px;
  }
  .faq-list details p {
    padding-right: 8px;
  }
  .cta-section {
    padding-bottom: 64px;
  }
  .cta-panel {
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .cta-panel h2 {
    font-size: 36px;
  }
  .cta-panel p {
    font-size: 15px;
  }
  .cta-panel .eyebrow {
    font-size: 11px;
  }
  .site-footer {
    padding-top: 48px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
    padding-bottom: 40px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand > p {
    max-width: 320px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-legal {
    flex-wrap: wrap;
    gap: 24px;
  }
  .page-hero {
    padding: 32px 0 56px;
  }
  .breadcrumb {
    font-size: 12px;
    margin-bottom: 32px;
    gap: 8px;
  }
  .page-hero h1 {
    font-size: clamp(40px, 8vw, 64px);
  }
  .page-hero .lead {
    font-size: 18px;
    margin-top: 24px;
  }
  .page-hero .topic-tags {
    margin-top: 24px;
  }
  .detail-grid h2 {
    font-size: 36px;
  }
  .usecase {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
    padding: 24px;
  }
  .contact-intro h2 {
    font-size: 36px;
  }
  .contact-details {
    grid-template-columns: 1fr;
  }
  .contact-item:first-child {
    grid-column: auto;
  }
  .form-card {
    padding: 24px;
  }
  .form-grid {
    gap: 20px;
  }
  .field {
    grid-column: 1/-1;
  }
  .form-result .button-row {
    flex-direction: column;
    align-items: stretch;
  }
  .form-result .btn {
    width: 100%;
  }
  .legal-layout h2 {
    font-size: 24px;
  }
  .legal-layout h1 {
    font-size: 44px;
  }
  .full-photo img {
    height: 300px;
  }
  .error-page {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 290px;
  }
  .service-card h3 {
    font-size: 24px;
  }
  .service-card > p {
    font-size: 16px;
  }
  .hero-copy .button-row {
    align-items: stretch;
  }
  .hero-copy .btn {
    gap: 12px;
    padding-inline: 16px;
  }
  .hero-image {
    height: 390px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col:last-child {
    grid-column: 1/-1;
  }
  .hero-note {
    gap: 8px;
  }
  .hero-badge strong {
    font-size: 13px;
  }
  .hero-badge {
    font-size: 11px;
  }
  .hero-copy h1 {
    font-size: clamp(46px, 11vw, 54px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .btn:hover,
  .service-card:hover,
  .technology-item:hover .technology-arrow {
    transform: none;
  }
}
@media print {
  .site-header,
  .site-footer,
  .cta-section,
  .button-row,
  .menu-toggle {
    display: none;
  }
  .section {
    padding-block: 24px;
  }
  body {
    font-size: 12pt;
  }
  .container {
    width: 100%;
  }
  .dark {
    background: white;
    color: black;
  }
  .dark p {
    color: black !important;
  }
  a {
    text-decoration: underline;
  }
  .hero-grid,
  .about-grid,
  .automation-grid,
  .contact-grid,
  .detail-grid {
    display: block;
  }
  .hero-visual {
    max-width: 50%;
  }
  .service-card {
    break-inside: avoid;
  }
  .hero-copy h1 {
    font-size: 36pt;
  }
}
@media (max-width: 767px) {
  html:not(.js) .site-header {
    height: auto;
    position: relative;
  }
  html:not(.js) .header-inner {
    flex-wrap: wrap;
    padding-block: 16px;
  }
  html:not(.js) .main-nav {
    position: static;
    display: flex;
    box-shadow: none;
    border: 0;
    padding: 0;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
  html:not(.js) .menu-toggle {
    display: none;
  }
}

/* Real photography adds context while using the existing content columns. */
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-48);
  align-items: center;
}
.page-hero-copy {
  min-width: 0;
}
.page-hero-grid h1 {
  font-size: clamp(42px, 4.4vw, 64px);
  margin-top: var(--space-16);
  overflow-wrap: break-word;
}
.page-hero-grid .lead {
  font-size: 18px;
  margin-top: var(--space-24);
}
.page-hero-grid .button-row,
.page-hero-grid .topic-tags {
  margin-top: var(--space-24);
}
.page-hero-figure,
.detail-photo,
.contact-photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.page-hero-figure {
  aspect-ratio: 5 / 4;
}
.page-hero-figure img,
.detail-photo img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-figure figcaption {
  position: absolute;
  bottom: var(--space-16);
  left: var(--space-16);
  right: var(--space-16);
  padding: var(--space-12) var(--space-16);
  border-radius: var(--radius-md);
  background: var(--canvas);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}
.detail-intro {
  min-width: 0;
}
.detail-photo {
  margin-top: var(--space-32);
  aspect-ratio: 4 / 3;
}
.contact-photo {
  margin-top: var(--space-32);
  aspect-ratio: 16 / 9;
}
.card-photo {
  position: relative;
  display: block;
  margin: -24px -24px 24px;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  isolation: isolate;
  background: var(--primary);
}
.card-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-photo > .photo-workplace,
.page-hero-figure > .photo-workplace,
.contact-photo > .photo-workplace,
.detail-photo > .photo-workplace {
  object-position: 50% 82%;
}
.card-photo > .photo-servers,
.page-hero-figure > .photo-servers {
  object-position: 38% 50%;
}
.card-photo > .photo-security,
.page-hero-figure > .photo-security {
  object-position: 40% 30%;
}
.card-photo::after {
  position: absolute;
  inset: 0;
  content: '';
  background: var(--photo-shade);
  pointer-events: none;
}
.card-photo .card-top {
  position: absolute;
  inset: var(--space-16) var(--space-24) auto;
  z-index: 1;
  margin: 0;
  color: var(--canvas);
}
.card-photo .card-number {
  padding: var(--space-4) var(--space-8);
  background: var(--primary);
  border-radius: var(--radius-sm);
  color: var(--canvas);
}
.card-photo .card-top > .icon {
  width: 28px;
  height: 28px;
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  background: var(--primary);
}
.service-card:has(.card-photo) {
  min-height: 0;
}
.section.surface + .cta-section {
  padding-top: var(--space-64);
}
.about-photo > img,
.detail-photo > img,
.contact-photo > img,
.card-photo > img {
  transition: transform var(--motion-duration) var(--motion-easing);
}
.about-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .service-card:hover {
    box-shadow: var(--shadow);
  }
  .btn .icon {
    transition: transform 0.2s var(--motion-easing);
  }
  .btn:hover .icon {
    transform: translateX(3px);
  }
  .detail-photo:hover > img,
  .contact-photo:hover > img,
  .service-card:hover .card-photo > img {
    transform: scale(1.035);
  }
}
/* The stationary frame owns the timeline; its image has only this transform effect. */
@supports (animation-timeline: --hero-photo) and (view-timeline-name: --hero-photo) {
  @media screen and (min-width: 1024px) and (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
    .hero-image,
    .page-hero-figure {
      view-timeline-name: --hero-photo;
      view-timeline-axis: block;
      view-timeline-inset: 0;
    }
    .hero-image > img,
    .page-hero-figure > img {
      animation: hero-photo-parallax auto linear both;
      animation-timeline: --hero-photo;
      animation-range: entry 0% exit 100%;
    }
  }
}
@keyframes hero-photo-parallax {
  from {
    transform: translateY(-12px) scale(1.10);
  }
  to {
    transform: translateY(12px) scale(1.10);
  }
}
@media (min-width: 1200px) {
  .detail-copy .benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--space-24);
  }
  .detail-copy .benefit-list li {
    gap: var(--space-12);
  }
}
@media (max-width: 1023px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-32);
  }
  .page-hero-figure {
    aspect-ratio: 16 / 7;
  }
  .detail-photo {
    max-height: 360px;
  }
}
@media (max-width: 767px) {
  .page-hero {
    padding-block: var(--space-24) var(--space-48);
  }
  .page-hero-figure {
    aspect-ratio: 4 / 3;
  }
  .page-hero-grid h1 {
    font-size: clamp(38px, 8vw, 52px);
  }
  .detail-photo {
    margin-top: var(--space-24);
    aspect-ratio: 16 / 9;
  }
  .section.surface + .cta-section {
    padding-top: var(--space-48);
  }
}
@media print {
  .page-hero-grid {
    display: block;
  }
  .card-photo,
  .detail-photo,
  .contact-photo,
  .page-hero-figure {
    display: none;
  }
}
