:root {
  --ink: #1f2a36;
  --muted: #64717f;
  --line: #dce6ec;
  --surface: #ffffff;
  --surface-soft: #f3f7f9;
  --blue: #126bdc;
  --sky: #58bff2;
  --green: #73d15d;
  --coral: #ff7f6b;
  --yellow: #f4d45b;
  --navy: #0b1d2c;
  --deep: #07131d;
  --shadow: 0 18px 46px rgba(24, 47, 70, 0.14);
  --radius: 8px;
  --max: 1180px;
  --hero-image: url("assets/hero.png");
  --hero-mobile-image: url("assets/hero-mobile.png");
  --philosophy-card-image: url("assets/feature-philosophy.png");
  --mascot-card-image: url("assets/feature-business.png");
  --ai-training-card-image: url("assets/feature-company.png");
  --footer-banner-image: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", Meiryo, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  background: var(--surface);
}

body.is-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.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;
}

body.is-intro-playing {
  overflow: hidden;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  isolation: isolate;
  pointer-events: auto;
  animation: intro-overlay-fade 4.45s ease forwards;
}

.intro-overlay::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at center, rgba(255, 223, 139, 0) 0 8%, rgba(0, 0, 0, 0.98) 22%, #000 100%);
  content: "";
  animation: intro-darkness 4.45s ease forwards;
}

.intro-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: clamp(220px, 32vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 233, 153, 0.98) 0 10%, rgba(88, 191, 242, 0.36) 28%, rgba(255, 255, 255, 0.12) 52%, transparent 72%);
  filter: blur(18px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.25);
  animation: intro-glow 4.45s ease forwards;
}

.intro-lantern {
  position: relative;
  width: clamp(170px, 22vw, 310px);
  transform-origin: center 68%;
  animation: intro-lantern 4.45s ease forwards;
}

.intro-lantern img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.72));
}

.intro-lantern-on {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: intro-lantern-on 4.45s ease forwards;
}

.intro-lantern-off {
  animation: intro-lantern-off 4.45s ease forwards;
}

@keyframes intro-overlay-fade {
  0%,
  76% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes intro-darkness {
  0%,
  34% {
    opacity: 1;
    background:
      radial-gradient(circle at center, rgba(255, 223, 139, 0) 0 4%, rgba(0, 0, 0, 1) 14%, #000 100%);
  }

  58% {
    opacity: 0.92;
    background:
      radial-gradient(circle at center, rgba(255, 223, 139, 0.18) 0 13%, rgba(0, 0, 0, 0.82) 38%, #000 100%);
  }

  82% {
    opacity: 0.55;
    background:
      radial-gradient(circle at center, rgba(255, 247, 213, 0.12) 0 44%, rgba(0, 0, 0, 0.42) 72%, rgba(0, 0, 0, 0.7) 100%);
  }

  100% {
    opacity: 0;
    background:
      radial-gradient(circle at center, rgba(255, 255, 255, 0) 0 100%, rgba(0, 0, 0, 0) 100%);
  }
}

@keyframes intro-glow {
  0%,
  34% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }

  48% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0.9);
  }

  76% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(2.35);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.8);
  }
}

@keyframes intro-lantern {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.92);
  }

  16%,
  74% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-8px) scale(1.06);
  }
}

@keyframes intro-lantern-on {
  0%,
  34% {
    opacity: 0;
  }

  46%,
  86% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes intro-lantern-off {
  0%,
  34% {
    opacity: 1;
  }

  52%,
  100% {
    opacity: 0;
  }
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  padding: 16px clamp(18px, 5vw, 70px) 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
  transition: none;
}

.site-header.is-scrolled {
  top: 0;
  width: 100%;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.brand {
  display: block;
  flex: 0 0 auto;
  width: clamp(280px, 32vw, 450px);
  max-width: calc(100vw - 36px);
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 1px 12px rgba(255, 255, 255, 0.78));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 0.84rem;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.85);
}

.site-nav a {
  display: inline-flex;
  position: relative;
  min-height: 28px;
  align-items: center;
  padding: 0;
  border-radius: 0;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.18s ease;
}

.site-nav a:hover {
  color: var(--blue);
  background: transparent;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav .nav-contact {
  color: var(--navy);
  background: transparent;
}

.site-nav .nav-contact:hover {
  color: var(--blue);
  background: transparent;
}

.mobile-nav-only {
  display: none;
}

.menu-button {
  display: none;
}

.sticky-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 70px;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  padding: 11px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(20, 39, 57, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-110%);
  transition: none;
}

.sticky-header.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.sticky-brand img {
  width: auto;
  height: 44px;
}

.sticky-nav {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  gap: clamp(18px, 2.8vw, 44px);
  overflow: hidden;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.sticky-nav a {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
}

.sticky-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.18s ease;
}

.sticky-nav a:hover {
  color: var(--blue);
}

.sticky-nav a:hover::after {
  transform: scaleX(1);
}

.subpage {
  background: #fff;
}

.sub-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  padding: 11px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(14, 37, 56, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(20, 39, 57, 0.08);
}

.sub-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.sub-brand img {
  width: auto;
  height: 44px;
}

.sub-nav {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  gap: clamp(18px, 2.8vw, 44px);
  overflow: hidden;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.sub-nav a {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
}

.sub-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.18s ease;
}

.sub-nav a:hover,
.sub-nav a[aria-current="page"] {
  color: var(--blue);
}

.sub-nav a:hover::after,
.sub-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.philosophy-main {
  background: #fff;
}

.philosophy-intro {
  position: relative;
  min-height: clamp(320px, 34vw, 430px);
  overflow: hidden;
  padding: clamp(96px, 10vw, 140px) 24px clamp(72px, 8vw, 110px);
  background: #eef6f8;
}

.philosophy-intro::after {
  position: absolute;
  top: clamp(-160px, -11vw, -90px);
  right: clamp(-180px, -9vw, -80px);
  width: clamp(320px, 42vw, 640px);
  aspect-ratio: 1;
  border: 2px solid rgba(138, 164, 181, 0.24);
  border-radius: 50%;
  content: "";
}

.philosophy-intro-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.philosophy-hero-visual {
  position: absolute;
  top: clamp(76px, 8vw, 118px);
  right: clamp(24px, 6vw, 96px);
  z-index: 0;
  width: clamp(300px, 38vw, 560px);
  aspect-ratio: 1;
  padding: clamp(8px, 1.2vw, 14px);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.4)),
    radial-gradient(circle at 52% 50%, rgba(255, 255, 255, 0.95), rgba(238, 246, 248, 0.2) 65%);
  box-shadow: 0 28px 70px rgba(20, 45, 68, 0.18);
  opacity: 0;
  transform: translateY(22px) scale(0.96);
  animation:
    philosophy-hero-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.12s forwards,
    philosophy-hero-float 7s ease-in-out 1.05s infinite;
}

.philosophy-hero-visual::before {
  position: absolute;
  inset: -24px;
  z-index: -1;
  border: 2px solid rgba(138, 164, 181, 0.18);
  border-radius: 50%;
  content: "";
}

.philosophy-hero-visual::after {
  position: absolute;
  right: 8%;
  bottom: 7%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    -26px -24px 0 rgba(88, 191, 242, 0.14),
    22px -34px 0 rgba(255, 127, 107, 0.13),
    -2px 26px 0 rgba(244, 212, 91, 0.18);
  content: "";
}

.philosophy-hero-visual img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 54%;
}

@media (min-width: 981px) {
  .philosophy-intro h1,
  .philosophy-statement,
  .philosophy-lead {
    max-width: 620px;
  }
}

