:root {
  --bg: #050506;
  --text: #f4f4f3;
  --muted: #a3a3aa;
  --line: #282830;
  --accent: #ff7d2f;
  --accent-2: #ff5d46;
  --screen-offset-x: clamp(1rem, 2.78vw, 2.5rem);
  --screen-header-height: 4rem;
  --screen-wrapper-max: 3840px;
}

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

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 125, 47, 0.16), transparent 30vw),
    radial-gradient(circle at 20% 80%, rgba(255, 93, 70, 0.08), transparent 26vw),
    #050505;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1400;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #050506;
  font-weight: 700;
}

.skip-link:focus-visible {
  left: 1rem;
  top: 1rem;
}

#transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  background: var(--bg);
  pointer-events: none;
}

.loader {
  width: min(340px, 75vw);
  display: grid;
  gap: 1.2rem;
}

#loader-number {
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
}

.loader-track {
  height: 2px;
  background: #1d1d22;
  overflow: hidden;
}

#loader-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0.02);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--screen-header-height);
  background: transparent;
}

.site-header .header-inner {
  width: 100%;
  max-width: var(--screen-wrapper-max);
  min-height: var(--screen-header-height);
  margin: 0 auto;
  padding-inline: var(--screen-offset-x);
  display: grid;
  grid-template-columns: minmax(9rem, 24vw) 1fr minmax(9rem, 24vw);
  align-items: center;
  gap: 1rem;
}

.brand {
  width: max-content;
}

.brand img {
  width: clamp(7.5rem, 10.2vw, 11rem);
  opacity: 0.94;
}

.main-nav,
.header-social {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.35vw, 2rem);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.73rem, 0.68rem + 0.14vw, 0.84rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  justify-content: center;
}

.header-social {
  justify-content: flex-end;
}

.site-header a {
  position: relative;
  transition: color 0.28s cubic-bezier(0.25, 0.25, 0, 1);
}

.site-header a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.38s cubic-bezier(0.25, 0.25, 0, 1);
}

.site-header a:hover,
.site-header a:focus-visible,
.site-header a.is-active {
  color: #ffffff;
}

.site-header a:hover::after,
.site-header a:focus-visible::after,
.site-header a.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.brand::after {
  display: none;
}

.screen-deck {
  position: relative;
  height: 100dvh;
  min-height: 100dvh;
  padding: 0;
  overflow: hidden;
  background: #050505;
}

.screen {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(0.992);
  transition:
    opacity 0.65s cubic-bezier(0.25, 0.25, 0, 1),
    transform 0.85s cubic-bezier(0.19, 1, 0.22, 1);
}

.screen.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.screen-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--screen-wrapper-max);
  height: 100%;
  margin: 0 auto;
  padding: calc(var(--screen-header-height) + 1rem) var(--screen-offset-x) var(--screen-offset-x);
}

.hero-screen {
  color: #ffffff;
  background: #050505;
}

.hero-field,
.hero-noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-field {
  z-index: 0;
  display: block;
  pointer-events: auto;
}

.hero-noise {
  z-index: 1;
  opacity: 0.52;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.027) 1px, transparent 1px),
    radial-gradient(circle at 52% 40%, transparent 0 24%, rgba(5, 5, 5, 0.5) 67%, #050505 100%);
  background-size: 8.333vw 100%, 100% 11.111vh, auto;
  mix-blend-mode: screen;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  column-gap: 1rem;
  row-gap: 2rem;
}

.hero-info {
  align-self: start;
  padding-top: clamp(1rem, 11vh, 7.5rem);
}

.hero-info-left {
  grid-column: 1 / 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 1.8rem);
}

.hero-kicker,
.section-marker {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(0.78rem, 0.74rem + 0.16vw, 0.95rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.88rem, 0.82rem + 0.28vw, 1.15rem);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: min(100%, 25.5rem);
}

.hero-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.75rem;
  min-height: 3rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: Sora, Manrope, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    border-color 0.24s ease,
    background-color 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease;
}

.hero-link::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.72rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  opacity: 0.74;
  transform: rotate(45deg);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.hero-link:hover::after,
.hero-link:focus-visible::after {
  opacity: 1;
  transform: translateX(2px) rotate(45deg);
}

