:root {
    --ink: #06172c;
    --ink-soft: #334155;
    --blue: #1267ff;
    --blue-dark: #073574;
    --teal: #25bda8;
    --paper: #f7f9fc;
    --white: #ffffff;
    --line: rgba(6, 23, 44, 0.12);
    --shadow: 0 24px 80px rgba(6, 23, 44, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 74px;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    line-height: 1.75;
}

img,
video {
    max-width: 100%;
}

a {
    color: inherit;
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 0 clamp(18px, 4vw, 54px);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 35px rgba(6, 23, 44, 0.08);
    backdrop-filter: blur(18px);
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.brand-text {
    display: grid;
    gap: 0;
    line-height: 1.02;
}

.brand-text strong {
    color: #0b1e3a;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
}

.brand-text small {
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.site-header.is-scrolled .brand-logo,
body:not(.home) .brand-logo {
    width: 48px;
    height: 48px;
}

.global-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
}

.global-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 13px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.global-nav a::after {
    display: none;
}

.global-nav a:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-2px);
}

.menu-button {
    display: none;
}

.snap-section {
    min-height: 100svh;
}

.hero {
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 140px clamp(22px, 7vw, 120px) 70px;
    color: var(--white);
}

.hero-video,
.sub-video,
.recruit-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video {
    top: 0;
    height: 100vh;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 0.7s ease, transform 1.2s ease;
    will-change: transform;
}

.hero-video.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-video.is-fading {
    animation: heroFade 14s ease-in-out infinite;
}

.hero-video.is-fading:nth-of-type(2) {
    animation-delay: 7s;
}

@keyframes heroFade {
    0%, 44% {
        opacity: 1;
        transform: scale(1);
    }

    50%, 94% {
        opacity: 0;
        transform: scale(1.045);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-screen {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 11, 24, 0.84), rgba(2, 11, 24, 0.28) 52%, rgba(2, 11, 24, 0.64)),
        radial-gradient(circle at 80% 20%, rgba(18, 103, 255, 0.35), transparent 38%);
}

.hero-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0.22;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(850px, 100%);
}

.hero-label,
.section-kicker {
    margin: 0 0 16px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.split-title,
.hero h1 {
    margin: 0;
    font-size: clamp(48px, 9vw, 128px);
    line-height: 0.98;
    letter-spacing: 0;
}

.sub-hero h1 {
    margin: 0;
    font-size: clamp(40px, 6vw, 84px);
    line-height: 1.08;
    letter-spacing: 0;
}

.hero-copy {
    width: min(660px, 100%);
    margin: 26px 0 0;
    font-size: clamp(16px, 2vw, 21px);
    color: rgba(255,255,255,0.88);
}

.hero-actions,
.center-actions,
.choice-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.primary-button,
.ghost-button,
.outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 24px;
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.primary-button {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 16px 36px rgba(18, 103, 255, 0.28);
}

.ghost-button {
    border: 1px solid rgba(255,255,255,0.55);
    color: #fff;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.strong-button {
    min-width: 170px;
    text-transform: uppercase;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.strong-button:hover {
    background: #fff;
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(255,255,255,0.2);
}

.ghost-button.light,
.outline-button.light {
    border-color: rgba(255,255,255,0.72);
    color: #fff;
}

.outline-button {
    border: 1px solid currentColor;
    background: transparent;
}

.scroll-hint {
    position: absolute;
    right: clamp(22px, 4vw, 60px);
    bottom: 34px;
    z-index: 2;
    writing-mode: vertical-rl;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    opacity: 0.75;
}

.philosophy,
.service-home,
.company-home,
.recruit,
.contact-panel,
.content-band,
.company-profile,
.reason-band,
.sub-hero,
.photo-strip {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 9vw, 120px) clamp(22px, 6vw, 96px);
}

.philosophy {
    display: grid;
    grid-template-columns: minmax(280px, 520px) 1fr;
    align-items: center;
    gap: clamp(32px, 7vw, 120px);
    background: #f6f7ef;
}

.philosophy-image {
    justify-self: center;
}

.philosophy-image img {
    display: block;
    max-height: 78svh;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.philosophy-copy h2,
.section-heading h2,
.contact-panel h2,
.company-profile h2 {
    margin: 0;
    font-size: clamp(34px, 6vw, 78px);
    line-height: 1.08;
    letter-spacing: 0;
}

.r-words {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
}

.r-words li {
    display: flex;
    align-items: baseline;
    gap: 22px;
    margin: 10px 0;
}

.r-words strong {
    color: var(--blue);
    font-size: clamp(42px, 7vw, 92px);
    line-height: 1;
    font-family: Georgia, "Times New Roman", serif;
}

.r-words span {
    font-size: clamp(18px, 2vw, 26px);
}

.section-heading {
    width: min(860px, 100%);
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading p {
    margin: 18px auto 0;
    max-width: 720px;
    color: var(--ink-soft);
}

.section-heading .contact-note {
    max-width: 680px;
    margin-top: 14px;
    color: rgba(6, 23, 44, 0.62);
    font-size: 13px;
    line-height: 1.8;
}

.section-heading.light {
    color: #fff;
}

.section-heading.light p {
    color: rgba(255,255,255,0.82);
}

.section-heading.compact {
    margin-left: 0;
    text-align: left;
}

.service-home {
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
    min-height: calc(100svh - 76px);
    padding-top: clamp(28px, 4.8svh, 52px);
    padding-bottom: clamp(24px, 4.2svh, 46px);
    display: grid;
    align-content: center;
}

.service-home .section-heading {
    margin-bottom: clamp(22px, 3.4svh, 36px);
}

.service-home .section-heading h2 {
    font-size: clamp(38px, 5.3vw, 72px);
    line-height: 1.05;
}

.service-home .section-heading p {
    margin-top: 10px;
    font-size: clamp(14px, 1.1vw, 16px);
}

.service-layout {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(280px, 600px);
    gap: clamp(22px, 3vw, 46px);
    align-items: center;
}

.service-photo img {
    display: block;
    width: 100%;
    height: clamp(280px, 43svh, 440px);
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 1.8svh, 16px);
}

.mini-card,
.feature,
.flow,
.reason,
.sub-hero-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,0.84);
    box-shadow: 0 16px 48px rgba(6, 23, 44, 0.08);
}

