@font-face {
  font-family: Inter;
  src: url("/assets/fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --radius: 8px;
  --font: Inter, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a,
summary {
  touch-action: manipulation;
}
button {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
img,
svg {
  display: block;
}
img {
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 1.07;
}
h1 {
  font-size: clamp(54px, 6.35vw, 100px);
}
h2 {
  font-size: clamp(38px, 3.8vw, 58px);
}
h3 {
  font-size: 24px;
  letter-spacing: -0.04em;
}
p {
  color: var(--muted);
}
strong,
b {
  font-weight: 600;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 5px;
}
::selection {
  background: var(--soft);
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.ico {
  display: inline-block;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: middle;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
  line-height: 1.6;
  color: var(--muted);
}
.tiny-square {
  width: 7px;
  height: 7px;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  min-height: 54px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 550;
  text-align: center;
  transition:
    background 0.18s,
    transform 0.18s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn.dark {
  background: var(--ink);
  color: var(--on-solid);
}
.btn.dark:hover {
  background: var(--solid);
}
.btn.sage {
  background: var(--accent);
  color: var(--ink);
}
.btn.sage:hover {
  background: var(--accent);
}
.btn.outline {
  background: transparent;
  border-color: var(--line-strong);
}
.btn.outline:hover {
  background: var(--soft);
}
.btn.small {
  min-height: 43px;
  padding: 10px 16px;
  gap: 16px;
}
.btn.wide {
  width: 100%;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-weight: 550;
  font-size: 13px;
  line-height: 1.5;
  padding: 8px 0;
}
.text-link .ico {
  transition: transform 0.18s;
}
.text-link:hover .ico {
  transform: translateX(3px);
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.muted {
  color: var(--muted);
}
.lead {
  font-size: 18px;
  line-height: 1.65;
}
.skip {
  position: fixed;
  top: 8px;
  left: 16px;
  z-index: 1000;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--on-solid);
  transform: translateY(-150%);
}
.skip:focus {
  transform: none;
}
main:focus {
  outline: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-glass);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(15px);
}
.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  line-height: 1;
  font-size: 29px;
  letter-spacing: -1.5px;
  font-weight: 740;
}
.brand > svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand-light {
  font-weight: 420;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 12px;
  font-weight: 550;
}
.desktop-nav > a:not(.btn) {
  padding: 15px 0;
  position: relative;
}
.desktop-nav > a:not(.btn):hover:after {
  content: "";
  height: 1px;
  background: var(--ink);
  bottom: 7px;
  position: absolute;
  left: 0;
  right: 0;
}
.mobile-menu {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  padding: 70px 0 66px;
  align-items: center;
}
.hero-copy > .eyebrow {
  margin-bottom: 27px;
}
.hero h1 {
  letter-spacing: -0.07em;
  line-height: 1.005;
}
.display-accent {
  color: var(--secondary);
}
.hero-description {
  font-size: 17px;
  line-height: 1.7;
  margin-top: 29px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-signoff {
  font-size: 11px;
  margin-top: 26px;
}
.hero-art {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: block;
  position: relative;
}
.art-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 23px 25px;
  font-size: 8px;
  letter-spacing: 0.12em;
  font-weight: 650;
  color: var(--secondary);
}
.hero-devices {
  height: 450px;
  position: relative;
  background: radial-gradient(
    ellipse at 70% 35%,
    var(--soft) 0%,
    transparent 68%
  );
}
.hero-devices:before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 1px solid #1118273d;
  top: -5px;
  left: 120px;
}
.hero-devices:after {
  content: "";
  position: absolute;
  width: 530px;
  height: 530px;
  border-radius: 50%;
  border: 1px solid #1118273d;
  top: -45px;
  left: 80px;
  pointer-events: none;
}
.art-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 25px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}
.art-bottom > span > span {
  display: block;
  font-size: 10px;
  color: var(--secondary);
  font-weight: 400;
  margin-top: 1px;
}
.round-arrow {
  display: flex;
  width: 39px;
  height: 39px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.hero-art:hover .round-arrow {
  background: var(--ink);
  color: var(--on-solid);
  border-color: var(--ink);
}
.art-note {
  position: absolute;
  right: 26px;
  bottom: 38px;
  font:
    italic 23px/1.2 Georgia,
    serif;
  color: var(--secondary);
  transform: rotate(-5deg);
}
/* The product illustrations are native HTML/CSS, with no image-sized text. */
.art-phone {
  width: 226px;
  background: var(--surface);
  border: 6px solid var(--hardware);
  border-radius: 33px;
  box-shadow:
    0 24px 35px #11182724,
    0 0 0 1px #11182740;
  overflow: hidden;
  color: var(--ink);
}
.phone-island {
  height: 18px;
  width: 65px;
  background: var(--solid);
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
}
.art-phone-content {
  padding: 18px 17px 11px;
}
.art-brand {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 18px;
  font-weight: 670;
  letter-spacing: -0.6px;
  line-height: 1;
}
.northstar-mark {
  font-size: 28px;
  line-height: 1;
}
.northstar-small {
  display: block;
  font-size: 5px;
  letter-spacing: 1.1px;
  font-weight: 600;
  margin-top: 5px;
}
.art-muted {
  font-size: 7px;
  font-weight: 650;
  letter-spacing: 1.1px;
  color: var(--secondary);
  margin-top: 25px;
  margin-bottom: 8px;
}
.art-phone h3 {
  font-size: 24px;
  letter-spacing: -1.1px;
  line-height: 1.1;
}
.art-record {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 13px;
  margin-top: 20px;
}
.art-record-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}
.art-record-top > .ico {
  width: 19px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 20px;
  background: var(--paper);
  color: var(--secondary);
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0;
  line-height: 1.35;
  white-space: nowrap;
}
.pill.amber {
  background: var(--warning-soft);
  color: var(--warning);
}
.pill.green {
  background: var(--soft);
  color: var(--ink);
}
.art-record .pill,
.art-table .pill {
  font-size: 7px;
  padding: 4px 7px;
}
.art-record > strong {
  display: block;
  font-size: 11px;
  letter-spacing: -0.3px;
}
.art-record > span {
  display: block;
  font-size: 8px;
  margin-top: 4px;
  color: var(--secondary);
}
.art-record-link {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 600;
}
.art-record-link .ico {
  width: 13px;
  height: 13px;
}
.art-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 10px 0 18px;
}
.art-tiles > div {
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 8px;
}
.art-tiles .ico {
  width: 18px;
  height: 18px;
  display: block;
  margin-bottom: 6px;
}
.art-phone-nav {
  display: flex;
  justify-content: space-around;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.art-phone-nav > span {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 3px;
  color: var(--secondary);
}
.art-phone-nav > span:first-child {
  color: var(--ink);
}
.art-phone-nav .ico {
  width: 15px;
  height: 15px;
}
.art-phone-nav i {
  font-size: 6px;
  font-style: normal;
}
.hero-devices > .art-phone {
  position: absolute;
  left: 25px;
  top: 64px;
  z-index: 3;
  transform: rotate(-5deg);
}
.art-portal,
.art-operations {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: 0 15px 30px #11182715;
  overflow: hidden;
  width: 430px;
}
.hero-devices > .art-portal {
  position: absolute;
  left: 158px;
  top: 28px;
  transform: rotate(4deg);
  z-index: 1;
}
.art-window {
  height: 30px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 0 13px;
}
.art-window > span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.art-window small {
  font-size: 7px;
  margin-left: 21px;
  color: var(--secondary);
  letter-spacing: 0.3px;
}
.art-dashboard {
  padding: 22px;
}
.art-dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.art-dash-head .art-brand {
  font-size: 16px;
}
.art-dash-head .northstar-mark {
  font-size: 23px;
}
.art-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--soft);
  font-size: 7px;
  font-weight: 550;
}
.art-avatar.light {
  background: var(--soft);
}
.art-dashboard .art-muted {
  margin-top: 26px;
}
.art-dashboard h3 {
  font-size: 27px;
  letter-spacing: -1px;
}
.art-metrics {
  display: flex;
  gap: 40px;
  margin: 20px 0;
}
.art-metrics > div > strong {
  font-size: 27px;
  display: block;
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 500;
}
.art-metrics > div > span {
  font-size: 8px;
  color: var(--secondary);
}
.art-table {
  font-size: 9px;
}
.art-table > div {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.art-table small {
  display: block;
  color: var(--muted);
  font-size: 7px;
}
.art-table > div:first-child {
  justify-content: space-between;
  padding: 8px 0;
}
.art-table .pill {
  margin-left: auto;
}
.art-op-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 25px;
  gap: 10px;
  font-size: 7px;
  color: var(--muted);
}
.art-op-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: 153px;
  margin: 13px 0;
  background: repeating-linear-gradient(
    0deg,
    var(--surface),
    var(--surface) 37px,
    var(--soft) 38px
  );
}
.art-op-grid > div {
  border-left: 1px solid var(--line);
  padding-left: 5px;
}
.art-event {
  display: block;
  font-size: 7px;
  background: var(--soft);
  padding: 13px 7px;
  border-left: 2px solid var(--line-strong);
  border-radius: 3px;
}
.art-event b,
.art-event small {
  display: block;
  font-size: 7px;
  line-height: 1.4;
  margin-top: 3px;
}
.art-event.blue {
  background: var(--soft);
  border-color: var(--line-strong);
  margin-top: 40px;
}
.art-op-grid > div:last-child .art-event {
  margin-top: 70px;
}
.art-op-status {
  font-size: 9px;
  color: var(--secondary);
}
.art-op-status .ico {
  width: 13px;
  margin-right: 5px;
}
.intro-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 29px 0;
  align-items: center;
}
.intro-strip > p:first-child {
  font-size: 21px;
  letter-spacing: -0.7px;
  line-height: 1.5;
}
.intro-strip strong {
  color: var(--ink);
  font-weight: 500;
}
.intro-strip > p:last-child {
  font-size: 13px;
  max-width: 410px;
}
.section {
  padding: 105px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 43px;
}
.section-heading .eyebrow {
  margin-bottom: 20px;
}
.section-heading > p,
.section-heading > div:last-child > p:not(.eyebrow) {
  max-width: 340px;
  font-size: 14px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.service-card:hover {
  background: var(--surface);
  border-color: var(--line-strong);
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 49px;
}
.service-top .ico {
  width: 28px;
  height: 28px;
}
.service-card h3 {
  font-size: 24px;
  letter-spacing: -0.9px;
  margin-bottom: 18px;
}
.service-card .service-promise {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 12px;
  min-height: 48px;
  max-width: 270px;
}
.service-card > p:not(.service-promise) {
  font-size: 13px;
  line-height: 1.75;
}
.service-platforms {
  font-size: 10px;
  font-weight: 550;
  color: var(--secondary);
  margin-top: 23px;
  margin-bottom: 34px;
}
.service-card .text-link {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  justify-content: space-between;
  font-size: 12px;
}
.concept-section {
  background: var(--deep);
  padding: 92px 0 52px;
  color: var(--on-solid);
}
.light .eyebrow {
  color: var(--muted);
}
.light p {
  color: var(--muted);
}
.light h2 {
  color: var(--on-solid);
}
.light .text-link {
  margin-top: 18px;
}
.story-board {
  display: grid;
  grid-template-columns: 1fr 35px 1fr 35px 1fr;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: var(--header-glass);
  padding: 37px 34px;
  gap: 22px;
}
.story-step {
  min-width: 0;
}
.story-number {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.story-visual {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  gap: 7px;
}
.story-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: var(--muted);
  background: var(--header-glass);
}
.story-icon .ico {
  width: 27px;
  height: 27px;
}
.story-visual > .pill {
  font-size: 9px;
}
.story-step h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.65px;
  margin-bottom: 12px;
}
.story-step p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.story-arrow {
  align-self: center;
  justify-self: center;
  color: var(--muted);
}
.story-arrow .ico {
  width: 22px;
}
.avatar-stack {
  display: flex;
  padding-left: 0;
}
.avatar-stack i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border: 2px solid var(--deep);
  border-radius: 50%;
  background: var(--soft);
  color: var(--ink);
  font: 10px var(--font);
  margin-left: -9px;
}
.avatar-stack i:first-child {
  margin-left: 0;
}
.avatar-stack i:nth-child(2) {
  background: var(--danger-soft);
}
.avatar-stack i:nth-child(3) {
  background: var(--accent);
}
.concept-caption {
  font-size: 10px;
  color: var(--muted);
  margin-top: 21px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.process-grid article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.process-grid article > span {
  font-size: 10px;
  color: var(--muted);
}
.process-grid h3 {
  font-size: 19px;
  letter-spacing: -0.6px;
  line-height: 1.2;
  margin: 29px 0 13px;
}
.process-grid p {
  font-size: 12px;
  line-height: 1.8;
}
.studio-note {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  padding: 70px 0;
  gap: 60px;
}
.studio-note > .eyebrow {
  align-self: start;
}
.studio-note h2 {
  font-size: 42px;
  line-height: 1.15;
}
.studio-note > div > p {
  font-size: 15px;
  max-width: 540px;
  margin-top: 26px;
  line-height: 1.8;
}
.founder-signature {
  display: block;
  margin-top: 28px;
  font-size: 17px;
  font-weight: 550;
  letter-spacing: -0.6px;
}
.founder-signature small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
.faq-section .eyebrow {
  margin-bottom: 20px;
}
.faqs details {
  border-top: 1px solid var(--line);
}
.faqs details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.faqs summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.faqs summary .ico {
  width: 17px;
  height: 17px;
  transition: transform 0.2s;
}
.faqs details[open] summary .ico {
  transform: rotate(45deg);
}
.faqs details > p {
  padding: 0 40px 25px 0;
  font-size: 13px;
  line-height: 1.8;
  max-width: 590px;
}
.closing {
  background: var(--soft);
  border-top: 1px solid var(--line);
  padding: 72px 0;
}
.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.closing .eyebrow {
  margin-bottom: 19px;
}
.closing h2 {
  font-size: 56px;
  letter-spacing: -2.7px;
}
.closing p:not(.eyebrow) {
  font-size: 14px;
  margin-top: 20px;
}
.site-footer {
  background: var(--paper);
  padding-top: 56px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 42px;
}
.footer-top p {
  font-size: 11px;
  margin-top: 16px;
}
.footer-top nav {
  display: flex;
  gap: 30px;
  font-size: 12px;
}
.footer-top nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 23px 0;
  font-size: 9px;
  color: var(--secondary);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 35px;
}
.back-link .ico {
  width: 16px;
  height: 16px;
}
.back-link:hover {
  color: var(--ink);
}
/* Service destinations */
.service-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px 0 74px;
}
.service-hero > * {
  min-width: 0;
}
.service-hero h1 {
  font-size: clamp(50px, 5.1vw, 76px);
  margin-top: 23px;
  letter-spacing: -0.065em;
  line-height: 1.03;
}
.service-hero .lead {
  max-width: 485px;
  margin-top: 25px;
  font-size: 16px;
}
.platform-label {
  display: block;
  font-size: 11px;
  font-weight: 550;
  color: var(--secondary);
  margin-top: 24px;
}
.service-art {
  background: var(--soft);
  border-radius: 7px;
  min-height: 475px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px 25px 70px;
  position: relative;
  overflow: clip;
}
.service-art.mobile .art-phone {
  transform: rotate(-5deg);
}
.service-art.company {
  background: var(--soft);
}
.service-art.company .art-portal {
  transform: rotate(-3deg);
  width: 420px;
  max-width: 100%;
}
.service-art.operations {
  background: var(--soft);
}
.service-art.operations .art-operations {
  transform: rotate(2deg);
  width: 450px;
  max-width: 100%;
}
.art-service-caption {
  position: absolute;
  bottom: 20px;
  left: 25px;
  font-size: 8px;
  letter-spacing: 0.13em;
  color: var(--secondary);
}
.service-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  border-top: 1px solid var(--line);
}
.service-details h2 {
  font-size: 45px;
  margin: 22px 0;
}
.service-details > div > p.muted {
  max-width: 400px;
  font-size: 13px;
}
.feature-list article {
  display: flex;
  gap: 23px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}
