:root {
  --orange: #f0531c;
  --ink: #181311;
  --blue-ink: #022a3e;
  --slate: #50575c;
  --taupe: #6c6259;
  --muted: #6e6258;
  --paper: #fbf7f2;
  --soft: #f3f4f5;
  --peach: #ffe3d4;
  --blue: #f0531c;
  --soft-blue: #f3f4f5;
  --max: 1288px;
  --container: min(100% - 48px, 1288px);
}

.site-header:has(.mobile-menu[open]),
body.menu-open .site-header {
  inset: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  pointer-events: none;
  position: fixed !important;
  width: 100% !important;
  z-index: 2147483644 !important;
}

.site-header:has(.mobile-menu[open]) .brand,
.site-header:has(.mobile-menu[open]) .nav,
.site-header:has(.mobile-menu[open]) .header-button,
body.menu-open .site-header .brand,
body.menu-open .site-header .nav,
body.menu-open .site-header .header-button {
  visibility: hidden !important;
}

.site-header:has(.mobile-menu[open]) .mobile-menu,
body.menu-open .mobile-menu {
  pointer-events: none;
}

.site-header:has(.mobile-menu[open]) .mobile-menu summary,
.site-header:has(.mobile-menu[open]) .mobile-nav,
body.menu-open .mobile-menu summary,
body.menu-open .mobile-nav {
  pointer-events: auto;
}

.site-header:has(.mobile-menu[open]) .mobile-nav,
body.menu-open .mobile-nav {
  background: #fff !important;
  bottom: auto !important;
  box-shadow: 0 20px 60px rgba(24, 19, 17, 0.16) !important;
  max-height: calc(100vh - 32px) !important;
  min-height: min(80vh, 680px) !important;
  opacity: 1 !important;
  overflow-y: auto !important;
  position: fixed !important;
  right: 16px !important;
  top: 16px !important;
  transform: none !important;
  width: min(80vw, 420px) !important;
  z-index: 2147483646 !important;
}

.site-header:has(.mobile-menu[open]) .mobile-menu summary,
body.menu-open .mobile-menu summary {
  position: fixed !important;
  right: 20px !important;
  top: 20px !important;
  z-index: 2147483647 !important;
}

.mobile-menu[open] {
  inset: 0 !important;
  pointer-events: none;
  position: fixed !important;
  z-index: 2147483645 !important;
}

.mobile-menu[open] summary {
  pointer-events: auto;
  z-index: 2147483647 !important;
}

.mobile-menu[open] .mobile-nav {
  background: #fff !important;
  isolation: isolate;
  pointer-events: auto;
  position: fixed !important;
  transform: translateZ(0);
  z-index: 2147483646 !important;
}

.mobile-menu[open] {
  z-index: 10000;
}

.mobile-menu[open] summary {
  z-index: 10002;
}

.mobile-menu[open] .mobile-nav {
  z-index: 10001;
}

.fade-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--fade-delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  overflow-x: hidden;
}

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

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

.site-header {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 200px 1fr 150px;
  margin: 0 auto;
  padding: 24px 0 18px;
  position: sticky !important;
  top: 0 !important;
  width: var(--container);
  z-index: 100000 !important;
}

.site-header::before {
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.72);
  content: "";
  inset: 0 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: absolute;
  z-index: -1;
}

.brand img {
  height: 56px;
  object-fit: contain;
  width: 200px;
}

.nav,
.footer-nav {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: clamp(16px, 2vw, 34px);
  justify-content: flex-end;
  line-height: 1;
}

.nav a,
.footer-nav a {
  transition: color 160ms ease;
}

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

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 46px;
  padding: 0 28px;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--orange);
  color: #fff;
}

.button-primary:hover {
  background: #c94313;
}

.button-secondary {
  background: var(--peach);
  border: 1.2px solid var(--ink);
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.button-secondary.pale,
.button-light {
  background: var(--paper);
  border: 1.2px solid var(--ink);
  color: var(--ink);
}

.button-secondary.pale:hover,
.button-light:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.header-button {
  padding-inline: 20px;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  align-items: center;
  background: var(--orange);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 46px;
  justify-content: center;
  list-style: none;
  position: relative;
  width: 46px;
  z-index: 30;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  background: #fff;
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: opacity 160ms ease, transform 160ms ease;
  width: 20px;
}

.mobile-menu[open] summary span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu[open] summary span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] summary span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu[open] summary {
  position: fixed;
  right: 28px;
  top: 28px;
}