.hero-link:hover,
.hero-link:focus-visible {
  border-color: rgba(255, 113, 43, 0.72);
  background: rgba(255, 113, 43, 0.12);
  color: #ffffff;
  transform: translateY(-1px);
}

.hero-link:focus-visible {
  outline: 2px solid rgba(255, 113, 43, 0.46);
  outline-offset: 4px;
}

.hero-link:active {
  transform: translateY(0);
}

.hero-link-muted {
  background: rgba(5, 5, 5, 0.36);
  color: rgba(255, 255, 255, 0.82);
}

.hero-link:not(.hero-link-muted) {
  border-color: rgba(255, 113, 43, 0.58);
  background: #ff712b;
  color: #130b07;
  box-shadow: 0 1rem 2.8rem rgba(255, 113, 43, 0.18);
}

.hero-link:not(.hero-link-muted):hover,
.hero-link:not(.hero-link-muted):focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: #ff8a42;
  color: #100804;
}

.hero-display {
  grid-column: 1 / 13;
  grid-row: 3;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 0.08em;
  margin: 0;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(3.2rem, 5.3vw, 6.9rem);
  font-weight: 800;
  line-height: 0.84;
  text-transform: uppercase;
}

.hero-display-line {
  display: flex;
  justify-content: space-between;
  gap: 0.22em;
  width: 100%;
  overflow: clip;
}

.hero-display-line > span {
  display: inline-block;
  transform: translateY(112%);
}

.hero-display-outline {
  margin-left: -0.07em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.94);
  font-size: 1.92em;
  user-select: none;
}

.js-clip {
  opacity: 0;
  transform: translateY(1.2rem);
}

.js-ready .screen.is-active .js-clip {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.25, 0, 1),
    transform 0.7s cubic-bezier(0.25, 0.25, 0, 1);
}

.js-ready .screen.is-active .hero-display-line > span {
  transform: translateY(0);
  transition: transform 0.72s cubic-bezier(0.65, 0, 0.35, 1);
}

.js-ready .screen.is-active .hero-display-line:nth-child(1) > span {
  transition-delay: 0.05s;
}

.js-ready .screen.is-active .hero-display-line:nth-child(2) > span:nth-child(1) {
  transition-delay: 0.16s;
}

.js-ready .screen.is-active .hero-display-line:nth-child(2) > span:nth-child(2) {
  transition-delay: 0.25s;
}

.solutions-screen {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 82% 24%, rgba(255, 125, 47, 0.2), transparent 28vw),
    #050505;
  background-size: 8.333vw 100%, auto, auto;
}

.solutions-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.solutions-field span {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(-8deg);
}

.solutions-field span:nth-child(1) {
  width: 28vw;
  aspect-ratio: 1.35;
  right: 11vw;
  top: 16vh;
  border-color: rgba(255, 125, 47, 0.34);
}

.solutions-field span:nth-child(2) {
  width: 18vw;
  aspect-ratio: 1;
  right: 28vw;
  bottom: 13vh;
}

.solutions-field span:nth-child(3) {
  width: 42vw;
  aspect-ratio: 1.9;
  left: -12vw;
  bottom: -8vh;
  border-color: rgba(255, 255, 255, 0.06);
}

.solutions-content {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 1fr;
  align-items: center;
  column-gap: 1rem;
  row-gap: 2rem;
}

.solutions-intro {
  grid-column: 1 / 8;
  grid-row: 1;
  align-self: center;
}

