:root {
  --black: #f1eadc;
  --paper: #181613;
  --paper-muted: rgba(24, 22, 19, 0.72);
  --line: rgba(24, 22, 19, 0.22);
  --edge: clamp(1rem, 3vw, 2.5rem);
  --logo-size: clamp(6.75rem, 9.75vw, 8.5rem);
  --nav-font-size: 1.08rem;
  --mode-bg: #f1eadc;
  --mode-text: rgba(26, 23, 20, 0.84);
  --mode-strong: rgba(18, 17, 15, 0.94);
  --mode-muted: rgba(38, 33, 29, 0.62);
  --mode-line: rgba(26, 23, 20, 0.38);
  --mode-shadow: 0 1px 0 rgba(241, 234, 220, 0.22);
  --hero-image: url("hero_light.png");
  --scroll-image: url("scroll_light.png");
  color-scheme: light;
}

html[data-theme="light"] {
  --black: #f1eadc;
  --paper: #181613;
  --paper-muted: rgba(24, 22, 19, 0.72);
  --line: rgba(24, 22, 19, 0.22);
  --mode-bg: #f1eadc;
  --mode-text: rgba(26, 23, 20, 0.84);
  --mode-strong: rgba(18, 17, 15, 0.94);
  --mode-muted: rgba(38, 33, 29, 0.62);
  --mode-line: rgba(26, 23, 20, 0.38);
  --mode-shadow: 0 1px 0 rgba(241, 234, 220, 0.22);
  --hero-image: url("hero_light.png");
  --scroll-image: url("scroll_light.png");
  color-scheme: light;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --black: #f1eadc;
    --paper: #181613;
    --paper-muted: rgba(24, 22, 19, 0.72);
    --line: rgba(24, 22, 19, 0.22);
    --mode-bg: #f1eadc;
    --mode-text: rgba(26, 23, 20, 0.84);
    --mode-strong: rgba(18, 17, 15, 0.94);
    --mode-muted: rgba(38, 33, 29, 0.62);
    --mode-line: rgba(26, 23, 20, 0.38);
    --mode-shadow: 0 1px 0 rgba(241, 234, 220, 0.22);
    --hero-image: url("hero_light.png");
    --scroll-image: url("scroll_light.png");
    color-scheme: light;
  }
}

html[data-theme="dark"] {
  --black: #050607;
  --paper: #f1eadc;
  --paper-muted: rgba(241, 234, 220, 0.84);
  --line: rgba(241, 234, 220, 0.34);
  --mode-bg: #050607;
  --mode-text: rgba(252, 247, 235, 0.9);
  --mode-strong: rgba(252, 247, 235, 0.98);
  --mode-muted: rgba(252, 247, 235, 0.74);
  --mode-line: rgba(252, 247, 235, 0.4);
  --mode-shadow: 0 1px 0 rgba(5, 6, 7, 0.48), 0 0 12px rgba(5, 6, 7, 0.34);
  --hero-image: url("hero.png");
  --scroll-image: url("scroll_black.png");
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--mode-text);
  background: var(--mode-bg);
  font-family: Avenir, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

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

.page {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 2.5rem);
}

.texture,
.shade {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.texture {
  z-index: 0;
  background-color: var(--mode-bg);
  background-image:
    linear-gradient(180deg, transparent 0, transparent 52rem, var(--mode-bg) 82rem),
    var(--scroll-image);
  background-attachment: fixed, fixed;
  background-position: center top, center top;
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% auto;
}

.home-texture {
  background-color: var(--mode-bg);
  background-image: var(--hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.38), rgba(5, 6, 7, 0.02) 46%, rgba(5, 6, 7, 0.24)),
    linear-gradient(180deg, rgba(5, 6, 7, 0.04), rgba(5, 6, 7, 0.3));
}

.home-shade {
  background: none;
}

.intro,
.contact,
.menu,
.logo {
  position: relative;
  z-index: 2;
}

.menu,
.logo {
  z-index: 3;
}

.logo {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  width: var(--logo-size);
  height: var(--logo-size);
  opacity: 0.9;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu {
  position: absolute;
  top: var(--edge);
  right: calc(var(--edge) + 3.9rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.25rem;
}

.menu a {
  color: var(--paper-muted);
  font-size: var(--nav-font-size);
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 0.22rem;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--paper);
  text-decoration-color: var(--paper);
}

.theme-toggle {
  position: fixed;
  top: var(--edge);
  right: var(--edge);
  z-index: 100;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 1.24rem;
  padding: 0;
  color: var(--paper-muted);
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0.95;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--paper);
  opacity: 1;
}

.theme-toggle:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.22rem;
}

