:root {
  --bg: #f7fbfb;
  --surface: #ffffff;
  --surface-soft: #eef9f7;
  --text: #182f39;
  --muted: #657780;
  --line: rgba(27, 80, 93, 0.14);
  --blue: #2f7bd6;
  --teal: #18aaa4;
  --mint: #9be7d8;
  --green: #72c963;
  --navy: #173e52;
  --deep: #0e2e42;
  --gold: #bda56b;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 13% 6%, rgba(155, 231, 216, 0.28), transparent 31rem),
    radial-gradient(circle at 92% 4%, rgba(38, 120, 217, 0.12), transparent 30rem),
    linear-gradient(180deg, #fbfdfd 0%, #f3f9f9 42%, #f8fbfb 100%),
    var(--bg);
  color: var(--text);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "YuGothic", system-ui, sans-serif;
  font-feature-settings: "palt";
  font-weight: 500;
  line-height: 1.82;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  content: "";
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14, 46, 66, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(14, 46, 66, 0.025) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at 50% 10%, #000 0%, transparent 70%);
  z-index: -5;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 22px;
  left: clamp(18px, 3vw, 48px);
  right: clamp(18px, 3vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 10px 16px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 52px rgba(18, 61, 85, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  height: 44px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--deep), var(--teal));
  box-shadow: 0 14px 30px rgba(14, 46, 66, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  padding: 0;
  color: #43606a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 8px 14px;
  border: 1px solid rgba(38, 120, 217, 0.24);
  border-radius: 999px;
  background: rgba(38, 120, 217, 0.06);
  color: var(--blue);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 130px clamp(22px, 6vw, 72px) 74px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  content: "";
  inset: 0;
  background-image:
    linear-gradient(rgba(38, 120, 217, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 120, 217, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 80%, transparent);
  z-index: -4;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 251, 251, 0.98) 0%, rgba(247, 251, 251, 0.92) 46%, rgba(247, 251, 251, 0.42) 100%),
    linear-gradient(180deg, rgba(247, 251, 251, 0.38) 0%, rgba(247, 251, 251, 0.96) 100%);
  z-index: -2;
}

.hero-visual {
  position: absolute;
  top: 50%;
  right: 0;
  width: min(620px, 68vw);
  aspect-ratio: 1;
  transform: translate(18%, -48%);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.92) 0 19%, transparent 20%),
    conic-gradient(from 18deg, rgba(38, 120, 217, 0.0), rgba(38, 120, 217, 0.42), rgba(22, 184, 176, 0.16), rgba(38, 120, 217, 0.0));
  opacity: 1;
  pointer-events: none;
  z-index: -1;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  content: "";
  inset: 15%;
  border: 1px solid rgba(38, 120, 217, 0.24);
  border-radius: 50%;
  animation: rotateOrbit 18s linear infinite;
}

.hero-visual::after {
  inset: 28%;
  border-color: rgba(22, 184, 176, 0.28);
  animation-duration: 12s;
  animation-direction: reverse;
}

.pulse-ring {
  position: absolute;
  border: 1px solid rgba(22, 184, 176, 0.38);
  border-radius: 50%;
  animation: pulseRing 3.6s ease-in-out infinite;
}

.ring-a {
  inset: 6%;
}

.ring-b {
  inset: 38%;
  animation-delay: 0.8s;
}

.data-card,
.node {
  position: absolute;
  display: block;
  box-shadow: 0 22px 46px rgba(18, 61, 85, 0.13);
}

.data-card {
  width: 156px;
  height: 82px;
  border: 1px solid rgba(38, 120, 217, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(38, 120, 217, 0.22) 0 24%, transparent 24% 100%),
    repeating-linear-gradient(0deg, rgba(20, 36, 43, 0.16) 0 2px, transparent 2px 16px),
    rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  animation: floatCard 5.2s ease-in-out infinite;
}

.card-a {
  top: 19%;
  right: 14%;
}

.card-b {
  left: 8%;
  top: 45%;
  animation-delay: 0.8s;
}

.card-c {
  right: 21%;
  bottom: 18%;
  animation-delay: 1.5s;
}

.node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  animation: glowNode 2.8s ease-in-out infinite;
}

.node-a {
  left: 22%;
  top: 22%;
}

.node-b {
  right: 18%;
  top: 47%;
  background: var(--blue);
  animation-delay: 0.7s;
}

