@font-face {
  font-family: "Montserrat";
  src: url("/assets/montserrat-latin-v31.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --blue-950: #032a42;
  --blue-900: #073a5a;
  --blue-800: #0b4b6e;
  --blue-700: #176787;
  --orange: #f47b2a;
  --orange-dark: #d95f10;
  --ink: #082f49;
  --text: #3f647b;
  --mist: #eef5f8;
  --line: #ccdae2;
  --white: #ffffff;
  --shell: min(1280px, calc(100vw - 64px));
  --shadow: 0 26px 70px rgba(2, 42, 66, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--white);
  color: var(--blue-900);
  font-weight: 700;
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(7, 58, 90, 0.12);
  background: rgba(255, 255, 255, 0.98);
  color: var(--blue-900);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 112px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--blue-900);
  text-decoration: none;
}

.brand-symbol {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 82px;
  height: 62px;
}

.brand-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  display: grid;
  gap: 3px;
}

.brand-name strong {
  color: var(--blue-900);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.brand-name span {
  color: var(--blue-700);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.7vw, 27px);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: var(--blue-900);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--orange);
  transition: right 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.nav-contact {
  padding: 12px 18px;
  border-radius: 4px;
  background: var(--orange);
  color: var(--white) !important;
}

.nav-contact:hover {
  background: var(--orange-dark);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 44px;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 30px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding: 190px 0 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(36, 142, 166, 0.24), transparent 32%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900) 65%, #0a4665);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -32% 39%;
  height: 72%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  transform: skewX(-22deg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 48%, #000);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
  align-items: center;
  gap: 80px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(48px, 5vw, 76px);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4vw, 60px);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 15px;
  font-size: 27px;
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 54px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-product {
  position: relative;
  min-height: 440px;
  isolation: isolate;
}

.hero-product::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 34px 6px 14px 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  transform: rotate(2.5deg);
}

.hero-app-frame {
  position: absolute;
  inset: 56px 18px 60px 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: #eaf2f6;
  box-shadow: 0 28px 72px rgba(1, 25, 39, 0.38);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
  transform-origin: center;
}

.hero-app-frame img {
  display: block;
  width: 100%;
  height: calc(100% - 34px);
  object-fit: cover;
  object-position: center top;
}

.hero-app-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 12px;
  background: var(--white);
  color: var(--blue-900);
}

.hero-app-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a9bcc7;
}

.hero-app-bar > span:first-child {
  background: var(--orange);
}

.hero-app-bar strong {
  margin-left: auto;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-product-note {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 172px;
  padding: 13px 15px;
  border-left: 3px solid var(--orange);
  background: rgba(3, 42, 66, 0.96);
  box-shadow: 0 15px 34px rgba(1, 25, 39, 0.28);
}

.hero-product-note span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
}

.hero-product-note strong {
  color: var(--white);
  font-size: 13px;
}

.hero-product-note small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
}

.hero-product-note--top {
  top: 16px;
  right: 0;
}

.hero-product-note--bottom {
  bottom: 28px;
  left: 0;
}

.hero-product-status {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 24px;
  display: flex;
  gap: 5px;
}

.hero-product-status span {
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(3, 42, 66, 0.9);
  color: var(--white);
  font-size: 8px;
  font-weight: 750;
  text-transform: uppercase;
}

.capability-bar {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.capability-bar span {
  padding: 26px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.capability-bar span:last-child {
  border-right: 0;
}

.section {
  padding: 124px 0;
}

.section-light {
  background: var(--white);
}

.section-mist {
  background: var(--mist);
}

.section-blue {
  overflow: hidden;
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.76);
}

.section-intro {
  max-width: 850px;
  margin-bottom: 64px;
}

.section-intro > p:last-child,
.split-intro > p {
  margin: 0;
  font-size: 17px;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: 80px;
  max-width: none;
}

.split-intro h2 {
  margin-bottom: 0;
}

.section-intro-on-blue h2 {
  color: var(--white);
}

.section-intro-on-blue > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-card {
  padding: 48px 38px 48px 0;
}

.solution-card + .solution-card {
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.card-number {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.solution-card p {
  margin: 0 0 26px;
}

.solution-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}

.solution-card li::before {
  content: "—";
  margin-right: 9px;
  color: var(--orange);
}

.showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 58, 90, 0.12);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 20px 58px rgba(2, 42, 66, 0.13);
}

.showcase-main {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  margin-bottom: 28px;
}

.showcase-copy {
  padding: 54px;
}