.mini-card {
    padding: clamp(18px, 2.2vw, 24px);
}

.mini-card span,
.flow span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-weight: 900;
}

.mini-card h3,
.feature h3,
.flow h3 {
    margin: 0 0 8px;
}

.mini-card p,
.feature p,
.flow p {
    margin: 0;
    color: var(--ink-soft);
}

.service-home .mini-card h3 {
    font-size: clamp(17px, 1.3vw, 20px);
}

.service-home .mini-card p {
    font-size: clamp(13px, 1vw, 15px);
}

.service-home .center-actions {
    margin: clamp(38px, 5.5svh, 62px) auto clamp(10px, 2svh, 24px);
    justify-content: center;
}

.company-home {
    display: grid;
    place-items: center;
    min-height: 100svh;
    background: #f3f3f0;
    padding: 0 clamp(22px, 6vw, 96px);
    color: var(--ink);
}

.company-home .section-heading {
    margin-bottom: 0;
}

.company-home .strong-button {
    margin: 52px auto 0;
}

.company-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0.42;
    filter: grayscale(1) contrast(0.92) brightness(1.18);
    will-change: transform;
    animation: companySoftFade 14s infinite ease-in-out;
}

.company-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.05), rgba(255,255,255,0.48) 64%, rgba(255,255,255,0.68)),
        linear-gradient(rgba(255,255,255,0.34), rgba(255,255,255,0.34)),
        repeating-radial-gradient(circle, rgba(6,20,38,0.16) 0 0.6px, transparent 0.8px 3px);
    mix-blend-mode: normal;
}

.company-shade::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    animation: companyWhiteBreath 14s infinite ease-in-out;
}

@keyframes companySoftFade {
    0%,
    100% {
        opacity: 0.24;
    }

    10%,
    88% {
        opacity: 0.42;
    }
}

@keyframes companyWhiteBreath {
    0%,
    100% {
        background: rgba(255,255,255,0.42);
    }

    12%,
    86% {
        background: rgba(255,255,255,0.06);
    }
}

.recruit {
    display: grid;
    align-items: center;
    min-height: 100svh;
    color: #fff;
}

.recruit-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.84), rgba(0,0,0,0.1) 58%, rgba(0,0,0,0.76));
}

.recruit-content {
    position: relative;
    z-index: 2;
    width: min(850px, 100%);
}

.recruit-title {
    margin: 0;
    max-width: none;
    font-size: clamp(52px, 8vw, 122px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
    text-shadow: 0 18px 60px rgba(0,0,0,0.42);
}

.recruit-lead {
    width: min(760px, 100%);
    margin: 40px 0 0 clamp(0px, 28vw, 420px);
    color: rgba(255,255,255,0.9);
    font-size: clamp(16px, 2vw, 23px);
    font-weight: 700;
    line-height: 1.65;
}

.recruit-phrases {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    width: min(920px, 100%);
    margin: 36px 0 0 clamp(0px, 22vw, 340px);
    color: rgba(255,255,255,0.92);
    font-size: clamp(15px, 1.55vw, 21px);
    font-weight: 800;
    line-height: 1.45;
}

.recruit-phrases span {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.recruit-phrases span:not(:last-child)::after {
    content: "";
    width: 4px;
    height: 4px;
    margin-left: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
}

.contact-panel {
    background: #fff;
}

.contact-form {
    width: min(860px, 100%);
    margin: 0 auto;
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--ink-soft);
    font-weight: 800;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 8px;
    background: #e8edf3;
    padding: 14px 16px;
    color: var(--ink);
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.consent {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px !important;
    margin-bottom: 6px !important;
    font-weight: 700 !important;
}

.consent input {
    width: 18px;
    height: 18px;
}

.policy-link {
    margin: 0 0 28px;
}

.policy-link a {
    position: relative;
    display: inline-block;
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.policy-link a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.24s ease;
}

.policy-link a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-footer {
    position: relative;
    background: #fff;
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -118px;
    z-index: 0;
    height: 120px;
    background: #fff;
    clip-path: polygon(0 34%, 16% 30%, 34% 36%, 50% 50%, 67% 64%, 83% 72%, 100% 67%, 100% 100%, 0 100%);
    pointer-events: none;
}

.pre-footer-video {
    position: relative;
    min-height: 86svh;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 150px 22px 220px;
    background: #222;
    isolation: isolate;
}

.tower-parallax-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: -12%;
    bottom: auto;
    width: 100%;
    height: 124%;
    object-fit: cover;
    object-position: center 0%;
    filter: grayscale(1);
    opacity: 0.62;
    will-change: transform;
    pointer-events: none;
}

.pre-footer-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.22);
}

.pre-footer-video::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 2;
    height: 138px;
    background: #fff;
    clip-path: polygon(0 20%, 16% 21%, 34% 28%, 50% 44%, 67% 61%, 83% 72%, 100% 70%, 100% 100%, 0 100%);
}

