@charset "UTF-8";
.services-rail {
  padding: 5.5rem 4vw 6rem;
  color: #232c45;
  position: relative;
}
@media (max-width: 880px) {
  .services-rail {
    padding: 5.5rem 4vw 0;
  }
}

.services-rail__head h2 {
  font-family: "Oswald", system-ui;
  font-weight: 700;
  font-size: clamp(28px, 5.5vw, 56px);
  line-height: 0.95;
  margin: 0 0 1.2rem 0;
  color: #fff;
  mix-blend-mode: overlay;
}

header.services-rail__head {
  display: flex;
  width: 100%;
  place-content: space-between;
}

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 42vw, 520px);
  gap: clamp(16px, 5vw, 82px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 1rem 0.5rem 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar {
  display: none;
}

.card {
  position: relative;
  scroll-snap-align: start;
  background: #fff;
  border: 2px solid #232c45;
  border-radius: 28px;
  padding: 18px 18px;
  transform: rotateZ(-1deg);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0, 1), box-shadow 0.35s ease, background 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  grid-template-rows: auto 0 auto;
  min-height: clamp(360px, 62vw, 470px);
  height: 38rem;
}
.card:nth-child(2n) {
  transform: rotateZ(1.5deg);
  background: #fff;
  border: 2px solid #232c45;
}
.card:nth-child(3n) {
  transform: rotateZ(-1deg);
}
.card:hover {
  transform: rotateZ(0deg) translateY(-4px) scale(1.01);
  box-shadow: inset 0 1px 0 #232c45;
  border-color: #232c45;
}

.card__logo {
  position: absolute;
  left: 40px;
  top: 30px;
  z-index: 2;
  font: 700 28px/1 "Space Grotesk", system-ui;
  color: rgba(255, 255, 255, 0.95);
}

.card__badge {
  position: absolute;
  left: 30px;
  bottom: 120px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  font: 600 14px/1 "Space Grotesk", system-ui;
  letter-spacing: 0.15em;
}

.card__media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: 30rem;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06) translateY(6px);
  filter: saturate(1.1) contrast(1.02);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0, 1), filter 0.45s ease, opacity 0.45s ease;
  opacity: 0.96;
}
.card:hover .card__media img {
  transform: scale(1.02) translateY(0);
  filter: saturate(1.15) contrast(1.05);
}

.card__footer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.card__title {
  font: 700 clamp(18px, 3.8vw, 34px)/1 "Space Grotesk", system-ui;
  letter-spacing: 0.02em;
  color: #232c45;
}

