:root {
  --navy: #141413;
  --navy-light: #272621;
  --indigo: #e4572e;
  --blue-soft: #f2eee7;
  --green: #c9f06b;
  --background: #f5f2ec;
  --white: #ffffff;
  --warm: #e4572e;
  --warm-soft: #f8ded3;
  --ink: #141413;
  --muted: #68675f;
  --line: rgba(20, 20, 19, 0.12);
  --hero-gradient: linear-gradient(135deg, #141413 0%, #201f1b 52%, #3a2b25 100%);
  --cta-gradient: linear-gradient(160deg, #141413 0%, #31241f 70%, #4b2d23 100%);
  --font-sans: "Geist", system-ui, sans-serif;
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: 6rem;
}

/* Anchor targets clear the fixed header */
#services,
#why,
#faq,
#consultation,
#process {
  scroll-margin-top: 6rem;
}

html,
body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100%;
  background-image: radial-gradient(rgba(20, 20, 19, 0.07) 0.7px, transparent 0.7px);
  background-size: 9px 9px;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--blue-soft);
  color: var(--navy);
}

:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.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;
}

.container {
  margin-inline: auto;
  width: 100%;
  max-width: 80rem;
  padding-inline: 1.25rem;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 2.5rem;
  }
}

.display-section {
  font-size: clamp(1.85rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 620;
  margin: 0;
}

.display-dramatic {
  font-size: clamp(2.2rem, 6.5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 560;
  margin: 0;
}

.text-balance {
  text-wrap: balance;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-image-blend {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 18%, black 100%);
}

@media (max-width: 1023px) {
  .hero-image-blend {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 100%);
  }

  .hero-image-panel {
    height: min(72vw, 420px);
  }

  .spotlight-ring {
    width: 220px;
    height: 220px;
  }

  .spotlight-msg {
    max-width: 120px;
    right: 1rem;
    top: 18%;
  }

  .spotlight-msg p {
    font-size: 0.95rem;
  }
}

@media (max-width: 639px) {
  .hero-title-line {
    font-size: clamp(2.6rem, 11vw, 3.4rem);
  }

  .hero-content-wrap {
    padding-top: 6rem;
    padding-bottom: 1.5rem;
  }

  .nav-logo img {
    height: 34px;
    max-width: 120px;
  }

  .footer-logo {
    height: 42px;
    max-width: 170px;
  }
}

.link-underline {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 280ms ease;
}

.link-underline:hover,
.link-underline:focus-visible {
  background-size: 100% 1px;
}

.desktop-nav {
  display: none;
}

.mobile-nav {
  display: block;
}

@media (min-width: 900px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-nav {
    display: none;
  }
}

/* Buttons */
.btn {
  group: inherit;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding-inline: 1.5rem;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform 300ms ease-out, background-color 300ms ease-out, border-color 300ms ease-out;
  will-change: transform;
}

.btn:hover {
  transform: scale(1.02);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--warm);
  color: #fff;
  box-shadow: 0 10px 30px rgba(196, 92, 38, 0.22);
}

.btn-primary:hover {
  background: #b35020;
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(20, 20, 19, 0.1);
}

.btn-secondary:hover {
  border-color: rgba(20, 20, 19, 0.25);
  background: var(--blue-soft);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--navy-light);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(20, 20, 19, 0.15);
}

.btn-ghost-dark:hover {
  background: rgba(20, 20, 19, 0.04);
}

.btn-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 300ms;
}

.btn:hover .btn-icon {
  transform: translate(2px, -2px);
}

/* Scroll progress */
#scroll-progress {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 60;
  height: 2px;
  transform-origin: left;
  background: var(--warm);
  pointer-events: none;
  transform: scaleX(0);
}

/* Navbar */
#site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: all 300ms;
  background: transparent;
}

#site-header.is-scrolled {
  border-bottom: 1px solid rgba(20, 20, 19, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(20, 20, 19, 0.08);
  backdrop-filter: blur(24px);
}

#site-header .nav-inner {
  margin-inline: auto;
  display: flex;
  max-width: 80rem;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.25rem;
  height: 5rem;
  transition: height 300ms;
}

@media (min-width: 640px) {
  #site-header .nav-inner {
    padding-inline: 2rem;
  }
}

@media (min-width: 1024px) {
  #site-header .nav-inner {
    padding-inline: 2.5rem;
  }
}

#site-header.is-scrolled .nav-inner {
  height: 4rem;
}

.nav-logo img {
  width: auto;
  height: 40px;
  max-width: 140px;
  object-fit: contain;
}

.nav-link {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: rgba(20, 20, 19, 0.82);
  transition: color 200ms;
}

.nav-link:hover {
  color: var(--navy);
}

#site-header.is-scrolled .nav-link {
  color: rgba(20, 20, 19, 0.82);
}

#site-header.is-scrolled .nav-link:hover {
  color: var(--navy);
}

.menu-trigger {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 19, 0.2);
  color: var(--navy);
  transition: color 200ms, border-color 200ms;
}

