/* TriC — next-gen startup brand layer */

:root {
  --navy-950: #0a0f18;
  --navy-900: #101828;
  --navy-800: #172035;
  --navy-700: #212b42;
  --navy-600: #2c3854;
  --accent: #6b8cff;
  --accent-soft: rgba(107, 140, 255, 0.15);
  --glow: rgba(107, 140, 255, 0.35);
  --glass-dark: rgba(12, 18, 32, 0.45);
  --glass-dark-strong: rgba(8, 12, 24, 0.72);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-highlight: rgba(255, 255, 255, 0.08);
  --glass-blur: 28px;
  --gradient-brand: linear-gradient(
    135deg,
    #0c111c 0%,
    var(--navy-800) 48%,
    #1a2438 100%
  );
  --gradient-hero: linear-gradient(
    105deg,
    rgba(5, 8, 16, 0.44) 0%,
    rgba(5, 8, 16, 0.12) 48%,
    rgba(8, 14, 28, 0.28) 100%
  );
  --gradient-glow: radial-gradient(
    ellipse 60% 80% at 80% 20%,
    rgba(107, 140, 255, 0.12) 0%,
    transparent 55%
  );
  --section-space: clamp(112px, 13vw, 168px);
  --section-space-sm: clamp(72px, 9vw, 112px);
  --container-wide: 1340px;
  --photo-filter: saturate(0.9) contrast(1) brightness(1.04) hue-rotate(-5deg);
  --photo-overlay: linear-gradient(
    180deg,
    rgba(8, 14, 28, 0.12) 0%,
    rgba(5, 8, 16, 0.28) 100%
  );
  --hover-lift: -3px;
  --hover-scale: 1.02;
}

body {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.88);
}

/* うっすらした空気感（画像は主張しない） */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.atmosphere::before {
  content: "";
  position: absolute;
  inset: -25%;
  background-image:
    url("https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?auto=format&fit=crop&w=1600&q=80"),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200&q=80");
  background-size: cover, cover;
  background-position: center 35%, 80% 60%;
  filter: blur(56px) saturate(0.78) brightness(0.72) hue-rotate(-6deg);
  opacity: 0.36;
  transform: scale(1.05);
}

.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(90, 120, 180, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(55, 75, 110, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(107, 140, 255, 0.08) 0%, transparent 45%),
    linear-gradient(180deg, #0e1420 0%, var(--navy-950) 45%, #0a0f18 100%);
  opacity: 0.58;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
}

.container--wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  width: 100%;
}

/* ── Typography (editorial) ── */

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.72) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-right: 0.06em;
  padding-bottom: 0.08em;
}

.headline-xl {
  font-size: clamp(2.25rem, 6.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.headline-lg {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.headline-md {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.copy-short {
  font-size: clamp(0.875rem, 1.8vw, 0.9375rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.9;
  max-width: 26em;
}

.copy-short--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.copy-body {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.95;
  letter-spacing: 0.02em;
  max-width: 36em;
}

.copy-body--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 32em;
}

.br-desktop {
  display: none;
}

.br-mobile {
  display: none;
}

@media (min-width: 769px) {
  .br-desktop {
    display: inline;
  }
}

@media (max-width: 768px) {
  .br-mobile {
    display: inline;
  }
}

.eyebrow-minimal {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 16px;
}

/* 写真トーン統一 */
.media-tone {
  position: relative;
  overflow: hidden;
  background: var(--navy-800);
}

.media-tone img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-filter);
}

.media-tone::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--photo-overlay);
  pointer-events: none;
  mix-blend-mode: normal;
}

.hero__media.media-tone::after {
  background: linear-gradient(
    105deg,
    rgba(5, 8, 16, 0.22) 0%,
    rgba(8, 16, 32, 0.08) 50%,
    rgba(5, 8, 16, 0.18) 100%
  );
  mix-blend-mode: normal;
}

.path-card__shade {
  background: linear-gradient(
    0deg,
    rgba(5, 8, 16, 0.64) 0%,
    rgba(8, 14, 28, 0.18) 50%,
    rgba(5, 8, 16, 0.06) 100%
  ) !important;
}

