@charset "UTF-8";
:root {
  --ink: #183f3b;
  --muted: #64726d;
  --paper: #fbfcf8;
  --mint: #c7e9d9;
  --line: #dbe2d9;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

button, input, select, textarea {
  font: inherit;
}

button, a, summary {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

button, input, textarea, select {
  border-radius: 0;
}

button {
  border: 0;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--mint);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid #4c9b85;
  outline-offset: 5px;
}

h1, h2, h3, p {
  margin: 0;
}

em {
  font-family: var(--serif);
  font-weight: 400;
}

.content-width {
  width: calc(100% - 120px);
  max-width: 1216px;
  margin-inline: auto;
}

.section-space {
  padding-block: 106px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 1.7px;
}

.small-line {
  display: inline-block;
  width: 23px;
  height: 1px;
  background: currentColor;
}

.light {
  color: #d5e8df;
}

main h2 {
  font-size: clamp(36px, 3.6vw, 51px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  min-height: 52px;
  padding: 15px 23px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: background .2s, transform .2s;
}

.button span {
  font-size: 19px;
  line-height: 1;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-dark:hover {
  background: #286156;
}

.button-mint {
  background: var(--mint);
  color: #183f3b;
}

.button-mint:hover {
  background: #e0f5e9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  padding-block: 10px;
  border-bottom: 1px solid;
}

.text-link span {
  font-size: 19px;
}

.light-link {
  color: #f4f8f1;
  border-color: #b8d3c46b;
}

.dark-link {
  color: var(--ink);
  border-color: #9eafa4;
}

.text-link:hover {
  border-color: currentColor;
}

.skip-link {
  position: fixed;
  top: -70px;
  left: 20px;
  z-index: 100;
  padding: 14px 20px;
  background: white;
}

.skip-link:focus {
  top: 10px;
}

.site-header {
  position: relative;
  z-index: 10;
}

.header-inner {
  height: 91px;
  max-width: 1352px;
  margin: auto;
  padding-inline: 43px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -1.5px;
  white-space: nowrap;
}

.brand-symbol {
  width: 38px;
  height: 38px;
}

.brand-suffix {
  font-size: 10px;
  letter-spacing: .1px;
  margin-left: 4px;
  font-weight: 500;
}

.desktop-nav {
  gap: 37px;
  padding-left: 60px;
}

.desktop-nav a {
  font-size: 12px;
  color: #455952;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
}

.desktop-nav a:hover {
  border-color: var(--ink);
}

.header-cta {
  min-height: 43px;
  padding: 10px 19px;
  gap: 30px;
}

.menu-toggle {
  display: none;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 657px;
  margin: 0 22px;
  overflow: hidden;
  border-radius: 4px;
  background: #255552;
  color: white;
}

.hero-image, .hero-shade {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.hero-image {
  object-fit: cover;
  object-position: center 52%;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(7, 42, 42, .91) 0%, rgba(10, 48, 47, .71) 40%, rgba(11, 48, 48, .1) 80%), linear-gradient(0deg, rgba(4, 35, 34, .55), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1216px;
  margin: auto;
  padding: 66px 38px 105px;
}

.status-dot {
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px #c7e9d914;
  margin-right: 3px;
}

.hero h1 {
  font-weight: 400;
  font-size: clamp(64px, 6.4vw, 91px);
  line-height: 1.01;
  letter-spacing: -3.8px;
  margin-top: 30px;
}

.hero h1 em {
  color: var(--mint);
  letter-spacing: -3.2px;
}

.hero-description {
  color: #e0e8e1;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 26px;
}

.hero-actions {
  gap: 28px;
  margin-top: 29px;
}

.hero-actions .button {
  min-height: 49px;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 1;
  bottom: 27px;
  left: 38px;
  right: 38px;
  border-top: 1px solid #d6e6df33;
  padding-top: 18px;
}

.hero-bottom > p {
  font-size: 9px;
  letter-spacing: 1.7px;
  color: #d6e5df;
}

.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 19px;
  font-size: 10px;
}

.scroll-arrow {
  font-size: 20px;
}

.hero-side-note {
  position: absolute;
  right: 29px;
  top: 90px;
  writing-mode: vertical-rl;
  color: #e9f4eb;
  letter-spacing: 2.3px;
  font-size: 8px;
}

.principles {
  padding-block: 36px;
  border-bottom: 1px solid var(--line);
}

.principles > div {
  display: flex;
  align-items: flex-start;
  gap: 19px;
  padding-inline: 25px;
  border-left: 1px solid var(--line);
}

.principles > div:first-child {
  padding-left: 0;
  border: 0;
}

.principles > div:last-child {
  padding-right: 0;
}

.principle-number {
  color: #809487;
  font-size: 10px;
  padding-top: 6px;
}

.principles h2 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -.3px;
}

.principles p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}

.about-section {
  gap: 90px;
  align-items: center;
}

.about-copy h2 {
  margin-block: 22px 25px;
}

.about-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 16px;
}

