:root {
  --navy: #063458;
  --navy-dark: #032744;
  --blue: #126fa8;
  --yellow: #f6c900;
  --yellow-soft: #fff4bb;
  --green: #31944f;
  --white: #fff;
  --off-white: #faf9f5;
  --light-blue: #eef6f8;
  --light-gray: #f4f6f7;
  --line: #d6e2e9;
  --text: #12354f;
  --muted: #5d7180;
  --danger: #b3261e;
  --content-max: 1240px;
  --text-max: 720px;
  --page-gutter: clamp(20px, 4vw, 48px);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --shadow: 0 8px 22px rgba(3, 39, 68, .07);
  --shadow-strong: 0 14px 32px rgba(3, 39, 68, .16);
  --section-space: clamp(56px, 5vw, 72px);
  --header-height: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body { margin: 0; color: var(--text); background: var(--off-white); font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", system-ui, sans-serif; font-size: 16px; line-height: 1.75; word-break: normal; line-break: strict; overflow-wrap: break-word; -webkit-font-smoothing: antialiased; }
img, iframe { display: block; max-width: 100%; }
img { height: auto; }
figure, blockquote, p, h1, h2, h3, dl, dd, ol, ul { margin-top: 0; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }

h1, h2, h3, strong, b { color: var(--navy-dark); }
h1, h2, h3 { margin-bottom: .55em; font-weight: 900; line-height: 1.18; letter-spacing: -.01em; word-break: normal; line-break: strict; overflow-wrap: normal; text-wrap: balance; }
h2 { font-size: clamp(34px, 4vw, 56px); }

/* Keep WordPress theme heading decoration out of this standalone LP. */
.sat-recruit-lp h1,
.sat-recruit-lp h2 {
  margin-top: 0;
  padding: 0;
  border: 0;
  background: none;
}
h3 { font-size: clamp(22px, 2.2vw, 32px); }
p { margin-bottom: 1em; }
p, li, dd, figcaption, summary { text-wrap: pretty; }
.overline { margin-bottom: 10px; color: var(--blue); font-size: 11px; font-weight: 900; line-height: 1; letter-spacing: .2em; }
.section-title { max-width: var(--text-max); }
.section-title h2 { margin-bottom: clamp(12px, 1.3vw, 18px); }
.section-title.centered { margin-inline: auto; text-align: center; }
.section-title .overline { display: flex; align-items: center; gap: 10px; }
.section-title .overline::after { content: ""; width: 32px; height: 3px; background: var(--yellow); }
.section-title.centered .overline { justify-content: center; }
.section-title > p:last-child { margin-bottom: 0; color: var(--muted); font-size: clamp(15px, 1.25vw, 17px); }
.wide-title { width: min(100%, var(--content-max)); max-width: none; margin-inline: auto; }
.compact-title { max-width: 850px; margin-inline: auto; text-align: center; }
.heading-phrase { display: inline-block; }
.heading-line { display: block; }
.heading-single-line, .text-unit { white-space: nowrap; }
.sp-only { display: none; }
.hero-mobile-break { display: none; }
.fact-mobile-label { display: none; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; border: 0 !important; }

.section { padding: var(--section-space) var(--page-gutter); }
.soft-section { background: var(--off-white); }
.button, .submit-button, .phone-contact-button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 18px; padding: 13px 24px; border: 0; border-radius: 8px; font-weight: 900; line-height: 1.2; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover, .submit-button:hover, .phone-contact-button:hover { transform: translateY(-2px); }
.button-primary, .submit-button { color: var(--navy-dark); background: var(--yellow); box-shadow: 0 10px 24px rgba(246, 201, 0, .22); }
.text-link { color: var(--navy); font-weight: 900; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; text-underline-offset: 6px; }

/* Scroll reveal */
.has-scroll-reveal [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity .7s cubic-bezier(.2, .7, .2, 1),
    transform .7s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.has-scroll-reveal [data-reveal="left"] { transform: translate3d(-30px, 0, 0); }
.has-scroll-reveal [data-reveal="right"] { transform: translate3d(30px, 0, 0); }
.has-scroll-reveal [data-reveal="zoom"] { transform: translate3d(0, 18px, 0) scale(.975); }
.has-scroll-reveal [data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* Header / Navigation */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; display: flex; min-height: var(--header-height); align-items: center; justify-content: space-between; gap: 24px; padding: 8px var(--page-gutter) 12px; background: linear-gradient(to bottom, rgba(255,255,255,.98) 0 78%, rgba(255,255,255,.9) 88%, rgba(255,255,255,0)); backdrop-filter: blur(12px); }
.site-header .brand { display: flex; flex: 0 0 auto; align-items: center; gap: 10px; text-decoration: none; }
.sat-logo-header { width: 46px; height: 46px; border-radius: 6px; object-fit: cover; }
.brand-logo { width: auto; height: 40px; object-fit: contain; }
.site-header nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(15px, 1.8vw, 28px); }
.site-header nav > a { color: var(--navy-dark); font-size: 13px; font-weight: 900; text-decoration: none; white-space: nowrap; }
.site-header .nav-entry { padding: 12px 22px; color: var(--navy-dark); background: var(--yellow); border-radius: 999px; box-shadow: 0 8px 18px rgba(246,201,0,.2); }
.section-nav { display: none; }

/* Hero */
.hero { position: relative; display: grid; min-height: clamp(660px, 50vw, 760px); grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: var(--header-height); overflow: hidden; background: #fff; isolation: isolate; }
.hero-copy { z-index: 5; display: flex; grid-column: 1 / -1; grid-row: 1; width: min(100%, 1100px); align-self: center; justify-self: center; flex-direction: column; align-items: center; padding: 58px var(--page-gutter) 28px; pointer-events: none; }
.hero-title-block, .hero-content { position: relative; width: min(100%, 760px); pointer-events: auto; }
.hero-title-block { text-align: center; }
.hero-title-block .overline { color: #d9effb; text-shadow: 0 2px 8px rgba(3,39,68,.9); }
.hero-recruit-badge { display: inline-flex; align-items: stretch; margin-bottom: 14px; overflow: hidden; border-radius: 999px; box-shadow: var(--shadow-strong); }
.hero-recruit-badge span, .hero-recruit-badge strong { display: flex; align-items: center; padding: 9px 15px; font-size: 12px; line-height: 1; }
.hero-recruit-badge span { color: #fff; background: var(--green); }
.hero-recruit-badge strong { color: #fff; background: var(--navy); }
.hero-recruit-badge em { margin-left: 7px; color: #74dc8b; font-style: normal; }
.hero h1 { position: relative; width: 100%; max-width: 760px; margin: 0 auto; padding: 8px 14px; line-height: 0; }
.hero h1::before { content: ""; position: absolute; z-index: 0; inset: -18% -12%; pointer-events: none; background: url("assets/decorative-hero-brush-white.png") center / 100% 100% no-repeat; filter: drop-shadow(0 10px 18px rgba(3,39,68,.16)); transform: rotate(-.6deg); }
.hero-headline-image { position: relative; z-index: 1; width: 100%; }
.hero-content { display: flex; width: min(100%, 720px); align-self: center; align-items: center; flex-direction: column; margin: 14px auto 0; text-align: center; }
.hero-invitation { display: flex; width: 100%; max-width: 720px; flex-direction: column; align-items: center; padding: 0; margin: 0 auto; color: var(--navy-dark); background: transparent; border-radius: 0; box-shadow: none; font-weight: 900; text-align: center; text-shadow: 0 2px 10px rgba(255,255,255,.95); }
.hero-invitation-kicker { font-size: clamp(26px, 2.05vw, 32px); line-height: 1.25; letter-spacing: -.02em; }
.hero-invitation-main { font-size: clamp(46px, 3.65vw, 56px); line-height: 1.15; letter-spacing: -.035em; white-space: nowrap; }
.hero-invitation-main > span { display: inline; }
.hero-invitation::after { content: ""; width: 56px; height: 4px; margin: 12px auto 0; background: var(--yellow); }
.hero-lead { max-width: 640px; margin: 12px auto 0; color: var(--text); font-size: 17px; font-weight: 600; line-height: 1.72; text-align: center; text-shadow: 0 2px 9px rgba(255,255,255,.96); }
.hero-facts { display: none; }
.hero-actions { display: flex; width: 100%; align-items: center; justify-content: center; flex-direction: column; gap: 10px; margin-top: 18px; }
.hero-actions .button-primary { min-height: 52px; padding: 14px 28px; border-radius: 8px; box-shadow: 0 10px 22px rgba(3,39,68,.25); font-size: 16px; }
.hero .text-link { color: var(--navy); font-size: 14px; text-decoration-thickness: 2px; text-underline-offset: 5px; text-shadow: 0 2px 8px rgba(255,255,255,.95); }
.hero-visual, .hero-softball-visual { position: relative; z-index: 1; grid-row: 1; height: 100%; margin: 0; overflow: hidden; }
.hero-visual { grid-column: 1; }
.hero-softball-visual { grid-column: 2; width: 106.8%; margin-left: -6.8%; clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%); }
.hero-visual::after, .hero-softball-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 34%,
    rgba(255,255,255,.14) 46%,
    rgba(255,255,255,.5) 60%,
    rgba(255,255,255,.8) 78%,
    rgba(255,255,255,.96) 91%,
    #fff 100%
  );
  pointer-events: none;
}
.hero-visual img, .hero-softball-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual img { object-position: 55% center; }
.hero-softball-visual img { object-position: 50% center; }
.hero-visual figcaption, .hero-softball-visual figcaption { position: absolute; z-index: 3; bottom: 24px; color: #fff; font-size: 12px; line-height: 1.45; text-shadow: 0 2px 8px rgba(3,39,68,.95); }
.hero-visual figcaption { left: var(--page-gutter); padding-left: 12px; color: var(--navy-dark); border-left: 3px solid var(--yellow); text-shadow: 0 2px 8px rgba(255,255,255,.96); }
.hero-softball-visual figcaption { top: 100px; right: var(--page-gutter); bottom: auto; text-align: right; transform: rotate(-3deg); }
.hero-visual figcaption b, .hero-visual figcaption span, .hero-softball-visual figcaption b, .hero-softball-visual figcaption span { display: block; color: inherit; }
.hero-visual figcaption b { font-size: 12px; letter-spacing: .08em; }
.hero-visual figcaption span { font-size: 13.5px; }
.hero-softball-visual figcaption b { color: var(--yellow); font-family: "Segoe Print", cursive; font-size: clamp(26px, 3vw, 48px); }
.hero-area { position: absolute; top: 24px; left: var(--page-gutter); z-index: 9; display: grid; width: max-content; max-width: calc(100% - (var(--page-gutter) * 2)); grid-template-columns: auto auto; align-items: stretch; padding: 0 22px 0 0; margin: 0; overflow: hidden; color: #fff; background: var(--navy); border-radius: 3px; clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%); filter: drop-shadow(0 10px 16px rgba(3,39,68,.28)); }
.hero-area span, .hero-area strong { display: flex; align-items: center; white-space: nowrap; }
.hero-area span { padding: 12px 15px; color: var(--navy-dark); background: var(--yellow); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.hero-area strong { padding: 12px 20px; color: #fff; font-size: clamp(19px, 1.65vw, 25px); line-height: 1.1; letter-spacing: .04em; }

/* Quick Facts */
.quick-facts { position: relative; z-index: 10; padding: 0 var(--page-gutter) 12px; margin-top: -38px; background: linear-gradient(to bottom, transparent 0 38px, var(--off-white) 38px 100%); }
.quick-facts-inner { display: grid; width: min(100%, 1100px); grid-template-columns: repeat(6, minmax(0, 1fr)); margin: 0 auto; overflow: hidden; background: var(--navy-dark); border: 1px solid rgba(255,255,255,.14); border-radius: 4px; filter: drop-shadow(0 8px 18px rgba(3,39,68,.14)); }
.quick-facts article { position: relative; min-width: 0; }
.quick-facts article > span { display: none; }
.quick-facts article > div { min-width: 0; }
.quick-fact-primary { grid-column: span 2; min-height: 144px; padding: 23px clamp(20px, 3vw, 38px) 20px; background: rgba(3,39,68,.96); border-left: 1px solid rgba(255,255,255,.18); }
.quick-fact-primary:nth-child(1) { border-radius: 3px 0 0; }
.quick-fact-primary:nth-child(3) { border-right: 0; border-radius: 0 3px 0 0; }
.quick-fact-primary div::before { display: block; margin-bottom: 8px; color: var(--yellow); font-size: 11.5px; font-weight: 900; line-height: 1; letter-spacing: .12em; }
.quick-fact-primary:nth-child(1) div::before { content: "SALARY"; }
.quick-fact-primary:nth-child(2) div::before { content: "HOLIDAY"; }
.quick-fact-primary:nth-child(3) div::before { content: "BEGINNER"; }
.quick-facts b, .quick-facts small { display: block; }
.quick-fact-primary b { display: inline-flex; width: max-content; max-width: 100%; flex-direction: column; color: #fff; font-size: clamp(36px, 3.4vw, 44px); font-weight: 900; line-height: 1; letter-spacing: -.035em; }
.quick-fact-primary b::after { content: ""; width: 32px; height: 3px; margin-top: 11px; background: var(--yellow); }
.quick-fact-primary small { margin-top: 9px; color: #d8e7ef; font-size: clamp(13px, 1vw, 14px); line-height: 1.4; }
.quick-fact-sub { grid-column: span 2; min-height: 40px; padding: 11px 16px; margin-top: 0; color: #fff; background: #021d34; border-top: 1px solid rgba(255,255,255,.14); text-align: center; }
.quick-fact-sub:nth-child(4) { border-radius: 0 0 0 3px; }
.quick-fact-sub:nth-child(5)::before, .quick-fact-sub:nth-child(6)::before { content: ""; position: absolute; top: 50%; left: 0; width: 1px; height: 16px; background: rgba(255,255,255,.28); transform: translateY(-50%); }
.quick-fact-sub:nth-child(6) { border-radius: 0 0 3px; }
.quick-fact-sub b { color: inherit; font-size: 13px; line-height: 1.35; letter-spacing: .03em; }
.quick-fact-sub small { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

/* Movie */
.recruit-video { display: grid; width: min(100%, 1080px); grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr); align-items: center; gap: clamp(28px, 4vw, 56px); margin-inline: auto; padding-top: clamp(52px, 4vw, 64px); padding-bottom: 24px; background: var(--off-white); }
.video-copy h2 { font-size: clamp(30px, 3.2vw, 46px); }
.video-copy { max-width: 520px; }
.video-copy p:last-child { color: var(--muted); }
.video-placeholder { position: relative; min-width: 0; margin: 0; overflow: hidden; aspect-ratio: 16 / 9; background: var(--navy-dark); border: 6px solid var(--navy); border-radius: var(--radius-md); box-shadow: var(--shadow-strong); }
.video-placeholder > img { width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.video-placeholder::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(3,39,68,.8), rgba(3,39,68,.1)); }
.video-play { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 64px; height: 64px; place-items: center; color: var(--navy-dark); background: var(--yellow); border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 0 10px rgba(255,255,255,.16); }
.video-placeholder p { position: absolute; z-index: 2; right: 20px; bottom: 16px; left: 20px; margin: 0; color: #fff; }
.video-placeholder p b, .video-placeholder p span { display: block; color: inherit; }
.video-placeholder p span { font-size: 14px; }

/* About / Job Flow */
.sat-intro { padding-top: 28px; padding-bottom: 24px; background: #fff; }
.sat-intro .section-title.centered { width: min(100%, 1280px); max-width: none; margin-inline: auto; text-align: left; }
.sat-intro .section-title.centered .overline { justify-content: flex-start; }
.response-flow { display: grid; width: min(100%, 1280px); grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; margin: 28px auto 0; }
.response-flow article { position: relative; min-width: 0; padding: 0 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.response-flow article::before { content: ""; display: block; margin: 0 -16px 14px; aspect-ratio: 4 / 3; background-position: center; background-size: cover; border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.response-flow article:nth-child(1)::before { background-image: url("assets/feature-control-center-web.jpg"); }
.response-flow article:nth-child(2)::before { background-image: url("assets/job-control-card.jpg"); }
.response-flow article:nth-child(3)::before { background-image: url("assets/job-main-field-web.jpg"); }
.response-flow article:nth-child(4)::before { background-image: url("assets/feature-field-response-web.jpg"); }
.response-flow article:nth-child(5)::before { background-image: url("assets/requirements-beginner-web.jpg"); }
.response-flow span { display: inline-flex; width: max-content; flex-direction: column; align-items: flex-start; padding: 0; color: var(--navy); background: transparent; font-size: clamp(30px, 2.6vw, 36px); font-weight: 900; line-height: 1; letter-spacing: -.02em; }
.response-flow span::before { content: "STEP"; margin-bottom: 5px; color: var(--yellow); font-size: 11px; font-weight: 800; line-height: 1; letter-spacing: .12em; }
.response-flow span::after { content: ""; width: 28px; height: 3px; margin-top: 8px; background: var(--yellow); }
.response-flow b { display: block; margin: 12px 0 0; font-size: 18px; line-height: 1.45; }
.response-flow p { margin: 14px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* Mission */
.values { padding: 28px var(--page-gutter) 24px; background: var(--light-gray); }
.value-grid { display: grid; width: min(100%, 1000px); grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 26px auto 0; }
.value-grid article { display: flex; min-width: 0; align-items: center; gap: 14px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.value-icon { width: 46px; height: 46px; flex: 0 0 46px; object-fit: contain; }
.value-grid h3 { margin: 0 0 4px; font-size: 17px; }
.value-grid p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.mission-scenes { display: grid; width: min(100%, 1000px); grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 16px auto 0; }
.image-card { position: relative; margin: 0; overflow: hidden; border-radius: 8px; }
.image-card > img { width: 100%; height: 100%; object-fit: cover; }
.feature-image { aspect-ratio: 16 / 8; }
.image-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 42%,
    rgba(255,255,255,.14) 54%,
    rgba(255,255,255,.48) 68%,
    rgba(255,255,255,.84) 84%,
    rgba(255,255,255,.98) 100%
  );
  pointer-events: none;
}
.image-card figcaption { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 28px 18px 16px; color: var(--navy-dark); background: transparent; }
.image-card figcaption b, .image-card figcaption span { display: block; color: inherit; }
.image-card figcaption b { font-size: 12px; letter-spacing: .12em; }
.image-card figcaption span { font-size: 14px; line-height: 1.55; }

/* Jobs */
.jobs { padding-top: 28px; padding-bottom: 32px; background: var(--off-white); }
.jobs .section-title.centered { width: min(100%, 1280px); max-width: none; margin-inline: auto; text-align: left; }
.jobs .section-title.centered h2 { max-width: 760px; }
.jobs .section-title.centered .overline { justify-content: flex-start; }
.job-grid { display: grid; width: min(100%, 1280px); grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin: 28px auto 0; }
.job-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
.job-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.job-card > div { position: relative; display: flex; flex: 1; flex-direction: column; padding: 18px; }
.role-icon { position: absolute; top: -27px; right: 16px; width: 50px; height: 50px; padding: 7px; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: 50%; }
.role-code { margin: 0 0 7px; padding-left: 8px; color: var(--blue); border-left: 3px solid var(--yellow); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.job-card h3 { margin: 0 0 4px; font-size: 24px; }
.job-card strong { display: block; margin-bottom: 10px; font-size: 17px; line-height: 1.45; }
.job-card div > p:last-child { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* Beginner */
.beginner { padding-top: 32px; padding-bottom: 24px; background: var(--light-blue); }
.beginner .overline::after { background: var(--green); }
.beginner-layout { display: grid; width: min(100%, var(--content-max)); grid-template-columns: minmax(280px, .76fr) minmax(0, 1.24fr); align-items: center; gap: clamp(34px, 5vw, 62px); margin: auto; }
.beginner h2 { font-size: clamp(27px, 2.35vw, 34px); }
.beginner-photo { position: relative; margin: 0; overflow: hidden; aspect-ratio: 4 / 3; border-radius: 12px; box-shadow: var(--shadow); }
.beginner-photo img { width: 100%; height: 100%; object-fit: cover; }
.beginner-photo figcaption { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 14px 16px; background: rgba(255,255,255,.94); border-left: 5px solid var(--green); }
.beginner-photo b, .beginner-photo span { display: block; }
.beginner-photo span { color: var(--muted); font-size: 14px; line-height: 1.55; }
.beginner-points { display: grid; gap: 9px; margin-top: 20px; }
.beginner-points article { padding: 14px 16px; background: #fff; border-left: 4px solid var(--green); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.beginner-points b { font-size: 17px; }
.beginner-points p { margin: 3px 0 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.conversion-strip { display: flex; width: min(100%, var(--content-max)); align-items: center; justify-content: space-between; gap: 24px; margin: 24px auto 0; padding: 18px 22px; color: #fff; background: var(--navy); border-radius: 8px; }
.conversion-strip b { color: #fff; }
.conversion-strip p { margin: 4px 0 0; color: #dcebf3; font-size: 14.5px; line-height: 1.6; }
.conversion-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 18px; }
.conversion-strip .text-link { color: #fff; }

/* Career */
.career { padding-top: 28px; padding-bottom: 36px; background: #fff; }
.career .section-title h2 { max-width: 620px; margin-inline: auto; }
.assignment-note { width: min(100%, 960px); margin: 20px auto 0; padding: 14px 20px; text-align: center; background: var(--yellow-soft); border-radius: var(--radius-sm); }
.assignment-note strong { display: block; font-size: 17px; }
.assignment-note p { margin: 3px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.career-flow { display: grid; width: min(100%, var(--content-max)); grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr)); gap: 12px; margin: 20px auto 0; }
.career-step { position: relative; min-width: 0; padding: 20px 16px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.career-step:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; top: 50%; right: -13px; color: var(--blue); font-weight: 900; transform: translateY(-50%); }
.career-step-start { color: #fff; background: var(--navy); border-color: var(--navy); }
.career-step-start strong, .career-step-start p { color: #fff; }
.career-step-number { display: block; margin-bottom: 8px; color: var(--navy); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; text-underline-offset: 5px; }
.career-step-start .career-step-number { color: var(--yellow); }
.career-step strong { display: block; font-size: 17px; }
.career-step p { margin: 5px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* Digital */
.digital { padding-top: 56px; padding-bottom: 48px; color: #fff; background: var(--navy-dark); }
.digital-layout { display: grid; width: min(100%, var(--content-max)); grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); align-items: center; gap: clamp(30px, 4.5vw, 58px); margin: auto; }
.digital .overline { color: var(--yellow); }
.digital h2, .digital p { color: #fff; }
.digital h2 { font-size: clamp(26px, 3vw, 40px); letter-spacing: -.015em; }
.digital-copy > p { color: #d9e7ef; font-size: 16px; line-height: 1.75; }
.digital-team-visual { position: relative; margin: 18px 0 0; overflow: hidden; aspect-ratio: 16 / 8; border-radius: 6px; }
.digital-team-visual img { width: 100%; height: 100%; object-fit: cover; }
.digital-team-visual figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 14px 16px; background: linear-gradient(to top, rgba(3,39,68,.95), transparent); }
.digital-team-visual small, .digital-team-visual b, .digital-team-visual span { display: block; color: #fff; }
.digital-team-visual small { color: var(--yellow); font-size: 11px; }
.digital-team-visual span { font-size: 14px; line-height: 1.55; }
.digital-showcase { min-width: 0; }
.digital-video-feature { overflow: hidden; background: #fff; border-radius: 8px; box-shadow: var(--shadow-strong); }
.digital-video-frame { aspect-ratio: 16 / 9; background: #000; }
.digital-video-frame iframe { width: 100%; height: 100%; border: 0; }
.digital-video-meta { padding: 16px 18px; }
.digital-video-meta small, .digital-video-meta b, .digital-video-meta span { display: block; }
.digital-video-meta small { color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.digital-video-meta b { font-size: 18px; }
.digital-video-meta span { color: var(--muted); font-size: 14px; line-height: 1.55; }
.digital-channel-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 10px; }
.digital-channel-button { display: flex; min-width: 0; align-items: center; gap: 12px; padding: 12px 14px; color: #fff; border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius-sm); text-decoration: none; }
.digital-channel-instagram { background: linear-gradient(120deg, #7a32c6, #d83c71); }
.digital-channel-youtube { background: #cc1717; }
.digital-channel-button i { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; background: transparent; border-radius: 8px; font-style: normal; }
.digital-channel-button i svg { display: block; width: 100%; height: 100%; }
.digital-channel-button span { min-width: 0; flex: 1; }
.digital-channel-button small, .digital-channel-button b { display: block; color: #fff; }
.digital-channel-button small { font-size: 11px; }
.digital-channel-button b { font-size: 18px; }

/* People */
.people { padding-top: 44px; padding-bottom: 24px; background: linear-gradient(180deg, var(--off-white) 0%, #f7fafb 100%); }
.people-layout { display: grid; width: min(100%, 1280px); grid-template-columns: minmax(240px, .58fr) minmax(0, 1.42fr); align-items: start; gap: clamp(30px, 4vw, 52px); margin: auto; }
.people-copy { position: sticky; top: calc(var(--header-height) + 28px); }
.people-copy h2 { max-width: 380px; }
.people-mosaic { display: grid; min-width: 0; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.interview-story { display: grid; grid-column: 1 / -1; grid-template-columns: minmax(240px, .9fr) minmax(0, 1.1fr); align-items: center; gap: 22px; padding: 14px; color: var(--text); background: #fff; border: 1px solid var(--line); border-radius: 6px; }
.mobile-interview-heading { grid-column: 2; margin: 0; }
.mobile-interview-heading b, .mobile-interview-heading span { display: block; }
.mobile-interview-heading b { color: var(--blue); font-size: 11px; letter-spacing: .14em; }
.mobile-interview-heading span { color: var(--navy-dark); font-size: 22px; font-weight: 900; }
.interview-story .portrait { grid-column: 1; grid-row: 1 / span 2; aspect-ratio: 3 / 2; }
.mobile-interview-comment { grid-column: 2; }
.mobile-interview-comment blockquote { margin: 0 0 8px; color: var(--navy-dark); font-size: 15px; font-weight: 700; line-height: 1.8; }
.mobile-interview-comment small { color: var(--muted); font-size: 13.5px; }
.people-mosaic > .image-card:not(.portrait) { aspect-ratio: 4 / 3; }
.people-recruit-message { padding-top: 18px; margin-top: 20px; border-top: 3px solid var(--yellow); }
.people-recruit-message strong, .people-recruit-message span { display: block; }
.people-recruit-message strong { color: var(--navy-dark); font-size: 17px; line-height: 1.5; }
.people-recruit-message span { margin-top: 7px; color: var(--muted); font-size: 14.5px; line-height: 1.7; }

/* Work & Life */
.work-life { padding-top: 52px; padding-bottom: 52px; background: linear-gradient(135deg, #edf5f8 0 48%, #f8faf8 48% 100%); border-top: 1px solid rgba(214,226,233,.8); }
.work-life-layout { display: grid; width: min(100%, 1280px); grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr); align-items: stretch; gap: clamp(30px, 4vw, 56px); margin: auto; }
.work-life-story, .work-life-content { min-width: 0; }
.work-life-story .section-title { margin-bottom: 24px; }
.work-life-story h2 { font-size: clamp(34px, 3.2vw, 48px); }
.work-life-visual { position: relative; margin: 0; overflow: hidden; aspect-ratio: 4 / 3; background: var(--navy); border-radius: 6px; box-shadow: none; }
.work-life-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; }
.work-life-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(92px, 15vw, 160px) 20px 18px;
  color: var(--navy-dark);
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.08) 24%,
    rgba(255,255,255,.3) 44%,
    rgba(255,255,255,.68) 64%,
    rgba(255,255,255,.93) 82%,
    #fff 100%
  );
}
.work-life-visual figcaption b, .work-life-visual figcaption span { display: block; color: inherit; }
.work-life-visual figcaption b { font-size: 18px; line-height: 1.45; }
.work-life-visual figcaption span { margin-top: 4px; font-size: 14px; line-height: 1.55; }
.work-life-content { display: flex; flex-direction: column; }
.work-life-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.work-life-points article { min-width: 0; padding: clamp(20px, 2.3vw, 30px); background: rgba(255,255,255,.58); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.work-life-points article > p:first-child { display: flex; align-items: baseline; gap: 10px; margin: 0 0 18px; }
.work-life-points article > p:first-child span { color: var(--navy); font-size: 30px; font-weight: 900; line-height: 1; letter-spacing: -.03em; }
.work-life-points article > p:first-child small { color: var(--green); font-size: 11px; font-weight: 900; line-height: 1; letter-spacing: .14em; }
.work-life-points h3 { margin: 0 0 10px; color: var(--navy-dark); font-size: 20px; line-height: 1.45; }
.work-life-points article > p:last-child { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.work-life-closing { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 24px; margin-top: 16px; color: #fff; background: var(--navy); border-radius: 6px; }
.work-life-closing b { color: #fff; font-size: 19px; line-height: 1.45; }
.work-life-closing p { margin: 4px 0 0; color: #d8e6ee; font-size: 14px; line-height: 1.55; }
.work-life-closing .button { flex: 0 0 auto; border-radius: 8px; }

/* Softball */
.softball { display: grid; grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr); grid-template-areas: "copy gallery" "stats gallery"; align-items: end; gap: 20px clamp(28px, 4vw, 52px); padding-top: 32px; padding-bottom: 40px; color: #fff; background: linear-gradient(180deg, #08426d 0%, var(--navy-dark) 20%, var(--navy-dark) 100%); border-top: 3px solid var(--yellow); }
.softball-copy { grid-area: copy; }
.softball .overline, .softball h2, .softball p { color: #fff; }
.softball .overline { color: var(--yellow); }
.softball h2 { font-size: clamp(24px, 2.1vw, 32px); }
.softball-workplace-note { padding: 10px 0 10px 14px; margin-top: 14px !important; color: rgba(255,255,255,.88) !important; border-left: 3px solid var(--yellow); font-size: 14px; font-weight: 700; line-height: 1.6; }
.softball-stats { position: relative; display: grid; grid-area: stats; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; overflow: hidden; background: rgba(18, 111, 168, .14); border: 1px solid rgba(255,255,255,.16); border-radius: 8px; }
.softball-stats article { position: relative; z-index: 1; display: flex; min-width: 0; min-height: 128px; align-items: center; justify-content: center; flex-direction: column; padding: 24px 14px 18px; text-align: center; background: transparent; border-right: 1px solid rgba(255,255,255,.16); }
.softball-stats article:last-child { border-right: 0; }
.softball-stats strong { display: flex; align-items: baseline; justify-content: center; gap: 5px; color: #fff; font-size: clamp(28px, 2.5vw, 38px); line-height: 1; letter-spacing: -.025em; white-space: nowrap; }
.softball-stats .stat-value, .softball-stats .stat-word { display: inline; margin: 0; color: inherit; font-size: inherit; }
.softball-stats .stat-word { font-size: .62em; letter-spacing: .08em; }
.softball-stats .stat-accent { color: var(--yellow); }
.softball-stats p { position: relative; margin: 11px 0 0; padding-top: 10px; color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.5; }
.softball-stats p::before { content: ""; position: absolute; top: 0; left: 50%; width: 32px; height: 2px; background: var(--yellow); transform: translateX(-50%); }
.softball-gallery { display: grid; min-width: 0; grid-area: gallery; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 16px; aspect-ratio: 13 / 5; }
.softball-gallery figure { position: relative; min-width: 0; min-height: 0; height: 100%; margin: 0; overflow: hidden; border: 0; border-radius: 6px; box-shadow: none; }
.softball-gallery .softball-main { grid-row: 1 / 3; }
.softball-gallery img { width: 100%; height: 100%; object-fit: cover; }
.softball-gallery .softball-main img { object-position: 37% 50%; transform: scale(1.05); }
.softball-gallery figure:nth-child(2) img { object-position: 50% 18%; }
.softball-gallery figure:nth-child(3) img { object-position: 50% 38%; }
.softball-gallery figure::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 43%,
    rgba(255,255,255,.16) 56%,
    rgba(255,255,255,.5) 72%,
    rgba(255,255,255,.88) 88%,
    #fff 100%
  );
  pointer-events: none;
}
.softball-gallery figcaption { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: flex; min-height: 52px; align-items: flex-end; padding: 24px 12px 10px; color: var(--navy-dark); background: transparent; font-size: 14px; font-weight: 900; line-height: 1.4; }

/* Benefits */
.benefits { padding-top: 52px; padding-bottom: 24px; background: linear-gradient(180deg, var(--off-white) 0%, #f2f7f9 100%); }
.benefits .section-title.centered { width: min(100%, 1180px); max-width: none; margin-inline: auto; text-align: left; }
.benefits .section-title.centered h2 { max-width: 920px; }
.benefits .section-title.centered .overline { justify-content: flex-start; }
.benefit-grid { display: grid; width: min(100%, 1180px); grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin: 24px auto 0; }
.benefit-card { position: relative; display: grid; min-width: 0; min-height: 326px; overflow: hidden; background: #fff; border: 0; border-radius: 6px; box-shadow: none; }
.benefit-card > img { grid-area: 1 / 1; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
.benefit-gym > img { object-position: 50% 46%; }
.benefit-health > img { object-position: 50% 50%; }
.benefit-trip > img { object-position: 50% 42%; }
.benefit-company-event > img { object-position: 50% 50%; }
.benefit-life-event > img { aspect-ratio: auto; object-position: 50% 58%; }
.benefit-housing > img { object-position: 48% 50%; }
.benefit-parental > img { object-position: 50% 58%; }
.benefit-card > div:not([aria-hidden]) {
  z-index: 1;
  grid-area: 1 / 1;
  align-self: end;
  padding: 112px 17px 17px;
  color: var(--navy-dark);
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.06) 16%,
    rgba(255,255,255,.24) 34%,
    rgba(255,255,255,.58) 55%,
    rgba(255,255,255,.88) 76%,
    #fff 100%
  );
}
.benefit-card h3 { margin: 0 0 6px; color: var(--navy-dark); font-size: 17px; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.benefit-visual { padding: 18px; }
.benefit-visual > div[aria-hidden] { display: flex; height: 82px; align-items: center; justify-content: space-between; padding: 14px; margin-bottom: 12px; color: var(--navy); background: var(--light-blue); border-radius: 4px; }
.benefit-visual div span { font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.benefit-visual div i { font-size: 34px; font-style: normal; font-weight: 900; }
.benefit-gym div i::before { content: "↔"; }
.benefits-existing-copy { display: grid; gap: 4px; margin-top: 16px; }
.benefits-existing-copy strong, .benefits-existing-copy span { display: block; }
.benefits-existing-copy strong { color: var(--navy-dark); font-size: 18px; line-height: 1.55; }
.benefits-existing-copy span { color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.benefit-support-card { position: relative; min-height: 326px; padding: 0; background: #fff; border-top: 0; }
.benefit-support-card.benefit-housing, .benefit-support-card.benefit-parental { border-top: 0; }
.benefit-life-event { grid-column: span 2; }
.benefit-label { margin: 0 0 12px !important; color: var(--blue) !important; font-size: 10.5px !important; font-weight: 900; line-height: 1.2 !important; letter-spacing: .15em; }
.benefit-support-card h3 { margin-bottom: 9px; font-size: 21px; }
.benefit-support-card small { display: block; margin-top: 10px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.benefits-more { display: flex; width: min(100%, 1180px); align-items: center; justify-content: space-between; gap: 24px; padding: 20px 24px; margin: 16px auto 0; color: #fff; background: var(--navy-dark); border-radius: 6px; }
.benefits-more b { color: #fff; font-size: 18px; line-height: 1.45; }
.benefits-more p { margin: 4px 0 0; color: #d8e6ee; font-size: 14px; line-height: 1.55; }
.benefits-more .button { flex: 0 0 auto; border-radius: 8px; }

/* I / U Turn */
.relocation { padding-top: 24px; padding-bottom: 36px; background: var(--light-blue); }
.relocation-layout { display: grid; width: min(100%, 1180px); grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(28px, 4vw, 52px); margin: auto; padding: clamp(24px, 3vw, 34px); background: #fff; border-radius: 8px; box-shadow: var(--shadow); }
.relocation .section-title h2 { max-width: 620px; }
.relocation h2 { font-size: clamp(30px, 2.5vw, 36px); }
.relocation-layout .button { margin-top: 14px; }
.relocation-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.relocation-points article { min-width: 0; padding: 16px; background: var(--off-white); border-radius: var(--radius-sm); }
.relocation-points span { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.relocation-points b { display: block; margin-top: 4px; font-size: 17px; }
.relocation-points p { margin: 4px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* Requirements */
.requirements { padding-top: 56px; padding-bottom: 40px; color: #fff; background: var(--navy-dark); }
.requirements .overline, .requirements h2 { color: #fff; }
.requirements .overline { color: var(--yellow); }
.requirements-layout { width: min(100%, 1000px); margin: 26px auto 0; }
.requirements-tabs { min-width: 0; }
.requirements-tablist { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin-bottom: 10px; }
.requirements-tab { min-height: 52px; padding: 10px; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm) var(--radius-sm) 0 0; font-weight: 900; cursor: pointer; }
.requirements-tab.is-active { color: var(--navy-dark); background: var(--yellow); border-color: var(--yellow); }
.requirements-panel { overflow: hidden; color: var(--text); background: #fff; border-radius: 0 0 var(--radius-md) var(--radius-md); }
.requirements-role-summary { padding: 20px 24px; background: var(--light-blue); border-bottom: 1px solid var(--line); }
.requirements-role-summary p { margin: 0 0 4px; color: var(--blue); font-size: 11.5px; font-weight: 900; letter-spacing: .14em; }
.requirements-role-summary h3 { margin: 0 0 5px; font-size: 22px; }
.requirements-role-summary span { color: var(--muted); font-size: 14px; line-height: 1.6; }
.requirements-table { margin: 0; }
.requirements-table > div { display: grid; grid-template-columns: 150px minmax(0, 1fr); border-bottom: 1px solid var(--line); }
.requirements-table > div:last-child { border-bottom: 0; }
.requirements-table dt, .requirements-table dd { margin: 0; padding: 13px 18px; line-height: 1.65; }
.requirements-table dt { font-size: 14.5px; }
.requirements-table dd { font-size: 15.5px; }
.requirements-table dt { color: var(--navy); background: #f1f6f9; font-weight: 900; }
.requirements-notice { margin: 10px 0 0; color: #cddce5; font-size: 13px; line-height: 1.65; }

/* FAQ */
.faq { padding-top: 52px; padding-bottom: 36px; background: #fff; }
.faq-layout { display: grid; width: min(100%, 1000px); grid-template-columns: minmax(0, 1.45fr) minmax(220px, .55fr); align-items: start; gap: 24px; margin: 26px auto 0; }
.faq-list { min-width: 0; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 14px 44px 14px 18px; color: var(--navy); font-size: 16px; font-weight: 900; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before { content: "Q"; display: inline-grid; width: 24px; height: 24px; place-items: center; margin-right: 10px; color: #fff; background: var(--blue); border-radius: 50%; font-size: 11px; }
.faq-list summary::after { content: "+"; position: absolute; top: 50%; right: 16px; color: var(--blue); font-size: 20px; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 18px 15px 52px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.faq-photo { position: sticky; top: calc(var(--header-height) + 24px); margin: 0; overflow: hidden; background: var(--light-blue); border-radius: 8px; }
.faq-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.faq-photo figcaption { padding: 13px; color: var(--navy); font-size: 13.5px; font-weight: 900; }
.faq-conversion { width: min(100%, 1000px); }

/* Entry / Form */
.entry { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr); gap: clamp(30px, 5vw, 70px); padding: 56px var(--page-gutter); color: #fff; background: var(--navy-dark); }
.entry-copy { width: 100%; max-width: 450px; justify-self: end; }
.entry .overline { color: var(--yellow); }
.entry h2, .entry-copy > p { color: #fff; }
.entry h2 small { display: block; margin-bottom: 12px; color: var(--yellow); font-size: .38em; line-height: 1.5; letter-spacing: 0; }
.entry-copy > p { color: #d8e6ee; }
.entry-online-interview { display: flex; gap: 12px; padding: 14px; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-sm); }
.entry-online-interview b { flex: 0 0 auto; color: var(--yellow); font-size: 11.5px; letter-spacing: .1em; }
.entry-online-interview span { font-size: 14px; line-height: 1.6; }
.entry-copy ol { display: grid; gap: 8px; padding: 0; margin: 22px 0; list-style: none; }
.entry-copy li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.entry-copy li span { display: grid; width: 28px; height: 28px; place-items: center; color: var(--navy-dark); background: var(--yellow); border-radius: 50%; font-weight: 900; }
.entry-direct-contact small, .entry-direct-contact a { display: block; }
.entry-direct-contact small { color: #a8becb; }
.entry-direct-contact a { color: #fff; font-size: 22px; font-weight: 900; text-decoration: none; }
.form-card { width: min(100%, 760px); padding: clamp(22px, 3vw, 34px); color: var(--text); background: #fff; border-radius: 10px; box-shadow: var(--shadow-strong); }
.form-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 16px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.form-heading p { margin: 0; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.form-heading h3 { margin: 2px 0 0; font-size: 26px; }
.form-heading > small { padding: 6px 10px; color: var(--green); background: #eaf6ed; border-radius: 999px; font-weight: 900; white-space: nowrap; }
.intent-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; padding: 0; margin: 0 0 20px; border: 0; }
.intent-options legend { grid-column: 1 / -1; margin-bottom: 10px; font-size: 15px; font-weight: 900; }
.intent-options em, .field-grid em { color: var(--danger); font-size: 11px; font-style: normal; }
.intent-options label { position: relative; min-width: 0; cursor: pointer; }
.intent-options input { position: absolute; opacity: 0; }
.intent-options label > span { display: block; height: 100%; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.intent-options input:checked + span { background: var(--yellow-soft); border-color: var(--yellow); box-shadow: inset 0 0 0 1px var(--yellow); }
.intent-options b, .intent-options small { display: block; }
.intent-options b { font-size: 15px; }
.intent-options small { margin-top: 3px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field-grid label, .birth-date-field { min-width: 0; }
.field-grid label > span, .birth-date-field > span { display: block; margin-bottom: 5px; font-size: 15px; font-weight: 900; }
.field-grid input, .field-grid select, .field-grid textarea { width: 100%; min-height: 46px; padding: 10px 12px; color: var(--text); background: #fff; border: 1px solid #bdccd5; border-radius: 6px; outline: none; font-size: 16px; }
.birth-date-fields { display: grid; min-width: 0; grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr)); gap: 8px; }
.birth-date-fields select { min-width: 0; max-width: 100%; }
.field-grid textarea { min-height: 110px; resize: vertical; }
.field-grid input:focus, .field-grid select:focus, .field-grid textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18,111,168,.12); }
.full-field, .application-only { grid-column: 1 / -1; }
.application-only { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-guidance, .form-error { margin: -7px 0 0; font-size: 13px; line-height: 1.5; }
.contact-guidance { color: var(--muted); }
.form-error { color: var(--danger); }
.consent { display: flex; align-items: center; gap: 8px; margin: 18px 0; font-size: 14px; }
.consent input { width: 18px; height: 18px; }
.submit-button { width: 100%; font-size: 16px; }
.confirm-panel h3, .thanks-panel h3 { font-size: 26px; }
.panel-step { color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.confirm-panel dl { margin: 18px 0; border-top: 1px solid var(--line); }
.confirm-panel dl > div { display: grid; grid-template-columns: 150px minmax(0, 1fr); border-bottom: 1px solid var(--line); }
.confirm-panel dt, .confirm-panel dd { padding: 10px; font-size: 14px; }
.confirm-panel dt { font-weight: 900; background: var(--light-blue); }
.form-endpoint-notice { padding: 12px; color: var(--muted); background: var(--off-white); font-size: 13px; line-height: 1.55; }
.confirm-actions { display: grid; grid-template-columns: .4fr 1fr; gap: 10px; }
.confirm-actions > button:first-child { border: 1px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer; }
.phone-contact-button { width: 100%; margin-top: 10px; color: #fff; background: var(--navy); }
.thanks-panel { padding: 36px 0; text-align: center; }
.thanks-panel > span { display: grid; width: 60px; height: 60px; place-items: center; margin: 0 auto 16px; color: #fff; background: var(--green); border-radius: 50%; font-size: 28px; }

/* Footer */
footer { padding: 34px var(--page-gutter) 100px; color: #bfd0db; background: #021c31; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { width: auto; height: 40px; filter: brightness(0) invert(1); }
.sat-logo-footer { width: 42px; height: 42px; border-radius: 6px; }
footer nav { display: flex; flex-wrap: wrap; gap: 16px; margin: 24px 0; }
footer nav a { color: #fff; font-size: 12.5px; font-weight: 800; text-decoration: none; }
.recruiter-info { display: flex; flex-wrap: wrap; gap: 12px 28px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.recruiter-info p { margin: 0; font-size: 12.5px; }
.recruiter-info b { margin-right: 8px; color: #fff; }
footer > p, footer > small { font-size: 11.5px; }
footer > p { margin-top: 16px; }
.mobile-entry { display: none; }

/* Responsive */
@media (max-width: 1100px) {
  :root { --section-space: clamp(56px, 5vw, 70px); }
  .brand-logo { height: 34px; }
  .site-header nav { gap: 13px; }
  .site-header nav > a { font-size: 11px; }
  .site-header .nav-entry { padding: 10px 15px; }
  .hero { min-height: 620px; }
  .hero-copy { width: min(100%, 1000px); }
  .hero-title-block { width: min(100%, 680px); }
  .hero-content { width: min(100%, 700px); }
  .job-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .career-flow { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .career-step { padding-inline: 10px; }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .hero-copy { width: 100%; align-items: center; padding-right: var(--page-gutter); padding-left: var(--page-gutter); }
  .hero-title-block, .hero-content { width: min(100%, 700px); }
  .hero-content { margin-inline: auto; }
  .hero-invitation-main { font-size: clamp(42px, 5vw, 48px); }
  .hero-lead { font-size: 16px; }
  .response-flow b { font-size: 17px; }
  .response-flow p, .value-grid p, .job-card div > p:last-child, .beginner-photo span, .beginner-points p,
  .assignment-note p, .career-step p, .digital-team-visual span, .digital-video-meta span,
  .image-card figcaption span, .benefit-card p, .relocation-points p { font-size: 14.5px; line-height: 1.65; }
  .softball-stats p { font-size: 13px; }
  .requirements-notice { font-size: 12.5px; }
  .softball-gallery figcaption, .faq-photo figcaption { font-size: 13px; }
  .requirements-role-summary span, .requirements-table dt { font-size: 14px; }
  .requirements-table dd { font-size: 15px; }
  .faq-list summary { font-size: 15.5px; }
  .faq-list details p { font-size: 14px; }
  .entry-online-interview span, .field-grid label > span { font-size: 13.5px; }
  .intent-options b { font-size: 14px; }
  .intent-options small { font-size: 12.5px; }
  .relocation-layout { grid-template-columns: minmax(0, 1fr); }
  .work-life-layout { grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr); gap: 28px; }
  .work-life-points article { padding: 20px; }
  .work-life-closing { align-items: stretch; flex-direction: column; }
  .softball { grid-template-columns: minmax(0, 1fr); grid-template-areas: "copy" "stats" "gallery"; }
  .softball-gallery { aspect-ratio: 16 / 7; }
}

@media (max-width: 820px) {
  :root { --header-height: 68px; --page-gutter: clamp(18px, 4vw, 30px); }
  .site-header { gap: 12px; padding-top: 6px; }
  .sat-logo-header { width: 42px; height: 42px; }
  .brand-logo { height: 31px; }
  .site-header nav > a:not(.nav-entry) { display: none; }
  .hero { min-height: 590px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-copy { padding-top: 62px; }
  .hero-title-block { width: min(100%, 620px); }
  .hero h1::before { inset: -16% -9%; }
  .hero-softball-visual { clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%); }
  .hero-area { top: 15px; }
  .hero-visual figcaption { bottom: 18px; }
  .hero-softball-visual figcaption { top: 70px; }
  .recruit-video { grid-template-columns: minmax(0, 1fr); }
  .video-copy { max-width: 620px; }
  .response-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-grid { grid-template-columns: minmax(0, 1fr); }
  .mission-scenes { grid-template-columns: minmax(0, 1fr); }
  .feature-image { aspect-ratio: 16 / 7; }
  .beginner-layout, .digital-layout, .people-layout, .relocation-layout, .faq-layout, .entry { grid-template-columns: minmax(0, 1fr); }
  .beginner-photo { max-width: 620px; }
  .beginner-heading-line > .heading-phrase { display: block; }
  .career-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .career-step-start { grid-column: 1 / -1; }
  .career-step:not(:last-child)::after { display: none; }
  .digital-copy { max-width: none; }
  .digital-team-visual { max-width: 620px; }
  .people-copy, .faq-photo { position: static; }
  .work-life-layout { grid-template-columns: minmax(0, 1fr); }
  .work-life-visual { max-width: 680px; aspect-ratio: 16 / 10; }
  .softball { grid-template-columns: minmax(0, 1fr); grid-template-areas: "copy" "stats" "gallery"; }
  .softball-copy { max-width: 680px; }
  .softball-stats { max-width: 500px; }
  .relocation-layout { padding: 28px; }
  .faq-photo { max-width: 420px; }
  .faq-photo img { aspect-ratio: 16 / 10; }
  .entry-copy { max-width: 680px; justify-self: start; }
  .form-card { justify-self: center; }
}

@media (max-width: 767px) {
  .hero-mobile-break { display: initial; }
  .hero {
    min-height: 0;
    grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
    grid-template-rows: clamp(300px, 88vw, 360px) auto;
    overflow: visible;
    background: #fff;
  }
  .hero-visual, .hero-softball-visual { grid-row: 1; height: clamp(300px, 88vw, 360px); }
  .hero-visual { grid-column: 1; }
  .hero-softball-visual {
    grid-column: 2;
    width: 107%;
    height: clamp(300px, 88vw, 360px);
    margin-left: -7%;
    clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%);
    transform: none;
  }
  .hero-visual::after, .hero-softball-visual::after {
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,.06) 0%,
      rgba(255,255,255,0) 22%,
      rgba(255,255,255,0) 48%,
      rgba(255,255,255,.2) 62%,
      rgba(255,255,255,.58) 76%,
      rgba(255,255,255,.9) 90%,
      #fff 100%
    );
  }
  .hero-visual img { object-position: 55% center; }
  .hero-softball-visual img { object-position: 54% center; }
  .hero-copy {
    position: relative;
    z-index: 6;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: none;
    align-self: start;
    justify-self: stretch;
    align-items: center;
    padding: 42px 16px 24px;
    margin: -68px 0 0;
    color: var(--navy-dark);
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.38) 18px,
      rgba(255,255,255,.78) 42px,
      #fff 74px,
      #fff 100%
    );
    border-radius: 0;
    box-shadow: none;
    pointer-events: auto;
  }
  .hero-title-block, .hero-content {
    width: min(100%, 480px);
    max-width: none;
    align-self: center;
    margin-inline: auto;
    inset-inline: auto;
    text-align: center;
    transform: none;
  }
  .hero-title-block .overline { display: none; }
  .hero-recruit-badge { display: inline-flex; margin-bottom: 8px; box-shadow: 0 6px 16px rgba(3,39,68,.14); }
  .hero-recruit-badge span, .hero-recruit-badge strong { padding: 7px 11px; font-size: 12px; }
  .hero h1 { width: 100%; max-width: 420px; padding: 4px 2px; }
  .hero h1::before { inset: -10% -3%; filter: drop-shadow(0 8px 14px rgba(3,39,68,.12)); }
  .hero-headline-image { width: 100%; }
  .hero-content { display: flex; flex-direction: column; align-items: center; margin-top: 6px; margin-left: auto; margin-right: auto; }
  .hero-invitation {
    display: flex;
    width: min(100%, 420px);
    align-items: center;
    padding: 0;
    margin: 0 auto;
    color: var(--navy-dark);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    line-height: 1.3;
    letter-spacing: -.03em;
    text-align: center;
    text-shadow: none;
    white-space: nowrap;
  }
  .hero-invitation-kicker { font-size: clamp(17px, 4.6vw, 20px); line-height: 1.3; }
  .hero-invitation-main { font-size: clamp(26px, 6.9vw, 29px); line-height: 1.25; }
  .hero-invitation::after { width: 36px; height: 3px; margin-top: 9px; margin-inline: auto; }
  .hero-lead { display: block; width: min(100%, 430px); margin: 10px auto 0; font-size: 15px; line-height: 1.7; text-align: center; text-shadow: none; }
  .hero-facts { display: grid; width: min(100%, 430px); grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; padding: 0; margin: 12px auto 0; list-style: none; }
  .hero-facts li { min-width: 0; padding: 9px 5px; color: #fff; background: var(--navy-dark); border-bottom: 3px solid var(--yellow); border-radius: 6px; text-align: center; }
  .hero-facts b, .hero-facts small { display: block; }
  .hero-facts b { font-size: clamp(12px, 3.2vw, 13px); line-height: 1.35; white-space: nowrap; }
  .hero-facts small { margin-top: 3px; color: #d9e8f0; font-size: 11px; line-height: 1.35; }
  .hero-actions { width: 100%; align-items: center; justify-content: center; gap: 8px; margin-top: 13px; }
  .hero-actions .button { width: auto; min-width: 210px; min-height: 48px; padding: 12px 24px; margin-inline: auto; border-radius: 8px; font-size: 15px; }
  .hero-actions .text-link { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; margin-inline: auto; color: var(--navy); font-size: 13px; text-align: center; text-shadow: none; }
  .hero-area {
    top: 12px;
    left: 10px;
    display: block;
    max-width: calc(55% - 18px);
    padding: 0;
    overflow: visible;
    background: rgba(3,39,68,.9);
    border-left: 3px solid var(--yellow);
    border-radius: 0 3px 3px 0;
    clip-path: none;
    filter: drop-shadow(0 5px 10px rgba(3,39,68,.24));
  }
  .hero-area span { display: none; }
  .hero-area strong { padding: 7px 9px; font-size: clamp(12px, 3vw, 13px); line-height: 1.2; white-space: nowrap; }
  .hero-visual figcaption { display: none; }
  .hero-softball-visual figcaption { top: 14px; right: 10px; bottom: auto; display: block; transform: rotate(-3deg); }
  .hero-softball-visual figcaption b { color: var(--yellow); font-size: clamp(19px, 5.8vw, 25px); line-height: 1; white-space: nowrap; }
  .hero-softball-visual figcaption span { display: none; }
  .quick-facts { padding: 0 12px 12px; margin-top: -24px; background: linear-gradient(to bottom, #fff 0 24px, var(--off-white) 24px 100%); }
  .quick-facts-inner { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .quick-fact-primary { min-height: 132px; padding: 20px 18px 18px; }
  .quick-fact-primary div::before { margin-bottom: 7px; font-size: 11px; }
  .quick-fact-primary b { font-size: clamp(28px, 5vw, 34px); }
  .quick-fact-primary b::after { width: 28px; height: 3px; margin-top: 9px; }
  .quick-fact-primary small { margin-top: 7px; font-size: 12.5px; }
  .quick-fact-sub { min-height: 38px; padding: 10px 8px; }
  .quick-fact-sub b { font-size: 12.5px; }
}

@media (max-width: 600px) {
  :root { --section-space: 48px; --page-gutter: 16px; }
  .quick-facts { padding-inline: 10px; margin-top: -24px; background: linear-gradient(to bottom, transparent 0 24px, var(--off-white) 24px 100%); }
  .quick-fact-primary { grid-column: span 3; min-height: 122px; padding: 18px 14px 16px; }
  .quick-fact-primary:nth-child(1) { border-radius: 3px 0 0 0; }
  .quick-fact-primary:nth-child(2) { border-right: 1px solid rgba(255,255,255,.18); border-radius: 0 3px 0 0; }
  .quick-fact-primary:nth-child(3) { grid-column: 1 / -1; border-top: 0; border-radius: 0; }
  .quick-fact-primary b { font-size: clamp(26px, 7.5vw, 32px); }
  .quick-fact-primary small { font-size: 12.5px; }
  .quick-fact-sub { grid-column: span 2; padding-inline: 4px; }
  .quick-fact-sub b { font-size: 12.5px; }
  body { padding-bottom: 72px; font-size: 15.5px; }
  h2 { font-size: clamp(30px, 9vw, 40px); }
  .sp-only { display: initial; }
  .site-header { min-height: var(--header-height); gap: 10px; padding-inline: 14px; overflow: visible; }
  .site-header .brand { min-width: 0; flex-shrink: 0; gap: 8px; overflow: visible; }
  .sat-logo-header { width: 40px; height: 40px; flex: 0 0 40px; object-fit: cover; }
  .brand-logo { display: block; width: clamp(80px, 22vw, 92px); max-width: none; height: auto; flex: 0 0 auto; object-fit: contain; }
  .site-header nav { min-width: 0; flex: 0 1 auto; gap: 0; }
  .site-header .nav-entry { min-height: 44px; padding: 9px 14px; font-size: 12px; }
  .section-title.centered .overline { justify-content: flex-start; }
  .section-title h2 { margin-bottom: clamp(10px, 3.5vw, 14px); }
  .recruit-video { padding-top: 44px; padding-bottom: 18px; gap: 22px; }
  .video-placeholder { border-width: 5px; }
  .video-play { width: 50px; height: 50px; }
  .video-placeholder p span { font-size: 13px; }
  .section-title.centered { text-align: left; }
  .sat-intro { padding-top: 22px; padding-bottom: 18px; }
  .sat-intro h2 { font-size: clamp(22px, 5.7vw, 28px); }
  .values h2, .jobs h2 { font-size: clamp(28px, 7.4vw, 34px); }
  .response-flow { grid-template-columns: minmax(0, 1fr); gap: 10px; margin-top: 24px; }
  .response-flow article { display: grid; grid-template-columns: 88px minmax(0, 1fr); grid-template-rows: auto auto auto; column-gap: 12px; padding: 10px; }
  .response-flow article::before { grid-column: 1; grid-row: 1 / span 3; width: 88px; height: 88px; margin: 0; aspect-ratio: 1; border-radius: 7px; }
  .response-flow span, .response-flow b, .response-flow p { grid-column: 2; }
  .response-flow span { font-size: 28px; }
  .response-flow b { min-height: 0; margin: 8px 0 0; font-size: 17px; line-height: 1.45; }
  .response-flow p { margin-top: 8px; font-size: 14px; line-height: 1.65; }
  .values { padding-top: 22px; padding-bottom: 18px; }
  .value-grid { gap: 12px; margin-top: 22px; }
  .value-grid article { padding: 14px; }
  .value-grid h3 { font-size: 16px; }
  .value-grid p { font-size: 14px; line-height: 1.65; }
  .image-card figcaption { padding: 13px 14px; }
  .image-card figcaption b { font-size: 12px; }
  .image-card figcaption span { font-size: 13.5px; line-height: 1.55; }
  .feature-image { aspect-ratio: 4 / 3; }
  .jobs { padding-top: 22px; padding-bottom: 24px; }
  .job-grid { grid-template-columns: minmax(0, 1fr); gap: 12px; margin-top: 24px; }
  .job-card { display: grid; grid-template-columns: 42% 58%; }
  .job-card > img { height: 100%; aspect-ratio: auto; }
  .job-card > div { padding: 15px; }
  .role-icon { top: 10px; right: 10px; width: 38px; height: 38px; }
  .role-code { padding-right: 34px; font-size: 11px; }
  .job-card h3 { font-size: 21px; }
  .job-card strong { font-size: 15px; }
  .job-card div > p:last-child { font-size: 14px; line-height: 1.65; }
  .beginner { padding-top: 28px; padding-bottom: 18px; }
  .beginner-layout { gap: 24px; }
  .beginner h2 { font-size: clamp(24px, 6.5vw, 28px); }
  .beginner-photo { border-radius: var(--radius-md); }
  .beginner-photo figcaption { right: 12px; bottom: 12px; left: 12px; padding: 12px 14px; }
  .beginner-photo span { font-size: 13px; line-height: 1.55; }
  .beginner-points b { font-size: 16px; }
  .beginner-points p { font-size: 14px; line-height: 1.65; }
  .conversion-strip { align-items: stretch; flex-direction: column; gap: 14px; padding: 18px; }
  .conversion-strip p { font-size: 14px; line-height: 1.65; }
  .conversion-actions { justify-content: space-between; }
  .conversion-actions .button { min-height: 46px; padding: 10px 16px; font-size: 15px; }
  .conversion-actions .text-link { font-size: 13px; }
  .assignment-note { padding: 14px; text-align: left; }
  .assignment-note strong { font-size: 16px; }
  .assignment-note p { font-size: 14px; line-height: 1.65; }
  .career { padding-top: 22px; padding-bottom: 28px; }
  .career-flow { gap: 8px; }
  .career-step { padding: 14px 10px; }
  .career-step-number { font-size: 12px; }
  .career-step strong { font-size: 16px; }
  .career-step p { font-size: 14px; line-height: 1.65; }
  .digital { padding-top: 40px; padding-bottom: 32px; }
  .digital-layout { gap: 24px; }
  .digital h2 { font-size: clamp(24px, 6.6vw, 28px); }
  .digital-copy > p { font-size: 15px; line-height: 1.75; }
  .digital-team-visual figcaption { padding: 12px 14px; }
  .digital-team-visual small { font-size: 11px; }
  .digital-team-visual span { font-size: 13.5px; line-height: 1.55; }
  .digital-video-meta { padding: 14px 16px; }
  .digital-video-meta small { font-size: 11px; }
  .digital-video-meta b { font-size: 17px; }
  .digital-video-meta span { font-size: 14px; line-height: 1.55; }
  .digital-channel-button { display: grid; grid-template-columns: 30px minmax(0, 1fr) auto; gap: 8px; padding: 11px 10px; }
  .digital-channel-button i { width: 30px; height: 30px; flex-basis: 30px; }
  .digital-channel-button small { font-size: 12px; }
  .digital-channel-button b { font-size: 16px; line-height: 1.25; white-space: nowrap; word-break: keep-all; overflow-wrap: normal; }
  .digital-channel-button > strong { font-size: 16px; }
  .people { padding-top: 36px; padding-bottom: 18px; }
  .people-layout { gap: 24px; }
  .people-recruit-message { padding-top: 14px; margin-top: 16px; }
  .people-recruit-message strong { font-size: 16px; }
  .people-recruit-message span { font-size: 14px; }
  .people-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .interview-story { grid-column: 1 / -1; grid-template-columns: minmax(0, 1fr); }
  .mobile-interview-heading, .interview-story .portrait, .mobile-interview-comment { grid-column: 1; }
  .mobile-interview-heading { grid-row: 1; }
  .interview-story .portrait { grid-row: 2; aspect-ratio: 3 / 2; }
  .mobile-interview-comment { grid-row: 3; }
  .mobile-interview-heading b { font-size: 11px; }
  .mobile-interview-heading span { font-size: 22px; }
  .mobile-interview-comment blockquote { font-size: 15px; line-height: 1.75; }
  .mobile-interview-comment small { font-size: 13px; }
  .people-mosaic > .image-card:not(.portrait) { aspect-ratio: 4 / 3; }
  .local-card { grid-column: 1 / -1; aspect-ratio: 16 / 7 !important; }
  .work-life { padding-top: 40px; padding-bottom: 40px; }
  .work-life-layout { gap: 24px; }
  .work-life-story .section-title { margin-bottom: 20px; }
  .work-life-story h2 { font-size: clamp(28px, 7.6vw, 36px); }
  .work-life-visual { aspect-ratio: 16 / 10; }
  .work-life-visual figcaption { padding: 32px 16px 14px; }
  .work-life-visual figcaption b { font-size: 16px; }
  .work-life-visual figcaption span { font-size: 13px; }
  .work-life-points article { padding: 16px; }
  .work-life-points article > p:first-child { margin-bottom: 13px; }
  .work-life-points article > p:first-child span { font-size: 26px; }
  .work-life-points article > p:first-child small { font-size: 10px; }
  .work-life-points h3 { margin-bottom: 7px; font-size: 17px; }
  .work-life-points article > p:last-child { font-size: 14px; line-height: 1.65; }
  .work-life-closing { align-items: stretch; flex-direction: column; gap: 14px; padding: 18px; }
  .work-life-closing b { font-size: 17px; }
  .work-life-closing .button { width: 100%; justify-content: center; }
  .softball { gap: 20px; padding-top: 22px; padding-bottom: 28px; }
  .softball h2 { font-size: clamp(26px, 7vw, 30px); }
  .softball-copy > p:last-child { font-size: 14.5px; line-height: 1.7; }
  .softball-stats { width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .softball-stats article { min-height: 112px; padding: 18px 8px 14px; }
  .softball-stats article:nth-child(2) { border-right: 0; }
  .softball-stats article:last-child { grid-column: 1 / -1; min-height: 92px; border-top: 1px solid rgba(255,255,255,.16); }
  .softball-stats strong { font-size: clamp(24px, 6.6vw, 28px); }
  .softball-stats p { font-size: 14px; line-height: 1.55; }
  .softball-stats p > span { display: block; }
  .softball-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto auto; gap: 10px; aspect-ratio: auto; }
  .softball-gallery figure { height: auto; aspect-ratio: 4 / 3; border-width: 3px; border-radius: 7px; }
  .softball-gallery .softball-main { grid-column: 1 / -1; grid-row: 1; aspect-ratio: 16 / 9; }
  .softball-gallery figcaption { min-height: 42px; padding: 8px 9px; font-size: 13px; }
  .benefits { padding-top: 36px; padding-bottom: 18px; }
  .benefit-grid { grid-template-columns: minmax(0, 1fr); gap: 12px; margin-top: 22px; }
  .benefits h2 { font-size: clamp(26px, 7.2vw, 32px); }
  .benefits-heading-line > .heading-phrase, .relocation-heading-line > .heading-phrase { display: block; }
  .benefit-card h3 { font-size: 16px; }
  .benefit-card p { font-size: 14px; line-height: 1.65; }
  .benefit-card { min-height: 300px; }
  .benefit-card > div:not([aria-hidden]) { padding: 108px 16px 16px; }
  .benefit-visual { padding: 13px; }
  .benefit-visual > div[aria-hidden] { height: 68px; padding: 10px; margin-bottom: 10px; }
  .benefits-existing-copy strong { font-size: 16px; }
  .benefits-existing-copy span { font-size: 14px; }
  .benefit-life-event > img { aspect-ratio: auto; }
  .benefit-support-card { min-height: 300px; padding: 0; }
  .benefit-support-card h3 { font-size: 17px; }
  .benefit-support-card small { font-size: 13px; }
  .benefits-more { align-items: stretch; flex-direction: column; gap: 14px; padding: 18px; }
  .benefits-more b { font-size: 17px; }
  .benefits-more .button { width: 100%; justify-content: center; }
  .benefit-visual div span { font-size: 12px; }
  .relocation { padding-top: 22px; padding-bottom: 28px; }
  .relocation-layout { gap: 22px; padding: 20px; border-radius: var(--radius-md); }
  .relocation-points { gap: 7px; }
  .relocation-points article { padding: 12px; }
  .relocation .section-title > p:last-child { font-size: 15px; line-height: 1.75; }
  .relocation-points span { font-size: 12px; }
  .relocation-points b { font-size: 16px; }
  .relocation-points p { font-size: 14px; line-height: 1.65; }
  .requirements { padding-top: 40px; padding-bottom: 28px; }
  .requirements-layout { margin-top: 22px; }
  .requirements-tab { min-height: 48px; padding: 8px 5px; font-size: 13px; }
  .requirements-role-summary { padding: 16px; }
  .requirements-role-summary p { font-size: 11px; }
  .requirements-role-summary h3 { font-size: 20px; }
  .requirements-role-summary span { font-size: 14px; line-height: 1.6; }
  .requirements-table > div { grid-template-columns: minmax(0, 1fr); }
  .requirements-table dt { padding: 10px 14px 3px; background: #f1f6f9; font-size: 13.5px; }
  .requirements-table dd { padding: 4px 14px 11px; background: #f1f6f9; font-size: 14.5px; line-height: 1.7; }
  .requirements-notice { font-size: 13px; line-height: 1.65; }
  .faq { padding-top: 40px; padding-bottom: 28px; }
  .faq-layout { gap: 18px; margin-top: 22px; }
  .faq-list summary { padding-block: 12px; font-size: 15px; line-height: 1.6; }
  .faq-list details p { padding-left: 18px; font-size: 14px; line-height: 1.75; }
  .faq-photo { max-width: none; }
  .faq-photo figcaption { font-size: 13px; }
  .entry { gap: 28px; padding-top: 40px; padding-bottom: 40px; }
  .entry h2 { font-size: clamp(34px, 8vw, 42px); }
  .entry h2 small { font-size: .42em; }
  .entry-copy > p { font-size: 15px; line-height: 1.75; }
  .entry-online-interview b { font-size: 11px; }
  .entry-online-interview span { font-size: 14px; line-height: 1.6; }
  .entry-copy li { font-size: 14px; }
  .form-card { padding: 18px 14px; border-radius: var(--radius-md); }
  .form-heading { align-items: flex-start; }
  .form-heading p { font-size: 11px; }
  .form-heading h3 { font-size: 22px; }
  .intent-options { grid-template-columns: minmax(0, 1fr); }
  .intent-options label > span { padding: 10px; }
  .intent-options legend { font-size: 14px; }
  .intent-options em, .field-grid em { font-size: 11px; }
  .intent-options b { font-size: 15px; }
  .intent-options small { font-size: 13px; line-height: 1.5; }
  .field-grid, .application-only { grid-template-columns: minmax(0, 1fr); }
  .application-only, .full-field { grid-column: 1; }
  .field-grid label > span, .birth-date-field > span { font-size: 14px; }
  .field-grid input, .field-grid select, .field-grid textarea { min-width: 0; max-width: 100%; font-size: 16px; line-height: 1.5; }
  .field-grid input, .field-grid select { min-height: 48px; }
  .birth-date-fields { grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr)); gap: 6px; }
  .birth-date-fields select { width: 100%; min-width: 0; max-width: 100%; height: 48px; padding-inline: 8px; box-sizing: border-box; }
  .field-grid input::placeholder, .field-grid textarea::placeholder { font-size: 16px; }
  .contact-guidance, .form-error { font-size: 13px; line-height: 1.5; }
  .consent { font-size: 13.5px; }
  .submit-button, .phone-contact-button { min-height: 48px; font-size: 16px; }
  .panel-step { font-size: 11px; }
  .confirm-panel dl > div { grid-template-columns: minmax(0, 1fr); }
  .confirm-panel dt { padding-bottom: 3px; font-size: 14px; }
  .confirm-panel dd { padding-top: 3px; font-size: 14px; }
  .form-endpoint-notice { font-size: 13px; line-height: 1.55; }
  footer { padding-bottom: 28px; }
  .mobile-entry { position: fixed; z-index: 120; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); padding-bottom: env(safe-area-inset-bottom, 0px); background: #fff; box-shadow: 0 -8px 24px rgba(3,39,68,.18); }
  .mobile-entry a { display: flex; min-height: 64px; align-items: center; justify-content: center; flex-direction: column; padding: 8px; text-align: center; text-decoration: none; }
  .mobile-entry a:first-child { color: var(--navy-dark); background: var(--yellow); }
  .mobile-entry a:last-child { color: #fff; background: var(--navy); }
  .mobile-entry small { font-size: 11px; }
  .mobile-entry strong { color: inherit; font-size: 15px; line-height: 1.35; }
  .recruiter-info p { font-size: 12.5px; }
  footer nav a { font-size: 13px; }
  footer > p, footer > small { font-size: 11px; }
}

@media (max-width: 390px) {
  :root { --page-gutter: 14px; }
  .hero-copy { padding-inline: 16px; }
  .hero-title-block { width: 100%; }
  .hero-area strong { font-size: 13px; }
  .job-card { grid-template-columns: 40% 60%; }
  .relocation-points { grid-template-columns: minmax(0, 1fr); }
  .entry-main-line > .heading-phrase { display: block; }
}

@media (max-width: 375px) {
  .hero-invitation { white-space: normal; }
  .hero-invitation-kicker { font-size: clamp(16px, 4.8vw, 18px); }
  .hero-invitation-main { font-size: clamp(22px, 6.4vw, 24px); }
  .hero-invitation-main > span { display: block; }
  .hero-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-facts li:last-child { grid-column: 1 / -1; }
}

@media (max-width: 340px) {
  .site-header { gap: 8px; padding-inline: 12px; }
  .site-header .brand { gap: 6px; }
  .sat-logo-header { width: 34px; height: 34px; flex-basis: 34px; }
  .brand-logo { width: 76px; }
  .site-header .nav-entry { padding-inline: 10px; font-size: 12px; }
  .hero-copy { padding: 18px 16px 14px; margin-top: -30px; }
  .hero-invitation { width: 100%; }
  .hero-invitation-main { font-size: clamp(20px, 6.2vw, 22px); }
  .hero-area strong { padding-inline: 7px; }
  .digital-channel-links { grid-template-columns: minmax(0, 1fr); }
  .softball-stats article { padding-inline: 6px; }
  .softball-gallery { grid-template-columns: minmax(0, 1fr); }
  .softball-gallery figure, .softball-gallery .softball-main { grid-column: 1; grid-row: auto; aspect-ratio: 16 / 10; }
  .job-card { grid-template-columns: minmax(0, 1fr); }
  .job-card > img { aspect-ratio: 16 / 8; }
  .career-flow { grid-template-columns: minmax(0, 1fr); }
  .career-step-start { grid-column: 1; }
  .work-life-points, .benefit-grid { grid-template-columns: minmax(0, 1fr); }
  .benefit-life-event { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .has-scroll-reveal [data-reveal] { opacity: 1 !important; transform: none !important; }
}