.card__plus {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: radial-gradient(circle at 50% 50%, #232c45, #232c45);
  color: #fff;
  font: 600 24px/1 "Space Grotesk", system-ui;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.card__plus:hover {
  transform: translateY(-1px) scale(1.04);
  border-color: #fff;
}

.rail__ornament {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 8px;
  font: 700 22px/1 "Space Grotesk", system-ui;
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

@media (max-width: 600px) {
  .card {
    border-radius: 25px;
    padding: 0;
    height: 23rem;
  }
  .card__plus {
    width: 50px;
    height: 50px;
  }
  .card__badge {
    left: 22px;
    bottom: 79px;
  }
  .card__media {
    height: 17rem;
    border-radius: 1rem 1rem 0rem 0rem;
  }
  .hero-headline {
    bottom: 18rem !important;
  }
  .card__logo {
    left: 6px;
    top: 15px;
  }
}
.rail-nav {
  position: relative;
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  z-index: 5;
  align-items: end;
}

.rail-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid #232c45;
  background: #fff;
  color: #232c45;
  font: 700 24px/1 "Space Grotesk", system-ui;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.rail-btn:hover {
  transform: translateY(-1px) scale(1.04);
  border-color: #fff;
  color: #fff;
  background-color: #232c45;
}

@media (max-width: 600px) {
  .rail-btn {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
}
.services-hero {
  position: relative;
  margin: 0 0 3.6rem;
  padding: 0 0.5vw;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-content: center;
}
@media (max-width: 880px) {
  .services-hero {
    margin: 0 0 0.6rem;
  }
}

.svc-title {
  position: relative;
  display: inline-block;
  margin: 0;
  line-height: 0.9;
  font-family: "Oswald", system-ui;
  font-weight: 700;
  font-size: clamp(42px, 7.5vw, 120px);
  letter-spacing: 0.01em;
  color: #232c45;
}

.svc-title__stroke,
.svc-title__fill {
  position: absolute;
  inset: 0;
  display: inline-block;
  white-space: nowrap;
  will-change: transform, clip-path, opacity;
}

.svc-title__stroke {
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  filter: drop-shadow(0 4px 16px rgba(255, 255, 255, 0.12));
}

.svc-title__fill {
  color: #fff;
}

.svc-sub {
  margin: 0.4rem 0 0 2px;
  opacity: 0;
  font: 400 18px/1.55 "Space Grotesk", system-ui;
  transform: translateY(10px);
}

.svc-modal {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 910;
}
.svc-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.svc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(227, 227, 227, 0) !important;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.28s ease;
  z-index: 900;
}
.svc-modal.is-open .svc-modal__backdrop {
  opacity: 1;
}

.svc-modal__panel {
  position: relative;
  max-width: min(1160px, 94vw);
  margin: min(8vh, 5rem) auto;
  border-radius: 22px;
  overflow: hidden;
  color: #fff;
  z-index: 1000;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.35);
  background: linear-gradient(180deg, rgba(220, 210, 245, 0.65), rgba(195, 185, 235, 0.65));
  transform: translate3d(0, 12px, 0) scale(0.985);
  opacity: 0;
  filter: none !important;
  will-change: transform, opacity;
}
.svc-modal.anim-in .svc-modal__panel {
  animation: panelIn 0.36s cubic-bezier(0.22, 0.9, 0.22, 1) forwards;
}
.svc-modal.anim-out .svc-modal__panel {
  animation: panelOut 0.22s cubic-bezier(0.22, 0.9, 0.22, 1) forwards;
}
@media (max-width: 880px) {
  .svc-modal__panel {
    margin: 8vh auto;
    border-radius: 20px;
    top: 0;
    bottom: 20%;
    height: 80%;
  }
}

#svcBg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 50% 50%;
  z-index: 1;
  filter: none !important;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.svc-modal.anim-in #svcBg {
  transform: scale(1.06) !important;
}

.svc-modal.anim-out #svcBg {
  transform: scale(1.02) !important;
}

.svc-modal__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(20, 16, 40, 0.55) 0%, rgba(20, 16, 40, 0.38) 46%, rgba(20, 16, 40, 0.2) 65%);
}

.svc-modal__content {
  position: relative;
  z-index: 910;
  padding: clamp(20px, 3.2vw, 42px);
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 5rem 3rem;
  background: #fff;
}
.svc-modal__content .svc-title {
  font-weight: 800;
  font-size: clamp(30px, 4.8vw, 60px);
  letter-spacing: 0.01em;
  color: #232c45;
  line-height: 1;
}
.svc-modal__content .svc-desc {
  margin-top: 0.75rem;
  line-height: 1.6;
  color: #232c45;
  font-family: "Space Grotesk", system-ui;
}
.svc-modal__content .svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
  font-family: "Space Grotesk", system-ui;
  padding: 0;
}
.svc-modal__content .svc-tags li {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid #232c45;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #232c45;
  list-style: none;
}
@media (max-width: 880px) {
  .svc-modal__content .svc-tags li {
    font-size: 0.6rem;
  }
}
@media (max-width: 880px) {
  .svc-modal__content {
    max-width: none;
    gap: 1rem !important;
    margin: 4rem 1rem 1rem 1rem;
  }
}

.svc-badge {
  position: absolute;
  top: 35px;
  left: 75px;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: rgb(4.1057692308, 5.1615384615, 8.0942307692);
  font-weight: 700;
  font-size: 14px;
  z-index: 910;
  font-family: "Oswald", system-ui;
}
@media (max-width: 880px) {
  .svc-badge {
    top: 28px;
    left: 25px;
  }
}

