:root {
  color-scheme: dark;
  font-family: "Noto Sans JP", "Inter", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --color-bg: #060708;
  --color-bg-light: #101214;
  --color-surface: rgba(255, 255, 255, 0.08);
  --color-text: #f5f7fa;
  --color-accent: #6ec5ff;
  --max-content-width: min(1120px, 90vw);
  --header-height: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  padding: calc(10px + env(safe-area-inset-top, 0px)) 0 10px 0;
  pointer-events: none;
  background: rgba(26, 32, 40, 0.9);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  --header-horizontal-padding: clamp(18px, 3vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  pointer-events: auto;
  color: #ffffff;
  padding: 0 var(--header-horizontal-padding);
}

.site-header__inner--safe {
  padding-right: calc(var(--header-horizontal-padding) + env(safe-area-inset-right, 0px));
  padding-left: calc(var(--header-horizontal-padding) + env(safe-area-inset-left, 0px));
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.site-header__brand img {
  display: block;
  width: clamp(130px, 13vw, 190px);
  height: auto;
}

.menu-toggle {
  width: 32px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  color: #ffffff;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  border-radius: 999px;
  transition: transform 0.35s ease, opacity 0.35s ease;
  flex-shrink: 0;
}

.menu-toggle span::before {
  content: "";
}

.menu-toggle span:nth-child(1) {
  transform-origin: top left;
}

.menu-toggle span:nth-child(3) {
  transform-origin: bottom left;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: rgba(12, 17, 22, 0.9);
}

.hero__media,
.hero__overlay {
  position: absolute;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
}

.hero__media {
  background: radial-gradient(circle at 20% 20%, rgba(20, 28, 38, 0.6), transparent 55%),
    linear-gradient(180deg, #0e131a 0%, #05070a 100%);
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero--video-fallback .hero__video {
  display: none;
}

.hero--video-fallback .hero__media {
  background: radial-gradient(circle at 20% 20%, rgba(20, 28, 38, 0.65), transparent 55%),
    linear-gradient(180deg, #0f141b 0%, #07090d 100%);
}

.hero__overlay {
  background: rgba(0, 0, 0, 0.48);
}

.hero__video.is-ready {
  opacity: 1;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: calc(var(--header-height) + clamp(400px, 44vh, 520px)) clamp(24px, 6vw, 96px) clamp(20px, 5vh, 36px);
  width: 100%;
  gap: clamp(28px, 6vh, 48px);
}

.hero__top {
  max-width: min(900px, 88vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(14px, 2.6vh, 24px);
}

.hero__eyebrow {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.75;
  display: inline-flex;
  gap: clamp(12px, 2.8vw, 28px);
  align-items: center;
}

.hero__headline {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.01em;
  max-width: min(960px, 80vw);
  white-space: nowrap;
}

.hero__headline-line {
  display: inline;
  white-space: nowrap;
}

.hero__headline--two-line {
  display: inline-flex;
  flex-direction: column;
  gap: clamp(0px, 0.6vw, 8px);
}

.hero__description {
  margin-top: clamp(12px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  max-width: min(640px, 72vw);
}


.hero__cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: clamp(30px, 5vw, 46px);
  padding: 20px 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: background 0.25s ease, transform 0.25s ease;
  align-self: flex-start;
}

.hero__cta-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero__cta-sub {
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0.08em;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}


.hero__scroll-cue {
  align-self: center;
  margin-top: clamp(32px, 5vh, 48px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

.hero__intro-line {
  position: absolute;
  bottom: clamp(48px, 14vh, 120px);
  left: clamp(24px, 6vw, 96px);
  margin: 0;
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.12;
  max-width: min(620px, 74vw);
  color: rgba(240, 244, 248, 0.08);
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.75);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.28s ease-out, transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: clamp(12px, 2.4vw, 24px);
  white-space: nowrap;
  flex-wrap: nowrap;
}

.hero--timeline .hero__intro-line {
  animation: heroIntroGlow 8s ease-out forwards;
}

.hero--intro-visible .hero__intro-line {
  opacity: 1;
  transform: scale(1);
}

.hero__intro-word {
  display: inline-flex;
  align-items: baseline;
  opacity: 0;
  transform: translateY(22px) scale(0.9);
  filter: blur(22px);
}

.hero__intro-word.is-visible {
  animation: heroIntroWordReveal 7.4s cubic-bezier(0.3, 0.82, 0.34, 1) forwards;
}

@keyframes heroIntroGlow {
  0% {
    color: rgba(240, 244, 248, 0.3);
    text-shadow: 0 14px 32px rgba(0, 0, 0, 0.75);
  }
  13.5% {
    color: rgba(243, 246, 250, 0.4);
    text-shadow: 0 15px 33px rgba(0, 0, 0, 0.72);
  }
  27% {
    color: rgba(246, 248, 252, 0.5);
    text-shadow: 0 17px 35px rgba(0, 0, 0, 0.69);
  }
  40.5% {
    color: rgba(249, 251, 254, 0.6);
    text-shadow: 0 18px 36px rgba(0, 0, 0, 0.66);
  }
  54% {
    color: rgba(252, 253, 255, 0.7);
    text-shadow: 0 20px 38px rgba(0, 0, 0, 0.62);
  }
  67.5% {
    color: rgba(254, 255, 255, 0.8);
    text-shadow: 0 21px 40px rgba(0, 0, 0, 0.6);
  }
  81% {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 22px 42px rgba(0, 0, 0, 0.58);
  }
  94.5% {
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 22px 42px rgba(0, 0, 0, 0.56);
  }
  100% {
    color: rgba(255, 255, 255, 0.99);
    text-shadow: 0 22px 42px rgba(0, 0, 0, 0.54);
  }
}

@keyframes heroIntroWordReveal {
  0% {
    opacity: 0.3;
    transform: scale(0.94);
    filter: blur(10px);
  }
  13.5% {
    opacity: 0.4;
    transform: scale(0.955);
    filter: blur(7px);
  }
  27% {
    opacity: 0.5;
    transform: scale(0.97);
    filter: blur(4.6px);
  }
  40.5% {
    opacity: 0.6;
    transform: scale(0.982);
    filter: blur(3px);
  }
  54% {
    opacity: 0.7;
    transform: scale(0.992);
    filter: blur(1.8px);
  }
  67.5% {
    opacity: 0.8;
    transform: scale(0.998);
    filter: blur(1px);
  }
  81% {
    opacity: 0.9;
    transform: scale(1);
    filter: blur(0.35px);
  }
  94.5% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0.1px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.hero--timeline .hero__top {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero--timeline .hero__headline {
  opacity: 0;
  transform: scale(0.94) translateY(22px);
  transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero--timeline .hero__description {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero--timeline .hero__scroll-cue {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero--headline-active .hero__top {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero--headline-active .hero__headline {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.05s;
}

.hero--headline-active .hero__description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero--headline-active .hero__scroll-cue {
  opacity: 0.85;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.hero--headline-active .hero__scroll-cue:hover,
.hero--headline-active .hero__scroll-cue:focus-visible {
  opacity: 1;
}

.hero__scroll-cue:hover,
.hero__scroll-cue:focus-visible {
  opacity: 1;
}

.site-footer {
  flex-shrink: 0;
  padding: 32px clamp(24px, 6vw, 96px);
  background: #040405;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__inner {
  width: var(--max-content-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }

  .site-header {
    padding: calc(8px + env(safe-area-inset-top, 0px)) 0 8px 0;
  }

  .site-header__inner {
    --header-horizontal-padding: clamp(16px, 6vw, 24px);
  }

  .site-header__brand img {
    width: clamp(140px, 40vw, 180px);
  }

  .menu-toggle {
    width: 28px;
    height: 20px;
    color: #ffffff;
  }

  .hero__inner {
    padding-top: clamp(240px, 48vh, 380px);
    align-items: flex-start;
  }

  .hero__top {
    max-width: 100%;
  }

  .hero__headline {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    text-wrap: balance;
  }

  .hero__headline-line {
    display: block;
    white-space: nowrap;
  }

  .hero__headline-line + .hero__headline-line {
    margin-top: clamp(4px, 1.8vw, 8px);
  }

  .hero__intro-line {
    bottom: clamp(32px, 12vh, 80px);
    left: clamp(20px, 8vw, 40px);
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    max-width: min(90vw, 360px);
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(8px, 2.6vw, 12px);
    white-space: normal;
    flex-wrap: nowrap;
  }

  .hero__cta {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer__inner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .menu-overlay__inner {
    flex-direction: column;
    gap: 32px;
  }

  .menu-overlay__list {
    gap: 12px;
  }

  .hero__cta {
    margin-left: auto;
    margin-right: auto;
  }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  color: #050505;
  z-index: 20;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.4, 1),
    opacity 0.5s ease;
}

.menu-screen--overlay {
  min-height: 100vh;
  margin-top: var(--header-height);
  padding: clamp(48px, 12vh, 96px) clamp(18px, 6vw, 64px) clamp(56px, 12vh, 96px);
}

.menu-item__label {
  font: inherit;
}

body.menu-open {
  overflow: hidden;
}

/* ----- Internal Pages ----- */

body.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  color: var(--color-text);
}

body.page main {
  flex: 1 0 auto;
  padding-top: var(--header-height);
}

body.page.page--light {
  background: #ffffff;
  color: #101722;
}

body.page.page--light main {
  background: #ffffff;
}

.error-section .section__inner {
  align-items: center;
  text-align: center;
  gap: clamp(18px, 5vh, 48px);
}

.error-section__code {
  margin: 0;
  font-size: clamp(4.2rem, 14vw, 8rem);
  letter-spacing: 0.12em;
  font-weight: 800;
  color: rgba(245, 247, 250, 0.85);
}

body.page--light .error-section__code {
  color: #101722;
}

.error-section__headline {
  margin: 0;
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  letter-spacing: -0.01em;
  font-weight: 700;
}

.error-section__description {
  margin: 0;
  max-width: min(520px, 90vw);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(245, 247, 250, 0.78);
}

body.page--light .error-section__description {
  color: #3f4652;
}

.error-section__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.page-hero {
  position: relative;
  padding: clamp(120px, 20vh, 200px) clamp(24px, 6vw, 96px) clamp(64px, 12vh, 120px);
  background: radial-gradient(circle at 20% 20%, rgba(60, 72, 86, 0.4), transparent 60%),
    linear-gradient(180deg, #11161d 0%, #05080d 100%);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.75);
  z-index: 0;
}

body.page--light .page-hero {
  background: #ffffff;
  border-bottom: 1px solid rgba(19, 28, 41, 0.08);
}

body.page--light .page-hero::after {
  display: none;
}

.about-hero::before,
.products-hero::before,
.cases-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.65) 65%, rgba(255, 255, 255, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(110, 197, 255, 0.18), transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(32px, 6vw, 64px);
  align-items: start;
}

.page-hero__eyebrow {
  margin: 0 0 16px;
  font-size: 0.85rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.7;
}

.page-hero__headline {
  margin: 0 0 24px;
  font-size: clamp(2.6rem, 5.6vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.page-hero__description {
  margin: 0 0 clamp(28px, 3.6vw, 40px);
  color: rgba(245, 247, 250, 0.85);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

body.page--light .page-hero__eyebrow {
  color: #5b6879;
  opacity: 1;
}

body.page--light .page-hero__headline {
  color: #101722;
}

body.page--light .page-hero__description {
  color: #3a4350;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-hero__highlights {
  list-style: none;
  margin: 0 0 clamp(20px, 4vw, 32px);
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-hero__highlights li {
  position: relative;
  padding-left: 28px;
  color: rgba(245, 247, 250, 0.75);
  font-size: 0.98rem;
  line-height: 1.6;
}

.page-hero__highlights li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(110, 197, 255, 0.8);
  transform: translateY(-50%);
}

body.page--light .page-hero__highlights li {
  color: #424c5a;
}

.page-hero__visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.page-hero__figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 60px rgba(10, 20, 32, 0.18);
  background: #f5f7fb;
}

.page-hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.button--primary {
  background: rgba(255, 255, 255, 0.92);
  color: #050708;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #ffffff;
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
}

body.page--light .button--primary {
  background: #101722;
  color: #ffffff;
}

body.page--light .button--primary:hover,
body.page--light .button--primary:focus-visible {
  background: #1c2736;
}

body.page--light .button--secondary {
  border-color: rgba(16, 23, 34, 0.18);
  color: #101722;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
  color: #ffffff;
}

body.page--light .button--secondary:hover,
body.page--light .button--secondary:focus-visible {
  border-color: rgba(16, 23, 34, 0.34);
  color: #101722;
  background: rgba(16, 23, 34, 0.06);
}

.page-hero__stats {
  display: grid;
  gap: 24px;
}

.stat-card {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.stat-card__value {
  display: block;
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.stat-card__label {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 12px;
}

.stat-card__note {
  margin: 0;
  font-size: 0.93rem;
  color: rgba(245, 247, 250, 0.75);
}

.section {
  padding: clamp(72px, 18vh, 140px) clamp(24px, 6vw, 96px);
}

.section--emphasis {
  background: var(--color-bg-light);
}

.page--light .section--emphasis {
  background: #f4f6fa;
}

.section--faint {
  background: rgba(255, 255, 255, 0.02);
}

.section__inner {
  max-width: var(--max-content-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 56px);
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section__eyebrow {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.6;
}

body.page--light .section__eyebrow {
  color: #5b6879;
  opacity: 1;
}

.section__headline {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
}

body.page--light .section__headline {
  color: #101722;
}

.section__content {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.6vw, 28px);
  color: rgba(245, 247, 250, 0.82);
}

body.page--light .section__content {
  color: #3f4652;
}

.section__content--split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 36px);
}

.contact-section {
  display: grid;
  gap: clamp(32px, 6vw, 60px);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

.contact-section__intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-section__intro p {
  margin: 0;
  line-height: 1.8;
}

.contact-section__details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: 0.95rem;
}

body.page--light .contact-section__intro p,
body.page--light .contact-section__details {
  color: #3f4652;
}

body:not(.page--light) .contact-section__intro p,
body:not(.page--light) .contact-section__details {
  color: rgba(245, 247, 250, 0.8);
}

.contact-form {
  display: grid;
  gap: clamp(18px, 3vw, 26px);
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form__label {
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

body.page--light .contact-form__label {
  color: #101722;
}

body:not(.page--light) .contact-form__label {
  color: rgba(245, 247, 250, 0.9);
}

.contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #101722;
  color: #ffffff;
  border-radius: 999px;
  padding: 4px 10px;
}

.contact-form__optional {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(16, 23, 34, 0.54);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  border-radius: 14px;
  border: 1px solid rgba(16, 23, 34, 0.16);
  padding: 14px 16px;
  background: #ffffff;
  color: #101722;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body:not(.page--light) .contact-form input,
body:not(.page--light) .contact-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 247, 250, 0.14);
  color: var(--color-text);
}

body:not(.page--light) .contact-form input::placeholder,
body:not(.page--light) .contact-form textarea::placeholder {
  color: rgba(245, 247, 250, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #6ec5ff;
  box-shadow: 0 0 0 4px rgba(110, 197, 255, 0.2);
  outline: none;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form__note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(16, 23, 34, 0.6);
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.contact-form__submit {
  min-width: 200px;
}

.section.section--tight {
  padding-bottom: 0;
}

.thanks-content {
  align-items: center;
  text-align: center;
  gap: clamp(18px, 4vh, 36px);
}

.thanks-content h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3rem);
  letter-spacing: -0.01em;
}

.thanks-content p {
  margin: 0;
  max-width: min(520px, 90vw);
  line-height: 1.8;
  color: #3f4652;
}

.thanks-content__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.story-simple {
  display: grid;
  gap: clamp(24px, 5vw, 48px);
}

.story-simple__item {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 18px);
}

.story-simple__item h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  letter-spacing: 0.02em;
}

.story-simple__item p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
}

.story-simple__item--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 26px 50px rgba(14, 28, 54, 0.14);
}

.story-simple__item--right {
  align-items: flex-start;
}

@media (min-width: 960px) {
  .story-simple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
}

@media (max-width: 959px) {
  .story-simple {
    grid-template-columns: 1fr;
  }

  .story-simple__item,
  .story-simple__item--right {
    order: unset;
  }

  .story-simple__item:first-child {
    order: 1;
  }

  .story-simple__item--image:first-of-type {
    order: 2;
  }

  .story-simple__item--right {
    order: 3;
  }

  .story-simple__item--image:last-of-type {
    order: 4;
  }
}

.feature-grid {
  display: grid;
  gap: clamp(24px, 4vw, 32px);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
  padding: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

body.page--light .feature-card {
  background: #ffffff;
  border: 1px solid rgba(15, 27, 43, 0.08);
  box-shadow: 0 18px 32px rgba(15, 25, 38, 0.07);
}

.feature-card__title {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.feature-card__body {
  margin: 0;
  color: rgba(245, 247, 250, 0.75);
  font-size: 0.95rem;
}

body.page--light .feature-card__body {
  color: #3d4653;
}

.case-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(18px, 3vw, 32px);
}

.case-summary-card {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.page--light .case-summary-card {
  background: #ffffff;
  border: 1px solid rgba(16, 23, 34, 0.08);
  box-shadow: 0 22px 34px rgba(15, 25, 38, 0.08);
}

.case-summary-card__label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.6;
}

body.page--light .case-summary-card__label {
  color: #586375;
  opacity: 1;
}

.case-summary-card__value {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

body.page--light .case-summary-card__value {
  color: #121823;
}

.case-summary-card__description {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(245, 247, 250, 0.72);
}

body.page--light .case-summary-card__description {
  color: #3f4652;
}

.cases-highlight-grid {
  display: grid;
  gap: clamp(24px, 4vw, 36px);
  grid-template-columns: 1fr;
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 36px);
  align-items: stretch;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(24px, 4vw, 32px);
}

body.page--light .case-card {
  background: #ffffff;
  border: 1px solid rgba(15, 27, 43, 0.08);
  box-shadow: 0 26px 48px rgba(15, 25, 38, 0.08);
}

.case-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  width: min(520px, 90%);
  aspect-ratio: 16 / 9;
  align-self: center;
}

.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__body {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vw, 28px);
  min-width: 0;
}

.case-card__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-card__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.7;
}

body.page--light .case-card__eyebrow {
  color: #5b6879;
  opacity: 1;
}

.case-card__title {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: -0.01em;
}

.case-card__summary {
  margin: 0;
  color: rgba(245, 247, 250, 0.78);
  font-size: 0.98rem;
}

body.page--light .case-card__summary {
  color: #3c4350;
}

.case-card__sections {
  display: grid;
  gap: clamp(16px, 2.4vw, 24px);
}

.case-card__section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case-card__section h4 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.case-card__section p {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(245, 247, 250, 0.78);
  line-height: 1.7;
}

body.page--light .case-card__section p {
  color: #3a4350;
}

.case-card__metrics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.case-card__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.page--light .case-card__metric {
  background: #f6f8fb;
  border: 1px solid rgba(16, 23, 34, 0.08);
}

.case-card__metric-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

.case-card__metric-value {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .cases-highlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cases-highlight-grid {
    grid-template-columns: 1fr;
  }
}

.case-list {
  display: grid;
  gap: clamp(18px, 2.6vw, 28px);
}

.case-list__item {
  padding: 24px clamp(20px, 3.6vw, 28px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 12px;
}

body.page--light .case-list__item {
  background: #ffffff;
  border: 1px solid rgba(16, 23, 34, 0.08);
  box-shadow: 0 18px 34px rgba(15, 25, 38, 0.07);
}

.case-list__header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
}

.case-list__title {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.case-list__tag {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

body.page--light .case-list__tag {
  color: #5b6879;
  opacity: 1;
}

.case-list__summary {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(245, 247, 250, 0.76);
}

body.page--light .case-list__summary {
  color: #3d4652;
}

.case-list__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.case-note {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(245, 247, 250, 0.64);
}

body.page--light .case-note {
  color: #596374;
}

.section--timeline {
  padding: clamp(72px, 18vh, 140px) clamp(18px, 4.5vw, 48px);
}

.section--timeline .section__inner {
  max-width: none;
  width: 100%;
}

.timeline-frame {
  padding: clamp(24px, 6vw, 40px) 0;
}

.timeline-panel {
  width: min(1260px, 100%);
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5.5vw, 56px);
}

.timeline-panel__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.timeline-panel__label {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #143055;
  opacity: 0.65;
}

.timeline-panel__title {
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 3.2rem);
  letter-spacing: -0.015em;
  color: #081a32;
}

.timeline-layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5.6vw, 60px);
  padding: clamp(36px, 7vw, 68px);
  border-radius: 36px;
  background: #f6f8fc;
  box-shadow: 0 30px 60px rgba(12, 24, 44, 0.14);
  border: 1px solid rgba(16, 35, 58, 0.08);
  position: relative;
}

.timeline-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 40px);
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .timeline-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(32px, 5vw, 44px);
  }
}

@media (min-width: 1280px) {
  .timeline-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(28px, 3.4vw, 36px);
    max-width: 1240px;
  }

  .timeline-card {
    padding: clamp(24px, 1.8vw, 28px);
  }
}

@media (max-width: 959px) {
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .timeline-axis {
    display: none;
  }

  .timeline-card {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .timeline-row--bottom {
    margin-top: 12px;
  }

  .timeline-layout::before {
    content: "";
    position: absolute;
    top: clamp(32px, 10vw, 56px);
    bottom: clamp(64px, 14vw, 84px);
    right: clamp(6px, 2vw, 12px);
    width: 6px;
    border-radius: 999px;
    background: #061a38;
  }

  .timeline-layout::after {
    content: "";
    position: absolute;
    bottom: clamp(46px, 11vw, 62px);
    right: clamp(2px, 1.4vw, 8px);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 14px solid #061a38;
  }
}

.timeline-row--top,
.timeline-row--bottom {
  align-items: stretch;
}

.timeline-axis {
  position: relative;
  height: 36px;
}

.timeline-axis::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: clamp(48px, 5.5vw, 80px);
  height: 8px;
  border-radius: 999px;
  background: #061a38;
  transform: translateY(-50%);
}

.timeline-axis::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-left: clamp(48px, 5.5vw, 80px) solid #061a38;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  transform: translateY(-50%);
}

.timeline-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(20px, 3.2vw, 28px);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 22px 46px rgba(11, 23, 43, 0.12);
  border: 1px solid rgba(19, 40, 66, 0.08);
}

.timeline-card__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.timeline-card__year {
  margin: 0;
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  color: #061a38;
}

.timeline-card__title {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  color: #0b233a;
}

.timeline-card__icon {
  margin-top: 2px;
  display: flex;
  justify-content: flex-start;
}

.timeline-card__icon img {
  display: block;
  width: clamp(82px, 14vw, 116px);
  height: auto;
}

.timeline-card__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 22px;
  border-radius: 999px;
  background: #0b2250;
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-card__list {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: clamp(12px, 1.5vw, 16px);
  color: #21324a;
  line-height: 1.8;
}

.timeline-card__list li::marker {
  color: #061a38;
}

body.page--light .timeline-panel__label {
  color: #435775;
}

body.page--light .timeline-card__list {
  color: #21324a;
}

@media (max-width: 1200px) {
  .timeline-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .timeline-layout {
    padding: clamp(28px, 9vw, 44px);
  }

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

@media (max-width: 900px) {
  .case-card {
    padding: clamp(20px, 4vw, 28px);
  }

  .case-card__media {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .timeline-row {
    grid-template-columns: 1fr;
  }

  .timeline-axis::after {
    border-left-width: 40px;
    border-top-width: 14px;
    border-bottom-width: 14px;
  }
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(24px, 4vw, 32px);
}

.solution-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 27, 43, 0.08);
  background: #ffffff;
  box-shadow: 0 22px 40px rgba(12, 22, 36, 0.12);
}

.solution-card img {
  width: 100%;
  height: clamp(180px, 26vh, 240px);
  object-fit: cover;
}

.solution-card__body {
  padding: clamp(22px, 4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-card__title {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.solution-card__body p {
  margin: 0;
  color: #3f4653;
  line-height: 1.7;
}

.workflow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.workflow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body.page--light .workflow-step {
  background: #ffffff;
  border: 1px solid rgba(15, 27, 43, 0.08);
  box-shadow: 0 16px 32px rgba(12, 22, 36, 0.06);
}

.workflow-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(110, 197, 255, 0.16);
  color: #6ec5ff;
  font-weight: 600;
  letter-spacing: 0.12em;
}

body.page--light .workflow-step__number {
  background: rgba(16, 23, 34, 0.08);
  color: #101722;
}

.workflow-step__body h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.workflow-step__body p {
  margin: 0;
  color: rgba(245, 247, 250, 0.74);
  font-size: 0.95rem;
}

body.page--light .workflow-step__body p {
  color: #3e4654;
}

.company-info {
  padding: clamp(32px, 5vw, 48px);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body.page--light .company-info {
  background: #ffffff;
  border: 1px solid rgba(15, 27, 43, 0.08);
  box-shadow: 0 18px 32px rgba(15, 25, 38, 0.06);
}

.company-info dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.company-info__row {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 24px;
}

.company-info dt {
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  opacity: 0.7;
}

body.page--light .company-info dt {
  color: #5b6879;
  opacity: 1;
}

.company-info dd {
  margin: 0;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.85);
}

body.page--light .company-info dd {
  color: #1f2733;
}

.partners {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: rgba(245, 247, 250, 0.78);
}

body.page--light .partners {
  color: #3f4652;
}

.partners__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px clamp(18px, 4vw, 32px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* ----- Products Page ----- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 32px);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(16, 23, 34, 0.08);
  box-shadow: 0 18px 45px rgba(14, 24, 38, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(14, 24, 38, 0.14);
}

.product-card__media {
  position: relative;
  width: 100%;
  background: #ffffff;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

article[aria-labelledby="product-rgv-title"] .product-card__media {
  justify-content: flex-start;
  padding: clamp(16px, 3vw, 32px) clamp(16px, 3.5vw, 36px) clamp(16px, 3vw, 32px) clamp(10px, 2.2vw, 24px);
}

article[aria-labelledby="product-rgv-title"] .product-card__media img {
  width: auto;
  max-width: 105%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  transform: translateX(-10%);
}

article[aria-labelledby="product-agv-title"] .product-card__media {
  justify-content: flex-start;
  padding: clamp(16px, 3vw, 32px) clamp(16px, 3.5vw, 36px) clamp(16px, 3vw, 32px) clamp(1px, 0.5vw, 6px);
}

article[aria-labelledby="product-agv-title"] .product-card__media img {
  width: auto;
  max-width: 105%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  transform: translateX(-8%);
}

.product-card__media--centered {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  background: #ffffff;
  overflow: hidden;
}

.product-card__media--centered img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: translateX(-18%);
}

.product-card__media--light {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(12px, 2.5vw, 28px);
  background: #ffffff;
}

.product-card__media--light img {
  width: auto;
  max-width: 95%;
  height: auto;
  max-height: 90%;
  object-fit: contain;
}

.product-card__media--agf {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #ffffff;
}

.product-card__media--agf img {
  width: auto;
  max-width: 110%;
  height: auto;
  max-height: 90%;
  object-fit: contain;
}

.product-card__media--warehouse {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #ffffff;
  aspect-ratio: auto;
  padding: clamp(16px, 3vw, 32px) clamp(16px, 4vw, 40px) clamp(16px, 3vw, 32px) clamp(4px, 0.8vw, 8px);
}

.product-card__media--warehouse img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  transform: translateX(-6%);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 4vw, 32px);
  color: #3f4652;
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(16, 23, 34, 0.16);
  background: rgba(16, 23, 34, 0.04);
  color: #101722;
}

.product-card--featured {
  border-color: rgba(16, 23, 34, 0.18);
  box-shadow: 0 26px 60px rgba(12, 22, 36, 0.16);
}

.product-card--featured .product-card__badge {
  background: #101722;
  border-color: #101722;
  color: #ffffff;
}

.product-card__title {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  letter-spacing: 0.01em;
  color: #101722;
}

.product-card__description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

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

.product-card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2f3846;
}

