/*
 * 2026-09-03 / AnswerBit-inspired design refresh
 * Layout and hierarchy only: Shichi's blue palette, copy, routes and motion logic stay intact.
 */

:root {
  --refresh-bg: #f6f8fb;
  --refresh-surface: #ffffff;
  --refresh-surface-soft: #eef5fd;
  --refresh-ink: #0e1c2f;
  --refresh-muted: #66778c;
  --refresh-line: rgba(25, 72, 126, 0.11);
  --refresh-line-strong: rgba(25, 92, 175, 0.2);
  --refresh-shadow: 0 24px 70px rgba(28, 72, 124, 0.1);
  --refresh-shadow-soft: 0 14px 42px rgba(28, 72, 124, 0.07);
  --refresh-radius: 26px;
  --refresh-section: clamp(88px, 8.4vw, 140px);
  --refresh-shell: min(1280px, calc(100vw - 48px));
}

html {
  background: var(--refresh-bg);
}

body {
  color: var(--refresh-ink);
  background: var(--refresh-bg);
}

.page {
  overflow: clip;
  background:
    radial-gradient(circle at 50% 0, rgba(54, 137, 236, 0.08), transparent 20%),
    var(--refresh-bg);
}

.button,
.button-primary,
.button-secondary,
.button--primary,
.button--secondary {
  min-height: 48px;
  padding-inline: 22px;
  border-radius: 999px;
}

.button-primary,
.button--primary {
  box-shadow: 0 13px 32px rgba(11, 99, 216, 0.19);
}

.button-secondary,
.button--secondary {
  border-color: var(--refresh-line-strong);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 28px rgba(28, 72, 124, 0.06);
}

/* Quiet, translucent navigation */

body .topbar,
body.home-page .topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 70px;
  border-bottom: 1px solid rgba(31, 79, 134, 0.08);
  background: rgba(249, 252, 255, 0.82);
  box-shadow: 0 8px 30px rgba(31, 72, 119, 0.055);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
}

body .topbar__inner,
body.home-page .topbar__inner {
  width: var(--refresh-shell);
  max-width: none;
  padding-inline: 0;
}

body .topbar .brand__mark {
  width: 34px;
  height: 34px;
}

body .topbar .brand__copy {
  gap: 8px;
}

body .topbar .brand__copy strong {
  font-size: 19px;
}

body .topbar .brand__copy span {
  color: #7c899a;
  letter-spacing: 0.02em;
}

body .nav-trigger {
  min-height: 38px;
  padding-inline: 13px;
  font-size: 12px;
}

body .header-cta {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 999px;
  background: #0b63d8;
  box-shadow: 0 10px 25px rgba(11, 99, 216, 0.2);
}