.showcase-label {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.showcase-copy p:last-of-type {
  margin-bottom: 0;
}

.showcase-figure {
  position: relative;
  margin: 0;
  background:
    linear-gradient(rgba(7, 58, 90, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 58, 90, 0.035) 1px, transparent 1px),
    #eaf2f6;
  background-size: 24px 24px;
}

.showcase-main .showcase-figure {
  align-self: stretch;
  padding: 28px 28px 18px;
}

.showcase-main .showcase-figure img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 1px solid rgba(7, 58, 90, 0.18);
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(2, 42, 66, 0.13);
}

.showcase-figure figcaption {
  padding: 14px 0 0;
  color: var(--text);
  font-size: 11px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.feature-pills span {
  padding: 8px 11px;
  border-radius: 99px;
  background: var(--mist);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.showcase-small .showcase-figure {
  height: 340px;
  padding: 18px;
}

.showcase-small .showcase-figure img {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(7, 58, 90, 0.16);
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(2, 42, 66, 0.12);
}

.showcase-small .showcase-copy {
  padding: 38px 42px 44px;
}

.showcase-small h3 {
  font-size: 24px;
}

.ar-section {
  overflow: hidden;
}

.ar-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
  align-items: center;
  gap: 90px;
}

.ar-copy > p:not(.eyebrow) {
  max-width: 730px;
  font-size: 17px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin-top: 36px;
}

.check-grid span {
  position: relative;
  padding: 16px 16px 16px 43px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.check-grid span::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 16px;
  color: var(--orange);
  transform: translateY(-50%);
}

.ar-visual {
  position: relative;
  margin: 0;
}

.phone-frame {
  width: min(410px, 100%);
  margin-inline: auto;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--blue-950);
  box-shadow: var(--shadow);
}

.ar-screen {
  overflow: hidden;
  border-radius: 15px;
  background: #e8eef1;
}

.ar-screen-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  background: var(--white);
  color: var(--ink);
}

.ar-screen-head strong {
  font-size: 15px;
  letter-spacing: 0.08em;
}

.ar-screen-head span {
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
}

.ar-stage {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 490px;
  padding: 40px 18px 58px;
  background:
    linear-gradient(160deg, rgba(7, 58, 90, 0.12), transparent 45%),
    linear-gradient(180deg, #d5e0e5 0 64%, #b8c8cf 64% 65%, #e9eff2 65%);
}

.ar-stage::before,
.ar-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 34%;
  height: 180px;
  border-left: 1px solid rgba(7, 58, 90, 0.16);
  transform-origin: bottom;
}

.ar-stage::before {
  left: 27%;
  transform: rotate(58deg);
}

.ar-stage::after {
  right: 27%;
  transform: rotate(-58deg);
}

.ar-stage img {
  position: relative;
  z-index: 2;
  width: 92%;
  mix-blend-mode: multiply;
  filter: contrast(1.08);
}

.ar-axis {
  position: absolute;
  z-index: 1;
  bottom: 34%;
  background: rgba(7, 58, 90, 0.22);
}

.ar-axis-x {
  right: 12%;
  left: 12%;
  height: 1px;
}

.ar-axis-y {
  top: 16%;
  bottom: 14%;
  left: 50%;
  width: 1px;
}