.svc-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 915;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.svc-modal__close:hover {
  transform: translateY(-1px);
}
.svc-modal__close:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.7);
}
.svc-modal__close span {
  position: absolute;
  width: 22px;
  height: 3px;
  background: #232c45;
  border-radius: 2px;
}
.svc-modal__close span:first-child {
  transform: rotate(45deg);
}
.svc-modal__close span:last-child {
  transform: rotate(-45deg);
}

.services-rail .rail-nav {
  position: relative;
  z-index: 5;
}
.services-rail .rail-btn {
  pointer-events: auto;
  cursor: pointer;
}

/* Motion-reduce */
@media (prefers-reduced-motion: reduce) {
  .svc-modal__backdrop {
    transition: none !important;
  }
  .svc-modal.anim-in .svc-modal__panel,
  .svc-modal.anim-out .svc-modal__panel {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  #svcBg {
    transition: none !important;
    transform: none !important;
  }
}
/* Keyframes */
@keyframes panelIn {
  0% {
    transform: translateY(16px) scale(0.985);
    opacity: 0;
  }
  60% {
    transform: translateY(-2px) scale(1.01);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes panelOut {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(12px) scale(0.985);
    opacity: 0;
  }
}
:root {
  --ink:#232C45;
  --bg:#eef2f5;
  --white:#fff;
}

.error-page {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  display: grid;
  place-items: center;
}
.error-page .wrap {
  width: min(960px, 92vw);
  display: grid;
  gap: 2rem;
  text-align: center;
}
.error-page .code {
  font-family: "Oswald", system-ui;
  font-weight: 800;
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.9;
  margin: 0;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.error-page .title {
  font-family: "Oswald", system-ui;
  font-weight: 700;
  font-size: clamp(22px, 3.5vw, 36px);
  margin: 0.2rem 0 0;
  letter-spacing: 0.01em;
}
.error-page .lead {
  margin: 0.2rem auto 0;
  max-width: 60ch;
  opacity: 0.85;
  line-height: 1.6;
}
.error-page .cta {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.error-page .cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}
.error-page .row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}
.error-page .pill {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(35, 44, 69, 0.25);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  opacity: 0.9;
}
.error-page .hint {
  font-size: 0.85rem;
  opacity: 0.7;
}
.error-page .logo {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 0.6rem;
  border-radius: 20px;
  background: var(--white);
  border: 2px solid var(--ink);
  font-family: "Oswald";
  font-weight: 700;
  letter-spacing: 0.06em;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

section[id] {
  scroll-margin-top: 0px;
}

body {
  background: #232c45;
}

.site-topbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: 64px;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5vw;
  pointer-events: none;
  color: #fff;
  transition: color 0.28s ease;
  mix-blend-mode: normal;
}
.site-topbar.ui-dark {
  color: #232c45;
}
.site-topbar.ui-light {
  color: #fff;
}
.site-topbar .topbar__label,
.site-topbar .topbar__contact,
.site-topbar .menu-btn {
  color: #232c45;
}
.site-topbar .menu-btn.is-open .menu-btn__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.site-topbar .menu-btn.is-open .menu-btn__line:nth-child(2) {
  transform: translateY(-6px) rotate(-45deg);
}
.site-topbar .topbar__left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  pointer-events: auto;
}
.site-topbar .topbar__label {
  font: 600 15px/1 "Space Grotesk", system-ui;
  letter-spacing: 0.18em;
  opacity: 0.85;
  text-transform: uppercase;
}
.site-topbar .menu-btn:hover .menu-btn__line {
  filter: brightness(1.08);
}
.site-topbar .menu-btn {
  pointer-events: auto;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: transparent;
  color: inherit;
  z-index: 1000;
}
.site-topbar .menu-btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.7);
}
.site-topbar .menu-btn__box {
  position: relative;
  width: 21px;
  height: 14px;
  display: block;
}
.site-topbar .menu-btn__line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #232c45;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.2s ease;
}
.site-topbar .menu-btn__line:nth-child(1) {
  top: 0;
}
.site-topbar .menu-btn__line:nth-child(2) {
  bottom: 0;
}
.site-topbar .topbar__contact {
  pointer-events: auto;
  font: 600 15px/1 "Space Grotesk", system-ui;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 0.8rem;
  border: 0;
  opacity: 0.95;
}
.site-topbar .topbar__contact:hover {
  opacity: 1;
}
.site-topbar .topbar__contact:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.7);
}