.floating-card {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    width: min(330px, calc(100% - 40px));
    padding: 28px 30px 27px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    background: rgba(255,255,255,0.48);
    backdrop-filter: blur(9px);
    color: var(--ink);
    text-align: center;
    text-decoration: none;
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(var(--tilt-move-x, 0px), var(--tilt-move-y, 0px), 0);
    box-shadow: 0 20px 62px rgba(0,0,0,0.18);
    transition: background 0.42s ease, border-color 0.42s ease, box-shadow 0.42s ease, transform 0.12s ease;
    will-change: transform;
}

.floating-card:hover {
    background: rgba(255,255,255,0.58);
    border-color: rgba(255, 255, 255, 0.68);
    box-shadow: 0 26px 78px rgba(0,0,0,0.22);
}

.explore-title {
    margin: 0;
    color: var(--ink);
    font-size: clamp(24px, 2.45vw, 34px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.18em;
}

.explore-company {
    margin-top: 12px;
    color: var(--ink-soft);
    font-size: 11px;
    letter-spacing: 0.12em;
}

.explore-rule {
    width: min(210px, 76%);
    height: 1px;
    margin: 20px 0;
    background: rgba(6, 20, 38, 0.26);
}

.explore-copy {
    color: var(--ink);
    font-size: clamp(12px, 1vw, 15px);
    font-weight: 900;
    letter-spacing: 0.16em;
    white-space: nowrap;
}

.explore-enter {
    margin-top: 19px;
    color: var(--ink);
    font-size: clamp(12px, 1vw, 15px);
    letter-spacing: 0.28em;
    transition: letter-spacing 0.24s ease, transform 0.24s ease;
}

.floating-card:hover .explore-enter {
    letter-spacing: 0.34em;
    transform: translateY(-2px);
}

.conservation-note {
    position: absolute;
    right: clamp(22px, 4.4vw, 68px);
    bottom: clamp(86px, 10vw, 118px);
    z-index: 3;
    width: min(390px, calc(100% - 44px));
    min-height: 58px;
    padding: 18px 58px 18px 24px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 4px;
    background: rgba(0,0,0,0.26);
    color: rgba(255,255,255,0.72);
    font-size: clamp(10px, 0.82vw, 12px);
    line-height: 1.75;
    text-align: left;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: background 0.55s ease, transform 0.55s ease, border-color 0.55s ease, color 0.55s ease;
}

.conservation-note:hover {
    background: rgba(0,0,0,0.38);
    border-color: rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.78);
    transform: translateY(-2px);
}

.note-default,
.note-hover {
    display: block;
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.note-default {
    opacity: 1;
    transform: translateY(0);
}

.note-hover {
    position: absolute;
    top: 50%;
    left: 24px;
    right: 58px;
    font-size: 0.94em;
    opacity: 0;
    transform: translateY(calc(-50% + 4px));
}

.conservation-note:hover .note-default {
    opacity: 0;
    transform: translateY(-4px);
}

.conservation-note:hover .note-hover {
    opacity: 1;
    transform: translateY(-50%);
}

.note-icon {
    position: absolute;
    top: 50%;
    right: 18px;
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255,255,255,0.48);
    border-radius: 50%;
    color: rgba(255,255,255,0.68);
    font-size: 11px;
    font-style: italic;
    transform: translateY(-50%);
}

.footer-inner {
    position: relative;
    z-index: 1;
    width: min(1680px, calc(100% - 96px));
    margin: 0 auto;
    padding: clamp(64px, 8vw, 112px) 0 48px;
}

.footer-name {
    margin: 0;
    font-size: clamp(40px, 4vw, 62px);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0;
}

.footer-jp-name {
    margin: 10px 0 0;
    color: var(--blue);
    font-size: clamp(16px, 1.15vw, 19px);
    font-weight: 800;
    letter-spacing: 0;
}

.footer-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 20px;
    border: 1px solid #111;
    border-radius: 999px;
    color: #111;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.footer-contact:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
}

.footer-rule {
    height: 1px;
    margin: 42px 0 40px;
    background: #111;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(360px, 1.1fr) minmax(220px, 0.66fr) minmax(250px, 0.78fr) minmax(210px, 0.58fr);
    gap: clamp(28px, 4.8vw, 86px);
    align-items: start;
}

.footer-address {
    color: #111;
    font-style: normal;
    font-size: 13px;
    line-height: 1.72;
}