.ar-target {
  position: absolute;
  z-index: 3;
  top: 45%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(244, 123, 42, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(244, 123, 42, 0.12);
}

.ar-target::before,
.ar-target::after {
  content: "";
  position: absolute;
  background: var(--orange);
}

.ar-target::before {
  top: 50%;
  right: -10px;
  left: -10px;
  height: 1px;
}

.ar-target::after {
  top: -10px;
  bottom: -10px;
  left: 50%;
  width: 1px;
}

.ar-scale {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 16px;
  padding: 6px 9px;
  border-radius: 3px;
  background: rgba(3, 42, 66, 0.86);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
}

.ar-screen-controls {
  display: grid;
  grid-template-columns: 1fr 0.7fr auto;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: var(--white);
  color: var(--ink);
}

.ar-screen-controls span {
  display: grid;
}

.ar-screen-controls small {
  color: var(--text);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.ar-screen-controls strong {
  font-size: 11px;
}

.ar-screen-controls b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 22px;
}

.ar-visual figcaption {
  max-width: 410px;
  margin: 16px auto 0;
  font-size: 11px;
  text-align: center;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-flow div {
  position: relative;
  min-height: 190px;
  padding: 34px 24px;
}

.process-flow div + div {
  border-left: 1px solid var(--line);
}

.process-flow span {
  display: block;
  margin-bottom: 38px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.process-flow strong,
.process-flow small {
  display: block;
}

.process-flow strong {
  color: var(--ink);
  font-size: 14px;
}

.process-flow small {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.5;
}

.reference-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 38px;
}

.reference-note p {
  max-width: 890px;
  margin: 0;
  font-size: 13px;
}

.reference-note a {
  flex: none;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.reference-note a span {
  color: var(--orange);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.steps li {
  min-height: 280px;
  padding: 36px 30px;
}

.steps li + li {
  border-left: 1px solid var(--line);
}

.steps li > span {
  display: block;
  margin-bottom: 64px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.steps h3 {
  font-size: 20px;
}

.steps p {
  margin-bottom: 0;
  font-size: 13px;
}

.founder-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(238, 245, 248, 0.98)),
    var(--mist);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.35fr);
  align-items: stretch;
  gap: clamp(42px, 7vw, 100px);
}

.founder-monogram {
  display: grid;
  min-height: 330px;
  padding: 38px;
  border-top: 5px solid var(--orange);
  background: var(--blue-900);
  color: var(--white);
  box-shadow: var(--shadow);
}

.founder-monogram span {
  align-self: center;
  font-size: clamp(68px, 8vw, 112px);
  font-weight: 350;
  letter-spacing: -0.08em;
  line-height: 1;
}

.founder-monogram small {
  align-self: end;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-copy {
  align-self: center;
}

.founder-copy h2 {
  max-width: 830px;
}

.founder-copy > p:not(.eyebrow) {
  max-width: 760px;
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  gap: 14px;
  margin-top: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  color: var(--orange);
}

.profile-main {
  padding-top: 112px;
}

.profile-hero {
  padding: clamp(86px, 10vw, 145px) 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(36, 142, 166, 0.22), transparent 30%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900) 68%, #0a4665);
  color: rgba(255, 255, 255, 0.78);
}

.profile-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: clamp(46px, 8vw, 110px);
}

.profile-hero h1 {
  max-width: 820px;
}

.profile-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  font-size: 19px;
}

.profile-signature {
  display: grid;
  min-height: 350px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-top: 5px solid var(--orange);
  background: rgba(3, 42, 66, 0.72);
  box-shadow: 0 28px 72px rgba(1, 25, 39, 0.3);
}

.profile-signature strong {
  align-self: center;
  color: var(--white);
  font-size: clamp(76px, 9vw, 128px);
  font-weight: 350;
  letter-spacing: -0.09em;
  line-height: 1;
}

.profile-signature span,
.profile-signature small {
  align-self: end;
}

.profile-signature span {
  color: var(--white);
  font-size: 15px;
  font-weight: 750;
}

.profile-signature small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  text-transform: uppercase;
}

.profile-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 8vw, 112px);
}

.profile-intro blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.18;
}

.profile-intro blockquote::before {
  content: "«";
  display: block;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 54px;
  line-height: 0.7;
}

.profile-intro-copy p:first-child {
  margin-top: 0;
}

.capability-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-matrix article {
  min-height: 250px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.capability-matrix span {
  display: block;
  margin-bottom: 44px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 850;
}

.capability-matrix h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.025em;
}

.capability-matrix p {
  margin: 0;
  font-size: 13px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.principles article {
  padding: 32px;
  border-top: 4px solid var(--orange);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(2, 42, 66, 0.1);
}

.principles h2 {
  font-size: 22px;
}

.principles p {
  margin-bottom: 0;
  font-size: 13px;
}

.cta-section {
  padding: 94px 0;
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.78);
}

.cta-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  align-items: center;
  gap: 110px;
}

.cta-layout h2 {
  margin: 0;
  color: var(--white);
}

.cta-layout p {
  margin-top: 0;
}

.cta-layout .button {
  margin-top: 18px;
}

.site-footer {
  padding: 76px 0 30px;
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 70px;
}

.brand-footer {
  margin-bottom: 22px;
}

.brand-footer .brand-symbol {
  width: 66px;
  height: 52px;
  padding: 4px;
  background: var(--white);
}

.brand-footer .brand-name strong {
  color: var(--white);
}

.brand-footer .brand-name span {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--white);
  font-weight: 650;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 54px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
}

.legal-main {
  padding: 180px 0 100px;
  background: var(--mist);
}

.legal-card {
  max-width: 920px;
  padding: 60px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 64px);
}