.philosophy-kicker {
  position: relative;
  margin: 0 0 18px;
  padding-top: 12px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.philosophy-kicker::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--coral);
  content: "";
}

.philosophy-intro h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.philosophy-statement {
  max-width: 760px;
  margin: clamp(26px, 4vw, 44px) 0 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 3.4vw, 3rem);
  line-height: 1.28;
  letter-spacing: 0;
}

.philosophy-lead {
  display: grid;
  max-width: 760px;
  gap: 12px;
  margin-top: 24px;
}

.philosophy-lead p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

@media (min-width: 981px) {
  .philosophy-detail .philosophy-statement,
  .philosophy-detail .philosophy-lead {
    max-width: 600px;
  }
}

.philosophy-flow {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(72px, 8vw, 110px) 24px clamp(84px, 9vw, 130px);
}

.philosophy-row {
  display: grid;
  min-height: clamp(360px, 38vw, 470px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
}

.philosophy-row + .philosophy-row {
  margin-top: clamp(42px, 6vw, 88px);
}

.philosophy-copy {
  position: relative;
  min-width: 0;
}

.philosophy-number {
  margin: 0 0 8px;
  color: #d5e0e7;
  font-size: clamp(3.9rem, 7.2vw, 6.6rem);
  font-weight: 900;
  line-height: 0.9;
}

.philosophy-copy h2 {
  max-width: 520px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.32rem, 2.4vw, 2.25rem);
  line-height: 1.45;
  letter-spacing: 0;
}

.philosophy-body {
  display: grid;
  max-width: 560px;
  gap: 12px;
  margin-top: 18px;
}

.philosophy-body p {
  margin: 0;
  color: #526170;
  font-size: 0.95rem;
  font-weight: 600;
}

.philosophy-character-stage {
  --stage-main: #69c9f4;
  --stage-sub: #f4d45b;
  --stage-accent: #ff7f6b;
  --char-size: clamp(230px, 24vw, 340px);

  position: relative;
  display: grid;
  min-width: 0;
  min-height: clamp(320px, 34vw, 450px);
  place-items: center;
  isolation: isolate;
}

.philosophy-character-stage::before,
.philosophy-character-stage::after {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  content: "";
}

.philosophy-character-stage::before {
  width: clamp(250px, 30vw, 390px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.98) 0 20%, transparent 21%),
    linear-gradient(135deg, color-mix(in srgb, var(--stage-main) 82%, #fff), color-mix(in srgb, var(--stage-sub) 76%, #fff));
  box-shadow: 0 26px 54px rgba(20, 45, 68, 0.12);
  transform: scale(1);
}

.philosophy-character-stage::after {
  width: clamp(310px, 38vw, 500px);
  aspect-ratio: 1;
  border: 2px solid color-mix(in srgb, var(--stage-main) 24%, transparent);
  transform: rotate(-14deg);
}

.stage-challenge {
  --stage-main: #7ad7f1;
  --stage-sub: #fff2a5;
  --stage-accent: #ff806c;
}

.stage-collaboration {
  --stage-main: #ffe37c;
  --stage-sub: #95e586;
  --stage-accent: #58bff2;
  --char-size: clamp(230px, 23vw, 330px);
}

.stage-return {
  --stage-main: #ffad73;
  --stage-sub: #8ed6f2;
  --stage-accent: #f4d45b;
  --char-size: clamp(240px, 25vw, 350px);
}

.stage-foundation {
  --stage-main: #67baf2;
  --stage-sub: #ffe08a;
  --stage-accent: #73d15d;
  --char-size: clamp(250px, 26vw, 360px);
}

.character-orbit {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: var(--stage-accent);
  opacity: 0.82;
  box-shadow: 0 18px 34px rgba(20, 45, 68, 0.12);
}

.orbit-a {
  top: 13%;
  left: 9%;
  width: clamp(58px, 6vw, 84px);
  aspect-ratio: 1;
  background: var(--stage-accent);
}

.orbit-b {
  right: 12%;
  bottom: 16%;
  width: clamp(82px, 9vw, 128px);
  aspect-ratio: 1;
  background: var(--stage-sub);
}

.orbit-c {
  top: 20%;
  right: 18%;
  width: clamp(34px, 4vw, 58px);
  aspect-ratio: 1;
  background: var(--stage-main);
}

.philosophy-character {
  width: var(--char-size);
  max-height: min(420px, 96%);
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(20, 45, 68, 0.16));
  transform: translateY(0);
}

.js-reveal-ready .philosophy-row .philosophy-character-stage::before {
  opacity: 0;
  transform: scale(0.78);
  transition:
    opacity 0.58s ease,
    transform 0.78s cubic-bezier(0.18, 0.82, 0.22, 1);
}

.js-reveal-ready .philosophy-row .philosophy-character-stage::after {
  opacity: 0;
  transform: rotate(-14deg) scale(0.84);
  transition:
    opacity 0.62s ease 0.04s,
    transform 0.86s cubic-bezier(0.18, 0.82, 0.22, 1) 0.04s;
}

.js-reveal-ready .philosophy-row .character-orbit,
.js-reveal-ready .philosophy-row .philosophy-character {
  opacity: 0;
  transform: translateY(24px) scale(0.92);
  transition:
    opacity 0.58s ease,
    transform 0.78s cubic-bezier(0.18, 0.82, 0.22, 1);
}

.js-reveal-ready .philosophy-row .orbit-a {
  transition-delay: 0.08s;
}

.js-reveal-ready .philosophy-row .orbit-b {
  transition-delay: 0.16s;
}

.js-reveal-ready .philosophy-row .orbit-c {
  transition-delay: 0.24s;
}

.js-reveal-ready .philosophy-row .philosophy-character {
  transition-delay: 0.18s;
}

.js-reveal-ready .philosophy-row.is-visible .philosophy-character-stage::before {
  opacity: 1;
  transform: scale(1);
}

.js-reveal-ready .philosophy-row.is-visible .philosophy-character-stage::after {
  opacity: 1;
  transform: rotate(-14deg) scale(1);
}

.js-reveal-ready .philosophy-row.is-visible .character-orbit {
  opacity: 0.82;
  transform: translateY(0) scale(1);
}

.js-reveal-ready .philosophy-row.is-visible .philosophy-character {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes philosophy-hero-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes philosophy-hero-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.01);
  }
}

@keyframes subpage-hero-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96) rotate(-1deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

@keyframes subpage-hero-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1.2deg);
  }
}

@keyframes subpage-hero-pulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(1);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