.about-copy > .lead-copy {
  color: var(--ink) !important;
  font-weight: 500;
  font-size: 15px !important;
  margin-bottom: 11px !important;
}

.about-copy .text-link {
  margin-top: 7px;
}

.about-visual {
  position: relative;
  padding-bottom: 20px;
}

.about-visual > img {
  width: 100%;
  height: 416px;
  object-fit: cover;
  border-radius: 4px;
}

.image-caption {
  background: #e4eee4;
  display: flex;
  align-items: center;
  gap: 17px;
  position: absolute;
  bottom: 0;
  left: -24px;
  right: 24px;
  padding: 22px 25px;
  border-radius: 3px;
}

.image-caption p {
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -.4px;
}

.image-caption strong {
  font-weight: 500;
}

.caption-mark {
  font-size: 34px;
  margin-right: 7px;
}

.caption-small {
  margin-left: auto;
  font-size: 8px;
  line-height: 1.8;
  letter-spacing: 1px;
}

.expertise-section {
  background: #f0f3ed;
}

.section-heading {
  gap: 30px;
  align-items: end;
  margin-bottom: 43px;
}

.section-heading h2 {
  margin-top: 21px;
}

.section-intro {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  padding: 0 10px 4px 0;
}

.service-grid {
  gap: 18px;
}

.service-card {
  padding: 31px 27px 19px;
  background: #fbfcf8;
  border: 1px solid #e1e6dc;
  border-radius: 3px;
  transition: border-color .2s, transform .2s;
}

.service-card:hover {
  border-color: #9fb8aa;
  transform: translateY(-3px);
}

.service-top {
  margin-bottom: 31px;
}

.service-top svg {
  width: 46px;
  height: 46px;
}

.service-top > span {
  font-size: 8px;
  letter-spacing: 1.2px;
  color: #74877b;
  padding-top: 4px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.5px;
  margin-bottom: 15px;
}

.service-card > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
  min-height: 92px;
}

.service-card details {
  margin-top: 27px;
  border-top: 1px solid var(--line);
}

.service-card summary {
  cursor: pointer;
  list-style: none;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px 4px;
}

.service-card summary::-webkit-details-marker {
  display: none;
}

.service-card summary span {
  font-size: 22px;
  font-weight: 300;
  transition: transform .2s;
}

.service-card details[open] summary span {
  transform: rotate(45deg);
}

.service-card ul {
  padding-left: 16px;
  margin: 18px 0 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  list-style: disc;
}

.analytics-section {
  background: #143e39;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.analytics-section::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -240px;
  width: 800px;
  height: 800px;
  border: 1px solid #c6e7d30c;
  border-radius: 50%;
  box-shadow: 0 0 0 80px #c6e7d304, 0 0 0 160px #c6e7d304;
  pointer-events: none;
}

.analytics-layout {
  position: relative;
  gap: 95px;
  align-items: center;
}

.analytics-copy h2 {
  margin-top: 24px;
  font-size: clamp(37px, 3.7vw, 52px);
}

.analytics-copy h2 em {
  color: var(--mint);
}

.analytics-copy > p:not(.eyebrow) {
  max-width: 355px;
  margin-top: 23px;
  font-size: 13px;
  line-height: 1.9;
  color: #bfd2c8;
}

.analytics-points {
  margin-top: 26px;
}

.analytics-points p {
  display: flex;
  gap: 15px;
  font-size: 12px;
  margin-block: 15px;
  color: #e0eae2;
}

.analytics-points span {
  color: #9ec8b5;
}

.analytics-copy .text-link {
  margin-top: 14px;
}

.dashboard-wrap {
  transform: rotate(-1.5deg);
  padding-block: 10px;
}

.dashboard {
  background: #fcfdf9;
  color: var(--ink);
  padding: 27px 26px 18px;
  border: 1px solid #e0e8dc;
  border-radius: 6px;
  box-shadow: 0 25px 50px #061e2533;
}

