/* Public landing page. Vector artwork and document diagrams are native SVG/CSS. */
.landing-page {
  --card-border: #dce3ec;
}
.landing-page .site-header {
  height: 88px;
}
.landing-page .main-nav {
  gap: 24px;
  font-size: 13px;
}
.landing-page .hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #111e30;
}
.landing-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #111e30 15%, #111e3000 65%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 159px,
      #9dbbea08 160px
    );
  pointer-events: none;
}
.landing-page .hero-main {
  position: relative;
  min-height: 660px;
  padding-block: 96px 0;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
}
.landing-page .hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #b9cbe1;
}
.landing-page .hero .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: #a4c2f5;
}
.landing-page .hero h1 {
  font-size: clamp(44px, 4.65vw, 66px);
  letter-spacing: -2.6px;
  line-height: 1.14;
  margin-top: 27px;
}
.landing-page .hero-description {
  max-width: 510px;
  font-size: 16px;
  line-height: 1.9;
  margin-top: 27px;
}
.landing-page .hero-actions {
  gap: 26px;
  margin-top: 34px;
}
.landing-page .hero-actions .button {
  font-size: 14px;
  gap: 22px;
}
.button-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.landing-page .hero-secondary {
  font-size: 13px;
}
.hero-art {
  position: absolute;
  top: -55px;
  right: -220px;
  width: 850px;
  height: 740px;
  pointer-events: none;
  z-index: 0;
}
.hero-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #111e30 0%,
    #111e3099 12%,
    transparent 42%
  );
}
.landing-page .hero-foundations {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 72px;
  padding: 26px 0;
  border-top: 1px solid #637c9b42;
  font-size: 12px;
  color: #c1cee0;
}
.hero-foundations p {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-foundations svg {
  width: 17px;
  height: 17px;
  color: #89a9d1;
  flex-shrink: 0;
}
.landing-page .section {
  padding-block: 96px;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #61768f;
  font-weight: 650;
  margin-bottom: 19px;
}
.landing-page h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.25;
  letter-spacing: -1.2px;
}
.landing-page .section-heading {
  align-items: flex-end;
  gap: 60px;
}
.landing-page .section-heading > div {
  max-width: 650px;
}
.landing-page .section-heading > p {
  font-size: 14px;
  max-width: 350px;
  line-height: 1.9;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 96px;
  align-items: start;
}
.about-intro h2 {
  max-width: 400px;
}
.about-intro .about-description {
  color: #637084;
  font-size: 15px;
  line-height: 1.9;
  margin-top: 24px;
  max-width: 420px;
}
.about-principle {
  margin-top: 34px;
  padding-left: 18px;
  border-left: 2px solid #a4c2f5;
  color: #3d526f;
  font-size: 13px;
  line-height: 1.8;
}
.landing-page .audience-grid {
  margin: 0;
  padding: 0;
  border: 0;
  grid-template-columns: 1fr;
  gap: 16px;
}
.audience-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 20px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
}
.audience-card:last-child {
  background: #f7f9fc;
}
.audience-card > svg {
  width: 32px;
  height: 32px;
  color: #58769d;
  margin-top: 2px;
}
.landing-page .audience-card h3 {
  font-size: 19px;
  margin-bottom: 9px;
}
.landing-page .audience-card p {
  font-size: 14px;
  line-height: 1.85;
}
.landing-page .services-section {
  background: #f4f6f9;
  border-block: 1px solid #e7ebf1;
}
.landing-page .service-grid {
  gap: 20px;
  margin-top: 40px;
}
.landing-page .service {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 28px;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.landing-page .service:hover {
  transform: translateY(-4px);
  border-color: #a8bbd4;
  box-shadow: 0 14px 35px #243b5910;
}
.service-icon {
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid #dde6f2;
  border-radius: 7px;
  background: #f5f8fc;
  color: #4f719d;
  margin-bottom: 32px;
}
.landing-page .service h3 {
  font-size: 22px;
  letter-spacing: -0.6px;
  margin-bottom: 15px;
}
.landing-page .service p {
  font-size: 14px;
  line-height: 1.9;
}
.service-outcome {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #e5eaf0;
  font-size: 11px;
  line-height: 1.9;
  color: #60738b;
}
.service-outcome span {
  display: block;
  color: #253b57;
  font-size: 12px;
  font-weight: 550;
  margin-top: 4px;
}
.landing-page .service .text-link {
  margin-top: auto;
  padding-top: 25px;
  align-self: flex-start;
  font-size: 12px;
}
.landing-page .service.featured {
  background: #172a43;
  border-color: #172a43;
  color: #fff;
}
.landing-page .service.featured p {
  color: #c0cde0;
}
.service.featured .service-icon {
  background: #243b58;
  border-color: #3b5373;
  color: #b8d1f5;
}
.service.featured .service-outcome {
  border-color: #3b4d66;
  color: #aebfd6;
}
.service.featured .service-outcome span {
  color: #e0eafb;
}
.landing-page .service.featured .text-link {
  color: #bdd6fa;
  border-color: #50698b;
}
.docs-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 38px;
}
.docs-top > p {
  font-size: 14px;
  color: #637084;
  line-height: 1.9;
  max-width: 460px;
}
.docs-tabs {
  display: none;
  gap: 8px;
  padding: 7px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: #f4f6f9;
  margin-bottom: 24px;
}
.docs-explorer.is-enhanced .docs-tabs {
  display: flex;
}
.docs-tab {
  border: 1px solid transparent;
  border-radius: 5px;
  background: none;
  color: #65738a;
  padding: 14px 12px;
  flex: 1;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 550;
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
}
.docs-tab:hover {
  color: #172a43;
  background: #edf1f7;
}
.docs-tab[aria-selected="true"] {
  color: #172a43;
  border-color: #dce3ec;
  background: #fff;
  box-shadow: 0 2px 4px #172a4305;
}
.doc-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  margin-top: 24px;
}
.doc-panel[hidden] {
  display: none;
}
.doc-copy {
  padding: 44px;
}
.doc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #627b9b;
  margin-bottom: 22px;
}
.doc-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid #88a6cf;
  border-radius: 50%;
}
.doc-copy h3 {
  font-size: 28px;
  letter-spacing: -0.9px;
  line-height: 1.3;
  max-width: 330px;
}
.doc-copy > p {
  font-size: 14px;
  color: #637084;
  line-height: 1.85;
  margin-top: 17px;
  max-width: 390px;
}
.doc-checklist {
  list-style: none;
  margin: 25px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.doc-checklist li {
  position: relative;
  padding-left: 23px;
  color: #374d69;
  font-size: 12px;
}
.doc-checklist li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 1px;
  width: 8px;
  height: 4px;
  border-left: 1px solid #6f8fb9;
  border-bottom: 1px solid #6f8fb9;
  transform: rotate(-45deg);
}
.doc-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #edf2f8;
  border-left: 1px solid #e2e8f0;
}
.document-sheet {
  width: 100%;
  max-width: 355px;
  min-height: 345px;
  background: #fff;
  border: 1px solid #d9e2ed;
  border-radius: 3px;
  padding: 27px;
  box-shadow:
    9px 9px 0 -1px #f8fafc,
    9px 9px 0 0 #d9e2ed,
    0 18px 45px #34527910;
  transform: rotate(-2deg);
}
.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding-bottom: 17px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e4eaf2;
  font-size: 8px;
  color: #8a9ab0;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.sheet-header svg {
  width: 20px;
  height: 20px;
  color: #516f96;
}
.sheet-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #2b4565;
  margin-bottom: 18px;
}
.sheet-line {
  display: block;
  height: 4px;
  background: #e7edf4;
  margin-top: 7px;
  width: 100%;
}
.sheet-line.short {
  width: 66%;
}
.sheet-line.medium {
  width: 83%;
}
.sheet-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 23px 0;
}
.sheet-map span {
  padding: 13px 7px;
  border: 1px solid #d8e3f0;
  border-radius: 3px;
  background: #f7f9fd;
  font-size: 9px;
  text-align: center;
  color: #59769d;
}
.sheet-map .wide {
  grid-column: 1/-1;
  background: #eaf0f9;
}
.sheet-caption {
  margin-top: 25px;
  padding-top: 14px;
  border-top: 1px solid #e5ebf2;
  font-size: 8px;
  color: #8295ad;
}
.sheet-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}
.sheet-flow span {
  font-size: 10px;
  color: #507096;
  border: 1px solid #d9e3ef;
  border-radius: 3px;
  text-align: center;
  padding: 10px;
  width: 82%;
  background: #f7f9fc;
}
.sheet-flow i {
  width: 1px;
  height: 13px;
  background: #9db5d2;
}
.sheet-flow span:last-child {
  background: #e8eff8;
  border-color: #bfd0e5;
}
.sheet-system {
  margin: 25px 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
}
.sheet-system span {
  display: grid;
  place-items: center;
  border: 1px solid #d5e0ee;
  padding: 14px 8px;
  font-size: 9px;
  color: #547298;
  border-radius: 3px;
  background: #f7f9fc;
}
.sheet-system .system-core {
  grid-column: 1/-1;
  padding: 18px;
  background: #e8eff8;
  border-color: #bacde6;
}
.sheet-roadmap {
  margin: 23px 0;
  display: grid;
  gap: 11px;
}
.sheet-roadmap > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  color: #6883a4;
}
.sheet-roadmap > div > span {
  width: 80px;
  flex-shrink: 0;
}
.sheet-roadmap i {
  display: block;
  height: 20px;
  width: 60%;
  background: #dbe6f5;
  border: 1px solid #c4d5ec;
  border-radius: 2px;
}
.sheet-roadmap > div:nth-child(2) i {
  width: 45%;
  margin-left: 12%;
  background: #e4ebf5;
}
.sheet-roadmap > div:nth-child(3) i {
  width: 30%;
  margin-left: 26%;
  background: #edf1f7;
}
.docs-footer {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.docs-footer p {
  font-size: 12px;
  line-height: 1.8;
  color: #758399;
  max-width: 570px;
}
.docs-footer .text-link {
  margin: 0;
  white-space: nowrap;
  font-size: 13px;
}
.landing-page .approach-section {
  background: #f4f6f9;
  border-block: 1px solid #e7ebf1;
}
.landing-page .approach-grid {
  gap: 30px;
  margin-top: 42px;
}
.landing-page .approach-grid article {
  border: 0;
  position: relative;
  padding: 0;
}
.process-node {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border: 1px solid #cbd8e8;
  border-radius: 50%;
  background: #fff;
  position: relative;
  z-index: 1;
  color: #56769f;
}
.process-node svg {
  width: 17px;
  height: 17px;
}
.landing-page .approach-grid article:not(:last-child)::before {
  content: "";
  height: 1px;
  position: absolute;
  left: 38px;
  right: -30px;
  top: 19px;
  background: #d6e0ed;
}
.landing-page .approach-grid h3 {
  font-size: 20px;
  letter-spacing: -0.5px;
  margin-bottom: 13px;
}
.landing-page .approach-grid p {
  font-size: 14px;
  line-height: 1.85;
  max-width: 325px;
}
.landing-page .projects-section {
  padding-block: 60px;
}
.projects-frame {
  display: grid;
  grid-template-columns: 60px 1fr 1.1fr;
  align-items: center;
  gap: 30px;
  padding: 35px 38px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: #fff;
}
.projects-frame > svg {
  width: 42px;
  height: 42px;
  color: #839bbd;
}
.projects-frame .section-label {
  margin: 0 0 8px;
}
.projects-frame h2 {
  font-size: 24px;
  letter-spacing: -0.6px;
}
.projects-frame > p {
  font-size: 13px;
  line-height: 1.9;
  color: #6c7c91;
}
.landing-page .contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 78px;
}
.landing-page .contact-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url("/assets/project-structure.svg") no-repeat right -190px
    top -300px/850px;
  opacity: 0.17;
  pointer-events: none;
}
.landing-page .contact-heading {
  grid-template-columns: 1.2fr 1fr;
  gap: 90px;
  align-items: start;
  padding-bottom: 0;
  border-bottom: 0;
}
.contact-direct {
  margin-top: 26px;
}
.contact-direct .copy-status:empty {
  min-height: 0;
}
.landing-page .contact-intro .eyebrow {
  font-size: 12px;
  color: #acc0db;
}
.landing-page .contact-intro h2 {
  font-size: 46px;
  margin-top: 24px;
}
.landing-page .contact-intro > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.9;
  max-width: 445px;
}
.landing-page .contact-action {
  border: 1px solid #526b8a80;
  border-radius: 8px;
  padding: 29px;
  background: #263b552e;
}
.contact-card-title {
  color: #e5edfa;
  font-size: 16px;
  margin-bottom: 17px;
  font-weight: 500;
}
.landing-page .contact-action .button {
  width: 100%;
  font-size: 14px;
  gap: 18px;
}
.landing-page .contact-action .action-note {
  text-align: center;
  font-size: 11px;
}
.landing-page .inquiry-guide {
  margin-top: 23px;
  padding-top: 20px;
  border-top: 1px solid #536d8d57;
  font-size: 12px;
}
.landing-page .contact-grid {
  gap: 45px;
  margin-top: 35px;
}
.landing-page .contact-grid h3 {
  font-size: 11px;
  color: #9eb3d0;
}
.landing-page .contact-email {
  font-size: 14px;
}
.landing-page .company-block p {
  font-size: 12px;
}
.landing-page .copy-email {
  font-size: 11px;
}
.landing-page .footer-inner {
  min-height: 86px;
}
@media (max-width: 1200px) {
  .hero-art {
    right: -260px;
    opacity: 0.88;
  }
  .hero-copy {
    max-width: 580px;
  }
  .landing-page .hero-description {
    max-width: 460px;
  }
  .about-layout {
    gap: 60px;
  }
  .landing-page .service {
    padding: 28px 25px;
  }
  .doc-copy {
    padding: 36px;
  }
  .doc-visual {
    padding: 34px;
  }
}
@media (max-width: 1060px) {
  .landing-page .site-header {
    height: 76px;
  }
  .landing-page .menu-toggle {
    display: flex;
    background: transparent;
    border: 0;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
  }
  .landing-page .menu-toggle span {
    height: 1px;
    width: 20px;
    background: var(--ink);
  }
  .landing-page .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .landing-page .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .landing-page .main-nav {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    padding: 12px 36px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .landing-page .main-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .landing-page .main-nav > a {
    padding-block: 13px;
    font-size: 15px;
  }
  .landing-page .main-nav .nav-contact {
    margin: 10px 0 0;
    padding: 12px 18px;
    align-self: flex-start;
  }
  .landing-page .hero-main {
    padding-top: 72px;
    min-height: 625px;
  }
  .hero-art {
    right: -280px;
    top: -10px;
    width: 760px;
    height: 660px;
    opacity: 0.64;
  }
  .hero-art::after {
    background: linear-gradient(
      90deg,
      #111e30 2%,
      #111e30bb 24%,
      transparent 64%
    );
  }
  .landing-page .hero-foundations {
    gap: 18px;
    font-size: 11px;
  }
  .landing-page .section {
    padding-block: 76px;
  }
  .about-layout {
    gap: 40px;
  }
  .audience-card {
    padding: 23px;
    gap: 16px;
    grid-template-columns: 30px 1fr;
  }
  .landing-page .service h3 {
    font-size: 20px;
  }
  .landing-page .service {
    padding: 26px 22px;
  }
  .landing-page .service-grid {
    gap: 14px;
  }
  .docs-top {
    gap: 40px;
  }
  .doc-copy {
    padding: 30px;
  }
  .doc-visual {
    padding: 28px;
  }
  .document-sheet {
    padding: 23px;
  }
  .landing-page .contact-heading {
    gap: 45px;
  }
  .landing-page .contact-intro h2 {
    font-size: 38px;
  }
}
@media (max-width: 760px) {
  .landing-page .hero-main {
    min-height: 0;
    padding-top: 64px;
  }
  .hero-art {
    top: 70px;
    right: -340px;
    width: 700px;
    height: 610px;
    opacity: 0.45;
  }
  .hero-copy {
    max-width: 570px;
  }
  .landing-page .hero h1 {
    font-size: 48px;
    letter-spacing: -1.8px;
  }
  .landing-page .hero-description {
    max-width: 455px;
  }
  .landing-page .hero-foundations {
    margin-top: 58px;
    grid-template-columns: 1fr;
    gap: 13px;
    padding-block: 25px;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-intro h2,
  .about-intro .about-description {
    max-width: 560px;
  }
  .about-principle {
    margin-top: 24px;
  }
  .landing-page .audience-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .audience-card {
    display: block;
  }
  .audience-card > svg {
    margin-bottom: 18px;
  }
  .landing-page .section-heading {
    display: block;
  }
  .landing-page .section-heading > p {
    margin-top: 20px;
    max-width: 560px;
  }
  .landing-page .service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }
  .landing-page .service {
    padding: 30px;
  }
  .service-icon {
    margin-bottom: 23px;
  }
  .landing-page .service p {
    max-width: 560px;
  }
  .landing-page .service .text-link {
    padding-top: 19px;
  }
  .docs-top {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 30px;
  }
  .docs-top > p {
    max-width: 550px;
  }
  .docs-tabs {
    display: none;
    flex-wrap: wrap;
    gap: 6px;
  }
  .docs-tab {
    flex: 1 1 calc(50% - 6px);
    font-size: 12px;
    padding: 12px 8px;
  }
  .doc-panel {
    grid-template-columns: 1fr;
  }
  .doc-copy {
    padding: 30px;
  }
  .doc-copy h3,
  .doc-copy > p {
    max-width: 100%;
  }
  .doc-visual {
    border-left: 0;
    border-top: 1px solid #e2e8f0;
    padding: 32px;
  }
  .document-sheet {
    min-height: 0;
    max-width: 340px;
  }
  .docs-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .landing-page .approach-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .landing-page .approach-grid article {
    padding-left: 62px;
  }
  .process-node {
    position: absolute;
    left: 0;
    top: 0;
  }
  .landing-page .approach-grid article:not(:last-child)::before {
    width: 1px;
    height: auto;
    top: 38px;
    left: 19px;
    bottom: -30px;
    right: auto;
  }
  .landing-page .approach-grid p {
    max-width: 100%;
  }
  .projects-frame {
    grid-template-columns: 45px 1fr;
    padding: 28px;
    gap: 20px;
  }
  .projects-frame > p {
    grid-column: 1/-1;
  }
  .landing-page .contact-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .landing-page .contact-intro > p:not(.eyebrow) {
    max-width: 560px;
  }
  .landing-page .contact-action {
    max-width: 560px;
  }
  .landing-page .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .landing-page .company-block {
    grid-column: 1/-1;
  }
}
@media (max-width: 480px) {
  .landing-page .main-nav {
    padding-inline: 20px;
  }
  .landing-page .hero-main {
    padding-top: 47px;
  }
  .landing-page .hero .eyebrow {
    font-size: 10px;
    gap: 9px;
  }
  .landing-page .hero .eyebrow::before {
    width: 16px;
  }
  .landing-page .hero h1 {
    font-size: clamp(35px, 9.8vw, 47px);
    line-height: 1.15;
    letter-spacing: -1.6px;
    margin-top: 24px;
  }
  .landing-page .hero-description {
    font-size: 14px;
    margin-top: 23px;
    max-width: 335px;
  }
  .landing-page .hero-actions {
    gap: 12px;
    margin-top: 28px;
    align-items: flex-start;
  }
  .landing-page .hero-actions .button {
    font-size: 13px;
    gap: 18px;
    padding-inline: 20px;
  }
  .landing-page .hero-secondary {
    font-size: 12px;
  }
  .hero-art {
    top: 110px;
    right: -270px;
    width: 570px;
    height: 510px;
    opacity: 0.28;
  }
  .hero-art::after {
    background: linear-gradient(90deg, #111e30aa, transparent 75%);
  }
  .landing-page .hero-foundations {
    margin-top: 36px;
    gap: 12px;
    font-size: 11px;
  }
  .landing-page .section {
    padding-block: 56px;
  }
  .landing-page h2 {
    font-size: 29px;
    letter-spacing: -0.9px;
  }
  .section-label {
    font-size: 10px;
    margin-bottom: 16px;
  }
  .about-intro .about-description {
    font-size: 14px;
    margin-top: 20px;
  }
  .landing-page .audience-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .audience-card {
    display: grid;
    padding: 24px;
  }
  .audience-card > svg {
    width: 28px;
    height: 28px;
    margin: 0;
  }
  .landing-page .audience-card h3 {
    font-size: 18px;
  }
  .landing-page .audience-card p {
    font-size: 13px;
  }
  .landing-page .service {
    padding: 27px;
  }
  .landing-page .service h3 {
    font-size: 22px;
  }
  .landing-page .service p {
    font-size: 13px;
  }
  .doc-copy {
    padding: 26px;
  }
  .doc-copy h3 {
    font-size: 25px;
  }
  .doc-copy > p {
    font-size: 13px;
  }
  .doc-visual {
    padding: 26px;
  }
  .document-sheet {
    padding: 22px;
  }
  .doc-checklist li {
    font-size: 11px;
  }
  .sheet-map span {
    padding: 11px 6px;
    font-size: 8px;
  }
  .docs-footer p {
    font-size: 11px;
  }
  .landing-page .approach-grid h3 {
    font-size: 19px;
  }
  .landing-page .approach-grid p {
    font-size: 13px;
  }
  .projects-frame {
    padding: 25px;
    gap: 17px;
  }
  .projects-frame h2 {
    font-size: 21px;
  }
  .projects-frame > svg {
    width: 34px;
    height: 34px;
  }
  .projects-frame > p {
    font-size: 12px;
  }
  .landing-page .contact-section {
    padding-block: 55px;
  }
  .landing-page .contact-intro h2 {
    font-size: 34px;
  }
  .landing-page .contact-action {
    padding: 24px;
  }
  .landing-page .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .landing-page .contact-email {
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .landing-page .service:hover {
    transform: none;
  }
}
@media print {
  .hero-art,
  .hero::before,
  .service-icon,
  .doc-visual,
  .docs-tabs,
  .process-node,
  .contact-section::before {
    display: none !important;
  }
  .landing-page .hero-main {
    min-height: 0;
    padding-block: 24px;
  }
  .landing-page .hero h1 {
    font-size: 36px;
  }
  .landing-page .hero h1,
  .landing-page .hero .eyebrow,
  .landing-page .hero-description {
    color: #172336;
  }
  .landing-page .section {
    padding-block: 26px;
  }
  .landing-page .service.featured,
  .landing-page .service.featured p,
  .service.featured .service-outcome span {
    color: #172336;
    background: white;
  }
  .doc-panel,
  .doc-panel[hidden] {
    display: block;
    min-height: 0;
    break-inside: avoid;
  }
  .doc-copy {
    padding: 20px;
  }
  .landing-page .contact-intro h2,
  .landing-page .contact-intro > p:not(.eyebrow) {
    color: #172336;
  }
}