.mobile-nav {
  background: #fff;
  border: 1px solid rgba(24, 19, 17, 0.12);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(24, 19, 17, 0.16);
  display: grid;
  gap: 8px;
  max-height: calc(100vh - 40px);
  min-height: min(80vh, 680px);
  overflow-y: auto;
  padding: 88px 28px 32px;
  position: fixed;
  right: 20px;
  top: 20px;
  width: min(80vw, 420px);
  z-index: 20;
}

.mobile-nav a:not(.button) {
  border-radius: 6px;
  font-size: clamp(24px, 7.5vw, 36px);
  font-weight: 700;
  line-height: 1;
  padding: 14px 0;
}

.mobile-nav a:not(.button):hover {
  background: var(--soft);
  color: var(--orange);
}

.mobile-nav .button {
  font-size: 16px;
  justify-self: start;
  margin-top: 18px;
  min-height: 52px;
  min-width: 180px;
}

.section-grid {
  display: grid;
  gap: clamp(48px, 8vw, 112px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.83fr);
  margin: 0 auto;
  width: var(--container);
}

.eyebrow {
  font-family: "Archivo", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
}

.orange {
  color: var(--orange);
}

.muted {
  color: var(--muted);
}

.peach {
  color: var(--peach);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1.5;
  margin: 26px 0 36px;
}

h2 {
  font-size: clamp(34px, 3.6vw, 46px);
  line-height: 1.18;
  margin: 28px 0 0;
}

.lead {
  font-size: 20px;
  line-height: 1.7;
  max-width: 600px;
}

.recruit-hero {
  padding-top: 90px;
  overflow: hidden;
  background: #fff !important;
}

.hero-strip {
  --gap: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-track {
  width: max-content;
  display: flex;
  will-change: transform;
  animation-duration: 46s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.hero-set {
  display: flex;
  gap: var(--gap);
  padding-right: var(--gap);
}

.hero-set img {
  width: 280px;
  height: 280px;
  flex: 0 0 auto;
  object-fit: cover;
}

.hero-strip-top {
  padding-top: 15px;
}

.hero-strip-top .hero-track {
  animation-name: heroSlideRight;
}

.hero-strip-bottom {
  padding-bottom: 90px;
}

.hero-strip-bottom .hero-track {
  animation-name: heroSlideLeft;
  animation-duration: 42s;
}

.hero-title {
  width: min(var(--max), calc(100% - 48px));
  height: 150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 120px 1fr;
  align-items: center;
  padding-left: 150px;
  color: var(--ink);
}

.hero-title h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.4;
}

.hero-title p {
  margin: 0;
  color: var(--blue);
  font-size: 20px;
}

.hero-title strong {
  justify-self: end;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 3.36px;
}

.section-block {
  position: relative;
}

.message {
  min-height: 841px;
  display: grid;
  place-items: center;
  padding: 84px 24px 78px;
}

.statement {
  width: min(700px, 100%);
  text-align: center;
}

.statement h2 {
  display: inline-block;
  margin: 0 0 34px;
  padding: 0 32px;
  background: rgba(255, 195, 0, 0.14);
  color: var(--ink);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
}

.question {
  margin: 0 0 46px;
  font-size: 20px;
  font-weight: 700;
}

.message-lines {
  display: grid;
  gap: 38px;
  font-size: 20px;
  letter-spacing: 3px;
  line-height: 1.9;
}

.message-lines p {
  margin: 0;
}

.mission-vision {
  padding: 5% 10% 10%;
  background: #fff;
}

.wide-container {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.wide-container img {
  width: 100%;
}

.wide-container p {
  margin: 20px 0 94px;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: 3px;
  line-height: 2.02;
}

.value {
  padding: 60px 24px 92px;
  background: var(--soft-blue);
}

.narrow-container {
  width: min(880px, 100%);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 70px;
  color: var(--ink);
}

.section-heading h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.4;
}

.section-heading p {
  margin: -2px 0 0;
  font-size: 15px;
  line-height: 1.4;
}

.value-list {
  display: grid;
}

.value-item {
  display: grid;
  grid-template-columns: 75px 160px 1fr;
  gap: 35px;
  align-items: start;
  padding: 20px 0 32px 156px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
}

.value-item:first-child {
  padding-top: 0;
}

.value-item .number {
  margin: 0;
  color: #333;
  font-family: Montserrat, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
}

.value-item img {
  width: 160px;
  height: 138px;
  object-fit: cover;
}

.value-item h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2.4px;
  line-height: 1.4;
}