.footer-address a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.footer-address span {
    display: block;
    margin: 0 0 2px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-address p {
    margin: 0 0 8px;
}

.footer-links {
    display: grid;
    gap: 5px;
    justify-items: start;
}

.footer-links a {
    display: inline-block;
    color: #111;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    text-decoration: none;
    position: relative;
    transition: color 0.22s ease;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.24s ease;
}

.footer-links a:hover {
    color: #111;
}

.footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-links .footer-policy-link {
    color: var(--ink-soft);
    font-size: 11px;
    line-height: 1.45;
}

.footer-certifications {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: end;
    gap: 12px;
    opacity: 0.82;
    padding-top: 110px;
}

.footer-certifications img {
    display: block;
    width: auto;
    max-width: 176px;
    max-height: 68px;
    object-fit: contain;
}

.footer-certifications img:first-child {
    max-width: 68px;
}

.footer-certifications img:not(:first-child) {
    max-width: 214px;
    max-height: 82px;
}

.footer-side {
    min-height: 170px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    justify-items: end;
    gap: 0;
}

.footer-social {
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social a {
    color: #111;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.footer-social a:hover {
    opacity: 0.58;
    transform: translateY(-2px);
}

.copyright {
    grid-row: 3;
    margin: 0;
    color: #111;
    font-size: 13px;
}

.sub-hero {
    min-height: 78svh;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: center;
    padding-top: 130px;
    background: linear-gradient(135deg, #f8fbff, #edf5ff);
}

.sub-hero-copy {
    position: relative;
    z-index: 2;
}

.sub-hero-copy p {
    width: min(650px, 100%);
    font-size: clamp(17px, 2vw, 23px);
}

.sub-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    position: relative;
    z-index: 2;
}

.sub-hero-grid article {
    display: grid;
    gap: 7px;
    min-height: 150px;
    padding: 22px;
    text-align: center;
}

.sub-hero-grid span {
    color: var(--blue);
    font-size: 34px;
}

.sub-hero-grid small {
    color: var(--ink-soft);
}

.content-band,
.reason-band,
.company-profile {
    background: #fff;
}

.content-band.blue {
    background: linear-gradient(135deg, var(--blue-dark), #001a3f);
    color: #fff;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.feature {
    padding: 24px;
}

.photo-strip {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1.1fr;
    gap: 18px;
    background: #eef3f8;
}

.photo-strip img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.flow {
    min-height: 190px;
    padding: 22px;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.reason {
    padding: 28px;
    font-size: 19px;
    font-weight: 900;
}

.company-hero {
    color: #fff;
    background: #06172c;
}

.company-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(6,23,44,0.9), rgba(6,23,44,0.34));
}

.company-video-sequence {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.company-sequence-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    animation: companyVideoFade 30s infinite cubic-bezier(0.45, 0, 0.2, 1);
    will-change: opacity, transform;
}

.company-sequence-video:nth-child(1) {
    animation-delay: 0s;
}

.company-sequence-video:nth-child(2) {
    animation-delay: 10s;
}

.company-sequence-video:nth-child(3) {
    animation-delay: 20s;
}

@keyframes companyVideoFade {
    0% {
        opacity: 0;
        transform: scale(1.055);
    }

    12%,
    30% {
        opacity: 1;
        transform: scale(1);
    }

    46%,
    100% {
        opacity: 0;
        transform: scale(1.045);
    }
}

.profile-list {
    width: min(1040px, 100%);
    margin: 0 auto;
}

.profile-list > div {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.profile-list dt {
    color: var(--teal);
    font-size: 20px;
    font-weight: 900;
}

.profile-list dd {
    margin: 0;
    color: var(--ink-soft);
}

.profile-addresses {
    display: grid;
    gap: 34px;
    line-height: 1.72;
}

.profile-address-block {
    margin: 0;
}

.profile-address-image {
    display: block;
    width: min(520px, 100%);
    height: auto;
}

.profile-list a {
    position: relative;
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.profile-list a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.24s ease;
}

.profile-list a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.policy-page {
    position: relative;
    overflow: visible;
    padding: clamp(76px, 9vw, 132px) clamp(22px, 5vw, 88px);
    background:
        radial-gradient(circle at 14% 8%, rgba(18, 103, 255, 0.18), transparent 28%),
        radial-gradient(circle at 92% 42%, rgba(25, 185, 173, 0.15), transparent 32%),
        linear-gradient(180deg, #edf5ff 0%, #f8fbff 38%, #eef7fb 100%);
}

.policy-page::before {
    content: "";
    position: absolute;
    inset: auto -12% -18% -12%;
    height: 42%;
    background: linear-gradient(90deg, rgba(18, 103, 255, 0.14), rgba(25, 185, 173, 0.08), rgba(18, 103, 255, 0.1));
    filter: blur(54px);
    pointer-events: none;
}

.policy-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
    gap: clamp(26px, 3.4vw, 54px);
    width: min(1220px, calc(100% - clamp(32px, 4vw, 64px)));
    margin: 0 auto;
    align-items: start;
}

.policy-nav {
    position: sticky;
    top: 104px;
    align-self: start;
    z-index: 2;
    display: grid;
    gap: 10px;
    max-height: calc(100svh - 128px);
    overflow: auto;
    padding: 22px;
    border: 1px solid rgba(9, 31, 57, 0.12);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
}

.policy-nav a,
.policy-section a {
    position: relative;
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.policy-nav a {
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.55;
}

.policy-nav a::after,
.policy-section a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.24s ease;
}

.policy-nav a:hover::after,
.policy-section a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.policy-content {
    display: grid;
    gap: clamp(42px, 6vw, 76px);
}

.policy-section {
    scroll-margin-top: 168px;
    padding: clamp(34px, 5vw, 66px);
    border: 1px solid rgba(9, 31, 57, 0.1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 70px rgba(7, 28, 51, 0.08);
}

.policy-section h2 {
    margin: 8px 0 22px;
    color: var(--ink);
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1.08;
}

.policy-section h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 18px;
}

.policy-section p {
    margin: 0 0 18px;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 2.05;
}

.policy-lead {
    padding-left: 20px;
    border-left: 3px solid var(--blue);
}

.policy-list {
    display: grid;
    gap: 14px;
    margin: 34px 0;
}

.policy-item {
    position: relative;
    padding: 24px 26px 22px 56px;
    border: 1px solid rgba(9, 31, 57, 0.1);
    background: #fbfdff;
}

.policy-item::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 26px;
    width: 12px;
    height: 12px;
    border: 3px solid var(--blue);
    border-radius: 50%;
}

.policy-item p {
    margin-bottom: 0;
}

.policy-subhead {
    margin: 32px 0 14px;
}

.policy-text {
    display: grid;
    gap: 12px;
}

.policy-table-wrap {
    width: 100%;
    margin: 18px 0 28px;
    overflow-x: auto;
}

.policy-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.75;
}

.policy-table th,
.policy-table td {
    padding: 15px 16px;
    border: 1px solid rgba(9, 31, 57, 0.16);
    text-align: left;
    vertical-align: top;
}

.policy-table th {
    width: 32%;
    color: var(--ink);
    background: #eef5ff;
    font-weight: 900;
}

.policy-sign,
.policy-contact {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(9, 31, 57, 0.12);
}

.policy-contact p:last-child {
    margin-bottom: 0;
}

.js-ready .policy-page .reveal,
.policy-page .reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

.result-panel {
    min-height: 70svh;
    padding: 150px clamp(22px, 6vw, 96px);
    background: #fff;
}

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

.js-ready .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

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

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

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}

