:root {
  --bg: #003378;
  --bg-deep: #001f4c;
  --panel-top: rgba(103, 182, 233, 0.96);
  --panel-bottom: rgba(0, 51, 120, 0.98);
  --text: #f4f8ff;
  --muted: rgba(244, 248, 255, 0.82);
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
  --accent: #ffc83a;
  --caseo: #f9a03f;
  --md: #ff3d35;
  --carrelage: #8b4d91;
  --pulsat: #ff2f8d;
  --shadow: 0 32px 90px rgba(0, 19, 55, 0.34);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(125, 207, 255, 0.18), transparent 26%),
    radial-gradient(circle at 82% 0%, rgba(90, 154, 229, 0.16), transparent 22%),
    linear-gradient(180deg, #0a4e99 0%, #003378 48%, #001f4c 100%);
}

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

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

section[id],
h2[id] {
  scroll-margin-top: 1.5rem;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  color: #0f2c65;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.page-glow {
  position: fixed;
  inset: auto;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.page-glow-left {
  top: 10%;
  left: -8rem;
  background: #6fc7ff;
}

.page-glow-right {
  right: -10rem;
  bottom: 12%;
  background: #2b71d6;
}

.hero,
.section {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem 1.2rem;
}

.hero__panel {
  position: relative;
  width: min(100%, 920px);
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: linear-gradient(180deg, var(--panel-top), var(--panel-bottom));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, transparent 60%, rgba(9, 17, 67, 0.14));
  pointer-events: none;
}

.hero__topline,
.hero__copy,
.hero__actions,
.company-nav {
  position: relative;
  z-index: 1;
}

.hero__topline {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__logo {
  width: min(230px, 46vw);
  margin: 0 auto 1.4rem;
  animation: rise 900ms ease-out both;
}

.hero__copy {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.section__kicker {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  text-wrap: balance;
}

.hero__lede {
  max-width: 58ch;
  margin: 1.1rem auto 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 0.95rem 1.3rem;
  border: none;
  border-radius: 999px;
  appearance: none;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.company-pill:hover,
.company-pill:focus-visible {
  transform: translateY(-2px);
}

.button,
.company-pill,
.text-link,
.site-footer__nav a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.button:focus-visible,
.company-pill:focus-visible,
.text-link:focus-visible,
.site-footer__nav a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 200, 58, 0.26);
}

.button--primary {
  color: #122160;
  background: var(--accent);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.company-nav {
  display: grid;
  gap: 1rem;
}

.company-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(5, 45, 99, 0.26));
  backdrop-filter: blur(8px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
  animation: rise 800ms ease both;
}

.company-pill:nth-child(1) {
  animation-delay: 140ms;
}

.company-pill:nth-child(2) {
  animation-delay: 220ms;
}

.company-pill:nth-child(3) {
  animation-delay: 300ms;
}

.company-pill:nth-child(4) {
  animation-delay: 380ms;
}

.logo-badge {
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.32);
  overflow: hidden;
}

.logo-badge--large {
  width: 4rem;
  height: 4rem;
}

.logo-badge img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform-origin: center;
  transform: scale(1.14);
}

.company-pill__copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.company-pill__copy strong {
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 700;
}