.menu-trigger.is-light {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

#site-header.is-scrolled .menu-trigger {
  border-color: rgba(20, 20, 19, 0.2);
  color: var(--navy);
}

/* Mobile drawer */
#mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--navy);
  color: #fff;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity 280ms, transform 280ms;
}

#mobile-drawer.is-open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - 88px);
  flex-direction: column;
  overflow: hidden;
  background: #f8f9fc;
  color: var(--navy);
}

@media (min-width: 1024px) {
  .hero {
    display: block;
  }
}

.hero-content-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 3rem;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .hero-content-wrap {
    display: grid;
    min-height: calc(100svh - 88px);
    grid-template-columns: repeat(12, minmax(0, 1fr));
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
}

.hero-content {
  pointer-events: auto;
  position: relative;
  z-index: 20;
  width: 100%;
  --hero-parallax-y: 0px;
  transform: translateY(var(--hero-parallax-y));
}

@media (min-width: 1024px) {
  .hero-content {
    grid-column: span 6 / span 6;
    padding-right: 2rem;
  }
}

.hero-eyebrow {
  margin-bottom: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(228, 87, 46, 0.1);
  background: rgba(228, 87, 46, 0.06);
  padding: 0.625rem 1rem;
}

.hero-title-line {
  display: block;
  font-size: clamp(2.75rem, 5.2vw, 5.25rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: var(--navy);
}

.hero-title-line.accent {
  color: var(--indigo);
}

.hero-title-line + .hero-title-line {
  margin-top: 0.5rem;
}

.hero-anim {
  opacity: 0;
  transform: translateY(20px);
}

.hero-anim.is-shown {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-image-panel {
  position: relative;
  z-index: 0;
  height: 500px;
  width: 100%;
  opacity: 0;
  --hero-parallax-y: 0px;
  transform: translateY(var(--hero-parallax-y)) scale(1.025);
}

.hero-image-panel.is-shown {
  opacity: 1;
  transform: translateY(var(--hero-parallax-y)) scale(1);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s;
}

@media (min-width: 640px) {
  .hero-image-panel {
    height: 620px;
  }
}

@media (min-width: 1024px) {
  .hero-image-panel {
    position: absolute;
    inset-block: 0;
    right: 0;
    height: auto;
    width: 55%;
  }
}

.spotlight {
  position: relative;
  height: 100%;
  width: 100%;
  touch-action: pan-y;
}

.spotlight-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.spotlight img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease-out;
}

.spotlight:hover img {
  transform: scale(1.025);
}

.spotlight-default {
  filter: brightness(1.02) saturate(1.05) contrast(1.02);
  object-position: 58% center;
}

.spotlight-reveal img {
  object-position: 45% center;
}

.spotlight-reveal {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  clip-path: circle(0px at 50% 50%);
}

.spotlight-ring {
  pointer-events: none;
  position: absolute;
  z-index: 20;
  width: 330px;
  height: 330px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 80px rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 300ms;
}

.spotlight-ring.is-visible {
  opacity: 1;
}

.spotlight-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 45px rgba(255, 255, 255, 0.35);
}

.spotlight-ring::after {
  content: "";
  position: absolute;
  inset: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.float-card {
  pointer-events: none;
  position: absolute;
  right: 1rem;
  bottom: -1.25rem;
  z-index: 30;
  display: none;
  min-width: 250px;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.45);
  padding: 1rem 1.25rem;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(24px);
  animation: floatY 7s ease-in-out infinite;
}

@media (min-width: 640px) {
  .float-card {
    display: block;
  }
}

@media (min-width: 1024px) {
  .float-card {
    right: 2.5rem;
    bottom: 2.5rem;
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes floatBlob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
  }
}

@keyframes floatBlobAlt {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.stagger-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-item.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Word reveal */
.word-reveal .word {
  display: inline-block;
  margin-right: 0.22em;
  opacity: 0.18;
  transform: translateY(12px);
  transition: opacity 0.2s, transform 0.2s;
}

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

/* Cards */
.card {
  border-radius: 1.5rem;
  border: 1px solid rgba(20, 20, 19, 0.08);
  background: #fff;
  transition: transform 300ms, border-color 300ms, box-shadow 300ms;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 87, 46, 0.3);
}

/* Services sticky horizontal */
.services-pin {
  display: none;
}

@media (min-width: 1024px) {
  .services-pin {
    display: block;
    position: relative;
    height: 300vh;
  }

  .services-sticky {
    position: sticky;
    top: 0;
    display: flex;
    min-height: 100vh;
    align-items: center;
    overflow: hidden;
    background: #0b0b0c;
  }

  .services-track {
    display: flex;
    gap: 2rem;
    padding-left: max(0px, calc((100vw - 1280px) / 2));
    padding-right: 6rem;
    will-change: transform;
  }

  .service-card-wide {
    width: 42vw;
    max-width: 620px;
    flex-shrink: 0;
  }

  .services-mobile {
    display: none;
  }
}

@media (max-width: 1023px) {
  .services-mobile {
    display: block;
  }
}