@keyframes hero-scroll-cue-in {
  from {
    opacity: 0;
    transform: translate(-50%, 14px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes hero-scroll-cue-float {
  0% {
    opacity: 0.58;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 0.86;
    transform: translate(-50%, 6px);
  }

  100% {
    opacity: 0.58;
    transform: translate(-50%, 0);
  }
}

.pote-cluster {
  position: relative;
  min-width: 0;
  min-height: clamp(300px, 32vw, 420px);
}

.pote-bubble {
  position: absolute;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 22px 40px rgba(20, 45, 68, 0.12);
}

.pote-bubble img {
  width: 102%;
  height: 102%;
  object-fit: cover;
}

.bubble-blue {
  background: linear-gradient(135deg, #69c9f4, #5c89e8);
}

.bubble-green {
  background: linear-gradient(135deg, #a9ec67, #4fc873);
}

.bubble-coral {
  background: linear-gradient(135deg, #ffb48f, #f36f90);
}

.bubble-yellow {
  background: linear-gradient(135deg, #f8e86b, #f1a64f);
}

.bubble-rose {
  background: linear-gradient(135deg, #ffd3dd, #d98ad7);
}

.bubble-lime {
  background: linear-gradient(135deg, #bdf4a0, #62d68f);
}

.bubble-large {
  width: clamp(210px, 23vw, 300px);
  aspect-ratio: 1;
}

.bubble-medium {
  width: clamp(150px, 16vw, 210px);
  aspect-ratio: 1;
}

.bubble-small {
  width: clamp(104px, 11vw, 150px);
  aspect-ratio: 1;
}

.bubble-wide {
  width: clamp(250px, 31vw, 410px);
  aspect-ratio: 1.35;
  border-radius: 50% / 42%;
}

.bubble-tall {
  width: clamp(180px, 20vw, 260px);
  aspect-ratio: 0.92;
  border-radius: 50% / 46%;
}

.bubble-land {
  width: clamp(280px, 36vw, 490px);
  aspect-ratio: 1.8;
  border-radius: 50% / 42%;
}

.cluster-orbit .bubble-large {
  top: 42px;
  left: 42%;
  transform: translateX(-28%);
}

.cluster-orbit .bubble-green {
  top: 0;
  left: 0;
}

.cluster-orbit .bubble-coral {
  bottom: 40px;
  left: 8%;
}

.cluster-orbit .bubble-yellow {
  right: 6%;
  bottom: 22px;
}

.cluster-focus .bubble-wide {
  top: 44px;
  right: 0;
}

.cluster-focus .bubble-medium {
  bottom: 18px;
  left: 8%;
}

.cluster-pair {
  display: flex;
  min-height: clamp(290px, 28vw, 370px);
  align-items: center;
  gap: clamp(18px, 4vw, 42px);
}

.cluster-pair .pote-bubble {
  position: relative;
}

.cluster-pair .pote-bubble:first-child {
  transform: translateY(18px);
}

.cluster-pair .pote-bubble:last-child {
  transform: translateY(-14px);
}

.cluster-ground .bubble-land {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.philosophy-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  margin-top: clamp(70px, 8vw, 116px);
  padding: 28px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.philosophy-note h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
}

.philosophy-note p {
  margin: 0;
  color: #526170;
  font-size: 0.92rem;
  font-weight: 600;
}

.business-main {
  background: #fff;
}

.business-intro {
  position: relative;
  min-height: clamp(360px, 34vw, 460px);
  overflow: hidden;
  padding: clamp(92px, 9vw, 132px) 24px clamp(68px, 7vw, 96px);
  background: #eef6f8;
}

.business-intro::after {
  position: absolute;
  top: clamp(-180px, -12vw, -100px);
  right: clamp(-160px, -8vw, -70px);
  width: clamp(320px, 40vw, 620px);
  aspect-ratio: 1;
  border: 2px solid rgba(138, 164, 181, 0.24);
  border-radius: 50%;
  content: "";
}

.business-intro-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.business-intro h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 4.2vw, 3.9rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.business-intro p:last-child {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.business-services {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(62px, 7vw, 100px) 24px clamp(84px, 9vw, 130px);
}

.business-service + .business-service {
  margin-top: clamp(74px, 9vw, 128px);
  padding-top: clamp(70px, 8vw, 112px);
  border-top: 1px solid var(--line);
}

.business-overview-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(88, 191, 242, 0.24), transparent 30%),
    linear-gradient(135deg, #17222b, #27323c);
  box-shadow: 0 22px 48px rgba(15, 36, 52, 0.16);
}

.business-overview-card figure,
.business-work-row figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.business-overview-card img {
  width: 100%;
  aspect-ratio: 1.62;
  height: auto;
  object-fit: cover;
}

.business-label {
  margin: 0 0 10px;
  color: #aee5ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.business-overview-card h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  line-height: 1.22;
  letter-spacing: 0;
}

.business-overview-card p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.business-work {
  margin-top: clamp(52px, 6vw, 84px);
}

.business-work h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 clamp(28px, 4vw, 48px);
  color: var(--navy);
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  line-height: 1.3;
}

.business-work h3 span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  color: #7f909d;
  background: #edf4f7;
  font-size: 0.9rem;
}

.business-work-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.business-work-row + .business-work-row {
  margin-top: clamp(48px, 6vw, 78px);
}

.business-work-row.is-reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
}

.business-work-row.is-reverse .business-work-copy {
  order: 2;
}

.business-work-row.is-reverse figure {
  order: 1;
}

.business-step {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.business-work-copy {
  min-width: 0;
}

.business-work-copy h4 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.45;
  letter-spacing: 0;
}

.business-work-copy p:last-child {
  margin: 16px 0 0;
  color: #526170;
  font-size: 0.94rem;
  font-weight: 600;
}

.business-work-row img {
  width: 100%;
  aspect-ratio: 1.7;
  height: auto;
  object-fit: cover;
}

.company-main {
  background: #fff;
}

.company-intro {
  position: relative;
  min-height: clamp(360px, 34vw, 460px);
  overflow: hidden;
  padding: clamp(92px, 9vw, 132px) 24px clamp(68px, 7vw, 96px);
  background: #eef6f8;
}

.company-intro::after {
  position: absolute;
  top: clamp(-180px, -12vw, -100px);
  right: clamp(-160px, -8vw, -70px);
  width: clamp(320px, 40vw, 620px);
  aspect-ratio: 1;
  border: 2px solid rgba(138, 164, 181, 0.24);
  border-radius: 50%;
  content: "";
}

.company-intro-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.company-intro h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 4.2vw, 3.9rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.company-profile {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(62px, 7vw, 100px) 24px clamp(84px, 9vw, 130px);
}

.company-profile-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.company-profile-heading span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  color: #7f909d;
  background: #edf4f7;
  font-size: 0.9rem;
}

.company-profile-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.company-profile-list {
  margin: 0;
}

.company-profile-list > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 64px);
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.company-profile-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.company-profile-list dt {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
}

.company-profile-list dd {
  margin: 0;
  color: #3e4c58;
  font-weight: 700;
}

.company-profile-list dd span {
  display: block;
}

.map-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 22px;
  border: 1px solid rgba(12, 33, 52, 0.22);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.map-button::after {
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.map-button:hover {
  color: var(--blue);
  border-color: rgba(18, 107, 220, 0.4);
  box-shadow: 0 10px 24px rgba(18, 107, 220, 0.12);
  transform: translateY(-1px);
}

.company-map {
  overflow: hidden;
  width: min(100%, 860px);
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #e6eef2;
}

.company-map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 2.9;
  min-height: 280px;
  border: 0;
}

.news-main,
.recruit-main,
.contact-page-main {
  background: #fff;
}

.news-intro,
.recruit-intro,
.contact-intro {
  position: relative;
  min-height: clamp(360px, 34vw, 460px);
  overflow: hidden;
  padding: clamp(92px, 9vw, 132px) 24px clamp(68px, 7vw, 96px);
  background: #eef6f8;
}

.news-intro::after,
.recruit-intro::after,
.contact-intro::after {
  position: absolute;
  top: clamp(-180px, -12vw, -100px);
  right: clamp(-160px, -8vw, -70px);
  width: clamp(320px, 40vw, 620px);
  aspect-ratio: 1;
  border: 2px solid rgba(138, 164, 181, 0.24);
  border-radius: 50%;
  content: "";
}

.news-intro-inner,
.recruit-intro-inner,
.contact-intro-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.news-intro h1,
.recruit-intro h1,
.contact-intro h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 4.2vw, 3.9rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.news-intro p:last-child,
.recruit-intro p:last-child,
.contact-intro p:last-child {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.subpage-hero-visual {
  position: absolute;
  z-index: 0;
  top: clamp(42px, 5vw, 72px);
  right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  width: clamp(240px, 28vw, 360px);
  aspect-ratio: 1.08;
  padding: clamp(7px, 1vw, 12px);
  border-radius: 42% 58% 48% 52% / 46% 42% 58% 54%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 55% 48%, rgba(255, 255, 255, 0.94), rgba(236, 247, 251, 0.28) 66%);
  box-shadow: 0 28px 70px rgba(20, 45, 68, 0.17);
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(0.96) rotate(-1deg);
  animation:
    subpage-hero-in 0.88s cubic-bezier(0.2, 0.8, 0.2, 1) 0.12s forwards,
    subpage-hero-float 7.2s ease-in-out 1.08s infinite;
}

.subpage-hero-visual::before {
  position: absolute;
  inset: -18px;
  z-index: -1;
  border: 2px solid rgba(138, 164, 181, 0.18);
  border-radius: inherit;
  content: "";
  animation: subpage-hero-pulse 4.6s ease-in-out 1s infinite;
}

.subpage-hero-visual::after {
  position: absolute;
  right: 8%;
  bottom: 5%;
  width: 17%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    -24px -22px 0 rgba(88, 191, 242, 0.15),
    22px -30px 0 rgba(255, 127, 107, 0.13),
    -2px 24px 0 rgba(244, 212, 91, 0.18);
  content: "";
}

.subpage-hero-visual img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.subpage-hero-business img {
  object-position: center;
}

.subpage-hero-company {
  width: clamp(255px, 30vw, 390px);
  aspect-ratio: 1.18;
  border-radius: 52% 48% 42% 58% / 48% 54% 46% 52%;
}

.subpage-hero-company img {
  object-position: center 55%;
}

.subpage-hero-news {
  width: clamp(230px, 25vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
}

.subpage-hero-news img {
  object-position: center 48%;
}

.subpage-hero-recruit {
  width: clamp(240px, 27vw, 350px);
  aspect-ratio: 0.96;
  border-radius: 58% 42% 54% 46% / 50% 44% 56% 50%;
}

.subpage-hero-recruit img {
  object-position: center 46%;
}

.subpage-hero-contact {
  width: clamp(240px, 27vw, 350px);
  aspect-ratio: 1.02;
  border-radius: 48% 52% 58% 42% / 54% 48% 52% 46%;
}

.subpage-hero-contact img {
  object-position: center 52%;
}

@media (min-width: 981px) {
  .business-intro h1,
  .business-intro p:last-child,
  .company-intro h1,
  .news-intro h1,
  .news-intro p:last-child,
  .recruit-intro h1,
  .recruit-intro p:last-child,
  .contact-intro h1,
  .contact-intro p:last-child {
    max-width: 610px;
  }
}

.news-archive,
.recruit-content,
.contact-page-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(62px, 7vw, 100px) 24px clamp(84px, 9vw, 130px);
}

.archive-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.archive-heading-sub {
  margin-top: clamp(54px, 7vw, 86px);
}

.archive-heading span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: #7f909d;
  background: #edf4f7;
  font-size: 0.9rem;
}

.archive-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.3;
}

.archive-featured,
.archive-list {
  border-top: 1px solid var(--line);
}

.archive-featured a,
.archive-list a {
  position: relative;
  display: grid;
  grid-template-columns: 120px 130px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 18px 54px 18px 0;
  border-bottom: 1px solid var(--line);
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.archive-featured a {
  padding-left: 20px;
  border-bottom-color: rgba(197, 211, 219, 0.85);
  background: #f0f6f8;
}

.archive-featured a:first-child {
  border-radius: var(--radius) var(--radius) 0 0;
}

.archive-featured a:last-child {
  border-radius: 0 0 var(--radius) var(--radius);
}

.archive-featured a::after,
.archive-list a::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.archive-featured a:hover,
.archive-list a:hover {
  color: var(--blue);
  background: rgba(18, 107, 220, 0.04);
}

.archive-featured time,
.archive-list time {
  color: #60707e;
  font-weight: 800;
}

.archive-featured span,
.archive-list span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border: 1px solid rgba(12, 33, 52, 0.2);
  border-radius: 999px;
  color: #27323c;
  font-size: 0.78rem;
  font-weight: 900;
}

.archive-list span {
  border: 0;
  padding: 0;
  color: #60707e;
}

.archive-list span::before {
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: #c9d5dd;
  content: "";
}

.archive-featured strong,
.archive-list strong {
  color: var(--navy);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.45;
}

.news-admin-main {
  background: #fff;
}

.news-admin-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 9vw, 132px) 24px clamp(68px, 7vw, 96px);
  background: #eef6f8;
}