.company-pill__copy small {
  color: rgba(244, 248, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
}

.company-pill--caseo:hover {
  border-color: var(--caseo);
}

.company-pill--md:hover {
  border-color: var(--md);
}

.company-pill--carrelage:hover {
  border-color: var(--carrelage);
}

.company-pill--pulsat:hover {
  border-color: var(--pulsat);
}

.section {
  width: min(100% - 2.4rem, 1120px);
  margin: 0 auto;
  padding: 5.5rem 0;
}

.section__heading {
  display: grid;
  gap: 0.65rem;
  max-width: 720px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

.intro-layout__copy {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.facts {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.facts div {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.facts div:last-child {
  border-bottom: 1px solid var(--line);
}

.facts dt {
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pillar-grid article {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.pillar-grid span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.pillar-grid h3,
.company-detail__name {
  margin: 0 0 0.7rem;
  font-size: 1.25rem;
}

.pillar-grid p,
.company-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.company-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
  margin-top: 2rem;
}

.company-detail {
  padding: 1.3rem 0 1.5rem;
  border-top: 1px solid var(--line);
}

.company-detail__identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.company-detail__tag {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.text-link::after {
  content: "\2197";
  font-size: 0.9em;
}

.join-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.join-layout {
  padding-top: 0.4rem;
}

.join-layout__intro > p:last-of-type,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.join-layout__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.join-columns {
  display: grid;
  gap: 1rem;
}

.join-point {
  padding: 1.2rem 0 1.3rem;
  border-top: 1px solid var(--line);
}

.join-point span {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
}

.join-point h3 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
}

.join-point p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section--application {
  padding-top: 2rem;
}

.application-panel {
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(6, 28, 71, 0.4)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 70px rgba(0, 16, 48, 0.2);
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.application-copy {
  display: grid;
  gap: 1rem;
}

.application-copy h2 {
  margin: 0;
}

.application-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.application-note a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.checkbox-field a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.career-form {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.05);
}

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

.field {
  display: grid;
  gap: 0.5rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field span,
.checkbox-field span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  color: #ffffff;
  background: rgba(2, 18, 50, 0.42);
  font: inherit;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(244, 248, 255, 0.52);
}

.field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.field input[type="file"] {
  padding: 0.85rem 1rem;
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: rgba(255, 200, 58, 0.75);
  box-shadow: 0 0 0 3px rgba(255, 200, 58, 0.18);
}

.custom-select {
  position: relative;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.95rem 1rem 0.95rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  color: #ffffff;
  background: rgba(2, 18, 50, 0.42);
  font: inherit;
  text-align: left;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.custom-select__trigger:hover {
  background: rgba(6, 28, 71, 0.56);
}

.custom-select__trigger:focus-visible,
.custom-select.is-open .custom-select__trigger {
  outline: none;
  border-color: rgba(255, 200, 58, 0.75);
  box-shadow: 0 0 0 3px rgba(255, 200, 58, 0.18);
}

.custom-select__value {
  min-width: 0;
  padding-right: 1rem;
  line-height: 1.35;
}

.custom-select__icon {
  position: relative;
  width: 0.8rem;
  height: 0.8rem;
  flex: 0 0 auto;
}

.custom-select__icon::before,
.custom-select__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.5rem;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  transition: transform 160ms ease;
}

.custom-select__icon::before {
  left: 0.05rem;
  transform: translateY(-50%) rotate(45deg);
}

.custom-select__icon::after {
  right: 0.05rem;
  transform: translateY(-50%) rotate(-45deg);
}

.custom-select.is-open .custom-select__icon::before {
  transform: translateY(-50%) rotate(-45deg);
}

.custom-select.is-open .custom-select__icon::after {
  transform: translateY(-50%) rotate(45deg);
}

.custom-select__menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  right: 0;
  z-index: 8;
  display: grid;
  gap: 0.35rem;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(20, 56, 113, 0.96), rgba(7, 26, 66, 0.98));
  box-shadow: 0 18px 44px rgba(0, 14, 40, 0.36);
  backdrop-filter: blur(12px);
}

.custom-select__menu[hidden] {
  display: none;
}

.custom-select__option {
  width: 100%;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    background-color 140ms ease,
    color 140ms ease,
    transform 140ms ease;
}

.custom-select__option:hover,
.custom-select__option:focus-visible {
  outline: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(2px);
}

.custom-select__option.is-active {
  color: #10224f;
  background: linear-gradient(180deg, #ffd872 0%, #ffc83a 100%);
  font-weight: 700;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-field input {
  margin-top: 0.15rem;
  accent-color: var(--accent);
}

.career-form__footer {
  display: grid;
  justify-items: start;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.career-form__footer .button {
  min-width: 230px;
  padding-inline: 1.55rem;
}

.button--submit {
  min-width: 320px;
  padding: 1rem 1.7rem;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(255, 200, 58, 0.18);
}

.form-status {
  margin: 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  line-height: 1.5;
}

.form-status[data-state="error"] {
  color: #ffd2d2;
}

.form-status[data-state="success"] {
  color: #d7ffdb;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section--contact {
  padding-top: 2rem;
}

.contact-panel {
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(108, 182, 229, 0.12), rgba(5, 33, 81, 0.34)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 70px rgba(0, 16, 48, 0.2);
}

.contact-layout {
  margin-top: 2rem;
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

.contact-list {
  display: grid;
  gap: 0.9rem;
}

.contact-list article {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
}

.contact-list span {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 1rem;
  line-height: 1.45;
}

.contact-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 1.6rem;
}

.contact-shortcuts .text-link {
  margin-top: 0;
}

.legal-shell {
  width: min(100% - 2.4rem, 1120px);
  margin: 0 auto;
  padding: 2rem 0 4rem;
  position: relative;
  z-index: 1;
}

.legal-header {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(103, 182, 233, 0.18), rgba(0, 51, 120, 0.38));
  box-shadow: 0 22px 70px rgba(0, 16, 48, 0.18);
}

.legal-header h1 {
  margin: 0 0 0.9rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.legal-back {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.legal-back::before {
  content: "\2190";
  font-size: 1rem;
}

.legal-header p,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.72;
}

.legal-card a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.legal-card {
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.04);
}

.legal-card h2,
.legal-card h3 {
  margin: 0 0 0.85rem;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
}

.legal-card p,
.legal-card ul {
  margin: 0;
}

.legal-card ul {
  padding-left: 1.1rem;
}

.legal-card li + li {
  margin-top: 0.55rem;
}

.legal-note {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--accent);
  border-radius: 0.9rem;
  background: rgba(255, 200, 58, 0.08);
}

.legal-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: min(100% - 2.4rem, 1120px);
  margin: 0 auto;
  padding: 0 0 3rem;
  position: relative;
  z-index: 1;
}

.site-footer__brand {
  max-width: 30rem;
}

.site-footer__logo {
  width: 150px;
  margin-bottom: 1rem;
}

.site-footer__brand p {
  margin: 0;
  color: rgba(244, 248, 255, 0.72);
  line-height: 1.7;
}

.site-footer__links {
  display: flex;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem 1.4rem;
}

.site-footer__nav a {
  color: #ffffff;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .intro-layout,
  .pillar-grid,
  .company-sections,
  .join-layout,
  .application-layout,
  .contact-layout,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    padding: 1.1rem;
    border-radius: 1.6rem;
  }

  .contact-panel {
    padding: 1.4rem;
    border-radius: 1.5rem;
  }

  .application-panel,
  .legal-header,
  .legal-card {
    border-radius: 1.5rem;
  }

  .site-footer,
  .site-footer__links,
  .site-footer__nav {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 1rem;
  }

  .hero__topline {
    margin-bottom: 1.4rem;
  }

  .hero__actions {
    gap: 0.8rem;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .button--submit {
    width: auto;
    min-width: 260px;
  }

  .company-pill {
    padding: 0.9rem 1rem;
    align-items: flex-start;
  }

  .company-pill__copy strong {
    font-size: 1rem;
  }

  .company-pill__copy small {
    font-size: 0.82rem;
  }

  .section {
    width: min(100% - 1.4rem, 1120px);
    padding: 4rem 0;
  }

  .join-layout__actions,
  .contact-shortcuts {
    gap: 0.8rem;
  }

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

  .career-form {
    padding: 1rem;
    border-radius: 1.2rem;
  }

  .career-form__footer {
    justify-items: stretch;
  }

  .career-form__footer .button--submit {
    width: 100%;
    min-width: 0;
  }

  .contact-shortcuts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .legal-shell,
  .site-footer {
    width: min(100% - 1.4rem, 1120px);
  }

  .legal-shell {
    padding-bottom: 3rem;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