/* Process sticky */
.process-pin {
  display: none;
}

@media (min-width: 992px) {
  .process-pin {
    display: block;
    position: relative;
    height: 360vh;
  }

  .process-sticky {
    position: sticky;
    top: 0;
    display: flex;
    min-height: 100vh;
    align-items: center;
    overflow: hidden;
  }

  .process-mobile {
    display: none;
  }

  .process-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    column-gap: 4.5rem;
    align-items: center;
    width: 100%;
    max-width: 64rem;
    margin-inline: auto;
  }

  .process-panels {
    position: relative;
    width: 100%;
    max-width: 34rem;
    min-height: 28rem;
    margin-inline: 0;
    justify-self: start;
  }

  .process-panel {
    transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .process-panel.is-active .process-panel-img img {
    animation: processImageIn 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .process-panel.is-active h3,
  .process-panel.is-active p {
    animation: processTextIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .process-panel.is-active h3 {
    animation-delay: 0.05s;
  }

  .process-panel.is-active p:nth-of-type(2) {
    animation-delay: 0.1s;
  }

  .process-panel.is-active p:nth-of-type(3) {
    animation-delay: 0.15s;
  }
}

@keyframes processImageIn {
  from {
    opacity: 0.4;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (max-width: 991px) {
  .process-mobile {
    display: block;
  }

  .process-mobile .process-line,
  .process-mobile .process-dot,
  .process-mobile-line,
  .process-mobile-dot {
    display: none !important;
  }
}

.process-nav-list {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-block: 0.9rem;
  padding-left: 2.35rem;
  z-index: 1;
}

.process-nav-item > span:not(.process-dot) {
  opacity: 0.4;
  transition: opacity 0.25s ease, color 0.25s ease, font-weight 0.25s ease;
}

.process-nav-item.is-active > span:not(.process-dot) {
  opacity: 1;
}

.process-nav-item.is-active .process-dot {
  border-color: var(--indigo);
  background: var(--indigo);
  box-shadow: 0 0 0 4px rgba(228, 87, 46, 0.15);
}

.process-nav-item.is-active .text-xl {
  color: var(--navy);
  font-weight: 650;
}

.process-panel {
  position: absolute;
  left: 0;
  right: auto;
  top: 50%;
  width: 100%;
  max-width: 34rem;
  opacity: 0;
  transform: translateY(calc(-50% + 18px));
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-panel:first-child,
.process-panel.is-active {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: auto;
}

.process-nav-item:first-child > span:not(.process-dot) {
  opacity: 1;
}

.process-line-fill {
  transform-origin: top;
  transform: scaleY(0);
}

.process-panel h3 {
  font-size: clamp(1.85rem, 2.8vw, 2.5rem);
  margin: 0.25rem 0 0;
}

.process-panel-img {
  margin-top: 1.25rem;
  overflow: hidden;
  border-radius: 1.25rem;
  max-height: 220px;
  width: 100%;
}

.process-panel-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .process-panel-img {
    max-height: none;
  }

  .process-panel-img img {
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

/* FAQ */
.faq-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 280ms ease, opacity 280ms ease;
}

.faq-panel.is-open {
  opacity: 1;
}

.faq-chevron {
  transition: transform 200ms;
}

.faq-chevron.is-open {
  transform: rotate(180deg);
}

/* Floating back to top */
#floating-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

#floating-cta.is-visible {
  display: flex;
}

#floating-cta.is-hidden-by-popup {
  display: none !important;
}

.back-to-top {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 28px rgba(20, 20, 19, 0.25);
  transition: transform 200ms ease, background-color 200ms ease;
  animation: backToTopPulse 2.4s ease-in-out infinite;
}

.back-to-top:hover {
  background: var(--indigo);
  transform: translateY(-3px);
  animation: none;
}

.back-to-top i,
.back-to-top svg {
  animation: backToTopArrow 1.4s ease-in-out infinite;
}

@keyframes backToTopPulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(20, 20, 19, 0.22);
  }
  50% {
    box-shadow: 0 12px 32px rgba(228, 87, 46, 0.28);
  }
}

@keyframes backToTopArrow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top,
  .back-to-top i,
  .back-to-top svg {
    animation: none;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(20, 20, 19, 0.08);
  background: var(--navy);
  color: #fff;
  padding-top: 2.5rem;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 0.55rem 0.85rem;
}

.footer-logo {
  display: block;
  width: auto;
  height: 48px;
  max-width: 200px;
  object-fit: contain;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  transition: background-color 200ms, border-color 200ms, color 200ms, transform 200ms;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  transform: translateY(-2px);
}

/* Legal pages */
.legal-page {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  margin: 0 0 0.75rem;
}

.legal-page .legal-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin: 2rem 0 0.75rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-page ul {
  padding-left: 1.25rem;
}

.legal-content {
  max-width: 48rem;
}

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

  .hero-anim,
  .hero-image-panel,
  .reveal,
  .stagger-item {
    opacity: 1 !important;
    transform: none !important;
  }

  .float-card {
    animation: none;
  }
}
