:root {
  --bg: #edf2f7;
  --bg-soft: #f6f8fb;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-dark: #0f172a;
  --ink: #0f172a;
  --muted: #475569;
  --muted-soft: #64748b;
  --line: rgba(148, 163, 184, 0.2);
  --brand: #365f7d;
  --brand-strong: #254a64;
  --accent: #c59d5f;
  --success: #0f766e;
  --error: #b91c1c;
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 32px;
  --shadow-soft: 0 22px 60px -38px rgba(15, 23, 42, 0.22);
  --shadow-card: 0 24px 70px -42px rgba(15, 23, 42, 0.34);
  --shadow-float: 0 30px 90px -44px rgba(15, 23, 42, 0.42);
  --transition: 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(197, 157, 95, 0.14), transparent 26%),
    radial-gradient(circle at 92% 10%, rgba(54, 95, 125, 0.12), transparent 22%),
    linear-gradient(180deg, #eef3f8 0%, #edf2f7 55%, #eef4fa 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 0.8rem 0 0;
}

.header-shell {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.header-row {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.15rem;
}

.brand-link {
  width: auto;
  height: 74px;
  padding: 0.35rem 0.45rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.brand-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-link {
  position: relative;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
  padding: 0.45rem 0.1rem;
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.84rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    color var(--transition),
    opacity var(--transition);
}

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

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 18px 36px -24px rgba(37, 74, 100, 0.8);
}

.btn-primary:hover {
  box-shadow: 0 22px 42px -24px rgba(37, 74, 100, 0.92);
}

.btn-outline {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(148, 163, 184, 0.32);
}

.btn-outline:hover {
  border-color: rgba(54, 95, 125, 0.34);
  background: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 16px;
  background: rgba(226, 232, 240, 0.5);
  cursor: pointer;
  padding: 0;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span {
  margin: 5px auto;
}

.menu-toggle.is-open::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open::after {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-toggle.is-open span {
  opacity: 0;
}

.mobile-menu {
  display: none;
  padding: 0 1.15rem 1rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 248, 251, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  padding: 0.9rem 1rem 1rem;
  box-shadow: var(--shadow-soft);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 0.2rem;
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.mobile-menu a:last-of-type {
  border-bottom: 0;
}

.mobile-menu-actions {
  margin-top: 1rem;
}

.mobile-menu .mobile-menu-actions a {
  border-bottom: 0;
}

.mobile-menu .btn-primary {
  color: #fff;
}

main {
  padding: 1rem 0 0;
}

section {
  padding: 4.6rem 0;
}

.section-white,
.section-muted,
.cta-band {
  position: relative;
}

.section-white::before,
.section-muted::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-white::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.92));
}

.section-muted::before {
  background: linear-gradient(180deg, rgba(240, 245, 250, 0.96), rgba(245, 248, 252, 0.96));
}

.section-white > .container,
.section-muted > .container,
.cta-band > .container {
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.kicker {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.14;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.72rem, 3vw, 2.8rem);
}

h3 {
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-grid,
.two-col,
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-grid,
.contact-grid {
  grid-template-columns: 1.03fr 0.97fr;
}

.two-col {
  grid-template-columns: 1fr 1fr;
}

.stack-16 > * + * {
  margin-top: 1rem;
}

.stack-24 > * + * {
  margin-top: 1.5rem;
}

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

.hiring-strip {
  margin-top: -2.4rem;
  padding: 0 0 2.6rem;
}

.hiring-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(37, 74, 100, 0.94)),
    var(--surface-dark);
  color: #fff;
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hiring-banner p,
.hiring-banner h2 {
  color: #fff;
}

.hiring-banner p {
  opacity: 0.82;
}

.hiring-banner h2 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

.hiring-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.hiring-pills span,
.partner-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.badge-row,
.chip-row,
.split {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 14px 28px -26px rgba(15, 23, 42, 0.45);
}

.chip iconify-icon,
.btn iconify-icon,
.meta-item iconify-icon,
.card-icon iconify-icon,
.info-list iconify-icon {
  font-size: 1.05rem;
}

.image-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-float);
  background: #dce5ee;
}

.image-box::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.28));
  pointer-events: none;
}

.image-box img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transform: scale(1.01);
}

.hero-art {
  position: relative;
}

.hero-art .image-box::after {
  display: none;
}