.solutions-title {
  max-width: 9.6ch;
  margin: clamp(1rem, 2vw, 1.5rem) 0 0;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(3rem, 5vw, 6.2rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.solutions-list {
  grid-column: 7 / 13;
  grid-row: 1;
  align-self: center;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.solution-item {
  display: grid;
  grid-template-columns: minmax(2.8rem, 0.5fr) minmax(8rem, 1.25fr) minmax(12rem, 2fr);
  gap: 1rem;
  align-items: baseline;
  padding: clamp(1rem, 2vh, 1.45rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.solution-item span,
.solution-item strong {
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(0.78rem, 0.72rem + 0.18vw, 0.94rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.solution-item span {
  color: var(--accent);
}

.solution-item em {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.86rem, 0.78rem + 0.2vw, 1rem);
  font-style: normal;
  line-height: 1.35;
}

.solutions-note {
  position: absolute;
  left: var(--screen-offset-x);
  bottom: var(--screen-offset-x);
  width: min(35ch, calc(100vw - var(--screen-offset-x) * 2));
  max-width: 35ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(0.9rem, 0.82rem + 0.22vw, 1.05rem);
  line-height: 1.38;
}

.project-rotonde-section,
.project-rotonde {
  width: 100%;
  min-height: 100dvh;
  background: #050505;
  overflow: hidden;
}

.screen.project-rotonde-section {
  transform: translate3d(0, 0, 0);
}

.project-rotonde {
  position: relative;
  height: 100dvh;
  min-height: 640px;
}

.rotonde-stage,
.rotonde-overlay {
  position: absolute;
  inset: 0;
}

.rotonde-stage {
  z-index: 1;
  pointer-events: auto;
}

.rotonde-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
  cursor: grab;
}

.rotonde-stage canvas[data-dragging="true"] {
  cursor: grabbing;
}

.rotonde-project-copy {
  position: absolute;
  z-index: 7;
  top: clamp(7.5rem, 18vh, 10.75rem);
  left: clamp(1.25rem, 8vw, 5.5rem);
  width: min(34rem, calc(100% - 2.5rem));
  color: #fff;
  pointer-events: none;
  text-align: left;
}

.rotonde-project-category,
.rotonde-project-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.66rem, 1.1vw, 0.78rem);
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rotonde-project-title {
  max-width: 18ch;
  margin: 0.35rem 0 0.5rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.2vw, 4.75rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  text-align: left;
  text-wrap: balance;
}

.rotonde-project-meta {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.5);
}

.rotonde-project-action {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: clamp(8rem, 17vh, 9.75rem);
  transform: translateX(-50%);
  pointer-events: auto;
}

.rotonde-visit-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.25rem;
  height: 2.35rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.34);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    border-color 0.24s ease,
    background-color 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease;
}

.rotonde-visit-link::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.68rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.72;
}

.rotonde-visit-link:hover,
.rotonde-visit-link:focus-visible {
  border-color: rgba(255, 113, 43, 0.68);
  background: rgba(255, 113, 43, 0.12);
  color: #fff;
  transform: translateY(-1px);
}

.rotonde-visit-link:focus-visible {
  outline: 2px solid rgba(255, 113, 43, 0.46);
  outline-offset: 4px;
}

.rotonde-visit-link:active {
  transform: translateY(0);
}

.rotonde-overlay {
  z-index: 8;
  pointer-events: none;
}

.rotonde-index {
  position: absolute;
  top: calc(72px + 2.5rem);
  left: clamp(1.25rem, 2vw, 2rem);
  margin: 0;
  color: #fff;
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rotonde-hint {
  position: absolute;
  left: 50%;
  bottom: calc(4rem + 22px);
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateX(-50%);
  transition:
    opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.rotonde-hint[data-hidden="true"] {
  opacity: 0;
  transform: translate(-50%, 6px);
}

.rotonde-hint-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: rotonde-hint-pulse 1.8s ease-in-out infinite;
}

.rotonde-hint-text {
  color: #888;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes rotonde-hint-pulse {
  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }
}

.rotonde-progress {
  position: absolute;
  left: 50%;
  bottom: 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateX(-50%);
}