.feature-list article:first-child {
  padding-top: 0;
  border-top: 0;
}
.feature-list article > span {
  color: var(--secondary);
}
.feature-list h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.feature-list p {
  font-size: 13px;
  line-height: 1.8;
}
.scenario {
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 6px;
  padding: 45px 50px;
}
.scenario h2 {
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: -1.1px;
  max-width: 910px;
  margin: 23px 0;
}
.service-next {
  padding: 42px 0 80px;
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 12px;
}
.service-next > span {
  margin-right: auto;
  color: var(--muted);
  font-size: 11px;
}
.service-next > a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
.service-next > a:hover {
  text-decoration: underline;
}
/* Contact and shared dialog */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  padding: 88px 0 100px;
}
.contact-intro h1 {
  font-size: 66px;
  margin: 22px 0 24px;
  letter-spacing: -0.065em;
}
.contact-intro .lead {
  font-size: 16px;
  max-width: 400px;
}
.contact-expect {
  border-top: 1px solid var(--line);
  margin-top: 46px;
  padding-top: 25px;
}
.contact-expect h2 {
  font-size: 21px;
  letter-spacing: -0.6px;
}
.contact-expect > p {
  font-size: 13px;
  margin-top: 15px;
  max-width: 350px;
}
.contact-person {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 25px;
  font-size: 12px;
}
.person-monogram {
  width: 43px;
  height: 43px;
  background: var(--soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.contact-person small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}
.contact-availability {
  display: flex;
  gap: 12px;
  padding: 17px 20px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 5px;
  align-items: flex-start;
}
.contact-availability .tiny-square {
  margin-top: 6px;
}
.contact-availability p {
  font-size: 11px;
  line-height: 1.7;
}
.contact-availability strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  margin-bottom: 2px;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  padding: 34px;
}
.contact-card-heading {
  margin-bottom: 28px;
}
.contact-card-heading h2 {
  font-size: 23px;
  letter-spacing: -0.9px;
}
.contact-card-heading small {
  font-size: 11px;
  color: var(--muted);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px 17px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field label,
.label {
  font-size: 11px;
  font-weight: 550;
}
.optional {
  font-weight: 400;
  color: var(--muted);
}
input,
textarea,
select {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 4px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
  min-height: 44px;
}
input::placeholder,
textarea::placeholder {
  color: var(--muted);
}
textarea {
  resize: vertical;
  min-height: 120px;
}
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--danger-soft);
}
.field-error {
  font-size: 10px;
  color: var(--danger);
  line-height: 1.4;
}
.field-error:empty {
  display: none;
}
.interest-group {
  border: 0;
  margin: 28px 0;
  padding: 0;
}
.interest-group legend {
  font-size: 11px;
  font-weight: 550;
  margin-bottom: 12px;
}
.interest-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.interest-option {
  cursor: pointer;
  display: flex;
  gap: 8px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px;
  font-size: 10px;
  min-height: 44px;
}
.interest-option:has(input:checked) {
  border-color: var(--line-strong);
  background: var(--soft);
}
.interest-option input {
  appearance: auto;
  accent-color: var(--blue);
  width: 13px;
  height: 13px;
  min-height: 0;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}