.topbar__label {
  margin-left: 0.4rem;
  font: 600 12px/1 "Space Grotesk", system-ui;
  letter-spacing: 0.14em;
}

/* Bouton burger */
.menu-btn {
  --sz: 34px;
  position: relative;
  width: var(--sz);
  height: 22px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-block;
  padding: 0;
}
.menu-btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.7);
}

.menu-btn__box {
  position: absolute;
  inset: 0;
}

.menu-btn__line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #232c45;
  transform-origin: 50% 50%;
  transition: transform 0.46s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease, background 0.2s ease;
}

.menu-btn__line:first-child {
  top: 0;
}

.menu-btn__line:last-child {
  bottom: 0;
}

.menu-btn.is-active .menu-btn__line:first-child {
  transform: translateY(3px) rotate(42deg) scaleX(1.02);
}

.menu-btn.is-active .menu-btn__line:last-child {
  transform: translateY(-10px) rotate(-42deg) scaleX(1.02);
}

.menu-btn:hover .menu-btn__line {
  background: #fff;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background: rgba(144, 180, 204, 0.44);
  display: grid;
  place-items: center;
  color: #EEF2F5;
  transform: scaleY(0.96);
  opacity: 0;
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s ease;
  backdrop-filter: blur(10px);
}

.menu-overlay.is-open {
  opacity: 1;
  transform: scaleY(1);
  pointer-events: auto;
}

.menu-grid {
  width: min(1200px, 92vw);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: min(6vw, 80px);
  align-items: center;
}

@media (max-width: 880px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .marquee-link {
    right: 6rem !important;
  }
}
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(238, 242, 245, 0.12);
}

.menu-list li {
  overflow: hidden;
  border-bottom: 1px solid rgba(238, 242, 245, 0.12);
}

.menu-list a {
  display: block;
  padding: clamp(14px, 2.4vw, 24px) 0;
  font-family: "Oswald", system-ui;
  font-weight: 800;
  font-size: clamp(28px, 6.2vw, 84px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: #EEF2F5;
  transform: translateY(110%);
  opacity: 0;
}
.menu-list a:hover {
  color: #fff;
}
.menu-list a:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.7);
}
@media (max-width: 880px) {
  .menu-list a {
    font-size: clamp(60px, 6.2vw, 84px);
  }
}

.menu-overlay.is-open .menu-list a {
  animation: itemIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: calc(var(--i) * 0.08s + 0.05s);
}

/* Aside */
.menu-aside {
  display: grid;
  gap: 24px;
  align-content: start;
}

.menu-cta {
  overflow: hidden;
}

.btn-accent {
  display: inline-block;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, #fff 60%, #232c45 40%);
  background: color-mix(in oklab, #ffffff 16%, rgba(255, 255, 255, 0.4509803922));
  color: #232c45;
  font: 700 13px/1 "Space Grotesk", system-ui;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-accent:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.7);
}

.menu-overlay.is-open .btn-accent {
  animation: itemIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: calc(var(--i) * 0.08s + 0.05s);
}

.btn-accent:hover {
  background: #94a8c7;
  box-shadow: 0 8px 30px rgba(182, 255, 126, 0.25);
}

/* Réseaux */
.menu-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.menu-social a {
  color: rgba(238, 242, 245, 0.64);
  text-decoration: none;
  font: 600 14px/1 "Space Grotesk", system-ui;
  letter-spacing: 0.04em;
}
.menu-social a:hover {
  color: #EEF2F5;
}
.menu-social a:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.7);
}

