/* MAJIA: the same visual language as the application. */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("assets/fonts/dm-sans-latin-ext.woff2") format("woff2");
  unicode-range:
    U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308,
    U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range:
    U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308,
    U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
    U+FFFD;
}
:root {
  --forest: #163c37;
  --forest-deep: #102c29;
  --primary: #245e50;
  --primary-hover: #184a3e;
  --ink: #29433d;
  --muted: #617269;
  --cream: #f5f6f1;
  --white: #fff;
  --line: #e1e7df;
  --sage: #557c50;
  --teal: #247865;
  --mint: #e8f2e9;
  --lime: #d9f38c;
  --lavender: #e9e6f5;
  --sky: #e2edf5;
  --amber: #f8ebd4;
  --head: Manrope, Arial, sans-serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 8px 32px #203e2a08;
  --page: 1280px;
  --gutter: clamp(22px, 4.5vw, 64px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--lime);
  color: var(--forest);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid #77bca9;
  outline-offset: 4px;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--forest);
  font-family: var(--head);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
}
h1 {
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1.17;
}
h2 {
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.26;
}
h3 {
  font-size: 22px;
  line-height: 1.4;
}
p {
  margin: 0;
}
h1 em,
h2 em,
.offer-card h3 em {
  font-style: normal;
  color: var(--sage);
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--forest);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 88px;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #f5f6f1ed;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  color: var(--forest);
  font: 750 29px/1 var(--head);
  letter-spacing: 1px;
  flex-shrink: 0;
}
.brand-name {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.brand small {
  font: 500 9px/1.3 var(--sans);
  letter-spacing: 1.8px;
  color: var(--muted);
}
.site-header nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.site-header nav a:hover {
  color: var(--primary);
}
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 13px 22px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.header-cta,
.button-primary,
.button-dark {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 3px 5px #122f2510;
}
.header-cta:hover,
.button-primary:hover,
.button-dark:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 7px 18px #122f2515;
}
.button-outline {
  border-color: #bbcbbd;
  background: white;
  color: var(--primary);
}
.button-outline:hover {
  background: var(--mint);
  transform: translateY(-2px);
}
.button span,
.header-cta span {
  font-size: 19px;
  line-height: 1;
}
.hero {
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 48px;
  padding: 78px var(--gutter) 62px;
  min-height: 700px;
}
.hero-copy {
  min-width: 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--sage);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.8px;
  line-height: 1.6;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  background: #6b9446;
  border-radius: 50%;
}
.hero-lead {
  max-width: 530px;
  margin: 25px 0 28px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.text-link {
  font-size: 13px;
  color: var(--primary);
  border-bottom: 1px solid #b1c3b4;
  padding: 6px 0;
}
.text-link:hover {
  border-color: var(--primary);
}
.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 17px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.hero-signals li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--sage);
  font-weight: 700;
}
.product-hero {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 20px 0 0;
}
.product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid #cbd9ca;
  border-radius: 19px;
  background: white;
  box-shadow: 0 22px 54px #163c3714;
  transition: transform 0.4s;
}
.product-window:hover {
  transform: translateY(-4px);
}
.product-window-bar {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 13px 17px;
  background: #edf1e6;
  border-bottom: 1px solid var(--line);
}
.product-window-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a5b6a0;
}
.product-window-bar span {
  margin-left: auto;
  color: #577052;
  font-size: 8px;
  letter-spacing: 1px;
}
.product-window img {
  width: 100%;
  height: auto;
}
.product-window-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}
.product-caption {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 22px 0 0;
  padding: 17px 21px;
  background: var(--forest);
  border: 1px solid #2a5040;
  border-radius: 17px;
  box-shadow: var(--shadow);
  color: #c0d1c3;
  font-size: 12px;
  line-height: 1.7;
}
.product-caption strong {
  color: #f1f6e7;
  font-size: 14px;
  font-weight: 600;
}
.landing-mia {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 30% 15%,
    #fbffe5 0,
    #e4f3b6 24%,
    #b7d880 63%,
    #7aaa63 100%
  );
  box-shadow:
    inset -4px -5px 9px #51794236,
    inset 2px 3px 5px #ffffff99,
    0 9px 22px #031d2a18;
  animation: mia-float 4.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
