@font-face {
  font-family: "Circular Std";
  src: url("./assets/fonts/Circular-Std-Book.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Circular Std";
  src: url("./assets/fonts/Circular-Std-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --sky: #b4e0f8;
  --sky-deep: #9ed6f5;
  --plum: #3e265b;
  --plum-dark: #35214f;
  --ink: #141414;
  --muted: #5e4f79;
  --paper: #ffffff;
  --card: #fbfbfc;
  --cloud: #f1f1f2;
  --border: rgba(74, 45, 114, 0.12);
  --bullet: #b4e0f8;
  --shadow: 0 24px 60px rgba(42, 24, 74, 0.1);
  --radius-xl: 44px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-pill: 999px;
  --container: min(1320px, calc(100vw - 48px));
  --hero-box-desktop: url("./assets/images/header-box.png");
  --hero-box-mobile: url("./assets/images/header-box-mobile.png");
  --job-meta-location-icon: url("./assets/images/location.svg");
  --job-meta-type-icon: url("./assets/images/job-type.svg");
  --job-meta-salary-icon: url("./assets/images/salary.svg");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Circular Std", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #fcfcff 100%);
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.desktop-only {
  display: inline-flex;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(180, 224, 248, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 45, 114, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo-mobile,
.footer-logo-mobile,
.mobile-video,
.mobile-upload {
  display: none;
}

.brand-logo {
  width: 185px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button,
a.button,
button.button,
input[type="submit"].button,
[data-submit-button] {
  cursor: pointer;
}

.button:disabled {
  cursor: default;
}

button.button:disabled,
[data-submit-button]:disabled {
  cursor: default;
}

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

.button-outline {
  border-color: var(--plum);
  color: var(--plum);
  background: transparent;
}

.button-solid {
  background: var(--plum);
  color: #f8f8f8;
  box-shadow: 0 18px 34px rgba(74, 45, 114, 0.2);
}

.button-accent {
  background: var(--sky);
  color: var(--plum);
  min-height: 46px;
  padding: 0 28px;
}

.button-large {
  min-width: 180px;
}

.hero {
  position: relative;
  overflow: clip;
  background: #3e265b;
}

.hero-media img {
  width: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 900ms ease,
    transform 1200ms ease;
}

body.is-ready .hero-media img {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-card {
  width: min(54%, 860px);
  margin-left: 0;
  padding: 84px 92px 92px;
  font-family: "Circular Std", sans-serif;
  color: #fff;
  background: var(--hero-box-desktop) left center / 100% 100% no-repeat;
  border-radius: 0;
  opacity: 0;
  transform: translateX(-56px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

body.is-ready .hero-card {
  opacity: 1;
  transform: translateX(0);
}

.hero-card h1,
.hero-copy,
.hero-card .button-accent {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.hero-card .button-accent {
  transition-duration: 520ms;
}

body.is-ready .hero-card h1,
body.is-ready .hero-copy,
body.is-ready .hero-card .button-accent {
  opacity: 1;
  transform: translateY(0);
}

body.is-ready .hero-card h1 {
  transition-delay: 180ms;
}

body.is-ready .hero-copy {
  transition-delay: 300ms;
}

body.is-ready .hero-card .button-accent {
  transition-delay: 420ms;
}

.hero-card h1 {
  margin: 0;
  font-size: 72px;
  color: #f8f8f8;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-card h1 span {
  color: var(--sky);
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0 34px;
  font-size: 1.6rem;
  color: #f8f8f8;
  line-height: 1.38;
}

.section {
  padding: 92px 0;
}

.section.intro {
  padding-bottom: 46px;
}

.section.why-join {
  padding-top: 46px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 84px;
  align-items: center;
}

.copy-block {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--plum);
  font-size: 24.33px;
  line-height: 1.15;
}

.eyebrow-centered {
  text-align: center;
}

.copy-block h2,
.section-heading h2,
.application-intro h2,
.callback-shell h2,
.info-card h2 {
  margin: 0 0 22px;
  color: var(--plum);
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.heading-emphasis {
  font-weight: 400;
}

.copy-block p,
.section-heading p,
.application-intro p,
.callback-shell p,
.info-card p,
.feature-list,
.checkbox-row,
.job-meta {
  font-size: 1.1rem;
  line-height: 1.34;
}

.application-kicker {
  font-size: 24.33px;
  line-height: 1.14;
}

.application-intro .application-kicker {
  font-size: 24.33px;
  line-height: 1.14;
}

.copy-block p.eyebrow,
.section-heading p.eyebrow,
.application-intro p.eyebrow,
.callback-shell p.eyebrow,
.info-card p.eyebrow {
  font-size: 24.33px;
  line-height: 1.15;
}

.lead-strong {
  font-weight: 700;
}

.image-frame {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: auto;
}

.image-frame-offset {
  transform: translateY(-10px);
}

.reveal-block {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

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

.list-copy {
  max-width: 640px;
}

.feature-list,
.job-meta {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li,
.job-meta li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bullet);
}

.job-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 18px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.job-meta li:nth-child(1)::before {
  background-image: var(--job-meta-location-icon);
}

.job-meta li:nth-child(2)::before {
  background-image: var(--job-meta-type-icon);
}

.job-meta li:nth-child(3)::before {
  background-image: var(--job-meta-salary-icon);
}

.section-sky {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(180deg, var(--sky-deep) 0%, var(--sky) 100%);
}

.section.section-sky.role-fit {
  padding-top: 0;
  background:
    linear-gradient(180deg, #ffffff 0 50%, transparent 50% 100%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(180deg, var(--sky-deep) 0%, var(--sky) 100%);
}

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

.info-card {
  min-height: 100%;
  padding: 42px 42px 40px;
  background: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(74, 45, 114, 0.08);
}

.section-heading {
  max-width: 760px;
  text-align: center;
}

.section-heading p:last-child,
.growth-heading p:last-child {
  max-width: 670px;
  margin: 0 auto;
}

.support {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--sky);
}

.support .eyebrow {
  color: var(--ink);
}

.growth-heading .eyebrow {
  color: #141414;
}

.support-cards {
  margin-top: 42px;
}

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

.support-card {
  display: grid;
  place-items: center;
  min-height: 235px;
  text-align: center;
}

.support-card-panel {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 22px;
  min-height: 235px;
  padding: 30px 24px;
  width: 100%;
  background: #f8f8f8;
  border-radius: 24px;
  /* box-shadow: 0 14px 30px rgba(55, 34, 93, 0.08); */
}

.support-icon {
  width: 88px;
  height: 88px;
}

.support-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.support-card h3 {
  margin: 0;
  color: var(--plum);
  font-size: 1.1rem;
  line-height: 1.25;
}

.carousel-dots {
  display: none;
}

.carousel-arrows {
  display: none;
}

.growth {
  padding-top: 46px;
  padding-bottom: 0;
  background: var(--sky);
}

.video-section {
  padding-top: 44px;
  padding-bottom: 0;
  background: linear-gradient(180deg, var(--sky) 0 50%, #f5f5f5 50% 100%);
}

.video-panel {
  margin-top: 0;
}

.video-wrapper {
  position: relative;
  width: min(1060px, 100%);
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-placeholder {
  width: 100%;
}

.video-placeholder[hidden] {
  display: none;
}

.video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 118px;
  height: 118px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.video-play img {
  width: 100%;
  height: 100%;
}

.video-embed-shell[hidden] {
  display: none;
}

.video-embed-shell {
  background: #000;
}

.video-embed-shell iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.application {
  background: #f5f5f5;
}

.form-shell,
.callback-shell {
  width: min(840px, 100%);
}

.application-kicker {
  margin: 0 0 22px;
  color: var(--plum);
}

.form-grid,
.callback-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  margin-top: 30px;
}

.form-grid input:not([type="file"]):not([type="checkbox"]),
.callback-form input:not([type="checkbox"]),
.callback-form select {
  width: 100%;
  min-height: 62px;
  padding: 0 28px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(74, 45, 114, 0.06);
  border-radius: var(--radius-pill);
  box-shadow: inset 0 1px 0 rgba(74, 45, 114, 0.04);
}

.form-grid input:not([type="file"]):not([type="checkbox"]):focus,
.callback-form input:not([type="checkbox"]):focus,
.callback-form select:focus {
  outline: none;
  border-color: var(--plum);
}

.form-grid input::placeholder,
.callback-form input::placeholder,
.callback-form select {
  color: rgba(32, 32, 32, 0.35);
}

.callback-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(32, 32, 32, 0.32) 50%),
    linear-gradient(135deg, rgba(32, 32, 32, 0.32) 50%, transparent 50%);
  background-position:
    calc(100% - 30px) calc(50% - 4px),
    calc(100% - 22px) calc(50% - 4px);
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.upload-box {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 158px;
  padding: 28px;
  text-align: center;
  border: 1px dashed #707070;
  border-radius: 28px;
  background: #fff;
  cursor: pointer;
}

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.upload-title {
  color: var(--plum);
  font-size: 1.15rem;
  font-weight: 400;
}

.upload-copy {
  color: rgba(32, 32, 32, 0.34);
  font-size: 1rem;
}

.checkbox-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--muted);
  font-size: 0.95rem;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 0;
  place-self: start;
  display: block;
  accent-color: var(--plum);
}

.checkbox-row a {
  color: var(--plum);
}

.privacy-link {
  padding: 0;
  color: var(--plum);
  font: inherit;
  text-decoration: underline;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.privacy-link:hover {
  color: #3b225b;
}

.consent-label {
  display: inline;
  color: inherit;
  cursor: pointer;
}

.consent-row span {
  display: block;
}

.consent-row .privacy-link {
  margin-top: 4px;
}

.form-notice {
  grid-column: 1 / -1;
  padding: 16px 20px;
  border-radius: 22px;
  font-size: 0.98rem;
}

.form-notice-success {
  color: #21543d;
  background: #e5f5ed;
  border: 1px solid rgba(33, 84, 61, 0.12);
}

.form-notice-error {
  color: #8f2430;
  background: #fdecef;
  border: 1px solid rgba(143, 36, 48, 0.12);
}

.form-error {
  display: block;
  margin: -10px 0 0;
  color: #8f2430;
  font-size: 0.9rem;
}

.form-error:empty {
  display: none;
}

.form-error-wide {
  grid-column: 1 / -1;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.callback {
  background: #ececed;
}

.callback-shell .eyebrow {
  margin-bottom: 18px;
}

.callback-form {
  margin-top: 22px;
}

.callback-select {
  grid-column: 1 / -1;
}

.callback-privacy {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.callback-actions {
  justify-content: center;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(23, 18, 31, 0.56);
  backdrop-filter: blur(8px);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-panel {
  display: flex;
  flex-direction: column;
  width: min(100%, 760px);
  max-height: min(84vh, 900px);
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(33, 24, 51, 0.22);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
  padding: 34px 34px 18px;
  background: #fff;
}

.modal-panel .eyebrow {
  margin: 6px 0 0;
}

.modal-body {
  flex: 1;
  overflow: auto;
  padding: 0 34px 30px;
}

.modal-copy {
  color: var(--ink);
  line-height: 1.6;
}

.modal-copy > :first-child {
  margin-top: 0;
}

.modal-copy > :last-child {
  margin-bottom: 0;
}

.modal-close {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  margin: 0;
  color: var(--plum);
  font-size: 28px;
  line-height: 1;
  background: #f5f1f8;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

body.has-modal-open {
  overflow: hidden;
}

.site-footer {
  color: #fff;
  background: var(--plum);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 58px 0 54px;
}

.footer-branding {
  max-width: 650px;
}

.footer-brand-head {
  display: block;
}

.footer-brand-copy {
  display: block;
}

.footer-logo {
  margin-bottom: 28px;
}

.footer-branding p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.35;
}

.button-footer {
  align-self: flex-start;
  min-width: 320px;
  color: var(--sky);
  border-color: var(--sky);
}

.button-footer-mobile {
  display: none;
}

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

@media (max-width: 1120px) {
  .hero-card {
    width: min(66%, 820px);
    padding: 70px 58px 76px;
  }

  .two-column {
    gap: 52px;
  }

  .support-track {
    gap: 18px;
  }
}

@media (max-width: 1280px) {
  .eyebrow {
    font-size: 21px;
  }

  .application-kicker {
    font-size: 21px;
  }

  .application-intro .application-kicker {
    font-size: 21px;
    line-height: 1.14;
  }

  .copy-block p.eyebrow,
  .section-heading p.eyebrow,
  .application-intro p.eyebrow,
  .callback-shell p.eyebrow,
  .info-card p.eyebrow {
    font-size: 21px;
  }

  .hero-card h1 {
    font-size: 64px;
  }

  .copy-block h2,
  .section-heading h2,
  .application-intro h2,
  .callback-shell h2,
  .info-card h2 {
    font-size: 40px;
  }
}

@media (max-width: 1024px) {
  .hero-card h1 {
    font-size: 54px;
  }

  .copy-block h2,
  .section-heading h2,
  .application-intro h2,
  .callback-shell h2,
  .info-card h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --container: min(100vw - 32px, 560px);
  }

  .desktop-only,
  .brand-logo-desktop,
  .footer-logo-desktop,
  .desktop-video,
  .desktop-upload {
    display: none;
  }

  .brand-logo-mobile,
  .footer-logo-mobile,
  .mobile-video,
  .mobile-upload {
    display: block;
  }

  .header-inner {
    min-height: 108px;
  }

  .brand-logo {
    width: 140px;
  }

  .header-actions {
    gap: 0;
  }

  .button {
    min-height: 42px;
    padding: 0 24px;
    font-size: 0.95rem;
  }

  .hero-media img {
    min-height: 290px;
    object-position: center top;
  }

  .hero-overlay {
    position: relative;
    display: block;
    background: transparent;
  }

  .hero-card {
    width: 100%;
    margin-top: -88px;
    padding: 88px 32px 48px;
    background: var(--hero-box-mobile) center top / 100% 100% no-repeat;
    border-radius: 0;
  }

  .hero-card h1 {
    font-size: 40px;
  }

  .hero-copy {
    margin: 16px 0 24px;
    font-size: 1rem;
  }

  .section {
  padding: 24px 0;
  }

  .section.intro {
    padding-top: 0;
    position: relative;
    background: #ffffff;
    padding-bottom: 8px;
  }

  .section.intro::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: var(--intro-plum-height, 150px);
    background: var(--plum);
    z-index: 0;
  }

  .section.intro > .container {
    position: relative;
    z-index: 1;
  }

  .section.why-join {
    padding-top: 24px;
  }

  .two-column,
  .card-grid,
  .form-grid,
  .callback-form,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
    gap: 28px;
  }

  .reverse-on-mobile .copy-block {
    order: 2;
  }

  .reverse-on-mobile .image-frame {
    order: 1;
  }

  .image-frame-offset {
    transform: none;
  }

  .reveal-block {
    transform: translateY(24px);
  }

  .copy-block h2,
  .section-heading h2,
  .application-intro h2,
  .callback-shell h2,
  .info-card h3 {
    font-size: 34px;
  }

  .copy-block p,
  .section-heading p,
  .application-intro p,
  .callback-shell p,
  .info-card p,
  .feature-list,
  .checkbox-row,
  .job-meta {
    font-size: 1rem;
  }

  .info-card {
    padding: 34px 22px 30px;
  }

  .section.section-sky.role-fit {
    padding-top: 14px;
    background:
      linear-gradient(
        180deg,
        #ffffff 0 var(--role-fit-split, 50%),
        var(--sky) var(--role-fit-split, 50%) 100%
      );
  }

  .section.section-sky.role-fit .container.card-grid {
    gap: 48px;
  }

  .support {
    overflow: hidden;
  }

  .support > .container,
  .application > .container,
  .callback > .container {
    width: var(--container);
    padding-left: 0;
    padding-right: 0;
  }

  .support-cards {
    width: 100%;
    margin-top: 30px;
    overflow: hidden;
  }

  .support-track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
  }

  .support-track::-webkit-scrollbar {
    display: none;
  }

  .support-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    scroll-snap-align: center;
    min-height: 270px;
  }

  .support-card-panel {
    width: 70%;
    min-height: 270px;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
  }

  .carousel-dots button {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 50%;
    display: block;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
  }

  .carousel-dots button[aria-current="true"] {
    background: var(--plum);
  }

  .video-play {
    width: 92px;
    height: 92px;
  }

  .job-meta {
    margin-top: 18px;
  }

  .form-grid,
  .callback-form {
    gap: 16px;
  }

  .modal-backdrop {
    padding: 12px;
  }

  .modal-panel {
    width: 100%;
    max-height: 90vh;
    border-radius: 24px;
  }

  .modal-header {
    padding: 24px 20px 16px;
  }

  .modal-body {
    padding: 0 20px 22px;
  }

  .upload-box {
    min-height: 138px;
    border-radius: 26px;
  }

  .checkbox-row {
    grid-template-columns: 20px 1fr;
    font-size: 0.86rem;
  }

  .form-actions,
  .callback-actions {
    justify-content: center;
  }

  .callback {
    padding-top: 46px;
  }

  .site-footer {
    text-align: center;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 0;
  }

  .footer-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    order: 1;
  }

  .footer-brand-head {
    display: grid;
    justify-items: center;
  }

  .footer-brand-copy {
    display: block;
  }

  .footer-brand-copy p {
    width: 100%;
    text-align: left;
  }

  .button-footer-desktop {
    display: none;
  }

  .button-footer-mobile {
    display: inline-flex;
    margin-bottom: 24px;
  }

  .footer-brand-copy {
    width: 100%;
  }

  .button-footer {
    min-width: 0;
    width: fit-content;
    align-self: center;
  }
}

@media (max-width: 425px) {
  :root {
    --container: calc(100vw - 64px);
  }
}