.news-admin-hero::after {
  position: absolute;
  top: clamp(-180px, -12vw, -100px);
  right: clamp(-160px, -8vw, -70px);
  width: clamp(320px, 40vw, 620px);
  aspect-ratio: 1;
  border: 2px solid rgba(138, 164, 181, 0.24);
  border-radius: 50%;
  content: "";
}

.news-admin-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.news-admin-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 4.2vw, 3.9rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.news-admin-hero p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.news-editor {
  display: grid;
  width: min(100%, var(--max));
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
  margin: 0 auto;
  padding: clamp(62px, 7vw, 100px) 24px clamp(84px, 9vw, 130px);
}

.news-admin-login {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(62px, 7vw, 100px) 24px clamp(84px, 9vw, 130px);
}

.news-editor[hidden],
.news-admin-login[hidden] {
  display: none;
}

.news-admin-login-card {
  display: grid;
  width: min(100%, 520px);
  gap: 18px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 16%, rgba(88, 191, 242, 0.14), transparent 32%),
    #fff;
  box-shadow: 0 18px 40px rgba(24, 47, 70, 0.08);
}

.news-admin-login-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.news-admin-login-card p {
  margin: 0;
  color: #526170;
  font-weight: 700;
}

.news-admin-login-card label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.news-admin-login-card input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  background: #f9fcfd;
}

.news-admin-login-card input:focus {
  border-color: rgba(18, 107, 220, 0.55);
  outline: 3px solid rgba(18, 107, 220, 0.12);
  background: #fff;
}

.news-admin-login-card .button {
  width: fit-content;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.news-admin-login-message {
  min-height: 1.8em;
  color: var(--coral) !important;
  font-weight: 900;
}

.news-editor-form,
.news-editor-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 40px rgba(24, 47, 70, 0.08);
}

.news-editor-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: clamp(24px, 4vw, 40px);
}

.news-editor-form label,
.news-editor-output label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.news-editor-wide,
.news-editor-actions {
  grid-column: 1 / -1;
}

.news-editor-form input,
.news-editor-form select,
.news-editor-form textarea,
.news-editor-output textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  background: #f9fcfd;
}

.news-editor-form textarea,
.news-editor-output textarea {
  resize: vertical;
}

.news-editor-form input:focus,
.news-editor-form select:focus,
.news-editor-form textarea:focus {
  border-color: rgba(18, 107, 220, 0.55);
  outline: 3px solid rgba(18, 107, 220, 0.12);
  background: #fff;
}

.news-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.news-editor-actions .button {
  margin-top: 0;
  border: 1px solid var(--line);
  cursor: pointer;
}

.news-editor-actions .button:not(.button-primary) {
  color: var(--navy);
  background: #f5f9fb;
}

.news-editor-preview {
  position: sticky;
  top: 92px;
  padding: clamp(24px, 4vw, 34px);
}

.news-preview-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(238, 246, 248, 0.78), rgba(255, 255, 255, 0.95)),
    #fff;
}