.value-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.deck {
  padding: 112px 24px;
  background: #fff;
}

.deck-frame {
  width: min(884px, 100%);
  margin: 0 auto;
}

.speakerdeck-iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 560 / 315;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: rgba(0, 0, 0, 0.2) 0 5px 40px;
}

.deck-frame iframe {
  display: block;
}

.jobs {
  min-height: 620px;
  display: grid;
  align-items: start;
  padding: 94px 24px 120px;
  background: #fff;
}

.job-list {
  display: grid;
  gap: 30px;
}

.job-card {
  border: 1px solid #333;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.job-card summary {
  min-height: 79px;
  display: grid;
  grid-template-columns: 162px 1fr 48px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.job-card summary::-webkit-details-marker {
  display: none;
}

.job-card:hover,
.job-card:focus-within {
  box-shadow: 0 16px 28px rgba(2, 42, 62, 0.1);
  transform: translateY(-3px);
}

.job-card summary img {
  width: 100px;
  height: 79px;
  object-fit: cover;
}

.job-card summary span {
  display: grid;
  gap: 2px;
  padding-left: 22px;
}

.job-card strong {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
}

.job-card small {
  color: var(--blue);
  font-size: 13px;
}

.job-card b,
.faq summary::after {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
}

.job-card b::before,
.job-card b::after,
.faq summary::before,
.faq summary::after {
  content: "";
}

.job-card b::before,
.job-card b::after,
.faq summary::before,
.faq summary::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1px;
  background: #333;
  transform: translate(-50%, -50%);
}

.job-card b::after,
.faq summary::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.job-card[open] {
  border-radius: 28px;
}

.job-card[open] summary {
  min-height: 205px;
  grid-template-columns: 164px 1fr 56px;
  align-items: start;
  padding-right: 58px;
}

.job-card[open] summary img {
  width: 164px;
  height: 205px;
  object-fit: cover;
}

.job-card[open] summary span {
  padding: 48px 0 0 35px;
}