@media (min-width: 900px) {
    body.home {
        scroll-snap-type: y proximity;
    }

    body.home .snap-section {
        scroll-snap-align: start;
    }
}

@media (max-width: 1100px) {
    .feature-row,
    .flow-grid,
    .reason-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sub-hero,
    .service-layout,
    .philosophy {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .site-header {
        min-height: 66px;
        color: var(--ink);
        background: rgba(255,255,255,0.94);
    }

    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 19px;
    }

    .brand-text small {
        font-size: 11px;
    }

    .menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        width: 44px;
        height: 44px;
        border: 1px solid var(--line);
        border-radius: 50%;
        background: #fff;
        padding: 0;
        cursor: pointer;
    }

    .menu-button span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--ink);
        transition: transform 0.22s ease, opacity 0.22s ease;
    }

    .menu-button[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-button[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-button[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .global-nav {
        position: absolute;
        top: 66px;
        left: 14px;
        right: 14px;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 12px;
        border-radius: 8px;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .global-nav.is-open {
        display: grid;
    }

    .global-nav a {
        padding: 12px;
        justify-content: center;
    }

    .hero {
        padding-top: 96px;
    }

    .service-home {
        min-height: auto;
        display: block;
        padding-top: 72px;
        padding-bottom: 64px;
    }

    .service-photo img {
        height: auto;
        aspect-ratio: 1.4;
    }

    .split-title,
    .hero h1 {
        font-size: clamp(44px, 14vw, 74px);
    }

    .sub-hero h1 {
        font-size: clamp(34px, 10vw, 56px);
    }

    .r-words li {
        display: grid;
        gap: 2px;
    }

    .service-cards,
    .form-grid,
    .footer-inner,
    .sub-hero-grid,
    .feature-row,
    .flow-grid,
    .reason-grid,
    .photo-strip {
        grid-template-columns: 1fr;
    }

    .footer-side {
        min-height: auto;
        grid-template-rows: none;
        justify-items: start;
        gap: 28px;
    }

    .footer-certifications {
        align-self: auto;
        justify-content: flex-start;
        padding-top: 0;
        margin-bottom: 0;
    }

    .footer-topline {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .footer-inner {
        width: min(100% - 44px, 1680px);
    }

    .profile-list > div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .photo-strip img {
        height: 280px;
    }

    .recruit-title {
        white-space: normal;
    }

    .recruit-lead {
        margin-left: 0;
    }

    .recruit-phrases {
        display: grid;
        gap: 8px;
        margin-left: 0;
    }

    .recruit-phrases span:not(:last-child)::after {
        display: none;
    }

    .floating-card {
        transform: none;
    }

    .conservation-note {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(430px, calc(100% - 40px));
        min-width: 0;
        margin-top: 28px;
    }
}

/* 002 refinement pass */
:root {
    --ink: #061426;
    --ink-soft: #465568;
    --blue: #1267ff;
    --teal: #19b9ad;
    --paper: #f5f8fb;
    --line: rgba(6, 20, 38, 0.12);
    --shadow: 0 26px 86px rgba(6, 20, 38, 0.16);
}

.site-header {
    min-height: 78px;
    padding: 0 clamp(24px, 4.6vw, 72px);
    box-shadow: 0 1px 0 rgba(6, 20, 38, 0.08);
}

.brand-logo {
    width: 42px;
    height: 42px;
}

.site-header.is-scrolled .brand-logo,
body:not(.home) .brand-logo {
    width: 42px;
    height: 42px;
}

.brand-text strong {
    font-size: 25px;
    line-height: 0.95;
}

.brand-text small {
    font-size: 12px;
}

.global-nav {
    gap: clamp(14px, 2vw, 28px);
    font-size: 13px;
    letter-spacing: 0.02em;
}

.global-nav a {
    min-height: 36px;
    padding: 4px 0;
    border-radius: 0;
}

.global-nav a::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.24s ease;
}

.global-nav a:hover {
    background: transparent;
    color: var(--ink);
    transform: translateY(-1px);
}

.global-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero {
    min-height: 100svh;
    padding: 150px clamp(32px, 7.5vw, 144px) 80px;
}

.hero-screen {
    background:
        linear-gradient(90deg, rgba(2, 10, 20, 0.78), rgba(2, 10, 20, 0.28) 54%, rgba(2, 10, 20, 0.66)),
        radial-gradient(circle at 74% 24%, rgba(26, 113, 255, 0.24), transparent 36%);
}

.hero-content {
    width: min(980px, 100%);
}

.split-title {
    font-size: clamp(58px, 8.7vw, 132px);
}

.split-title span {
    display: block;
}

.hero-copy {
    width: min(720px, 100%);
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.9;
}

.ghost-button,
.outline-button,
.primary-button {
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.ghost-button:hover,
.outline-button:hover,
.primary-button:hover {
    transform: translateY(-2px);
}

.philosophy {
    grid-template-columns: minmax(260px, 440px) minmax(420px, 1fr);
    background:
        linear-gradient(90deg, rgba(255,255,255,0.78), rgba(246,247,239,0.92)),
        #f6f7ef;
}

.philosophy-image img {
    max-height: 70svh;
}

.philosophy-copy {
    padding-left: clamp(0px, 2vw, 34px);
}

.r-words strong {
    font-size: clamp(48px, 6.2vw, 96px);
}

.service-home {
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
}

.service-layout {
    grid-template-columns: minmax(320px, 1.08fr) minmax(320px, 0.92fr);
}

.service-photo img {
    width: min(92%, 980px);
    height: clamp(300px, 40svh, 450px);
    margin: 0 auto;
}

@media (min-width: 821px) {
    .service-home {
        min-height: 100svh;
    }
}

.mini-card {
    background: rgba(255,255,255,0.92);
}

.mini-card span {
    width: 42px;
    height: 42px;
}

.company-home .section-heading {
    position: relative;
    z-index: 2;
    width: min(920px, 100%);
    text-align: center;
    margin-top: -8svh;
    margin-left: 0;
    justify-items: center;
    margin-inline: auto;
}

.company-home .section-heading h2 {
    color: #050505;
    font-size: clamp(44px, 5.8vw, 82px);
    font-weight: 500;
}

.company-home .section-heading p {
    color: rgba(0,0,0,0.74);
    width: min(780px, 100%);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.company-home .outline-button {
    color: #111;
    border-color: rgba(0,0,0,0.72);
}

.company-home .outline-button:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.recruit-content {
    width: min(1180px, 100%);
}

.recruit-title {
    font-size: clamp(56px, 7.2vw, 124px);
}

.recruit-lead {
    width: min(760px, 100%);
    margin-left: clamp(0px, 28vw, 420px);
}

.contact-panel {
    background:
        linear-gradient(180deg, #fff, #f6f9fc);
}

.contact-shell {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
    gap: clamp(32px, 6vw, 90px);
    align-items: start;
    width: min(1120px, 100%);
    margin: 0 auto;
}

.contact-form {
    width: 100%;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,0.86);
    box-shadow: 0 22px 70px rgba(6, 20, 38, 0.08);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    background: #f0f4f8;
}

.pre-footer-video {
    min-height: 92svh;
}

.floating-card {
    width: min(330px, calc(100% - 40px));
    padding: 28px 30px 27px;
}

.footer-inner {
    width: min(1660px, calc(100% - 112px));
}

.footer-name {
    font-size: clamp(42px, 4.2vw, 66px);
    font-weight: 560;
}

@media (max-width: 1100px) {
    .philosophy,
    .service-layout,
    .contact-shell {
        grid-template-columns: 1fr;
    }

    .company-home .section-heading {
        margin-left: auto;
        text-align: center;
    }

    .company-home .section-heading p {
        margin-left: auto;
    }
}

@media (max-width: 820px) {
    .site-header {
        min-height: 68px;
    }

    .brand-logo {
        width: 34px;
        height: 34px;
    }

    .brand-text strong {
        font-size: 19px;
    }

    .brand-text small {
        font-size: 10px;
    }

    .global-nav a {
        border-radius: 6px;
    }

    .hero {
        padding: 110px 24px 64px;
    }

    .split-title {
        font-size: clamp(44px, 13vw, 74px);
    }

    .service-photo img {
        height: auto;
    }

    .contact-form {
        padding: 22px;
    }

    .footer-inner {
        width: min(100% - 44px, 1660px);
    }
}

/* Unified CTA buttons */
.primary-button,
.ghost-button,
.outline-button,
.footer-contact {
    min-width: 178px;
    min-height: 48px;
    padding: 11px 24px;
    border: 1px solid currentColor;
    border-radius: 999px;
    background: transparent;
    color: #111;
    box-shadow: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.primary-button:hover,
.ghost-button:hover,
.outline-button:hover,
.footer-contact:hover {
    background: #111;
    border-color: #111;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.primary-button:active,
.ghost-button:active,
.outline-button:active,
.footer-contact:active {
    transform: translateY(1px) scale(0.985);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.14);
}

.hero .ghost-button,
.company-home .outline-button,
.recruit .primary-button,
.recruit .outline-button {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.84);
}

.hero .ghost-button:hover,
.company-home .outline-button:hover,
.recruit .primary-button:hover,
.recruit .outline-button:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.strong-button {
    min-width: 178px;
}

.company-home .outline-button {
    color: #111;
    border-color: rgba(0,0,0,0.72);
}

.company-home .outline-button:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

@media (max-width: 1100px) {
    .policy-layout {
        grid-template-columns: 1fr;
    }

    .policy-nav {
        position: static;
    }
}

@media (max-width: 720px) {
    .policy-page {
        padding-inline: 18px;
    }

    .policy-section {
        padding: 28px 20px;
    }

    .policy-item {
        padding: 22px 20px 20px 48px;
    }

    .policy-item::before {
        left: 22px;
    }

    .policy-table {
        min-width: 560px;
    }
}

.recruit-page-hero {
    position: relative;
    min-height: calc(100vh - 74px);
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: #07090d;
    padding: 110px clamp(24px, 8vw, 120px) 90px;
}

.recruit-page-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 46%, rgba(0, 0, 0, 0.24) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.68)),
        url("../img/server-vision-opt.jpg") center / cover no-repeat;
    filter: saturate(0.88) contrast(1.08);
    transform: scale(1.04);
}

.recruit-page-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.16) 0.7px, transparent 0.7px);
    background-size: 4px 4px;
    opacity: 0.22;
    mix-blend-mode: screen;
}