body .nav-panel {
  top: calc(100% + 10px);
  width: min(1060px, calc(100vw - 40px));
  border: 1px solid var(--refresh-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 26px 80px rgba(19, 55, 98, 0.17);
}

body .nav-panel__intro {
  min-height: 220px;
  border: 1px solid rgba(34, 104, 188, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 14%, rgba(53, 139, 239, 0.16), transparent 34%),
    #f3f8fe;
}

/* Homepage: spacious product-led composition */

.home-page {
  background: var(--refresh-bg);
}

.home-page main {
  overflow: visible;
}

.home-page .ticker {
  position: relative;
  z-index: 3;
  min-height: 36px;
  border: 0;
  color: #55708e;
  background: #eef5fd;
}

.home-page .ticker-track {
  min-height: 36px;
}

.home-page .ticker-track span {
  font-size: 10px;
  letter-spacing: 0.08em;
}

.home-page .hero {
  min-height: clamp(760px, calc(100svh - 36px), 920px);
  padding: clamp(100px, 12vh, 150px) max(24px, calc((100vw - 1280px) / 2)) 52px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  color: var(--refresh-ink);
  background:
    linear-gradient(180deg, rgba(247, 250, 254, 0.25), #f7fafd 84%),
    radial-gradient(circle, rgba(20, 105, 216, 0.15) 1px, transparent 1.35px);
  background-size: auto, 19px 19px;
  isolation: isolate;
}

.home-page .hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 32%, rgba(247, 250, 254, 0) 0 24%, rgba(247, 250, 254, 0.72) 70%),
    linear-gradient(180deg, rgba(247, 250, 254, 0.05), #f7fafd 92%);
  pointer-events: none;
}

.home-page .hero-copy {
  position: relative;
  z-index: 4;
  width: min(1120px, 100%);
  max-width: none;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.home-page .hero-slides {
  width: 100%;
  min-height: clamp(280px, 28vw, 390px);
}

.home-page .hero-slide {
  width: 100%;
  align-items: center;
}

.home-page .hero .kicker {
  margin-inline: auto;
  color: #52769f;
  font-size: 11px;
  letter-spacing: 0.19em;
}

.home-page .hero h1,
.home-page .hero h2 {
  width: 100%;
  max-width: 1180px;
  margin: 22px auto 0;
  color: var(--refresh-ink);
  font-size: clamp(54px, 5.35vw, 82px);
  font-weight: 720;
  line-height: 1.045;
  letter-spacing: -0.064em;
}

.home-page .hero-title-line {
  display: block;
}

.home-page .hero .hit {
  color: #0b63d8;
}

.home-page .hero .promise {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--refresh-muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.72;
}

.home-page .hero .actions {
  justify-content: center;
  margin-top: 30px;
}

.home-page .hero .button-primary:nth-child(2) {
  color: #183a61;
  border: 1px solid var(--refresh-line-strong);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 32px rgba(28, 72, 124, 0.08);
}

.home-page .hero-controls {
  width: max-content;
  margin: 26px auto 0;
  padding: 6px;
  gap: 5px;
  border: 1px solid var(--refresh-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.79);
  box-shadow: 0 12px 34px rgba(28, 72, 124, 0.07);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.home-page .hero-control {
  width: 42px;
  height: 32px;
  border-radius: 999px;
  color: #71839a;
}

.home-page .hero-control.is-active {
  color: #fff;
  background: #0b63d8;
}

.home-page .hero-kinetic {
  z-index: 1;
  inset: auto 4% 2% auto;
  width: min(42vw, 650px);
  height: min(42vw, 650px);
  opacity: 0.42;
  filter: saturate(0.88);
}

.home-page .hero-axis,
.home-page .hero-orbit {
  border-color: rgba(28, 104, 202, 0.22);
}

.home-page .hero-facts {
  position: relative;
  z-index: 5;
  inset: auto;
  width: min(1120px, 100%);
  margin: 46px auto 0;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid var(--refresh-line);
  border-radius: 22px;
  color: #425b77;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--refresh-shadow-soft);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.home-page .hero-facts span,
.home-page .hero-facts span:nth-child(n) {
  min-height: 58px;
  padding: 14px 18px;
  border: 0;
  border-radius: 15px;
  background: transparent;
}

.home-page .hero-facts b {
  color: #0b63d8;
}

/* Shared homepage section rhythm */

.home-page :where(.services-section, .solutions-stage, .case-story, .support-projects, .process-section, .fit-section, .faq-section) {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: var(--refresh-section) max(24px, calc((100vw - 1280px) / 2));
}

.home-page :where(.services-story-pin, .case-story-pin, .faq-story-pin) {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
}

.home-page .section-heading,
.home-page .case-intro,
.home-page .solutions-stage-head {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
}

.home-page :where(.section-heading, .case-intro, .solutions-stage-head) h2,
.home-page :where(.fit-intro, .faq-heading) h2 {
  color: var(--refresh-ink);
  font-size: clamp(42px, 4.1vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.home-page :where(.section-heading, .case-intro, .solutions-stage-head, .fit-intro, .faq-heading) p {
  color: var(--refresh-muted);
}

.home-page .eyebrow,
.home-page .eyebrow-light {
  color: #5479a3;
}

/* Services: a light framed product stage */

.home-page .services-section {
  min-height: 0;
  background: #ffffff;
}

.home-page .services-story-pin {
  padding: 0;
}

.home-page .services-story-pin > .motion-geometry {
  opacity: 0.22;
}

.home-page .service-explorer {
  margin-top: clamp(44px, 5vw, 70px);
  padding: 12px;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--refresh-line);
  border-radius: 30px;
  background: #f4f8fd;
  box-shadow: var(--refresh-shadow);
}

.home-page .service-options {
  gap: 7px;
}

.home-page .service-option,
.home-page .service-option:nth-child(n) {
  min-height: 86px;
  padding: 17px 18px;
  border: 0;
  border-radius: 17px;
  color: #4c6078;
  background: transparent;
}

.home-page .service-option.is-active {
  color: #123f73;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(30, 76, 128, 0.09);
}

.home-page .service-option span {
  color: #0b63d8;
}

.home-page .service-option em {
  color: #8290a1;
}

.home-page .service-stage,
.home-page .services-story-pin .service-stage {
  min-height: clamp(400px, 39vw, 520px);
  height: clamp(400px, 39vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(28, 98, 181, 0.09);
  border-radius: 22px;
  color: var(--refresh-ink);
  background:
    radial-gradient(circle at 85% 15%, rgba(52, 137, 238, 0.2), transparent 29%),
    #ffffff;
}

.home-page .service-panel {
  padding: clamp(38px, 5vw, 68px);
  color: var(--refresh-ink);
}

.home-page .service-panel-label {
  color: #4d78a8;
}

.home-page .service-panel h3 {
  color: var(--refresh-ink);
  font-size: clamp(34px, 3.6vw, 54px);
}

.home-page .service-panel > p,
.home-page .service-panel li {
  color: var(--refresh-muted);
}

.home-page .service-panel li::before {
  background: #0b63d8;
}

.home-page .service-stage-geometry {
  opacity: 0.47;
}

.home-page .scope-note {
  min-height: 88px;
  padding: 20px 24px;
  gap: 18px;
  border: 1px solid var(--refresh-line);
  border-radius: 20px;
  color: #405873;
  background: #f7fafd;
}

.home-page .scope-note a {
  color: #0b63d8;
}

/* Products and solutions: airy 2 x 2 cards */

.home-page .solutions-stage {
  color: var(--refresh-ink);
  background: #f1f6fc;
}

.home-page .solutions-stage-head {
  color: var(--refresh-ink);
}

.home-page .solutions-stage-head > p {
  color: var(--refresh-muted);
}

.home-page .solution-list {
  width: 100%;
  max-width: 1280px;
  margin: clamp(42px, 5vw, 68px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-page .solutions-stage .solution-row,
.home-page .solutions-stage .solution-row.solution-featured,
.home-page .solutions-stage .solution-row:nth-child(n) {
  min-height: 300px;
  padding: clamp(30px, 3vw, 42px);
  border: 1px solid var(--refresh-line);
  border-radius: 24px;
  color: var(--refresh-ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--refresh-shadow-soft);
}

.home-page .solutions-stage .solution-row:nth-child(n) {
  background:
    radial-gradient(circle at 95% 4%, rgba(53, 138, 239, 0.13), transparent 32%),
    rgba(255, 255, 255, 0.91);
}

.home-page .solutions-stage .solution-row::before {
  border-color: rgba(64, 143, 237, 0.15);
  background: radial-gradient(circle, rgba(64, 143, 237, 0.12), transparent 68%);
}

.home-page .solutions-stage .solution-tag {
  color: #3e73ad;
  border-color: rgba(37, 112, 202, 0.13);
  background: #edf5ff;
}

.home-page .solutions-stage .solution-main strong {
  max-width: 14ch;
  color: var(--refresh-ink);
}

.home-page .solutions-stage .solution-main em,
.home-page .solutions-stage .solution-desc {
  color: var(--refresh-muted);
}

.home-page .solutions-stage .solution-link {
  color: #0b63d8;
}

.home-page .solutions-stage .solution-row:hover,
.home-page .solutions-stage .solution-row:focus-visible {
  border-color: var(--refresh-line-strong);
  color: var(--refresh-ink);
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(28, 72, 124, 0.12);
}

/* Cases: one strong visual, quiet supporting evidence */

.home-page .case-story {
  background: #ffffff;
}

.home-page .case-showcase {
  width: 100%;
  max-width: 1280px;
  margin: clamp(44px, 5vw, 72px) auto 0;
  overflow: hidden;
  border: 1px solid var(--refresh-line);
  border-radius: 28px;
  background: #f4f8fd;
  box-shadow: var(--refresh-shadow);
}

.home-page .case-feature {
  border-radius: 20px;
}

.home-page .case-selector {
  padding: 10px;
  gap: 5px;
}

.home-page .case-select,
.home-page .case-select:nth-child(n) {
  min-height: 74px;
  border: 0;
  border-radius: 14px;
}

.home-page .case-select.is-active {
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(28, 72, 124, 0.08);
}

.home-page .support-projects {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.68fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: start;
  background: #f6f8fb;
}

.home-page .support-projects > div:first-child {
  position: sticky;
  top: 110px;
}

.home-page .support-project-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-page .support-project-list span,
.home-page .support-project-list span:nth-child(n),
.home-page .support-project-list span.is-active {
  min-height: 94px;
  padding: 18px;
  border: 1px solid var(--refresh-line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--refresh-shadow-soft);
}

.home-page .support-project-list b {
  background: #edf5ff;
}

.home-page .support-project-list em {
  background: #eef2f7;
}

/* Process: sticky narrative with a vertical sequence */

.home-page .process-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  grid-template-areas:
    "heading steps"
    "summary summary";
  gap: 32px clamp(54px, 7vw, 108px);
  align-items: start;
  background: #eef5fd;
}

.home-page .process-section > .section-heading {
  grid-area: heading;
  position: sticky;
  top: 112px;
  display: block;
  align-self: start;
}

.home-page .process-section > .section-heading > div:last-child {
  margin-top: 22px;
}

.home-page .process-steps {
  grid-area: steps;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
}

.home-page .process-steps li,
.home-page .process-steps li:nth-child(n) {
  min-height: 176px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--refresh-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: var(--refresh-shadow-soft);
}

.home-page .process-steps h3 {
  margin-top: 0;
  color: var(--refresh-ink);
}

.home-page .process-steps p {
  color: var(--refresh-muted);
}

.home-page .process-steps em,
.home-page .process-steps li:nth-child(4) em {
  margin: 0;
  padding: 8px 11px;
  border: 0;
  border-radius: 999px;
  color: #456d99;
  background: #edf5ff;
}

.home-page .process-summary {
  grid-area: summary;
  margin-top: 32px;
  gap: 12px;
  border: 0;
  background: transparent;
}

.home-page .process-summary > div,
.home-page .process-summary > div:nth-child(n) {
  min-height: 104px;
  border: 1px solid var(--refresh-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

/* Fit: focused contrast without another full dark wall */

.home-page .fit-section {
  color: var(--refresh-ink);
  background: #f7f9fc;
}

.home-page .fit-intro {
  width: min(1280px, 100%);
  margin-inline: auto;
  color: var(--refresh-ink);
}

.home-page .fit-intro .eyebrow {
  color: #5479a3;
}

.home-page .fit-columns {
  width: min(1280px, 100%);
  margin: clamp(42px, 5vw, 68px) auto 0;
  gap: 16px;
}

.home-page .fit-card,
.home-page .fit-card:nth-child(n) {
  padding: clamp(30px, 3vw, 42px);
  border: 1px solid var(--refresh-line);
  border-radius: 24px;
  color: var(--refresh-ink);
  background: #ffffff;
  box-shadow: var(--refresh-shadow-soft);
}

.home-page .fit-positive {
  border-color: rgba(11, 99, 216, 0.2);
  background:
    radial-gradient(circle at 95% 6%, rgba(54, 139, 239, 0.12), transparent 30%),
    #ffffff;
}

.home-page .fit-label,
.home-page .fit-positive .fit-label {
  color: #4e6c8e;
  border-color: var(--refresh-line);
  background: #eef3f8;
}

.home-page .fit-positive .fit-label {
  color: #0b63d8;
  border-color: rgba(11, 99, 216, 0.16);
  background: #edf5ff;
}

.home-page .fit-card strong {
  color: #173553;
}

.home-page .fit-card li p {
  color: var(--refresh-muted);
}

/* FAQ: narrow reading measure */

.home-page .faq-section {
  background: #ffffff;
}

.home-page .faq-story-pin {
  max-width: 900px;
  display: block;
}

.home-page .faq-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.home-page .faq-heading .eyebrow {
  justify-content: center;
}

.home-page .faq-list {
  width: min(820px, 100%);
  margin: clamp(42px, 5vw, 66px) auto 0;
  display: grid;
  gap: 10px;
}

.home-page .faq-story-pin .faq-list details,
.home-page .faq-story-pin .faq-list details[open] {
  padding: 0;
  border: 1px solid var(--refresh-line);
  border-radius: 18px;
  background: #f7fafd;
  box-shadow: none;
}

.home-page .faq-story-pin .faq-list summary {
  min-height: 76px;
  padding: 20px 22px;
}

.home-page .faq-story-pin .faq-list details p {
  padding: 0 66px 24px 58px;
}

/* Final conversion block */

.home-page .contact-section {
  width: min(1280px, calc(100vw - 48px));
  max-width: none;
  margin: var(--refresh-section) auto;
  padding: clamp(54px, 6vw, 84px);
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 12%, rgba(156, 211, 255, 0.26), transparent 28%),
    radial-gradient(circle, rgba(255, 255, 255, 0.13) 1px, transparent 1.3px),
    linear-gradient(135deg, #0a5fce, #277fe6);
  background-size: auto, 18px 18px, auto;
  box-shadow: 0 30px 90px rgba(11, 83, 178, 0.2);
}

.home-page .contact-copy,
.home-page .lead-form {
  position: relative;
  z-index: 2;
}

.home-page .lead-form {
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 70px rgba(5, 58, 128, 0.16);
}

/* Inner pages: same visual grammar, less decorative noise */

.inner-page {
  background: var(--refresh-bg);
}

.inner-page .page {
  background:
    radial-gradient(circle, rgba(20, 105, 216, 0.09) 1px, transparent 1.3px) 50% 70px / 20px 20px no-repeat,
    linear-gradient(180deg, #f8fbff, #f4f7fb 36%, #f8fafc);
}

.inner-page .inner-shell {
  width: var(--refresh-shell);
  max-width: none;
}

.inner-page .inner-hero,
.inner-page .secondary-hero {
  max-width: 1100px;
  padding: clamp(72px, 8vw, 118px) 0 clamp(78px, 9vw, 130px);
}

.inner-page .inner-hero::after {
  opacity: 0.5;
}

.inner-page :where(.inner-hero, .secondary-hero) h1,
.inner-page .entity-hero h1 {
  color: var(--refresh-ink);
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.inner-page :where(.inner-hero, .secondary-hero) > p:last-child,
.inner-page .entity-hero p:last-child {
  max-width: 760px;
  color: var(--refresh-muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.8;
}

.inner-page .entity-hero {
  min-height: 520px;
  border: 1px solid var(--refresh-line);
  border-radius: 30px;
  background:
    radial-gradient(circle, rgba(20, 105, 216, 0.11) 1px, transparent 1.3px) 94% 12% / 18px 18px,
    radial-gradient(circle at 82% 22%, rgba(58, 139, 235, 0.18), transparent 30%),
    #f8fbff;
  box-shadow: var(--refresh-shadow);
}

.inner-page main::before {
  opacity: 0.45;
}

.inner-page .detail-section {
  padding-block: clamp(76px, 8vw, 126px);
}

.inner-page :where(
  .entity-card,
  .decision-grid article,
  .fact-grid article,
  .contact-cards article,
  .contact-decision > div,
  .secondary-facts article,
  .secondary-module-grid li,
  .secondary-related a,
  .secondary-hub-grid > a
) {
  border: 1px solid var(--refresh-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: var(--refresh-shadow-soft);
  transition: border-color 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.inner-page :where(
  .entity-card,
  .decision-grid article,
  .fact-grid article,
  .contact-cards article,
  .contact-decision > div,
  .secondary-facts article,
  .secondary-module-grid li,
  .secondary-related a,
  .secondary-hub-grid > a
):hover,
.inner-page :where(
  .entity-card,
  .decision-grid article,
  .fact-grid article,
  .contact-cards article,
  .contact-decision > div,
  .secondary-facts article,
  .secondary-module-grid li,
  .secondary-related a,
  .secondary-hub-grid > a
):focus-within {
  border-color: var(--refresh-line-strong);
  background: #ffffff;
  box-shadow: 0 20px 54px rgba(28, 72, 124, 0.11);
  transform: none;
}

.inner-page .entity-grid {
  gap: 16px;
}

.inner-page .entity-card {
  min-height: 360px;
  padding: clamp(28px, 3vw, 40px);
}

.inner-page .entity-card h2 {
  margin-top: 42px;
}

.inner-page :where(.number-list li, .boundary-list li, .pricing-table > div, .module-grid li) {
  border: 1px solid var(--refresh-line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--refresh-shadow-soft);
}

.inner-page :where(.number-list li, .boundary-list li, .pricing-table > div, .module-grid li):hover {
  border-color: var(--refresh-line-strong);
  background: #ffffff;
  transform: none;
}

.inner-page .faq-list details {
  border: 1px solid var(--refresh-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.inner-page .faq-list details:hover,
.inner-page .faq-list details[open] {
  border-color: var(--refresh-line-strong);
  background: #ffffff;
  box-shadow: var(--refresh-shadow-soft);
  transform: none;
}

.inner-page :where(.external-cta, .inline-cta, .inline-form) {
  border-radius: 28px;
}

/* Footer */

.site-footer {
  color: #41566f;
  border-top: 1px solid var(--refresh-line);
  background: #eef3f8;
}

.site-footer__main,
.site-footer__bottom {
  width: var(--refresh-shell);
  max-width: none;
  margin-inline: auto;
}

.site-footer__main {
  padding-inline: 0;
}

.site-footer a {
  color: #4e647e;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #0b63d8;
}

/* Responsive hierarchy */

@media (max-width: 1100px) {
  :root {
    --refresh-shell: min(100% - 36px, 1280px);
  }

  body .topbar .brand__copy span {
    display: none;
  }

  .home-page .process-section {
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
    gap: 28px 40px;
  }

  .home-page .process-steps li,
  .home-page .process-steps li:nth-child(n) {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .home-page .process-steps em,
  .home-page .process-steps li:nth-child(4) em {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 880px) {
  :root {
    --refresh-section: 86px;
  }

  body .topbar,
  body.home-page .topbar {
    height: 64px;
  }

  body .topbar__inner,
  body.home-page .topbar__inner {
    width: calc(100% - 28px);
  }

  .home-page .hero {
    min-height: 860px;
    padding-top: 96px;
  }

  .home-page .hero-slides {
    min-height: 420px;
  }

  .home-page .hero h1,
  .home-page .hero h2 {
    font-size: clamp(44px, 8.4vw, 68px);
  }

  .home-page .hero-kinetic {
    width: 70vw;
    height: 70vw;
    right: -14vw;
    bottom: 0;
    opacity: 0.3;
  }

  .home-page .service-explorer {
    padding: 10px;
  }

  .home-page .services-story-pin .service-stage,
  .home-page .services-story-pin .service-panels,
  .home-page .service-stage {
    min-height: 470px;
    height: 470px;
  }

  .home-page .support-projects,
  .home-page .process-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "steps"
      "summary";
  }

  .home-page .support-projects > div:first-child,
  .home-page .process-section > .section-heading {
    position: static;
  }

  .home-page .support-project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inner-page .entity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  :root {
    --refresh-shell: calc(100% - 28px);
    --refresh-section: 72px;
    --refresh-radius: 20px;
  }

  body .topbar .brand__copy span {
    display: none;
  }

  body .header-cta {
    display: none;
  }

  .home-page .services-section {
    padding-inline: 14px;
  }

  .home-page .services-section .section-heading h2 {
    font-size: 32px;
  }

  .home-page .ticker {
    min-height: 32px;
  }

  .home-page .ticker-track {
    min-height: 32px;
  }

  .home-page .hero {
    min-height: 700px;
    padding: 82px 18px 28px;
  }

  .home-page .hero-slides {
    min-height: 292px;
  }

  .home-page .hero h1,
  .home-page .hero h2 {
    margin-top: 18px;
    font-size: clamp(38px, 11.2vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.05em;
  }

  .home-page .hero .promise {
    margin-top: 20px;
    font-size: 14px;
  }

  .home-page .hero .actions {
    margin-top: 24px;
  }

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

  .home-page .hero-controls {
    margin-top: 20px;
  }

  .home-page .hero-facts {
    margin-top: 30px;
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .home-page .hero-facts span,
  .home-page .hero-facts span:nth-child(n) {
    min-height: 48px;
    padding: 10px 12px;
  }

  .home-page :where(.services-section, .solutions-stage, .case-story, .support-projects, .process-section, .fit-section, .faq-section) {
    padding-inline: 14px;
  }

  .home-page :where(.section-heading, .case-intro, .solutions-stage-head) h2,
  .home-page :where(.fit-intro, .faq-heading) h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .home-page .faq-heading h2 {
    font-size: 30px;
  }

  .home-page .service-explorer {
    border-radius: 22px;
  }

  .home-page .service-options {
    grid-template-columns: 1fr;
  }

  .home-page .service-option,
  .home-page .service-option:nth-child(n) {
    min-height: 70px;
  }

  .home-page .services-story-pin .service-stage,
  .home-page .services-story-pin .service-panels,
  .home-page .service-stage {
    min-height: 500px;
    height: 500px;
  }

  .home-page .service-panel {
    padding: 30px 24px;
  }

  .home-page .service-panel h3 {
    font-size: 34px;
  }

  .home-page .scope-note {
    align-items: flex-start;
    border-radius: 17px;
  }

  .home-page .solution-list,
  .home-page .support-project-list,
  .home-page .fit-columns {
    grid-template-columns: 1fr;
  }

  .home-page .solutions-stage .solution-row,
  .home-page .solutions-stage .solution-row:nth-child(n) {
    min-height: 0;
    padding: 26px 22px;
    border-radius: 20px;
  }

  .home-page .case-showcase {
    border-radius: 22px;
  }

  .home-page .support-project-list span,
  .home-page .support-project-list span:nth-child(n),
  .home-page .support-project-list span.is-active {
    min-height: 88px;
  }

  .home-page .process-steps li,
  .home-page .process-steps li:nth-child(n) {
    min-height: 0;
    padding: 24px 22px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    border-radius: 18px;
  }

  .home-page .process-summary {
    grid-template-columns: 1fr;
  }

  .home-page .faq-story-pin .faq-list summary {
    min-height: 70px;
    padding: 18px;
  }

  .home-page .faq-story-pin .faq-list details p {
    padding: 0 18px 20px;
  }

  .home-page .contact-section {
    width: calc(100vw - 28px);
    margin-block: 72px;
    padding: 42px 20px 20px;
    border-radius: 24px;
  }

  .inner-page :where(.inner-hero, .secondary-hero) h1,
  .inner-page .entity-hero h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .inner-page .entity-hero {
    min-height: 0;
    border-radius: 22px;
  }

  .inner-page .entity-grid {
    grid-template-columns: 1fr;
  }

  .inner-page .entity-card {
    min-height: 0;
    border-radius: 20px;
  }

  .inner-page .faq-list details > p {
    padding-inline: 20px;
  }

  .site-footer__main,
  .site-footer__bottom {
    width: calc(100% - 28px);
  }
}

@media (max-width: 370px) {
  .home-page .services-section .section-heading h2 {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .solutions-stage .solution-row,
  .home-page .process-steps li,
  .home-page .case-select,
  .inner-page :where(
    .entity-card,
    .decision-grid article,
    .fact-grid article,
    .contact-cards article,
    .secondary-related a,
    .secondary-hub-grid > a
  ) {
    transition: none !important;
  }
}

/*
 * 2026-09-03 / minimal motion refinement
 * Keep interactive cards and explicit controls, but remove ambient motion,
 * automatic switching and decorative layers that compete with the content.
 */

[data-motion-profile="minimal"] {
  scroll-behavior: auto;
}

[data-motion-profile="minimal"] .site-entry,
[data-motion-profile="minimal"].home-page .site-entry {
  display: none !important;
}

.home-page .ticker {
  display: none;
}

.home-page .hero {
  min-height: clamp(660px, calc(100svh - 70px), 800px);
  padding-top: clamp(88px, 10vh, 124px);
  background-color: #f8fafd;
  background-image: radial-gradient(circle, rgba(11, 99, 216, 0.16) 1px, transparent 1.2px);
  background-size: 22px 22px;
  background-position: center top;
}

.home-page .hero::before {
  z-index: 0;
  background: radial-gradient(
    ellipse at 50% 38%,
    rgba(248, 250, 253, 0.76) 0 25%,
    rgba(248, 250, 253, 0.38) 47%,
    rgba(248, 250, 253, 0.06) 76%
  );
}

.home-page .hero::after {
  display: none;
}

.home-page .hero-kinetic,
.home-page .services-section > .motion-geometry,
.home-page .contact-section > .motion-geometry,
.home-page .service-stage-geometry {
  display: none !important;
}

.home-page .hero-copy,
.home-page .hero-facts {
  position: relative;
  z-index: 2;
}

.home-page .hero-slide {
  transition: opacity 150ms ease !important;
  transform: none !important;
}

.home-page .hero h1,
.home-page .hero h2 {
  letter-spacing: -0.052em;
}

.home-page .hero-facts {
  border-color: rgba(25, 72, 126, 0.09);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 2px rgba(28, 72, 124, 0.04);
  backdrop-filter: none;
}

.home-page :where(.services-section, .case-story, .faq-section) {
  background: #ffffff;
}

.home-page :where(.solutions-stage, .process-section, .fit-section, .support-projects) {
  background: #f5f8fc;
}

.home-page .service-explorer,
.home-page .case-showcase {
  border-color: rgba(25, 72, 126, 0.1);
  background: #f6f9fd;
  box-shadow: 0 1px 3px rgba(28, 72, 124, 0.055);
}

.home-page .service-stage {
  background: #ffffff;
}

.home-page .service-option,
.home-page .case-select {
  transition: color 140ms ease, background-color 140ms ease, border-color 140ms ease !important;
  transform: none !important;
}

.home-page .service-option.is-active,
.home-page .case-select.is-active {
  box-shadow: 0 1px 2px rgba(28, 72, 124, 0.05);
}

.home-page .service-panel,
.home-page .service-panel.is-active,
.home-page .case-feature-copy {
  animation: none !important;
  transform: none !important;
  transition: opacity 140ms ease !important;
}

.home-page .solutions-stage .solution-row,
.home-page .solutions-stage .solution-row:nth-child(n),
.home-page .process-steps li,
.home-page .process-steps li:nth-child(n),
.home-page .process-summary > div,
.home-page .process-summary > div:nth-child(n),
.home-page .fit-card,
.home-page .fit-card:nth-child(n),
.home-page .support-project-list span,
.home-page .support-project-list span:nth-child(n) {
  border-color: rgba(25, 72, 126, 0.1);
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(28, 72, 124, 0.045);
  transform: none !important;
  transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease !important;
}

.home-page .solutions-stage .solution-row:nth-child(n),
.home-page .fit-positive {
  background-image: none;
}

.home-page .solutions-stage .solution-row:hover,
.home-page .solutions-stage .solution-row:focus-visible,
.home-page .process-steps li:hover,
.home-page .fit-card:hover,
.home-page .support-project-list span:hover {
  border-color: rgba(11, 99, 216, 0.22);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(28, 72, 124, 0.07);
  transform: none !important;
}

.home-page .case-visual {
  background:
    radial-gradient(circle, rgba(11, 99, 216, 0.1) 1px, transparent 1.1px) 0 0 / 18px 18px,
    #eef5fd;
}

.home-page .case-visual > span {
  display: none !important;
}

.home-page .case-visual b {
  opacity: 0.72;
  transform: none !important;
  transition: none !important;
}

.home-page .case-select.is-active::after,
.home-page .process-steps li::after,
.home-page .fit-card::after,
.home-page .solution-row::before {
  animation: none !important;
}

[data-motion-profile="minimal"] .journey-lead,
[data-motion-profile="minimal"] .journey-section .journey-lead,
[data-motion-profile="minimal"] .journey-section.is-before .journey-lead,
[data-motion-profile="minimal"] .journey-section.is-current .journey-lead,
[data-motion-profile="minimal"] .journey-section.is-past .journey-lead,
[data-motion-profile="minimal"] .inner-reveal,
[data-motion-profile="minimal"] .inner-reveal.is-revealed {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

[data-motion-profile="minimal"].inner-page :where(
  .entity-card,
  .decision-grid article,
  .fact-grid article,
  .contact-cards article,
  .contact-decision > div,
  .secondary-facts article,
  .secondary-module-grid li,
  .secondary-related a,
  .secondary-hub-grid > a,
  .capability-grid li,
  .audience-grid li,
  .version-grid li,
  .maintenance-grid article,
  .privacy-grid article
) {
  transform: none !important;
  transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease !important;
}

[data-motion-profile="minimal"].inner-page :where(.inner-hero, .entity-hero)::after {
  animation: none !important;
  transform: none !important;
}

@media (max-width: 880px) {
  .home-page .hero {
    min-height: 760px;
  }
}

@media (max-width: 640px) {
  .home-page .hero {
    min-height: 650px;
    padding-top: 76px;
    background-size: 20px 20px;
  }

  .home-page .hero::before {
    background: radial-gradient(
      ellipse at 50% 34%,
      rgba(248, 250, 253, 0.8) 0 30%,
      rgba(248, 250, 253, 0.32) 58%,
      rgba(248, 250, 253, 0.04) 82%
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-motion-profile="minimal"] *,
  [data-motion-profile="minimal"] *::before,
  [data-motion-profile="minimal"] *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/*
 * 2026-09-03 / homepage information architecture recomposition
 * A complete homepage layout contract that supersedes legacy absolute sizes.
 * The single hero carousel may autoplay; all content-area switching stays
 * deliberate and user-controlled.
 */

.home-page .hero {
  min-height: clamp(680px, calc(100svh - 70px), 820px);
  background-color: #f8fafd;
  background-image: radial-gradient(circle, rgba(11, 99, 216, 0.3) 1.25px, transparent 1.35px);
  background-size: 20px 20px;
  background-position: center top;
}

.home-page .hero::before {
  background: radial-gradient(
    ellipse at 50% 38%,
    rgba(248, 250, 253, 0.64) 0 24%,
    rgba(248, 250, 253, 0.28) 47%,
    rgba(248, 250, 253, 0.02) 76%
  );
}

.home-page .hero-slide {
  padding-inline: 12px;
}

.home-page .hero .kicker,
.home-page .hero .promise,
.home-page .hero h1,
.home-page .hero h2 {
  position: relative;
  z-index: 2;
}

.home-page .hero-control,
.home-page .hero-control:nth-child(n) {
  color: #5d7088;
  border-color: rgba(25, 92, 175, 0.16);
  background: rgba(255, 255, 255, 0.88);
}

.home-page .hero-control.is-active,
.home-page .hero-control.is-active:nth-child(n) {
  color: #ffffff;
  border-color: #0b63d8;
  background: #0b63d8;
}

.home-page .service-explorer {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.34fr);
  align-items: stretch;
  overflow: visible;
}

.home-page .service-options {
  min-width: 0;
  padding: 6px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  border-radius: 20px;
  background: rgba(239, 245, 252, 0.86);
}

.home-page .service-option,
.home-page .service-option:nth-child(n) {
  width: 100%;
  min-width: 0;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  color: #53677e;
}

.home-page .service-option strong,
.home-page .service-option:nth-child(n) strong {
  min-width: 0;
  color: #263d56;
}

.home-page .service-option em,
.home-page .service-option:nth-child(n) em {
  color: #7a899b;
}

.home-page .service-option.is-active,
.home-page .service-option.is-active:nth-child(n) {
  color: #124f96;
  background: #ffffff;
}

.home-page .service-option.is-active strong,
.home-page .service-option.is-active:nth-child(n) strong {
  color: #123b69;
}

.home-page .service-option.is-active span,
.home-page .service-option.is-active:nth-child(n) span {
  color: #0b63d8;
}

.home-page .service-option.is-active em,
.home-page .service-option.is-active:nth-child(n) em {
  color: #647991;
}

.home-page .service-stage,
.home-page .services-story-pin .service-stage {
  min-width: 0;
  min-height: 480px;
  height: auto;
  display: grid;
}

.home-page .service-panels {
  min-width: 0;
  width: 100%;
  min-height: 480px;
  display: grid;
}

.home-page .service-panel,
.home-page .services-story-pin .service-panel {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: 480px;
  padding: clamp(38px, 5vw, 66px);
  color: #172f4d;
  background: transparent;
}

.home-page .service-panel h3,
.home-page .service-panel.is-active h3 {
  max-width: 18ch;
  color: #102b49;
}

.home-page .service-panel > p,
.home-page .service-panel.is-active > p {
  max-width: 66ch;
  color: #60738a;
}

.home-page .service-panel li,
.home-page .service-panel.is-active li {
  color: #315475;
  background: #edf4fc;
}

.home-page .solution-list {
  align-items: stretch;
}

.home-page .solutions-stage .solution-row,
.home-page .solutions-stage .solution-row:nth-child(n) {
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
  color: #173553;
}

.home-page .solutions-stage .solution-row :where(strong, em, .solution-desc),
.home-page .solutions-stage .solution-row:nth-child(n) :where(strong, em, .solution-desc) {
  color: inherit;
}

.home-page .solutions-stage .solution-row .solution-desc {
  color: #62758a;
}

.home-page .case-showcase {
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.62fr);
  gap: 16px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .case-feature {
  position: relative;
  box-sizing: border-box;
  min-width: 0;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 14%, rgba(97, 165, 255, 0.2), transparent 31%),
    linear-gradient(145deg, #0d5dce, #123d7a);
  box-shadow: 0 18px 48px rgba(19, 68, 133, 0.14);
}

.home-page .case-feature-copy,
.home-page .case-feature__copy {
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  width: 100%;
  max-width: min(76%, 720px);
  height: auto;
  min-height: 540px;
  padding: clamp(38px, 5vw, 68px);
  justify-content: center;
}

.home-page .case-feature h3,
.home-page .case-feature-copy h3 {
  max-width: 15ch;
  margin-top: 24px;
  color: #ffffff;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
  overflow-wrap: normal;
}

.home-page .case-feature h3 .semantic-title-line,
.home-page .case-feature h3 .semantic-title-phrase {
  display: inline;
  width: auto;
  white-space: normal;
}

.home-page .case-feature-copy > p,
.home-page .case-feature-meta,
.home-page .case-feature-copy > a {
  position: relative;
  z-index: 3;
  color: #dceaff;
}

.home-page .case-feature-copy > p {
  max-width: 58ch;
}

.home-page .case-feature-meta {
  color: #bcd4f1;
}

.home-page .case-visual {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  width: 38%;
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(18, 61, 122, 0), rgba(18, 61, 122, 0.22)),
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1.15px) 0 0 / 18px 18px;
}

.home-page .case-visual b {
  right: 8%;
  bottom: 5%;
  color: rgba(255, 255, 255, 0.18);
  font-size: clamp(110px, 13vw, 190px);
}

.home-page .case-selector {
  min-width: 0;
  padding: 8px;
  gap: 4px;
  border: 1px solid rgba(25, 72, 126, 0.1);
  border-radius: 22px;
  background: #f4f8fd;
}

.home-page .case-select,
.home-page .case-select:nth-child(n) {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 80px;
  padding: 15px 14px;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  border: 1px solid transparent;
  border-radius: 14px;
  color: #53677e;
  background: transparent;
}

.home-page .case-select strong,
.home-page .case-select:nth-child(n) strong {
  min-width: 0;
  color: #273e57;
  line-height: 1.35;
}

.home-page .case-select span,
.home-page .case-select:nth-child(n) span {
  color: #8494a7;
}

.home-page .case-select em,
.home-page .case-select:nth-child(n) em {
  color: #7f8ea0;
}

.home-page .case-select.is-active,
.home-page .case-select.is-active:nth-child(n) {
  color: #124f96;
  border-color: rgba(11, 99, 216, 0.13);
  background: #ffffff;
}

.home-page .case-select.is-active strong,
.home-page .case-select.is-active:nth-child(n) strong {
  color: #123b69;
}

.home-page .case-select.is-active span,
.home-page .case-select.is-active:nth-child(n) span {
  color: #0b63d8;
}

.home-page .case-select.is-active em,
.home-page .case-select.is-active:nth-child(n) em {
  color: #647991;
}

@media (max-width: 1100px) {
  .home-page .service-explorer,
  .home-page .case-showcase {
    grid-template-columns: 1fr;
  }

  .home-page .service-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .home-page .service-option,
  .home-page .service-option:nth-child(n) {
    min-height: 96px;
    padding: 16px;
    grid-template-columns: 28px minmax(0, 1fr);
    align-content: center;
  }

  .home-page .service-option em,
  .home-page .service-option:nth-child(n) em {
    grid-column: 2;
  }

  .home-page .case-feature,
  .home-page .case-feature-copy,
  .home-page .case-feature__copy {
    min-height: 480px;
  }

  .home-page .case-feature-copy,
  .home-page .case-feature__copy {
    max-width: 72%;
  }

  .home-page .case-selector {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-page .hero {
    min-height: 680px;
    background-size: 18px 18px;
  }

  .home-page .service-options,
  .home-page .case-selector {
    grid-template-columns: 1fr;
  }

  .home-page .service-option,
  .home-page .service-option:nth-child(n) {
    min-height: 72px;
  }

  .home-page .service-stage,
  .home-page .services-story-pin .service-stage,
  .home-page .service-panels,
  .home-page .service-panel,
  .home-page .services-story-pin .service-panel {
    min-height: 0;
  }

  .home-page .case-feature {
    min-height: 500px;
  }

  .home-page .case-feature-copy,
  .home-page .case-feature__copy {
    max-width: none;
    min-height: 500px;
    padding: 32px 24px;
  }

  .home-page .case-feature h3,
  .home-page .case-feature-copy h3 {
    max-width: 13ch;
    font-size: clamp(34px, 10.5vw, 44px);
  }

  .home-page .case-visual {
    inset: auto 0 0 auto;
    width: 62%;
    height: 42%;
    min-height: 0;
    opacity: 0.58;
  }

  .home-page .case-select,
  .home-page .case-select:nth-child(n) {
    min-height: 72px;
  }
}