/* Anim */
@keyframes itemIn {
  from {
    transform: translateY(110%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.site-footer {
  padding: 2rem 6vw;
  text-align: center;
  opacity: 0.8;
  font-family: "Space Grotesk", system-ui;
  line-height: 2;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 5rem;
  z-index: 10;
  color: #232c45;
}

@media (max-width: 720px) {
  .site-footer {
    line-height: 2;
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
    gap: 0;
    flex-direction: column;
  }
}
.contact {
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #eaf0f4;
  color: #232c45;
  z-index: 10;
}
.contact .grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
  background-image: linear-gradient(to right, #cfd8e3 1px, transparent 1px), linear-gradient(to bottom, #cfd8e3 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px;
  background-position: 0 0, 0 0;
  mask-image: radial-gradient(120% 100% at 50% 40%, #000 60%, transparent 100%);
}
.contact .container {
  margin-inline: auto;
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  grid-template-columns: 1.5fr 0.5fr;
  gap: clamp(36px, 16vw, 60px);
  margin-top: 4rem;
  width: 100%;
  padding: 0rem 4rem 4rem 4rem;
}
.contact .kicker {
  font-size: clamp(12px, 1.6vw, 14px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #556170;
}
.contact .title {
  font-weight: 800;
  line-height: 1.05;
  margin: 0.25em 0 0.5em;
  font-family: "Oswald", system-ui;
}
.contact .title .big {
  display: block;
  font-size: clamp(28px, 6vw, 91px);
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.contact .title .thin {
  display: block;
  font-weight: 400;
  font-size: clamp(24px, 5vw, 48px);
}
.contact .lead {
  color: #556170;
  max-width: 60ch;
  font-size: clamp(14px, 1.8vw, 18px);
  font-family: "Space Grotesk", system-ui;
}
.contact .cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 36px;
  font-family: "Space Grotesk", system-ui;
}
.contact .cols .col h4 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #556170;
  margin: 0 0 10px;
}
.contact .cols .col a {
  display: block;
  color: #232c45;
  text-decoration: none;
  opacity: 0.85;
  padding: 6px 0;
}
.contact .cols .col a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 900px) {
  .contact .cols {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 16px;
    margin-top: 24px;
  }
}
@media (max-width: 480px) {
  .contact .cols {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact .cols .col a {
    padding: 4px 0;
  }
}
.contact .card-wrap {
  perspective: 1200px;
  place-self: start end;
  height: 100%;
}
@media (max-width: 900px) {
  .contact .card-wrap {
    place-self: auto;
    justify-self: center;
    margin-top: 0.5rem;
  }
}
.contact .card {
  width: min(520px, 80vw);
  aspect-ratio: 4/5;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 30px 60px rgba(10, 20, 40, 0.18), 0 6px 18px rgba(10, 20, 40, 0.1);
  transform: rotateZ(0deg) rotateX(0deg);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.contact .card:hover {
  transform: rotateZ(-2deg) rotateX(4deg) translateY(-2px);
  box-shadow: 0 40px 80px rgba(12, 24, 48, 0.22);
}
.contact .card .media {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}
.contact .card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% 40%;
  transform: scale(1.02);
  transition: transform 0.5s ease, filter 0.3s ease;
  image-rendering: auto;
  filter: saturate(1.02) contrast(1.02);
}
@media (max-width: 900px) {
  .contact .card .media img {
    object-position: 96% 40%;
  }
}
.contact .card:hover .media img {
  transform: scale(1.06);
}
@media (max-width: 900px) {
  .contact .card {
    width: min(460px, 92vw);
    transform: rotateZ(-3deg) rotateX(6deg);
    aspect-ratio: 3/4;
  }
}
@media (max-width: 480px) {
  .contact .card {
    width: min(420px, 94vw);
    aspect-ratio: 3/4;
  }
}
.contact .bio-mini {
  margin-top: 5rem;
  max-width: min(819px, 80vw);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  padding: 14px 16px;
  font-family: "Space Grotesk", system-ui;
}
.contact .bio-mini .bio-name {
  margin: 0 0 17px;
  font-size: 3rem;
  font-weight: 700;
}
.contact .bio-mini .bio-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #556170;
}
.contact .bio-mini .bio-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .contact .bio-mini .bio-actions {
    gap: 8px;
  }
  .contact .bio-mini .bio-actions .btn {
    flex: 1 1 100%;
    text-align: center;
    padding: 12px 14px;
  }
}
.contact .bio-mini .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border-radius: 999px;
  font-size: 1.2rem;
  text-decoration: none;
  background: #232c45;
  color: #fff;
  transition: transform 0.15s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
}
.contact .bio-mini .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.contact .bio-mini .btn:active {
  transform: translateY(0);
}
.contact .bio-mini .btn.ghost {
  background: transparent;
  color: #232c45;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
@media (max-width: 900px) {
  .contact .bio-mini {
    margin-top: 1rem;
    padding: 12px 14px;
  }
  .contact .bio-mini .bio-name {
    font-size: 16px;
  }
  .contact .bio-mini .bio-text {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .contact .bio-mini {
    padding: 10px 12px;
  }
  .contact .bio-mini .bio-text {
    line-height: 1.45;
  }
}
.contact .foot {
  width: min(1200px, 92vw);
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  color: #556170;
  font-size: 13px;
}
.contact .foot a {
  color: inherit;
  text-decoration: none;
}
.contact .foot a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 900px) {
  .contact .foot {
    margin-top: 18px;
    font-size: 12px;
    gap: 12px;
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .contact .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "title" "card" "bio" "socials";
    gap: clamp(14px, 5vw, 24px);
    padding: 1rem clamp(16px, 5vw, 24px);
    margin-top: 1.6rem;
  }
  .contact .container > div:first-of-type {
    display: contents;
  }
  .contact .title {
    grid-area: title;
  }
  .contact .big {
    display: block;
    font-size: clamp(39px, 10vw, 72px) !important;
    text-transform: uppercase;
    margin-bottom: 0 !important;
  }
  .contact .lead {
    display: none;
  }
  .contact .card-wrap {
    grid-area: card;
    justify-self: center;
    margin-top: 0.2rem;
  }
  .contact .bio-mini {
    grid-area: bio;
    margin-top: 0.4rem;
  }
  .contact .cols {
    grid-area: socials;
    display: block !important;
    margin-top: 0.4rem;
  }
  .contact .cols .col {
    display: none !important;
  }
  .contact .cols .col:nth-child(2) {
    display: block !important;
    justify-self: center;
    margin-bottom: 1rem;
  }
  .contact .cols .col:nth-child(2) h4 {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #556170;
    margin: 0 0 8px;
  }
  .contact .cols .col:nth-child(2) a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #232c45;
    border-radius: 999px;
    padding: 10px 14px;
    margin: 6px 8px 0 0;
    text-decoration: none;
    color: #232c45;
    background: #fff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease;
  }
  .contact .cols .col:nth-child(2) a:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  }
  .contact .card {
    width: min(460px, 79vw);
    aspect-ratio: 3/4;
    transform: rotateZ(-3deg) rotateX(6deg);
  }
  .contact .bio-mini {
    padding: 12px 14px;
    justify-self: center;
    margin-top: 2rem;
  }
  .contact .bio-mini .bio-name {
    font-size: 34px;
  }
  .contact .bio-mini .bio-text {
    font-size: 13px;
    line-height: 1.45;
  }
  .contact .bio-mini .bio-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .contact .bio-mini .bio-actions .btn {
    flex: 1 1 100%;
    text-align: center;
    padding: 12px 14px;
  }
}