.news-preview-card time {
  color: #60707e;
  font-weight: 800;
}

.news-preview-card span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 999px;
  color: #27323c;
  background: #edf4f7;
  font-size: 0.78rem;
  font-weight: 900;
}

.news-preview-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.4;
}

.news-preview-card p {
  margin: 0;
  color: #526170;
  font-weight: 600;
}

.news-editor-output {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.news-editor-output textarea {
  min-height: 190px;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.65;
}

.news-editor-status {
  min-height: 1.8em;
  margin: 18px 0 0;
  color: var(--blue);
  font-weight: 900;
}

.recruit-lead-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 280px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  overflow: hidden;
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 88% 22%, rgba(88, 191, 242, 0.22), transparent 32%),
    radial-gradient(circle at 8% 88%, rgba(115, 209, 93, 0.14), transparent 28%),
    var(--deep);
}

.recruit-lead-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 3.2vw, 2.7rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.recruit-lead-card p:last-child {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.recruit-lead-card img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.32));
}

.recruit-heading {
  margin-top: clamp(56px, 7vw, 90px);
}

.recruit-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.recruit-values article,
.opening-empty,
.contact-methods article,
.contact-form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 40px rgba(24, 47, 70, 0.08);
}

.recruit-values article {
  padding: 26px;
}

.recruit-values article > p:first-child {
  margin: 0 0 16px;
  color: #d5e0e7;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.recruit-values h3,
.opening-empty h3,
.contact-methods h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.08rem, 1.9vw, 1.45rem);
  line-height: 1.45;
}

.recruit-values article > p:last-child,
.opening-empty p,
.contact-methods p {
  margin: 14px 0 0;
  color: #526170;
  font-weight: 600;
}

.recruit-openings {
  margin-top: clamp(56px, 7vw, 90px);
}

.opening-empty {
  padding: clamp(28px, 4vw, 42px);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-methods article {
  padding: 26px;
}

.contact-methods span {
  display: block;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.contact-form-panel {
  margin-top: clamp(46px, 6vw, 76px);
  padding: clamp(26px, 4vw, 42px);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.contact-form-wide,
.contact-form-actions {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  background: #f9fcfd;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(18, 107, 220, 0.55);
  outline: 3px solid rgba(18, 107, 220, 0.12);
  background: #fff;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contact-form-actions p {
  max-width: 620px;
  margin: 0;
  color: #526170;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form-actions .button {
  margin-top: 0;
  border: 0;
  cursor: pointer;
}

.contact-success {
  display: grid;
  gap: 14px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(18, 107, 220, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 18%, rgba(88, 191, 242, 0.16), transparent 32%),
    #f8fcff;
}

.contact-success[hidden] {
  display: none;
}

.contact-success h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1.28;
}

.contact-success p {
  max-width: 720px;
  margin: 0;
  color: #526170;
  font-weight: 700;
}

.contact-success .button {
  width: fit-content;
}

.hero {
  position: relative;
  min-height: clamp(620px, 74vw, 820px);
  overflow: hidden;
  background: #edf7fc;
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  background-image: var(--hero-image);
  background-position: center top;
  background-size: cover;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 72%, #fff 100%);
}

.hero-scroll-cue {
  position: absolute;
  z-index: 2;
  top: min(calc(100svh - 62px), calc(100% - 54px));
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: rgba(11, 29, 44, 0.52);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(8, 21, 34, 0.08);
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
  animation:
    hero-scroll-cue-in 0.75s ease 0.45s both,
    hero-scroll-cue-float 2.2s ease-in-out 1.25s infinite;
}

.hero-scroll-cue::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(11, 29, 44, 0.12);
  border-radius: inherit;
  content: "";
}

.hero-scroll-cue i {
  display: block;
  width: 15px;
  height: 15px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  border-radius: 1px;
  opacity: 0.82;
  transform: translateY(-3px) rotate(45deg);
}

.hero-scroll-cue i::after {
  display: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(64px, 8vw, 110px) 24px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

section[id],
article[id] {
  scroll-margin-top: 92px;
}

.section h2,
.news-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.65rem, 3.2vw, 2.85rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.feature-copy p,
.recruit-panel p,
.contact-inner p,
.footer-banner p,
.footer-banner strong {
  margin: 0;
}

.feature-cards {
  padding-top: clamp(64px, 8vw, 110px);
  background:
    linear-gradient(180deg, #fff 0%, #f6fafc 100%);
}

.card-stack {
  display: grid;
  gap: 28px;
}

.feature-card {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 350px;
  grid-template-columns: minmax(310px, 0.9fr) minmax(360px, 1.1fr);
  overflow: hidden;
  border: 1px solid rgba(37, 62, 84, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition:
    border-color 0.34s ease,
    box-shadow 0.34s ease,
    transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card::before {
  position: absolute;
  inset: -46% -34%;
  z-index: 4;
  background:
    linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.68) 48%, transparent 58%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-48%);
  transition:
    opacity 0.24s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(34px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.84);
  transition: background 0.34s ease;
}

.feature-copy::before {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  bottom: clamp(28px, 4vw, 52px);
  left: 0;
  width: 5px;
  border-radius: 999px;
  content: "";
  transform-origin: center;
  transition:
    box-shadow 0.34s ease,
    transform 0.34s ease;
}

.accent-coral::before {
  background: var(--coral);
}

.accent-green::before {
  background: var(--green);
}

.accent-sky::before {
  background: var(--sky);
}

.feature-copy h2 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.feature-copy p:not(.section-kicker) {
  max-width: 360px;
  color: #526172;
  font-size: 1rem;
  font-weight: 700;
}

.circle-link {
  --circle-shift-y: -50%;

  position: absolute;
  top: 50%;
  right: clamp(18px, 3vw, 34px);
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(31, 42, 54, 0.08);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(31, 42, 54, 0.09);
  transform: translateY(var(--circle-shift-y));
  transition:
    background 0.26s ease,
    border-color 0.26s ease,
    box-shadow 0.26s ease,
    color 0.26s ease,
    transform 0.26s ease;
}

.circle-link::before {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: translateX(-2px) rotate(45deg);
  transition: transform 0.26s ease;
}

.circle-link:focus-visible {
  outline: 3px solid rgba(18, 107, 220, 0.34);
  outline-offset: 4px;
}

.feature-visual {
  position: relative;
  z-index: 1;
  min-height: 350px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.2)),
    #edf5f8;
  transform: scale(1);
  transform-origin: center;
  transition:
    filter 0.44s ease,
    transform 0.44s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-visual::before,
.feature-visual::after {
  position: absolute;
  content: "";
  opacity: 0;
  transition:
    box-shadow 0.44s ease,
    opacity 0.44s ease,
    transform 0.44s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card:is(:hover, :focus-within) {
  border-color: rgba(18, 107, 220, 0.26);
  box-shadow: 0 28px 62px rgba(19, 44, 68, 0.2);
  transform: translateY(-8px);
}

.feature-card:is(:hover, :focus-within)::before {
  opacity: 1;
  transform: translateX(48%);
}

.feature-card:is(:hover, :focus-within) .feature-copy {
  background: rgba(255, 255, 255, 0.96);
}

.feature-card:is(:hover, :focus-within) .feature-copy::before {
  box-shadow: 0 0 22px rgba(18, 107, 220, 0.22);
  transform: scaleY(1.12);
}

.feature-card:is(:hover, :focus-within) .circle-link {
  border-color: transparent;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 14px 34px rgba(7, 19, 29, 0.24);
  transform: translateY(var(--circle-shift-y)) scale(1.08);
}

.feature-card:is(:hover, :focus-within) .circle-link::before {
  transform: translateX(1px) rotate(45deg);
}

.feature-card:is(:hover, :focus-within) .feature-visual {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.035);
}

.pote-walk-runner {
  position: absolute;
  z-index: 3;
  bottom: clamp(12px, 7%, 30px);
  left: calc(100% + 32px);
  width: clamp(118px, 15vw, 180px);
  aspect-ratio: 1;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 16px 20px rgba(15, 31, 45, 0.24));
  will-change: left, opacity;
}

.pote-walk-runner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
}