.job-card[open] summary strong {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.job-card[open] summary small {
  margin-top: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.job-card[open] summary b {
  width: 36px;
  height: 36px;
  margin-top: 52px;
}

.job-card[open] summary b::before,
.job-card[open] summary b::after {
  width: 26px;
}

.job-card[open] summary b::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.job-panel {
  display: grid;
  grid-template-columns: auto 1fr 132px;
  align-items: center;
  gap: 28px;
  margin: -64px 58px 26px 198px;
  color: #333;
}

.job-type {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.job-panel span {
  height: 1px;
  background: #333;
}

.job-panel a {
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
  border-radius: 999px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  letter-spacing: 6px;
  white-space: nowrap;
}

.job-panel a::after {
  margin-left: 6px;
  letter-spacing: 0;
  content: "→";
}

.members {
  padding: 100px 24px;
  overflow: hidden;
  background: #fff;
}

.member-container {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  margin: 0 auto;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  gap: 42px 30px;
  margin-bottom: 100px;
}

.member-card {
  width: 280px;
}

.member-card .more-button {
  display: flex;
}

.member-photo {
  position: relative;
  width: 280px;
  height: 280px;
  display: grid;
  place-items: end center;
  overflow: hidden;
  background: var(--soft);
}

.member-photo img {
  position: relative;
  z-index: 2;
  width: 86%;
  height: 96%;
  object-fit: contain;
  object-position: center bottom;
  transition: filter 0.28s ease, transform 0.28s ease;
}

.member-card:hover .member-photo img,
.member-card:focus-within .member-photo img {
  filter: grayscale(100%);
}

.member-photo::before {
  position: absolute;
  z-index: 1;
  content: "";
}

.member-yudai .member-photo::before {
  inset: 0;
  background: #f3f4f5;
}

.member-yuri .member-photo::before {
  right: -50%;
  bottom: -50%;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  background: var(--navy);
}

.member-tetsuki .member-photo::before {
  left: 50%;
  bottom: 0;
  width: 264px;
  height: 264px;
  border-radius: 50% 50% 0 0;
  background: var(--yellow);
  transform: translateX(-50%);
}

.member-aira .member-photo::before {
  left: 50%;
  bottom: 0;
  width: 264px;
  height: 264px;
  border-radius: 50% 50% 0 0;
  background: var(--pink);
  transform: translateX(-50%);
}

.member-card h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.member-card p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
}

.more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 142px;
  height: 43px;
  margin: 10px auto 0;
  border: 1px solid #000;
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  letter-spacing: 2.25px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.more-button img {
  width: 14px;
}

.more-button:hover,
.more-button:focus-visible {
  color: #fff;
  background: var(--ink);
  transform: translateY(-3px);
}

.video-panel {
  position: relative;
  width: min(1188px, calc(100vw - 48px));
  margin-left: 50%;
  border: 23px solid var(--ink);
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  transform: translateX(-50%);
}

.video-panel iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1142 / 676;
  border: 0;
}

.confetti {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.confetti-right {
  right: 0;
  bottom: 515px;
  width: 572px;
}

.confetti-left {
  left: 0;
  bottom: 166px;
  width: 396px;
}

.faq {
  padding: 70px 24px 120px;
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 30px;
}

.faq details {
  border: 1px solid #333;
  border-radius: 20px;
  background: #fff;
}

.faq summary {
  position: relative;
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 54px;
  padding: 26px 72px 26px 51px;
  color: #000;
  font-size: 18px;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
}

.faq summary::before,
.faq summary::after {
  left: auto;
  right: 38px;
}

.faq details[open] summary::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq details > p {
  margin: -8px 72px 28px 128px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
}

.footer {
  position: relative;
  display: grid;
  place-items: center;
  gap: 22px;
  padding: 60px 24px;
  color: #fff;
  background: var(--ink);
}

.footer-logo {
  width: 259px;
}

.footer nav,
.legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  font-size: 15px;
  letter-spacing: 2.25px;
}

.legal {
  gap: 18px;
  font-size: 13px;
}

.footer a {
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.footer a:hover {
  opacity: 1;
}

.page-top {
  position: absolute;
  left: 70px;
  top: 115px;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@keyframes heroSlideLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes heroSlideRight {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1000px) {
  .hero-title {
    height: auto;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 40px 0;
  }

  .hero-title strong {
    justify-self: start;
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.6;
    white-space: normal;
  }

  .value-item {
    padding-left: 0;
  }

  .member-grid {
    grid-template-columns: repeat(2, 280px);
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 60px;
    position: sticky;
    top: 0;
  }

  .header-inner {
    width: calc(100% - 50px);
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    position: absolute;
    left: 9.5px;
    width: 31px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.25s ease;
  }

  .menu-button span:first-child {
    top: 19px;
  }

  .menu-button span:last-child {
    top: 30px;
  }

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

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

  .global-nav {
    position: fixed;
    inset: 60px 0 auto;
    display: grid;
    gap: 0;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 30px rgba(2, 42, 62, 0.08);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }

  .global-nav.is-open {
    transform: translateY(0);
  }

  .global-nav a {
    padding: 12px 0;
  }

  .recruit-hero {
    padding-top: 60px;
  }

  .hero-strip {
    --gap: 18px;
  }

  .hero-set img {
    width: 180px;
    height: 180px;
  }

  .hero-strip-top {
    padding-top: 15px;
  }

  .hero-strip-bottom {
    padding-bottom: 48px;
  }

  .hero-title h1 {
    font-size: 46px;
  }

  .message {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .statement h2 {
    padding: 3px 16px;
    font-size: 20px;
  }

  .question,
  .message-lines {
    font-size: 16px;
    letter-spacing: 1.8px;
  }

  .mission-vision,
  .deck,
  .jobs,
  .members,
  .faq {
    padding-left: 25px;
    padding-right: 25px;
  }

  .wide-container p {
    font-size: 15px;
    letter-spacing: 1.4px;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .value-item {
    grid-template-columns: 74px 120px 1fr;
    gap: 20px;
  }

  .value-item img {
    width: 120px;
    height: 104px;
  }

  .value-item h3 {
    font-size: 20px;
  }

  .job-card summary {
    grid-template-columns: 120px 1fr 40px;
  }

  .job-card summary img {
    width: 100px;
  }

  .job-card[open] summary {
    grid-template-columns: 140px 1fr 42px;
    min-height: 190px;
    padding-right: 28px;
  }

  .job-card[open] summary img {
    width: 140px;
    height: 190px;
  }

  .job-card[open] summary span {
    padding: 40px 0 0 24px;
  }

  .job-card[open] summary strong {
    font-size: 22px;
  }

  .job-card[open] summary small {
    font-size: 13px;
  }

  .job-panel {
    grid-template-columns: auto 1fr 120px;
    gap: 18px;
    margin: -58px 28px 36px 166px;
  }

  .job-type {
    font-size: 22px;
  }

  .member-grid {
    justify-content: center;
  }

  .video-panel {
    border-width: 12px;
    border-radius: 18px;
  }

  .confetti-right {
    width: 260px;
  }

  .confetti-left {
    width: 200px;
  }

  .footer {
    place-items: start;
    padding: 60px 25px;
  }

  .footer nav,
  .legal {
    display: grid;
    justify-content: start;
    gap: 8px;
  }

  .page-top {
    right: 25px;
    left: auto;
    top: 170px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: 90%;
  }

  .site-header {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr auto;
    height: auto;
    min-height: 72px;
    padding: 14px 0;
    position: sticky;
    width: 90%;
  }

  .brand img {
    height: 39px;
    width: 140px;
  }

  .nav,
  .header-button {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    height: 42px;
    width: 42px;
  }

  .mobile-menu[open] summary {
    right: 20px;
    top: 20px;
  }

  .mobile-nav {
    border-radius: 8px;
    max-height: calc(100vh - 32px);
    min-height: min(80vh, 640px);
    padding: 78px 24px 28px;
    right: 16px;
    top: 16px;
    width: min(80vw, 360px);
  }

  .mobile-nav a:not(.button) {
    font-size: clamp(23px, 8vw, 32px);
    padding: 12px 0;
  }

  .mobile-nav .button {
    justify-self: stretch;
    min-width: 0;
    width: 100%;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .recruit-hero {
    display: flex;
    flex-direction: column;
    padding-top: 24px;
  }

  .hero-strip {
    --gap: 12px;
  }

  .hero-set {
    margin-top: 1%;
  }

  .hero-strip-top {
    order: 1;
    padding-top: 0;
  }

  .hero-strip-bottom {
    order: 2;
    padding-bottom: 0;
  }

  .hero-set img {
    height: clamp(112px, 33vw, 150px);
    object-fit: cover;
    width: clamp(112px, 33vw, 150px);
  }

  .hero-title {
    gap: 5px;
    order: 3;
    padding: 22px 0 58px;
    width: 90%;
  }

  .hero-title h1 {
    font-size: clamp(40px, 12vw, 50px);
    line-height: 1.1;
  }

  .hero-title p {
    color: var(--orange);
    font-size: 14px;
  }

  .hero-title strong {
    font-size: 13px;
    letter-spacing: 0.6px;
    line-height: 1.8;
  }

  .message {
    padding: 54px 0 70px;
  }

  .statement {
    width: 90%;
  }

  .statement h2 {
    display: inline;
    font-size: 19px;
    line-height: 1.75;
    padding: 0 6px;
  }

  .question {
    margin: 38px 0 42px;
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 1.8;
  }

  .message-lines {
    gap: 25px;
    font-size: 15px;
    letter-spacing: 0.9px;
    line-height: 1.9;
  }

  .message-lines br {
    display: none;
  }

  .mission-vision {
    padding: 5% 10% 10%;
  }

  .wide-container,
  .narrow-container,
  .member-container {
    width: 90%;
  }

  .wide-container p {
    margin: 18px 0 52px;
    font-size: 14px;
    letter-spacing: 0.9px;
    line-height: 1.9;
  }

  .value {
    padding: 54px 0 72px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading p {
    margin-top: 4px;
  }

  .value-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 30px 0;
  }

  .value-item .number {
    font-size: 16px;
  }

  .value-item img {
    height: 138px;
    width: 160px;
  }

  .value-item h3 {
    font-size: 21px;
    letter-spacing: 1px;
  }

  .value-item p {
    font-size: 14px;
    line-height: 1.8;
  }

  .deck,
  .jobs,
  .members,
  .faq {
    padding-left: 0;
    padding-right: 0;
  }

  .deck {
    padding-bottom: 68px;
    padding-top: 68px;
  }

  .deck-frame {
    aspect-ratio: 4 / 3;
    width: 90%;
  }

  .deck-placeholder p {
    width: 84%;
    text-align: center;
    font-size: 18px;
  }

  .jobs {
    min-height: auto;
    padding-bottom: 76px;
    padding-top: 66px;
  }

  .job-list {
    gap: 18px;
  }

  .job-card summary {
    grid-template-columns: 82px 1fr 28px;
    min-height: 74px;
  }

  .job-card {
    border-radius: 14px;
  }

  .job-card summary img {
    height: 74px;
    width: 82px;
  }

  .job-card summary span {
    padding-left: 13px;
  }

  .job-card strong {
    font-size: 19px;
  }

  .job-card small {
    font-size: 12px;
  }

  .job-card[open] summary {
    min-height: auto;
    grid-template-columns: 96px 1fr 28px;
    padding-right: 14px;
  }

  .job-card[open] summary img {
    height: 144px;
    width: 96px;
  }

  .job-card[open] summary span {
    padding: 24px 0 0 14px;
  }

  .job-card[open] summary strong {
    font-size: 18px;
  }

  .job-card[open] summary small {
    margin-top: 4px;
    font-size: 13px;
  }

  .job-card[open] summary b {
    height: 26px;
    margin-top: 32px;
    width: 26px;
  }

  .job-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 18px 20px 24px;
  }

  .job-type {
    font-size: 18px;
  }

  .job-panel span {
    width: 100%;
  }

  .job-panel a {
    height: 38px;
    width: 100%;
  }

  .members {
    padding-bottom: 72px;
    padding-top: 66px;
  }

  .member-container {
    overflow: visible;
  }

  .confetti {
    opacity: 0.5;
  }

  .confetti-right {
    right: -80px;
    top: 40px;
    width: 180px;
  }

  .confetti-left {
    bottom: 190px;
    left: -70px;
    width: 150px;
  }

  .member-grid {
    gap: 34px;
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 58px;
  }

  .member-card,
  .member-photo {
    width: 100%;
  }

  .member-photo {
    height: auto;
    aspect-ratio: 1;
  }

  .member-card h3 {
    font-size: 19px;
  }

  .member-card p {
    font-size: 14px;
  }

  .more-button {
    width: 132px;
  }

  .video-panel {
    border-radius: 14px;
    border-width: 8px;
    width: 90%;
  }

  .faq {
    padding-bottom: 78px;
    padding-top: 66px;
  }

  .faq-list {
    gap: 16px;
  }

  .faq details {
    border-radius: 14px;
  }

  .faq summary {
    align-items: flex-start;
    gap: 14px;
    min-height: auto;
    padding: 20px 52px 20px 20px;
    font-size: 15px;
    line-height: 1.65;
  }

  .faq summary span {
    flex: 0 0 auto;
    font-size: 23px;
    line-height: 1.45;
  }

  .faq summary::before,
  .faq summary::after {
    right: 22px;
    top: 31px;
  }

  .faq details > p {
    margin: -2px 20px 22px 58px;
    font-size: 14px;
    line-height: 1.8;
  }

  .footer {
    gap: 20px;
    padding: 52px 5%;
  }

  .footer-logo {
    width: 210px;
  }

  .footer nav,
  .legal {
    gap: 10px;
    width: 100%;
  }

  .legal {
    font-size: 12px;
    line-height: 1.7;
  }

  .page-top {
    display: none;
  }
}

@media (max-width: 380px) {
  .hero-title strong {
    font-size: 12px;
  }

  .statement h2 {
    font-size: 18px;
  }

  .job-card summary {
    grid-template-columns: 74px 1fr 24px;
  }

  .job-card summary img {
    width: 74px;
  }

  .job-card[open] summary {
    grid-template-columns: 86px 1fr 24px;
  }

  .job-card[open] summary img {
    width: 86px;
  }

  .faq summary {
    padding-right: 46px;
  }
}

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

  .hero-track {
    animation: none !important;
    transform: none !important;
  }
}