/* サービス一覧 */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 5vw, 56px);
  margin-top: clamp(56px, 8vw, 80px);
  padding: clamp(32px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
}

/* TOP — 求職者 / 企業 ゾーン分け */
.service-zones {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 64px);
}

.service-zone {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px) clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-zone--candidate {
  background: linear-gradient(
    135deg,
    rgba(107, 140, 255, 0.1) 0%,
    rgba(107, 140, 255, 0.03) 55%,
    rgba(5, 8, 16, 0.2) 100%
  );
  border-color: rgba(107, 140, 255, 0.22);
  box-shadow: inset 3px 0 0 rgba(107, 140, 255, 0.75);
}

.service-zone--company {
  background: linear-gradient(
    135deg,
    rgba(220, 185, 110, 0.12) 0%,
    rgba(220, 185, 110, 0.04) 55%,
    rgba(5, 8, 16, 0.2) 100%
  );
  border-color: rgba(220, 185, 110, 0.28);
  box-shadow: inset 3px 0 0 rgba(220, 185, 110, 0.78);
}

.service-zone__header {
  margin-bottom: clamp(24px, 4vw, 32px);
}

.service-zone__tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

.service-zone--candidate .service-zone__tag {
  color: rgba(140, 168, 255, 0.95);
}

.service-zone--company .service-zone__tag {
  color: rgba(235, 205, 140, 0.95);
}

.service-zone__title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 8px;
}

.service-zone__lead {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.service-zone__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
}

.service-zone .path-card {
  min-height: clamp(300px, 36vw, 380px);
  height: 100%;
}

.service-zone .path-card--candidate {
  border-color: rgba(107, 140, 255, 0.25);
}

.service-zone .path-card--company {
  border-color: rgba(220, 185, 110, 0.32);
}

.service-zone .path-card--candidate .path-card__label,
.service-zone .path-card--candidate .path-card__link {
  color: rgba(160, 185, 255, 0.9);
}

.service-zone .path-card--company .path-card__link {
  color: rgba(235, 205, 140, 0.9);
}

.feature-list--zone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 2vw, 16px) 0;
  margin: 0;
}

.feature-grid__heading {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-list__item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-list__item dt {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 6px;
  line-height: 1.4;
}

.feature-list__item dd {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  max-width: 28em;
}

.page--brand .service-list {
  margin-top: 28px;
}

.page--brand .showcase__copy .service-item__desc {
  line-height: 1.75;
}

.label-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding: 8px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  background: var(--glass-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.label-pill::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(107, 140, 255, 0.7);
}

/* ── Buttons / CTA ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    background 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out),
    opacity 0.45s var(--ease-out);
}

.btn::after {
  content: "→";
  font-size: 0.8125rem;
  transition: transform 0.45s var(--ease-out);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:hover::after {
  transform: translateX(2px);
}

.btn--primary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy-950);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn--primary:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.btn--ghost {
  background: var(--glass-dark);
  color: var(--white);
  border-color: var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.text-link--light {
  color: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.text-link--light:hover {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.mt-32 {
  margin-top: 32px;
}

.u-center {
  text-align: center;
}

/* ── Section intro (unified) ── */

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(48px, 7vw, 72px);
}

.section-intro .copy-body {
  margin-top: 16px;
}

.section-intro .eyebrow-minimal {
  margin-bottom: 14px;
}

.section-intro .headline-md {
  margin-top: 0;
}

/* ── Hero cinematic (TOP — typography-first) ── */

.hero--cinematic {
  min-height: 100vh;
  min-height: 100dvh;
  align-items: center;
  padding: calc(var(--header-height) + 48px) 0 clamp(64px, 10vw, 96px);
}

.hero--cinematic .hero__bg {
  z-index: 0;
  background: var(--gradient-brand);
}

.hero--cinematic .hero__bg::before {
  opacity: 0.08;
}

.hero--cinematic .hero__inner {
  z-index: 1;
}

.hero--cinematic .hero__content {
  position: relative;
  isolation: isolate;
  max-width: 720px;
  padding: clamp(36px, 5vw, 56px) clamp(32px, 4.5vw, 52px);
}