.pote-walk-runner img:nth-child(2) {
  animation-delay: 0.072s;
}

.pote-walk-runner img:nth-child(3) {
  animation-delay: 0.144s;
}

.pote-walk-runner img:nth-child(4) {
  animation-delay: 0.216s;
}

.pote-walk-runner img:nth-child(5) {
  animation-delay: 0.288s;
}

.pote-walk-runner img:nth-child(6) {
  animation-delay: 0.36s;
}

.pote-walk-runner img:nth-child(7) {
  animation-delay: 0.432s;
}

.pote-walk-runner img:nth-child(8) {
  animation-delay: 0.504s;
}

.pote-walk-runner img:nth-child(9) {
  animation-delay: 0.576s;
}

.pote-walk-runner img:nth-child(10) {
  animation-delay: 0.648s;
}

.feature-visual:hover .pote-walk-runner,
.feature-card:focus-within .pote-walk-runner {
  animation: pote-walk-across 2.8s linear infinite;
}

.feature-visual:hover .pote-walk-runner img,
.feature-card:focus-within .pote-walk-runner img {
  animation-name: pote-walk-frame;
  animation-duration: 0.72s;
  animation-timing-function: steps(1, end);
  animation-iteration-count: infinite;
}

@keyframes pote-walk-across {
  0% {
    left: calc(100% + 32px);
    opacity: 0;
  }

  8%,
  90% {
    opacity: 1;
  }

  100% {
    left: calc(-36% - 180px);
    opacity: 0;
  }
}

@keyframes pote-walk-frame {
  0%,
  9.9% {
    opacity: 1;
  }

  10%,
  100% {
    opacity: 0;
  }
}

.visual-philosophy {
  background:
    var(--philosophy-card-image),
    radial-gradient(circle at 50% 54%, rgba(88, 191, 242, 0.28) 0 15%, transparent 16%),
    radial-gradient(circle at 50% 52%, rgba(244, 212, 91, 0.2) 0 32%, transparent 33%),
    linear-gradient(135deg, #fff, #edf4f7 58%, #e8f4fa);
  background-position: center;
  background-size: cover;
}

.visual-philosophy::before {
  width: 190px;
  height: 250px;
  top: 50%;
  left: 50%;
  border: 18px solid #161d24;
  border-radius: 52% 52% 45% 45%;
  box-shadow:
    inset 0 0 0 12px rgba(255, 255, 255, 0.9),
    0 28px 60px rgba(20, 33, 48, 0.16);
  transform: translate(-50%, -45%);
}

.visual-philosophy::after {
  width: 152px;
  height: 152px;
  top: 50%;
  left: 50%;
  border-right: 12px solid #111820;
  border-bottom: 12px solid #111820;
  border-radius: 20px;
  transform: translate(-50%, -38%) rotate(45deg);
}

.feature-card:is(:hover, :focus-within) .visual-philosophy::before {
  box-shadow:
    inset 0 0 0 12px rgba(255, 255, 255, 0.95),
    0 34px 72px rgba(20, 33, 48, 0.2);
  transform: translate(-50%, -47%) scale(1.035);
}

.feature-card:is(:hover, :focus-within) .visual-philosophy::after {
  transform: translate(-50%, -40%) rotate(45deg) scale(1.045);
}

.visual-mascot {
  background:
    var(--mascot-card-image),
    radial-gradient(circle at 58% 45%, rgba(244, 212, 91, 0.18), transparent 30%),
    linear-gradient(135deg, #fff, #f5fafb 56%, #ebf8f1);
  background-position: center;
  background-size: cover;
}

.visual-mascot::before {
  width: 220px;
  height: 190px;
  right: 18%;
  bottom: 14%;
  border: 8px solid #1b242d;
  border-radius: 46% 46% 40% 40%;
  background: #fff3cd;
  box-shadow:
    -70px 26px 0 -18px #fff3cd,
    70px 26px 0 -18px #fff3cd,
    0 22px 0 -4px #73d7ff,
    0 30px 44px rgba(30, 48, 64, 0.16);
}

.visual-mascot::after {
  width: 98px;
  height: 48px;
  right: calc(18% + 61px);
  bottom: calc(14% + 164px);
  border: 8px solid #1b242d;
  border-radius: 999px 999px 10px 10px;
  background: #3b424a;
}

.feature-card:is(:hover, :focus-within) .visual-mascot::before {
  box-shadow:
    -70px 26px 0 -18px #fff3cd,
    70px 26px 0 -18px #fff3cd,
    0 22px 0 -4px #73d7ff,
    0 34px 58px rgba(30, 48, 64, 0.22);
  transform: translateY(-9px) rotate(-1.5deg);
}

.feature-card:is(:hover, :focus-within) .visual-mascot::after {
  transform: translateY(-9px) rotate(-1.5deg);
}

.visual-ai {
  background:
    var(--ai-training-card-image),
    linear-gradient(16deg, rgba(255, 255, 255, 0) 0 46%, rgba(18, 107, 220, 0.95) 47% 58%, transparent 59%),
    radial-gradient(circle at 30% 68%, rgba(255, 255, 255, 0.84) 0 11%, transparent 12%),
    radial-gradient(circle at 72% 50%, rgba(255, 255, 255, 0.85) 0 10%, transparent 11%),
    linear-gradient(135deg, #083a91, #0b6ed8 42%, #f7fbff 43% 100%);
  background-position: center;
  background-size: cover;
}

.visual-ai::before {
  inset: 44px 40px auto;
  height: 84px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.86)),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(8, 58, 145, 0.12) 25px 26px);
  box-shadow: 0 20px 34px rgba(5, 39, 96, 0.22);
}

.visual-ai::after {
  right: 44px;
  bottom: 42px;
  width: 220px;
  height: 76px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow:
    0 0 0 6px rgba(18, 107, 220, 0.16),
    0 20px 40px rgba(5, 39, 96, 0.16);
}

.feature-card:is(:hover, :focus-within) .visual-ai::before {
  box-shadow: 0 24px 44px rgba(5, 39, 96, 0.26);
  transform: translateY(-7px);
}

.feature-card:is(:hover, :focus-within) .visual-ai::after {
  box-shadow:
    0 0 0 6px rgba(18, 107, 220, 0.2),
    0 26px 48px rgba(5, 39, 96, 0.2);
  transform: translateY(-9px);
}

.section-heading {
  margin-bottom: 28px;
}

.topics {
  background: #fff;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-topic-grid {
  margin-bottom: 34px;
}

.topic-card {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff, #f8fbfc);
  box-shadow: 0 12px 32px rgba(24, 47, 70, 0.08);
}

.topic-card p {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.topic-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.5;
}

.news {
  background: #fff;
}

.news-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.news-icon {
  position: relative;
  display: inline-grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
  background: #eef4f7;
}

.news-icon::before,
.news-icon::after {
  content: "";
}

.news-icon::before {
  width: 26px;
  height: 26px;
  border: 3px solid #8795a1;
  border-radius: 50%;
}

.news-icon::after {
  position: absolute;
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: #8795a1;
}