.rotonde-progress li {
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  transition:
    width 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    height 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rotonde-progress li[data-active="true"] {
  width: 56px;
  height: 2px;
  background: #fff;
}

@media (max-width: 1024px) {
  :root {
    --screen-header-height: 3.5rem;
  }

  .site-header .header-inner {
    grid-template-columns: minmax(7.8rem, 1fr) auto minmax(4.2rem, 1fr);
  }

  .header-social a:first-child {
    display: none;
  }

  .hero-info-left {
    grid-column: 1 / 7;
  }

  .hero-display {
    font-size: clamp(3rem, 7.4vw, 5.8rem);
  }

  .solutions-intro {
    grid-column: 1 / 10;
  }

  .solutions-list {
    grid-column: 5 / 13;
  }
}

@media (max-width: 767px) {
  :root {
    --screen-offset-x: 1rem;
    --screen-header-height: 3.75rem;
  }

  .site-header .header-inner {
    grid-template-columns: 1fr auto;
    gap: 0.8rem;
  }

  .brand img {
    width: 7.5rem;
  }

  .main-nav {
    justify-content: flex-end;
    gap: 0.75rem;
    font-size: 0.68rem;
  }

  .header-social {
    display: none;
  }

  .screen-wrapper {
    padding-top: calc(var(--screen-header-height) + 0.6rem);
  }

  .hero-noise {
    background-size: 25vw 100%, 100% 12vh, auto;
  }

  .hero-content {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: auto auto 1fr;
    row-gap: 1.35rem;
  }

  .hero-info {
    padding-top: 0.4rem;
  }

  .hero-info-left,
  .hero-display,
  .solutions-intro,
  .solutions-list,
  .solutions-note {
    grid-column: 1 / 7;
  }

  .hero-copy {
    max-width: 31ch;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.55rem;
    padding-top: 0.1rem;
  }

  .hero-link {
    min-width: 0;
    min-height: 2.85rem;
    padding: 0 0.78rem;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .hero-link::after {
    width: 0.38rem;
    height: 0.38rem;
    margin-left: 0.42rem;
  }

  .hero-display {
    grid-row: 3;
    font-size: clamp(2.2rem, 11vw, 3.9rem);
    line-height: 0.9;
  }

  .hero-display-line {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.04em;
  }

  .hero-display-outline {
    font-size: 1.45em;
  }

  .solutions-content {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: auto 1fr auto;
    align-items: stretch;
  }

  .solutions-intro {
    grid-row: auto;
    align-self: start;
    padding-top: 0.8rem;
  }

  .solutions-title {
    max-width: 12.5ch;
    font-size: clamp(1.9rem, 9.5vw, 3.25rem);
    line-height: 0.88;
  }

  .solutions-list {
    grid-row: auto;
    align-self: center;
  }

  .solution-item {
    grid-template-columns: 2.4rem 1fr;
    gap: 0.45rem 0.8rem;
    padding: 0.72rem 0;
  }

  .solution-item em {
    grid-column: 2;
    font-size: 0.78rem;
  }

  .solutions-note {
    position: static;
    grid-row: auto;
    font-size: 0.8rem;
  }

  .rotonde-index {
    top: calc(64px + 1.5rem);
  }

  .rotonde-project-copy {
    top: calc(64px + 4.25rem);
    left: clamp(1rem, 5vw, 2rem);
    width: min(30rem, calc(100% - 2rem));
  }

  .rotonde-project-title {
    font-size: clamp(1.8rem, 6.5vw, 3rem);
    line-height: 0.98;
  }

  .rotonde-project-action {
    bottom: calc(2.5rem + 64px);
  }

  .rotonde-visit-link {
    height: 2.2rem;
    min-width: 5.8rem;
    padding-inline: 1.1rem;
    font-size: 0.62rem;
  }

  .project-rotonde {
    min-height: 560px;
  }

  .rotonde-hint {
    bottom: calc(2.5rem + 22px);
  }

  .rotonde-progress {
    bottom: 2.5rem;
    gap: 0.7rem;
  }

  .rotonde-progress li {
    width: 28px;
  }

  .rotonde-progress li[data-active="true"] {
    width: 38px;
  }
}

@media (max-width: 430px) {
  .main-nav {
    gap: 0.55rem;
    font-size: 0.62rem;
  }

  .rotonde-project-copy {
    top: calc(64px + 4rem);
  }

  .rotonde-project-title {
    max-width: 15ch;
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .rotonde-project-action {
    bottom: calc(2.4rem + 58px);
  }

  .brand img {
    width: 6.85rem;
  }

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

  .hero-link {
    width: 100%;
    min-height: 2.75rem;
    padding-inline: 0.65rem;
    font-size: 0.65rem;
    letter-spacing: 0.045em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .screen,
  .site-header a,
  .site-header a::after,
  .hero-link::after,
  .js-ready .screen.is-active .js-clip,
  .js-ready .screen.is-active .hero-display-line > span,
  .rotonde-hint,
  .rotonde-progress li {
    transition: none;
  }

  .js-clip,
  .hero-display-line > span {
    opacity: 1;
    transform: none;
  }

  .rotonde-hint-dot {
    animation: none;
  }
}