.cards-2,
.cards-3,
.cards-4,
.cards-5,
.partner-grid,
.stats-grid {
  display: grid;
  gap: 1rem;
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-card {
  min-height: 100%;
  overflow: hidden;
}

.partner-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

.partner-tag {
  margin-bottom: 1rem;
  background: rgba(54, 95, 125, 0.11);
  color: var(--brand-strong);
}

.card {
  position: relative;
  min-width: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 253, 255, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
}

.card.soft {
  box-shadow: var(--shadow-soft);
}

.card.hover {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card.hover:hover {
  transform: translateY(-5px);
  border-color: rgba(54, 95, 125, 0.22);
  box-shadow: 0 30px 80px -46px rgba(15, 23, 42, 0.4);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(197, 157, 95, 0.18), rgba(54, 95, 125, 0.16));
  color: var(--brand-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.card-eyebrow {
  display: inline-block;
  margin-top: 0.95rem;
  color: var(--muted-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-link {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
  color: var(--brand);
  font-weight: 800;
}

.info-list,
.list-check {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.info-list li,
.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  min-width: 0;
}

.check-dot {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(54, 95, 125, 0.12);
  color: var(--brand);
  font-size: 0.95rem;
}

.process-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.3rem;
}

.process-step {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.process-step b {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-dark);
  color: #fff;
  font-size: 0.9rem;
}

.cta-band {
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(197, 157, 95, 0.18), transparent 26%),
    linear-gradient(135deg, #0f172a, #162235 58%, #1f3140);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.faq {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.faq + .faq {
  margin-top: 0.85rem;
}

.faq summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 3.2rem 1.15rem 1.2rem;
  font-weight: 800;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 800;
}

.faq[open] summary::after {
  content: "-";
}

.faq p {
  padding: 0 1.2rem 1.15rem;
}

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

form {
  display: grid;
  gap: 1rem;
}

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

label {
  display: grid;
  gap: 0.42rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(197, 157, 95, 0.42);
  border-color: rgba(197, 157, 95, 0.72);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 0.18rem;
}

.form-hint {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted-soft);
  font-size: 0.86rem;
  font-weight: 600;
}

.job-hero {
  align-items: stretch;
}

.job-hero-card {
  display: grid;
  align-content: center;
  gap: 1rem;
  min-height: 100%;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(54, 95, 125, 0.92)),
    var(--surface-dark);
}

.job-hero-card p,
.job-hero-card li {
  color: rgba(255, 255, 255, 0.82);
}

.job-hero-card .check-dot {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

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

.benefit-card {
  min-height: 100%;
}

.application-form-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.notice {
  min-height: 1.2rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.notice.success {
  color: var(--success);
}

.notice.error {
  color: var(--error);
}

.site-footer {
  padding: 0.8rem 0 0;
}

.footer-shell {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 30px 30px 0 0;
  box-shadow: var(--shadow-soft);
}

.footer-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 2.6rem 0;
  align-items: start;
  text-align: center;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-grid p,
.footer-grid a,
.footer-grid li {
  color: var(--muted);
}

.footer-grid ul {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  justify-items: center;
}

.footer-grid .info-list li {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.copyright {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  padding: 1rem 0 5.8rem;
  text-align: center;
  font-size: 0.84rem;
  color: var(--muted-soft);
}

.mobile-bottom {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 55;
  display: none;
  gap: 0.8rem;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 26px 60px -28px rgba(15, 23, 42, 0.62);
}

.mobile-bottom .btn {
  flex: 1;
}

.mobile-bottom .btn-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.legal {
  white-space: pre-line;
  color: var(--muted);
}

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

.has-js .reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

.delay-5 {
  transition-delay: 0.4s;
}

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

@media (max-width: 1140px) {
  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-grid,
  .two-col,
  .contact-grid,
  .cards-2,
  .cards-3,
  .cards-4,
  .cards-5,
  .partner-grid,
  .stats-grid,
  .form-row,
  .contact-card-grid,
  .benefit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hiring-banner {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 760px) {
  body {
    padding-bottom: 6.4rem;
  }

  body.page-contact {
    padding-bottom: 0;
  }

  .mobile-bottom {
    display: flex;
  }

  .page-contact .mobile-bottom {
    display: none;
  }

  .site-header {
    top: 0.55rem;
    padding-top: 0;
  }

  .container {
    width: min(100% - 1rem, 1160px);
  }

  main {
    padding-top: 0.85rem;
  }

  section {
    padding: 1.2rem 0;
  }

  .section-white,
  .section-muted,
  .cta-band {
    margin-bottom: 0.85rem;
  }

  .section-white > .container,
  .section-muted > .container,
  .cta-band > .container {
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
  }

  .section-white,
  .section-muted,
  .cta-band,
  .footer-shell {
    border-radius: 28px;
    overflow: hidden;
  }

  .header-shell {
    border-radius: 24px;
  }

  .header-row {
    min-height: 80px;
    padding: 0 0.9rem;
  }

  .brand-link {
    height: 64px;
    padding: 0.25rem 0.4rem;
  }

  .brand-link img {
    height: 48px;
  }

  .hiring-strip {
    margin-top: 0;
    padding-bottom: 0.85rem;
  }

  .hero-copy {
    max-width: none;
  }

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.58rem;
  }

  h3 {
    font-size: 1.08rem;
  }

  .image-box img {
    min-height: 260px;
  }

  .card,
  .process-step {
    border-radius: 22px;
  }

  .btn {
    padding: 0.78rem 1rem;
  }

  .copyright {
    padding-bottom: 0;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 0.75rem, 1160px);
  }

  .mobile-bottom {
    left: 0.45rem;
    right: 0.45rem;
    bottom: 0.45rem;
    gap: 0.45rem;
    padding: 0.5rem;
    border-radius: 20px;
  }

  .mobile-bottom .btn {
    min-width: 0;
    padding: 0.72rem 0.55rem;
    font-size: 0.88rem;
  }
}

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

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

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