.landing-mia i {
  height: 14px;
  width: 4px;
  border-radius: 8px;
  background: #214737;
  animation: mia-blink 6s infinite;
}
.landing-mia::after {
  content: "";
  position: absolute;
  left: 44%;
  top: 69%;
  width: 16%;
  height: 7%;
  border-bottom: 2px solid #39623e;
  border-radius: 0 0 50% 50%;
}
@keyframes mia-float {
  0%,
  100% {
    transform: translate3d(-3px, 2px, 0) rotate(-6deg);
  }
  25% {
    transform: translate3d(0, -6px, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(4px, -11px, 0) rotate(6deg);
  }
  75% {
    transform: translate3d(1px, -4px, 0) rotate(1deg);
  }
}
@keyframes mia-blink {
  0%,
  43%,
  47%,
  100% {
    transform: scaleY(1);
  }
  45% {
    transform: scaleY(0.15);
  }
}
.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 38px;
  padding: 25px var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  font-size: 13px;
}
.trust-strip span {
  display: flex;
  gap: 9px;
  align-items: center;
}
.trust-strip span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 3px;
  background: #b4cba5;
}
.section {
  max-width: var(--page);
  margin: auto;
  padding: 92px var(--gutter);
}
.section-intro {
  max-width: 780px;
}
.section-intro > p:last-child {
  margin-top: 20px;
  max-width: 690px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.product-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 35px 0 28px;
}
.product-tour-grid article {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--shadow);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.product-tour-grid article:hover,
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 13px 25px #203e2a0b;
}
.product-tour-grid article > span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--primary);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.7px;
}
.product-tour-grid article:nth-child(2) > span {
  background: var(--lavender);
  color: #655883;
}
.product-tour-grid article:nth-child(3) > span {
  background: var(--amber);
  color: #7b642f;
}
.product-tour-grid h3 {
  margin: 22px 0 12px;
  font-size: 22px;
}
.product-tour-grid p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.system-section {
  padding-top: 38px;
}
.system-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
  margin: 36px 0 25px;
}
.system-map article {
  padding: 22px 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #edf2e7;
}
.system-map article > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #dde9cd;
  color: var(--sage);
  font-size: 12px;
  font-weight: 650;
}
.system-map h3 {
  font-size: 16px;
  margin: 15px 0 9px;
  letter-spacing: -0.015em;
}
.system-map p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.capability-grid article {
  padding: 29px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
}
.capability-grid article > p {
  font-size: 10px;
  color: var(--sage);
  letter-spacing: 1.5px;
  font-weight: 650;
  margin-bottom: 18px;
}
.capability-grid h3 {
  font-size: 20px;
  line-height: 1.45;
}
.capability-grid ul,
.responsibility-grid ul,
.offer-card ul,
.case-card ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.capability-grid li,
.responsibility-grid li,
.offer-card li {
  position: relative;
  padding-left: 20px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}
.capability-grid li::before,
.responsibility-grid li::before,
.offer-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 650;
}
.team-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
  max-width: var(--page);
  margin: 0 auto;
  padding: 35px var(--gutter) 90px;
}
.mia-scene {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  margin: 0;
  min-height: 500px;
  padding: 35px;
  background: var(--forest);
  border: 1px solid #2a5040;
  border-radius: 24px;
  color: #e1ecdc;
  overflow: hidden;
}
.mia-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#c3dcb916 1px, transparent 1px);
  background-size: 19px 19px;
  pointer-events: none;
}
.mia-scene > * {
  position: relative;
}
.mia-scene .landing-mia {
  width: 115px;
  height: 115px;
  gap: 23px;
  margin: 0 0 4px;
}
.mia-scene .landing-mia i {
  width: 8px;
  height: 28px;
}
.scene-heading {
  align-self: flex-start;
  color: #c9dcb8;
  font-size: 10px;
  letter-spacing: 1.7px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.scene-heading::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}