.dashboard-eyebrow {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: #748678;
}

.dashboard-heading h3 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
  letter-spacing: -.3px;
}

.review-badge {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  padding: 5px 7px;
  font-size: 7px;
  color: #567b64;
  background: #eaf2e6;
  border-radius: 3px;
}

.review-badge span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6e9879;
}

.metric-tabs {
  gap: 7px;
  margin-top: 24px;
  border-bottom: 1px solid #e2e8de;
}

.metric-tabs button {
  background: transparent;
  padding: 9px 12px;
  font-size: 9px;
  color: #778679;
  border-bottom: 2px solid transparent;
}

.metric-tabs button[aria-pressed="true"] {
  border-color: #467a5d;
  color: #264f3d;
  font-weight: 600;
}

.metric-tabs button:hover {
  background: #f0f4ec;
}

.metric-summary {
  margin-top: 21px;
  gap: 6px;
}

.metric-summary p {
  font-size: 9px;
  color: #788779;
  margin-bottom: 6px;
}

.metric-value {
  display: flex;
  align-items: center;
  gap: 12px;
}

#metric-value {
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: -1px;
}

#metric-change {
  font-size: 8px;
  padding: 4px 6px;
  color: #4d785b;
  background: #eaf2e5;
  border-radius: 3px;
}

.metric-period {
  font-size: 7px;
  color: #809083;
  margin-bottom: 5px;
}

.chart {
  display: flex;
  gap: 12px;
  height: 143px;
  margin-top: 26px;
}

.chart-scale {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 7px;
  color: #8d998c;
  padding-block: 8px 16px;
  min-width: 26px;
}

.chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-grid {
  stroke: #e6ece2;
  stroke-width: 1;
  stroke-dasharray: 3 4;
}

.chart-months {
  margin: 8px 0 0 38px;
  font-size: 7px;
  letter-spacing: .5px;
  color: #879585;
}

.dashboard-insight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 11px;
  margin-top: 20px;
  background: #f0f4e9;
  border-radius: 3px;
}

.insight-icon {
  font-size: 21px;
  color: #698168;
}

.dashboard-insight p {
  font-size: 8px;
  line-height: 1.8;
  color: #73816c;
}

.dashboard-insight strong {
  font-weight: 500;
  color: #3f5b44;
}

.dashboard-note {
  color: #adc4b7;
  margin-top: 16px;
  font-size: 7px;
  text-align: right;
  letter-spacing: 1.2px;
}

.process-grid {
  gap: 48px;
  margin-top: 50px;
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 21px;
  border-bottom: 1px solid #ced9cd;
  margin-bottom: 24px;
}

.process-number span:first-child {
  font-family: var(--serif);
  font-size: 35px;
  font-style: italic;
  color: #819683;
}

.process-number span:last-child {
  color: #7f9581;
  font-size: 21px;
}

.process-grid h3 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -.5px;
  margin-bottom: 13px;
}

.process-grid p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 300px;
}

.contact-section {
  padding-block: 73px;
  background: #e3ecdf;
  border-top: 1px solid #d7e1d2;
}

.contact-layout {
  gap: 30px;
}

.contact-section h2 {
  margin-top: 23px;
  font-size: clamp(35px, 3.5vw, 49px);
}

.contact-section h2 em {
  color: #587861;
}

.contact-section p:not(.eyebrow) {
  margin-top: 22px;
  font-size: 12px;
  color: #637765;
}

.consultation-button {
  margin-top: 28px;
  min-width: 216px;
}

.site-footer {
  background: #103a35;
  color: #eaf0e8;
  padding-block: 60px 23px;
}

.footer-main {
  grid-template-columns: 1.15fr 1.15fr 1.1fr .6fr;
  gap: 35px;
}

.footer-brand .brand {
  font-size: 29px;
}

.footer-brand .brand-symbol {
  width: 32px;
  height: 32px;
}

.footer-brand > p {
  color: #b1c5b9;
  font-size: 12px;
  line-height: 1.7;
  margin: 19px 0 0 4px;
}

.footer-main h2 {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #a7c1b2;
  line-height: 1.5;
  margin-block: 7px 23px;
}

.footer-contact {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 27px;
  font-size: 15px;
  border-bottom: 1px solid #709082;
  padding-bottom: 8px;
}

.footer-phone {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: #bdcfc3;
}

.footer-main address {
  font-style: normal;
  font-size: 11px;
  line-height: 1.9;
  color: #bdcfc3;
}