.hero--cinematic .hero__content-bg {
  position: absolute;
  z-index: -1;
  inset: -12%;
  overflow: hidden;
  pointer-events: none;
  border-radius: var(--radius-lg);
  -webkit-mask-image: radial-gradient(
    ellipse 88% 92% at 42% 48%,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 88% 92% at 42% 48%,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    transparent 100%
  );
}

.hero--cinematic .hero__content-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  opacity: 0.44;
  filter: saturate(0.94) contrast(1) brightness(1.06);
  transform: scale(1.04);
  transition: opacity 1.2s var(--ease-out), transform 8s var(--ease-out);
}

.hero--cinematic .hero__content-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(5, 8, 16, 0.18);
  pointer-events: none;
}

.hero--cinematic:hover .hero__content-bg img,
.hero--cinematic.is-visible .hero__content-bg img {
  opacity: 0.5;
  transform: scale(1.07);
}

.hero__content {
  max-width: 640px;
  padding-top: 0;
}

.hero__headline {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 32px;
}

.hero__headline .headline-xl {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.hero__trace {
  position: absolute;
  left: -4%;
  bottom: -8%;
  width: 108%;
  height: 52%;
  min-height: 44px;
  overflow: visible;
  pointer-events: none;
  animation: hero-trace-float 3.8s ease-in-out infinite;
}

.hero__trace-path {
  fill: none;
  stroke: url(#hero-trace-grad);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 560;
  stroke-dashoffset: 560;
  animation: hero-trace-sweep 3.8s ease-in-out infinite;
}

.hero__trace-path--arrow {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: hero-trace-arrow 3.8s ease-in-out infinite;
}

@keyframes hero-trace-float {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(3px, -3px);
  }
}

@keyframes hero-trace-sweep {
  0%,
  100% {
    stroke-dashoffset: 560;
    opacity: 0.28;
  }

  42% {
    stroke-dashoffset: 0;
    opacity: 0.62;
  }

  58% {
    stroke-dashoffset: 0;
    opacity: 0.58;
  }
}

@keyframes hero-trace-arrow {
  0%,
  32% {
    stroke-dashoffset: 36;
    opacity: 0;
  }

  48% {
    stroke-dashoffset: 0;
    opacity: 0.65;
  }

  58% {
    stroke-dashoffset: 0;
    opacity: 0.55;
  }

  100% {
    stroke-dashoffset: -12;
    opacity: 0.22;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__trace {
    animation: none;
  }

  .hero__trace-path,
  .hero__trace-path--arrow {
    animation: none;
    stroke-dashoffset: 0;
    opacity: 0.42;
  }
}

.hero__content .copy-body {
  margin-bottom: 8px;
}

/* ── Trust minimal ── */

.trust-minimal {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  padding: 20px 0;
}

.trust-minimal__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

.trust-minimal__inner strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* ── Showcase (photo-first editorial) ── */

.showcase {
  padding: var(--section-space) 0;
}

.showcase--dark {
  background: var(--gradient-brand);
}

.showcase--light {
  background: var(--navy-900);
}

.showcase--compact {
  padding: var(--section-space-sm) 0;
}

.showcase__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: end;
}

.showcase__grid--reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.showcase__grid--reverse .showcase__visual {
  order: 2;
}

.showcase__grid--reverse .showcase__copy {
  order: 1;
}

.showcase__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease-out);
}

.showcase__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--navy-800);
}

.showcase__visual--tall {
  aspect-ratio: 3 / 4;
  max-height: min(72vh, 640px);
}

.showcase__visual--wide {
  aspect-ratio: 16 / 10;
}

.showcase__visual--centered {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.showcase__visual:hover img {
  transform: scale(var(--hover-scale));
}

.showcase__copy {
  padding-bottom: clamp(8px, 2vw, 16px);
  max-width: 560px;
  min-width: 0;
}

.showcase__copy .headline-lg {
  margin: 18px 0 14px;
  font-size: clamp(1.5rem, 3.2vw, 2.125rem);
  line-height: 1.45;
}

/* ── Mosaic (compact duo) ── */

.mosaic {
  margin-top: clamp(64px, 9vw, 104px);
}

.mosaic--duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mosaic--duo .mosaic__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--navy-800);
}