.projects {
  color: #232c45;
  padding: 0.5rem 4vw 6rem;
}

.projects__head {
  margin-bottom: 5rem;
}

.projects__title {
  font-family: "Oswald", system-ui, system-ui;
  font-weight: 800;
  font-size: clamp(42px, 7.5vw, 120px);
  line-height: 0.92;
  margin: 0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #232c45;
}

.projects__sub {
  opacity: 0.7;
  margin: 0.5rem 0 0;
  font: 400 16px/1.6 "Space Grotesk", system-ui, system-ui;
  color: #232c45;
}

.projects__list {
  position: relative;
}

.proj-row {
  position: relative;
  isolation: isolate;
  cursor: pointer;
  will-change: background, transform, opacity;
}

.proj-row__line {
  height: 1px;
  width: 100%;
  background: #232c45;
}

.proj-row__line--end {
  margin-top: 0;
}

.proj-row__inner {
  display: grid;
  grid-template-columns: 80px 1fr max-content max-content;
  align-items: center;
  gap: 1.2rem;
  padding: 5.2rem 0;
  border-top: 1px solid #232c45;
}

@media (max-width: 720px) {
  .proj-row__inner {
    grid-template-columns: 64px 1fr auto;
    row-gap: 0.4rem;
  }
}
.proj-num {
  font: 700 clamp(14px, 2.8vw, 18px)/1 "Space Grotesk", system-ui, system-ui;
  opacity: 0.5;
  letter-spacing: 0.08em;
}