.node-c {
  left: 43%;
  bottom: 16%;
  background: var(--green);
  animation-delay: 1.4s;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  max-width: 14ch;
  color: var(--navy);
  font-size: clamp(40px, 6.2vw, 76px);
  font-weight: 700;
  line-height: 1.09;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-title {
  max-width: 12.5em;
}

.hero-title span {
  display: block;
}

.hero-title-sub {
  font-size: 0.8em;
  line-height: 1.22;
}

.hero-title-main {
  margin-top: 0.14em;
  font-size: 1.04em;
  line-height: 1.04;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(30px, 3.25vw, 40px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  color: #425c66;
  font-size: clamp(15px, 1.5vw, 18px);
}

.lead br {
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--deep), var(--blue) 50%, var(--teal));
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(14, 46, 66, 0.2);
}

.button.secondary {
  border-color: rgba(38, 120, 217, 0.24);
  background: rgba(255, 255, 255, 0.7);
  color: var(--blue);
}

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(58px, 6.8vw, 94px) 0;
}

.intro {
  padding-top: 42px;
}

.metrics {
  padding-top: 16px;
}

.metrics-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}

.metrics-head h2 {
  max-width: 560px;
  margin-bottom: 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 12%, rgba(24, 170, 164, 0.32), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(189, 165, 107, 0.18), transparent 18rem),
    linear-gradient(135deg, #102f43 0%, #123d55 52%, #0f5b60 100%);
  box-shadow: 0 34px 90px rgba(14, 46, 66, 0.2);
}

.metrics-grid article {
  position: relative;
  min-height: 156px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.metrics-grid article:last-child {
  border-right: 0;
}

.metrics-grid article::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28));
  transform: rotate(-35deg);
  transform-origin: right bottom;
}

.metric-number {
  display: block;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.metric-number-wide {
  font-size: clamp(32px, 3.8vw, 48px);
}

.metrics-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.metrics-note {
  margin: 14px 0 0;
  color: #6f838c;
  font-size: 12px;
}

.intro-grid,
.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(280px, 1fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.intro-grid p,
.copy-block p,
.section-head p,
.mvv-grid p,
.contact-box p,
.showcase-copy p,
.metrics-head p,
.issue-grid p,
.process-row p {
  color: var(--muted);
  font-size: 15.5px;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: 24px;
}

.showcase-copy {
  position: relative;
  z-index: 1;
}

.showcase-image {
  position: relative;
  margin: 0;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 38px 110px rgba(18, 61, 85, 0.16);
}

.showcase-image::before,
.showcase-image::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.showcase-image::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 251, 251, 0.26), transparent 35%),
    linear-gradient(180deg, transparent 64%, rgba(18, 61, 85, 0.18));
  z-index: 1;
}

.showcase-image::after {
  right: 24px;
  bottom: 24px;
  width: 170px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(22, 184, 176, 0.38) 0 28%, transparent 28%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.62) 0 2px, transparent 2px 18px),
    rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.dark-band {
  width: 100%;
  max-width: none;
  padding-left: max(22px, calc((100vw - var(--max)) / 2));
  padding-right: max(22px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 249, 247, 0.94)),
    radial-gradient(circle at 78% 15%, rgba(38, 120, 217, 0.16), transparent 28rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-head,
.intro-grid,
.split,
.showcase {
  position: relative;
}

.section-head::before,
.intro-grid::before,
.split::before,
.showcase::before {
  position: absolute;
  content: "";
  top: -22px;
  left: 0;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.feature-strip article,
.issue-grid article,
.process-row article,
.mvv-grid article,
.contact-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 253, 253, 0.78));
  box-shadow: 0 24px 66px rgba(18, 61, 85, 0.09);
  transition: box-shadow 0.24s ease, transform 0.24s ease, border-color 0.24s ease;
}

.service-card:hover,
.feature-strip article:hover,
.issue-grid article:hover,
.process-row article:hover,
.mvv-grid article:hover,
.contact-box:hover {
  border-color: rgba(47, 123, 214, 0.22);
  box-shadow: 0 34px 90px rgba(18, 61, 85, 0.15);
  transform: translateY(-3px);
}

.service-card,
.mvv-grid article {
  min-height: 240px;
  padding: clamp(22px, 3vw, 32px);
}

.service-card h3,
.issue-grid h3,
.process-row h3,
.mvv-grid h3 {
  font-size: clamp(18px, 1.7vw, 22px);
}

.service-card p {
  color: var(--muted);
}

.card-number {
  display: block;
  margin-bottom: 40px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.feature-strip article {
  position: relative;
  overflow: hidden;
  min-height: 156px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(38, 120, 217, 0.13), rgba(22, 184, 176, 0.08)),
    rgba(255, 255, 255, 0.82);
}

.feature-strip article::after,
.issue-grid article::after {
  position: absolute;
  content: "";
  right: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(38, 120, 217, 0.16);
  border-radius: 50%;
}

.feature-strip span,
.issue-grid span,
.process-row span {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-strip strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.55;
}

