:root {
        --ink: #111111;
        --ink-2: #1b1b1b;
        --text: #4f4f4f;
        --muted: #727272;
        --line: #e1e1e1;
        --line-strong: #c9c9c9;
        --paper: #ffffff;
        --paper-2: #fcfcfc;
        --soft: #f7f7f7;
        --soft-2: #efefef;
        --orange: #f57e35;
        --orange-dark: #b64b10;
        --blue: #0d6fc2;
        --max: 1200px;
        --gutter: 32px;
        --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.75;
        letter-spacing: 0;
      }

      a { color: inherit; text-decoration: none; }
      img { max-width: 100%; display: block; }
      h1, h2, h3, p { margin-top: 0; }

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

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

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

      /* ====== Header (bilingual, shared with TOP / Service mockups) ====== */
      .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);
      }

      .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,
      .global-nav .is-current::after { width: 100%; }

      .global-nav a:hover .nav-en,
      .global-nav .is-current .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;
        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; }

      /* ====== Shared typography ====== */
      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin: 0 0 18px;
        color: var(--orange);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      .eyebrow::before {
        content: "";
        display: inline-block;
        width: 34px;
        height: 1px;
        background: currentColor;
      }

      /* ====== Hero ====== */
      .page-hero {
        position: relative;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        min-height: 660px;
        color: #ffffff;
        overflow: hidden;
        isolation: isolate;
      }

      .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("/assets/images/recruitment/recruitment-hero-team-execution.png");
        background-size: cover;
        background-position: center right;
        z-index: -2;
        transform: scale(1.04);
        animation: heroZoom 14s ease-out forwards;
      }

      @keyframes heroZoom {
        from { transform: scale(1.08); }
        to { transform: scale(1.0); }
      }

      .page-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(95deg, rgba(7, 12, 22, 0.92) 0%, rgba(7, 12, 22, 0.78) 36%, rgba(7, 12, 22, 0.3) 68%, rgba(7, 12, 22, 0.62) 100%),
          linear-gradient(180deg, rgba(7, 12, 22, 0.18) 0%, rgba(7, 12, 22, 0.55) 100%);
        z-index: -1;
      }

      .page-hero-inner {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
        gap: 56px;
        align-items: end;
        max-width: var(--max);
        margin: 0 auto;
        padding: 120px var(--gutter) 96px;
      }

      .page-hero .eyebrow {
        color: rgba(255, 255, 255, 0.92);
        letter-spacing: 0.22em;
      }

      .page-hero h1 {
        margin: 0 0 26px;
        color: #ffffff;
        font-size: clamp(44px, 5.6vw, 78px);
        font-weight: 900;
        line-height: 1.08;
        letter-spacing: -0.01em;
        text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
      }

      .page-hero .lead {
        margin: 0 0 34px;
        max-width: 600px;
        color: rgba(255, 255, 255, 0.88);
        font-size: 16px;
        font-weight: 500;
        line-height: 1.95;
      }

      .hero-aside {
        position: relative;
        align-self: end;
      }

      .hero-panel {
        padding: 24px 24px 22px;
        background: rgba(10, 14, 22, 0.64);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-left: 3px solid var(--orange);
        border-radius: 0;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
      }

      .hero-panel-title {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0 0 16px;
        color: #ffffff;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

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

      .hero-links {
        display: grid;
        border-top: 1px solid rgba(255, 255, 255, 0.22);
      }

      .hero-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        min-height: 58px;
        padding: 12px 2px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 0;
        color: #ffffff;
        font-size: 13.5px;
        font-weight: 800;
        transition: color var(--duration) var(--ease), padding var(--duration) var(--ease);
      }

      .hero-links a:hover {
        color: var(--orange);
        padding-left: 8px;
      }

      .hero-links a .arrow { color: var(--orange); font-weight: 700; }
      .hero-links a:hover .arrow { color: var(--orange); }

      /* ====== Buttons ====== */
      .button {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 58px;
        padding: 0 26px;
        background: var(--ink);
        color: #ffffff;
        font-size: 14.5px;
        font-weight: 800;
        letter-spacing: 0.02em;
        border: 1px solid var(--ink);
        transition: background var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease);
      }

      .button .arrow {
        display: inline-block;
        transition: transform var(--duration) var(--ease);
      }

      .button:hover { background: var(--orange); border-color: var(--orange); }
      .button:hover .arrow { transform: translateX(3px); }

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

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

      .button.ghost-dark {
        background: transparent;
        color: var(--ink);
        border-color: var(--line-strong);
      }
      .button.ghost-dark:hover {
        background: var(--ink);
        color: #ffffff;
        border-color: var(--ink);
      }

      /* ====== Sections ====== */
      .section {
        position: relative;
        padding: 110px 0;
        border-bottom: 1px solid var(--line);
      }

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

      .section-dark {
        background: var(--ink);
        color: #ffffff;
        border-bottom-color: rgba(255, 255, 255, 0.08);
      }
      .section-dark .eyebrow { color: rgba(255, 255, 255, 0.92); }

      .section-head {
        display: grid;
        grid-template-columns: 0.95fr 1.05fr;
        gap: 48px;
        align-items: end;
        margin-bottom: 56px;
      }

      .section-head h2 {
        margin: 0;
        color: var(--ink);
        font-size: clamp(28px, 3.6vw, 44px);
        font-weight: 900;
        line-height: 1.24;
        letter-spacing: -0.005em;
      }

      .section-dark .section-head h2 { color: #ffffff; }

      .section-head .summary {
        margin: 0;
        color: var(--text);
        font-size: 15.5px;
        font-weight: 500;
        line-height: 1.95;
      }

      .section-dark .section-head .summary { color: rgba(255, 255, 255, 0.78); }

      /* ====== Concept (4 value cards) ====== */
      .mission-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
      }

      .mission-card {
        position: relative;
        display: flex;
        flex-direction: column;
        min-height: 232px;
        padding: 30px 26px 26px;
        background: var(--paper);
        border: 1px solid var(--line);
        overflow: hidden;
        transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
      }

      .mission-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 52px;
        height: 3px;
        background: var(--orange);
        transition: width var(--duration) var(--ease);
      }

      .mission-card::after {
        position: absolute;
        right: -12px;
        bottom: -32px;
        color: rgba(238, 120, 0, 0.07);
        font-size: 148px;
        font-weight: 900;
        line-height: 1;
        letter-spacing: -0.04em;
        pointer-events: none;
        user-select: none;
      }

      .mission-card:nth-child(1)::after { content: "01"; }
      .mission-card:nth-child(2)::after { content: "02"; }
      .mission-card:nth-child(3)::after { content: "03"; }
      .mission-card:nth-child(4)::after { content: "04"; }

      .mission-card:hover {
        border-color: var(--ink);
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(17, 17, 17, 0.06);
      }

      .mission-card:hover::before { width: 100%; }
      .mission-card:hover::after { color: rgba(238, 120, 0, 0.11); }

      .mission-card .num {
        position: relative;
        z-index: 1;
        display: block;
        margin-bottom: 16px;
        color: var(--orange);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.16em;
      }

      .mission-card h3 {
        position: relative;
        z-index: 1;
        margin: 0 0 12px;
        color: var(--ink);
        font-size: 20px;
        font-weight: 900;
        line-height: 1.4;
      }

      .mission-card p {
        position: relative;
        z-index: 1;
        margin: 0;
        color: var(--text);
        font-size: 14px;
        line-height: 1.85;
      }

      /* ====== Business (split: text + visual) ====== */
      .business-split {
        display: grid;
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: 60px;
        align-items: center;
      }

      .business-split .copy h2 {
        margin: 0 0 22px;
        color: var(--ink);
        font-size: clamp(28px, 3.4vw, 40px);
        font-weight: 900;
        line-height: 1.28;
      }

      .business-split .copy p {
        margin: 0 0 16px;
        color: var(--text);
        font-size: 15px;
        line-height: 2;
      }

      .business-split .copy p:last-child { margin-bottom: 0; }

      .business-visual {
        position: relative;
        aspect-ratio: 4 / 3;
        overflow: hidden;
        background: #1a1a1a;
      }

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

      .business-visual::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(10, 12, 16, 0) 35%, rgba(10, 12, 16, 0.78) 100%);
      }

      .business-caption {
        position: absolute;
        left: 24px;
        right: 24px;
        bottom: 24px;
        z-index: 1;
        padding: 18px 20px;
        background: rgba(17, 17, 17, 0.88);
        border-left: 3px solid var(--orange);
        color: #ffffff;
      }

      .business-caption strong {
        display: block;
        margin-bottom: 4px;
        color: var(--orange);
        font-size: 11.5px;
        font-weight: 800;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      .business-caption p {
        margin: 0;
        color: #ffffff;
        font-size: 13.5px;
        font-weight: 700;
        line-height: 1.7;
      }

      /* ====== Work Field (6 fields) ====== */
      .fields-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
      }

      .field-card {
        position: relative;
        display: flex;
        flex-direction: column;
        min-height: 300px;
        aspect-ratio: 4 / 3;
        padding: 0;
        background: #111111;
        border: 1px solid var(--line);
        overflow: hidden;
        transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
      }

      .field-card:hover {
        border-color: var(--ink);
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(17, 17, 17, 0.12);
      }

      .field-visual {
        position: absolute;
        inset: 0;
        overflow: hidden;
      }

      .field-visual::before {
        content: "";
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transition: transform var(--duration) var(--ease);
      }

      .field-visual::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          180deg,
          rgba(17, 17, 17, 0) 0%,
          rgba(17, 17, 17, 0) 24%,
          rgba(17, 17, 17, 0.55) 46%,
          rgba(17, 17, 17, 0.9) 72%,
          rgba(17, 17, 17, 0.97) 100%
        );
        pointer-events: none;
      }

      .field-card:hover .field-visual::before { transform: scale(1.04); }

      .field-visual--bizdev::before {
        background-image: url("/assets/images/recruitment-occupation/occupation-bizdev-strategy-v2.png");
      }
      .field-visual--marketing::before {
        background-image: url("/assets/images/recruitment-occupation/occupation-marketing-analytics-v2.png");
      }
      .field-visual--product::before {
        background-image: url("/assets/images/recruitment-occupation/occupation-engineering-product-tools-v2.png");
      }
      .field-visual--data::before {
        background-image: url("/assets/images/recruitment-occupation/occupation-analytics-market-data-v2.png");
      }
      .field-visual--operation::before {
        background-image: url("/assets/images/recruitment-occupation/occupation-ec-operations-inspection-v2.png");
      }
      .field-visual--corporate::before {
        background-image: url("/assets/images/recruitment-occupation/occupation-corporate-hr-org-design-v2.png");
      }

      .field-body {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        margin-top: auto;
        padding: 16px 20px 14px;
      }

      .field-card .num {
        color: var(--orange);
        font-size: 11.5px;
        font-weight: 900;
        letter-spacing: 0.16em;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
      }

      .field-card h3 {
        margin: 6px 0 8px;
        color: #ffffff;
        font-size: 19px;
        font-weight: 900;
        line-height: 1.4;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
      }

      .field-card p {
        margin: 0 0 12px;
        color: rgba(255, 255, 255, 0.82);
        font-size: 13.5px;
        line-height: 1.7;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
      }

      .field-card .cta {
        margin-top: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        color: #ffffff;
        font-size: 12.5px;
        font-weight: 900;
        letter-spacing: 0.02em;
      }

      .field-card .cta .arrow {
        color: var(--orange);
        transition: transform var(--duration) var(--ease);
      }

      .field-card:hover .cta .arrow { transform: translateX(4px); }

      /* ====== Work Style (dark, feature + small cards) ====== */
      .work-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
        gap: 18px;
      }

      .work-feature {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 460px;
        padding: 34px 32px 32px;
        overflow: hidden;
        isolation: isolate;
        color: #ffffff;
      }

      .work-feature::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("/assets/images/recruitment/recruitment-culture-workflow.png");
        background-size: cover;
        background-position: center;
        z-index: -2;
        transition: transform 800ms var(--ease);
      }

      .work-feature:hover::before { transform: scale(1.04); }

      .work-feature::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(7, 12, 22, 0.15) 0%, rgba(7, 12, 22, 0.85) 78%, rgba(7, 12, 22, 0.95) 100%);
        z-index: -1;
      }

      .work-feature .eyebrow {
        color: rgba(255, 255, 255, 0.92);
        margin-bottom: 14px;
      }

      .work-feature h3 {
        margin: 0 0 14px;
        color: #ffffff;
        font-size: clamp(24px, 2.4vw, 30px);
        font-weight: 900;
        line-height: 1.32;
      }

      .work-feature p {
        margin: 0;
        color: rgba(255, 255, 255, 0.85);
        font-size: 14.5px;
        line-height: 1.95;
        max-width: 520px;
      }

      .work-sub {
        display: grid;
        grid-template-rows: 1fr 1fr;
        gap: 18px;
      }

      .work-card {
        display: flex;
        flex-direction: column;
        gap: 14px;
        min-height: 220px;
        padding: 28px 26px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.16);
      }

      .work-card .num {
        color: var(--orange);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.16em;
      }

      .work-card h3 {
        margin: 0;
        color: #ffffff;
        font-size: 19px;
        font-weight: 900;
        line-height: 1.4;
      }

      .work-card p {
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
        font-size: 14px;
        line-height: 1.85;
      }

      /* ====== People (2 person cards) ====== */
      .people-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
      }

      .person-card {
        display: grid;
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        min-height: 320px;
        background: var(--paper);
        border: 1px solid var(--line);
        overflow: hidden;
        transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
      }

      .person-card:hover {
        border-color: var(--ink);
        box-shadow: 0 14px 32px rgba(17, 17, 17, 0.08);
      }

      .person-photo {
        position: relative;
        overflow: hidden;
        background: #1a1a1a;
      }

      .person-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 600ms var(--ease);
      }

      .person-card:hover .person-photo img { transform: scale(1.04); }

      .person-photo::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(10,12,16,0) 55%, rgba(10,12,16,0.35) 100%);
      }

      .person-body {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 28px 28px 26px;
      }

      .person-body .role {
        color: var(--orange);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.14em;
      }

      .person-body h3 {
        margin: 0;
        color: var(--ink);
        font-size: 20px;
        font-weight: 900;
        line-height: 1.45;
      }

      .person-body p {
        margin: 0;
        color: var(--text);
        font-size: 14px;
        line-height: 1.9;
      }

      .person-link {
        margin-top: auto;
        padding-top: 16px;
        border-top: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--ink);
        font-size: 13px;
        font-weight: 900;
      }

      .person-link .arrow {
        color: var(--orange);
        transition: transform var(--duration) var(--ease);
      }

      .person-card:hover .person-link .arrow { transform: translateX(4px); }

      /* ====== Data & Environment ====== */
      .numbers-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        border-top: 1px solid var(--ink);
        border-left: 1px solid var(--line);
      }

      .number-card {
        display: flex;
        flex-direction: column;
        gap: 14px;
        min-height: 200px;
        padding: 28px 26px;
        background: var(--paper);
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
      }

      .number-card .label {
        color: var(--orange);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.16em;
      }

      .number-card .value {
        margin: 0;
        color: var(--ink);
        font-size: clamp(34px, 3.2vw, 44px);
        font-weight: 900;
        line-height: 1.05;
        letter-spacing: -0.01em;
      }

      .number-card .value .unit {
        margin-left: 4px;
        font-size: 0.42em;
        font-weight: 800;
        color: var(--text);
        letter-spacing: 0.02em;
      }

      .number-card .value.text {
        font-size: clamp(22px, 2.2vw, 28px);
        line-height: 1.2;
      }

      .number-card .note {
        margin: 0;
        color: var(--text);
        font-size: 13px;
        line-height: 1.8;
      }

      .data-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 36px;
      }

      /* ====== Recruit Contents (5 routes) ====== */
      .routes-grid {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 14px;
      }

      .route-card {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 14px;
        min-height: 238px;
        padding: 22px 22px 20px;
        background: var(--paper);
        border: 1px solid var(--line);
        color: var(--ink);
        overflow: hidden;
        transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), background var(--duration) var(--ease);
      }

      .route-card:hover {
        border-color: var(--ink);
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(17, 17, 17, 0.06);
      }

      .route-card .num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--ink);
        color: #ffffff;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 0.02em;
        transition: background var(--duration) var(--ease);
      }

      .route-card:hover .num { background: var(--orange); }

      .route-card h3 {
        margin: 4px 0 0;
        color: var(--ink);
        font-size: 19px;
        font-weight: 900;
        line-height: 1.4;
      }

      .route-card p {
        margin: 0;
        color: var(--text);
        font-size: 13.5px;
        line-height: 1.85;
      }

      .route-card .cta {
        margin-top: auto;
        padding-top: 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--ink);
        font-size: 12.5px;
        font-weight: 900;
        letter-spacing: 0.02em;
        border-top: 1px solid var(--line);
      }

      .route-card .cta .arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: transparent;
        border: 1px solid var(--line);
        color: var(--orange);
        font-size: 13px;
        line-height: 1;
        transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease), color var(--duration) var(--ease), transform var(--duration) var(--ease);
      }

      .route-card:hover .cta .arrow {
        background: var(--orange);
        border-color: var(--orange);
        color: #ffffff;
        transform: translateX(2px);
      }

      /* ====== Entry CTA ====== */
      .entry-section {
        position: relative;
        padding: 100px 0 110px;
        background: var(--ink);
        color: #ffffff;
        overflow: hidden;
        isolation: isolate;
      }

      .entry-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(circle at 80% 50%, rgba(245, 126, 53, 0.18), transparent 60%),
          radial-gradient(circle at 10% 30%, rgba(13, 111, 194, 0.22), transparent 55%);
        z-index: -1;
      }

      .entry-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
        gap: 56px;
        align-items: center;
      }

      .entry-copy .eyebrow { color: rgba(255, 255, 255, 0.92); }

      .entry-copy h2 {
        margin: 0 0 18px;
        color: #ffffff;
        font-size: clamp(28px, 3.4vw, 40px);
        font-weight: 900;
        line-height: 1.28;
      }

      .entry-copy p {
        margin: 0;
        max-width: 580px;
        color: rgba(255, 255, 255, 0.82);
        font-size: 15px;
        line-height: 1.95;
      }

      .entry-panel {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 28px;
        background: #ffffff;
        color: var(--ink);
      }

      .entry-panel h3 {
        margin: 0 0 4px;
        color: var(--ink);
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }

      .entry-panel .button {
        min-height: 60px;
        justify-content: space-between;
        padding: 0 22px;
        background: var(--ink);
        color: #ffffff;
        border-color: var(--ink);
      }

      .entry-panel .button.alt {
        background: #ffffff;
        color: var(--ink);
        border-color: var(--line-strong);
      }

      .entry-panel .button.alt:hover {
        background: var(--ink);
        color: #ffffff;
        border-color: var(--ink);
      }

      /* ====== 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; }

      .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) {
        .section { padding: 96px 0; }
        .fields-grid { gap: 16px; }
        .work-feature { min-height: 420px; }
      }

      @media (max-width: 1180px) {
        .page-hero-inner {
          grid-template-columns: 1fr;
          gap: 44px;
          padding: 104px var(--gutter) 80px;
        }
        .hero-aside { align-self: stretch; }
        .section-head {
          grid-template-columns: 1fr;
          gap: 18px;
          align-items: start;
          margin-bottom: 44px;
        }
        .business-split { grid-template-columns: 1fr; gap: 36px; }
        .work-grid {
          grid-template-columns: 1fr;
          gap: 18px;
        }
        .work-sub {
          grid-template-columns: 1fr 1fr;
          grid-template-rows: auto;
        }
        .entry-grid { grid-template-columns: 1fr; gap: 40px; }
      }

      @media (max-width: 960px) {
        :root { --gutter: 24px; }
        .global-nav,
        .header-contact { display: none; }
        .menu-toggle { display: inline-flex; }
        .section { padding: 80px 0; }
        .page-hero { min-height: auto; }
        .page-hero-inner { padding: 88px var(--gutter) 72px; }
        .fields-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .mission-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .routes-grid {
          grid-template-columns: repeat(6, minmax(0, 1fr));
        }
        .routes-grid > .route-card { grid-column: span 2; }
        .routes-grid > .route-card:nth-child(4) { grid-column: 2 / span 2; }
        .routes-grid > .route-card:nth-child(5) { grid-column: 4 / span 2; }
        .numbers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .people-grid { grid-template-columns: 1fr; }
        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 24px 28px;
          grid-auto-flow: row dense;
        }
        .footer-brand { grid-column: 1 / -1; }
        .footer-col:nth-child(2) { grid-column: 1; grid-row: 2; }
        .footer-col:nth-child(4) { grid-column: 2; grid-row: 2; }
        .footer-col:nth-child(3) { grid-column: 1; grid-row: 3; }
        .footer-col:nth-child(5) { grid-column: 2; grid-row: 3; }
      }

      @media (max-width: 720px) {
        .section { padding: 64px 0; }
        .page-hero-inner { padding: 72px var(--gutter) 56px; gap: 32px; }
        .page-hero h1 { font-size: 38px; line-height: 1.2; }
        .page-hero .lead { font-size: 15px; }
        .section-head h2 { font-size: 28px; }
        .business-split .copy h2 { font-size: 26px; }
        .fields-grid,
        .mission-grid,
        .numbers-grid { grid-template-columns: 1fr; }
        .routes-grid { grid-template-columns: 1fr; }
        .routes-grid > .route-card,
        .routes-grid > .route-card:nth-child(4),
        .routes-grid > .route-card:nth-child(5) { grid-column: auto; }
        .work-sub { grid-template-columns: 1fr; }
        .work-feature { min-height: 340px; padding: 28px 24px 26px; }
        .work-feature h3 { font-size: 22px; }
        .field-card { min-height: 0; }
        .number-card { min-height: 0; }
        .person-card { grid-template-columns: 1fr; }
        .person-photo { aspect-ratio: 5 / 3; }
        .entry-copy h2 { font-size: 26px; }
        .entry-panel { padding: 22px; }
        .entry-section { padding: 80px 0 84px; }
      }

      @media (max-width: 480px) {
        .data-actions { display: grid; grid-template-columns: 1fr; }
        .data-actions .button { width: 100%; }
        .footer-top { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 8px; }
      }

      @media (prefers-reduced-motion: reduce) {
        .page-hero::before { animation: none; transform: scale(1); }
        .field-card,
        .field-visual svg,
        .person-card,
        .person-photo img,
        .work-feature::before,
        .button .arrow,
        .field-card .cta .arrow,
        .person-link .arrow,
        .route-card .cta .arrow,
        .hero-links a {
          transition: none;
        }
        .field-card:hover .field-visual svg { transform: none; }
      }