.recruit-image-hero .recruit-page-bg {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.06) 58%, rgba(0, 0, 0, 0.2)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.22)),
        url("../img/recruit-hero-main.jpg") center / cover no-repeat;
    filter: saturate(1) contrast(1.04);
    transform: none;
}

.recruit-page-hero-inner {
    position: relative;
    width: min(880px, 100%);
    z-index: 1;
}

.recruit-image-hero .recruit-page-hero-inner {
    min-height: calc(100vh - 264px);
    width: 100%;
}

.recruit-page-label {
    margin: 0 0 18px;
    color: rgba(255,255,255,0.72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.recruit-page-hero h1 {
    margin: 0;
    font-size: clamp(48px, 8vw, 112px);
    line-height: 1.08;
    letter-spacing: 0;
}

.recruit-page-hero p {
    width: min(690px, 100%);
    margin: 28px 0 0;
    font-weight: 700;
    line-height: 2;
    color: rgba(255,255,255,0.86);
}

.recruit-station-list {
    position: absolute;
    right: max(-430px, -34vw);
    top: 50%;
    display: flex;
    gap: 18px;
    transform: translateY(-50%);
}

.recruit-image-hero .recruit-station-list {
    right: clamp(28px, 8vw, 128px);
    top: auto;
    bottom: clamp(34px, 8vh, 82px);
    transform: none;
}

.recruit-image-hero .recruit-page-button {
    position: absolute;
    left: clamp(4px, 4vw, 60px);
    bottom: clamp(24px, 8vh, 78px);
    color: #fff;
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(5px);
}

.recruit-station-card {
    width: 174px;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,0.42);
    border-radius: 50%;
    display: grid;
    place-content: center;
    text-align: center;
    gap: 4px;
    background: rgba(0,0,0,0.12);
    backdrop-filter: blur(8px);
}

.recruit-station-card span,
.recruit-station-card small {
    font-size: 16px;
    font-weight: 800;
    color: #8fb7ff;
}

.recruit-station-card strong {
    margin-top: 8px;
    font-size: 22px;
    line-height: 1;
}

.recruit-page-button,
.recruit-footer-entry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    min-height: 54px;
    margin-top: 34px;
    padding: 13px 34px;
    border: 1px solid currentColor;
    border-radius: 999px;
    color: inherit;
    background: transparent;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.recruit-page-button::after,
.recruit-footer-entry::after {
    content: ">";
    margin-left: 18px;
    font-weight: 700;
}

.recruit-page-button:hover,
.recruit-footer-entry:hover {
    background: #fff;
    color: #07090d;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.recruit-page-section {
    padding: clamp(76px, 9vw, 132px) clamp(22px, 5vw, 72px);
}

.recruit-page-dark {
    background: radial-gradient(circle at 50% 0%, rgba(31,62,98,0.34), transparent 38%), #111;
    color: #fff;
}

.recruit-page-heading {
    width: min(860px, 100%);
    margin: 0 auto 46px;
    text-align: center;
}

.recruit-page-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.recruit-page-heading h2 {
    margin: 0;
    font-size: clamp(30px, 4.8vw, 52px);
    line-height: 1.18;
    letter-spacing: 0;
}

.recruit-page-heading p {
    margin: 16px 0 0;
    color: rgba(255,255,255,0.74);
    font-weight: 700;
}

.recruit-work-grid {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.recruit-work-grid article {
    position: relative;
    background: rgba(255,255,255,0.94);
    color: var(--ink);
    box-shadow: 0 22px 46px rgba(0,0,0,0.28);
    min-height: 100%;
    text-align: center;
}

.recruit-work-grid article > img:not(.recruit-work-icon) {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    filter: saturate(0.82);
}

.recruit-work-icon {
    display: block;
    width: 72px;
    height: 72px;
    margin: -36px auto 0;
    border-radius: 50%;
    filter: drop-shadow(0 14px 18px rgba(6,23,44,0.22));
    position: relative;
    z-index: 1;
}

.recruit-work-grid h3,
.recruit-work-grid p {
    margin-left: 22px;
    margin-right: 22px;
}

.recruit-work-grid h3 {
    margin-top: 22px;
    margin-bottom: 10px;
    font-size: 17px;
}

.recruit-work-grid p {
    margin-bottom: 26px;
    font-size: 13px;
    line-height: 1.9;
    color: var(--ink-soft);
}

.recruit-page-benefit {
    color: #fff;
    background:
        linear-gradient(rgba(0,0,0,0.43), rgba(0,0,0,0.54)),
        url("../img/warehouse-wide-opt.jpg") center / cover fixed no-repeat;
}

.recruit-benefit-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.recruit-benefit-grid article {
    min-height: 230px;
    padding: 28px 22px;
    background: rgba(0,0,0,0.32);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(7px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.recruit-benefit-grid strong {
    color: rgba(255,255,255,0.64);
    font-size: 13px;
    letter-spacing: 0.18em;
}

.recruit-benefit-grid h3 {
    margin: 22px 0 12px;
    font-size: 17px;
}

.recruit-benefit-grid p {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    line-height: 1.9;
}

.recruit-location {
    background: #f6f7f9;
}

.recruit-location .recruit-page-heading p {
    color: var(--ink-soft);
}

.recruit-location-grid {
    width: min(1040px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.recruit-location-grid article {
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(6,23,44,0.08);
}

.recruit-location-grid span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.recruit-location-grid h3 {
    margin: 16px 0 10px;
    font-size: 22px;
}

.recruit-location-grid p {
    margin: 0;
    color: var(--ink-soft);
}

.recruit-entry {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.recruit-entry-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: saturate(0.86) contrast(1.04) brightness(1.12);
}

.recruit-entry-screen {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.7), rgba(255,255,255,0.9) 62%, rgba(255,255,255,0.96)),
        linear-gradient(rgba(255,255,255,0.68), rgba(255,255,255,0.68));
}

.recruit-entry .recruit-page-heading,
.recruit-entry .recruit-entry-form {
    position: relative;
    z-index: 1;
}

.recruit-entry .recruit-page-heading p {
    color: var(--ink-soft);
}

.recruit-entry-form {
    width: min(920px, 100%);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 56px);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 22px 70px rgba(6,23,44,0.1);
}

.recruit-entry-form input[name="website"] {
    display: none;
}

.recruit-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.recruit-entry-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
}

.recruit-entry-form input[type="text"],
.recruit-entry-form input[type="email"],
.recruit-entry-form select,
.recruit-entry-form textarea {
    width: 100%;
    border: 1px solid rgba(6,23,44,0.18);
    background: #fff;
    padding: 15px 16px;
    border-radius: 0;
    color: var(--ink);
    font: inherit;
}

.recruit-entry-form textarea {
    resize: vertical;
}

.recruit-entry-form .consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 600;
}

.recruit-entry-form .consent input {
    margin-top: 7px;
}

.recruit-submit {
    color: var(--ink);
    margin-top: 20px;
}

.recruit-submit:hover {
    background: var(--ink);
    color: #fff;
}

.recruit-footer {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto auto;
    align-items: center;
    gap: clamp(26px, 6vw, 80px);
    padding: 34px clamp(24px, 5vw, 72px);
    background: #111;
    color: #fff;
}

.recruit-footer-brand strong {
    display: block;
    font-size: 24px;
    line-height: 1.1;
}

.recruit-footer-brand span {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    font-weight: 800;
}

.recruit-footer-brand p {
    margin: 10px 0 0;
    color: rgba(255,255,255,0.76);
    font-size: 14px;
    line-height: 1.7;
}

.recruit-footer nav {
    display: flex;
    gap: clamp(20px, 4vw, 54px);
    flex-wrap: wrap;
}

.recruit-footer nav a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.recruit-footer-entry {
    color: #fff;
    margin-top: 0;
    min-height: 48px;
}

@media (max-width: 1100px) {
    .recruit-work-grid,
    .recruit-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .recruit-station-card {
        width: 168px;
    }

    .recruit-station-list {
        position: static;
        margin-top: 30px;
        transform: none;
        flex-wrap: wrap;
    }

    .recruit-image-hero .recruit-page-hero-inner {
        min-height: 540px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        gap: 18px;
    }

    .recruit-image-hero .recruit-station-list,
    .recruit-image-hero .recruit-page-button {
        position: static;
        transform: none;
        margin-top: 0;
    }

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

@media (max-width: 720px) {
    .recruit-page-hero {
        min-height: auto;
        padding-top: 92px;
    }

    .recruit-work-grid,
    .recruit-benefit-grid,
    .recruit-location-grid,
    .recruit-form-grid {
        grid-template-columns: 1fr;
    }

    .recruit-page-hero h1 {
        font-size: 44px;
    }
}

.philosophy-scroll {
    min-height: 320svh;
    padding: 0;
    display: block;
    background: #f7f7f1;
    overflow: visible;
}

.philosophy-stage {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 720px;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.philosophy-bg {
    position: absolute;
    inset: 0;
    background: url("../img/philosophy-krinen-bg.jpg") center / auto 86% no-repeat;
    opacity: 0.64;
    filter: saturate(0.92) contrast(1.1);
    transform: none;
}

.philosophy-screen {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(255,255,255,0.68), rgba(255,255,255,0.34) 43%, rgba(246,247,239,0.62) 100%),
        linear-gradient(90deg, rgba(255,255,255,0.58), rgba(255,255,255,0.16), rgba(255,255,255,0.58));
}

.philosophy-panels {
    position: relative;
    z-index: 1;
    width: min(1040px, calc(100% - 48px));
    min-height: 56svh;
    display: grid;
    place-items: center;
}

.philosophy-panel {
    grid-area: 1 / 1;
    width: min(920px, 100%);
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
    transition: opacity 0.72s ease, transform 0.72s ease, visibility 0.72s ease;
}

.philosophy-panel.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.philosophy-panel .section-kicker {
    color: var(--blue);
    letter-spacing: 0.18em;
}

.philosophy-panel h2 {
    margin: 0 auto 28px;
    max-width: 860px;
    font-size: clamp(28px, 4.6vw, 56px);
    line-height: 1.28;
    letter-spacing: 0;
}

.philosophy-panel h2 br {
    display: block;
}

.philosophy-panel p {
    margin: 12px auto 0;
    max-width: 820px;
    color: var(--ink-soft);
    font-size: clamp(15px, 1.42vw, 19px);
    line-height: 2.08;
    font-weight: 560;
}

.philosophy-statement {
    color: var(--ink) !important;
    font-size: clamp(22px, 3vw, 36px) !important;
    line-height: 1.55 !important;
    font-weight: 800 !important;
}

.philosophy-r-list {
    display: grid;
    gap: clamp(18px, 3vw, 30px);
}

.philosophy-r-list section {
    padding: 0;
}

.philosophy-r-list h3 {
    margin: 0;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.philosophy-r-list strong {
    color: var(--blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 6vw, 74px);
    line-height: 1;
    font-weight: 700;
}

.philosophy-r-list span {
    color: var(--ink);
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 800;
}

.philosophy-r-list p {
    max-width: 720px;
    margin-top: 8px;
}

.philosophy-leap {
    margin-top: 30px !important;
    color: var(--blue) !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 3vw, 38px) !important;
    line-height: 1.18 !important;
    font-weight: 700 !important;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .philosophy-scroll {
        min-height: auto;
        overflow: hidden;
    }

    .philosophy-stage {
        position: relative;
        height: auto;
        min-height: auto;
        padding: 92px 0;
    }

    .philosophy-panels {
        min-height: 0;
        display: grid;
        gap: 52px;
    }

    .philosophy-panel {
        grid-area: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}