.mosaic--duo .mosaic__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-out);
}

.mosaic--duo .mosaic__item:hover img {
  transform: scale(var(--hover-scale));
}

/* ── Path cards (2 services) ── */

.path-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px);
}

.path-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: clamp(420px, 44vh, 500px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--glass-border);
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out),
    border-color 0.5s var(--ease-out);
}

.path-card:hover {
  transform: translateY(var(--hover-lift));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.18);
}

.path-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy-800);
}

.path-card__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-out);
}

.path-card:hover .path-card__bg img {
  transform: scale(var(--hover-scale));
}

.path-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    0deg,
    rgba(5, 8, 16, 0.62) 0%,
    rgba(5, 8, 16, 0.12) 55%,
    rgba(5, 8, 16, 0.04) 100%
  );
}

.path-card__body {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 4vw, 44px) clamp(32px, 4.5vw, 48px);
  min-width: 0;
  background: linear-gradient(0deg, var(--glass-dark-strong) 0%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.path-card__label {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.path-card__title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.45;
}

.path-card__desc {
  font-size: clamp(0.8125rem, 1.1vw, 0.875rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
  max-width: 28em;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

/* 日本語テキスト組み */
.copy-body,
.path-card__desc,
.path-card__title,
.feature-list__item dd {
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.path-card__link {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.4s var(--ease-out);
}

.path-card:hover .path-card__link {
  color: var(--white);
}

/* ── Company teaser (text) ── */

.company-teaser {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.company-teaser .copy-body {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.company-teaser .eyebrow-minimal {
  color: rgba(255, 255, 255, 0.62);
}

.statement__inner .eyebrow-minimal {
  color: rgba(255, 255, 255, 0.62);
}

.company-teaser .label-pill {
  margin-bottom: 20px;
}

.company-teaser .headline-md {
  margin-bottom: 14px;
}

/* ── Statement band ── */

.statement {
  position: relative;
  padding: var(--section-space) 0;
  overflow: hidden;
}

.statement__bg {
  position: absolute;
  inset: 0;
  background: var(--navy-800);
}

.statement__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s var(--ease-out);
}

.statement__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 8, 16, 0.58) 0%,
    rgba(5, 8, 16, 0.3) 50%,
    rgba(5, 8, 16, 0.5) 100%
  );
}

.statement__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.statement__inner .headline-lg {
  margin: 20px 0 16px;
}

.statement:hover .statement__bg img {
  transform: scale(1.02);
}

/* ── CTA finale ── */

.cta-finale {
  padding: var(--section-space) 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, var(--accent-soft) 0%, transparent 60%),
    var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-finale__box {
  text-align: center;
  padding: clamp(48px, 8vw, 72px) clamp(28px, 5vw, 48px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass-dark);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: inset 0 1px 0 var(--glass-highlight);
  transition:
    border-color 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out);
}

.cta-finale__box:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.cta-finale .headline-md {
  margin: 0 0 12px;
}

.cta-finale .btn-group {
  justify-content: center;
  margin-top: 32px;
}

/* ── Footer dark ── */

.footer--brand {
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer--brand .footer__logo {
  color: #ffffff;
  font-size: 1.1875rem;
  margin-bottom: 10px;
}

.footer--brand .footer__legal {
  font-size: 0.75rem;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  line-height: 1.7;
}

.footer--brand .footer__copy {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.75rem;
}

.footer--brand .footer__nav a {
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 500;
}

.footer--brand .footer__nav a.is-active,
.footer--brand .footer__nav a:hover {
  color: #ffffff;
  opacity: 1;
}

/* ── Header on dark site ── */

.header {
  z-index: 100;
}

.header--scrolled {
  background: rgba(5, 8, 16, 0.82) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

.header--scrolled .logo,
.header--scrolled .nav a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.header--scrolled .logo span {
  color: rgba(255, 255, 255, 0.4) !important;
}

.header--scrolled .nav a.is-active,
.header--scrolled .nav a:hover {
  color: var(--white) !important;
}

/* ── Lighter overlays globally ── */

.hero--cinematic .hero__card,
.path-card,
.showcase__visual-glass,
.cta-finale__box {
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 var(--glass-highlight);
}

.section-band__overlay,
.page-header__overlay {
  background: linear-gradient(
    105deg,
    rgba(5, 8, 16, 0.52) 0%,
    rgba(5, 8, 16, 0.28) 42%,
    rgba(5, 8, 16, 0.1) 100%
  ) !important;
}

.premium-card__visual-overlay,
.dark-banner__overlay {
  background: linear-gradient(
    0deg,
    rgba(5, 8, 16, 0.44) 0%,
    transparent 55%
  ) !important;
}

/* ── Subpages ── */

.page--brand {
  background: var(--navy-950);
}

.page--brand .section--gray {
  background: var(--navy-900);
}

.page--brand .premium-card--glass .premium-card__body {
  background: var(--glass-dark-strong);
  border-top-color: var(--glass-border);
  color: rgba(255, 255, 255, 0.88);
}

.page--brand .premium-card--glass {
  border-color: var(--glass-border);
  background: transparent;
}

.page--brand .premium-card__label {
  color: var(--accent);
}

.page--brand .premium-card__title {
  color: var(--white);
}

.page--brand .premium-card__list li,
.page--brand .body-sm,
.page--brand .service-item__desc,
.page--brand .philosophy-block__body {
  color: rgba(255, 255, 255, 0.55);
}

.page--brand .service-item,
.page--brand .service-item--glass {
  background: var(--glass-dark);
  border-color: var(--glass-border);
  color: var(--white);
  grid-template-columns: auto minmax(0, 1fr);
  padding: clamp(24px, 3.5vw, 32px) clamp(28px, 4vw, 40px);
  gap: clamp(20px, 3vw, 36px);
}

.page--brand .service-item__name {
  white-space: nowrap;
}

.page--brand .service-item__name,
.page--brand .philosophy-block__title,
.page--brand .display-sm,
.page--brand .company-table td {
  color: var(--white);
}

.page--brand .philosophy-block {
  border-color: rgba(255, 255, 255, 0.08);
}

.page--brand .company-table th {
  color: rgba(255, 255, 255, 0.4);
}

.page--brand .company-table tr {
  border-color: rgba(255, 255, 255, 0.08);
}

.page--brand .company-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.page--brand .triple-c__item {
  background: var(--glass-dark);
  border-color: var(--glass-border);
  color: var(--white);
}

.page--brand .value-item {
  border-color: rgba(255, 255, 255, 0.08);
}

.page--brand .value-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.page--brand .service-item:hover,
.page--brand .triple-c__item:hover {
  transform: translateY(var(--hover-lift));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.page--brand .service-item,
.page--brand .triple-c__item {
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out),
    border-color 0.5s var(--ease-out);
}

.page--brand .service-item:hover {
  transform: translateY(var(--hover-lift));
}

.page--brand .page-header--visual .headline-xl,
.page--brand .page-header--visual .copy-body,
.page--brand .page-header--visual .copy-short {
  color: var(--white);
}

.page--brand .page-header--visual .eyebrow-minimal {
  color: rgba(255, 255, 255, 0.65);
}

.page--brand .page-header--visual .copy-body {
  color: rgba(255, 255, 255, 0.88);
}

.page--brand .page-header--visual .headline-xl.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #f4f7ff 50%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page--brand .page-header--visual .headline-xl,
.page--brand .page-header--visual .copy-body,
.page--brand .page-header--visual .eyebrow-minimal {
  text-shadow: 0 2px 28px rgba(5, 8, 16, 0.35);
}

.page-header__media {
  position: absolute;
  inset: 0;
  background: var(--navy-800);
}

.page-header__media.media-tone img,
.page-header__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: var(--photo-filter);
}

.page-header__media.media-tone::after,
.page-header__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 8, 16, 0.16) 0%,
    rgba(5, 8, 16, 0.04) 50%,
    rgba(5, 8, 16, 0.1) 100%
  );
  pointer-events: none;
}