.footer-navigation a {
  display: block;
  width: fit-content;
  font-size: 11px;
  color: #bdcfc3;
  margin-top: 11px;
}

.footer-main a:hover, .footer-bottom a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 21px;
  border-top: 1px solid #95b0a22e;
  gap: 12px 30px;
  font-size: 8px;
  color: #9db9a9;
}

#consultation-dialog {
  width: min(520px, calc(100% - 32px));
  max-height: calc(100dvh - 36px);
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 36px;
  border-radius: 6px;
  box-shadow: 0 20px 90px #001c2b40;
  margin: auto;
}

#consultation-dialog::backdrop {
  background: #092f31b3;
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  right: 13px;
  top: 9px;
  width: 36px;
  height: 36px;
  background: transparent;
  font-size: 29px;
  font-weight: 300;
  color: var(--ink);
}

#dialog-title {
  font-size: 39px;
  margin-top: 18px;
}

#dialog-description {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 18px;
}

#consultation-form {
  margin-top: 22px;
}

#consultation-form label {
  display: block;
  margin: 15px 0 7px;
  font-size: 11px;
  font-weight: 500;
}

#consultation-form label span {
  font-weight: 400;
  color: var(--muted);
}

#consultation-form input, #consultation-form select, #consultation-form textarea {
  display: block;
  width: 100%;
  padding: 12px;
  background: white;
  color: var(--ink);
  border: 1px solid #ccd8cc;
  border-radius: 3px;
  font-size: 12px;
}

#consultation-form textarea {
  resize: vertical;
}

#consultation-form .button {
  width: 100%;
  margin-top: 20px;
}

.form-note {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 11px;
}

.form-status {
  padding: 12px;
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.7;
  background: #e2eedf;
}

.form-status a {
  text-decoration: underline;
}

.dialog-alternative {
  font-size: 10px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 20px;
  line-height: 1.8;
}

.dialog-alternative a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 1500px) {
  .hero {
    max-width: 1456px;
    margin-inline: auto;
  }
  .hero-content {
    padding-inline: 0;
  }
  .hero-bottom {
    left: calc((100% - 1216px) / 2);
    right: calc((100% - 1216px) / 2);
  }
}