.copy-block {
  padding-top: 9px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #28454f;
}

.check-list li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.67em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--green));
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 5vw, 56px);
}

.issue-grid article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
}

.process-section {
  padding-top: 34px;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(18, 61, 85, 0.08);
}

.process-row article {
  min-height: 220px;
  padding: 26px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 249, 247, 0.72));
}

.process-row article:last-child {
  border-right: 0;
}

.mvv-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mvv-label {
  color: var(--teal) !important;
  font-weight: 700;
  font-size: 12px !important;
}

.company-section {
  padding-bottom: 54px;
}

.company-table {
  margin: 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.company-table div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.company-table dt {
  color: #5c717a;
  font-weight: 800;
}

.company-table dd {
  margin: 0;
}

.contact-section {
  width: min(980px, calc(100% - 44px));
  padding-top: 26px;
}

.contact-box {
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 249, 247, 0.9)),
    radial-gradient(circle at 88% 0%, rgba(38, 120, 217, 0.15), transparent 18rem);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #395863;
  font-weight: 800;
  font-size: 14px;
}

.contact-form .message-label,
.form-button {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(27, 80, 93, 0.18);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  border-radius: 8px;
  padding: 14px 15px;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(22, 184, 176, 0.12);
}

textarea {
  min-height: 264px;
  resize: vertical;
}

.form-button {
  width: fit-content;
  font-size: 0.9em;
  cursor: pointer;
}

.form-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-feedback {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 15px;
}

.form-feedback.is-success {
  color: #0e6b56;
  background: rgba(22, 184, 176, 0.12);
}

.form-feedback.is-error {
  color: #9a3b2f;
  background: rgba(217, 92, 66, 0.12);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(22px, 5vw, 60px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer p {
  margin: 0;
}

.cursor-shadow,
.cursor-trail {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.cursor-shadow {
  width: 118px;
  height: 118px;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(47, 123, 214, 0.18) 0%, rgba(24, 170, 164, 0.1) 34%, transparent 68%);
  filter: blur(2px);
  mix-blend-mode: multiply;
  transition: opacity 0.2s ease;
}

.cursor-shadow.is-visible {
  opacity: 1;
}

.cursor-trail {
  width: 12px;
  height: 12px;
  background: rgba(24, 170, 164, 0.26);
  box-shadow: 0 0 22px rgba(47, 123, 214, 0.18);
  animation: cursorFade 0.72s ease-out forwards;
}

@keyframes cursorFade {
  from {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.6);
  }
}

@keyframes rotateOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseRing {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.04);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes glowNode {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(22, 184, 176, 0.24);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(22, 184, 176, 0.08);
  }
}

@media (max-width: 980px) {
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-grid article {
    border-bottom: 1px solid var(--line);
  }

  .metrics-grid article:nth-child(2n) {
    border-right: 0;
  }

  .metrics-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .issue-grid,
  .process-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-row article {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .process-row article:nth-child(2n) {
    border-right: 0;
  }

  .process-row article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    right: auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 840px;
    align-items: end;
    padding-top: 108px;
  }

  .hero-visual {
    top: 24%;
    right: 0;
    width: 650px;
    transform: translate(28%, -48%);
    opacity: 0.8;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(247, 251, 251, 0.42) 0%, rgba(247, 251, 251, 0.9) 48%, rgba(247, 251, 251, 0.98) 100%),
      linear-gradient(90deg, rgba(247, 251, 251, 0.96), rgba(247, 251, 251, 0.25));
  }

  h1 {
    max-width: 9ch;
  }

  .intro-grid,
  .split,
  .metrics-head,
  .showcase,
  .metrics-grid,
  .service-grid,
  .feature-strip,
  .issue-grid,
  .process-row,
  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .metrics-head {
    display: grid;
  }

  .metrics-grid article {
    border-right: 0;
  }

  .metrics-grid article:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .metrics-grid article:last-child {
    border-bottom: 0;
  }

  .service-card,
  .issue-grid article,
  .process-row article,
  .mvv-grid article {
    min-height: auto;
  }

  .showcase-image,
  .showcase-image img {
    min-height: 340px;
  }

  .process-row article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-row article:last-child {
    border-bottom: 0;
  }

  .card-number {
    margin-bottom: 28px;
  }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-shadow,
  .cursor-trail {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 14px 18px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-logo {
    height: 34px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .hero {
    min-height: 720px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-visual {
    right: 0;
    width: 580px;
    transform: translate(38%, -48%);
  }

  .data-card {
    width: 126px;
    height: 68px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section,
  .contact-section {
    width: min(100% - 36px, var(--max));
  }

  .company-table div,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .company-table div {
    gap: 6px;
  }

  .form-button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}