.legal-card h2 {
  margin-top: 42px;
  font-size: 24px;
}

.legal-card a {
  color: var(--blue-700);
}

.site-header-solid {
  position: absolute;
  background: var(--white);
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 980px);
  }

  .header-inner {
    min-height: 96px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .hero {
    min-height: 900px;
  }

  .hero-layout {
    grid-template-columns: 1fr 420px;
    gap: 36px;
  }

  .hero-product {
    min-height: 410px;
  }

  .showcase-main {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .showcase-copy {
    padding: 40px;
  }

  .process-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-flow div:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-flow div:nth-child(5) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  :root {
    --shell: calc(100vw - 34px);
  }

  .site-header {
    color: var(--blue-900);
  }

  .header-inner {
    position: relative;
    min-height: 86px;
    border-color: var(--line);
  }

  .site-header::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 86px;
    background: var(--white);
  }

  .brand,
  .brand-footer {
    color: var(--blue-900);
  }

  .brand-symbol {
    width: 58px;
    height: 48px;
  }

  .brand-name strong {
    font-size: 14px;
  }

  .brand-name span {
    font-size: 6px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 120;
    inset: 86px 0 auto;
    display: none;
    max-height: calc(100dvh - 86px);
    overflow-y: auto;
    padding: 24px 18px 34px;
    border-top: 1px solid var(--line);
    background: var(--white);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 14px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav .nav-contact {
    margin-top: 8px;
    padding: 16px;
    border: 0;
    color: var(--white);
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 150px 0 0;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-product {
    width: min(540px, 100%);
    margin-inline: auto;
  }

  .capability-bar {
    position: relative;
    width: 100%;
    margin-top: 46px;
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-bar span:nth-child(2) {
    border-right: 0;
  }

  .capability-bar span:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .section {
    padding: 90px 0;
  }

  .split-intro,
  .ar-layout,
  .cta-layout,
  .founder-layout,
  .profile-hero-layout,
  .profile-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .solution-grid,
  .showcase-main,
  .showcase-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .solution-card,
  .solution-card + .solution-card {
    padding: 38px 0;
    border-left: 0;
  }

  .solution-card + .solution-card {
    border-top: 1px solid var(--line);
  }

  .card-number {
    margin-bottom: 24px;
  }

  .showcase-main .showcase-figure {
    grid-row: 1;
  }

  .showcase-main .showcase-figure img {
    min-height: 0;
  }

  .showcase-small .showcase-figure {
    height: auto;
  }

  .process-flow {
    grid-template-columns: 1fr 1fr;
  }

  .process-flow div:nth-child(odd) {
    border-left: 0;
  }

  .process-flow div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .reference-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .founder-monogram {
    min-height: 240px;
  }

  .profile-main {
    padding-top: 86px;
  }

  .profile-signature {
    min-height: 280px;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .steps li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 20px;
    min-height: 0;
    padding: 30px 0;
  }

  .steps li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .steps li > span {
    margin-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .brand-footer {
    color: var(--white);
  }

}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  body {
    font-size: 15px;
  }

  .brand {
    gap: 10px;
  }

  .brand-symbol {
    width: 48px;
  }

  .brand-name strong {
    font-size: 12px;
  }

  .hero {
    padding-top: 132px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-product {
    min-height: 350px;
  }

  .hero-app-frame {
    inset: 42px 0 56px 0;
    transform: none;
  }

  .hero-product-note {
    min-width: 145px;
    padding: 10px 12px;
  }

  .hero-product-note--top {
    right: 8px;
  }

  .hero-product-note--bottom {
    left: 8px;
  }

  .hero-product-status {
    right: 8px;
  }

  .capability-bar {
    grid-template-columns: 1fr;
  }

  .capability-bar span {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-right: 0;
  }

  .section {
    padding: 74px 0;
  }

  .section-intro {
    margin-bottom: 44px;
  }

  .showcase-copy,
  .showcase-small .showcase-copy {
    padding: 30px 24px 34px;
  }

  .showcase-main .showcase-figure,
  .showcase-small .showcase-figure {
    padding: 15px;
  }

  .check-grid,
  .process-flow,
  .footer-grid,
  .capability-matrix {
    grid-template-columns: 1fr;
  }

  .process-flow div,
  .process-flow div:nth-child(n) {
    min-height: 0;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-flow span {
    margin-bottom: 20px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .founder-monogram,
  .profile-signature {
    min-height: 220px;
    padding: 28px;
  }

  .capability-matrix article {
    min-height: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-card {
    padding: 35px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