@media (max-width: 1100px) {
  .content-width {
    width: calc(100% - 80px);
  }
  .about-section, .analytics-layout {
    gap: 45px;
  }
  .about-section {
    grid-template-columns: 1fr 1fr;
  }
  .analytics-layout {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .service-card {
    padding-inline: 20px;
  }
  .service-top > span {
    letter-spacing: .6px;
    font-size: 7px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card > p {
    min-height: 112px;
  }
  .dashboard {
    padding-inline: 18px;
  }
  .metric-summary {
    flex-wrap: wrap;
  }
  .metric-period {
    margin-top: 5px;
  }
  .footer-main {
    gap: 26px;
    grid-template-columns: 1fr 1.1fr 1.2fr;
  }
  .footer-navigation {
    display: none;
  }
  .footer-contact {
    gap: 14px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 18px;
  }
  .content-width {
    width: calc(100% - 44px);
  }
  .section-space {
    padding-block: 65px;
  }
  .header-inner {
    height: 77px;
    padding-inline: 20px;
  }
  .brand {
    font-size: 27px;
    gap: 5px;
  }
  .brand-symbol {
    width: 33px;
    height: 33px;
  }
  .brand-suffix {
    font-size: 9px;
  }
  .site-header .desktop-nav, .header-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid #d6e0d4;
    border-radius: 3px;
    background: transparent;
  }
  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform .2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 7px 24px 23px;
    gap: 0;
    background: var(--paper);
    position: absolute;
    top: 77px;
    left: 0;
    right: 0;
    box-shadow: 0 12px 16px #163e3512;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav a {
    padding: 14px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav a:last-child {
    border-bottom: 0;
  }
  .hero {
    margin-inline: 12px;
    min-height: 615px;
  }
  .hero-content {
    padding: 51px 22px 112px;
  }
  .hero h1 {
    font-size: clamp(51px, 9.8vw, 70px);
    letter-spacing: -2.5px;
    margin-top: 34px;
  }
  .hero h1 em {
    letter-spacing: -2.4px;
  }
  .hero .eyebrow {
    font-size: 7px;
    letter-spacing: 1.3px;
    gap: 8px;
  }
  .hero-image {
    object-position: 67% center;
  }
  .hero-shade {
    background: linear-gradient(90deg, #0b302fea, #103c3399 68%, #0c393659), linear-gradient(0deg, #0c323380, transparent);
  }
  .hero-description {
    font-size: 13px;
    margin-top: 25px;
    max-width: 310px;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    gap: 13px 25px;
    margin-top: 25px;
  }
  .hero-actions .button {
    font-size: 11px;
    gap: 26px;
    min-height: 49px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-bottom {
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding-top: 17px;
  }
  .hero-bottom > p {
    font-size: 6px;
    letter-spacing: 1px;
    max-width: 200px;
  }
  .hero-bottom a {
    font-size: 8px;
    gap: 9px;
  }
  .hero-side-note {
    display: none;
  }
  .principles {
    padding-block: 13px;
    grid-template-columns: 1fr;
  }
  .principles > div {
    padding: 20px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    gap: 23px;
  }
  .principles > div:first-child {
    border-bottom: 1px solid var(--line);
  }
  .principles > div:last-child {
    border-bottom: 0;
  }
  .principles h2 {
    font-size: 17px;
  }
  .principles p {
    font-size: 12px;
  }
  .about-section, .analytics-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  main h2 {
    font-size: 39px;
    letter-spacing: -1.5px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .about-copy h2 {
    margin-top: 22px;
  }
  .about-copy > p:not(.eyebrow) {
    max-width: none;
    font-size: 13px;
  }
  .about-visual {
    margin-left: 10px;
    padding-bottom: 20px;
  }
  .about-visual > img {
    height: 345px;
  }
  .image-caption {
    left: -10px;
    right: 14px;
    padding: 20px;
    gap: 12px;
  }
  .image-caption p {
    font-size: 16px;
  }
  .caption-small {
    font-size: 6px;
  }
  .caption-mark {
    font-size: 30px;
  }
  .section-heading {
    gap: 21px;
    margin-bottom: 29px;
  }
  .section-intro {
    font-size: 13px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .service-card {
    padding: 27px 25px 21px;
  }
  .service-card h3 {
    font-size: 24px;
  }
  .service-card > p {
    min-height: 0;
    font-size: 13px;
  }
  .service-top {
    margin-bottom: 28px;
  }
  .service-top > span {
    font-size: 8px;
  }
  .service-card details {
    margin-top: 22px;
  }
  .analytics-copy h2 {
    font-size: 42px;
  }
  .dashboard-wrap {
    margin: 0 4px;
  }
  .dashboard {
    padding: 24px 19px 17px;
  }
  .metric-summary {
    flex-wrap: nowrap;
  }
  #metric-value {
    font-size: 27px;
  }
  .metric-period {
    max-width: 62px;
    text-align: right;
    line-height: 1.6;
  }
  .dashboard-heading h3 {
    font-size: 15px;
  }
  .dashboard-insight p {
    font-size: 8px;
  }
  .dashboard-note {
    font-size: 6px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 31px;
    margin-top: 36px;
  }
  .process-number {
    padding-bottom: 13px;
    margin-bottom: 20px;
  }
  .process-grid p {
    max-width: none;
    font-size: 13px;
  }
  .contact-section {
    padding-block: 57px;
  }
  .contact-section h2 {
    font-size: 38px;
  }
  .contact-section p:not(.eyebrow) {
    max-width: 260px;
    line-height: 1.8;
  }
  .consultation-button {
    margin-top: 0;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand > p {
    margin-top: 13px;
  }
  .footer-main h2 {
    margin-bottom: 17px;
  }
  .footer-contact {
    font-size: 12px;
    gap: 10px;
  }
  .footer-phone {
    font-size: 11px;
  }
  .footer-main address {
    font-size: 10px;
  }
  .footer-bottom {
    gap: 15px 20px;
    line-height: 1.6;
    font-size: 8px;
  }
  .footer-bottom > p:nth-child(2) {
    display: none;
  }
  #consultation-dialog {
    padding: 32px 24px 24px;
  }
  #dialog-title {
    font-size: 36px;
  }
}

@media (max-width: 370px) {
  .hero-content {
    padding-inline: 19px;
  }
  .hero h1 {
    font-size: 47px;
  }
  .hero .eyebrow {
    font-size: 6px;
  }
  .hero-bottom > p {
    max-width: 145px;
    line-height: 1.8;
  }
  .metric-value {
    gap: 6px;
  }
  #metric-value {
    font-size: 23px;
  }
  .dashboard {
    padding-inline: 14px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
