/* ============================================================
   front-page.css — トップページ専用スタイル
   _design-base/toppage/eda-corporate-site.html のデザインを移植。
   body 等の全体リセットは .eda-top ラッパーにスコープし、共有の
   l-header / l-footer を汚染しないようにしている。front-page でのみ enqueue。
   ============================================================ */

    :root {
      --ink: #0d2340;
      --ink-soft: #314866;
      --muted: #667892;
      --blue: #0874d9;
      --blue-dark: #0459b5;
      --blue-weak: #eaf6ff;
      --sky: #f5fbff;
      --line: #d7e8f8;
      --green: #27b779;
      --orange: #ff920e;
      --orange-dark: #e67600;
      --white: #ffffff;
      --shadow: 0 18px 48px rgba(8, 68, 127, 0.12);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    .eda-top {
      /* デザイン優先: テーマの Noto Sans JP / Space Grotesk ではなく
         eda-corporate-site.html のフォントスタックを .eda-top 配下で使う。
         デザインは --font-en を未定義（＝システムフォントにフォールバック）なので
         var(--font-en) 参照（21 YEARS / RECRUIT 等の英字ラベル）も同じスタックに揃える。 */
      --font-ja: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
      --font-en: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
      margin: 0;
      background: var(--sky);
      color: var(--ink);
      font-family: var(--font-ja);
      letter-spacing: 0;
      line-height: 1.75;
    }

    /* テーマ reset の見出し指定（line-height:1.3 / letter-spacing:-.01em）が
       素の見出しへ漏れるのを打ち消し、デザインの指定を優先する。
       :where(.eda-top) で特異度を 0,0,1 に抑え、デザインの h1/h2 等（同特異度・後方）が勝つようにする。 */
    :where(.eda-top) :is(h1, h2, h3, h4, h5, h6) {
      line-height: inherit;
      letter-spacing: 0;
    }

    .eda-top a {
      color: inherit;
      text-decoration: none;
    }

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

    .jp-text {
      word-break: normal;
      overflow-wrap: break-word;
      line-break: strict;
    }

    .nobr {
      display: inline-block;
      white-space: nowrap;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(16px);
    }

    .header-inner {
      width: min(1400px, calc(100% - 40px));
      min-height: 88px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      min-height: 44px;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      color: var(--ink);
    }

    .brand-mark {
      width: 56px;
      height: 54px;
      object-fit: contain;
    }

    .brand-name {
      display: grid;
      gap: 1px;
      line-height: 1.2;
    }

    .brand-name small {
      color: var(--muted);
      font-size: 0.72rem;
      font-weight: 700;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 26px;
      color: var(--ink-soft);
      font-size: 0.92rem;
      font-weight: 700;
    }

    .nav a {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
    }

    .header-cta,
    .button {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      border: 1px solid transparent;
      padding: 12px 22px;
      font-size: 0.95rem;
      font-weight: 800;
      line-height: 1.2;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
    }

    .header-cta,
    .button-primary {
      background: var(--blue);
      color: var(--white);
      box-shadow: 0 12px 24px rgba(8, 116, 217, 0.22);
    }

    .button-secondary {
      background: var(--orange);
      color: var(--white);
      box-shadow: 0 12px 24px rgba(255, 146, 14, 0.22);
    }

    .button-outline {
      border-color: rgba(8, 116, 217, 0.34);
      background: var(--white);
      color: var(--blue);
    }

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

    .button-primary:hover,
    .header-cta:hover {
      background: var(--blue-dark);
    }

    .button-secondary:hover {
      background: var(--orange-dark);
    }

    .menu-button {
      width: 48px;
      height: 48px;
      display: none;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      border-color: transparent;
      border-radius: 0;
      background: transparent;
      color: var(--ink);
      cursor: pointer;
    }

    .menu-icon {
      width: 38px;
      display: grid;
      gap: 8px;
    }

    .menu-icon span {
      display: block;
      height: 1px;
      border-radius: 999px;
      background: currentColor;
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: 92px 0;
      background: var(--white);
    }

    .section-soft {
      background: var(--sky);
    }

    .section-blue {
      background: var(--blue-dark);
      color: var(--white);
    }

    .container {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .hero {
      position: relative;
      min-height: 0;
      display: block;
      padding: 0;
      background:
        linear-gradient(180deg, rgba(8, 116, 217, 0.07) 0 1px, transparent 1px 100%),
        radial-gradient(ellipse at 50% 14%, rgba(8, 116, 217, 0.16), transparent 54%),
        radial-gradient(ellipse at 50% 100%, rgba(39, 183, 121, 0.09), transparent 44%),
        linear-gradient(180deg, #f7fbff 0%, #edf7ff 52%, #f9fdff 100%);
      background-size: 100% 112px, auto, auto, auto;
      overflow: hidden;
    }

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

    .hero::before {
      inset: 0;
      background:
        linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.58) 35%, transparent 52%),
        linear-gradient(90deg, transparent 0%, rgba(8, 116, 217, 0.045) 50%, transparent 100%);
      opacity: 0.9;
      transform: translateX(-22%);
      animation: heroSheen 12s ease-in-out infinite alternate;
    }

    .hero::after {
      left: 50%;
      bottom: 86px;
      width: min(760px, 72vw);
      height: 140px;
      border: 1px solid rgba(8, 116, 217, 0.08);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.28);
      filter: blur(20px);
      transform: translateX(-50%);
      opacity: 0.8;
    }

    @keyframes heroSheen {
      0% {
        transform: translateX(-24%);
      }

      100% {
        transform: translateX(18%);
      }
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: block;
      text-align: center;
    }

    .hero-copy {
      min-height: calc(100svh - 88px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 72px 0;
    }

    .eyebrow {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--white);
      color: var(--blue-dark);
      padding: 8px 13px;
      font-size: 0.82rem;
      font-weight: 800;
      line-height: 1.2;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(39, 183, 121, 0.13);
    }

    .eda-top :is(h1, h2, h3, p) {
      margin: 0;
    }

    h1 {
      margin: 0 auto;
      font-size: clamp(3.1rem, 7.6vw, 6.7rem);
      line-height: 0.95;
      font-weight: 800;
      color: var(--ink);
    }
    h1.l-header__logo {
      display: flex;
      margin: 0;
      gap: 8px;
    }
    h1.l-header__logo a {
      gap: 1rem;
    }
    h1.l-header__logo a .title {
      font-size: 1rem;
    }

    h1 .muted-word {
      color: var(--ink);
      font-size: 0.52em;
    }

    h1 .accent-word {
      color: var(--blue);
    }

    .hero-kicker {
      display: block;
      margin-bottom: 20px;
      color: var(--blue-dark);
      font-size: clamp(0.9rem, 1.5vw, 1.12rem);
      font-weight: 800;
      line-height: 1.2;
    }

    .hero-lead {
      margin: 22px auto 0;
      color: var(--ink-soft);
      font-size: clamp(1.2rem, 2.4vw, 1.8rem);
      font-weight: 800;
      line-height: 1.58;
    }

    .hero-actions {
      margin-top: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .microcopy {
      margin-top: 12px;
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 700;
    }

    .proof-row {
      max-width: 840px;
      margin: 46px auto 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .proof-item {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.78);
      padding: 16px;
      backdrop-filter: blur(10px);
    }

    .scroll-cue {
      display: none;
    }

    .eda-hero-art {
      display: none;
      position: absolute;
      z-index: -1;
      inset: 92px 0 auto 58%;
      width: min(42vw, 560px);
      min-height: 520px;
      overflow: hidden;
      border: 1px solid rgba(8, 116, 217, 0.16);
      border-radius: 8px;
      background:
        linear-gradient(145deg, rgba(255,255,255,0.88), rgba(234,246,255,0.76)),
        radial-gradient(circle at 70% 20%, rgba(8,116,217,0.18), transparent 30%);
      box-shadow: var(--shadow);
      opacity: 0.34;
      transform: translateX(-6%);
    }

    .eda-hero-art::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(8,116,217,0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(8,116,217,0.08) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(180deg, transparent 0%, black 22%, black 78%, transparent 100%);
    }

    .eda-watermark {
      position: absolute;
      width: 68%;
      right: -4%;
      top: 6%;
      opacity: 0.12;
      filter: saturate(1.2);
    }

    .flow-line {
      position: absolute;
      inset: 74px 54px auto auto;
      width: 250px;
      height: 250px;
      border-top: 5px solid rgba(8, 116, 217, 0.9);
      border-right: 5px solid rgba(39, 183, 121, 0.9);
      animation: floatLine 6s ease-in-out infinite;
    }

    .flow-line:nth-of-type(2) {
      inset: auto auto 70px 50px;
      width: 180px;
      height: 180px;
      border-color: rgba(255, 146, 14, 0.78);
      border-right-color: rgba(8, 116, 217, 0.82);
      animation-delay: -2s;
    }

    .device-card,
    .agent-card {
      position: absolute;
      border: 1px solid rgba(8, 116, 217, 0.18);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 18px 40px rgba(8, 68, 127, 0.14);
      backdrop-filter: blur(12px);
    }

    .device-card {
      left: 42px;
      bottom: 48px;
      width: min(62%, 310px);
      padding: 16px;
    }

    .device-screen {
      aspect-ratio: 4 / 3;
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(8, 116, 217, 0.18), rgba(39, 183, 121, 0.12)),
        linear-gradient(90deg, rgba(255,255,255,0.62) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.62) 1px, transparent 1px);
      background-size: auto, 28px 28px, 28px 28px;
      position: relative;
      overflow: hidden;
    }

    .device-screen::before,
    .device-screen::after {
      content: "";
      position: absolute;
      left: 24px;
      right: 24px;
      height: 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.82);
    }

    .device-screen::before {
      top: 34px;
    }

    .device-screen::after {
      top: 64px;
      right: 82px;
    }

    .agent-card {
      right: 36px;
      bottom: 146px;
      width: min(56%, 300px);
      padding: 18px;
      animation: floatCard 7s ease-in-out infinite;
    }

    .agent-card strong {
      display: block;
      color: var(--ink);
      font-size: 1rem;
      line-height: 1.4;
    }

    .agent-card span {
      display: inline-flex;
      margin-top: 10px;
      border-radius: 999px;
      background: var(--blue-weak);
      color: var(--blue-dark);
      padding: 6px 10px;
      font-size: 0.74rem;
      font-weight: 800;
    }

    .orbital-dot {
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 0 8px rgba(39,183,121,0.13);
      animation: pulseDot 2.6s ease-in-out infinite;
    }

    .orbital-dot.one {
      left: 18%;
      top: 20%;
    }

    .orbital-dot.two {
      right: 18%;
      top: 34%;
      background: var(--orange);
      box-shadow: 0 0 0 8px rgba(255,146,14,0.13);
      animation-delay: -1.1s;
    }

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

    @keyframes floatLine {
      0%, 100% { transform: translate(0, 0); opacity: 0.78; }
      50% { transform: translate(-10px, 12px); opacity: 1; }
    }

    @keyframes pulseDot {
      0%, 100% { transform: scale(1); opacity: 0.8; }
      50% { transform: scale(1.25); opacity: 1; }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero::before {
        animation: none;
        transform: none;
      }
    }

    .proof-value {
      display: block;
      color: var(--blue-dark);
      font-size: clamp(1.45rem, 4vw, 2.05rem);
      font-weight: 800;
      line-height: 1.1;
    }

    .proof-label {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 700;
      line-height: 1.5;
    }

    .hero-visual {
      position: relative;
      min-height: 530px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: linear-gradient(160deg, #ffffff 0%, #eef8ff 100%);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-logo {
      position: absolute;
      top: 34px;
      right: 28px;
      width: min(56%, 300px);
      opacity: 0.18;
    }

    .visual-stack {
      position: absolute;
      inset: 58px 28px 28px;
      display: grid;
      align-content: end;
      gap: 14px;
    }

    .workflow-panel {
      border: 1px solid rgba(8, 116, 217, 0.2);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.9);
      padding: 18px;
      box-shadow: 0 14px 28px rgba(8, 68, 127, 0.09);
    }

    .workflow-panel:nth-child(2) {
      width: 82%;
      margin-left: auto;
    }

    .workflow-panel:nth-child(3) {
      width: 72%;
    }

    .panel-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--ink);
      font-weight: 800;
    }

    .panel-tag {
      border-radius: 999px;
      background: var(--blue-weak);
      color: var(--blue-dark);
      padding: 5px 9px;
      font-size: 0.72rem;
      font-weight: 800;
    }

    .panel-line {
      height: 8px;
      margin-top: 14px;
      border-radius: 999px;
      background: var(--line);
      overflow: hidden;
    }

    .panel-line span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: var(--blue);
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 36px;
    }

    .message-section {
      position: relative;
      min-height: 640px;
      display: grid;
      align-items: center;
      overflow: hidden;
      padding: 102px 0 98px;
      color: var(--ink);
      background: #fbfdff;
    }

    .message-section::before {
      content: "";
      position: absolute;
      right: 96px;
      top: 50%;
      width: 520px;
      height: 500px;
      background: url("../img/logo/eda-logo.png") center / contain no-repeat;
      opacity: 0.13;
      transform: translateY(-50%);
    }

    .message-section::after {
      content: none;
      pointer-events: none;
    }

    .eda-hero-art::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(8,116,217,0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(8,116,217,0.08) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(180deg, transparent 0%, black 22%, black 78%, transparent 100%);
    }

    .eda-watermark {
      position: absolute;
      width: 68%;
      right: -4%;
      top: 6%;
      opacity: 0.12;
      filter: saturate(1.2);
    }

    .flow-line {
      position: absolute;
      inset: 74px 54px auto auto;
      width: 250px;
      height: 250px;
      border-top: 5px solid rgba(8, 116, 217, 0.9);
      border-right: 5px solid rgba(39, 183, 121, 0.9);
      animation: floatLine 6s ease-in-out infinite;
    }

    .flow-line:nth-of-type(2) {
      inset: auto auto 70px 50px;
      width: 180px;
      height: 180px;
      border-color: rgba(255, 146, 14, 0.78);
      border-right-color: rgba(8, 116, 217, 0.82);
      animation-delay: -2s;
    }

    .device-card,
    .agent-card {
      position: absolute;
      border: 1px solid rgba(8, 116, 217, 0.18);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 18px 40px rgba(8, 68, 127, 0.14);
      backdrop-filter: blur(12px);
    }

    .device-card {
      left: 42px;
      bottom: 48px;
      width: min(62%, 310px);
      padding: 16px;
    }

    .device-screen {
      aspect-ratio: 4 / 3;
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(8, 116, 217, 0.18), rgba(39, 183, 121, 0.12)),
        linear-gradient(90deg, rgba(255,255,255,0.62) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.62) 1px, transparent 1px);
      background-size: auto, 28px 28px, 28px 28px;
      position: relative;
      overflow: hidden;
    }

    .device-screen::before,
    .device-screen::after {
      content: "";
      position: absolute;
      left: 24px;
      right: 24px;
      height: 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.82);
    }

    .device-screen::before {
      top: 34px;
    }

    .device-screen::after {
      top: 64px;
      right: 82px;
    }

    .agent-card {
      right: 36px;
      bottom: 146px;
      width: min(56%, 300px);
      padding: 18px;
      animation: floatCard 7s ease-in-out infinite;
    }

    .agent-card strong {
      display: block;
      color: var(--ink);
      font-size: 1rem;
      line-height: 1.4;
    }

    .agent-card span {
      display: inline-flex;
      margin-top: 10px;
      border-radius: 999px;
      background: var(--blue-weak);
      color: var(--blue-dark);
      padding: 6px 10px;
      font-size: 0.74rem;
      font-weight: 800;
    }

    .orbital-dot {
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 0 8px rgba(39,183,121,0.13);
      animation: pulseDot 2.6s ease-in-out infinite;
    }

    .orbital-dot.one {
      left: 18%;
      top: 20%;
    }

    .orbital-dot.two {
      right: 18%;
      top: 34%;
      background: var(--orange);
      box-shadow: 0 0 0 8px rgba(255,146,14,0.13);
      animation-delay: -1.1s;
    }

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

    @keyframes floatLine {
      0%, 100% { transform: translate(0, 0); opacity: 0.78; }
      50% { transform: translate(-10px, 12px); opacity: 1; }
    }

    @keyframes pulseDot {
      0%, 100% { transform: scale(1); opacity: 0.8; }
      50% { transform: scale(1.25); opacity: 1; }
    }

    .proof-value {
      display: block;
      color: var(--blue-dark);
      font-size: clamp(1.45rem, 4vw, 2.05rem);
      font-weight: 800;
      line-height: 1.1;
    }

    .proof-label {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 700;
      line-height: 1.5;
    }

    .hero-visual {
      position: relative;
      min-height: 530px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: linear-gradient(160deg, #ffffff 0%, #eef8ff 100%);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-logo {
      position: absolute;
      top: 34px;
      right: 28px;
      width: min(56%, 300px);
      opacity: 0.18;
    }

    .visual-stack {
      position: absolute;
      inset: 58px 28px 28px;
      display: grid;
      align-content: end;
      gap: 14px;
    }

    .workflow-panel {
      border: 1px solid rgba(8, 116, 217, 0.2);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.9);
      padding: 18px;
      box-shadow: 0 14px 28px rgba(8, 68, 127, 0.09);
    }

    .workflow-panel:nth-child(2) {
      width: 82%;
      margin-left: auto;
    }

    .workflow-panel:nth-child(3) {
      width: 72%;
    }

    .panel-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--ink);
      font-weight: 800;
    }

    .panel-tag {
      border-radius: 999px;
      background: var(--blue-weak);
      color: var(--blue-dark);
      padding: 5px 9px;
      font-size: 0.72rem;
      font-weight: 800;
    }

    .panel-line {
      height: 8px;
      margin-top: 14px;
      border-radius: 999px;
      background: var(--line);
      overflow: hidden;
    }

    .panel-line span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: var(--blue);
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 36px;
    }

    .message-section {
      position: relative;
      min-height: 640px;
      display: grid;
      align-items: center;
      overflow: hidden;
      padding: 102px 0 98px;
      color: var(--ink);
      background: #fbfdff;
    }

    .message-section::before {
      content: "";
      position: absolute;
      right: 96px;
      top: 50%;
      width: 520px;
      height: 500px;
      background: url("../img/logo/eda-logo.png") center / contain no-repeat;
      opacity: 0.13;
      transform: translateY(-50%);
    }

    .message-section::after {
      content: none;
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(8, 116, 217, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(8, 116, 217, 0.065) 1px, transparent 1px);
      background-size: 86px 86px;
      opacity: 0.6;
    }

    .message-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
      align-items: stretch;
      gap: 56px;
    }

    .message-grid > .reveal:first-child {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .section-label {
      display: grid;
      gap: 10px;
      color: var(--blue-dark);
      font-size: clamp(3.4rem, 7vw, 5.6rem);
      font-weight: 800;
      line-height: 0.94;
      letter-spacing: 0.06em;
    }

    .section-label small {
      font-size: 0.9rem;
      letter-spacing: 0.16em;
    }

    .message-eyebrow {
      margin-bottom: 22px;
      color: var(--blue-dark);
      font-size: clamp(1rem, 1.6vw, 1.18rem);
      font-weight: 800;
      line-height: 1.6;
    }

    .more-link {
      width: fit-content;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      margin-top: 24px;
      color: var(--blue-dark);
      font-size: 1rem;
      font-weight: 800;
      border-bottom: 2px solid currentColor;
    }

    .message-copy {
      font-size: clamp(2.25rem, 3.55vw, 3.2rem);
      line-height: 1.24;
      font-weight: 800;
    }

    .years-band {
      position: relative;
      min-height: 0;
      display: grid;
      grid-template-columns: minmax(0, max-content) minmax(130px, 1fr);
      column-gap: 22px;
      align-items: end;
      margin-top: 34px;
      overflow: hidden;
      border-radius: 8px;
      background:
        radial-gradient(circle at 28% 18%, rgba(8, 116, 217, 0.18), transparent 32%),
        radial-gradient(circle at 88% 78%, rgba(39, 183, 121, 0.12), transparent 30%),
        linear-gradient(90deg, rgba(8, 116, 217, 0.09) 1px, transparent 1px),
        linear-gradient(180deg, rgba(8, 116, 217, 0.075) 1px, transparent 1px),
        linear-gradient(120deg, #ffffff, #eff8ff);
      background-size: auto, auto, 74px 74px, 74px 74px, auto;
      padding: 24px 30px 26px;
      color: var(--ink);
      border: 1px solid rgba(8, 116, 217, 0.14);
      box-shadow: 0 20px 44px rgba(8, 68, 127, 0.09);
    }

    .years-band::before {
      content: "";
      position: absolute;
      top: 0;
      right: 26px;
      width: 136px;
      height: 8px;
      background: linear-gradient(90deg, #075f94, #11a9d9);
    }

    .years-band::after {
      content: "";
      position: absolute;
      right: -70px;
      bottom: -150px;
      width: 280px;
      aspect-ratio: 1;
      border: 1px solid rgba(8, 116, 217, 0.12);
      border-radius: 50%;
      background:
        linear-gradient(90deg, rgba(8, 116, 217, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(8, 116, 217, 0.08) 1px, transparent 1px);
      background-size: 30px 30px;
      pointer-events: none;
    }

    .years-kicker,
    .years-caption {
      position: relative;
      z-index: 1;
      display: block;
      color: var(--blue-dark);
      font-family: var(--font-en);
      font-size: 0.82rem;
      font-weight: 900;
      line-height: 1.4;
      text-transform: uppercase;
    }

    .years-kicker {
      grid-column: 1 / -1;
      margin-bottom: 8px;
    }

    .years-value {
      position: relative;
      z-index: 1;
      display: block;
      margin-top: 0;
      color: var(--blue);
      font-family: var(--font-en);
      font-size: clamp(4.4rem, 7.4vw, 6.4rem);
      font-weight: 900;
      line-height: 0.86;
      letter-spacing: 0;
    }

    .years-caption {
      max-width: 190px;
      margin: 0 0 8px;
      color: var(--ink-soft);
      font-size: 0.78rem;
    }

    .message-body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 48px;
      border: 1px solid rgba(8, 116, 217, 0.14);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.48);
      color: var(--ink-soft);
      font-size: clamp(1.16rem, 1.95vw, 1.34rem);
      font-weight: 700;
      line-height: 2.05;
      box-shadow: 0 16px 36px rgba(8, 68, 127, 0.07);
      backdrop-filter: blur(2px);
    }

    .message-body p + p {
      margin-top: 28px;
    }

    .business-section {
      position: relative;
      background: #ffffff;
      color: var(--ink);
      overflow: hidden;
    }

    .business-section::after {
      content: none;
      position: absolute;
      right: -110px;
      top: 70px;
      width: 440px;
      height: 440px;
      border: 1px solid rgba(8, 116, 217, 0.13);
      opacity: 0.9;
      pointer-events: none;
    }

    .business-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(250px, 0.4fr) minmax(0, 0.8fr);
      gap: 56px;
      align-items: start;
    }

    .business-intro .section-label {
      font-size: clamp(2.8rem, 4.8vw, 4.7rem);
    }

    .business-intro p {
      max-width: 380px;
      margin-top: 34px;
      color: var(--ink-soft);
      font-weight: 700;
    }

    .business-cards {
      display: grid;
      gap: 22px;
    }

    .business-card {
      min-height: 210px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(220px, 0.75fr);
      align-items: stretch;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 14px 34px rgba(8, 68, 127, 0.07);
    }

    .business-card.ai-agent-service {
      border-color: rgba(8, 116, 217, 0.22);
      background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(234, 246, 255, 0.92)),
        var(--white);
    }

    .business-card.ai-school-service {
      border-color: rgba(8, 116, 217, 0.22);
      background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(234, 246, 255, 0.92)),
        var(--white);
    }

    .business-card.app-development-service {
      border-color: rgba(8, 116, 217, 0.22);
      background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(234, 246, 255, 0.92)),
        var(--white);
    }

    .business-card-content {
      padding: 28px;
    }

    .business-card h3 {
      font-size: clamp(1.55rem, 3vw, 2.3rem);
      line-height: 1.28;
    }

    .business-card h3 .title-phrase {
      display: inline-block;
    }

    .business-card p {
      margin-top: 12px;
      color: var(--ink-soft);
      font-weight: 700;
    }

    .business-visual {
      position: relative;
      min-height: 210px;
      background-color: #f5fbff;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }

    .business-visual::before {
      content: none;
    }

    .business-card:nth-child(1) .business-visual {
      background-color: #f7fbff;
      background-image:
        linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.08)),
        url("../img/front/ai-agent-workflow-ui.png");
      background-position: left center, center;
      background-size: auto, cover;
    }

    .business-card.ai-agent-service .business-visual::after {
      content: "AI Agent";
      position: absolute;
      right: 18px;
      bottom: 18px;
      border: 1px solid rgba(8, 116, 217, 0.22);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.82);
      padding: 8px 12px;
      color: var(--blue-dark);
      font-size: 0.72rem;
      font-weight: 900;
      backdrop-filter: blur(10px);
    }

    .business-card:nth-child(2) .business-visual {
      background-color: #f7fbff;
      background-image:
        linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.08)),
        url("../img/front/ai-school-implementation-ui.png");
      background-position: left center, center;
      background-size: auto, cover;
    }

    .business-card.ai-school-service .business-visual::after {
      content: "AIのがっこう。";
      position: absolute;
      right: 18px;
      bottom: 18px;
      border: 1px solid rgba(8, 116, 217, 0.22);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.88);
      padding: 8px 12px;
      color: var(--blue-dark);
      font-size: 0.72rem;
      font-weight: 900;
      backdrop-filter: blur(10px);
    }

    .business-card.app-development-service .business-visual {
      background-color: #f7fbff;
      background-image:
        linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.08)),
        url("../img/front/ai-app-development-ui.png");
      background-position: left center, center;
      background-size: auto, cover;
    }

    .business-card.app-development-service .business-visual::after {
      content: "AI App";
      position: absolute;
      right: 18px;
      bottom: 18px;
      border: 1px solid rgba(8, 116, 217, 0.22);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.88);
      padding: 8px 12px;
      color: var(--blue-dark);
      font-size: 0.72rem;
      font-weight: 900;
      backdrop-filter: blur(10px);
    }

    .section-kicker {
      display: block;
      margin-bottom: 10px;
      color: var(--blue-dark);
      font-size: 0.86rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    .section-blue .section-kicker {
      color: #bfe7ff;
    }

    h2 {
      font-size: clamp(1.8rem, 4vw, 3.25rem);
      line-height: 1.18;
      font-weight: 800;
    }

    .section-lead {
      margin-top: 16px;
      color: var(--ink-soft);
      font-size: clamp(1rem, 1.8vw, 1.16rem);
      font-weight: 700;
    }

    .section-blue .section-lead {
      color: rgba(255, 255, 255, 0.82);
    }

    .achievements-band {
      position: relative;
      margin: 46px 0 18px;
      padding: 62px 34px 66px;
      overflow: hidden;
      border: 1px solid rgba(8, 116, 217, 0.14);
      border-radius: 8px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 255, 0.96)),
        radial-gradient(ellipse at 50% 100%, rgba(8, 116, 217, 0.09), transparent 58%);
      text-align: center;
      box-shadow: 0 18px 50px rgba(8, 68, 127, 0.08);
    }

    .achievements-band::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, transparent, rgba(8, 116, 217, 0.06), transparent),
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 44%);
      opacity: 0.86;
    }

    .achievements-band > * {
      position: relative;
      z-index: 1;
    }

    .achievements-kicker {
      display: block;
      color: #2454d8;
      font-size: 0.95rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .achievements-band h3 {
      margin-top: 18px;
      font-size: clamp(2rem, 4vw, 3.55rem);
      line-height: 1.25;
      font-weight: 800;
    }

    .achievement-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-top: 56px;
    }

    .achievement-item {
      padding: 0 28px;
      border-right: 1px solid rgba(13, 35, 64, 0.16);
    }

    .achievement-item:last-child {
      border-right: 0;
    }

    .achievement-value {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 10px;
      color: #2454d8;
      font-weight: 800;
      line-height: 0.9;
    }

    .achievement-number {
      font-size: clamp(4.4rem, 9vw, 7.4rem);
      letter-spacing: 0;
      font-variant-numeric: tabular-nums; /* カウントアップ中の桁幅を固定して横ブレを防ぐ */
    }

    .achievement-unit {
      color: var(--ink);
      font-size: clamp(1.45rem, 3vw, 2.45rem);
      font-weight: 800;
    }

    .achievement-label {
      margin-top: 22px;
      color: #2454d8;
      font-size: clamp(1rem, 1.7vw, 1.28rem);
      font-weight: 800;
      line-height: 1.5;
    }

    .hero .achievements-band {
      width: 100vw;
      max-width: none;
      margin: 0 0 0 calc(50% - 50vw);
      padding: 46px max(16px, calc((100vw - 1180px) / 2)) 50px;
      border-right: 0;
      border-left: 0;
      border-radius: 0;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.94)),
        radial-gradient(ellipse at 50% 100%, rgba(8, 116, 217, 0.08), transparent 58%);
      box-shadow: none;
    }

    .hero .achievements-band h3 {
      margin-top: 12px;
      font-size: clamp(1.85rem, 3.3vw, 2.9rem);
    }

    .hero .achievement-grid {
      margin-top: 34px;
    }

    .hero .achievement-number {
      font-size: clamp(4rem, 7.2vw, 6.1rem);
    }

    .hero .achievement-label {
      margin-top: 18px;
    }

    .cards-3,
    .cards-5,
    .cards-6,
    .works-grid {
      display: grid;
      gap: 16px;
    }

    .cards-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cards-5 {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .cards-6 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      padding: 24px;
      box-shadow: 0 12px 30px rgba(8, 68, 127, 0.08);
    }

    .strength-card {
      min-height: 260px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 30px;
      text-align: center;
    }

    .strength-icon {
      width: 138px;
      height: 118px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--blue-dark);
    }

    .strength-icon svg {
      width: 116px;
      height: 116px;
      display: block;
      overflow: visible;
    }

    .strength-icon .icon-blue {
      stroke: #0874d9;
    }

    .strength-icon .icon-green {
      stroke: #4eea35;
    }

    .card-number {
      display: inline-flex;
      width: 36px;
      height: 36px;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: var(--blue-weak);
      color: var(--blue-dark);
      font-size: 0.88rem;
      font-weight: 800;
    }

    .card h3 {
      margin-top: 18px;
      font-size: 1.22rem;
      line-height: 1.38;
      font-weight: 800;
    }

    .strength-card h3 {
      margin-top: 0;
      font-size: clamp(1.42rem, 1.7vw, 1.62rem);
      line-height: 1.34;
      font-weight: 900;
    }

    .card p {
      margin-top: 12px;
      color: var(--ink-soft);
      font-size: 0.96rem;
    }

    .service-card {
      min-height: 100%;
      display: flex;
      flex-direction: column;
    }

    .service-card .detail-link {
      margin-top: auto;
      padding-top: 18px;
    }

    .detail-link {
      display: inline-flex;
      min-height: 44px;
      align-items: center;
      color: var(--blue-dark);
      font-weight: 800;
    }

    .detail-link::after {
      content: ">";
      margin-left: 8px;
      color: var(--orange);
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
      gap: 36px;
      align-items: center;
    }

    .trust-layout {
      display: grid;
      gap: 34px;
    }

    .trust-layout > .reveal:first-child {
      max-width: 1120px;
      margin: 0 auto;
      text-align: center;
    }

    .works-trust-heading {
      font-size: clamp(3rem, 5.7vw, 4.8rem);
      line-height: 1.08;
      font-weight: 900;
    }

    .works-trust-heading span {
      display: block;
    }

    .works-trust-heading .mobile-line {
      display: none;
    }

    .trust-layout .hero-actions {
      justify-content: center;
    }

    .trust-panel {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      padding: 32px 0 22px;
      overflow: hidden;
      box-shadow: 0 16px 36px rgba(8, 68, 127, 0.07);
    }

    .trust-panel > .section-kicker,
    .trust-panel > h3,
    .trust-panel > .section-lead {
      padding-right: 32px;
      padding-left: 32px;
    }

    .client-cloud {
      position: relative;
      width: 100%;
      margin-top: 28px;
      overflow: hidden;
      border-top: 1px solid rgba(8, 116, 217, 0.12);
      border-bottom: 1px solid rgba(8, 116, 217, 0.12);
    }

    .client-marquee {
      display: grid;
      gap: 8px;
      padding: 18px 0;
    }

    .client-row {
      width: 100%;
      overflow: hidden;
    }

    .client-track {
      display: flex;
      width: max-content;
      align-items: center;
      animation: client-marquee 34s linear infinite;
      will-change: transform;
    }

    .client-row:nth-child(2) .client-track {
      animation-direction: reverse;
      animation-duration: 38s;
    }

    .client-row:hover .client-track {
      animation-play-state: paused;
    }

    .client-sequence {
      display: flex;
      gap: 8px;
      padding-right: 8px;
    }

    .client-logo {
      display: inline-flex;
      width: 154px;
      min-height: 74px;
      flex: 0 0 154px;
      align-items: center;
      justify-content: center;
      padding: 12px 14px;
      border: 1px solid rgba(8, 116, 217, 0.08);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.72);
      color: var(--ink);
      font-size: 0.92rem;
      font-weight: 800;
      text-align: center;
      transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    }

    .client-logo img {
      max-width: 132px;
      max-height: 40px;
      object-fit: contain;
      filter: grayscale(0.2) contrast(1.08);
      opacity: 1;
      transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
    }

    .client-logo:hover {
      border-color: rgba(8, 116, 217, 0.18);
      box-shadow: 0 10px 24px rgba(8, 68, 127, 0.08);
      transform: translateY(-1px);
    }

    .client-logo:hover img {
      filter: grayscale(0);
      opacity: 1;
    }

    @keyframes client-marquee {
      from {
        transform: translate3d(0, 0, 0);
      }

      to {
        transform: translate3d(-50%, 0, 0);
      }
    }

    #works {
      padding-bottom: 0;
    }

    .works-showcase {
      position: relative;
      width: 100vw;
      margin: 76px 0 0 calc(50% - 50vw);
      overflow: hidden;
      background:
        radial-gradient(circle at 50% 0%, rgba(8, 116, 217, 0.13), transparent 38%),
        radial-gradient(circle at 12% 72%, rgba(126, 207, 209, 0.18), transparent 30%),
        radial-gradient(circle at 86% 78%, rgba(39, 183, 121, 0.11), transparent 27%),
        linear-gradient(180deg, #ffffff 0%, #f7fcff 62%, #ffffff 100%);
      padding: 92px 0 96px;
    }

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

    .works-showcase::before {
      content: none;
    }

    .works-showcase::after {
      inset: 0;
      background:
        linear-gradient(90deg, rgba(8, 116, 217, 0.065) 1px, transparent 1px),
        linear-gradient(180deg, rgba(8, 116, 217, 0.055) 1px, transparent 1px);
      background-size: 96px 96px;
      opacity: 0.34;
    }

    .works-showcase-heading {
      position: relative;
      z-index: 1;
      margin: 0 auto 56px;
      text-align: center;
    }

    .works-showcase-heading .section-kicker {
      margin-bottom: 10px;
    }

    .works-showcase-heading h3 {
      color: var(--ink);
      font-size: clamp(2rem, 4vw, 4.6rem);
      line-height: 1;
    }

    .works-showcase .works-grid {
      position: relative;
      z-index: 1;
      width: min(1780px, calc(100% - 48px));
      grid-template-columns: minmax(0, 0.86fr) minmax(0, 0.94fr) minmax(0, 1.2fr) minmax(0, 0.94fr) minmax(0, 0.86fr);
      align-items: center;
      gap: clamp(28px, 3vw, 54px);
      margin: 0 auto;
    }

    .work-card {
      min-height: 100%;
      display: flex;
      overflow: visible;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 8px;
      background: transparent;
      color: var(--ink);
      box-shadow: none;
      transition: transform 240ms ease;
    }

    .work-card.is-featured {
      transform: none;
    }

    .works-showcase .reveal {
      opacity: 1;
      transform: translateY(0);
    }

    .work-thumb {
      position: relative;
      width: min(100%, 286px);
      aspect-ratio: 468 / 912;
      overflow: hidden;
      border: 1px solid rgba(13, 35, 64, 0.18);
      border-radius: 26px;
      background: #ffffff;
      box-shadow:
        0 30px 70px rgba(8, 68, 127, 0.18),
        0 0 0 8px rgba(255, 255, 255, 0.9);
    }

    .work-card.is-featured .work-thumb {
      width: min(100%, 374px);
      box-shadow:
        0 36px 86px rgba(8, 68, 127, 0.22),
        0 0 0 8px rgba(255, 255, 255, 0.94);
    }

    .work-thumb::before {
      content: "";
      position: absolute;
      z-index: 1;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.34), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 18%);
    }

    .work-thumb img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center center;
      transition: transform 320ms ease;
    }

    .work-card:hover {
      transform: translateY(-8px);
    }

    .work-card.is-featured:hover {
      transform: translateY(-8px);
    }

    .work-card:hover .work-thumb img {
      transform: scale(1.025);
    }

    .work-card-body {
      display: flex;
      min-height: 112px;
      flex: 0 0 112px;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 26px 0 0;
      text-align: center;
    }

    .work-type {
      display: block;
      color: var(--blue-dark);
      font-size: 0.8rem;
      font-weight: 800;
    }

    .work-card h3 {
      margin-top: 10px;
      color: var(--ink);
      font-size: clamp(1rem, 1.18vw, 1.24rem);
      line-height: 1.4;
    }

    .work-card p {
      display: none;
      margin-top: 10px;
      color: var(--ink-soft);
      font-size: 0.92rem;
    }

    .work-card .detail-link {
      display: none;
    }

    .recruit-band {
      position: relative;
      width: 100vw;
      max-width: 100vw;
      min-height: 420px;
      margin-left: calc(50% - 50vw);
      display: grid;
      align-content: center;
      justify-items: center;
      text-align: center;
      overflow: hidden;
      border: 1px solid rgba(8, 116, 217, 0.18);
      border-right: 0;
      border-left: 0;
      border-radius: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(120deg, #073a63, #1289d1);
      background-size: 72px 72px, 72px 72px, auto;
      padding: 58px;
      color: var(--white);
      box-shadow: var(--shadow);
    }

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

    .recruit-band::before {
      inset: 0;
      background:
        radial-gradient(circle at 20% 26%, rgba(39, 183, 121, 0.32), transparent 26%),
        radial-gradient(circle at 78% 34%, rgba(255, 255, 255, 0.18), transparent 24%),
        linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.14) 38% 39%, transparent 39% 100%);
      opacity: 0.9;
    }

    .recruit-band::after {
      right: 56px;
      bottom: 46px;
      width: min(38%, 360px);
      aspect-ratio: 4 / 3;
      border: 2px solid rgba(255, 255, 255, 0.38);
      border-radius: 8px;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.28) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.22) 1px, transparent 1px);
      background-size: 34px 34px;
      opacity: 0.54;
      transform: skewX(-8deg);
    }

    .recruit-ghost {
      position: absolute;
      top: 18px;
      left: 50%;
      z-index: 0;
      transform: translateX(-50%);
      color: rgba(255, 255, 255, 0.08);
      font-family: var(--font-en);
      font-size: clamp(4.6rem, 16vw, 11rem);
      font-weight: 900;
      line-height: 0.86;
      letter-spacing: 0;
      white-space: nowrap;
      pointer-events: none;
    }

    .recruit-band h2 {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: none;
      margin-inline: auto;
      font-size: clamp(1.42rem, 6vw, 5.6rem);
      line-height: 1.05;
      color: var(--white);
    }

    .recruit-band h2 .recruit-line {
      display: block;
      white-space: nowrap;
    }

    .recruit-band .section-kicker,
    .recruit-band .section-lead,
    .recruit-band .button {
      position: relative;
      z-index: 1;
    }

    .recruit-band > div {
      position: relative;
      z-index: 1;
      width: min(1500px, calc(100% - 32px));
    }

    .recruit-band .section-kicker {
      color: #97e6ff;
      font-size: 1rem;
    }

    .recruit-band .section-lead {
      max-width: 660px;
      margin-inline: auto;
      color: rgba(255, 255, 255, 0.86);
    }

    .recruit-lead-line {
      display: block;
    }

    .recruit-lead-mobile {
      display: none;
    }

    .recruit-band .button-outline {
      width: fit-content;
      margin-top: 28px;
      border-color: rgba(255, 255, 255, 0.58);
      background: rgba(255, 255, 255, 0.96);
      color: var(--blue-dark);
    }

    .recruit-band .button-outline::after {
      background: var(--blue-dark);
    }

    .final-cta {
      position: relative;
      display: grid;
      min-height: 520px;
      align-content: center;
      gap: 34px;
    }

    .contact-section {
      position: relative;
      overflow: hidden;
      /* padding: 118px 0 104px; */
      padding: 0;
      background:
        radial-gradient(circle at 76% 26%, rgba(8, 116, 217, 0.12), transparent 34%),
        radial-gradient(circle at 18% 82%, rgba(39, 183, 121, 0.1), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
      color: var(--ink);
    }

    .contact-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(8, 116, 217, 0.07) 1px, transparent 1px),
        linear-gradient(180deg, rgba(8, 116, 217, 0.07) 1px, transparent 1px),
        linear-gradient(110deg, transparent 0 42%, rgba(8, 116, 217, 0.1) 42% 43%, transparent 43% 100%);
      background-size: 78px 78px, 78px 78px, auto;
      opacity: 0.72;
      pointer-events: none;
    }

    .contact-section::after {
      content: "";
      position: absolute;
      right: -7%;
      bottom: -24%;
      width: 44%;
      max-width: 620px;
      aspect-ratio: 1;
      border: 2px solid rgba(8, 116, 217, 0.1);
      border-radius: 50%;
      background:
        linear-gradient(90deg, rgba(8, 116, 217, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(8, 116, 217, 0.08) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: 0.8;
      pointer-events: none;
    }

    .final-cta h2 {
      color: var(--ink);
      font-size: clamp(4.6rem, 13vw, 12rem);
      line-height: 0.86;
      text-transform: uppercase;
    }

    .contact-section .section-kicker {
      color: var(--blue-dark);
    }

    .cta-copy {
      max-width: 1040px;
      margin-top: 28px;
      color: var(--ink-soft);
      font-size: clamp(1rem, 2vw, 1.55rem);
      font-weight: 700;
      line-height: 1.8;
    }

    .final-cta .cta-copy {
      margin-top: 3rem;
    }

    .contact-hero {
      position: relative;
      z-index: 1;
    }

    .contact-action-row {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    .contact-primary-button {
      min-height: 74px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      border-radius: 8px;
      background: var(--blue);
      padding: 20px 34px;
      color: var(--white);
      font-size: clamp(1rem, 1.6vw, 1.35rem);
      font-weight: 900;
      box-shadow: 0 20px 48px rgba(8, 116, 217, 0.24);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .contact-primary-button::after {
      content: "↗";
      color: var(--white);
      font-size: 1.3em;
      line-height: 1;
    }

    .contact-primary-button:hover {
      box-shadow: 0 26px 58px rgba(8, 116, 217, 0.32);
      transform: translateY(-2px);
    }

    .contact-box {
      position: relative;
      z-index: 1;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.28);
      background: rgba(255, 255, 255, 0.94);
      padding: 26px;
      color: var(--ink);
      box-shadow: 0 20px 50px rgba(3, 37, 65, 0.22);
      backdrop-filter: blur(18px);
    }

    .contact-box h3 {
      font-size: 1.3rem;
      line-height: 1.4;
    }

    .contact-options {
      display: grid;
      gap: 10px;
      margin: 20px 0;
    }

    .contact-options a {
      min-height: 50px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 12px 14px;
      color: var(--blue-dark);
      font-weight: 800;
    }

    .contact-options a::after {
      content: ">";
      color: var(--orange);
    }

    .contact-link {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 16px;
      margin-top: 32px;
      color: var(--white);
      font-family: var(--font-en);
      font-size: 0.92rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .contact-link::after {
      content: "";
      order: 1;
      width: 82px;
      height: 1px;
      margin-left: 16px;
      background: rgba(255, 255, 255, 0.72);
    }

    .contact-link span {
      order: 2;
      width: 44px;
      height: 44px;
      display: inline-grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.54);
      border-radius: 999px;
    }

    .site-footer {
      background: #08233d;
      color: rgba(255, 255, 255, 0.78);
      padding: 40px 0;
    }

    .footer-inner {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 28px;
      align-items: start;
    }

    .footer-brand {
      display: inline-flex;
      min-height: 44px;
      align-items: center;
      gap: 12px;
      color: var(--white);
      font-weight: 800;
    }

    .footer-brand img {
      width: 40px;
      height: 38px;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 20px;
      justify-content: flex-end;
      font-size: 0.9rem;
      font-weight: 700;
    }

    .footer-links a {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
    }

    .copyright {
      margin-top: 20px;
      color: rgba(255, 255, 255, 0.56);
      font-size: 0.82rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 1.05s cubic-bezier(.16,1,.3,1), transform 1.05s cubic-bezier(.16,1,.3,1);
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .recruit-band.reveal,
    .final-cta .reveal,
    .contact-box.reveal {
      opacity: 1;
      transform: translateY(0);
    }

    .hero .reveal {
      opacity: 1;
      transform: none;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .button,
      .header-cta {
        transition: none;
      }
    }

    @media (max-width: 1120px) {
      .nav {
        gap: 14px;
        font-size: 0.86rem;
      }

      .cards-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .eda-watermark {
        width: 60%;
        right: 4%;
      }

      .works-showcase .works-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(230px, 28vw);
        gap: 26px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
      }

      .works-showcase .works-grid::-webkit-scrollbar {
        display: none;
      }

      .work-card {
        scroll-snap-align: center;
      }

      .work-card.is-featured,
      .work-card.is-featured:hover {
        transform: none;
      }
    }

    @media (max-width: 920px) {
      .menu-button {
        display: inline-flex;
      }

      .nav {
        position: fixed;
        inset: 88px 0 auto 0;
        display: none;
        max-height: calc(100vh - 88px);
        overflow: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-bottom: 1px solid var(--line);
        background: var(--white);
        padding: 12px 16px 18px;
        box-shadow: 0 20px 40px rgba(8, 68, 127, 0.14);
      }

      .nav.is-open {
        display: flex;
      }

      .nav a {
        border-bottom: 1px solid var(--line);
        padding: 14px 4px;
      }

      .header-cta {
        width: 100%;
        margin-top: 12px;
      }

      .hero-grid,
      .split,
      .message-grid,
      .business-grid,
      .final-cta {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
      }

      .eda-hero-art {
        display: none;
      }

      .message-section {
        min-height: auto;
        padding: 82px 0;
      }

      .hero-visual {
        min-height: 420px;
      }

      .cards-3,
      .cards-6,
      .works-grid {
        grid-template-columns: 1fr 1fr;
      }

      .works-showcase .works-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 18px;
      }

      .recruit-band {
        grid-template-columns: 1fr;
      }

      .contact-section {
        padding: 86px 0;
      }

      .final-cta {
        min-height: 440px;
      }

      .contact-section::after {
        width: 72%;
        right: -34%;
        bottom: -10%;
      }

      .business-card {
        grid-template-columns: 1fr;
      }

      .client-logo {
        width: 142px;
        flex-basis: 142px;
      }

      .achievement-number {
        font-size: clamp(3.8rem, 10vw, 5.8rem);
      }

      .eda-watermark {
        width: 60%;
        right: 4%;
      }
    }

    @media (max-width: 920px) {
      .works-showcase .works-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(210px, 34vw);
        gap: 24px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
      }

      .works-showcase .works-grid::-webkit-scrollbar {
        display: none;
      }

      .work-card {
        scroll-snap-align: center;
      }

      .work-card.is-featured,
      .work-card.is-featured:hover {
        transform: none;
      }
    }

    @media (max-width: 640px) {
      .header-inner,
      .container,
      .footer-inner {
        width: min(100% - 24px, 1180px);
      }

      .brand-name strong {
        font-size: 0.9rem;
      }

      .brand-name small {
        font-size: 0.66rem;
      }

      .section {
        padding: 68px 0;
      }

      .hero {
        min-height: 0;
        padding: 0;
        background:
          linear-gradient(90deg, rgba(8, 116, 217, 0.026) 1px, transparent 1px),
          linear-gradient(180deg, rgba(8, 116, 217, 0.026) 1px, transparent 1px),
          radial-gradient(ellipse at 50% 22%, rgba(8, 116, 217, 0.055), transparent 58%),
          radial-gradient(ellipse at 50% 90%, rgba(39, 183, 121, 0.035), transparent 46%),
          linear-gradient(180deg, #fbfdff 0%, #f5fbff 54%, #ffffff 100%);
        background-size: 150px 150px, 150px 150px, auto, auto, auto;
      }

      .hero::before {
        background:
          linear-gradient(110deg, transparent 24%, rgba(255, 255, 255, 0.28) 42%, transparent 60%);
        opacity: 0.22;
      }

      .hero::after {
        bottom: 18%;
        height: 104px;
        opacity: 0.28;
        filter: blur(28px);
      }

      .hero-copy {
        min-height: calc(100svh - 88px);
        padding: 54px 0;
      }

      h1 {
        font-size: clamp(2.5rem, 11.5vw, 3.25rem);
        line-height: 1;
      }

      .works-trust-heading {
        font-size: clamp(2.35rem, 10.2vw, 2.85rem);
        line-height: 1.12;
      }

      .works-trust-heading .desktop-line {
        display: none;
      }

      .works-trust-heading .mobile-line {
        display: block;
      }

      .hero-grid {
        gap: 28px;
      }

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

      .proof-row,
      .cards-3,
      .cards-5,
      .cards-6,
      .works-grid {
        grid-template-columns: 1fr;
      }

      .works-showcase {
        margin-top: 52px;
        padding: 58px 0 72px;
      }

      .works-showcase .works-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(220px, 72vw);
        gap: 22px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
      }

      .works-showcase .works-grid::-webkit-scrollbar {
        display: none;
      }

      .work-card {
        min-height: 100%;
        scroll-snap-align: center;
      }

      .work-card.is-featured,
      .work-card.is-featured:hover {
        transform: none;
      }

      .work-thumb,
      .work-card.is-featured .work-thumb {
        width: 100%;
        border-radius: 22px;
      }

      .achievements-band {
        margin-top: 36px;
        padding: 42px 18px 46px;
      }

      .hero .achievements-band {
        margin-left: calc(50% - 50vw);
        padding: 40px 18px 44px;
      }

      .hero .achievements-band h3 {
        font-size: clamp(1.65rem, 8vw, 2.05rem);
      }

      .achievement-grid {
        grid-template-columns: 1fr;
        margin-top: 38px;
      }

      .hero .achievement-grid {
        margin-top: 32px;
      }

      .achievement-item {
        padding: 0 0 28px;
        border-right: 0;
        border-bottom: 1px solid rgba(13, 35, 64, 0.14);
      }

      .achievement-item + .achievement-item {
        padding-top: 28px;
      }

      .achievement-item:last-child {
        padding-bottom: 0;
        border-bottom: 0;
      }

      .achievement-number {
        font-size: clamp(4rem, 18vw, 5.1rem);
      }

      .hero-visual {
        min-height: 370px;
      }

      .hero-logo {
        width: 62%;
        right: 16px;
      }

      .visual-stack {
        inset: 54px 14px 16px;
      }

      .workflow-panel:nth-child(2),
      .workflow-panel:nth-child(3) {
        width: 100%;
      }

      .card,
      .trust-panel,
      .contact-box,
      .recruit-band {
        padding: 20px;
      }

      .recruit-band {
        min-height: 360px;
        padding: 34px 22px;
      }

      .recruit-lead-desktop {
        display: none;
      }

      .recruit-lead-mobile {
        display: block;
      }

      .recruit-ghost {
        top: 28px;
        font-size: clamp(3.7rem, 21vw, 5.2rem);
      }

      .recruit-band::after {
        right: -56px;
        bottom: 26px;
        width: 76%;
        opacity: 0.3;
      }

      .final-cta h2 {
        font-size: clamp(3.8rem, 19vw, 5.2rem);
      }

      .cta-copy {
        margin-top: 22px;
        font-size: 0.98rem;
      }

      .contact-action-row,
      .contact-primary-button {
        width: 100%;
      }

      .contact-primary-button {
        min-height: 62px;
        padding: 16px 20px;
      }

      .message-grid,
      .business-grid {
        gap: 32px;
      }

      .section-label {
        font-size: 2.7rem;
      }

      .message-copy {
        font-size: 2.2rem;
      }

      .message-body {
        padding: 34px;
        font-size: clamp(1.08rem, 4.8vw, 1.22rem);
        line-height: 2;
      }

      .message-body p + p {
        margin-top: 22px;
      }

      .years-band {
        min-height: 0;
        grid-template-columns: 1fr;
        margin-top: 30px;
        padding: 24px 22px 26px;
      }

      .years-value {
        font-size: clamp(4rem, 20vw, 5.4rem);
      }

      .years-caption {
        max-width: none;
        margin-top: 14px;
      }

      .business-card-content {
        padding: 22px;
      }

      .business-visual {
        min-height: 150px;
      }

      .client-marquee {
        padding: 16px 0;
      }

      .client-logo {
        width: 132px;
        flex-basis: 132px;
        min-height: 68px;
        padding: 10px;
      }

      .client-logo img {
        max-width: 120px;
        max-height: 36px;
      }

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

      .footer-links {
        justify-content: flex-start;
      }
    }
  