.notice-list,
.news-list {
  display: grid;
}

.notice-list {
  overflow: hidden;
  margin-bottom: 34px;
  border: 1px solid #dce6eb;
  border-radius: var(--radius);
  background: #ecf3f6;
}

.notice-list a,
.news-list a {
  position: relative;
  display: grid;
  min-height: 72px;
  align-items: center;
  color: var(--ink);
  transition:
    color 0.16s ease,
    background 0.16s ease;
}

.notice-list a {
  grid-template-columns: 110px 140px minmax(0, 1fr);
  gap: 20px;
  padding: 14px 58px 14px 24px;
}

.notice-list a + a {
  border-top: 1px solid #d5e2e8;
}

.news-list a {
  grid-template-columns: 110px 150px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 58px 22px 24px;
  border-top: 1px solid #d8e4ea;
}

.news-list a:last-child {
  border-bottom: 1px solid #d8e4ea;
}

.notice-list a::after,
.news-list a::after {
  position: absolute;
  right: 24px;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.notice-list a:hover,
.news-list a:hover {
  color: var(--blue);
  background: #f7fbfd;
}

.notice-list time,
.news-list time {
  color: #5c6c79;
  font-weight: 800;
}

.notice-list span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid #8795a1;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.news-list span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5d6f7e;
  font-size: 0.82rem;
  font-weight: 800;
}

.news-list span::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c7d3da;
  content: "";
}

.notice-list strong,
.news-list strong {
  font-size: 1rem;
  line-height: 1.6;
}

.company {
  background: linear-gradient(180deg, #f7fbfc 0%, #fff 100%);
}

.company-layout,
.recruit-panel {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
}

.company-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-list div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 26px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.company-list dt {
  color: var(--muted);
  font-weight: 900;
}

.company-list dd {
  margin: 0;
  font-weight: 800;
}

.recruit {
  color: #fff;
  background:
    radial-gradient(circle at 14% 20%, rgba(88, 191, 242, 0.18), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(115, 209, 93, 0.12), transparent 28%),
    var(--deep);
}

.recruit .section-kicker,
.recruit h2 {
  color: #fff;
}

.recruit-panel {
  align-items: center;
}

.recruit-panel p {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.contact {
  padding: clamp(72px, 9vw, 118px) 24px;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(18, 107, 220, 0.08), rgba(115, 209, 93, 0.1)),
    #fff;
}

.contact-inner {
  max-width: 760px;
}

.contact h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  line-height: 1.12;
}

.contact p {
  margin-top: 18px;
  color: #435466;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition:
    box-shadow 0.18s ease,
    transform 0.18s ease,
    background 0.18s ease;
}