.theme-toggle-track {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.theme-toggle-thumb {
  position: absolute;
  top: 50%;
  left: 0.16rem;
  display: block;
  width: 0.72rem;
  height: 0.72rem;
  background: currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 160ms ease;
}

html[data-theme="light"] .theme-toggle-thumb {
  transform: translate(1.18rem, -50%);
}

.intro {
  align-self: start;
  justify-self: start;
  width: min(820px, calc(100vw - 3rem));
  margin-top: min(32vh, 21rem);
  margin-left: clamp(7.75rem, 15.5vw, 14rem);
  text-align: left;
}

.home-page h1 {
  color: rgba(241, 234, 220, 0.92);
  text-shadow:
    0 1px 0 rgba(5, 6, 7, 0.42),
    0 0 24px rgba(5, 6, 7, 0.45);
}

.home-page .line,
.home-page .hero-actions {
  color: rgba(241, 234, 220, 0.82);
  text-shadow:
    0 1px 0 rgba(5, 6, 7, 0.44),
    0 0 18px rgba(5, 6, 7, 0.38);
}

.home-page .try-eve,
.home-page .watch-demo {
  text-decoration-color: rgba(241, 234, 220, 0.42);
}

.home-page .try-eve::after {
  color: rgba(241, 234, 220, 0.42);
}

.home-page .try-eve:hover,
.home-page .try-eve:focus-visible,
.home-page .watch-demo:hover,
.home-page .watch-demo:focus-visible {
  color: rgba(241, 234, 220, 0.96);
  text-decoration-color: rgba(241, 234, 220, 0.72);
}

.blog-page,
.news-page {
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
}

.careers-page {
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
}

.blog-page .texture,
.careers-page .texture,
.news-page .texture,
.technology-page .texture,
.team-page .texture {
  position: fixed;
}

.blog-texture {
  background-color: var(--mode-bg);
}

.news-texture {
  background-color: var(--mode-bg);
}

.careers-texture {
  background-color: var(--mode-bg);
}

.blog-shade,
.news-shade {
  background: none;
}

.careers-shade {
  background: none;
}

.careers-intro {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: start;
  width: min(760px, calc(100vw - 3rem));
  margin-left: clamp(6.25rem, 13.5vw, 12rem);
  padding-top: clamp(4rem, 10vh, 7rem);
  padding-bottom: clamp(5rem, 12vh, 8rem);
  text-align: left;
}

.careers-page .contact {
  color: rgba(24, 22, 19, 0.92);
  border-color: rgba(24, 22, 19, 0.38);
}

.careers-page .contact:hover,
.careers-page .contact:focus-visible {
  color: rgba(18, 17, 15, 0.98);
  border-color: rgba(18, 17, 15, 0.72);
}

.blog-intro,
.news-intro {
  position: relative;
  z-index: 2;
  align-self: start;
  justify-self: start;
  width: min(1180px, calc(100vw - 3rem));
  margin-left: clamp(6.25rem, 13.5vw, 12rem);
  padding-top: clamp(4rem, 10vh, 7rem);
  padding-bottom: clamp(3rem, 8vh, 6rem);
  text-align: left;
}

.news-intro {
  padding-top: clamp(8rem, 16vh, 11rem);
}

.news-intro .kicker {
  margin: 0 0 0.85rem;
  color: rgba(38, 33, 29, 0.62);
  font-size: clamp(0.82rem, 0.9vw, 0.96rem);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 1px 0 rgba(241, 234, 220, 0.2);
  text-transform: uppercase;
}

.blog-intro .line {
  max-width: 920px;
  font-size: clamp(1.22rem, 1.65vw, 1.72rem);
  line-height: 1.18;
}

.news-copy {
  margin: 0;
  max-width: 760px;
  color: rgba(26, 23, 20, 0.86);
  font-size: clamp(1.08rem, 1.38vw, 1.36rem);
  font-weight: 700;
  line-height: 1.32;
  text-shadow: 0 1px 0 rgba(241, 234, 220, 0.22);
}

.blog-grid,
.news-grid {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin-top: clamp(1.4rem, 3vh, 2.2rem);
  color: rgba(26, 23, 20, 0.88);
  text-shadow: 0 1px 0 rgba(241, 234, 220, 0.2);
}

.news-grid {
  max-width: 900px;
  margin-top: clamp(2rem, 5vh, 3.4rem);
}

.blog-row,
.news-row {
  margin: 0;
  padding: clamp(1.25rem, 2.2vw, 1.8rem) 0;
  border-top: 1px solid rgba(26, 23, 20, 0.36);
  background: none;
  border-radius: 0;
}

.blog-row:last-child,
.news-row:last-child {
  border-bottom: 1px solid rgba(26, 23, 20, 0.36);
}

.news-row-featured {
  padding-top: clamp(1.45rem, 2.6vw, 2rem);
  padding-bottom: clamp(1.45rem, 2.6vw, 2rem);
}

.blog-row-featured {
  padding-top: clamp(1.45rem, 2.6vw, 2rem);
  padding-bottom: clamp(1.45rem, 2.6vw, 2rem);
}

.blog-meta,
.news-meta {
  margin: 0 0 0.35rem;
  color: rgba(38, 33, 29, 0.62);
  font-size: clamp(0.78rem, 0.84vw, 0.9rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-row h2,
.news-row h2 {
  margin: 0;
  color: rgba(18, 17, 15, 0.92);
  font-size: clamp(1.06rem, 1.3vw, 1.34rem);
  font-weight: 700;
  line-height: 1.18;
}

.news-row-featured h2 {
  font-size: clamp(1.38rem, 2.1vw, 2.18rem);
  font-weight: 400;
  line-height: 1;
}

.blog-row-featured h2 {
  font-size: clamp(1.38rem, 2.1vw, 2.18rem);
  font-weight: 400;
  line-height: 1;
}

.blog-row p:last-child,
.news-row p:last-child {
  margin: 0.6rem 0 0;
  color: rgba(26, 23, 20, 0.78);
  font-size: clamp(0.96rem, 1.04vw, 1.08rem);
  font-weight: 700;
  line-height: 1.35;
}

.blog-row a,
.news-row a {
  color: rgba(18, 17, 15, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(18, 17, 15, 0.38);
  text-underline-offset: 0.2rem;
}

.blog-row a:hover,
.blog-row a:focus-visible,
.news-row a:hover,
.news-row a:focus-visible {
  color: rgba(18, 17, 15, 1);
  text-decoration-color: rgba(18, 17, 15, 0.8);
}

.article-content {
  position: relative;
  z-index: 2;
  align-self: start;
  justify-self: start;
  width: min(980px, calc(100vw - 3rem));
  margin-left: clamp(6.25rem, 13.5vw, 12rem);
  padding-top: clamp(8rem, 16vh, 11rem);
  padding-bottom: clamp(4rem, 10vh, 7rem);
  color: rgba(26, 23, 20, 0.86);
  text-align: left;
  text-shadow: 0 1px 0 rgba(241, 234, 220, 0.22);
}

.article-back {
  display: inline-block;
  margin-bottom: clamp(1.5rem, 3vh, 2.2rem);
  color: rgba(38, 33, 29, 0.68);
  font-size: clamp(0.8rem, 0.86vw, 0.92rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: underline;
  text-decoration-color: rgba(38, 33, 29, 0.36);
  text-underline-offset: 0.22rem;
  text-transform: uppercase;
}

.article-back:hover,
.article-back:focus-visible {
  color: rgba(18, 17, 15, 0.96);
  text-decoration-color: rgba(18, 17, 15, 0.76);
}

.article-kicker {
  margin: 0 0 0.72rem;
  color: rgba(38, 33, 29, 0.62);
  font-size: clamp(0.82rem, 0.9vw, 0.96rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.article-title {
  margin: 0;
  max-width: 940px;
  color: rgba(18, 17, 15, 0.92);
  font-size: clamp(3.25rem, 5.4vw, 6rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.article-dek {
  margin: clamp(1.15rem, 2.5vh, 1.8rem) 0 0;
  max-width: 760px;
  color: rgba(26, 23, 20, 0.82);
  font-size: clamp(1.12rem, 1.45vw, 1.42rem);
  font-weight: 700;
  line-height: 1.3;
}

.article-body {
  max-width: 820px;
  margin-top: clamp(2rem, 5vh, 3.5rem);
  padding-top: clamp(1.4rem, 3vh, 2.2rem);
  border-top: 1px solid rgba(26, 23, 20, 0.42);
}

.article-body p {
  margin: 0;
  color: rgba(26, 23, 20, 0.82);
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  font-weight: 700;
  line-height: 1.52;
}

.article-body p + p {
  margin-top: 1.2rem;
}

.article-body a {
  color: rgba(18, 17, 15, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(18, 17, 15, 0.34);
  text-underline-offset: 0.2rem;
  overflow-wrap: anywhere;
}

.article-body a:hover,
.article-body a:focus-visible {
  color: rgba(18, 17, 15, 1);
  text-decoration-color: rgba(18, 17, 15, 0.78);
}

.article-references {
  margin-top: clamp(2.6rem, 6vh, 4rem);
  padding-top: clamp(1.35rem, 3vh, 2.1rem);
  border-top: 1px solid rgba(26, 23, 20, 0.42);
}

.article-references h2 {
  margin: 0;
  color: rgba(18, 17, 15, 0.9);
  font-size: clamp(1.5rem, 2.4vw, 2.45rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.article-references ol {
  display: grid;
  gap: 0.8rem;
  margin: clamp(1rem, 2vh, 1.5rem) 0 0;
  padding: 0;
  counter-reset: article-ref;
  list-style: none;
}

.article-references li {
  position: relative;
  min-width: 0;
  padding-left: 3rem;
  color: rgba(26, 23, 20, 0.78);
  font-size: clamp(0.92rem, 1vw, 1.04rem);
  font-weight: 700;
  line-height: 1.42;
  overflow-wrap: anywhere;
  counter-increment: article-ref;
}

.article-references li::before {
  content: "[" counter(article-ref) "]";
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(38, 33, 29, 0.62);
}

.career-lines,
.open-roles {
  display: grid;
  max-width: 760px;
  color: rgba(26, 23, 20, 0.86);
  font-size: clamp(1.02rem, 1.16vw, 1.2rem);
  line-height: 1.35;
  text-shadow: 0 1px 0 rgba(241, 234, 220, 0.22);
}

.career-lines {
  margin-top: 2rem;
  border-bottom: 1px solid rgba(26, 23, 20, 0.38);
}

.career-line,
.role-line {
  display: grid;
  gap: clamp(1rem, 3vw, 2.2rem);
  margin: 0;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(26, 23, 20, 0.38);
}

.career-line {
  grid-template-columns: minmax(9rem, 0.45fr) minmax(0, 1fr);
}

.role-line {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.career-line strong,
.role-line span:first-child {
  color: rgba(24, 22, 19, 0.95);
  font-weight: 700;
}

.career-line span,
.role-line span:last-child {
  font-weight: 600;
}

.open-roles {
  margin-top: 3.4rem;
}

.open-roles h2 {
  margin: 0 0 0.7rem;
  color: rgba(24, 22, 19, 0.9);
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0;
}

.roles-empty {
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(26, 23, 20, 0.38);
  border-bottom: 1px solid rgba(26, 23, 20, 0.38);
  color: rgba(26, 23, 20, 0.78);
  font-size: clamp(0.98rem, 1.02vw, 1.08rem);
  font-weight: 700;
  line-height: 1.38;
}

.role-line:last-child {
  border-bottom: 1px solid rgba(26, 23, 20, 0.38);
}

.role-line span:last-child {
  color: rgba(24, 22, 19, 0.95);
  text-align: right;
  text-transform: uppercase;
}

.role-id {
  color: rgba(24, 22, 19, 0.82);
  font-weight: 700;
  text-transform: uppercase;
}

.role-line {
  width: 100%;
  background: transparent;
  border-right: 0;
  border-left: 0;
  border-bottom: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.role-line:hover span:first-child,
.role-line:focus-visible span:first-child {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22rem;
}

.role-line:focus-visible {
  outline: 1px solid rgba(24, 22, 19, 0.72);
  outline-offset: 0.28rem;
}

.open-roles .role-line:last-child {
  border-bottom: 1px solid rgba(26, 23, 20, 0.38);
}

.role-line[aria-expanded="true"] span:first-child,
.role-mail:hover,
.role-mail:focus-visible {
  color: rgba(18, 17, 15, 0.96);
  border-color: rgba(18, 17, 15, 0.82);
}

.role-mail:focus-visible {
  outline: 1px solid rgba(24, 22, 19, 0.74);
  outline-offset: 0.26rem;
}

.role-panel {
  padding: 0.1rem 0 1.45rem;
  border-bottom: 1px solid rgba(26, 23, 20, 0.38);
}

.role-type {
  margin: 0 0 0.75rem;
  color: rgba(38, 33, 29, 0.62);
  font-size: clamp(0.78rem, 0.84vw, 0.9rem);
  font-weight: 700;
  text-transform: uppercase;
}

.role-panel-title {
  margin: 0;
  color: rgba(24, 22, 19, 0.94);
  font-size: clamp(1.45rem, 2.4vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
}

.role-detail-lines {
  display: grid;
  margin-top: clamp(1.15rem, 2.4vh, 1.8rem);
  border-bottom: 1px solid rgba(24, 22, 19, 0.34);
}

.role-detail-section {
  display: grid;
  grid-template-columns: minmax(10rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: 1rem 0;
  border-top: 1px solid rgba(24, 22, 19, 0.34);
}

.role-detail-section h3 {
  margin: 0;
  color: rgba(24, 22, 19, 0.92);
  font-size: clamp(1rem, 1.06vw, 1.12rem);
  font-weight: 700;
}

.role-detail-section p,
.role-detail-section ul {
  margin: 0;
  color: rgba(26, 23, 20, 0.78);
  font-size: clamp(0.98rem, 1.02vw, 1.08rem);
  font-weight: 700;
  line-height: 1.38;
}

.role-detail-section ul {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.1rem;
}

.role-mail {
  display: inline-block;
  margin-top: 1.35rem;
  padding-bottom: 0.18rem;
  color: rgba(24, 22, 19, 0.86);
  border-bottom: 1px solid rgba(24, 22, 19, 0.34);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  text-decoration: none;
}

.technology-page {
  display: block;
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
}

.technology-texture {
  background-color: var(--mode-bg);
}

.technology-shade {
  display: none;
}

.technology-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100vw - 3rem));
  margin-left: clamp(6.25rem, 13.5vw, 12rem);
  padding-top: clamp(10rem, 20vh, 13.5rem);
  padding-bottom: clamp(4rem, 12vh, 8rem);
  text-align: left;
}

.technology-hero {
  max-width: 900px;
  min-height: clamp(10rem, 22vh, 15rem);
}

.technology-copy {
  margin: 0;
  max-width: 760px;
  color: rgba(26, 23, 20, 0.86);
  font-size: clamp(1.35rem, 2.3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.16;
  text-shadow: 0 1px 0 rgba(241, 234, 220, 0.22);
}

.technology-story {
  margin: 1.15rem 0 0;
  max-width: 820px;
  color: rgba(26, 23, 20, 0.78);
  font-size: clamp(1rem, 1.18vw, 1.22rem);
  font-weight: 700;
  line-height: 1.38;
  text-shadow: 0 1px 0 rgba(241, 234, 220, 0.22);
}

.technology-feature {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: stretch;
  margin-top: clamp(3rem, 8vh, 5.5rem);
  padding: clamp(1.5rem, 3vw, 2.4rem) 0;
  border-top: 1px solid rgba(26, 23, 20, 0.5);
  color: rgba(26, 23, 20, 0.84);
  text-shadow: 0 1px 0 rgba(241, 234, 220, 0.18);
}

.technology-feature:last-child,
.technology-feature-final {
  border-bottom: 1px solid rgba(26, 23, 20, 0.5);
}

.technology-text {
  min-width: 0;
  padding-right: clamp(1.2rem, 2.4vw, 2.2rem);
}

.technology-label {
  margin: 0 0 1rem;
  color: rgba(38, 33, 29, 0.58);
  font-size: clamp(0.78rem, 0.86vw, 0.9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.technology-text h2 {
  margin: 0 0 0.85rem;
  color: rgba(18, 17, 15, 0.92);
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.technology-text p:last-child {
  margin: 0;
  max-width: 32rem;
  font-size: clamp(1rem, 1.14vw, 1.18rem);
  font-weight: 700;
  line-height: 1.38;
}

.technology-video {
  min-width: 0;
  padding-left: clamp(1.2rem, 2.4vw, 2.2rem);
  border-left: 1px solid rgba(26, 23, 20, 0.5);
}

.technology-video video,
.technology-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(5, 6, 7, 0.82);
  border: 0;
  border-radius: 0;
}

.technology-video video {
  object-fit: cover;
}

.research-section {
  margin-top: clamp(3.2rem, 8vh, 6rem);
  color: rgba(26, 23, 20, 0.84);
  text-shadow: 0 1px 0 rgba(241, 234, 220, 0.18);
}

.research-section h2 {
  margin: 0 0 1.25rem;
  color: rgba(18, 17, 15, 0.92);
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.research-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.research-table th,
.research-table td {
  padding: clamp(1rem, 1.8vw, 1.35rem) clamp(0.8rem, 1.8vw, 1.35rem);
  border-top: 1px solid rgba(26, 23, 20, 0.42);
  text-align: left;
  vertical-align: top;
}

.research-table tbody tr:last-child td {
  border-bottom: 1px solid rgba(26, 23, 20, 0.42);
}

.research-table th {
  color: rgba(38, 33, 29, 0.58);
  font-size: clamp(0.78rem, 0.86vw, 0.9rem);
  font-weight: 700;
  line-height: 1.2;
}

.research-table td {
  font-size: clamp(0.96rem, 1.04vw, 1.08rem);
  font-weight: 700;
  line-height: 1.34;
}

.research-table th:first-child,
.research-table td:first-child {
  padding-left: 0;
}

.research-table th:last-child,
.research-table td:last-child {
  padding-right: 0;
}

.research-year {
  width: 6rem;
  color: rgba(38, 33, 29, 0.62);
}

.research-work {
  width: 42%;
  color: rgba(18, 17, 15, 0.92);
}

.research-publication {
  width: 28%;
  color: rgba(26, 23, 20, 0.72);
}

.research-link {
  width: 8rem;
  text-align: right;
}

.research-link a {
  color: rgba(18, 17, 15, 0.86);
  text-decoration: underline;
  text-decoration-color: rgba(18, 17, 15, 0.36);
  text-underline-offset: 0.22rem;
}

.research-link a:hover,
.research-link a:focus-visible {
  color: rgba(18, 17, 15, 1);
  text-decoration-color: rgba(18, 17, 15, 0.76);
}

.team-page {
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
}

.team-texture {
  background-color: var(--mode-bg);
}

.team-shade {
  background: none;
}

.team-intro {
  position: relative;
  z-index: 2;
  align-self: start;
  justify-self: start;
  width: min(1120px, calc(100vw - 3rem));
  margin-left: clamp(6.25rem, 13.5vw, 12rem);
  padding-top: clamp(8rem, 20vh, 14rem);
  padding-bottom: clamp(3rem, 8vh, 5rem);
  text-align: left;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1080px;
  margin-top: 0;
  color: rgba(26, 23, 20, 0.84);
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(241, 234, 220, 0.18);
}

.team-member {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: clamp(15rem, 19vw, 18rem);
  padding: clamp(1.15rem, 2vw, 1.45rem);
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(26, 23, 20, 0.48);
  border-radius: 0;
}

.team-member:not(:nth-child(3n + 1)) {
  border-left: 1px solid rgba(26, 23, 20, 0.48);
}

.team-member h2 {
  margin: 0.58rem 0 0;
  max-width: calc(100% - 2.6rem);
  color: rgba(18, 17, 15, 0.92);
  font-size: clamp(1.42rem, 2vw, 2.28rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.team-member p {
  margin: 0;
}

.team-track {
  padding-right: 2.25rem;
  color: rgba(38, 33, 29, 0.62);
  font-size: clamp(0.82rem, 0.9vw, 0.96rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.team-role {
  margin-top: 0.75rem;
  color: rgba(26, 23, 20, 0.76);
  font-size: clamp(0.98rem, 1.06vw, 1.12rem);
  line-height: 1.3;
}

.team-member p:last-child {
  margin-top: 0.72rem;
  color: rgba(26, 23, 20, 0.72);
  font-size: clamp(0.96rem, 1.02vw, 1.06rem);
  line-height: 1.38;
}

.team-page .team-social {
  position: absolute;
  top: clamp(1.15rem, 2vw, 1.45rem);
  right: clamp(1.15rem, 2vw, 1.45rem);
  color: rgba(18, 17, 15, 0.86);
  border-color: rgba(18, 17, 15, 0.64);
  background: transparent;
}

.team-page .team-social:hover,
.team-page .team-social:focus-visible {
  color: rgba(5, 6, 7, 0.96);
  border-color: rgba(5, 6, 7, 0.88);
}

.about-section {
  max-width: 1080px;
  margin-bottom: clamp(3.4rem, 7vh, 5rem);
}

.mission-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  color: rgba(26, 23, 20, 0.84);
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(241, 234, 220, 0.18);
}

.mission-copy p {
  margin: 0;
  padding: clamp(1.15rem, 2vw, 1.45rem) clamp(1rem, 2.4vw, 1.7rem) 0 0;
  border-top: 1px solid rgba(26, 23, 20, 0.48);
  font-size: clamp(1.02rem, 1.22vw, 1.26rem);
  line-height: 1.34;
}

.mission-copy p + p {
  padding-right: 0;
  padding-left: clamp(1rem, 2.4vw, 1.7rem);
  border-left: 1px solid rgba(26, 23, 20, 0.48);
}

.advisor-section {
  max-width: 1080px;
  margin-top: clamp(3.4rem, 7vh, 5rem);
}

.team-section-title,
.advisor-title,
.supporter-title {
  margin: 0 0 1.1rem;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(26, 23, 20, 0.48);
  color: rgba(18, 17, 15, 0.9);
  font-size: clamp(1.35rem, 2.2vw, 2.35rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(241, 234, 220, 0.2);
}

.advisor-grid {
  margin-top: 0;
}

.supporters-section {
  max-width: 1080px;
  margin-top: clamp(3.4rem, 7vh, 5rem);
}

.supporter-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  max-width: 1080px;
}

.supporter-logo {
  display: grid;
  min-height: clamp(6rem, 9vw, 8.4rem);
  padding: clamp(1.05rem, 2vw, 1.55rem);
  place-items: center;
  border-top: 1px solid rgba(26, 23, 20, 0.42);
}

.supporter-logo:not(:nth-child(5n + 1)) {
  border-left: 1px solid rgba(26, 23, 20, 0.42);
}

.supporter-logo img {
  width: min(100%, 11rem);
  max-height: 4.4rem;
  object-fit: contain;
}

.theme-logo-dark {
  display: none;
}

.theme-logo-light {
  display: block;
}

html[data-theme="dark"] .theme-logo-dark {
  display: block;
}

html[data-theme="dark"] .theme-logo-light {
  display: none;
}

.sprind-logo-dark {
  width: min(100%, 13rem);
  height: 4.4rem;
  object-fit: cover;
  object-position: center 44%;
}

.supporter-logo:nth-child(3) img {
  width: min(100%, 12.4rem);
  max-height: 5.8rem;
}

.supporter-logo:nth-child(6) img {
  width: min(100%, 14.2rem);
  max-height: 5.8rem;
}

.supporter-logo:nth-child(7) img {
  width: min(100%, 15rem);
  max-height: 6.4rem;
}

.supporter-logo:nth-child(10) img {
  width: min(100%, 15rem);
  max-height: 5.8rem;
}

@media (max-width: 1000px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .supporter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .supporter-logo,
  .supporter-logo:not(:nth-child(5n + 1)) {
    border-left: 0;
  }

  .supporter-logo:not(:nth-child(3n + 1)) {
    border-left: 1px solid rgba(26, 23, 20, 0.42);
  }

  .team-member,
  .team-member:not(:nth-child(3n + 1)) {
    border-left: 0;
  }

  .team-member:nth-child(even) {
    border-left: 1px solid rgba(26, 23, 20, 0.48);
  }
}

.contact {
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  color: rgba(24, 22, 19, 0.9);
  font-size: clamp(4.8rem, 6vw, 6.2rem);
  line-height: 0.92;
  font-weight: 400;
  text-shadow:
    0 1px 0 rgba(241, 234, 220, 0.32),
    0 0 1px rgba(5, 6, 7, 0.16);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1 span {
  display: block;
}

.line {
  margin: 1.35rem 0 0;
  max-width: 760px;
  color: rgba(26, 23, 20, 0.88);
  font-size: clamp(1.08rem, 1.38vw, 1.36rem);
  font-weight: 600;
  line-height: 1.25;
  text-shadow: 0 1px 0 rgba(241, 234, 220, 0.24);
}

.line span {
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.55rem;
  color: rgba(38, 33, 29, 0.82);
  font-size: clamp(1.08rem, 1.18vw, 1.22rem);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(241, 234, 220, 0.2);
}

.hero-actions::after {
  content: "";
  display: none;
}

.try-eve::after {
  content: "/";
  display: inline-block;
  margin-left: 0.9rem;
  color: rgba(38, 33, 29, 0.42);
  text-decoration: none;
}

.try-eve,
.watch-demo {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(38, 33, 29, 0.4);
  text-underline-offset: 0.24rem;
}

.try-eve:hover,
.try-eve:focus-visible,
.watch-demo:hover,
.watch-demo:focus-visible {
  color: rgba(26, 23, 20, 0.94);
  text-decoration-color: rgba(26, 23, 20, 0.7);
}

.contact {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2.5rem);
  text-decoration: none;
}

.contact:not(.contact-links) {
  padding-bottom: 0.18rem;
  border-bottom: 1px solid var(--line);
}

.careers-page .contact:not(.contact-links) {
  border-color: rgba(24, 22, 19, 0.38);
}

.contact-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.social-link,
.email-link {
  color: inherit;
  text-decoration: none;
}

.social-link {
  display: inline-grid;
  width: 1.38rem;
  height: 1.38rem;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
}

.email-link {
  padding-bottom: 0.18rem;
  border-bottom: 1px solid var(--line);
}

.contact:hover,
.contact:focus-visible,
.social-link:hover,
.social-link:focus-visible,
.email-link:hover,
.email-link:focus-visible {
  color: var(--paper);
  border-color: var(--paper);
}

@media (max-width: 700px) {
  :root {
    --logo-size: 5.25rem;
  }

  .page {
    min-height: 100svh;
    padding: 1rem;
  }

  .shade {
    background:
      linear-gradient(90deg, rgba(5, 6, 7, 0.68), rgba(5, 6, 7, 0.2)),
      linear-gradient(180deg, rgba(5, 6, 7, 0.1), rgba(5, 6, 7, 0.58));
  }

  .careers-shade {
    background: none;
  }

  .intro {
    align-self: center;
    margin-top: 0;
    margin-left: 0;
  }

  .careers-intro {
    align-self: center;
    margin-left: 0;
    padding-top: 8.25rem;
  }

  .careers-intro h1,
  .careers-intro .line,
  .career-lines,
  .open-roles,
  .open-roles h2,
  .career-line strong,
  .role-line span:first-child,
  .role-id,
  .role-line span:last-child {
    color: rgba(26, 23, 20, 0.86);
    text-shadow: 0 1px 0 rgba(241, 234, 220, 0.22);
  }

  .career-line,
  .career-lines,
  .role-line,
  .role-line:last-child {
    border-color: rgba(26, 23, 20, 0.38);
  }

  .career-line,
  .role-line {
    grid-template-columns: 1fr;
    gap: 0.32rem;
  }

  .role-line span:last-child {
    text-align: left;
  }

  .open-roles .role-line:last-child {
    border-bottom-color: rgba(26, 23, 20, 0.38);
  }

  .role-panel {
    padding-bottom: 1.25rem;
    border-bottom-color: rgba(26, 23, 20, 0.38);
  }

  .role-type,
  .role-panel-title,
  .role-detail-section h3,
  .role-detail-section p,
  .role-detail-section ul,
  .role-mail {
    color: rgba(26, 23, 20, 0.82);
    text-shadow: 0 1px 0 rgba(241, 234, 220, 0.22);
  }

  .role-detail-lines,
  .role-detail-section {
    border-color: rgba(26, 23, 20, 0.38);
  }

  .role-detail-section {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .blog-intro,
  .news-intro {
    align-self: start;
    margin-left: 0;
    padding-top: 10rem;
    padding-bottom: 3rem;
  }

  .blog-grid,
  .news-grid {
    margin-top: 2rem;
  }

  .blog-shade,
  .news-shade {
    background: none;
  }

  .article-content {
    width: 100%;
    margin-left: 0;
    padding-top: 10.5rem;
    padding-bottom: 3.5rem;
  }

  .article-title {
    max-width: 100%;
    font-size: clamp(2.6rem, 12vw, 3.9rem);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .article-dek,
  .article-body {
    max-width: 100%;
  }

  .article-references li {
    padding-left: 2.45rem;
  }

  .technology-content {
    margin-left: 0;
    padding-top: 9.2rem;
    padding-bottom: 4rem;
  }

  .technology-hero {
    min-height: 13rem;
  }

  .technology-feature {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    margin-top: 2.4rem;
    padding: 1.45rem 0;
    border-color: rgba(26, 23, 20, 0.5);
  }

  .technology-feature:last-child {
    border-bottom-color: rgba(26, 23, 20, 0.5);
  }

  .technology-feature-final {
    border-bottom-color: rgba(26, 23, 20, 0.5);
  }

  .technology-text {
    padding-right: 0;
  }

  .technology-video {
    padding-top: 1.25rem;
    padding-left: 0;
    border-top: 1px solid rgba(26, 23, 20, 0.5);
    border-left: 0;
  }

  .research-section {
    margin-top: 3rem;
  }

  .research-section h2 {
    margin-bottom: 0.9rem;
  }

  .research-table,
  .research-table thead,
  .research-table tbody,
  .research-table tr,
  .research-table th,
  .research-table td {
    display: block;
    width: 100%;
  }

  .research-table thead {
    display: none;
  }

  .research-table tr {
    padding: 1rem 0;
    border-top: 1px solid rgba(26, 23, 20, 0.42);
  }

  .research-table tbody tr:last-child {
    border-bottom: 1px solid rgba(26, 23, 20, 0.42);
  }

  .research-table td,
  .research-table tbody tr:last-child td {
    padding: 0;
    border: 0;
  }

  .research-table td + td {
    margin-top: 0.38rem;
  }

  .research-link {
    margin-top: 0.7rem;
    text-align: left;
  }

  .team-intro {
    align-self: start;
    margin-left: 0;
    padding-top: 9rem;
    padding-bottom: 3rem;
  }

  .technology-copy,
  .technology-story,
  .technology-feature,
  .technology-label,
  .technology-text h2,
  .research-section,
  .research-section h2,
  .research-work,
  .research-publication,
  .research-link a,
  .team-grid,
  .team-member h2,
  .team-section-title,
  .advisor-title,
  .team-track,
  .team-role,
  .team-member p:last-child,
  .mission-copy {
    color: rgba(26, 23, 20, 0.84);
    text-shadow: 0 1px 0 rgba(241, 234, 220, 0.18);
  }

  .team-section-title,
  .advisor-title,
  .supporter-title {
    border-top-color: rgba(26, 23, 20, 0.48);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .mission-copy {
    grid-template-columns: 1fr;
  }

  .mission-copy p,
  .mission-copy p + p {
    padding-right: 0;
    padding-left: 0;
    border-top-color: rgba(26, 23, 20, 0.48);
    border-left: 0;
  }

  .supporter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .supporter-logo,
  .supporter-logo:not(:nth-child(5n + 1)),
  .supporter-logo:not(:nth-child(3n + 1)) {
    border-top-color: rgba(26, 23, 20, 0.42);
    border-left: 0;
  }

  .supporter-logo:nth-child(even) {
    border-left: 1px solid rgba(26, 23, 20, 0.42);
  }

  .team-member,
  .team-member:not(:nth-child(3n + 1)),
  .team-member:nth-child(3n),
  .team-member:nth-child(even) {
    min-height: 13.5rem;
    border-top-color: rgba(26, 23, 20, 0.48);
    border-left: 0;
  }

  .team-page .team-social,
  .team-page .team-member .team-social,
  .team-page .team-member:not(:nth-child(3n + 1)) .team-social,
  .team-page .team-member:nth-child(even) .team-social {
    right: clamp(1.15rem, 2vw, 1.45rem);
    color: rgba(18, 17, 15, 0.86);
    border-color: rgba(18, 17, 15, 0.64);
    background: transparent;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .menu {
    left: 1rem;
    right: 1rem;
    top: 4.8rem;
    gap: 0.55rem 0.8rem;
    justify-content: flex-start;
  }

  .menu a {
    font-size: 0.98rem;
  }

  .contact {
    left: 1rem;
    right: auto;
  }

  .theme-toggle {
    top: 1rem;
    right: 1rem;
  }
}

.home-shade {
  background: none;
}

.blog-page .menu a,
.careers-page .menu a,
.news-page .menu a,
.technology-page .menu a,
.team-page .menu a {
  color: var(--mode-text);
  text-decoration-color: var(--mode-line);
  text-shadow: var(--mode-shadow);
}

.blog-page .theme-toggle,
.careers-page .theme-toggle,
.news-page .theme-toggle,
.technology-page .theme-toggle,
.team-page .theme-toggle {
  color: var(--mode-text);
  border-color: var(--mode-line);
  text-shadow: var(--mode-shadow);
}

.blog-page .menu a:hover,
.blog-page .menu a:focus-visible,
.careers-page .menu a:hover,
.careers-page .menu a:focus-visible,
.news-page .menu a:hover,
.news-page .menu a:focus-visible,
.technology-page .menu a:hover,
.technology-page .menu a:focus-visible,
.team-page .menu a:hover,
.team-page .menu a:focus-visible,
.blog-page .theme-toggle:hover,
.blog-page .theme-toggle:focus-visible,
.careers-page .theme-toggle:hover,
.careers-page .theme-toggle:focus-visible,
.news-page .theme-toggle:hover,
.news-page .theme-toggle:focus-visible,
.technology-page .theme-toggle:hover,
.technology-page .theme-toggle:focus-visible,
.team-page .theme-toggle:hover,
.team-page .theme-toggle:focus-visible {
  color: var(--mode-strong);
  text-decoration-color: var(--mode-strong);
  border-color: var(--mode-strong);
}

.blog-page :is(h1, h2, h3, p, span, strong, a, th, td, li),
.careers-page :is(h1, h2, h3, p, span, strong, a, th, td, li),
.news-page :is(h1, h2, h3, p, span, strong, a, th, td, li),
.technology-page :is(h1, h2, h3, p, span, strong, a, th, td, li),
.team-page :is(h1, h2, h3, p, span, strong, a, th, td, li) {
  color: var(--mode-text);
  text-shadow: var(--mode-shadow);
}

.blog-page :is(.blog-row h2, .article-title, .article-references h2),
.careers-page :is(h1, .open-roles h2, .career-line strong, .role-line span:first-child, .role-panel-title),
.news-page :is(.news-row h2, .article-title, .article-references h2),
.technology-page :is(.technology-text h2, .research-section h2, .research-work),
.team-page :is(.team-member h2, .team-section-title, .advisor-title, .supporter-title, .mission-copy) {
  color: var(--mode-strong);
}

.blog-page :is(.blog-meta, .article-kicker),
.careers-page :is(.role-type, .role-id),
.news-page :is(.news-meta, .news-intro .kicker, .article-kicker),
.technology-page :is(.technology-label, .research-year),
.team-page :is(.team-track) {
  color: var(--mode-muted);
}

.blog-page :is(a),
.careers-page :is(a),
.news-page :is(a),
.technology-page :is(a),
.team-page :is(a) {
  text-decoration-color: var(--mode-line);
}

.blog-page :is(a:hover, a:focus-visible),
.careers-page :is(a:hover, a:focus-visible),
.news-page :is(a:hover, a:focus-visible),
.technology-page :is(a:hover, a:focus-visible),
.team-page :is(a:hover, a:focus-visible) {
  color: var(--mode-strong);
  text-decoration-color: var(--mode-strong);
}

.blog-page .article-references li::before,
.news-page .article-references li::before {
  color: var(--mode-muted);
}

:is(.blog-page, .careers-page, .news-page, .technology-page, .team-page)
  :is(h1, h2, h3, p, span, strong, a, th, td, li, button) {
  color: var(--mode-text) !important;
  text-shadow: var(--mode-shadow);
}

:is(.blog-page, .careers-page, .news-page, .technology-page, .team-page)
  :is(h1, h2, h3, strong, .article-title, .article-references h2, .blog-row h2, .news-row h2, .technology-copy, .technology-text h2, .research-section h2, .research-work, .team-member h2, .team-section-title, .advisor-title, .supporter-title, .mission-copy, .open-roles h2, .career-line strong, .role-line span:first-child, .role-panel-title) {
  color: var(--mode-strong) !important;
}

:is(.blog-page, .careers-page, .news-page, .technology-page, .team-page)
  :is(.blog-meta, .news-meta, .article-kicker, .technology-label, .research-year, .team-track, .role-type, .role-id) {
  color: var(--mode-muted) !important;
}

.blog-page :is(.blog-row, .blog-row:last-child, .article-body, .article-references),
.careers-page :is(.career-line, .career-lines, .role-line, .role-line:last-child, .roles-empty, .role-panel, .role-detail-lines, .role-detail-section, .contact:not(.contact-links)),
.news-page :is(.news-row, .news-row:last-child, .article-body, .article-references),
.technology-page :is(.technology-feature, .technology-feature:last-child, .technology-feature-final, .technology-video, .research-table th, .research-table td, .research-table tbody tr:last-child td),
.team-page :is(.team-member, .team-member:not(:nth-child(3n + 1)), .mission-copy p, .mission-copy p + p, .team-section-title, .advisor-title, .supporter-title, .supporter-logo, .supporter-logo:not(:nth-child(5n + 1)), .team-social) {
  border-color: var(--mode-line);
}

.team-page .team-social:hover,
.team-page .team-social:focus-visible,
.technology-page .research-link a:hover,
.technology-page .research-link a:focus-visible {
  color: var(--mode-strong);
  border-color: var(--mode-strong);
  text-decoration-color: var(--mode-strong);
}

html[data-theme="light"] .home-page h1,
html[data-theme="light"] .home-page .line,
html[data-theme="light"] .home-page .hero-actions,
html[data-theme="light"] .home-page .menu a,
html[data-theme="light"] .home-page .contact {
  color: var(--mode-strong);
  text-shadow: var(--mode-shadow);
}

html[data-theme="light"] .home-page .menu a,
html[data-theme="light"] .home-page .try-eve,
html[data-theme="light"] .home-page .watch-demo,
html[data-theme="light"] .home-page .email-link,
html[data-theme="light"] .home-page .social-link,
html[data-theme="light"] .home-page .theme-toggle {
  text-decoration-color: var(--mode-line);
  border-color: var(--mode-line);
}

html[data-theme="light"] .home-page .try-eve::after {
  color: var(--mode-line);
}

html[data-theme="light"] .home-page .menu a:hover,
html[data-theme="light"] .home-page .menu a:focus-visible,
html[data-theme="light"] .home-page .try-eve:hover,
html[data-theme="light"] .home-page .try-eve:focus-visible,
html[data-theme="light"] .home-page .watch-demo:hover,
html[data-theme="light"] .home-page .watch-demo:focus-visible,
html[data-theme="light"] .home-page .contact:hover,
html[data-theme="light"] .home-page .contact:focus-visible,
html[data-theme="light"] .home-page .theme-toggle:hover,
html[data-theme="light"] .home-page .theme-toggle:focus-visible {
  color: var(--mode-strong);
  text-decoration-color: var(--mode-strong);
  border-color: var(--mode-strong);
}

html[data-theme="light"] .logo img {
  filter: invert(1);
}

html[data-theme="dark"] .logo img {
  filter: none;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) .home-page h1,
  :root:not([data-theme="dark"]) .home-page .line,
  :root:not([data-theme="dark"]) .home-page .hero-actions,
  :root:not([data-theme="dark"]) .home-page .menu a,
  :root:not([data-theme="dark"]) .home-page .contact {
    color: var(--mode-strong);
    text-shadow: var(--mode-shadow);
  }

  :root:not([data-theme="dark"]) .home-page .menu a,
  :root:not([data-theme="dark"]) .home-page .try-eve,
  :root:not([data-theme="dark"]) .home-page .watch-demo,
  :root:not([data-theme="dark"]) .home-page .email-link,
  :root:not([data-theme="dark"]) .home-page .social-link,
  :root:not([data-theme="dark"]) .home-page .theme-toggle {
    text-decoration-color: var(--mode-line);
    border-color: var(--mode-line);
  }

  :root:not([data-theme="dark"]) .home-page .try-eve::after {
    color: var(--mode-line);
  }

  :root:not([data-theme="dark"]) .logo img {
    filter: invert(1);
  }

  :root:not([data-theme="dark"]) .home-page .menu a:hover,
  :root:not([data-theme="dark"]) .home-page .menu a:focus-visible,
  :root:not([data-theme="dark"]) .home-page .try-eve:hover,
  :root:not([data-theme="dark"]) .home-page .try-eve:focus-visible,
  :root:not([data-theme="dark"]) .home-page .watch-demo:hover,
  :root:not([data-theme="dark"]) .home-page .watch-demo:focus-visible,
  :root:not([data-theme="dark"]) .home-page .contact:hover,
  :root:not([data-theme="dark"]) .home-page .contact:focus-visible,
  :root:not([data-theme="dark"]) .home-page .theme-toggle:hover,
  :root:not([data-theme="dark"]) .home-page .theme-toggle:focus-visible {
    color: var(--mode-strong);
    text-decoration-color: var(--mode-strong);
    border-color: var(--mode-strong);
  }
}
