:root {
  --navy-950: #061525;
  --navy-900: #0a1f34;
  --navy-800: #12314f;
  --blue-700: #174dbd;
  --blue-600: #2864dc;
  --blue-500: #4b83e7;
  --blue-100: #dbe7fc;
  --blue-50: #eef4ff;
  --gold: #c5a66a;
  --gold-soft: #e8dcc4;
  --ink: #102238;
  --muted: #536276;
  --line: #d5dde7;
  --surface: #ffffff;
  --off-white: #f5f7fa;
  --warm: #f4f0e8;
  --shell: min(1180px, calc(100vw - 48px));
  --shadow: 0 24px 70px rgb(7 25 42 / 12%);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family:
    "Segoe UI",
    "Yu Gothic UI",
    "Noto Sans JP",
    system-ui,
    sans-serif;
  font-size: 16px;
  line-height: 1.82;
  text-rendering: optimizeLegibility;
}

.menu-open body {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

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

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

h1,
h2,
h3,
p,
dl,
dd,
figure,
fieldset {
  margin-top: 0;
}

:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: white;
  background: var(--navy-950);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.scroll-progress {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--blue-600));
}

.review-bar {
  position: relative;
  z-index: 80;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  padding: 5px max(24px, calc((100vw - 1180px) / 2));
  color: #dbe5f1;
  background: var(--navy-950);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.review-bar p {
  display: flex;
  gap: 16px;
  margin: 0;
}

.review-bar strong {
  color: white;
  letter-spacing: 0.14em;
}

.review-bar__note {
  color: #aebed0;
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  border-bottom: 1px solid rgb(16 34 56 / 10%);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 34px rgb(6 21 37 / 9%);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.brand img {
  width: 30px;
  height: 27px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 31px);
  font-size: 14px;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 8px;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.mobile-consult {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding-inline: 20px;
  color: white;
  background: var(--blue-600);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.mobile-consult:hover,
.mobile-consult:focus-visible {
  background: var(--blue-700);
  transform: translateY(-1px);
}

.mobile-actions,
.mobile-consult,
.menu-button {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.hero::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: max(38%, calc((100vw - 1180px) / 2 + 450px));
  content: "";
  background:
    radial-gradient(circle at 50% 45%, rgb(57 122 220 / 23%), transparent 35%),
    var(--navy-950);
}

.hero-grid {
  position: absolute;
  z-index: 0;
  inset: 0 38% 0 0;
  opacity: 0.58;
  background-image:
    linear-gradient(rgb(34 80 127 / 8%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(34 80 127 / 8%) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  padding-block: 72px;
}

.industry-label {
  max-width: 700px;
  margin-bottom: 24px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.industry-label::before {
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 12px 4px 0;
  content: "";
  background: var(--gold);
}

.industry-label span {
  margin-inline: 6px;
  color: #8a96a5;
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 28px;
  color: var(--navy-950);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 640;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.hero h1 em {
  position: relative;
  color: var(--blue-600);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--blue-600), transparent);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: #42546a;
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button--primary {
  min-width: 220px;
  color: white;
  background: var(--blue-600);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--blue-700);
}

.button--secondary {
  min-width: 180px;
  color: var(--ink);
  border-color: #bfc9d5;
  background: rgb(255 255 255 / 45%);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--ink);
  background: white;
}

.button--light {
  min-width: 230px;
  color: var(--navy-950);
  background: white;
}

.button--wide {
  width: 100%;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-assurance li {
  padding: 3px 18px;
  border-left: 1px solid var(--gold);
  color: #4d5e71;
  font-size: 14px;
  font-weight: 600;
}

.hero-assurance li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-visual {
  position: relative;
  width: min(100%, 490px);
  min-height: 520px;
  justify-self: center;
  margin: 0;
  color: white;
}

.hero-visual figcaption {
  display: grid;
  gap: 4px;
  margin-bottom: 20px;
  color: #c0ccda;
  font-size: 14px;
}

.hero-visual figcaption span {
  color: #86aef0;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.concept-map {
  position: relative;
  height: 420px;
}

.concept-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgb(113 156 220 / 18%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.concept-ring--outer {
  width: 380px;
  height: 380px;
}

.concept-ring--inner {
  width: 270px;
  height: 270px;
}

.concept-line {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgb(83 136 211 / 35%));
  transform-origin: left;
}

.concept-line--one {
  transform: rotate(-90deg);
}

.concept-line--two {
  transform: rotate(28deg);
}

.concept-line--three {
  transform: rotate(152deg);
}

.concept-node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 112px;
  height: 112px;
  place-content: center;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 50%;
  background: rgb(13 39 65 / 88%);
  box-shadow: 0 18px 45px rgb(0 0 0 / 22%);
  text-align: center;
  backdrop-filter: blur(10px);
}

.concept-node small {
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.concept-node strong {
  font-size: 15px;
}

.concept-node--company {
  top: 0;
  left: calc(50% - 56px);
}

.concept-node--people {
  right: 4px;
  bottom: 24px;
}

.concept-node--customer {
  bottom: 24px;
  left: 4px;
}

.concept-core {
  position: absolute;
  z-index: 3;
  top: calc(50% - 60px);
  left: calc(50% - 60px);
  display: grid;
  width: 120px;
  height: 120px;
  place-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, #3f7cda, #15375a 62%, #0b1d31);
  box-shadow:
    0 0 0 12px rgb(51 116 215 / 10%),
    0 0 60px rgb(43 111 226 / 28%);
  text-align: center;
}

.concept-core img {
  width: 50px;
  height: 45px;
  margin: auto;
  object-fit: contain;
}

.concept-core span {
  margin-top: 6px;
  color: #c2d1e5;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.moving-point {
  position: absolute;
  z-index: 4;
  top: calc(50% - 4px);
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 15px var(--gold);
  animation: point-travel 4.8s ease-in-out infinite;
}

@keyframes point-travel {
  0%,
  100% {
    transform: translate(0);
  }
  50% {
    transform: translateY(-165px);
  }
}

.section {
  position: relative;
  padding-block: clamp(112px, 9vw, 140px);
}

.section-intro h2,
.crm h2,
.hearing h2 {
  margin-bottom: 0;
  color: var(--navy-950);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 630;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.section-intro--split {
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
  margin-bottom: 64px;
}

.section-intro--split > p {
  max-width: 510px;
  margin: 52px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.section-label > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-label > span::after {
  width: 24px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.section-label--light {
  color: #9abcf0;
}

.issues {
  background: white;
}

.issue-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.issue-entry-grid a {
  position: relative;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--off-white);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.issue-entry-grid a:hover,
.issue-entry-grid a:focus-visible {
  border-color: #8fa9d3;
  box-shadow: 0 18px 40px rgb(16 46 79 / 9%);
  transform: translateY(-3px);
}

.issue-entry-grid a > span {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.issue-entry-grid strong {
  display: block;
  margin: 32px 0 13px;
  font-size: 23px;
  font-weight: 650;
  line-height: 1.5;
}

.issue-entry-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.issue-entry-grid i {
  position: absolute;
  right: 25px;
  bottom: 20px;
  color: var(--blue-600);
  font-size: 22px;
  font-style: normal;
}

.issue-entry-grid__wide {
  grid-column: span 2;
  color: white;
  border-color: var(--navy-900) !important;
  background:
    linear-gradient(115deg, rgb(38 93 178 / 48%), transparent),
    var(--navy-900) !important;
}

.issue-entry-grid__wide > span,
.issue-entry-grid__wide i {
  color: var(--gold-soft) !important;
}

.issue-entry-grid__wide p {
  color: #c7d3df;
}

.services {
  background: var(--off-white);
}

.service-groups {
  display: grid;
  gap: 16px;
}

.service-group {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  padding: 48px;
  border: 1px solid var(--line);
  background: white;
}

.service-group--consult {
  color: white;
  border-color: var(--navy-900);
  background:
    radial-gradient(circle at 80% 50%, rgb(63 125 225 / 22%), transparent 32%),
    var(--navy-900);
}

.service-group--support {
  background: var(--warm);
}

.service-group__heading > p {
  margin-bottom: 22px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.service-group__heading > p span {
  margin-right: 12px;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 0;
}

.service-group--consult .service-group__heading > p {
  color: #92b6ed;
}

.service-group--consult .service-group__heading > p span {
  color: var(--gold-soft);
}

.service-group__heading h3 {
  margin: 0;
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 630;
  line-height: 1.5;
}

.service-item-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.service-item-list--two {
  grid-template-columns: repeat(2, 1fr);
}

.service-item {
  position: relative;
  display: grid;
  min-height: 170px;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 24px 45px 24px 20px;
  border: 1px solid var(--line);
  background: white;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.service-item:hover,
.service-item:focus-visible {
  border-color: var(--blue-500);
  transform: translateY(-2px);
}

.service-item--large {
  min-height: 210px;
  color: white;
  border-color: rgb(255 255 255 / 20%);
  background: rgb(255 255 255 / 4%);
}

.service-item__number {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 750;
}

.service-item--large .service-item__number {
  color: var(--gold-soft);
}

.service-item small {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.service-item--large small {
  color: #91b6ef;
}

.service-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.5;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-item--large p {
  color: #c4d0dd;
}

.service-item > i {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--blue-600);
  font-size: 20px;
  font-style: normal;
}

.service-item--large > i {
  color: var(--gold-soft);
}

.crm {
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 80% 22%, rgb(61 126 229 / 25%), transparent 28%),
    var(--navy-950);
}

.crm-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgb(87 135 198 / 10%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(87 135 198 / 10%) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black);
}

.crm-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.crm h2 {
  margin-bottom: 26px;
  color: white;
}

.crm-copy > p:not(.section-label) {
  margin-bottom: 26px;
  color: #c2cedb;
  font-size: 16px;
}

.crm-copy ul {
  display: grid;
  gap: 8px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.crm-copy li {
  position: relative;
  padding-left: 25px;
  color: #d7e0ea;
  font-size: 14px;
}

.crm-copy li::before {
  position: absolute;
  top: 0.9em;
  left: 0;
  width: 12px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.demo-stage {
  margin: 0;
}

.demo-stage figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}

.demo-stage figcaption strong {
  font-size: 16px;
}

.demo-stage figcaption span {
  color: #9ab0c8;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.demo-device {
  overflow: hidden;
  border: 1px solid #3d5570;
  border-radius: 12px;
  background: #142a42;
  box-shadow: 0 42px 85px rgb(0 0 0 / 28%);
}

.demo-device__bar {
  display: flex;
  gap: 6px;
  padding: 12px 15px;
  border-bottom: 1px solid #2d4660;
}

.demo-device__bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #607993;
}

.demo-dashboard {
  display: grid;
  min-height: 390px;
  grid-template-columns: 58px 1fr;
  background: #eef3f9;
}

.demo-dashboard aside {
  padding: 22px 13px;
  background: #0d2034;
}

.demo-dashboard aside b {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 auto 34px;
  border: 5px solid var(--blue-500);
  border-radius: 50%;
}

.demo-dashboard aside i {
  display: block;
  width: 25px;
  height: 4px;
  margin: 18px auto;
  border-radius: 5px;
  background: #365069;
}

.demo-main {
  min-width: 0;
  padding: 25px;
}

.demo-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.demo-head b {
  width: 150px;
  height: 15px;
  border-radius: 8px;
  background: #294b69;
}

.demo-head i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #c5d5e7;
}

.demo-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.demo-kpis span {
  display: grid;
  gap: 4px;
  padding: 13px;
  border: 1px solid #dbe4ef;
  background: white;
}

.demo-kpis small {
  color: #6e7e90;
  font-size: 11px;
}

.demo-kpis strong {
  color: #203d59;
  font-size: 21px;
}

.demo-panels {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 10px;
  margin-top: 10px;
}

.demo-chart,
.demo-ai {
  min-height: 135px;
  padding: 14px;
  border: 1px solid #dbe4ef;
  color: #253e58;
  background: white;
}

.demo-chart small,
.demo-ai small {
  color: #6683a4;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.demo-chart svg {
  margin-top: 10px;
}

.demo-chart path {
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 3;
}

.demo-ai b {
  display: block;
  margin: 15px 0;
  font-size: 13px;
}

.demo-ai i,
.demo-table i {
  display: block;
  height: 6px;
  margin-top: 9px;
  border-radius: 6px;
  background: #dce6f1;
}

.demo-ai i:nth-of-type(2) {
  width: 75%;
}

.demo-table {
  display: grid;
  gap: 7px;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid #dbe4ef;
  background: white;
}

.demo-table i {
  margin: 0;
}

.demo-note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 14px 0 0 50px;
  padding: 12px 16px;
  color: #283d53;
  background: white;
  box-shadow: 0 15px 35px rgb(0 0 0 / 16%);
  font-size: 13px;
}

.demo-note span {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.proof {
  background: white;
}

.proof-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  margin-bottom: 20px;
}

.tool-proof {
  margin: 0;
  padding: 36px;
  background: var(--warm);
}

.tool-proof figcaption {
  display: grid;
  gap: 3px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 650;
}

.tool-proof figcaption span {
  color: var(--blue-700);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.tool-window {
  overflow: hidden;
  border: 1px solid #c7c0b5;
  background: white;
  box-shadow: 0 26px 55px rgb(71 58 37 / 13%);
}

.tool-window__bar {
  display: flex;
  gap: 6px;
  padding: 11px;
  border-bottom: 1px solid var(--line);
}

.tool-window__bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b7c1cc;
}

.tool-window__body {
  display: grid;
  min-height: 320px;
  grid-template-columns: 65px 1fr;
  background: #f1f4f8;
}

.tool-window__body aside {
  padding: 24px 13px;
  background: var(--navy-900);
}

.tool-window__body aside b {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto 40px;
  border-radius: 50%;
  background: var(--gold);
}

.tool-window__body aside i {
  display: block;
  height: 5px;
  margin: 18px 0;
  background: #38536e;
}

.tool-window__body > div {
  padding: 30px;
}

.tool-window__body small {
  color: #66809e;
  font-size: 10px;
  letter-spacing: 0.09em;
}

.tool-window__body > div > strong {
  display: block;
  width: 190px;
  height: 18px;
  margin: 12px 0 36px;
  background: #2a4864;
}

.tool-window__body section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.tool-window__body section i {
  height: 90px;
  border-top: 3px solid var(--blue-500);
  background: white;
}

.tool-window__body footer {
  display: grid;
  gap: 8px;
  margin-top: 15px;
}

.tool-window__body footer i {
  height: 12px;
  background: white;
}

.tool-proof > p {
  margin: 17px 0 0;
  color: #665f55;
  font-size: 13px;
}

.principles {
  display: grid;
  border: 1px solid var(--line);
}

.principles article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 14px;
  padding: 27px 30px;
}

.principles article + article {
  border-top: 1px solid var(--line);
}

.principles span {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 750;
}

.principles h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.5;
}

.principles p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 20px;
  border: 1px solid var(--line);
}

.trust-strip article {
  min-height: 250px;
  padding: 30px;
}

.trust-strip article + article {
  border-left: 1px solid var(--line);
}

.trust-strip span {
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.09em;
}

.trust-strip strong {
  display: block;
  margin: 42px 0 16px;
  font-size: 22px;
  line-height: 1.55;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.three-piece-statement {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 38px;
  padding: 38px 48px;
  color: white;
  background:
    linear-gradient(105deg, rgb(34 90 176 / 54%), transparent),
    var(--navy-900);
}

.three-piece-statement__mark {
  display: grid;
  width: 100px;
  height: 100px;
  place-content: center;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 50%;
  background: white;
}

.three-piece-statement__mark img {
  width: 57px;
  height: 51px;
  object-fit: contain;
}

.three-piece-statement .section-label {
  margin-bottom: 8px;
  color: #a8c4ef;
}

.three-piece-statement h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.55;
}

.process {
  background: var(--warm);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0 0 22px;
  padding: 0;
  border: 1px solid #d5cdbf;
  background: white;
  list-style: none;
}

.process-list li {
  min-height: 215px;
  padding: 25px 21px;
}

.process-list li + li {
  border-left: 1px solid var(--line);
}

.process-list li > span {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 750;
}

.process-list strong {
  display: block;
  margin: 46px 0 10px;
  font-size: 18px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.support-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 80px;
  padding: 48px;
  color: white;
  background:
    linear-gradient(110deg, var(--navy-950), #123c6a 72%, #1f5ca8);
}

.support-panel h3 {
  margin: 0 0 15px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.45;
}

.support-panel > div > p:not(.section-label) {
  max-width: 600px;
  margin: 0;
  color: #c5d2df;
  font-size: 15px;
}

.support-panel dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.support-panel dl div {
  padding: 19px 16px 0 0;
}

.support-panel dl div + div {
  padding-left: 16px;
  border-left: 1px solid rgb(255 255 255 / 18%);
}

.support-panel dt {
  margin-bottom: 6px;
  color: #9fbee7;
  font-size: 12px;
  font-weight: 700;
}

.support-panel dd {
  margin: 0;
  font-size: 14px;
}

.faq {
  background: white;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: clamp(70px, 10vw, 150px);
}

.faq .section-intro > p:not(.section-label) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  min-height: 70px;
  padding: 23px 55px 23px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 650;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 7px;
  color: var(--blue-600);
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  padding: 0 55px 22px 0;
  color: var(--muted);
  font-size: 15px;
}

.hearing {
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 16% 12%, rgb(91 157 247 / 29%), transparent 26%),
    linear-gradient(130deg, #0c3362, #143f7a 56%, #1c5dc4);
}

.hearing-pattern {
  position: absolute;
  right: -220px;
  bottom: -350px;
  width: 780px;
  height: 780px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 50%;
}

.hearing-pattern::before,
.hearing-pattern::after {
  position: absolute;
  inset: 100px;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 50%;
  content: "";
}

.hearing-pattern::after {
  inset: 210px;
}

.hearing-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.hearing h2 {
  margin-bottom: 24px;
  color: white;
}

.hearing-copy > p:not(.section-label) {
  color: #ccdaeb;
  font-size: 16px;
}

.hearing-copy ul {
  display: grid;
  gap: 7px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hearing-copy li {
  position: relative;
  padding-left: 24px;
  color: #e2eaf4;
  font-size: 14px;
}

.hearing-copy li::before {
  position: absolute;
  top: 0.9em;
  left: 0;
  width: 12px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.hearing-preview {
  padding: 35px;
  color: var(--ink);
  background: white;
  box-shadow: 0 38px 80px rgb(0 0 0 / 20%);
}

.hearing-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.hearing-progress span,
.hearing-progress small {
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 750;
}

.hearing-progress i {
  height: 2px;
  background: #e2e8f0;
}

.hearing-progress b {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--blue-600);
}

.hearing-preview fieldset {
  padding: 0;
  border: 0;
}

.hearing-preview legend {
  margin-bottom: 17px;
  font-size: 16px;
  font-weight: 700;
}

.hearing-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.hearing-options label {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  cursor: pointer;
  color: #35495f;
  font-size: 14px;
  transition:
    border-color 150ms ease,
    background 150ms ease;
}

.hearing-options label:has(input:checked) {
  border-color: var(--blue-500);
  color: var(--blue-700);
  background: var(--blue-50);
}

.hearing-options input {
  width: 17px;
  height: 17px;
  accent-color: var(--blue-600);
}

.upload-policy {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 18px 0;
  padding: 13px;
  background: var(--off-white);
}

.upload-policy > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-content: center;
  border: 1px dashed #8da1ba;
  color: var(--blue-600);
}

.upload-policy p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.upload-policy strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.form-status {
  min-height: 24px;
  margin: 11px 0 0;
  color: #58687c;
  font-size: 12px;
  text-align: center;
}

.form-status.is-active {
  color: var(--blue-700);
  font-weight: 650;
}

.company {
  padding-block: 72px;
  background: var(--off-white);
}

.company-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.company h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.company dl {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.company dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.company dt {
  color: var(--muted);
}

.company dd {
  margin: 0;
}

.site-footer {
  color: white;
  background: var(--navy-950);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  padding-block: 72px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  font-size: 18px;
  letter-spacing: 0.07em;
}

.footer-brand img {
  width: 43px;
  height: 39px;
  object-fit: contain;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 6px;
}

.footer-links p {
  margin-bottom: 9px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.footer-links a {
  color: #c4cfda;
  font-size: 13px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: white;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-block: 17px;
  border-top: 1px solid rgb(255 255 255 / 13%);
  color: #8c9caf;
  font-size: 12px;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 550ms ease,
    transform 550ms ease;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 16px;
    font-size: 13px;
  }

  .nav-cta {
    padding-inline: 15px;
  }

  .hero-layout {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 38px;
  }

  .concept-ring--outer {
    width: 330px;
    height: 330px;
  }

  .concept-ring--inner {
    width: 235px;
    height: 235px;
  }

  .concept-line {
    width: 150px;
  }

  .service-group {
    gap: 35px;
    padding: 40px;
  }

  .trust-strip strong {
    font-size: 20px;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-list li:nth-child(4) {
    border-left: 0;
  }

  .process-list li:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 740px);
  }

  html {
    scroll-padding-top: 86px;
  }

  .review-bar {
    min-height: 30px;
    padding-inline: 18px;
  }

  .review-bar__note {
    display: none !important;
  }

  .header-inner {
    min-height: 68px;
    gap: 12px;
  }

  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .mobile-consult {
    display: inline-flex;
    min-height: 44px;
    padding-inline: 15px;
    font-size: 13px;
  }

  .nav-ready .menu-button {
    display: block;
    width: 48px;
    height: 44px;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 22px;
    height: 1px;
    margin: 6px auto;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-ready .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    width: 100%;
    max-height: calc(100dvh - 68px);
    align-content: start;
    gap: 0;
    padding: 24px;
    overflow-y: auto;
    background: white;
    box-shadow: 0 25px 50px rgb(7 25 42 / 12%);
  }

  .nav-ready .site-nav > a {
    min-height: 54px;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .nav-ready .site-nav .nav-cta {
    margin-top: 16px;
    border: 0;
  }

  html:not(.nav-ready) .site-nav {
    display: flex;
    max-width: 100%;
    gap: 18px;
    padding-bottom: 8px;
    overflow-x: auto;
  }

  .hero::after {
    top: auto;
    width: 100%;
    height: 330px;
  }

  .hero-grid {
    inset: 0 0 330px;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 65px 0;
  }

  .hero-copy {
    padding-bottom: 18px;
  }

  .hero-visual {
    width: min(100%, 520px);
    min-height: 310px;
  }

  .hero-visual figcaption {
    margin-bottom: 5px;
  }

  .concept-map {
    height: 260px;
  }

  .concept-ring--outer {
    width: 250px;
    height: 250px;
  }

  .concept-ring--inner {
    width: 175px;
    height: 175px;
  }

  .concept-line {
    width: 112px;
  }

  .concept-node {
    width: 82px;
    height: 82px;
  }

  .concept-node small {
    font-size: 10px;
  }

  .concept-node strong {
    font-size: 12px;
  }

  .concept-node--company {
    left: calc(50% - 41px);
  }

  .concept-node--people {
    bottom: 5px;
  }

  .concept-node--customer {
    bottom: 5px;
  }

  .concept-core {
    top: calc(50% - 45px);
    left: calc(50% - 45px);
    width: 90px;
    height: 90px;
  }

  .concept-core img {
    width: 37px;
    height: 33px;
  }

  .moving-point {
    display: none;
  }

  .section-intro--split,
  .crm-layout,
  .proof-layout,
  .faq-layout,
  .hearing-layout,
  .company-layout {
    grid-template-columns: 1fr;
  }

  .section-intro--split {
    gap: 20px;
  }

  .section-intro--split > p {
    margin: 0;
  }

  .issue-entry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .issue-entry-grid__wide {
    grid-column: span 2;
  }

  .service-group {
    grid-template-columns: 1fr;
  }

  .crm-layout {
    gap: 60px;
  }

  .proof-layout {
    gap: 14px;
  }

  .three-piece-statement {
    grid-template-columns: 100px 1fr;
  }

  .support-panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .faq-layout {
    gap: 45px;
  }

  .hearing-layout {
    gap: 55px;
  }

  .company-layout {
    gap: 35px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 82px;
  }

  .review-bar p span {
    display: none;
  }

  .brand {
    font-size: 12px;
    letter-spacing: 0.02em;
  }

  .brand img {
    width: 25px;
    height: 23px;
  }

  .mobile-consult {
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero-layout {
    gap: 28px;
    padding-top: 48px;
  }

  .industry-label {
    font-size: 12px;
    line-height: 1.7;
  }

  .industry-label span {
    display: none;
  }

  .industry-label::before {
    width: 24px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.1vw, 40px);
    line-height: 1.37;
  }

  .hero h1 em {
    white-space: normal;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-assurance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
  }

  .hero-assurance li {
    display: grid;
    min-height: 64px;
    place-content: center;
    padding: 8px;
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
  }

  .hero-visual {
    min-height: 285px;
  }

  .hero-visual figcaption {
    font-size: 12px;
  }

  .hero-visual figcaption span {
    font-size: 12px;
  }

  .section {
    padding-block: 64px;
  }

  .section-intro h2,
  .crm h2,
  .hearing h2 {
    font-size: 34px;
    line-height: 1.45;
  }

  .section-intro--split {
    margin-bottom: 44px;
  }

  .issue-entry-grid {
    grid-template-columns: 1fr;
  }

  .issue-entry-grid a {
    min-height: 205px;
    padding: 25px;
  }

  .issue-entry-grid__wide {
    grid-column: auto;
  }

  .issue-entry-grid strong {
    margin-top: 22px;
    font-size: 21px;
  }

  .service-group {
    gap: 30px;
    padding: 27px 20px;
  }

  .service-group__heading h3 {
    font-size: 27px;
  }

  .service-item-list,
  .service-item-list--two {
    grid-template-columns: 1fr;
  }

  .service-item,
  .service-item--large {
    min-height: 150px;
  }

  .crm-layout {
    gap: 45px;
  }

  .demo-stage figcaption {
    display: grid;
    gap: 3px;
  }

  .demo-dashboard {
    min-height: 270px;
    grid-template-columns: 40px 1fr;
  }

  .demo-dashboard aside {
    padding: 16px 7px;
  }

  .demo-dashboard aside b {
    width: 17px;
    height: 17px;
    margin-bottom: 25px;
    border-width: 4px;
  }

  .demo-dashboard aside i {
    width: 17px;
    margin-block: 14px;
  }

  .demo-main {
    padding: 14px;
  }

  .demo-head b {
    width: 110px;
  }

  .demo-kpis span {
    padding: 8px;
  }

  .demo-kpis small {
    font-size: 9px;
  }

  .demo-kpis strong {
    font-size: 14px;
  }

  .demo-panels {
    grid-template-columns: 1fr;
  }

  .demo-chart {
    min-height: 95px;
  }

  .demo-ai,
  .demo-table {
    display: none;
  }

  .demo-note {
    margin-left: 20px;
    font-size: 12px;
  }

  .tool-proof {
    padding: 23px 18px;
  }

  .tool-window__body {
    min-height: 245px;
    grid-template-columns: 48px 1fr;
  }

  .tool-window__body aside {
    padding: 18px 9px;
  }

  .tool-window__body > div {
    padding: 19px;
  }

  .tool-window__body section {
    grid-template-columns: 1fr;
  }

  .tool-window__body section i:nth-child(n + 2) {
    display: none;
  }

  .principles article {
    grid-template-columns: 35px 1fr;
    padding: 23px 20px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    min-height: auto;
    padding: 26px 23px;
  }

  .trust-strip article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-strip strong {
    margin: 25px 0 12px;
  }

  .three-piece-statement {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 24px;
  }

  .three-piece-statement__mark {
    width: 76px;
    height: 76px;
  }

  .three-piece-statement h3 {
    font-size: 25px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li {
    min-height: 175px;
    padding: 20px;
  }

  .process-list li:nth-child(3),
  .process-list li:nth-child(5) {
    border-left: 0;
  }

  .process-list li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .process-list strong {
    margin-top: 30px;
    font-size: 16px;
  }

  .support-panel {
    padding: 30px 24px;
  }

  .support-panel dl {
    grid-template-columns: 1fr;
  }

  .support-panel dl div {
    padding: 13px 0;
    border-top: 1px solid rgb(255 255 255 / 15%);
  }

  .support-panel dl div + div {
    padding-left: 0;
    border-left: 0;
  }

  .faq-list summary {
    padding-right: 42px;
    font-size: 16px;
  }

  .hearing-preview {
    padding: 25px 20px;
  }

  .hearing-progress {
    grid-template-columns: auto 1fr;
  }

  .hearing-progress small {
    grid-column: 1 / -1;
  }

  .hearing-options {
    grid-template-columns: 1fr;
  }

  .upload-policy p {
    font-size: 12px;
  }

  .form-status {
    font-size: 12px;
  }

  .company dl div {
    grid-template-columns: 70px 1fr;
    gap: 20px;
  }

  .footer-top {
    padding-block: 55px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (min-width: 360px) and (max-width: 620px) {
  .issue-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .issue-entry-grid a {
    min-height: 190px;
    padding: 20px 17px;
  }

  .issue-entry-grid__wide {
    grid-column: 1 / -1;
    min-height: 160px !important;
  }

  .issue-entry-grid strong {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.5;
  }

  .issue-entry-grid p {
    font-size: 12px;
  }

  .service-item-list,
  .service-item-list--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-item {
    position: relative;
    display: block;
    min-height: 178px;
    padding: 19px 16px 38px;
  }

  .service-item__number {
    display: block;
    margin-bottom: 15px;
  }

  .service-item strong {
    font-size: 17px;
    line-height: 1.45;
  }

  .service-item p {
    font-size: 12px;
    line-height: 1.65;
  }

  .service-item > i {
    position: absolute;
    right: 16px;
    bottom: 14px;
  }

  .service-item--large {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 20px;
    min-height: 142px;
    padding: 20px;
  }

  .service-item--large .service-item__number {
    margin-bottom: 0;
  }

  .service-item--large > i {
    position: static;
  }

  .hearing-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .button,
  .nav-cta,
  .mobile-consult,
  .service-item,
  .issue-entry-grid a {
    border: 1px solid ButtonText;
  }
}
