:root {
  --navy: #f2efe8;
  --navy-soft: #e6e3dc;
  --pink: #d34d9f;
  --paper: #08090c;
  --line: rgba(242, 239, 232, 0.2);
  --toggle-background: rgba(242, 239, 232, 0.04);
  --toggle-hover: rgba(242, 239, 232, 0.1);
  --content-width: 620px;
  --canvas-shift-y: 94px;
  color-scheme: dark;
}

:root[data-theme="light"] {
  --navy: #100b39;
  --navy-soft: #36314f;
  --paper: #f7f6f2;
  --line: rgba(16, 11, 57, 0.18);
  --toggle-background: rgba(16, 11, 57, 0.03);
  --toggle-hover: rgba(16, 11, 57, 0.08);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: "Geist", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.theme-filter-definitions {
  overflow: hidden;
  position: absolute;
}

.theme-toggle {
  align-items: center;
  appearance: none;
  background: var(--toggle-background);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  cursor: pointer;
  display: none;
  height: 36px;
  justify-content: center;
  padding: 0;
  position: fixed;
  right: 20px;
  top: 20px;
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    color 140ms ease;
  width: 36px;
  z-index: 10;
}

.theme-controls-enabled .theme-toggle {
  display: flex;
}

.theme-toggle:hover {
  background: var(--toggle-hover);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

.theme-icon {
  fill: none;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 17px;
}

.theme-icon-sun,
:root[data-theme="light"] .theme-icon-moon {
  display: none;
}

:root[data-theme="light"] .theme-icon-sun {
  display: block;
}

.site-shell {
  display: flex;
  min-height: 100svh;
  padding: calc(22px + var(--canvas-shift-y)) 34px 36px;
}

.landing {
  margin: 0 auto;
  max-width: 980px;
  padding: 0;
  width: 100%;
}

.brand-frame {
  margin: 0 auto 28px;
  max-width: 493px;
  width: 70.4%;
}

.brand-banner {
  align-items: flex-start;
  animation: logo-signal-jolt 200ms ease-out 1 both;
  display: flex;
  position: relative;
  right: 11.2%;
  width: 100%;
}

@keyframes logo-signal-jolt {
  0% {
    transform: translateX(-2px);
  }

  14% {
    transform: translateX(2px);
  }

  28% {
    transform: translateX(-1.5px);
  }

  42% {
    transform: translateX(1px);
  }

  58% {
    transform: translateX(-0.5px);
  }

  72%,
  100% {
    transform: translateX(0);
  }
}

@keyframes ghost-signal-lock {
  0% {
    filter:
      grayscale(1)
      contrast(1.5)
      blur(1.2px)
      drop-shadow(-6px 0 rgba(211, 77, 159, 0.5))
      drop-shadow(6px 0 rgba(16, 11, 57, 0.34));
    opacity: 0.36;
  }

  24% {
    filter:
      grayscale(0.8)
      contrast(1.4)
      blur(0.9px)
      drop-shadow(-4px 0 rgba(211, 77, 159, 0.42))
      drop-shadow(4px 0 rgba(16, 11, 57, 0.3));
    opacity: 0.56;
  }

  48% {
    filter:
      grayscale(0.28)
      contrast(1.25)
      blur(0.55px)
      drop-shadow(-3px 0 rgba(211, 77, 159, 0.32))
      drop-shadow(3px 0 rgba(16, 11, 57, 0.24));
    opacity: 0.76;
  }

  68% {
    filter:
      grayscale(0)
      contrast(1.08)
      blur(0.2px)
      drop-shadow(-1px 0 rgba(211, 77, 159, 0.2))
      drop-shadow(1px 0 rgba(16, 11, 57, 0.16));
    opacity: 0.94;
  }

  80%,
  100% {
    filter: none;
    opacity: 1;
  }
}

.brand-graphic,
.brand-wordmark {
  display: block;
  filter: url("#logo-dark-palette");
  overflow: hidden;
}

:root[data-theme="light"] .brand-graphic,
:root[data-theme="light"] .brand-wordmark {
  filter: none;
}

.brand-graphic {
  aspect-ratio: 128 / 173;
  clip-path: polygon(0 0, 19% 0, 55% 69%, 100% 100%, 0 100%);
  flex: 0 0 22.4%;
  mix-blend-mode: normal;
}

.brand-wordmark {
  aspect-ratio: 520 / 195;
  flex: 0 0 77.6%;
}

.brand-banner img {
  animation: ghost-signal-lock 1600ms ease-out 1 both;
  display: block;
  height: auto;
  max-width: none;
  mix-blend-mode: normal;
  user-select: none;
}

.brand-graphic img {
  mix-blend-mode: normal;
  width: 272%;
}

.brand-wordmark img {
  transform: translate(-20.73%, -27.79%);
  width: 163.3%;
}

.capability-line {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0 auto 18px;
  max-width: var(--content-width);
  padding: 0;
  width: 100%;
}

.capability-line li {
  color: var(--navy-soft);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
  white-space: nowrap;
}

.capability-line li:not(:last-child)::after {
  color: var(--pink);
  content: "/";
  font-size: 15px;
  margin: 0 14px;
}

p {
  margin-top: 0;
}

.accent-punctuation {
  color: var(--pink);
}

.introduction {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin: 0 auto;
  max-width: var(--content-width);
  padding: 32px 0;
  width: 100%;
}

.hero-title,
.hero-description {
  margin: 0 auto;
  max-width: var(--content-width);
}

.hero-title {
  color: var(--navy);
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 13px;
}

.hero-description {
  color: var(--navy-soft);
  font-size: 16px;
  line-height: 1.55;
}

.audience {
  color: var(--navy-soft);
  font-size: 13px;
  line-height: 1.5;
  margin: 18px auto 0;
  max-width: var(--content-width);
}

.contact {
  margin: 0 auto;
  max-width: var(--content-width);
  padding-top: 22px;
  width: 100%;
}

.contact-prompt {
  color: var(--navy-soft);
  font-size: 15px;
  margin: 0;
}

.contact-prompt a {
  color: var(--navy);
  font-weight: 650;
  text-decoration: none;
  text-underline-offset: 3px;
}

.contact-prompt a:hover,
.contact-prompt a:focus-visible {
  text-decoration: underline;
}

@media (min-width: 1200px) and (min-height: 721px) {
  :root {
    --content-width: 1085px;
    --canvas-shift-y: 53px;
  }

  .site-shell {
    padding-bottom: 63px;
    padding-left: 59.5px;
    padding-right: 59.5px;
  }

  .landing {
    max-width: 1715px;
  }

  .brand-frame {
    margin-bottom: 49px;
    max-width: 750.75px;
  }

  .capability-line {
    margin-bottom: 31.5px;
  }

  .capability-line li {
    font-size: 21px;
  }

  .capability-line li:not(:last-child)::after {
    font-size: 26.25px;
    margin: 0 24.5px;
  }

  .introduction {
    border-bottom-width: 1.5px;
    border-top-width: 1.5px;
    padding: 45.5px 0;
  }

  .hero-title {
    font-size: 38.5px;
    margin-bottom: 22.75px;
  }

  .hero-description {
    font-size: 28px;
  }

  .audience {
    font-size: 22.75px;
    margin-top: 31.5px;
  }

  .contact {
    padding-top: 38.5px;
  }

  .contact-prompt {
    font-size: 26.25px;
  }

  .contact-prompt a {
    text-underline-offset: 5.25px;
  }
}

@media (max-width: 720px) {
  :root {
    --canvas-shift-y: 83px;
  }

  .site-shell {
    padding: calc(14px + var(--canvas-shift-y)) 22px 32px;
  }

  .theme-toggle {
    right: 14px;
    top: 14px;
  }

  .brand-frame {
    margin-bottom: 24px;
    width: 63.4%;
  }

  .capability-line {
    gap: 7px 0;
  }

  .capability-line li {
    font-size: 11px;
  }

  .capability-line li:not(:last-child)::after {
    margin: 0 9px;
  }

  .introduction {
    padding: 26px 0;
  }

  .hero-title {
    font-size: 20px;
  }
}

@media (max-height: 720px) and (min-width: 721px) {
  .brand-frame {
    max-width: 429px;
  }

  .introduction {
    padding-bottom: 26px;
    padding-top: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-banner,
  .brand-banner img {
    animation: none;
  }

  .theme-toggle {
    transition: none;
  }
}