.button::after {
  width: 9px;
  height: 9px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.button-primary {
  color: #fff;
  background: var(--blue);
}

.button:hover {
  box-shadow: 0 14px 28px rgba(18, 107, 220, 0.2);
  transform: translateY(-2px);
}

.site-footer {
  padding: clamp(56px, 7vw, 86px) 24px 30px;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 78% 82%, rgba(88, 191, 242, 0.18), transparent 28%),
    radial-gradient(circle at 24% 18%, rgba(115, 209, 93, 0.1), transparent 24%),
    var(--deep);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.footer-brand {
  display: block;
  width: min(300px, 100%);
  padding: 0;
  border-radius: var(--radius);
  background: transparent;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.footer-nav h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
}

.footer-nav a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-banner {
  position: relative;
  display: grid;
  min-height: 250px;
  align-items: end;
  gap: 22px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    var(--footer-banner-image),
    linear-gradient(100deg, rgba(5, 17, 29, 0.92) 0%, rgba(6, 31, 52, 0.74) 54%, rgba(6, 31, 52, 0.18) 100%),
    radial-gradient(circle at 76% 30%, rgba(88, 191, 242, 0.44), transparent 24%),
    linear-gradient(135deg, #11263b, #06131e);
  background-position: center;
  background-size: cover;
}

.footer-banner::before {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
}

.footer-character {
  position: absolute;
  right: clamp(20px, 6vw, 84px);
  bottom: 10px;
  z-index: 1;
  width: min(286px, 30vw);
  max-height: calc(100% - 24px);
  object-fit: contain;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.footer-banner > div {
  position: relative;
  z-index: 2;
  max-width: min(640px, 55%);
}

.footer-banner small {
  position: relative;
  z-index: 2;
}

.footer-banner p {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.footer-banner strong {
  display: block;
  margin-top: 22px;
  color: #fff;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
}

.footer-banner small {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
}

@media (max-width: 1120px) {
  body.is-menu-open::before {
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(7, 12, 14, 0.62);
    backdrop-filter: blur(5px);
    content: "";
  }

  body.is-menu-open .site-header,
  body.is-menu-open .sticky-header {
    z-index: 95;
  }

  body.is-menu-open .brand {
    opacity: 0;
    pointer-events: none;
  }

  body.is-menu-open .sticky-brand {
    opacity: 0;
    pointer-events: none;
  }

  .site-header {
    width: 100%;
    min-height: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
  }

  .brand {
    width: min(64vw, 440px);
    max-width: calc(100% - 64px);
  }

  .sticky-header {
    min-height: 64px;
    gap: 16px;
    padding: 9px 18px;
  }

  .sticky-brand img {
    height: 38px;
  }

  .sticky-nav {
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .sticky-nav::-webkit-scrollbar {
    display: none;
  }

  .sub-header {
    min-height: 64px;
    gap: 16px;
    padding: 9px 18px;
  }

  .sub-brand img {
    height: 38px;
  }

  .sub-nav {
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .sub-nav::-webkit-scrollbar {
    display: none;
  }

  .philosophy-row {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
    gap: 42px;
  }

  .philosophy-hero-visual {
    width: clamp(270px, 34vw, 410px);
    opacity: 0.86;
  }

  .subpage-hero-visual {
    right: 24px;
    width: clamp(235px, 30vw, 350px);
  }

  .philosophy-character-stage {
    --char-size: clamp(220px, 25vw, 310px);

    min-height: 330px;
  }

  .business-overview-card,
  .business-work-row,
  .business-work-row.is-reverse {
    grid-template-columns: 1fr;
  }

  .business-work-row.is-reverse .business-work-copy,
  .business-work-row.is-reverse figure {
    order: initial;
  }

  .recruit-values,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: var(--navy);
    background: rgba(18, 107, 220, 0.08);
    cursor: pointer;
  }

  .sticky-menu-button {
    display: none;
  }

  .menu-button span:not(.visually-hidden) {
    display: block;
    width: 20px;
    height: 2px;
    grid-area: 1 / 1;
    border-radius: 99px;
    background: currentColor;
    transition:
      transform 0.18s ease,
      opacity 0.18s ease;
  }

  .menu-button span:nth-child(1) {
    transform: translateY(-7px);
  }

  .menu-button span:nth-child(3) {
    transform: translateY(7px);
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .menu-button[aria-expanded="true"] {
    position: fixed;
    z-index: 90;
    top: 17px;
    left: 21px;
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: none;
  }

  .site-nav.is-open {
    position: fixed;
    z-index: 70;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    display: flex;
    width: min(400px, calc(100vw - 86px));
    max-height: none;
    min-height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    overflow: auto;
    gap: 0;
    padding: 7px 20px 42px;
    border: 0;
    border-radius: 0;
    color: #fff;
    background: #273033;
    box-shadow: -22px 0 42px rgba(0, 0, 0, 0.24);
    white-space: normal;
    text-shadow: none;
  }

  .site-nav.is-open a {
    display: flex;
    width: 100%;
    min-height: 56px;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 0;
    color: #fff;
    background: transparent;
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.35;
  }

  .site-nav.is-open a:hover {
    color: #8ccfff;
    background: transparent;
  }

  .site-nav.is-open a::after {
    display: none;
  }

  .site-nav.is-open .mobile-nav-only {
    display: flex;
  }

  .feature-card {
    grid-template-columns: minmax(280px, 0.82fr) minmax(280px, 1fr);
  }

  .topic-grid {
    grid-template-columns: 1fr;
  }

  .news-editor {
    grid-template-columns: 1fr;
  }

  .news-editor-preview {
    position: static;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 14px;
  }

  .site-header,
  .site-header.is-scrolled {
    top: 0;
    width: 100%;
    min-height: 0;
    padding: 12px 14px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header {
    top: 0 !important;
    left: 0;
    width: 100% !important;
    border-radius: 0 !important;
    transform: none;
    transition: none;
  }

  .site-header.is-scrolled {
    left: 0;
    transform: none;
  }

  .brand {
    width: min(72vw, 320px);
  }

  .brand img {
    width: 100%;
    height: auto;
  }

  .sticky-header {
    min-height: 56px;
    gap: 12px;
    justify-content: space-between;
    padding: 8px 12px;
  }

  .sticky-brand img {
    height: 34px;
  }

  .sticky-menu-button {
    display: inline-grid;
    color: var(--navy);
    background: rgba(18, 107, 220, 0.08);
  }

  .sticky-nav {
    display: none;
  }

  .sub-header {
    min-height: 56px;
    gap: 12px;
    padding: 8px 12px;
  }

  .sub-brand img {
    height: 34px;
  }

  .sub-nav {
    gap: 18px;
    font-size: 0.78rem;
  }

  .philosophy-intro {
    min-height: 300px;
    padding: 74px 18px 58px;
  }

  .philosophy-intro::after {
    right: -190px;
    width: 360px;
  }

  .philosophy-hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: min(330px, 78vw);
    margin: 36px auto 0;
  }

  .philosophy-hero-visual::before {
    inset: -14px;
  }

  .philosophy-flow {
    padding: 58px 18px 82px;
  }

  .business-intro {
    min-height: 290px;
    padding: 74px 18px 58px;
  }

  .business-intro::after {
    right: -190px;
    width: 360px;
  }

  .business-services {
    padding: 50px 18px 82px;
  }

  .business-service + .business-service {
    margin-top: 62px;
    padding-top: 62px;
  }

  .business-overview-card {
    gap: 22px;
    padding: 16px;
  }

  .business-work {
    margin-top: 44px;
  }

  .business-work h3 {
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .business-work-row {
    gap: 20px;
  }

  .business-work-row + .business-work-row {
    margin-top: 44px;
  }

  .company-intro {
    min-height: 290px;
    padding: 74px 18px 58px;
  }

  .company-intro::after {
    right: -190px;
    width: 360px;
  }

  .company-profile {
    padding: 50px 18px 82px;
  }

  .company-profile-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .company-map iframe {
    aspect-ratio: 1.3;
    min-height: 260px;
  }

  .news-intro,
  .recruit-intro,
  .contact-intro {
    min-height: 290px;
    padding: 74px 18px 58px;
  }

  .news-intro::after,
  .recruit-intro::after,
  .contact-intro::after {
    right: -190px;
    width: 360px;
  }

  .subpage-hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: min(330px, 78vw);
    margin: 34px auto 0;
  }

  .subpage-hero-visual::before {
    inset: -12px;
  }

  .news-archive,
  .recruit-content,
  .contact-page-content {
    padding: 50px 18px 82px;
  }

  .archive-featured a,
  .archive-list a {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 44px 18px 0;
  }

  .archive-featured a {
    padding-left: 16px;
  }

  .recruit-lead-card {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .recruit-lead-card img {
    width: min(220px, 72vw);
    margin: 0 auto;
  }

  .recruit-values article,
  .opening-empty,
  .contact-methods article,
  .contact-form-panel {
    padding: 22px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .news-editor {
    padding: 50px 18px 82px;
  }

  .news-editor-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .news-editor-actions {
    display: grid;
  }

  .news-editor-actions .button {
    width: 100%;
  }

  .contact-form-actions {
    display: grid;
    justify-items: start;
  }

  .philosophy-row {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .philosophy-row + .philosophy-row {
    margin-top: 62px;
  }

  .row-visual-first .pote-cluster,
  .row-visual-first .philosophy-character-stage {
    order: 1;
  }

  .row-visual-first .philosophy-copy {
    order: 2;
  }

  .philosophy-character-stage {
    --char-size: clamp(220px, 62vw, 310px);

    min-height: 310px;
    order: 2;
  }

  .philosophy-character-stage::before {
    width: min(280px, 72vw);
  }

  .philosophy-character-stage::after {
    width: min(340px, 86vw);
  }

  .pote-cluster {
    min-height: 260px;
  }

  .cluster-pair {
    justify-content: center;
    gap: 14px;
  }

  .cluster-pair .bubble-tall {
    width: min(42vw, 160px);
  }

  .cluster-pair .pote-bubble:first-child,
  .cluster-pair .pote-bubble:last-child {
    transform: none;
  }

  .cluster-orbit .bubble-large {
    left: 48%;
  }

  .cluster-focus .bubble-wide,
  .cluster-ground .bubble-land {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .cluster-ground .bubble-land {
    top: 48px;
  }

  .philosophy-note {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 20px;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero-bg {
    background-image: var(--hero-mobile-image);
    background-position: center top;
    background-size: cover;
  }

  .hero-scroll-cue {
    top: min(calc(100svh - 52px - env(safe-area-inset-bottom)), calc(100% - 48px));
    width: 38px;
    height: 38px;
  }

  .section {
    padding: 58px 18px;
  }

  .feature-card,
  .company-layout,
  .recruit-panel,
  .footer-top,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-copy {
    min-height: 260px;
    padding: 34px 30px 28px;
  }

  .circle-link {
    --circle-shift-y: 0;

    top: auto;
    right: 28px;
    bottom: 26px;
    transform: translateY(var(--circle-shift-y));
  }

  .feature-visual {
    min-height: 260px;
  }

  .notice-list a,
  .news-list a {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 52px 18px 18px;
  }

  .notice-list span {
    width: fit-content;
    padding: 2px 12px;
  }

  .company-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-brand {
    width: 220px;
  }

  .footer-banner {
    min-height: 320px;
    padding-bottom: 190px;
  }

  .footer-banner > div {
    max-width: none;
  }

  .footer-character {
    right: 50%;
    bottom: 24px;
    width: 165px;
    transform: translateX(50%);
  }

  .footer-banner p {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }
}

@media (max-width: 440px) {
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .feature-copy {
    min-height: 240px;
  }

  .feature-copy h2 {
    padding-right: 48px;
  }

  .visual-philosophy::before {
    width: 148px;
    height: 194px;
  }

  .visual-philosophy::after {
    width: 116px;
    height: 116px;
  }

  .visual-mascot::before {
    right: 50%;
    width: 172px;
    height: 148px;
    transform: translateX(50%);
  }

  .visual-mascot::after {
    right: 50%;
    transform: translateX(50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .philosophy-hero-visual,
  .subpage-hero-visual,
  .js-reveal-ready .philosophy-row .philosophy-character-stage::before,
  .js-reveal-ready .philosophy-row .philosophy-character-stage::after,
  .js-reveal-ready .philosophy-row .character-orbit,
  .js-reveal-ready .philosophy-row .philosophy-character {
    opacity: 1;
    transform: none;
  }
}
