:root {
  --ink: #111827;
  --muted: #64748b;
  --blue: #ff6b18;
  --blue-dark: #e75200;
  --blue-soft: #fff1e8;
  --line: #e2e8f0;
  --surface: #f6f8fb;
  --white: #ffffff;
  --font-sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --font-sport: "Barlow Condensed", "Arial Narrow", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

.nav-wrap {
  background: rgba(8, 11, 16, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.hiring-strip {
  align-items: center;
  background: var(--blue);
  color: #111827;
  display: flex;
  font-family: var(--font-sport);
  font-size: 0.82rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.16em;
  min-height: 30px;
  padding: 5px 24px;
}

.hiring-strip b {
  border-left: 1px solid rgba(17, 24, 39, 0.35);
  border-right: 1px solid rgba(17, 24, 39, 0.35);
  font-weight: 850;
  margin: 0 18px;
  padding: 0 18px;
}

.nav {
  align-items: center;
  display: flex;
  height: 78px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1320px;
  padding: 0 42px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: var(--font-sport);
  font-size: 0.88rem;
  font-weight: 850;
  gap: 11px;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.official-logo {
  display: block;
  height: auto;
  width: 122px;
}

.brand em {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  color: #cbd5e1;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.18em;
  margin-left: 3px;
  padding-left: 13px;
}

.brand-mark {
  align-items: center;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  position: relative;
  width: 36px;
}

.brand-mark b {
  background: var(--blue);
  display: block;
  height: 3px;
  width: 28px;
}

.brand-mark i {
  background: var(--blue);
  border-radius: 2px;
  display: block;
  height: 18px;
  position: absolute;
  width: 5px;
}

.brand-mark i:first-child {
  left: 2px;
}

.brand-mark i:last-child {
  right: 2px;
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  color: #e2e8f0;
  font-size: 1rem;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  align-items: center;
  background: white;
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 700;
  gap: 18px;
  min-height: 42px;
  padding: 0 17px;
}

.hero {
  background: #080b10;
  color: white;
  margin: 0 auto;
  max-width: 1600px;
  min-height: min(820px, calc(100vh - 108px));
  overflow: hidden;
  position: relative;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(820px, calc(100vh - 108px));
  padding: 88px max(34px, calc((100vw - 1240px) / 2 + 24px)) 70px;
  position: relative;
  z-index: 3;
}

.eyebrow {
  color: var(--blue);
  font-family: var(--font-sport);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 22px;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  font-size: clamp(4.3rem, 7.1vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.97;
  margin: 0;
  max-width: 890px;
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.35);
}

h1 span {
  color: var(--blue);
}

.lead {
  color: #e2e8f0;
  font-size: 1.24rem;
  line-height: 1.75;
  margin: 32px 0 0;
  max-width: 540px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

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

.button {
  align-items: center;
  border-radius: 9px;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 750;
  gap: 26px;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  transition: 160ms ease;
}

.button-primary {
  background: var(--blue);
  color: #111827;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff7d35;
  transform: translateY(-2px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: white;
  backdrop-filter: blur(12px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: white;
}

a:focus-visible,
button:focus-visible,
video:focus-visible {
  outline: 3px solid rgba(255, 107, 24, 0.48);
  outline-offset: 4px;
}

.hero-facts {
  background: rgba(4, 8, 14, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  max-width: 570px;
  overflow: hidden;
  padding: 19px 0;
  backdrop-filter: blur(15px);
}

.hero-facts div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 22px;
}

.hero-facts div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts strong {
  color: white;
  font-family: var(--font-sport);
  font-size: 1.72rem;
  letter-spacing: -0.04em;
}

.hero-facts span {
  color: #cbd5e1;
  font-size: 0.9rem;
}

.hero-media {
  inset: 0;
  min-height: 100%;
  overflow: hidden;
  position: absolute;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(4, 8, 14, 0.96) 0%, rgba(4, 8, 14, 0.8) 35%, rgba(4, 8, 14, 0.22) 70%, rgba(4, 8, 14, 0.12) 100%),
    linear-gradient(180deg, rgba(4, 8, 14, 0.12) 55%, rgba(4, 8, 14, 0.75) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-media picture,
.hero-media img {
  display: block;
  height: 100%;
  width: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.media-label {
  bottom: 28px;
  color: white;
  display: flex;
  font-family: var(--font-sport);
  font-size: 0.78rem;
  justify-content: space-between;
  left: max(30px, calc((100vw - 1240px) / 2 + 24px));
  letter-spacing: 0.14em;
  position: absolute;
  right: max(30px, calc((100vw - 1240px) / 2 + 24px));
  z-index: 2;
}

.media-label b {
  font-weight: 750;
}

.marquee {
  background: var(--ink);
  color: white;
  overflow: hidden;
  padding: 20px 26px;
}

.marquee div {
  align-items: center;
  display: flex;
  gap: 26px;
  justify-content: center;
  min-width: max-content;
}

.marquee span {
  font-family: var(--font-sport);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.marquee i {
  background: var(--blue);
  border-radius: 50%;
  height: 5px;
  width: 5px;
}

.section {
  margin: 0 auto;
  max-width: 1200px;
  padding: 96px 24px;
}

.section h2 {
  font-size: clamp(2.65rem, 5vw, 5.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0;
}

.about {
  display: grid;
  gap: 64px;
  grid-template-columns: 0.86fr 1.14fr;
  position: relative;
}

.about .section-intro h2 {
  font-size: clamp(3rem, 3.7vw, 3.8rem);
}

.section-intro {
  align-self: start;
  position: sticky;
  top: 146px;
}

.about-media {
  border-radius: 16px;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.16);
  margin: 38px 0 0;
  overflow: hidden;
  position: relative;
}

.about-media::after {
  background: linear-gradient(180deg, transparent 52%, rgba(6, 10, 15, 0.88));
  content: "";
  inset: 0;
  position: absolute;
}

.about-media img {
  aspect-ratio: 4 / 5;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.about-media figcaption {
  bottom: 24px;
  color: white;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sport);
  font-size: 0.86rem;
  font-weight: 600;
  gap: 6px;
  left: 24px;
  letter-spacing: 0.12em;
  position: absolute;
  right: 24px;
  z-index: 1;
}

.about-media figcaption span {
  color: #ffb487;
}

.about-body {
  padding-top: 34px;
}

.about-lead {
  color: #334155;
  font-size: 1.23rem;
  line-height: 1.9;
  margin: 0 0 40px;
}

.business-grid {
  display: grid;
  gap: 14px;
}

.business-grid article {
  background: var(--surface);
  border: 1px solid #edf0f4;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 54px 190px 1fr;
  padding: 28px 26px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.business-grid article:last-child {
  border-bottom: 1px solid #edf0f4;
}

.business-grid article:hover {
  border-color: #fed7c0;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  transform: translateY(-3px);
}

.business-no {
  color: var(--blue);
  font-family: var(--font-sport);
  font-size: 0.88rem;
  font-weight: 700;
  padding-top: 5px;
}

.business-grid h3 {
  font-size: 1.24rem;
  margin: 0;
}

.business-grid p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0;
}

.team-story {
  background: #080b10;
  color: white;
  margin: 0 auto;
  max-width: 1440px;
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.team-story::after {
  background:
    linear-gradient(90deg, rgba(5, 9, 14, 0.92) 0%, rgba(5, 9, 14, 0.64) 38%, rgba(5, 9, 14, 0.08) 72%),
    linear-gradient(180deg, transparent 55%, rgba(5, 9, 14, 0.6));
  content: "";
  inset: 0;
  position: absolute;
}

.team-story > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.team-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
  padding: 64px max(30px, calc((100vw - 1200px) / 2 + 24px));
  position: relative;
  z-index: 1;
}

.team-story-copy h2 {
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  max-width: 730px;
}

.team-story-copy > p:last-child {
  color: #e2e8f0;
  font-size: 1.16rem;
  line-height: 1.85;
  margin: 30px 0 0;
  max-width: 520px;
}

.culture {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1440px;
  padding: 0;
}

.culture-card {
  background: var(--ink);
  color: white;
  min-height: 540px;
  padding: 70px clamp(42px, 7vw, 110px);
}

.eyebrow-light {
  color: #ffb487;
}

.culture-card h2 {
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.culture-card > p:not(.eyebrow) {
  color: #cbd5e1;
  font-size: 1.15rem;
  line-height: 1.9;
  margin: 34px 0;
  max-width: 520px;
}

.culture-card a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  display: inline-flex;
  font-size: 1.04rem;
  font-weight: 700;
  gap: 28px;
  padding-bottom: 8px;
}

.culture-list {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(42px, 6vw, 90px);
}

.culture-list article {
  border-top: 1px solid #dbe1e9;
  display: grid;
  gap: 30px;
  grid-template-columns: 34px 1fr;
  padding: 34px 0;
}

.culture-list article:last-child {
  border-bottom: 1px solid #dbe1e9;
}

.culture-list article > span {
  color: var(--blue);
  font-family: var(--font-sport);
  font-size: 0.88rem;
  font-weight: 700;
  padding-top: 6px;
}

.culture-list h3 {
  font-size: 1.4rem;
  margin: 0 0 10px;
}

.culture-list p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
  margin: 0;
}

.film-section {
  padding-bottom: 96px;
}

.film-heading,
.jobs-heading {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 38px;
}

.film-heading > p,
.jobs-heading > p {
  color: var(--muted);
  font-family: var(--font-sport);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0;
}

.video-shell {
  background: #070c13;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.19);
  line-height: 0;
  overflow: hidden;
}

.video-shell video {
  aspect-ratio: 16 / 9;
  display: block;
  height: auto;
  width: 100%;
}

.jobs {
  border-top: 1px solid var(--line);
  max-width: 1280px;
}

.job-filters {
  display: flex;
  gap: 6px;
  margin-bottom: 26px;
  overflow-x: auto;
  padding-bottom: 14px;
  scrollbar-width: none;
}

.job-filters::-webkit-scrollbar {
  display: none;
}

.job-filters button {
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 700;
  min-height: 42px;
  padding: 0 16px;
  white-space: nowrap;
}

.job-filters button span {
  color: #94a3b8;
  font-family: var(--font-sport);
  font-size: 0.84rem;
  margin-left: 5px;
}

.job-filters button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.job-filters button.is-active span {
  color: #cbd5e1;
}

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

.job-card {
  align-items: stretch;
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  min-height: 296px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.job-card::before {
  background: var(--blue);
  content: "";
  height: 3px;
  left: -1px;
  position: absolute;
  right: -1px;
  top: -1px;
  transform: scaleX(0.16);
  transform-origin: left;
  transition: transform 180ms ease;
}

.job-card:hover {
  border-color: #f6b48d;
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.job-card:hover::before {
  transform: scaleX(1);
}

.job-card[hidden] {
  display: none;
}

.job-team {
  color: var(--blue);
  font-family: var(--font-sport), var(--font-sans);
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  margin-bottom: 26px;
  padding-top: 0;
}

.job-main h3 {
  font-size: 1.64rem;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}

.job-main h3 > span {
  color: var(--muted);
  display: block;
  font-family: var(--font-sport);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 5px;
}

.job-main > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 17px;
  max-width: none;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.job-tags span {
  background: var(--surface);
  border-radius: 5px;
  color: #475569;
  font-size: 0.88rem;
  padding: 6px 9px;
}

.job-card > a {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  align-self: flex-start;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 750;
  gap: 16px;
  min-height: 42px;
  padding: 0 14px;
  white-space: nowrap;
  margin-top: auto;
}

.job-card > a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.jobs-note {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 22px 0 0;
}

.benefits {
  background: var(--surface);
  max-width: 1440px;
  padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.benefits-heading {
  margin-bottom: 38px;
}

.benefits-heading h2 {
  text-wrap: balance;
}

.benefits-title > span {
  display: block;
}

.benefits-mobile-break {
  display: none;
}

.benefit-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.benefit-grid article {
  background: white;
  min-height: 210px;
  padding: 30px;
}

.benefit-grid article > span {
  color: var(--blue);
  font-family: var(--font-sport);
  font-size: 0.88rem;
  font-weight: 700;
}

.benefit-grid h3 {
  font-size: 1.24rem;
  margin: 42px 0 10px;
}

.benefit-grid p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.apply {
  align-items: flex-end;
  background: var(--ink);
  color: white;
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.apply h2 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.apply p:not(.eyebrow) {
  color: #cbd5e1;
  line-height: 1.7;
  margin: 22px 0 0;
}

.button-white {
  background: white;
  color: var(--ink);
  flex: 0 0 auto;
}

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

footer {
  align-items: center;
  background: #080b10;
  color: white;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: none;
  padding: 54px max(42px, calc((100vw - 1200px) / 2 + 24px));
}

.footer-logo {
  width: 112px;
}

.footer-brand-wrap > p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 14px 0 0;
}

.footer-links {
  display: flex;
  gap: 26px;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 0.92rem;
  font-weight: 650;
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    min-height: 760px;
    padding-bottom: 72px;
  }

  .hero-media {
    min-height: 100%;
  }

  .about {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .about-body {
    padding-top: 0;
  }

  .section-intro {
    position: static;
  }

  .about .section-intro {
    align-items: start;
    column-gap: 44px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  }

  .about .section-intro .eyebrow {
    grid-column: 1;
    grid-row: 1;
  }

  .about .section-intro h2 {
    grid-column: 1;
    grid-row: 2;
  }

  .about .about-media {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 0;
  }

  .culture {
    grid-template-columns: 1fr;
  }

  .culture-card {
    min-height: auto;
  }

  .film-heading,
  .jobs-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .apply {
    align-items: flex-start;
    flex-direction: column;
    gap: 42px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 92px;
  }

  .hiring-strip {
    font-size: 0.78rem;
    min-height: 26px;
  }

  .hiring-strip > span:first-child,
  .hiring-strip > span:last-child {
    display: none;
  }

  .hiring-strip b {
    border: 0;
    margin: 0;
    padding: 0;
  }

  .nav {
    height: 68px;
    padding: 0 20px;
  }

  .brand em,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-copy {
    justify-content: flex-end;
    min-height: 720px;
    padding: 74px 22px 54px;
  }

  h1 {
    font-size: clamp(3.15rem, 14.5vw, 4.5rem);
    letter-spacing: -0.04em;
    line-height: 0.98;
  }

  .lead {
    font-size: 1.08rem;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    margin-top: 36px;
    padding: 16px 0;
  }

  .hero-facts div + div {
    padding-left: 13px;
  }

  .hero-facts div {
    padding: 0 13px;
  }

  .hero-facts strong {
    font-size: 1.2rem;
  }

  .hero-facts span {
    font-size: 0.82rem;
  }

  .hero-media {
    min-height: 100%;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(4, 8, 14, 0.12) 0%, rgba(4, 8, 14, 0.48) 34%, rgba(4, 8, 14, 0.97) 82%, rgba(4, 8, 14, 1) 100%),
      linear-gradient(90deg, rgba(4, 8, 14, 0.58), rgba(4, 8, 14, 0.12));
  }

  .hero-media img {
    object-position: 63% center;
  }

  .media-label {
    display: none;
  }

  .marquee {
    overflow-x: hidden;
  }

  .marquee div {
    justify-content: flex-start;
  }

  .section {
    padding: 64px 22px;
  }

  .section h2 {
    font-size: clamp(2.45rem, 10.7vw, 3.5rem);
  }

  .about .section-intro {
    display: block;
  }

  .about-lead {
    font-size: 1.08rem;
    margin-bottom: 32px;
  }

  .about-media {
    margin-top: 30px;
    max-height: 560px;
  }

  .about-media img {
    max-height: 560px;
  }

  .team-story,
  .team-story-copy {
    min-height: 520px;
  }

  .team-story::after {
    background: linear-gradient(180deg, rgba(5, 9, 14, 0.1), rgba(5, 9, 14, 0.84) 62%, rgba(5, 9, 14, 0.98));
  }

  .team-story > img {
    object-position: 54% center;
  }

  .team-story-copy {
    justify-content: flex-end;
    padding: 48px 24px;
  }

  .team-story-copy h2 {
    font-size: clamp(2.5rem, 11vw, 3.35rem);
  }

  .business-grid article {
    gap: 8px;
    grid-template-columns: 38px 1fr;
    padding: 24px 20px;
  }

  .business-grid p {
    grid-column: 2;
  }

  .culture {
    padding: 0;
  }

  .culture-card,
  .culture-list {
    padding: 60px 28px;
  }

  .culture-card h2 {
    font-size: clamp(2.6rem, 11vw, 3.35rem);
  }

  .film-section {
    padding-bottom: 64px;
  }

  .video-shell {
    border-radius: 10px;
    margin-left: -10px;
    margin-right: -10px;
  }

  .job-card {
    min-height: 300px;
    padding: 24px;
  }

  .job-team {
    padding-top: 0;
  }

  .job-list {
    grid-template-columns: 1fr;
  }

  .benefits {
    padding-left: 22px;
    padding-right: 22px;
  }

  .benefits-title {
    font-size: clamp(1.9rem, 8vw, 2.1rem) !important;
  }

  .benefits-mobile-break {
    display: block;
  }

  .apply h2 {
    font-size: clamp(2.5rem, 10.5vw, 3rem);
  }

  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-grid article {
    min-height: 190px;
    padding: 24px;
  }

  .apply {
    padding-left: 22px;
    padding-right: 22px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
    padding: 44px 22px;
  }
}

@media (max-width: 470px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    min-height: auto;
  }

  .benefit-grid h3 {
    margin-top: 30px;
  }
}

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

  * {
    transition: none !important;
  }
}