.page--brand .service-item__desc {
  line-height: 1.75;
  max-width: none;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  word-break: normal;
  overflow-wrap: break-word;
  line-break: auto;
}

.page--brand .philosophy-block__label {
  color: var(--accent);
}

/* ── Philosophy page layout ── */

.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 28px);
}

.philosophy-card--glass {
  background: var(--glass-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px) clamp(28px, 4vw, 44px);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 var(--glass-highlight);
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out),
    border-color 0.5s var(--ease-out);
}

.philosophy-card--glass:hover {
  transform: translateY(var(--hover-lift));
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.philosophy-card__label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 14px;
}

.philosophy-card--glass .headline-md {
  margin-bottom: 16px;
  line-height: 1.35;
  word-break: keep-all;
}

.philosophy-card__body {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.9;
  letter-spacing: 0.02em;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

.showcase--dark .section-intro .eyebrow-minimal {
  color: var(--accent);
  letter-spacing: 0.18em;
}

.value-card--glass {
  background: var(--glass-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 32px) clamp(24px, 3vw, 36px);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out),
    border-color 0.5s var(--ease-out);
}

.value-card--glass:hover {
  transform: translateY(var(--hover-lift));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.value-card__num {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 12px;
}

.value-card__title {
  font-size: clamp(1.25rem, 2.5vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
  word-break: keep-all;
  letter-spacing: -0.02em;
}

.value-card__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.9;
  letter-spacing: 0.02em;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.triple-c--statement {
  margin-top: clamp(32px, 5vw, 48px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.triple-c__item--glass {
  background: rgba(8, 12, 24, 0.55);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.triple-c__item--glass .triple-c__word {
  color: var(--white);
}

.triple-c__item--glass .triple-c__meaning {
  color: rgba(255, 255, 255, 0.55);
}

.page--brand .nav.is-open {
  background: rgba(5, 8, 16, 0.96) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.page--brand .nav.is-open a {
  color: rgba(255, 255, 255, 0.75) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.section--sm {
  padding: clamp(56px, 8vw, 80px) 0;
}

@media (max-width: 900px) {
  .showcase__grid,
  .showcase__grid--reverse {
    grid-template-columns: 1fr;
  }

  .showcase__grid--reverse .showcase__visual,
  .showcase__grid--reverse .showcase__copy {
    order: unset;
  }

  .path-cards {
    grid-template-columns: 1fr;
  }

  .mosaic--duo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --mobile-gutter: clamp(18px, 4.5vw, 22px);
    --mobile-gutter-inset: clamp(16px, 3.8vw, 20px);
    --section-space: clamp(56px, 12vw, 80px);
    --section-space-sm: clamp(48px, 10vw, 64px);
    --photo-filter: saturate(0.92) contrast(1) brightness(1.08) hue-rotate(-4deg);
    --photo-overlay: linear-gradient(
      180deg,
      rgba(8, 14, 28, 0.08) 0%,
      rgba(5, 8, 16, 0.2) 100%
    );
  }

  /* 説明文・本文 — 狭い画面で右にはみ出さず折り返す */
  .page--brand .copy-body,
  .page--brand .copy-short,
  .page--brand .path-card__desc,
  .page--brand .path-card__title,
  .page--brand .feature-list__item dt,
  .page--brand .philosophy-card__body,
  .page--brand .value-card__text,
  .page--brand .service-zone__lead,
  .page--brand .page-header--visual .copy-body,
  .page--brand .cta-finale .copy-body,
  .page--brand .statement__inner .copy-body {
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: auto;
    max-width: 100%;
  }

  /* サービス説明文 — PC同様の自然な折り返し（anywhere による不自然な改行を防ぐ） */
  .page--brand .service-item__desc,
  .page--brand .feature-list__item dd {
    word-break: normal;
    overflow-wrap: break-word;
    line-break: auto;
    max-width: 100%;
  }

  .page--brand .headline-lg,
  .page--brand .headline-md {
    overflow-wrap: anywhere;
    word-break: normal;
    max-width: 100%;
  }

  .hero__content,
  .hero__headline,
  .showcase__copy,
  .showcase__grid > *,
  .service-zone,
  .service-zone__inner,
  .service-zone__inner > *,
  .section-intro,
  .statement__inner,
  .company-teaser,
  .cta-finale__box,
  .feature-list--zone,
  .page--brand .service-list,
  .page--brand .service-item,
  .page--brand .service-item--glass {
    min-width: 0;
    max-width: 100%;
  }

  .page--brand .header__inner {
    max-width: none;
    width: 100%;
    padding: 0 var(--mobile-gutter);
  }

  .page-header.page-header--visual {
    min-height: clamp(300px, 52svh, 400px);
    padding-bottom: clamp(40px, 8vw, 56px);
  }

  .page--brand .page-header--visual .headline-xl {
    font-size: clamp(2rem, 8.5vw, 2.75rem);
    line-height: 1.15;
    word-break: normal;
  }

  .page--brand .page-header--visual .copy-body {
    font-size: 0.875rem;
    line-height: 1.85;
    max-width: 100%;
    padding-right: 0;
  }

  .container--wide {
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 28px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: 15px 24px;
    font-size: 0.8125rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    padding: clamp(20px, 4.5vw, 24px) var(--mobile-gutter-inset);
    margin-top: 40px;
    gap: 28px;
  }

  .feature-list__item {
    padding: 16px 0;
  }

  .feature-list__item dd {
    font-size: 0.8125rem;
    line-height: 1.85;
    max-width: 100%;
  }

  .service-zones {
    gap: clamp(32px, 8vw, 44px);
  }

  .showcase {
    padding: var(--section-space) 0;
  }

  .showcase--compact {
    padding: var(--section-space-sm) 0;
  }

  .showcase__grid {
    gap: clamp(24px, 6vw, 32px);
    align-items: stretch;
  }

  .showcase__visual {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .showcase__visual--tall {
    aspect-ratio: 4 / 5;
    max-height: min(72vw, 420px);
    min-height: 260px;
  }

  .showcase__visual img {
    object-fit: cover;
  }

  .showcase__copy {
    max-width: 100%;
    width: 100%;
    padding-bottom: 0;
    padding-top: 4px;
  }

  .showcase__copy .headline-lg {
    font-size: clamp(1.375rem, 5.2vw, 1.75rem);
    line-height: 1.45;
    margin: 0 0 16px;
  }

  .showcase__copy .copy-body {
    font-size: 0.875rem;
    line-height: 1.9;
  }

  .path-cards {
    gap: 20px;
  }

  .service-zone {
    padding: clamp(20px, 5vw, 24px) var(--mobile-gutter-inset);
  }

  .service-zone__header {
    margin-bottom: clamp(20px, 4vw, 28px);
  }

  .service-zone__inner {
    grid-template-columns: 1fr;
    gap: clamp(20px, 5vw, 28px);
  }

  .service-zone .path-card {
    min-height: clamp(280px, 72vw, 340px);
  }

  .feature-list--zone {
    padding: 0;
  }

  .path-card {
    min-height: clamp(320px, 84vw, 380px);
    height: auto;
    border-radius: var(--radius-lg);
  }

  .path-card__body {
    padding: clamp(20px, 4.5vw, 24px) var(--mobile-gutter-inset) clamp(24px, 5vw, 28px);
  }

  .path-card__title {
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .path-card__desc {
    font-size: 0.8125rem;
    line-height: 1.85;
    margin-bottom: 16px;
  }

  .philosophy-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .philosophy-card--glass {
    padding: clamp(22px, 5vw, 28px) var(--mobile-gutter-inset);
  }

  .philosophy-card--glass .headline-md {
    font-size: clamp(1.2rem, 4.5vw, 1.375rem);
    line-height: 1.4;
  }

  .philosophy-card__body {
    font-size: 0.8125rem;
    line-height: 1.85;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .value-card--glass {
    padding: clamp(20px, 4.5vw, 24px) var(--mobile-gutter-inset);
  }

  .value-card__title {
    font-size: clamp(1.125rem, 4vw, 1.25rem);
  }

  .triple-c--statement {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 12px;
  }

  .section-intro {
    margin-bottom: clamp(28px, 7vw, 40px);
    padding: 0 2px;
  }

  .section-intro .copy-body--center {
    font-size: 0.875rem;
    line-height: 1.9;
    max-width: none;
  }

  .headline-md {
    font-size: clamp(1.25rem, 4.8vw, 1.5rem);
    line-height: 1.35;
  }

  .headline-lg {
    line-height: 1.4;
  }

  .hero--cinematic {
    min-height: 100svh;
    padding: calc(var(--header-height) + 28px) 0 44px;
    align-items: center;
  }

  .hero--cinematic .hero__content {
    max-width: none;
    width: 100%;
    padding: 24px 0;
  }

  .hero--cinematic .hero__content-bg {
    inset: -5%;
    border-radius: var(--radius-md);
  }

  .hero--cinematic .hero__content-bg img {
    opacity: 0.48;
    object-position: center 40%;
  }

  .hero--cinematic .hero__content-bg::after {
    background: rgba(5, 8, 16, 0.16);
  }

  .hero__headline {
    display: block;
    margin-bottom: 24px;
    overflow: hidden;
    max-width: 100%;
  }

  .hero__trace {
    left: 0;
    bottom: -5%;
    width: 100%;
    height: 46%;
    min-height: 36px;
    overflow: hidden;
  }

  .hero__trace-path {
    stroke-width: 1.15;
  }

  .hero__content .headline-xl {
    font-size: clamp(1.875rem, 8.5vw, 2.375rem);
    line-height: 1.22;
    letter-spacing: -0.03em;
    margin-bottom: 0;
  }

  .hero__content .copy-body {
    font-size: 0.875rem;
    line-height: 1.95;
    letter-spacing: 0.02em;
    max-width: 100%;
  }

  .statement {
    padding: var(--section-space) 0;
  }

  .statement__inner .headline-lg {
    font-size: clamp(1.375rem, 5.2vw, 1.75rem);
    line-height: 1.4;
  }

  .statement__inner .copy-body {
    font-size: 0.875rem;
    line-height: 1.9;
    max-width: none;
  }

  .company-teaser {
    max-width: 100%;
    padding: 0;
  }

  .company-teaser .headline-md {
    font-size: clamp(1.25rem, 4.8vw, 1.5rem);
  }

  .company-teaser .copy-body {
    font-size: 0.875rem;
    line-height: 1.9;
  }

  .company-visual {
    gap: 28px;
  }

  .company-visual__map {
    min-height: 200px;
    border-radius: var(--radius-lg);
  }

  .company-table th {
    width: 92px;
    padding: 14px 12px 14px 0;
    font-size: 0.75rem;
    vertical-align: top;
  }

  .company-table td {
    padding: 14px 0;
    font-size: 0.875rem;
    line-height: 1.75;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .page--brand .service-item,
  .page--brand .service-item--glass {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: clamp(18px, 4.2vw, 22px) var(--mobile-gutter-inset);
    width: 100%;
  }

  .page--brand .service-list {
    gap: 12px;
    margin-top: clamp(20px, 5vw, 28px);
  }

  .page--brand .service-item__name {
    font-size: 0.9375rem;
    line-height: 1.4;
    white-space: normal;
  }

  .page--brand .service-item__desc {
    font-size: 0.8125rem;
    line-height: 1.75;
    letter-spacing: 0.02em;
  }

  .page--brand .showcase__copy .copy-body {
    margin-bottom: 4px;
  }

  .service-block {
    margin-bottom: 0;
  }

  .cta-finale {
    padding: var(--section-space-sm) 0;
  }

  .cta-finale__box {
    padding: clamp(28px, 6vw, 36px) var(--mobile-gutter-inset);
    border-radius: var(--radius-lg);
  }

  .cta-finale .copy-body {
    font-size: 0.875rem;
    line-height: 1.9;
  }

  .footer__inner {
    gap: 24px;
  }

  .footer__legal {
    word-break: normal;
    overflow-wrap: anywhere;
    line-height: 1.7;
    max-width: 100%;
  }

  .page--brand .nav.is-open a {
    min-height: 48px;
  }
}

@media (max-width: 430px) {
  :root {
    --mobile-gutter: 18px;
    --mobile-gutter-inset: 16px;
  }

  .hero__content .headline-xl {
    font-size: clamp(1.75rem, 7.8vw, 2rem);
  }

  .page--brand .page-header--visual .headline-xl {
    font-size: clamp(1.875rem, 8vw, 2.25rem);
  }

  .path-card {
    min-height: clamp(300px, 80vw, 360px);
  }
}
