@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}
:root {
  --paper: #f7f5f1;
  --ink: #272c28;
  --muted: #676e64;
  --gold: #c8863a;
  --gold-light: #ddb06d;
  --line: #dedfd6;
  --soft: #eeeee7;
  --dark: #29312c;
  --font: "IBM Plex Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open {
  overflow: hidden;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}
button:disabled {
  cursor: default;
}
img,
svg {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 400;
}
h2 {
  font-size: 45px;
  line-height: 1.17;
  letter-spacing: -1.65px;
}
h3 {
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -0.55px;
}
p {
  color: var(--muted);
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1240px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 104px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 1.65px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--muted);
}
.section-label {
  margin-bottom: 25px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
}
.button > span:last-child {
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}
.button-gold {
  background: var(--gold-light);
  color: var(--ink);
}
.button-gold:hover {
  background: #e5bd83;
}
.button-dark {
  background: var(--dark);
  color: var(--paper);
}
.button-dark:hover {
  background: #404b43;
}
.button-outline {
  border-color: #c9ccc2;
}
.button-outline:hover {
  background: var(--soft);
  border-color: var(--ink);
}
.button-small {
  min-height: 43px;
  padding: 10px 17px;
  font-size: 12px;
  gap: 25px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--ink);
  color: #fff;
  padding: 12px;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 245, 241, 0.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 93px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}
