
      :root {
        --ink: #111111;
        --ink-2: #1b1b1b;
        --text: #4f4f4f;
        --muted: #727272;
        --line: #e1e1e1;
        --line-strong: #c9c9c9;
        --paper: #ffffff;
        --paper-2: #fcfcfc;
        --soft: #f7f7f7;
        --orange: #f57e35;
        --orange-dark: #b64b10;
        --blue: #0d6fc2;
        --blue-2: #2e85b0;
        --max: 1200px;
        --gutter: 32px;
        --radius-sm: 2px;
        --radius-md: 4px;
        --duration: 240ms;
        --ease: cubic-bezier(0.2, 0, 0, 1);
      }

      * {
        box-sizing: border-box;
      }

      html,
      body {
        max-width: 100%;
        overflow-x: hidden;
      }

      body {
        margin: 0;
        color: var(--text);
        background: var(--paper);
        font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        font-weight: 500;
        line-height: 1.7;
        letter-spacing: 0;
        -webkit-font-smoothing: antialiased;
      }

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

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

      h1,
      h2,
      h3,
      h4,
      p,
      ul {
        margin: 0;
      }

      ul {
        list-style: none;
        padding: 0;
      }

      .container {
        max-width: var(--max);
        margin: 0 auto;
        padding: 0 var(--gutter);
      }

      .section-label {
        display: inline-block;
        margin: 0 0 14px;
        color: var(--orange-dark);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.18em;
      }

      .section-label::before {
        content: "";
        display: inline-block;
        width: 28px;
        height: 1px;
        margin-right: 10px;
        background: var(--orange);
        vertical-align: middle;
      }

      .section-title {
        margin: 0;
        color: var(--ink);
        font-size: 34px;
        font-weight: 900;
        line-height: 1.32;
        letter-spacing: 0;
      }

      /* CJK words shouldn't break mid-phrase when there is enough width.
         Applied only above mobile; on small screens we let natural wrap occur. */
      @media (min-width: 720px) {
        .section-title,
        .hero h1,
        .route-card .route-title,
        .service-card .svc-title,
        .pillar-text strong,
        .news-title {
          word-break: keep-all;
          overflow-wrap: break-word;
          line-break: strict;
        }
      }

      /* Keep meaningful CJK units together so wraps fall on particle/clause boundaries. */
      .nobr {
        display: inline;
        white-space: nowrap;
      }

      .section-lead {
        max-width: 640px;
        margin-top: 18px;
        color: var(--text);
        font-size: 15px;
        font-weight: 500;
        line-height: 1.85;
      }

      .button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 0 22px;
        border: 1px solid var(--ink);
        background: var(--paper);
        color: var(--ink);
        font-family: inherit;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0;
        cursor: pointer;
        transition: background var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease);
      }

      .button .arrow {
        margin-left: 10px;
        font-size: 13px;
        font-weight: 900;
      }

      .button:hover {
        background: var(--ink);
        color: var(--paper);
      }

      .button.primary {
        background: var(--ink);
        color: var(--paper);
      }

      .button.primary:hover {
        background: var(--orange);
        border-color: var(--orange);
        color: var(--paper);
      }

      .button.ghost-light {
        background: transparent;
        border-color: rgba(255, 255, 255, 0.65);
        color: #ffffff;
      }

      .button.ghost-light:hover {
        background: #ffffff;
        color: var(--ink);
        border-color: #ffffff;
      }

      .button.primary-light {
        background: #ffffff;
        border-color: #ffffff;
        color: var(--ink);
      }

      .button.primary-light:hover {
        background: var(--orange);
        border-color: var(--orange);
        color: #ffffff;
      }

      .button-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
      }

      /* ====== Header ====== */
      .site-header {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: saturate(180%) blur(10px);
        -webkit-backdrop-filter: saturate(180%) blur(10px);
        border-bottom: 1px solid var(--line);
      }

      .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        max-width: 1280px;
        margin: 0 auto;
        padding: 14px var(--gutter);
      }

      .brand {
        display: inline-flex;
        align-items: center;
      }

      .brand img {
        height: 22px;
        width: auto;
      }

      .global-nav {
        display: flex;
        align-items: stretch;
        gap: 28px;
        color: var(--ink);
      }

      .global-nav a {
        position: relative;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        padding: 6px 2px;
        color: var(--ink);
        text-decoration: none;
      }

      .global-nav .nav-en {
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0.08em;
        line-height: 1.15;
        text-transform: uppercase;
        transition: color var(--duration) var(--ease);
      }

      .global-nav .nav-ja {
        font-size: 10.5px;
        font-weight: 500;
        letter-spacing: 0.04em;
        line-height: 1.2;
        color: var(--muted);
        transition: color var(--duration) var(--ease);
      }

      .global-nav a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: var(--orange);
        transform: translateX(-50%);
        transition: width var(--duration) var(--ease);
      }

      .global-nav a:hover::after {
        width: 100%;
      }

      .global-nav a:hover .nav-en {
        color: var(--orange);
      }

      .global-nav a:hover .nav-ja {
        color: var(--ink);
      }

      .header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .header-contact {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        min-height: 52px;
        padding: 0 22px;
        background: var(--ink);
        color: #ffffff;
        text-decoration: none;
        transition: background var(--duration) var(--ease);
      }

      .header-contact .nav-en {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.1em;
        line-height: 1.15;
        text-transform: uppercase;
      }

      .header-contact .nav-ja {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.04em;
        line-height: 1.2;
        color: rgba(255, 255, 255, 0.7);
      }

      .header-contact:hover {
        background: var(--orange);
      }

      .header-contact:hover .nav-ja {
        color: rgba(255, 255, 255, 0.9);
      }

      .menu-toggle {
        display: none;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1px solid var(--line);
        cursor: pointer;
      }

      .menu-toggle span,
      .menu-toggle span::before,
      .menu-toggle span::after {
        content: "";
        display: block;
        width: 18px;
        height: 2px;
        background: var(--ink);
        position: relative;
      }

      .menu-toggle span::before {
        position: absolute;
        top: -6px;
      }

      .menu-toggle span::after {
        position: absolute;
        top: 6px;
      }

      /* ====== Hero ====== */
      .hero {
        position: relative;
        min-height: 640px;
        height: calc(100vh - 81px);
        max-height: 860px;
        color: #ffffff;
        overflow: hidden;
        isolation: isolate;
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("/assets/images/top/hero-digital-city.png");
        background-size: cover;
        background-position: center right;
        z-index: -2;
      }

      .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(90deg, rgba(7, 12, 22, 0.92) 0%, rgba(7, 12, 22, 0.78) 32%, rgba(7, 12, 22, 0.32) 64%, rgba(7, 12, 22, 0.6) 100%),
          linear-gradient(180deg, rgba(7, 12, 22, 0.2) 0%, rgba(7, 12, 22, 0.6) 100%);
        z-index: -1;
      }

      .hero-inner {
        max-width: var(--max);
        margin: 0 auto;
        padding: 96px var(--gutter) 64px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 28px;
        color: rgba(255, 255, 255, 0.92);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.22em;
      }

      .hero-eyebrow::before {
        content: "";
        display: inline-block;
        width: 36px;
        height: 1px;
        background: var(--orange);
      }

      .hero h1 {
        margin: 0 0 28px;
        color: #ffffff;
        font-size: 60px;
        font-weight: 900;
        line-height: 1.15;
        letter-spacing: 0;
        text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
      }

      .hero h1 .br-pc {
        display: inline;
      }

      .hero-lead {
        max-width: 580px;
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.86);
        font-size: 16px;
        font-weight: 500;
        line-height: 1.85;
      }

      .hero-meta {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-top: 32px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.18em;
      }

      .hero-meta-dot {
        width: 6px;
        height: 6px;
        background: var(--orange);
        border-radius: 50%;
        animation: pulse 2.4s ease-in-out infinite;
      }

      @keyframes pulse {
        0%, 100% { opacity: 0.4; transform: scale(1); }
        50% { opacity: 1; transform: scale(1.4); }
      }

      .hero-scroll {
        position: absolute;
        right: var(--gutter);
        bottom: 28px;
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.22em;
        writing-mode: vertical-rl;
      }

      .hero-scroll::after {
        content: "";
        width: 1px;
        height: 60px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
        animation: scroll-line 2.4s ease-in-out infinite;
      }

      @keyframes scroll-line {
        0% { transform: scaleY(0); transform-origin: top; }
        50% { transform: scaleY(1); transform-origin: top; }
        51% { transform: scaleY(1); transform-origin: bottom; }
        100% { transform: scaleY(0); transform-origin: bottom; }
      }

      /* ====== Section base ====== */
      .section {
        padding: 96px 0;
        position: relative;
      }

      .section.compact {
        padding: 72px 0;
      }

      .section-head {
        margin-bottom: 44px;
      }

      .section-head.center {
        text-align: center;
      }

      .section-head.center .section-label::before {
        margin-right: 10px;
      }

      /* ====== Site Routes ====== */
      .routes {
        background: var(--soft);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
      }

      .routes .section-title {
        font-size: 28px;
        white-space: nowrap;
      }

      .routes-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background: var(--line);
        border: 1px solid var(--line);
      }

      .route-card {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 200px;
        padding: 26px 24px;
        background: var(--paper);
        color: var(--ink);
        transition: background var(--duration) var(--ease);
        overflow: hidden;
      }

      .route-card::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 3px;
        background: var(--orange);
        transform: scaleX(0);
        transform-origin: left center;
        transition: transform var(--duration) var(--ease);
      }

      .route-card:hover::after {
        transform: scaleX(1);
      }

      .route-card:hover {
        background: var(--paper-2);
      }

      .route-card .kicker {
        color: var(--muted);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.22em;
      }

      .route-card .route-title {
        margin-top: 14px;
        color: var(--ink);
        font-size: 22px;
        font-weight: 900;
        line-height: 1.4;
      }

      .route-card .route-desc {
        margin-top: 8px;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.7;
      }

      .route-card .route-arrow {
        margin-top: 22px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--ink);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.08em;
      }

      .route-card .route-arrow::after {
        content: "→";
        transition: transform var(--duration) var(--ease);
      }

      .route-card:hover .route-arrow::after {
        transform: translateX(4px);
      }

      /* ====== About ====== */
      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
      }

      .about-copy .section-title {
        font-size: 38px;
        line-height: 1.3;
      }

      .about-body {
        margin-top: 28px;
        color: var(--text);
        font-size: 15px;
        line-height: 1.95;
      }

      .about-body p + p {
        margin-top: 16px;
      }

      .about-actions {
        margin-top: 36px;
      }

      .about-visual {
        position: relative;
        aspect-ratio: 5 / 4;
        background: var(--soft);
      }

      .about-visual-wrap {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
      }

      .about-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .about-visual-wrap::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: var(--orange);
      }

      .about-visual-frame {
        position: absolute;
        right: -20px;
        bottom: -20px;
        width: 60%;
        max-width: 320px;
        padding: 24px 22px;
        background: var(--ink);
        color: #ffffff;
      }

      .about-visual-frame .frame-label {
        color: var(--orange);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.2em;
      }

      .about-visual-frame .frame-text {
        margin-top: 8px;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.6;
      }

      /* ====== Services ====== */
      .services {
        background: var(--paper-2);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
      }

      .services-head {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: end;
        margin-bottom: 36px;
      }

      .services-head .section-title {
        font-size: 32px;
      }

      .services-head .section-lead {
        margin-top: 0;
        font-size: 14px;
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }

      .service-card {
        position: relative;
        display: flex;
        flex-direction: column;
        min-height: 220px;
        padding: 22px 22px 22px 22px;
        overflow: hidden;
        background-color: #eaf3f9;
        background-size: cover;
        background-position: center right;
        background-repeat: no-repeat;
        color: var(--ink);
        isolation: isolate;
      }

      .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 38%, rgba(255, 255, 255, 0.22) 70%, rgba(255, 255, 255, 0) 100%);
        z-index: -1;
      }

      .service-card .svc-head {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 78%;
      }

      .service-card .svc-number {
        color: var(--orange-dark);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.22em;
      }

      .service-card .svc-number::before {
        content: "";
        display: inline-block;
        width: 22px;
        height: 1px;
        margin-right: 8px;
        background: var(--orange);
        vertical-align: middle;
      }

      .service-card .svc-title {
        color: var(--ink);
        font-size: 19px;
        font-weight: 900;
        line-height: 1.4;
        letter-spacing: 0;
      }

      .service-card .svc-desc {
        max-width: 70%;
        color: var(--text);
        font-size: 12.5px;
        line-height: 1.7;
      }

      .service-card-link {
        text-decoration: none;
        transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
      }

      .service-card-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 42px rgba(17, 17, 17, 0.14);
      }

      .service-card .svc-cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        width: fit-content;
        margin-top: 2px;
        color: var(--orange-dark);
        font-size: 12px;
        font-weight: 900;
        line-height: 1.4;
      }

      .service-card-1 { background-image: url("/assets/images/top/service-backgrounds/service-circular-commerce.png"); }
      .service-card-2 { background-image: url("/assets/images/top/service-backgrounds/service-data-analytics.png"); }
      .service-card-3 { background-image: url("/assets/images/top/service-backgrounds/service-digital-marketing.png"); }
      .service-card-4 { background-image: url("/assets/images/top/service-backgrounds/service-product-creation.png"); }
      .service-card-5 { background-image: url("/assets/images/top/service-backgrounds/service-venture-investment.png"); }
      .service-card-6 { background-image: url("/assets/images/top/service-backgrounds/service-cyber-security.png"); }

      .services-cta {
        display: flex;
        justify-content: center;
        margin-top: 36px;
      }

      /* ====== Outlook ====== */
      .outlook {
        position: relative;
        background: var(--paper);
        color: var(--text);
        overflow: hidden;
      }

      .outlook::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("/assets/images/top/additional-visuals/additional-light-tech-texture.png") center / cover no-repeat;
        opacity: 0.28;
        z-index: 0;
      }

      .outlook::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 55%, rgba(255, 255, 255, 0.7) 100%);
        z-index: 0;
      }

      .outlook .container {
        position: relative;
        z-index: 1;
      }

      .outlook-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
      }

      .outlook .section-title {
        font-size: 38px;
        line-height: 1.3;
      }

      .outlook-body {
        margin-top: 24px;
        color: var(--text);
        font-size: 15px;
        line-height: 1.95;
      }

      .outlook-body p + p {
        margin-top: 14px;
      }

      .outlook-pillars {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1px;
        background: var(--line);
        border: 1px solid var(--line);
      }

      .pillar {
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 20px;
        align-items: start;
        padding: 22px 22px;
        background: var(--paper);
        transition: background var(--duration) var(--ease);
      }

      .pillar:hover {
        background: var(--paper-2);
      }

      .pillar-num {
        color: var(--orange-dark);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 0.2em;
      }

      .pillar-text strong {
        display: block;
        color: var(--ink);
        font-size: 16px;
        font-weight: 800;
        letter-spacing: 0;
      }

      .pillar-text span {
        display: block;
        margin-top: 6px;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.75;
      }

      /* ====== Recruit ====== */
      .recruit {
        background: var(--soft);
      }

      .recruit-grid {
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 56px;
        align-items: center;
      }

      .recruit-visual {
        position: relative;
        aspect-ratio: 4 / 5;
        overflow: hidden;
        background: var(--ink);
      }

      .recruit-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .recruit-visual::after {
        content: "RECRUIT";
        position: absolute;
        left: 22px;
        bottom: 18px;
        color: #ffffff;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.32em;
      }

      .recruit-copy .section-title {
        font-size: 36px;
        line-height: 1.3;
      }

      .recruit-body {
        margin-top: 22px;
        color: var(--text);
        font-size: 15px;
        line-height: 1.95;
      }

      .recruit-links {
        margin-top: 32px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1px;
        background: var(--line);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
      }

      .recruit-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 22px;
        background: var(--paper);
        color: var(--ink);
        font-size: 14px;
        font-weight: 800;
        transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
      }

      .recruit-link::after {
        content: "→";
        color: var(--muted);
        font-weight: 900;
        transition: color var(--duration) var(--ease), transform var(--duration) var(--ease);
      }

      .recruit-link:hover {
        background: var(--ink);
        color: #ffffff;
      }

      .recruit-link:hover::after {
        color: var(--orange);
        transform: translateX(4px);
      }

      .recruit-cta {
        margin-top: 32px;
      }

      /* ====== News ====== */
      .news-head {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: end;
        gap: 24px;
        margin-bottom: 32px;
      }

      .news-head .section-title {
        font-size: 32px;
      }

      .news-list {
        border-top: 1px solid var(--ink);
      }

      .news-item {
        display: grid;
        grid-template-columns: 136px minmax(0, 1fr) 34px;
        gap: 24px;
        align-items: center;
        padding: 24px 8px;
        border-bottom: 1px solid var(--line);
        color: var(--ink);
        transition: background var(--duration) var(--ease);
      }

      .news-item:hover {
        background: var(--paper-2);
      }

      .news-date {
        color: var(--muted);
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.06em;
      }

      .news-title {
        color: var(--ink);
        font-size: 16px;
        font-weight: 700;
        line-height: 1.6;
        word-break: keep-all;
        overflow-wrap: break-word;
        line-break: strict;
      }

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

      .news-arrow {
        display: inline-grid;
        place-items: center;
        justify-self: end;
        width: 30px;
        height: 30px;
        border: 1px solid var(--line);
        color: var(--ink);
        font-size: 14px;
        font-weight: 900;
        transition: transform var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease);
      }

      .news-item:hover .news-arrow {
        color: var(--orange);
        border-color: var(--orange);
        transform: translateX(4px);
      }

      /* Shared contact CTA layout is loaded from /shared-contact-cta.css. */

      /* ====== Footer ====== */
      .footer {
        background: #0b0b0c;
        color: #c9c9c9;
        padding: 64px 0 32px;
      }

      .footer-top {
        display: grid;
        grid-template-columns: 1.3fr repeat(4, 1fr);
        gap: 36px;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      }

      .footer-brand .footer-logo {
        display: inline-flex;
        align-items: center;
        margin-bottom: 18px;
      }

      .footer-brand .footer-logo img {
        height: 24px;
        width: auto;
        display: block;
      }

      .footer-brand p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 13px;
        line-height: 1.85;
      }

      .footer-col strong {
        display: block;
        margin-bottom: 14px;
        color: #ffffff;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.08em;
      }

      .footer-col a {
        display: block;
        margin-top: 8px;
        color: rgba(255, 255, 255, 0.62);
        font-size: 13px;
        transition: color var(--duration) var(--ease);
      }

      .footer-col a:hover {
        color: var(--orange);
      }

      .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        padding-top: 24px;
        color: rgba(255, 255, 255, 0.4);
        font-size: 12px;
      }

      /* ====== Responsive ====== */
      @media (max-width: 1366px) {
        .hero h1 {
          font-size: 54px;
        }
        .services-head {
          margin-bottom: 24px;
        }
        .services-head .section-title {
          font-size: 28px;
        }
        .services {
          padding: 56px 0;
        }
        .services-cta {
          margin-top: 24px;
        }
        .service-card {
          min-height: 170px;
          padding: 20px 20px;
        }
        .service-card .svc-title {
          font-size: 17px;
        }
        .service-card .svc-desc {
          font-size: 12px;
        }
      }

      @media (max-width: 1100px) {
        .hero h1 {
          font-size: 48px;
        }
        .hero-inner {
          padding: 80px var(--gutter) 60px;
        }
        .section-title {
          font-size: 30px;
        }
        .about-copy .section-title,
        .outlook .section-title,
        .recruit-copy .section-title {
          font-size: 30px;
        }
        .about-grid,
        .outlook-grid,
        .recruit-grid {
          gap: 40px;
        }
        .services-head {
          gap: 24px;
        }
        .services-grid {
          gap: 12px;
        }
        .service-card {
          min-height: 160px;
          padding: 18px 16px;
        }
        .service-card .svc-title {
          font-size: 16px;
        }
        .service-card .svc-desc {
          font-size: 11.5px;
        }
        .footer-top {
          grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
          gap: 24px;
        }
      }

      @media (max-width: 960px) {
        :root {
          --gutter: 24px;
        }
        .global-nav,
        .header-contact {
          display: none;
        }
        .menu-toggle {
          display: inline-flex;
        }
        .section {
          padding: 72px 0;
        }
        .hero {
          min-height: 580px;
          height: auto;
          padding-bottom: 24px;
        }
        .hero-inner {
          padding: 96px var(--gutter) 96px;
        }
        .hero h1 {
          font-size: 38px;
          line-height: 1.22;
        }
        .hero h1 .br-pc {
          display: none;
        }
        .hero-scroll {
          display: none;
        }
        .routes-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .routes .section-title {
          font-size: 24px;
          white-space: normal;
        }
        .about-grid,
        .outlook-grid,
        .recruit-grid,
        .services-head,
        .news-head {
          grid-template-columns: 1fr;
          gap: 36px;
        }
        .services-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .about-visual-frame {
          right: 0;
          bottom: 0;
        }
        .news-item {
          grid-template-columns: 112px minmax(0, 1fr) 30px;
          gap: 14px;
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 28px;
        }
        .footer-brand {
          grid-column: 1 / -1;
        }
      }

      @media (max-width: 720px) {
        .news-item {
          grid-template-columns: minmax(0, 1fr) 30px;
          gap: 8px 14px;
          padding: 20px 4px;
        }
        .news-date {
          grid-column: 1 / -1;
        }
        .news-title {
          grid-column: 1;
          font-size: 15.5px;
          line-height: 1.7;
        }
        .news-arrow {
          grid-column: 2;
          grid-row: 2;
          justify-self: end;
        }
      }

      @media (max-width: 560px) {
        .section {
          padding: 56px 0;
        }
        .hero {
          min-height: 540px;
        }
        .hero-inner {
          padding: 80px var(--gutter) 80px;
        }
        .hero h1 {
          font-size: 32px;
          line-height: 1.28;
        }
        .hero-lead {
          font-size: 14px;
        }
        .section-title,
        .about-copy .section-title,
        .outlook .section-title,
        .recruit-copy .section-title {
          font-size: 24px;
        }
        .routes .section-title {
          font-size: 20px;
        }
        .routes-grid {
          grid-template-columns: 1fr;
        }
        .services-grid {
          grid-template-columns: 1fr;
        }
        .service-card {
          min-height: 260px;
        }
        .recruit-links {
          grid-template-columns: 1fr;
        }
        .news-item {
          grid-template-columns: minmax(0, 1fr) 30px;
          gap: 8px 14px;
          padding: 20px 4px;
        }
        .news-date {
          grid-column: 1 / -1;
        }
        .news-title {
          grid-column: 1;
        }
        .news-arrow {
          grid-column: 2;
          grid-row: 2;
          justify-self: end;
        }
        .button-row .button {
          flex: 1 1 auto;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation-duration: 0.001ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.001ms !important;
        }
      }