.product-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(16, 23, 34, 0.35);
  transform: translateY(-50%);
}

.product-cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 5vw, 40px);
  align-items: center;
}

.product-cta__copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #2f3846;
}

.product-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

/* ----- Solutions Showcase ----- */

.section--solutions {
  background: #eef3f8;
}

.solutions-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 28px);
}

.solutions-card {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: clamp(18px, 3vw, 28px);
  align-items: center;
  padding: clamp(22px, 4vw, 32px);
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(18, 40, 70, 0.12);
  box-shadow: 0 22px 45px rgba(12, 28, 54, 0.1);
}

.solutions-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6px, 1.4vw, 12px);
  background: linear-gradient(180deg, rgba(239, 245, 252, 0.75) 0%, rgba(224, 236, 248, 0.4) 100%);
  border-radius: 22px;
}

.solutions-card__media img {
  width: clamp(100px, 14vw, 140px);
  height: auto;
  display: block;
}

.solutions-card__body {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 18px);
}

.solutions-card__tag {
  margin: 0;
  align-self: flex-start;
  padding: 8px 18px;
  border-radius: 999px;
  background: #0d2444;
  color: #ffffff;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.solutions-card__description {
  margin: 0;
  color: #2b3442;
  line-height: 1.75;
  font-size: 0.96rem;
}