.brand {
  flex-shrink: 0;
  display: block;
}
.brand img {
  width: 216px;
  height: auto;
}
.brand-tagline {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 12px;
}
.navigation > a:not(.button) {
  position: relative;
}
.navigation > a:not(.button):after {
  content: "";
  height: 1px;
  background: var(--gold);
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 100%;
  transition: right 0.18s;
}
.navigation > a:hover:after {
  right: 0;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  align-items: center;
  gap: 10px;
  padding-top: 78px;
  padding-bottom: 76px;
  min-height: 650px;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  font-size: 10px;
  letter-spacing: 1.4px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.status-dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  background: var(--gold);
  border-radius: 50%;
}
h1 {
  font-size: clamp(64px, 6.5vw, 89px);
  line-height: 1.055;
  letter-spacing: -4.6px;
  margin: 30px 0 25px;
}
h1 > span {
  color: #b67b38;
}
.hero-description {
  font-size: 16px;
  line-height: 1.75;
  max-width: 470px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-top: 33px;
}
.text-link {
  font-size: 13px;
  display: inline-flex;
  gap: 20px;
  align-items: center;
}
.text-link:hover {
  color: #9a642c;
}
.text-link span {
  font-size: 20px;
}
.hero-note {
  font-size: 11px;
  margin-top: 22px;
  color: #676e64;
}
.hero-visual {
  position: relative;
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  margin-left: 12px;
}
.constellation {
  width: 100%;
  overflow: visible;
}
.visual-caption {
  position: absolute;
  top: 14px;
  left: 25px;
  font-size: 8px;
  letter-spacing: 1.5px;
  line-height: 1.9;
  color: #676e64;
}
.visual-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: #babeb2;
  border-style: solid;
}
.visual-corner-top {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}
.visual-corner-bottom {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}
.visual-footer {
  position: absolute;
  bottom: 14px;
  left: 25px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 8px;
  letter-spacing: 1.3px;
  color: #676e64;
}
.visual-footer span:last-child {
  font-size: 12px;
  letter-spacing: 2px;
}
.expertise-strip {
  border-block: 1px solid var(--line);
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.expertise-strip > span {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.expertise-strip .strip-label {
  font-size: 11px;
  color: var(--muted);
  margin-right: 40px;
}
.expertise-strip i {
  font-size: 22px;
  font-style: normal;
  color: #8c9383;
  font-weight: 400;
}
.section-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 50px;
}
.section-description {
  font-size: 15px;
  line-height: 1.85;
  max-width: 430px;
  margin-bottom: 3px;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.approach-card {
  padding: 34px 35px 0 0;
  border-top: 1px solid var(--line);
}
.approach-card + article {
  padding-left: 35px;
  border-left: 1px solid var(--line);
}
.approach-card:last-child {
  padding-right: 0;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 38px;
}
.card-top svg {
  width: 35px;
  height: 35px;
  stroke: #939b85;
  stroke-width: 1.1;
}
.card-top > span {
  font-size: 10px;
  color: #676e64;
  letter-spacing: 1px;
}
.approach-card h3 {
  font-size: 23px;
  margin-bottom: 15px;
}
.approach-card p {
  font-size: 14px;
  line-height: 1.85;
  max-width: 330px;
}
.audience-section {
  background: var(--dark);
  color: var(--paper);
  padding: 80px 0 0;
}
.audience-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr;
  column-gap: 62px;
}
.audience-heading .eyebrow {
  color: #bac0b2;
}
.audience-heading h2 {
  font-size: 43px;
}
.audience-heading > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.85;
  color: #b8bfb1;
  margin-top: 25px;
}
.audience-mark {
  width: 119px;
  height: 72px;
  margin-top: 32px;
  color: #7f8b79;
}
.audience-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.audience-cards article {
  background: #333c35;
  border: 1px solid #465044;
  border-radius: 3px;
  padding: 27px 26px;
  position: relative;
}
.audience-index {
  font-size: 8px;
  letter-spacing: 1.1px;
  color: #c9cfbf;
  display: block;
  margin-bottom: 42px;
}
.audience-cards h3 {
  font-size: 23px;
  letter-spacing: -0.4px;
  line-height: 1.35;
}
.audience-cards p {
  font-size: 13px;
  line-height: 1.85;
  color: #b9c1b1;
  margin-top: 20px;
  padding-bottom: 37px;
}
.audience-arrow {
  position: absolute;
  right: 25px;
  bottom: 20px;
  color: var(--gold-light);
  font-size: 25px;
}
.audience-bottom {
  grid-column: 1/-1;
  margin-top: 50px;
  border-top: 1px solid #465044;
  padding-block: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  font-size: 12px;
  color: #c7cdbf;
}
.gold-star {
  font-size: 22px;
  color: var(--gold-light);
}
.cycle-section .section-intro {
  margin-bottom: 44px;
}
.cycle-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cycle-tab {
  padding: 25px 18px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  font-size: 13px;
  line-height: 1.5;
  transition: background 0.18s;
}
.cycle-tab + .cycle-tab {
  border-left: 1px solid var(--line);
}
.cycle-tab.is-active {
  background: #eaeadd;
}
.cycle-tab.is-active:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}
.cycle-tab:hover {
  background: #edeee5;
}
.tab-number {
  font-size: 10px;
  color: #776746;
  line-height: 2;
}
.tab-arrow {
  margin-left: auto;
  color: #858d7d;
  font-size: 18px;
}
.cycle-tab.is-active .tab-arrow {
  color: #a56f31;
}
.cycle-panel {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 75px;
  padding: 49px 37px 49px 27px;
  min-height: 347px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.panel-copy > .eyebrow {
  font-size: 9px;
  letter-spacing: 1.3px;
  color: #866333;
  margin-bottom: 20px;
}
.panel-copy h3 {
  font-size: 31px;
  line-height: 1.2;
  letter-spacing: -0.9px;
  margin-bottom: 18px;
}
.panel-copy > p:last-child {
  font-size: 13px;
  line-height: 1.85;
  max-width: 475px;
}
.panel-result {
  position: relative;
  background: #eeeee5;
  border: 1px solid #e1e2d6;
  border-radius: 3px;
  padding: 29px 30px;
}
.result-icon {
  position: absolute;
  right: 24px;
  top: 19px;
  font-size: 22px;
  color: #8f967d;
}
.panel-result .eyebrow {
  font-size: 9px;
  letter-spacing: 1.4px;
  margin-bottom: 16px;
}
.panel-result h4 {
  font-size: 19px;
  letter-spacing: -0.3px;
}
.panel-result ul {
  list-style: none;
  padding: 0;
  margin: 19px 0 0;
  font-size: 12px;
  line-height: 1.9;
  color: #626b5b;
}
.panel-result li {
  position: relative;
  padding-left: 19px;
  margin-top: 5px;
}
.panel-result li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8b966f;
  font-size: 11px;
}
.cycle-repeat {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-top: 25px;
}
.repeat-icon {
  font-size: 35px;
  line-height: 1;
  color: #898f7c;
}
.cycle-repeat p {
  font-size: 13px;
  color: var(--ink);
}
.cycle-repeat p > span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}
.repeat-period {
  margin-left: auto;
  font-size: 9px;
  letter-spacing: 1.2px;
  white-space: nowrap;
  color: var(--muted);
}
.team-section {
  background: var(--soft);
  border-block: 1px solid var(--line);
  padding-block: 63px;
}
.team-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 90px;
  align-items: center;
}
.team-inner h2 {
  font-size: 37px;
  line-height: 1.24;
  letter-spacing: -1px;
}
.team-inner h2 span {
  color: #747c67;
}
.team-points > p:not(.team-note) {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #d8dbce;
  padding-block: 13px;
  color: var(--ink);
  font-size: 14px;
}
.team-points > p > span {
  font-size: 19px;
  color: #9a8660;
}
.team-points .team-note {
  font-size: 12px;
  line-height: 1.85;
  margin-top: 20px;
  max-width: 380px;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 100px;
}
.faq-section h2 {
  font-size: 38px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  font-size: 15px;
  line-height: 1.5;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 23px;
  line-height: 1;
  color: #8c937e;
  flex-shrink: 0;
}
details[open] summary span {
  transform: rotate(45deg);
}
details > p {
  font-size: 13px;
  line-height: 1.85;
  max-width: 96%;
  padding-bottom: 24px;
}
summary:hover {
  color: #9e6d36;
}
.contact-section {
  position: relative;
  background: #e8bd7f;
  padding: 64px 40px 31px;
  text-align: center;
  border-radius: 4px;
  overflow: hidden;
}
.contact-section > .eyebrow {
  font-size: 9px;
  letter-spacing: 1.6px;
  color: #5e4a2d;
  margin-bottom: 24px;
}
.contact-section h2 {
  font-size: 43px;
  letter-spacing: -1.4px;
  line-height: 1.23;
  position: relative;
}
.contact-description {
  font-size: 14px;
  line-height: 1.8;
  color: #5e4a2d;
  margin-block: 21px 27px;
}
.contact-decoration {
  position: absolute;
  font-size: 310px;
  font-weight: 400;
  line-height: 1;
  color: #dab178;
  right: -48px;
  top: 40px;
  transform: rotate(12deg);
  pointer-events: none;
}
.contact-section .button {
  position: relative;
}
.contact-details {
  font-size: 13px;
  margin-top: 15px;
}
.contact-caption {
  display: block;
  font-size: 8px;
  letter-spacing: 1.8px;
  color: #5e4a2d;
  border-top: 1px solid #d7af75;
  padding-top: 24px;
  margin-top: 37px;
}
.footer {
  display: flex;
  align-items: center;
  gap: 35px;
  min-height: 126px;
}
.footer .brand img {
  width: 182px;
}
.footer > p {
  font-size: 11px;
  margin-left: 20px;
}
.footer > span {
  margin-left: auto;
  font-size: 10px;
  color: var(--muted);
}
.footer-company {
  border-top: 1px solid var(--line);
  padding-block: 18px 24px;
  font-size: 11px;
  line-height: 1.7;
}
.back-top {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  width: 35px;
  height: 35px;
  color: var(--muted);
  font-size: 17px;
}
.back-top:hover {
  border-color: #9ea38f;
}
.contact-dialog {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  z-index: 101;
  border: 1px solid var(--line);
  border-radius: 5px;
  width: min(540px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  overflow: auto;
  padding: 38px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 20px 100px #1b211b33;
}
.dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #20262088;
  backdrop-filter: blur(3px);
}
.dialog-close {
  position: absolute;
  right: 19px;
  top: 13px;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 30px;
  width: 36px;
  height: 36px;
  display: grid;
  place-content: center;
}
.contact-dialog .section-label {
  margin-bottom: 14px;
}
.contact-dialog h2 {
  font-size: 34px;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.contact-dialog > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 25px;
}
.contact-dialog label {
  display: block;
  font-size: 12px;
  color: var(--ink);
  margin-top: 18px;
}
.contact-dialog input,
.contact-dialog textarea {
  display: block;
  border: 1px solid #d3d6cb;
  border-radius: 3px;
  background: #fffefa;
  padding: 11px 12px;
  color: var(--ink);
  width: 100%;
  font-size: 13px;
  margin-top: 7px;
  resize: vertical;
}
.contact-dialog textarea {
  min-height: 95px;
}
.optional {
  color: var(--muted);
  font-size: 10px;
}
.form-note {
  font-size: 11px;
  line-height: 1.65;
  margin-block: 19px;
}
.form-submit {
  width: 100%;
  justify-content: space-between;
}
.form-submit:disabled {
  opacity: 0.6;
}
.form-note a,
.contact-details a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.form-verification {
  margin-top: 22px;
}
.form-retry {
  padding: 6px 0;
  margin-top: 5px;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-fallback {
  margin-bottom: 0;
  overflow-wrap: anywhere;
}
.form-status {
  font-size: 12px;
  line-height: 1.6;
}
.form-status:not(:empty) {
  margin-top: 15px;
}
@media (min-width: 1550px) {
  .container {
    width: min(1280px, calc(100% - 160px));
  }
  .hero {
    min-height: 710px;
  }
  h1 {
    font-size: 94px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .header-inner {
    height: 82px;
  }
  .brand img {
    width: 185px;
  }
  .navigation {
    gap: 22px;
    font-size: 11px;
  }
  .button-small {
    font-size: 11px;
    gap: 17px;
  }
  .hero {
    padding-top: 65px;
    padding-bottom: 65px;
    min-height: 590px;
  }
  h1 {
    font-size: 72px;
    letter-spacing: -3.7px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding-inline: 18px;
  }
  .hero-actions .text-link {
    font-size: 12px;
    gap: 12px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .hero-note {
    font-size: 10px;
  }
  .visual-caption {
    font-size: 7px;
  }
  .expertise-strip .strip-label {
    margin-right: 15px;
  }
  .expertise-strip > span {
    font-size: 13px;
  }
  .section {
    padding-block: 80px;
  }
  .section-intro {
    gap: 50px;
  }
  h2 {
    font-size: 39px;
  }
  .section-description {
    font-size: 14px;
  }
  .approach-card h3 {
    font-size: 21px;
  }
  .approach-card p {
    font-size: 13px;
  }
  .approach-card {
    padding-right: 24px;
  }
  .approach-card + article {
    padding-left: 24px;
  }
  .audience-inner {
    grid-template-columns: 0.8fr 1.4fr;
    column-gap: 35px;
  }
  .audience-heading h2 {
    font-size: 35px;
  }
  .audience-cards {
    gap: 12px;
  }
  .audience-cards article {
    padding: 22px 20px;
  }
  .audience-index {
    font-size: 7px;
    letter-spacing: 0.8px;
  }
  .audience-cards h3 {
    font-size: 21px;
  }
  .audience-cards p {
    font-size: 12px;
  }
  .audience-bottom {
    font-size: 11px;
  }
  .cycle-tab {
    font-size: 12px;
    padding-inline: 13px;
    gap: 12px;
  }
  .cycle-panel {
    gap: 45px;
    padding-inline: 20px;
  }
  .panel-copy h3 {
    font-size: 28px;
  }
  .panel-result {
    padding: 25px 23px;
  }
  .panel-result h4 {
    font-size: 17px;
  }
  .panel-result ul {
    font-size: 11px;
  }
  .team-inner {
    gap: 65px;
  }
  .team-inner h2 {
    font-size: 34px;
  }
  .faq-section {
    gap: 70px;
  }
  .contact-section h2 {
    font-size: 40px;
  }
}
@media (max-width: 800px) {
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 75px;
  }
  .brand img {
    width: 177px;
  }
  .menu-toggle:not([hidden]) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 11px;
    flex-shrink: 0;
  }
  .menu-toggle span {
    height: 1px;
    width: 18px;
    background: var(--ink);
    transition: transform 0.18s;
  }
  .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);
  }
  .navigation {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
  }
  .js .navigation {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    padding: 22px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 20px #272c2808;
  }
  .js .navigation.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .js .navigation > a:not(.button) {
    padding: 14px 2px;
    font-size: 15px;
  }
  .js .navigation .button {
    margin-top: 12px;
    font-size: 14px;
  }
  .navigation > a:not(.button):after {
    display: none;
  }
  .hero {
    min-height: 510px;
    padding-block: 53px;
    grid-template-columns: 1.15fr 1fr;
  }
  .hero .eyebrow {
    font-size: 7px;
    letter-spacing: 0.9px;
  }
  h1 {
    font-size: 59px;
    letter-spacing: -2.8px;
    margin-top: 25px;
    margin-bottom: 22px;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.8;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 26px;
  }
  .hero-actions .button {
    min-height: 49px;
  }
  .hero-actions .text-link {
    gap: 13px;
  }
  .hero-note {
    font-size: 9px;
    margin-top: 20px;
    max-width: 220px;
  }
  .hero-visual {
    margin-left: 0;
    align-self: center;
    min-height: 380px;
  }
  .visual-caption {
    font-size: 6px;
    letter-spacing: 0.8px;
    left: 15px;
    top: 12px;
  }
  .visual-footer {
    font-size: 6px;
    letter-spacing: 0.6px;
    left: 15px;
    right: 12px;
  }
  .visual-footer span:last-child {
    font-size: 9px;
  }
  .expertise-strip {
    gap: 15px;
    flex-wrap: wrap;
    padding-block: 19px;
  }
  .expertise-strip .strip-label {
    width: 100%;
    font-size: 10px;
  }
  .expertise-strip > span {
    font-size: 12px;
    gap: 8px;
  }
  .expertise-strip i {
    font-size: 17px;
  }
  .section {
    padding-block: 66px;
  }
  h2 {
    font-size: 33px;
    letter-spacing: -1px;
  }
  .section-intro {
    gap: 34px;
    margin-bottom: 35px;
    grid-template-columns: 1.1fr 1fr;
  }
  .section-description {
    font-size: 12px;
    line-height: 1.85;
  }
  .section-label {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .approach-card {
    padding-right: 20px;
    padding-top: 26px;
  }
  .approach-card + article {
    padding-left: 20px;
  }
  .card-top {
    margin-bottom: 26px;
  }
  .card-top svg {
    width: 30px;
    height: 30px;
  }
  .approach-card h3 {
    font-size: 18px;
  }
  .approach-card p {
    font-size: 12px;
  }
  .audience-section {
    padding-top: 55px;
  }
  .audience-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .audience-heading {
    position: relative;
  }
  .audience-heading h2 {
    font-size: 35px;
  }
  .audience-heading > p:not(.eyebrow) {
    font-size: 13px;
    margin-top: 19px;
  }
  .audience-mark {
    position: absolute;
    right: 30px;
    bottom: 0;
    width: 150px;
    height: 90px;
  }
  .audience-cards {
    gap: 18px;
  }
  .audience-cards article {
    padding: 25px;
  }
  .audience-index {
    font-size: 8px;
    margin-bottom: 30px;
  }
  .audience-cards h3 {
    font-size: 24px;
  }
  .audience-cards p {
    font-size: 13px;
    max-width: 300px;
  }
  .audience-bottom {
    margin-top: 0;
    justify-content: flex-start;
    font-size: 11px;
    padding-block: 23px;
  }
  .cycle-tab {
    font-size: 10px;
    gap: 9px;
    padding-block: 20px;
    padding-inline: 10px;
  }
  .tab-number {
    font-size: 9px;
  }
  .tab-arrow {
    font-size: 15px;
  }
  .cycle-panel {
    gap: 25px;
    padding: 34px 8px;
    grid-template-columns: 1.2fr 1fr;
    min-height: 365px;
  }
  .panel-copy h3 {
    font-size: 26px;
  }
  .panel-copy > p:last-child {
    font-size: 12px;
  }
  .panel-result {
    padding: 22px 19px;
  }
  .panel-result h4 {
    font-size: 17px;
  }
  .panel-result ul {
    font-size: 10px;
  }
  .result-icon {
    right: 17px;
    top: 14px;
  }
  .repeat-period {
    font-size: 8px;
  }
  .cycle-repeat p {
    font-size: 12px;
  }
  .cycle-repeat p > span {
    font-size: 10px;
    max-width: 380px;
  }
  .team-inner {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
  }
  .team-inner h2 {
    font-size: 29px;
  }
  .team-points > p:not(.team-note) {
    font-size: 12px;
    gap: 12px;
  }
  .team-points .team-note {
    font-size: 11px;
  }
  .faq-section {
    grid-template-columns: 0.9fr 1.2fr;
    gap: 42px;
  }
  .faq-section h2 {
    font-size: 32px;
  }
  summary {
    font-size: 13px;
    padding-block: 20px;
  }
  details > p {
    font-size: 12px;
  }
  .contact-section {
    padding: 48px 25px 27px;
  }
  .contact-section h2 {
    font-size: 35px;
  }
  .contact-description {
    font-size: 13px;
  }
  .contact-decoration {
    font-size: 230px;
    right: -67px;
    top: 47px;
  }
  .contact-caption {
    font-size: 7px;
    letter-spacing: 1.3px;
  }
  .footer {
    gap: 20px;
    min-height: 110px;
  }
  .footer .brand img {
    width: 145px;
  }
  .footer > p {
    font-size: 9px;
    margin-left: 0;
  }
  .footer > span {
    font-size: 9px;
  }
  .back-top {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 560px) {
  html {
    scroll-padding-top: 94px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    gap: 12px;
  }
  .header .brand img {
    width: 173px;
  }
  .navigation {
    font-size: 9px;
    gap: 7px;
  }
  .navigation .button {
    min-height: 33px;
    padding: 6px;
    font-size: 9px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
    padding-top: 43px;
    padding-bottom: 28px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.1px;
  }
  h1 {
    font-size: clamp(52px, 13vw, 72px);
    line-height: 1.08;
    letter-spacing: -3px;
    margin-top: 23px;
    margin-bottom: 21px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 355px;
    line-height: 1.8;
  }
  .hero-actions {
    gap: 22px;
    flex-wrap: nowrap;
    margin-top: 26px;
  }
  .hero-actions .button {
    font-size: 12px;
    gap: 20px;
    padding-inline: 17px;
    min-height: 50px;
  }
  .hero-actions .text-link {
    font-size: 11px;
    gap: 12px;
  }
  .hero-note {
    font-size: 10px;
    max-width: none;
    margin-top: 17px;
  }
  .hero-visual {
    min-height: 0;
    align-self: stretch;
    height: 310px;
    width: 100%;
    margin-top: 6px;
  }
  .constellation {
    height: 100%;
    width: 100%;
  }
  .visual-caption {
    font-size: 6px;
    top: 8px;
    left: 12px;
    letter-spacing: 1px;
  }
  .visual-footer {
    bottom: 8px;
    font-size: 6px;
    left: 12px;
  }
  .expertise-strip {
    padding-block: 18px;
    row-gap: 15px;
    column-gap: 12px;
  }
  .expertise-strip .strip-label {
    font-size: 9px;
  }
  .expertise-strip > span {
    font-size: 11px;
    gap: 7px;
  }
  .expertise-strip i {
    font-size: 15px;
  }
  .section {
    padding-block: 57px;
  }
  .section-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 33px;
  }
  .section-label {
    font-size: 8px;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: -1.2px;
  }
  .section-description {
    font-size: 13px;
    max-width: 390px;
  }
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .approach-card,
  .approach-card + article {
    padding: 24px 0;
    border-left: 0;
  }
  .approach-card:last-child {
    padding-bottom: 0;
  }
  .card-top {
    margin-bottom: 20px;
  }
  .card-top svg {
    width: 30px;
    height: 30px;
  }
  .approach-card h3 {
    font-size: 23px;
    margin-bottom: 12px;
  }
  .approach-card p {
    font-size: 13px;
    max-width: 390px;
  }
  .audience-section {
    padding-top: 48px;
  }
  .audience-inner {
    gap: 30px;
  }
  .audience-heading h2 {
    font-size: 34px;
  }
  .audience-heading > p:not(.eyebrow) {
    font-size: 12px;
  }
  .audience-mark {
    width: 77px;
    height: 50px;
    right: 0;
    bottom: 10px;
  }
  .audience-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .audience-cards article {
    padding: 25px;
  }
  .audience-index {
    font-size: 8px;
    margin-bottom: 23px;
  }
  .audience-cards h3 {
    font-size: 25px;
  }
  .audience-cards p {
    font-size: 13px;
    margin-top: 16px;
    padding-bottom: 23px;
    max-width: 100%;
  }
  .audience-bottom {
    font-size: 11px;
    line-height: 1.85;
    align-items: flex-start;
    gap: 15px;
  }
  .gold-star {
    font-size: 23px;
    line-height: 1.3;
  }
  .cycle-section .section-intro {
    margin-bottom: 30px;
  }
  .cycle-tabs {
    grid-template-columns: 1fr 1fr;
    border-bottom: 0;
  }
  .cycle-tab {
    min-height: 87px;
    padding: 17px 12px;
    font-size: 12px;
    gap: 11px;
    border-bottom: 1px solid var(--line);
  }
  .cycle-tab:nth-child(3) {
    border-left: 0;
  }
  .tab-number {
    font-size: 9px;
  }
  .tab-arrow {
    font-size: 16px;
  }
  .cycle-panel {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 31px 0;
    min-height: 0;
  }
  .panel-copy > .eyebrow {
    font-size: 8px;
    margin-bottom: 16px;
  }
  .panel-copy h3 {
    font-size: 29px;
  }
  .panel-copy > p:last-child {
    font-size: 13px;
  }
  .panel-result {
    padding: 24px;
  }
  .panel-result h4 {
    font-size: 20px;
  }
  .panel-result ul {
    font-size: 12px;
  }
  .panel-result .eyebrow {
    font-size: 8px;
  }
  .result-icon {
    right: 22px;
    top: 19px;
  }
  .cycle-repeat {
    align-items: flex-start;
    gap: 14px;
    margin-top: 23px;
    flex-wrap: wrap;
  }
  .repeat-icon {
    font-size: 31px;
    margin-top: 1px;
  }
  .cycle-repeat p {
    font-size: 12px;
    flex: 1;
  }
  .cycle-repeat p > span {
    font-size: 11px;
    line-height: 1.7;
    margin-top: 5px;
  }
  .repeat-period {
    margin-left: 45px;
    width: 100%;
    font-size: 8px;
    margin-top: 1px;
  }
  .team-section {
    padding-block: 45px;
  }
  .team-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .team-inner h2 {
    font-size: 33px;
  }
  .team-points > p:not(.team-note) {
    font-size: 14px;
    gap: 20px;
  }
  .team-points .team-note {
    font-size: 12px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .faq-section h2 {
    font-size: 33px;
  }
  summary {
    font-size: 14px;
    padding-block: 21px;
  }
  details > p {
    font-size: 13px;
  }
  .contact-section {
    width: calc(100% - 24px);
    padding: 42px 21px 24px;
  }
  .contact-section > .eyebrow {
    font-size: 8px;
    margin-bottom: 21px;
  }
  .contact-section h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -1.1px;
  }
  .contact-description {
    font-size: 13px;
    margin-block: 20px 25px;
  }
  .contact-section .button {
    font-size: 13px;
    padding-inline: 21px;
    min-height: 51px;
  }
  .contact-decoration {
    font-size: 180px;
    right: -70px;
    top: 81px;
  }
  .contact-caption {
    font-size: 6px;
    letter-spacing: 0.9px;
    line-height: 1.7;
    margin-top: 30px;
    padding-top: 20px;
  }
  .footer {
    flex-wrap: wrap;
    padding-block: 30px;
    gap: 17px;
    justify-content: space-between;
  }
  .footer .brand img {
    width: 156px;
  }
  .footer > p {
    width: auto;
    font-size: 9px;
  }
  .footer > span {
    margin: 0;
    flex-basis: 75%;
    font-size: 9px;
  }
  .back-top {
    width: 29px;
    height: 29px;
  }
  .contact-dialog {
    padding: 29px 23px;
  }
  .contact-dialog h2 {
    font-size: 31px;
  }
  .contact-dialog .eyebrow {
    font-size: 8px;
  }
  .contact-dialog > p:not(.eyebrow) {
    font-size: 12px;
  }
  .contact-dialog label {
    margin-top: 15px;
  }
  .dialog-close {
    right: 12px;
    top: 9px;
  }
  .form-note {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 560px) {
  .contact-dialog input,
  .contact-dialog textarea {
    font-size: 16px;
  }
}