.scene-question {
  align-self: flex-end;
  max-width: 92%;
  padding: 14px 18px;
  border: 1px solid #59816b66;
  border-radius: 15px 15px 3px 15px;
  background: #ffffff0a;
  font-size: 13px;
}
.scene-answer {
  padding: 20px 22px;
  border-radius: 3px 17px 17px 17px;
  background: #f0f4e8;
  color: var(--forest);
  font-size: 14px;
  line-height: 1.8;
}
.scene-answer strong {
  display: block;
  margin-bottom: 7px;
  font-weight: 650;
}
.scene-answer span {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
}
.mia-scene figcaption {
  font-size: 10px;
  color: #b5c8b8;
  text-align: center;
}
.team-copy .lead {
  margin: 22px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.responsibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.responsibility-grid article {
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}
.responsibility-grid article:first-child {
  background: var(--mint);
}
.responsibility-grid article > span {
  font-size: 10px;
  color: var(--primary);
  letter-spacing: 0.9px;
  font-weight: 650;
}
.responsibility-grid ul {
  margin-top: 15px;
}
.responsibility-grid li {
  font-size: 12px;
  margin-top: 9px;
}
.team-close {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.offers {
  border-top: 1px solid var(--line);
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 37px;
}
.offer-card {
  position: relative;
  padding: 35px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.offer-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  letter-spacing: 1px;
  font-weight: 650;
  color: var(--sage);
}
.offer-card h3 {
  font-size: 33px;
  line-height: 1.3;
  margin: 25px 0 19px;
}
.offer-card > p:not(.offer-badge) {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.offer-card ul {
  margin: 8px 0 24px;
}
.offer-outcome {
  margin-top: auto;
  padding: 21px 0;
  border-top: 1px solid var(--line);
}
.offer-outcome > span {
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 1.5px;
  color: var(--sage);
}
.offer-outcome p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 7px;
}
.offer-card .button {
  margin-top: 6px;
  justify-content: space-between;
  font-size: 13px;
}
.offer-card.featured {
  background: var(--forest);
  border-color: var(--forest);
  color: #f1f6e7;
}
.featured h3,
.featured h3 em {
  color: #e4f0d5;
}
.featured .offer-topline,
.featured .offer-outcome > span {
  color: #c6dcaa;
}
.featured > p:not(.offer-badge),
.featured li {
  color: #c0d2c5;
}
.featured li::before {
  color: var(--lime);
}
.featured .offer-outcome {
  border-color: #ffffff1f;
}
.featured .button-primary {
  background: #e4efcd;
  border-color: #e4efcd;
  color: var(--forest);
}
.featured .button-primary:hover {
  background: #d9e9b9;
}
.offer-badge {
  align-self: flex-start;
  margin-top: 17px;
  padding: 5px 10px;
  border: 1px solid #bad69535;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #c6dcaa;
}
.featured h3 {
  margin-top: 14px;
}
.offer-note {
  max-width: 730px;
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}
.cases {
  padding-top: 35px;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 35px;
}
.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.case-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 2/1;
  border-bottom: 1px solid var(--line);
}
.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.case-image:hover img {
  transform: scale(1.035);
}
.case-content {
  padding: 25px;
}
.case-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--sage);
  font-weight: 650;
}
.case-card h3 {
  font-size: 23px;
  margin: 17px 0 12px;
}
.case-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.case-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 20px 0;
}
.case-card li {
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--mint);
  font-size: 10px;
  color: var(--primary);
}
.case-link {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--primary);
  font-weight: 650;
}
.case-link:hover {
  color: var(--forest);
}
.case-link span {
  font-size: 17px;
}
.process {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 65px;
  border-top: 1px solid var(--line);
}
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.process-list li {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.process-list li:first-child {
  padding-top: 0;
}
.process-list li:last-child {
  border-bottom: 0;
}
.process-list > li > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid #d3dfc9;
  border-radius: 12px;
  background: #eaf1e0;
  color: var(--sage);
  font-size: 13px;
}
.process-list h3 {
  font-size: 18px;
  margin-bottom: 7px;
}
.process-list p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  border-top: 1px solid var(--line);
}
.proof-copy {
  position: sticky;
  top: 125px;
}
.proof-lead {
  margin: 25px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.proof-deliverables {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}
.proof-deliverables article {
  display: flex;
  gap: 17px;
  align-items: center;
  padding: 17px;
  background: #ecf1e6;
  border: 1px solid var(--line);
  border-radius: 13px;
}
.proof-deliverables article > span {
  font-size: 11px;
  color: var(--sage);
  font-weight: 650;
}
.proof-deliverables p {
  font-size: 13px;
  color: var(--ink);
}
.proof-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.lead-form {
  position: relative;
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  min-width: 0;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-heading {
  margin-bottom: 27px;
}
.form-heading > span {
  font-size: 10px;
  color: var(--sage);
  font-weight: 650;
  letter-spacing: 1.6px;
}
.form-heading strong {
  display: block;
  margin-top: 12px;
  font: 600 26px/1.35 var(--head);
  letter-spacing: -0.02em;
  color: var(--forest);
}
.form-heading p {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.lead-form > label:not(.consent-row) {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.lead-form input:not([type="checkbox"]),
.lead-form select {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #dce3d8;
  border-radius: 10px;
  background: #f9faf7;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
}
.lead-form input:focus,
.lead-form select:focus {
  outline: 2px solid #79b6a9;
  outline-offset: 1px;
  background: #fff;
}
.lead-form input::placeholder {
  color: #7d887f;
}
.lead-form select {
  appearance: auto;
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 0;
  font-size: 12px;
  line-height: 1.8;
  color: var(--ink);
}
.consent-row input {
  margin: 3px 0 0;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--primary);
}
.consent-optional {
  color: var(--muted);
}
.consent-row b {
  font-weight: 500;
}
.privacy-note {
  margin: 15px 0 0;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
}
.privacy-note a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-button {
  width: 100%;
  justify-content: space-between;
  margin-top: 24px;
}
.form-status {
  font-size: 12px;
  margin-top: 14px;
  color: var(--primary);
  line-height: 1.8;
}
.form-status:empty {
  margin: 0;
}
.form-status.is-error {
  color: #a94336;
}
.thank-you {
  padding: 21px;
  margin-top: 20px;
  border: 1px solid #cddfc9;
  border-radius: 13px;
  background: var(--mint);
}
.thank-you > span {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--sage);
}
.thank-you h3 {
  font-size: 21px;
  margin: 10px 0;
}
.thank-you p {
  font-size: 13px;
  color: var(--muted);
}
.thank-you .button {
  margin-top: 18px;
}
.faq {
  max-width: var(--page);
  margin: auto;
  padding: 75px var(--gutter) 95px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  border-top: 1px solid var(--line);
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  margin-bottom: 10px;
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 19px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  font-size: 23px;
  color: var(--sage);
  line-height: 1;
  flex-shrink: 0;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  padding: 0 22px 22px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
}
.final-cta {
  max-width: 1152px;
  margin: 0 auto 72px;
  padding: 55px var(--gutter);
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background: #eaf1df;
  border: 1px solid #d8e3ce;
  border-radius: 23px;
}
.final-cta > p {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.4px;
  color: var(--sage);
  margin-bottom: 20px;
}
.final-cta h2 {
  max-width: 660px;
}
.final-cta > span {
  margin: 20px 0 26px;
  max-width: 610px;
  font-size: 15px;
  color: var(--muted);
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 34px var(--gutter);
  background: var(--forest-deep);
  color: #b4c9bb;
  font-size: 11px;
}
footer .brand {
  color: #edf4e3;
}
footer .brand small {
  color: #adc2b3;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-links button {
  border: 0;
  background: none;
  color: inherit;
  padding: 0;
  font: inherit;
}
.footer-links a:hover,
.footer-links button:hover {
  color: white;
}
.mobile-sticky {
  display: none;
}
.mobile-sticky.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(100% + 20px));
}
.consent-banner {
  position: fixed;
  z-index: 80;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 25px 28px;
  background: white;
  border: 1px solid #cfdccb;
  border-radius: 18px;
  box-shadow: 0 15px 65px #102c2926;
  color: var(--ink);
}
.consent-banner strong {
  color: var(--forest);
  font-size: 14px;
  font-weight: 600;
}
.consent-banner p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 650px;
  margin: 7px 0;
}
.consent-banner a {
  color: var(--primary);
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.consent-actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.consent-actions button {
  padding: 10px 16px;
  min-height: 41px;
  border: 1px solid #d7e1d4;
  border-radius: 9px;
  background: #fff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 500;
}
.consent-actions .consent-accept {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.legal-header {
  justify-content: space-between;
}
.legal-main {
  max-width: 870px;
  margin: auto;
  padding: 65px 30px 85px;
}
.legal-main > h1 {
  font-size: clamp(34px, 5vw, 48px);
}
.legal-updated {
  margin: 20px 0 35px;
  font-size: 13px;
  color: var(--muted);
}
.legal-main section {
  padding: 27px 0;
  border-top: 1px solid var(--line);
}
.legal-main h2 {
  font-size: 23px;
  margin-bottom: 16px;
}
.legal-main section p,
.legal-main section li {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}
.legal-main section a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-main section p {
  margin-bottom: 12px;
}
@media (min-width: 1441px) {
  .hero {
    padding-top: 95px;
    padding-bottom: 85px;
    min-height: 760px;
  }
}
@media (max-width: 1100px) {
  .hero {
    gap: 30px;
    padding-top: 55px;
    padding-bottom: 55px;
    min-height: 620px;
  }
  h1 {
    font-size: 46px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-actions {
    gap: 17px;
  }
  .team-section {
    gap: 35px;
  }
  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .system-section {
    padding-top: 25px;
  }
  .proof {
    gap: 40px;
  }
  .case-content {
    padding: 20px;
  }
  .product-tour-grid article,
  .capability-grid article {
    padding: 23px;
  }
  .offer-card {
    padding: 29px;
  }
  .final-cta {
    margin-left: var(--gutter);
    margin-right: var(--gutter);
  }
}
@media (max-width: 900px) {
  .site-header nav {
    gap: 19px;
    font-size: 12px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 50px;
  }
  .hero-copy {
    max-width: 680px;
  }
  .hero h1 {
    font-size: clamp(40px, 6vw, 57px);
  }
  .hero-lead {
    font-size: 17px;
    max-width: 670px;
  }
  .product-hero {
    max-width: 740px;
    width: 100%;
    padding: 5px 0 0;
  }
  .product-caption {
    max-width: 520px;
  }
  .system-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .team-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mia-scene {
    max-width: 540px;
    width: 100%;
    min-height: 460px;
    margin: auto;
    grid-row: 2;
  }
  .team-copy {
    max-width: 720px;
  }
  .case-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .case-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
  }
  .case-image {
    height: 100%;
    min-height: 255px;
    aspect-ratio: auto;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }
  .case-image img {
    object-position: top left;
  }
  .process,
  .faq {
    gap: 35px;
  }
  .proof {
    gap: 32px;
  }
  .lead-form {
    padding: 26px;
  }
  .proof-copy h2 {
    font-size: 35px;
  }
  .offer-card h3 {
    font-size: 29px;
  }
  .capability-grid h3 {
    font-size: 18px;
  }
  footer {
    flex-wrap: wrap;
  }
}
@media (max-width: 650px) {
  html {
    scroll-padding-top: 95px;
  }
  .site-header {
    min-height: 77px;
    gap: 15px;
    padding: 15px 22px;
  }
  .brand {
    font-size: 25px;
  }
  .brand small {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .site-header nav {
    display: none;
  }
  .header-cta {
    min-height: 42px;
    padding: 10px 13px;
    font-size: 12px;
    gap: 14px;
  }
  .hero {
    padding: 42px 22px 36px;
    gap: 28px;
    min-height: 0;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: 39px;
    line-height: 1.22;
  }
  .hero-lead {
    font-size: 15px;
    margin: 22px 0;
    line-height: 1.8;
  }
  .hero-actions {
    gap: 14px 22px;
  }
  .button {
    min-height: 48px;
    font-size: 13px;
    padding: 13px 18px;
  }
  .hero-signals {
    font-size: 10px;
    gap: 9px 14px;
    margin-top: 23px;
  }
  .product-window {
    border-radius: 13px;
  }
  .product-window-bar {
    padding: 10px 12px;
  }
  .product-window-bar span {
    font-size: 7px;
    letter-spacing: 0.5px;
  }
  .product-window-foot {
    padding: 9px 12px;
    font-size: 8px;
  }
  .product-caption {
    padding: 17px;
    gap: 14px;
    margin-top: 17px;
    font-size: 11px;
  }
  .product-caption strong {
    font-size: 12px;
  }
  .product-caption .landing-mia {
    width: 43px;
    height: 43px;
    gap: 9px;
  }
  .product-caption .landing-mia i {
    height: 11px;
    width: 3px;
  }
  .trust-strip {
    gap: 12px 20px;
    padding: 23px 22px;
    font-size: 11px;
  }
  .section {
    padding: 57px 22px;
  }
  .section-intro > p:last-child {
    font-size: 14px;
    line-height: 1.85;
    margin-top: 18px;
  }
  h2 {
    font-size: 30px;
    line-height: 1.3;
  }
  .product-tour-grid,
  .capability-grid,
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .product-tour-grid {
    margin-top: 27px;
  }
  .product-tour-grid article {
    padding: 25px;
  }
  .product-tour-grid h3 {
    font-size: 23px;
    margin-top: 18px;
  }
  .product-tour-grid p {
    font-size: 14px;
  }
  .system-section {
    padding-top: 15px;
  }
  .system-map {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }
  .system-map article {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 0 13px;
    padding: 19px;
  }
  .system-map article > span {
    grid-row: 1/3;
  }
  .system-map h3 {
    margin: 2px 0 6px;
  }
  .system-map p {
    grid-column: 2;
  }
  .capability-grid article {
    padding: 25px;
  }
  .capability-grid h3 {
    font-size: 21px;
  }
  .team-section {
    padding: 8px 22px 55px;
    gap: 32px;
  }
  .team-copy .lead {
    font-size: 14px;
  }
  .responsibility-grid {
    gap: 11px;
  }
  .responsibility-grid article {
    padding: 18px 14px;
  }
  .responsibility-grid article > span {
    font-size: 8px;
    letter-spacing: 0.5px;
  }
  .responsibility-grid li {
    font-size: 11px;
    padding-left: 16px;
  }
  .mia-scene {
    padding: 27px;
    min-height: 455px;
    border-radius: 19px;
    gap: 23px;
  }
  .scene-question {
    font-size: 12px;
  }
  .scene-answer {
    font-size: 13px;
  }
  .offer-grid {
    margin-top: 27px;
  }
  .offer-card {
    padding: 27px;
  }
  .offer-card h3 {
    font-size: 32px;
  }
  .offer-topline {
    font-size: 8px;
    letter-spacing: 0.6px;
  }
  .offer-note {
    font-size: 12px;
  }
  .cases {
    padding-top: 15px;
  }
  .case-card {
    display: block;
  }
  .case-image {
    min-height: 0;
    aspect-ratio: 2/1;
    height: auto;
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }
  .case-content {
    padding: 25px;
  }
  .case-card h3 {
    font-size: 24px;
  }
  .case-card p {
    font-size: 14px;
  }
  .case-meta {
    font-size: 9px;
  }
  .process,
  .proof,
  .faq {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .process-list li {
    gap: 17px;
    padding: 20px 0;
  }
  .proof-copy {
    position: static;
  }
  .proof-copy h2 {
    font-size: 34px;
  }
  .proof-lead {
    font-size: 15px;
  }
  .proof-deliverables {
    margin: 22px 0;
  }
  .lead-form {
    padding: 27px 23px;
  }
  .form-heading strong {
    font-size: 25px;
  }
  .lead-form input:not([type="checkbox"]),
  .lead-form select {
    font-size: 16px;
  }
  .consent-row {
    font-size: 12px;
  }
  .form-button {
    font-size: 14px;
  }
  .faq {
    padding: 55px 22px;
    gap: 25px;
  }
  .faq-list summary {
    padding: 18px;
    font-size: 14px;
    gap: 15px;
  }
  .faq-list details p {
    padding: 0 18px 20px;
  }
  .final-cta {
    margin: 0 22px 45px;
    padding: 35px 24px;
    border-radius: 19px;
  }
  .final-cta h2 {
    font-size: 29px;
  }
  .final-cta > span {
    font-size: 14px;
  }
  .final-cta > p {
    font-size: 9px;
    letter-spacing: 1px;
  }
  footer {
    padding: 30px 22px 105px;
    gap: 25px;
  }
  .footer-links {
    gap: 21px;
    flex-wrap: wrap;
    font-size: 12px;
  }
  footer > span {
    width: 100%;
    font-size: 10px;
  }
  .mobile-sticky {
    position: fixed;
    z-index: 60;
    bottom: 14px;
    left: 22px;
    right: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 19px;
    border: 1px solid #ffffff20;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 25px #102c2926;
    transition:
      opacity 0.2s,
      transform 0.2s,
      visibility 0.2s;
  }
  .mobile-sticky span {
    font-size: 20px;
  }
  .consent-banner {
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    max-height: 85dvh;
    overflow: auto;
  }
  .consent-actions {
    flex-direction: row;
    gap: 9px;
  }
  .consent-actions button {
    flex: 1;
    padding: 11px 9px;
    font-size: 11px;
  }
  .legal-main {
    padding: 40px 23px 55px;
  }
  .legal-main > h1 {
    font-size: 35px;
  }
  .legal-main h2 {
    font-size: 22px;
  }
  .legal-main section p {
    font-size: 14px;
  }
  .legal-page footer {
    padding-bottom: 32px;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 35px;
  }
  .brand {
    font-size: 23px;
  }
  .brand small {
    letter-spacing: 0.6px;
  }
  .header-cta {
    gap: 8px;
    padding: 9px 11px;
    font-size: 11px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .text-link {
    align-self: flex-start;
  }
  .trust-strip {
    gap: 11px 17px;
  }
  .responsibility-grid {
    grid-template-columns: 1fr;
  }
  .consent-actions {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