.proj-title {
  font-family: "Oswald", system-ui, system-ui;
  font-weight: 700;
  font-size: clamp(22px, 4.5vw, 46px);
  line-height: 1;
  margin: 0;
  color: #232c45;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0, 1), letter-spacing 0.35s ease;
}

.proj-meta {
  justify-self: end;
  opacity: 0.7;
  font: 500 13px/1 "Space Grotesk", system-ui, system-ui;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proj-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #232c45;
  font: 600 12px/1 "Space Grotesk", system-ui, system-ui;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
.proj-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}
.proj-cta .arr {
  width: 18px;
  height: 18px;
  stroke: #232c45;
  fill: none;
  stroke-width: 2;
  transform: translateX(0);
  transition: transform 0.2s ease;
}

.proj-row:hover .proj-title {
  transform: translateX(4px);
  letter-spacing: 0.01em;
}

.proj-row:hover .proj-row__line {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.proj-row:hover .proj-cta .arr {
  transform: translateX(4px);
}

.proj-preview {
  position: fixed;
  left: 0;
  top: 0;
  width: 30vw;
  max-width: 670px;
  aspect-ratio: 16/10;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.9) rotate(-1deg);
  filter: brightness(1.02) saturate(1.05) contrast(1.02);
  transition: opacity 0.25s ease;
  mix-blend-mode: multiply;
  border: 1px solid rgba(35, 44, 69, 0.35);
  border-radius: 1rem;
  padding: 7px;
  background: #fff;
}
.proj-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.35);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .proj-title,
  .proj-cta,
  .proj-preview {
    transition: none !important;
    transform: none !important;
  }
}
@keyframes shine {
  to {
    transform: translateX(120%);
  }
}
figure.proj-thumb {
  display: none;
}

@media (max-width: 720px) {
  .projects {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
  figure.proj-thumb {
    display: block !important;
  }
  .proj-row__inner {
    grid-template-columns: 64px 1fr 110px;
    grid-template-areas: "num title thumb" ".   meta  thumb";
    align-items: center;
    row-gap: 0.4rem;
    padding: 3rem 0rem;
  }
  .proj-num {
    grid-area: num;
  }
  .proj-title {
    grid-area: title;
  }
  .proj-meta {
    grid-area: meta;
    justify-self: flex-start;
  }
  button.proj-cta {
    justify-self: anchor-center;
  }
  .proj-thumb {
    grid-area: thumb;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 120px rgba(0, 0, 0, 0.35);
    transform: translateY(8px) scale(0.98);
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.7s cubic-bezier(0.22, 0.9, 0.22, 1), transform 0.7s cubic-bezier(0.22, 0.9, 0.22, 1), opacity 0.7s cubic-bezier(0.22, 0.9, 0.22, 1);
  }
  .proj-thumb img {
    display: block;
    width: 100%;
    height: 5rem;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
    filter: saturate(1.06) contrast(1.04);
  }
  .proj-row.in .proj-thumb {
    opacity: 1;
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0);
  }
  .proj-row.in .proj-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 45%, rgba(255, 255, 255, 0.55) 50%, transparent 55%);
    transform: translateX(-120%);
    pointer-events: none;
    mix-blend-mode: screen;
    animation: shine 0.8s ease-out 0.12s both;
  }
  .proj-row.in .proj-thumb img {
    transform: scale(1.02);
  }
  .proj-row:active .proj-thumb {
    transform: translateY(1px) scale(0.995);
  }
  .proj-row:active .proj-cta .arr {
    transform: translateX(3px);
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body, h1, h2, h3, h4, h5, h6, p,
ul, ol, figure, blockquote, dl, dd {
  margin: 0;
}

html {
  color-scheme: light;
}

body {
  min-height: 100%;
  background-color: #fff;
  color: #232c45;
  font-family: "Space Grotesk", system-ui;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  text-decoration-skip-ink: auto;
}
a:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.7);
}