/* Staging integration overrides: keep the mockup visual after the shared site CSS. */
body.page-home-mock {
  padding-top: 0;
  background: var(--paper);
}

body.page-home-mock::before,
body.page-home-mock::after {
  display: none !important;
}

body.page-home-mock main {
  width: 100%;
  max-width: none;
  margin: 0;
}

body.page-home-mock .footer {
  width: 100%;
  max-width: none;
  margin: 0;
}

body.page-home-mock .site-header {
  display: block;
  gap: 0;
  padding: 0;
}

body.page-home-mock .header-inner {
  width: 100%;
}

body.page-home-mock .hero {
  display: block;
  grid-template-columns: none;
  gap: 0;
  align-items: stretch;
  padding: 0;
}

body.page-home-mock .button {
  width: auto;
  min-width: 0;
  border-radius: 0;
  box-shadow: none;
}

body.page-home-mock .service-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.page-home-mock .news-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}

body.page-home-mock .news-list {
  display: block;
  grid-template-columns: none;
  gap: 0;
  margin-top: 0;
  border-top: 1px solid var(--ink);
  background: transparent;
}

body.page-home-mock .news-item {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr) 34px;
  gap: 24px;
  align-items: center;
  width: 100%;
  min-height: 0;
  padding: 24px 8px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  overflow: visible;
}