.section--solutions .section__header {
  align-items: flex-start;
}

@media (max-width: 960px) {
  .solutions-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .solutions-card__media {
    justify-content: flex-start;
  }

  .solutions-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .solutions-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: clamp(120px, 26vh, 160px) 20px clamp(56px, 16vh, 80px);
  }

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

  .page-hero__headline {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
  }

  .page-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: clamp(64px, 18vh, 96px) 20px;
  }

  .workflow-step {
    grid-template-columns: 1fr;
  }

  .workflow-step__number {
    width: 36px;
    height: 36px;
  }

  .company-info__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .solution-card img {
    height: 200px;
  }

  .case-study {
    grid-template-columns: 1fr;
  }

  .product-card__body {
    padding: 24px;
  }

  .product-cta__actions {
    width: 100%;
    align-items: stretch;
  }
}

body.menu-open .menu-overlay {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .menu-toggle {
  color: #101722;
}

body.menu-open .site-header__brand {
  opacity: 1;
}


.menu-screen {
  min-height: 100vh;
  background: #ffffff;
  color: #0a0a0a;
  display: flex;
  align-items: flex-start;
  padding: clamp(32px, 7vh, 64px) clamp(18px, 6vw, 64px);
}

.menu-screen__inner {
  width: 100%;
}

.menu-screen__heading {
  font-size: clamp(4rem, 8vw, 6.8rem);
  letter-spacing: 0;
  margin: 0 0 clamp(24px, 5vh, 52px);
  font-family: "Tahoma", "Montserrat", "Avenir Next", "Century Gothic", sans-serif;
  font-weight: 800;
  line-height: 0.9;
}


.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #0a0a0a;
  border-bottom: 1px solid #0a0a0a;
}

.menu-item {
  border-top: 1px solid #0a0a0a;
}

.menu-item:first-of-type {
  border-top: none;
}

.menu-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(6px, 1.4vw, 14px) clamp(6px, 1.8vw, 14px);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 700;
  font-family: "Work Sans", "Montserrat", "Futura", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 0.25s ease, padding-left 0.25s ease;
}

.menu-item a:hover,
.menu-item a:focus-visible {
  background: rgba(0, 0, 0, 0.05);
  padding-left: clamp(10px, 1.8vw, 18px);
}

.menu-item__arrow {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 600;
}
.header-safe-spacer {
  height: calc(10px + env(safe-area-inset-top, 0px));
}
