:root {
  --page-x: 80px;
  --ink: #000000;
  --muted: #6b7280;
  --soft: #9ca3af;
  --blue: #0202f1;
  --font: "Elms Sans", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

@font-face {
  font-display: swap;
  font-family: "Elms Sans";
  font-style: normal;
  font-weight: 100 900;
  src: url("./assets/ElmsSans-VariableFont_wght.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Elms Sans";
  font-style: italic;
  font-weight: 100 900;
  src: url("./assets/ElmsSans-Italic-VariableFont_wght.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: var(--font);
  font-synthesis: none;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

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

button {
  color: inherit;
  font: inherit;
}

.unicorn-background {
  inset: 0;
  isolation: isolate;
  pointer-events: none !important;
  position: fixed;
  z-index: 0 !important;
}

.unicorn-background * {
  pointer-events: none !important;
  z-index: 0 !important;
}

.unicorn-scene,
.unicorn-background canvas,
.unicorn-background iframe {
  display: block;
  height: 100%;
  inset: 0;
  position: absolute !important;
  width: 100%;
  z-index: 0 !important;
}

.css-fallback-background {
  display: none;
}

body.use-css-fallback .unicorn-scene,
body.use-css-fallback .unicorn-background canvas,
body.use-css-fallback .unicorn-background iframe {
  display: none !important;
}

body.use-css-fallback .css-fallback-background {
  background:
    radial-gradient(130% 38% at 15% 0%, rgba(135, 211, 255, 0.54), rgba(255, 255, 255, 0) 58%),
    radial-gradient(120% 42% at 85% 0%, rgba(255, 178, 234, 0.52), rgba(255, 255, 255, 0) 62%),
    radial-gradient(120% 40% at 18% 100%, rgba(96, 204, 255, 0.42), rgba(255, 255, 255, 0) 60%),
    radial-gradient(130% 42% at 88% 100%, rgba(255, 168, 231, 0.45), rgba(255, 255, 255, 0) 62%),
    #ffffff;
  display: block;
  height: 100%;
  inset: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 0;
}

body.use-css-fallback .css-fallback-background::before,
body.use-css-fallback .css-fallback-background::after {
  color: rgba(255, 255, 255, 0.5);
  content: "a a a m m m a a a a m m m a a a m m m a a a a m m m a a a m m m";
  font-family: "Elms Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 650;
  left: -8%;
  letter-spacing: 7px;
  line-height: 1.58;
  pointer-events: none;
  position: absolute;
  right: -8%;
  text-align: justify;
  text-transform: lowercase;
  word-spacing: 6px;
}

body.use-css-fallback .css-fallback-background::before {
  animation: ascii-drift-top 14s linear infinite;
  height: 30%;
  opacity: 0.8;
  overflow: hidden;
  text-shadow:
    0 15px rgba(255, 255, 255, 0.42),
    0 30px rgba(255, 255, 255, 0.35),
    0 45px rgba(255, 255, 255, 0.28),
    0 60px rgba(255, 255, 255, 0.22),
    0 75px rgba(255, 255, 255, 0.16);
  top: 0;
}

body.use-css-fallback .css-fallback-background::after {
  animation: ascii-drift-bottom 16s linear infinite;
  bottom: 0;
  height: 29%;
  opacity: 0.72;
  overflow: hidden;
  text-shadow:
    0 -15px rgba(255, 255, 255, 0.42),
    0 -30px rgba(255, 255, 255, 0.35),
    0 -45px rgba(255, 255, 255, 0.28),
    0 -60px rgba(255, 255, 255, 0.22),
    0 -75px rgba(255, 255, 255, 0.16);
}

.page-shell {
  background: transparent;
  display: flex;
  flex-direction: column;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.site-header {
  align-items: center;
  display: flex;
  height: 86px;
  justify-content: space-between;
  padding: 24px var(--page-x);
  position: relative;
  width: 100%;
}

.brand {
  display: block;
  height: 15px;
  width: 34px;
}

.brand img {
  display: block;
  height: auto;
  width: 37px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 99px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 650;
  justify-content: center;
  line-height: normal;
  min-height: 38px;
  padding: 10px 18px;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.button-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  min-width: 110px;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
}

.button-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
  font-size: 16px;
  min-height: 49px;
  min-width: 141px;
  padding: 14px 28px;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.main-content {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  min-height: 0;
  padding: clamp(40px, 9vh, 100px) var(--page-x) clamp(36px, 7vh, 64px);
  width: 100%;
}

.two-column {
  align-items: flex-start;
  display: flex;
  gap: 64px;
  max-width: 1280px;
  width: 100%;
}

.hero {
  align-items: flex-start;
  display: flex;
  flex: 0 0 560px;
  flex-direction: column;
  gap: 32px;
}

.hero h1 {
  font-size: 88px;
  font-weight: 500;
  letter-spacing: -3.52px;
  line-height: 1.05;
  margin: 0;
}

.hero p {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.56px;
  line-height: 1.3;
  margin: 0;
  max-width: 448px;
}

.accordion {
  align-items: flex-start;
  display: flex;
  flex: 0 0 560px;
  flex-direction: column;
  gap: 40px;
}

.accordion-item {
  border-bottom: 1px solid var(--ink);
  padding: 24px 0;
  width: 100%;
}

.accordion-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  font-size: 20px;
  font-weight: 500;
  justify-content: space-between;
  line-height: normal;
  padding: 0;
  text-align: left;
  width: 100%;
}

.accordion-trigger:focus {
  outline: none;
}

.accordion-trigger:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

.plus {
  display: inline-flex;
  font-size: 24px;
  font-weight: 500;
  justify-content: center;
  line-height: normal;
  width: 15px;
}

.accordion-panel {
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 180ms ease, opacity 180ms ease, margin-top 180ms ease;
}

.accordion-item.is-open .accordion-panel {
  margin-top: 8px;
  opacity: 1;
}

.logo-ticker {
  align-items: center;
  display: flex;
  height: 69px;
  justify-content: flex-start;
  opacity: 0.4;
  overflow: hidden;
  flex: 0 0 69px;
  width: 100%;
}

.logo-track {
  align-items: center;
  animation: logo-slide 26s linear infinite;
  display: flex;
  min-width: max-content;
  will-change: transform;
}

.logo-ticker:hover .logo-track {
  animation-play-state: paused;
}

.logo-set {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  justify-content: space-between;
  min-width: 100vw;
  padding: 14px var(--page-x);
}

.client-logo {
  display: block;
  max-height: 24px;
  object-fit: contain;
  transform-origin: center;
}

.client-logo-krea {
  filter: brightness(0) saturate(0) opacity(0.55);
  height: 27px;
  max-height: none;
  mix-blend-mode: normal;
  width: auto;
}

@keyframes logo-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes ascii-drift-top {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-36px, 0, 0);
  }
}

@keyframes ascii-drift-bottom {
  from {
    transform: translate3d(-36px, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}


.site-footer {
  align-items: center;
  color: var(--soft);
  display: flex;
  font-size: 13px;
  font-weight: 400;
  height: 65px;
  justify-content: center;
  line-height: normal;
  padding: 24px var(--page-x);
  white-space: nowrap;
  width: 100%;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  :root {
    --page-x: 32px;
  }

  body {
    overflow: auto;
  }

  .page-shell {
    height: auto;
    min-height: 100svh;
  }

  .main-content {
    align-items: flex-start;
    min-height: auto;
    padding-top: 64px;
  }

  .two-column {
    flex-direction: column;
    gap: 72px;
  }

  .hero,
  .accordion {
    flex: 0 1 auto;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(56px, 12vw, 88px);
    letter-spacing: -2.2px;
  }

  .hero p {
    font-size: 24px;
    max-width: 560px;
  }

  .logo-ticker {
    overflow: hidden;
    scrollbar-width: none;
  }

  .logo-track {
    animation-duration: 18s;
  }

  .logo-set {
    gap: 46px;
    justify-content: flex-start;
    min-width: max-content;
  }

  .logo-ticker::-webkit-scrollbar {
    display: none;
  }

  .site-footer {
    align-items: center;
    height: auto;
    padding-bottom: 28px;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  :root {
    --page-x: 18px;
  }

  html,
  body {
    height: 100%;
    overflow: hidden;
  }

  .unicorn-background {
    overflow: hidden;
  }

  .unicorn-background canvas,
  .unicorn-background iframe {
    height: 100% !important;
    width: 100% !important;
  }

  .page-shell {
    height: 100svh;
    min-height: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 20;
  }

  .site-header,
  .main-content,
  .logo-ticker,
  .site-footer {
    opacity: 1 !important;
    position: relative;
    visibility: visible !important;
    z-index: 30;
  }

  .site-header,
  .main-content {
    display: flex !important;
    transform: translate3d(0, 0, 0);
    z-index: 40;
  }

  .site-header {
    height: 64px;
    padding-bottom: 17px;
    padding-top: 17px;
  }

  .brand {
    height: 14px;
    width: 33px;
  }

  .brand img {
    width: 35px;
  }

  .button {
    font-size: 14px;
    font-weight: 650;
    min-height: 38px;
    padding: 9px 17px;
  }

  .button-outline {
    min-width: auto;
  }

  .button-primary {
    font-size: 15px;
    min-height: 44px;
    min-width: 135px;
    padding: 12px 24px;
  }

  .main-content {
    align-items: center;
    flex: 1 1 auto;
    min-height: 0;
    padding-bottom: 8px;
    padding-top: 8px;
  }

  .two-column {
    gap: clamp(18px, 4.2svh, 28px);
  }

  .hero {
    gap: clamp(14px, 2.7svh, 18px);
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 52px);
    font-weight: 500;
    letter-spacing: -1.6px;
    line-height: 1.02;
  }

  .hero p {
    font-size: clamp(18px, 5.2vw, 21px);
    font-weight: 400;
    letter-spacing: -0.32px;
    line-height: 1.2;
    max-width: 340px;
  }

  .accordion {
    gap: clamp(6px, 1.2svh, 10px);
  }

  .accordion-item {
    padding: clamp(10px, 2svh, 14px) 0;
  }

  .accordion-trigger {
    font-size: clamp(17px, 4.8vw, 18px);
    font-weight: 500;
  }

  .plus {
    font-size: 22px;
    font-weight: 500;
  }

  .accordion-panel {
    font-size: 14px;
    line-height: 1.35;
  }

  .logo-ticker {
    flex-basis: 44px;
    height: 44px;
  }

  .logo-track {
    animation-duration: 16s;
  }

  .logo-set {
    gap: 40px;
    padding-bottom: 9px;
    padding-top: 9px;
  }

  .client-logo {
    max-height: 20px;
  }

  .client-logo-krea {
    height: 23px;
  }

  .site-footer {
    flex: 0 0 34px;
    font-size: 12px;
    height: 34px;
    padding: 8px var(--page-x) 14px;
    white-space: nowrap;
  }
}