img, picture, svg, video, canvas {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button {
  background: none;
  border: 0;
  cursor: pointer;
}
button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.7);
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

::selection {
  background: rgba(35, 44, 69, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
.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;
}

.robot-follow-layer {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: clip;
  isolation: isolate;
}
.hero .hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero .hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero .hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(111, 110, 111, 0.18);
  pointer-events: none;
}
.hero .hero__inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 90vw);
  color: #111;
}
.hero .hero__marquee {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 1rem;
}
.hero .hero__title {
  font-family: "Oswald", system-ui, system-ui;
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.02em;
}
.hero .hero__subtitle {
  margin: 0.85rem 0 0;
  font-family: "Space Grotesk", system-ui, system-ui;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  opacity: 0.9;
}
.hero .hero__cta {
  margin-top: 1.2rem;
}

.hero-headline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20em;
  pointer-events: none;
  z-index: 1;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.hero-headline__track {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: heroHeadline 40s linear infinite;
  color: #232c45;
  font-family: "Oswald", system-ui, system-ui;
  font-weight: 700;
  font-size: clamp(80px, 13vw, 220px);
  letter-spacing: 0.02em;
  line-height: 0.85;
}
.hero-headline__track span {
  margin-right: 2rem;
}

@keyframes heroHeadline {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.btn {
  --padY: .75rem;
  --padX: 1.1rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  padding: var(--padY) var(--padX);
  border: 1px solid currentColor;
  transition: transform 0.2s ease;
}
.btn .btn__inner {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: transform 0.08s ease;
}
.btn::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  left: var(--tx, 50%);
  top: var(--ty, 50%);
  transform: translate(-50%, -50%) scale(var(--scale, 0));
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
  transition: transform 0.2s ease;
  pointer-events: none;
  z-index: 1;
}
.btn.is-hovered::after {
  --scale: 1;
}
.btn:hover {
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #fff;
  font: 600 11px/1 "Space Grotesk", system-ui, system-ui;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.hero-scroll:hover {
  opacity: 1;
}

.hero-scroll__dot {
  width: 24px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.hero-scroll__dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.4s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    transform: translate(-50%, 0);
    opacity: 0.9;
  }
  70% {
    transform: translate(-50%, 16px);
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
}
.hero-scroll__label {
  opacity: 0.8;
}

@media (max-width: 600px) {
  .hero-scroll {
    bottom: 16px;
  }
  .hero-scroll__dot {
    width: 20px;
    height: 30px;
  }
}
:root {
  --marquee-fg: #EEF2F5;
  --marquee-border: rgba(238,242,245,.55);
  --marquee-bg: rgba(255,255,255,.06);
  --marquee-radius: 16px;
  --marquee-height: 44px;
  --marquee-gap: 2.2rem;
  --marquee-speed: 9s;
  --marquee-hover-speed: 6.2s;
}

.marquee-link {
  position: absolute;
  bottom: 13rem;
  right: 3rem;
  display: inline-grid;
  place-items: center;
  height: var(--marquee-height);
  padding: 0 18px;
  border-radius: var(--marquee-radius);
  border: 1px solid #232c45;
  background: var(--marquee-bg);
  color: #232c45;
  text-decoration: none;
  overflow: hidden;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) inset, 0 2px 16px rgba(0, 0, 0, 0.06);
  width: 15rem;
}

.marquee-link .marquee-track {
  display: flex;
  gap: var(--marquee-gap);
  white-space: nowrap;
  padding-inline: var(--marquee-gap);
  will-change: transform;
  animation: marquee var(--marquee-speed) linear infinite;
}

.marquee-link .marquee-track > span {
  font: 700 16px/1 "Space Grotesk", system-ui, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  letter-spacing: 0.02em;
  opacity: 0.92;
}

.marquee-link:hover .marquee-track {
  animation-duration: var(--marquee-hover-speed);
}

@media (prefers-reduced-motion: reduce) {
  .marquee-link .marquee-track {
    animation: none;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-headline__track {
    animation: none !important;
  }
  .btn, .hero-scroll {
    transition: none !important;
  }
}

/*# sourceMappingURL=main.css.map */