.form-submit {
  margin-top: 25px;
}
.form-submit .btn {
  width: 100%;
  justify-content: space-between;
}
.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 16px;
  font-size: 10px;
  line-height: 1.6;
}
.privacy-note .ico {
  width: 13px;
  height: 16px;
}
.contact-direct {
  font-size: 13px;
  margin-top: 28px;
  overflow-wrap: anywhere;
}
.contact-direct a {
  text-decoration: underline;
}
.modal-open {
  overflow: hidden;
}
dialog {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 0;
  width: min(610px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 100px #11182740;
}
dialog::backdrop {
  background: #111827cc;
  backdrop-filter: blur(6px);
}
.dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  border-bottom: 1px solid var(--line);
}
.icon-button {
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-button:hover {
  background: var(--soft);
}
.icon-button .ico {
  width: 17px;
  height: 17px;
}
.dialog-body {
  padding: 29px;
}
.dialog-body h2 {
  font-size: 33px;
  outline: none;
}
.dialog-intro {
  font-size: 13px;
  margin: 18px 0 20px;
  line-height: 1.7;
}
.inquiry-text {
  display: block;
  width: 100%;
  height: 240px;
  line-height: 1.65;
  font-size: 12px;
  margin: 8px 0 20px;
}
.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.dialog-actions .btn {
  font-size: 12px;
  min-height: 44px;
  padding: 11px 14px;
  gap: 12px;
}
.demo-notice {
  font-size: 10px;
  margin-top: 16px;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 25px;
  transform: translate(-50%, 20px);
  z-index: 1000;
  background: var(--ink);
  color: var(--on-solid);
  border-radius: 5px;
  box-shadow: 0 4px 25px #11182722;
  padding: 13px 22px;
  font-size: 12px;
  max-width: calc(100% - 30px);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.error-page {
  padding: 105px 0 140px;
}
.error-page h1 {
  font-size: 80px;
  margin: 25px 0;
}
.error-page > p {
  font-size: 17px;
}
/* Dedicated working concept */
.demo-page {
  padding-bottom: 30px;
}
.demo-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: end;
  padding: 37px 0 43px;
}
.demo-intro h1 {
  font-size: 59px;
  letter-spacing: -3.8px;
  margin-top: 19px;
  line-height: 1.04;
}
.demo-intro .lead {
  font-size: 15px;
  max-width: 460px;
}
.demo-disclosure {
  font-size: 10px;
  margin-top: 17px;
}
.experience {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: clip;
  background: var(--soft);
}
.experience-top {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 0 24px;
  gap: 16px;
}
.role-tabs {
  display: flex;
  gap: 22px;
  min-width: 0;
}
.role-tabs button {
  display: flex;
  align-items: center;
  gap: 11px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  min-height: 70px;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.role-tabs button span {
  font-size: 9px;
  color: var(--muted);
}
.role-tabs button .ico {
  width: 17px;
  height: 17px;
  margin-left: 5px;
}
.role-tabs button[aria-selected="true"] {
  border-bottom-color: var(--ink);
  color: var(--ink);
}
.role-tabs button[aria-selected="false"] {
  color: var(--secondary);
}
.role-tabs button:hover {
  color: var(--ink);
}
.reset-demo {
  border: 0;
  background: transparent;
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--secondary);
  white-space: nowrap;
}
.reset-demo .ico {
  width: 14px;
}
.experience-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  font-size: 10px;
  color: var(--secondary);
  background: var(--paper);
}
.experience-bottom > span:first-child {
  display: flex;
  gap: 8px;
  align-items: center;
}
.experience-bottom .tiny-square {
  width: 5px;
  height: 5px;
}
.demo-takeaway {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 0 60px;
}
.demo-takeaway h2 {
  font-size: 43px;
  margin-top: 18px;
}
.demo-takeaway > div > p:not(.eyebrow) {
  font-size: 15px;
  margin-bottom: 25px;
}
.demo-nojs {
  padding: 55px;
}
.demo-nojs h2 {
  font-size: 35px;
  margin-bottom: 20px;
}
@media (min-width: 1600px) {
  .hero {
    gap: 75px;
  }
  .hero-devices > .art-portal {
    left: 130px;
  }
  .hero-art {
    margin-left: 0;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 30px;
    padding: 55px 0;
  }
  .hero h1 {
    font-size: clamp(60px, 7vw, 85px);
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-devices {
    height: 405px;
  }
  .hero-devices > .art-phone {
    width: 205px;
    left: 15px;
    top: 48px;
  }
  .art-phone h3 {
    font-size: 22px;
  }
  .art-phone-content {
    padding: 15px;
  }
  .hero-devices > .art-portal {
    left: 120px;
    width: 375px;
  }
  .art-note {
    font-size: 20px;
    right: 14px;
    bottom: 28px;
  }
  .art-top {
    font-size: 7px;
    padding: 20px;
  }
  .hero-actions {
    gap: 19px;
  }
  .hero .btn {
    padding: 14px 17px;
    gap: 18px;
  }
  .service-card {
    padding: 23px;
  }
  .service-promise {
    min-height: 72px;
  }
  .desktop-nav {
    gap: 24px;
  }
  .contact-layout {
    gap: 50px;
  }
  .contact-intro h1 {
    font-size: 56px;
  }
  .contact-card {
    padding: 28px;
  }
  .story-board {
    padding: 29px 25px;
    gap: 12px;
    grid-template-columns: 1fr 22px 1fr 22px 1fr;
  }
  .story-step h3 {
    font-size: 20px;
  }
  .service-hero {
    gap: 35px;
  }
  .service-hero .hero-actions {
    gap: 12px;
  }
  .service-art {
    min-height: 450px;
  }
  .service-details {
    gap: 45px;
  }
  .role-tabs {
    gap: 15px;
  }
  .footer-top nav {
    gap: 22px;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    gap: 18px;
    font-size: 11px;
  }
  .brand {
    font-size: 26px;
    gap: 10px;
  }
  .brand > svg {
    width: 36px;
    height: 36px;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .hero h1 {
    font-size: 62px;
  }
  .hero-description {
    font-size: 14px;
  }
  .desktop-break {
    display: none;
  }
  .hero-signoff {
    max-width: 235px;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero .btn {
    font-size: 11px;
  }
  .hero .text-link {
    font-size: 11px;
  }
  .hero-art .art-top {
    display: none;
  }
  .hero-devices {
    height: 420px;
  }
  .hero-devices > .art-phone {
    left: 22px;
    top: 67px;
    width: 190px;
    transform: rotate(-4deg);
  }
  .art-record {
    padding: 11px;
  }
  .art-phone h3 {
    font-size: 21px;
  }
  .art-phone .art-muted {
    margin-top: 18px;
  }
  .hero-devices > .art-portal {
    left: 85px;
    top: 26px;
    width: 340px;
  }
  .art-note {
    display: none;
  }
  .art-bottom {
    margin-inline: 18px;
    font-size: 11px;
  }
  .art-bottom > span > span {
    font-size: 8px;
  }
  .intro-strip {
    gap: 45px;
  }
  .services-grid {
    gap: 12px;
  }
  .service-card {
    padding: 20px;
  }
  .service-card h3 {
    font-size: 22px;
  }
  .service-card .service-promise {
    font-size: 14px;
    min-height: 63px;
  }
  .service-card > p:not(.service-promise) {
    font-size: 12px;
  }
  .service-card .text-link {
    font-size: 10px;
    gap: 5px;
  }
  .service-platforms {
    font-size: 9px;
    min-height: 29px;
  }
  .section {
    padding: 80px 0;
  }
  .section-heading {
    gap: 35px;
  }
  .section-heading > p,
  .section-heading > div:last-child > p:not(.eyebrow) {
    max-width: 275px;
    font-size: 13px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .process-grid h3 {
    margin-top: 20px;
  }
  .studio-note,
  .faq-section {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
  }
  .studio-note h2 {
    font-size: 35px;
  }
  .closing h2 {
    font-size: 45px;
  }
  .closing .btn {
    font-size: 12px;
    gap: 12px;
  }
  .footer-top nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 25px;
  }
  .service-hero {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .service-hero h1 {
    font-size: 52px;
  }
  .service-hero .lead {
    font-size: 14px;
  }
  .service-art {
    min-height: 400px;
    padding: 25px 16px 65px;
  }
  .service-art .art-phone {
    width: 195px;
  }
  .service-art .art-dashboard {
    padding: 16px;
  }
  .service-art .art-dashboard h3 {
    font-size: 22px;
  }
  .service-art .art-metrics {
    gap: 25px;
  }
  .service-details h2 {
    font-size: 35px;
  }
  .contact-layout {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 32px;
  }
  .contact-intro h1 {
    font-size: 47px;
  }
  .contact-card {
    padding: 23px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout .lead {
    font-size: 14px;
  }
  .contact-availability {
    padding: 15px;
  }
  .contact-expect > p {
    font-size: 12px;
  }
  .demo-intro {
    gap: 40px;
  }
  .demo-intro h1 {
    font-size: 50px;
    letter-spacing: -3px;
  }
  .role-tabs {
    gap: 14px;
  }
  .role-tabs button {
    font-size: 11px;
    gap: 7px;
  }
  .role-tabs button .ico {
    display: none;
  }
  .experience-top {
    padding-inline: 20px;
    gap: 12px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 90px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 72px;
    gap: 12px;
  }
  .brand {
    font-size: 25px;
    letter-spacing: -1.2px;
  }
  .brand > svg {
    width: 34px;
    height: 34px;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-menu {
    display: block;
    position: relative;
  }
  .mobile-menu summary {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 12px;
    padding: 10px 0 10px 15px;
    min-height: 44px;
  }
  .mobile-menu summary .ico {
    width: 17px;
    height: 17px;
  }
  .mobile-menu[open] summary .ico {
    transform: rotate(45deg);
  }
  .mobile-menu nav {
    position: absolute;
    right: -1px;
    top: 56px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 15px 30px #11182715;
    border-radius: 5px;
    min-width: 240px;
    padding: 10px 20px;
  }
  .mobile-menu nav a {
    font-size: 14px;
    padding: 13px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu nav a:last-child {
    border: 0;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 46px 0 39px;
    gap: 35px;
  }
  .hero h1 {
    font-size: clamp(61px, 11.5vw, 84px);
  }
  .hero-copy > .eyebrow {
    font-size: 9px;
    margin-bottom: 23px;
  }
  .hero-description {
    font-size: 15px;
    max-width: 360px;
    margin-top: 25px;
  }
  .hero-actions {
    margin-top: 25px;
    gap: 24px;
  }
  .hero .btn {
    font-size: 12px;
    padding: 15px 19px;
  }
  .hero .text-link {
    font-size: 12px;
  }
  .hero-signoff {
    max-width: none;
    margin-top: 19px;
    font-size: 10px;
  }
  .hero-art {
    max-width: 540px;
    width: 100%;
  }
  .hero-art .art-top {
    display: flex;
    padding: 18px 20px;
    font-size: 7px;
  }
  .hero-devices {
    height: 385px;
  }
  .hero-devices > .art-phone {
    width: 204px;
    left: 28px;
    top: 24px;
  }
  .hero-devices > .art-portal {
    left: 142px;
    top: 5px;
    width: 340px;
  }
  .art-note {
    display: block;
    font-size: 21px;
    right: 22px;
    bottom: 27px;
  }
  .art-bottom {
    padding: 16px 0;
    margin-inline: 20px;
    font-size: 12px;
  }
  .art-bottom > span > span {
    font-size: 9px;
  }
  .intro-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
  }
  .intro-strip > p:first-child {
    font-size: 21px;
  }
  .intro-strip > p:last-child {
    font-size: 12px;
    max-width: 340px;
  }
  .section {
    padding: 64px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p,
  .section-heading > div:last-child > p:not(.eyebrow) {
    margin-top: 22px;
    max-width: 400px;
    font-size: 13px;
  }
  .section-heading .eyebrow {
    margin-bottom: 16px;
  }
  h2 {
    font-size: 39px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .service-card {
    padding: 26px;
  }
  .service-top {
    margin-bottom: 25px;
  }
  .service-card h3 {
    font-size: 27px;
    margin-bottom: 16px;
  }
  .service-card .service-promise {
    min-height: 0;
    font-size: 16px;
    max-width: 300px;
  }
  .service-card > p:not(.service-promise) {
    font-size: 13px;
    max-width: 360px;
  }
  .service-platforms {
    font-size: 10px;
    margin-top: 20px;
    margin-bottom: 23px;
    min-height: 0;
  }
  .service-card .text-link {
    font-size: 12px;
    padding-top: 19px;
  }
  .concept-section {
    padding: 62px 0 30px;
  }
  .light h2 {
    font-size: 40px;
  }
  .story-board {
    display: block;
    padding: 25px 26px;
  }
  .story-step {
    padding: 0 0 26px;
  }
  .story-step + .story-arrow {
    display: block;
    text-align: center;
    padding: 0 0 25px;
  }
  .story-step:last-child {
    padding: 0;
  }
  .story-arrow .ico {
    transform: rotate(90deg);
    width: 24px;
    height: 24px;
  }
  .story-visual {
    height: 84px;
    max-width: 250px;
  }
  .story-step h3 {
    font-size: 24px;
  }
  .story-step p {
    font-size: 12px;
    max-width: 330px;
  }
  .concept-caption {
    font-size: 9px;
    line-height: 1.7;
  }
  .process-grid {
    gap: 32px 22px;
  }
  .process-grid h3 {
    font-size: 19px;
  }
  .process-grid p {
    font-size: 12px;
  }
  .studio-note {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0;
  }
  .studio-note h2 {
    font-size: 38px;
  }
  .studio-note > div > p {
    font-size: 14px;
    margin-top: 20px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .faq-section h2 br {
    display: none;
  }
  .faqs summary {
    font-size: 13px;
    padding: 22px 0;
  }
  .faqs details > p {
    padding-right: 12px;
    font-size: 12px;
  }
  .closing {
    padding: 49px 0;
  }
  .closing-inner {
    display: block;
  }
  .closing h2 {
    font-size: 44px;
    letter-spacing: -2px;
  }
  .closing .btn {
    margin-top: 29px;
    font-size: 12px;
    padding-inline: 20px;
  }
  .closing p:not(.eyebrow) {
    font-size: 13px;
  }
  .site-footer {
    padding-top: 39px;
  }
  .footer-top {
    display: block;
    padding-bottom: 31px;
  }
  .footer-top nav {
    margin-top: 28px;
    gap: 13px 25px;
    font-size: 11px;
  }
  .footer-bottom {
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
    font-size: 8px;
  }
  .footer-bottom > span:nth-child(2) {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .footer-bottom > span:last-child {
    text-align: right;
  }
  .back-link {
    margin-top: 25px;
  }
  .service-hero {
    grid-template-columns: 1fr;
    padding: 35px 0 50px;
    gap: 35px;
  }
  .service-hero h1 {
    font-size: 57px;
    max-width: 520px;
  }
  .service-hero .lead {
    font-size: 15px;
    max-width: 450px;
  }
  .service-hero .hero-actions {
    gap: 17px;
  }
  .service-hero .btn {
    font-size: 12px;
    padding-inline: 17px;
  }
  .platform-label {
    font-size: 10px;
  }
  .service-art {
    min-height: 410px;
  }
  .service-art .art-phone {
    width: 218px;
  }
  .service-art.company .art-portal,
  .service-art.operations .art-operations {
    max-width: 90%;
  }
  .service-art .art-dashboard {
    padding: 22px;
  }
  .service-art .art-dashboard h3 {
    font-size: 25px;
  }
  .service-details {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-details h2 {
    font-size: 38px;
  }
  .feature-list article {
    padding-block: 23px;
  }
  .feature-list p {
    font-size: 13px;
  }
  .scenario {
    padding: 31px 25px;
  }
  .scenario h2 {
    font-size: 25px;
    line-height: 1.4;
    letter-spacing: -0.8px;
  }
  .service-next {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 0 50px;
  }
  .service-next > a {
    width: 100%;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line);
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 37px;
    padding: 46px 0 60px;
  }
  .contact-intro h1 {
    font-size: 56px;
    margin-top: 21px;
  }
  .contact-intro .lead {
    font-size: 15px;
  }
  .contact-expect {
    margin-top: 29px;
    padding-top: 23px;
  }
  .contact-expect > p {
    font-size: 13px;
    max-width: 400px;
  }
  .contact-expect h2 {
    font-size: 21px;
  }
  .contact-person {
    margin-top: 21px;
  }
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-card {
    padding: 25px;
  }
  .contact-availability {
    padding: 17px;
  }
  .demo-intro {
    grid-template-columns: 1fr;
    gap: 23px;
    padding: 30px 0;
  }
  .demo-intro h1 {
    font-size: 53px;
    letter-spacing: -3px;
  }
  .demo-intro .lead {
    font-size: 14px;
  }
  .demo-disclosure {
    font-size: 9px;
    margin-top: 12px;
  }
  .experience-top {
    display: block;
    padding: 0 14px 10px;
  }
  .role-tabs {
    justify-content: space-between;
    gap: 8px;
  }
  .role-tabs button {
    font-size: 10px;
    gap: 5px;
    min-height: 57px;
  }
  .role-tabs button span {
    font-size: 8px;
  }
  .reset-demo {
    padding: 7px 0 0;
    margin-left: auto;
    font-size: 9px;
  }
  .experience-bottom {
    flex-direction: column;
    gap: 4px;
    padding: 12px 15px;
    font-size: 9px;
  }
  .demo-takeaway {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 53px 0 25px;
  }
  .demo-takeaway h2 {
    font-size: 37px;
  }
  .demo-takeaway > div > p:not(.eyebrow) {
    font-size: 14px;
  }
  .error-page {
    padding: 60px 0 90px;
  }
  .error-page h1 {
    font-size: 53px;
    letter-spacing: -3px;
  }
  .error-page > p {
    font-size: 14px;
  }
  .dialog-top {
    padding: 16px 20px;
  }
  .dialog-body {
    padding: 23px;
  }
  .dialog-body h2 {
    font-size: 29px;
  }
  .dialog-actions .btn {
    flex-grow: 1;
  }
}
@media (max-width: 390px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 59px;
  }
  .hero .hero-actions {
    gap: 17px;
  }
  .hero-devices > .art-phone {
    left: 20px;
    width: 194px;
  }
  .hero-devices > .art-portal {
    left: 119px;
    width: 325px;
  }
  .art-note {
    right: 14px;
    font-size: 18px;
  }
  .hero-devices {
    height: 373px;
  }
  .hero-art .art-top {
    font-size: 6.5px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid article {
    padding-top: 17px;
  }
  .process-grid h3 {
    margin: 16px 0 10px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 22px;
  }
  .interest-option {
    font-size: 9px;
    padding: 10px;
  }
  .contact-intro h1 {
    font-size: 50px;
  }
  .service-hero h1 {
    font-size: 51px;
  }
  .role-tabs button {
    font-size: 9px;
    gap: 4px;
  }
  .role-tabs {
    gap: 6px;
  }
  .experience-top {
    padding-inline: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .btn:hover {
    transform: none;
  }
}

/* Keep the homepage illustrations inside their stage, clear of its caption. */
.hero-devices > .art-phone {
  top: 40px;
  left: 38px;
  transform: rotate(-5deg) scale(0.82);
  transform-origin: top left;
}
.hero-devices > .art-portal {
  top: 22px;
  left: 213px;
  transform: rotate(4deg) scale(0.87);
  transform-origin: top left;
}
.art-note {
  display: none;
}
@media (max-width: 1150px) and (min-width: 701px) {
  .hero-devices > .art-phone {
    top: 63px;
    left: 20px;
    transform: rotate(-5deg) scale(0.78);
  }
  .hero-devices > .art-portal {
    top: 20px;
    left: 95px;
    transform: rotate(4deg) scale(0.76);
  }
}
@media (max-width: 700px) {
  .hero-devices > .art-phone {
    top: 49px;
    left: 22px;
    transform: rotate(-5deg) scale(0.79);
  }
  .hero-devices > .art-portal {
    top: 16px;
    left: 134px;
    transform: rotate(4deg) scale(0.71);
  }
}
@media (max-width: 390px) {
  .hero-devices > .art-phone {
    left: 18px;
    transform: rotate(-5deg) scale(0.78);
  }
  .hero-devices > .art-portal {
    left: 111px;
    transform: rotate(4deg) scale(0.69);
  }
}

.role-tabs button {
  font-size: 13px;
}
.service-card > p:not(.service-promise) {
  font-size: 14px;
}
.process-grid p {
  font-size: 13px;
}
@media (max-width: 700px) {
  .role-tabs button {
    font-size: 12px;
  }
  .role-tabs button > span {
    display: none;
  }
  .role-tabs {
    gap: 12px;
  }
  .faqs details > p {
    font-size: 13px;
  }
}