body.page-home-mock .news-item:hover {
  background: var(--paper-2);
}

body.page-home-mock .news-date {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

body.page-home-mock .news-title {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

body.page-home-mock .news-title__phrase {
  display: inline-block;
  white-space: nowrap;
}

body.page-home-mock .news-arrow {
  display: inline-grid;
  place-items: center;
  justify-self: end;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  transition: transform var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

body.page-home-mock .news-item:hover .news-arrow {
  color: var(--orange);
  border-color: var(--orange);
  transform: translateX(4px);
}

@media (max-width: 960px) {
  body.page-home-mock .hero {
    padding-bottom: 24px;
  }

  body.page-home-mock .news-head {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  body.page-home-mock .news-item {
    grid-template-columns: 112px minmax(0, 1fr) 30px;
    gap: 14px;
  }

  body.page-home-mock .site-header.nav-open .global-nav {
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px var(--gutter) 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  }

  body.page-home-mock .site-header.nav-open .global-nav a {
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  body.page-home-mock .news-item {
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 8px 14px;
    padding: 20px 4px;
  }

  body.page-home-mock .news-date {
    grid-column: 1 / -1;
  }

  body.page-home-mock .news-title {
    grid-column: 1;
    font-size: 15.5px;
    line-height: 1.7;
  }

  body.page-home-mock .news-arrow {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }
}
