:root {
  --ink: #181818;
  --paper: #fffefd;
  --soft-paper: #f5f0ec;
  --lavender: #d8c9ee;
  --sage: #78896f;
  --mist: #e7e2dc;
  --line: rgba(24, 24, 24, 0.16);
  --header-height: 76px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.35;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  clip: auto;
  background: var(--paper);
  border: 2px solid var(--ink);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  color: var(--ink);
  background: var(--paper);
  transition: background 180ms ease, color 180ms ease;
}

.site-header.is-transparent {
  background: transparent;
  color: #fff;
}

.site-header.is-dark {
  background: var(--ink);
  color: #fff;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 15px;
  font-weight: 700;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.desktop-nav a,
.download-link,
.mobile-panel a {
  border-radius: 999px;
  outline-offset: 5px;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
  color: var(--sage);
}

.wordmark,
.footer-wordmark {
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
}

.download-link,
.menu-toggle {
  display: none;
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.42));
}

.hero-copy {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 72px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.hero h1,
.section-copy h2,
.careers h2,
.press h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.95;
}

.hero h1 {
  max-width: 850px;
  font-size: 72px;
}

.hero h1 span {
  display: block;
}

.tm {
  position: relative;
  bottom: 13px;
  font-size: 16px;
  font-weight: 900;
}

.section-pad {
  padding: 160px 32px;
}

.section-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.section-grid-reverse .eyebrow {
  grid-column: 2;
}

.section-grid-reverse .section-copy {
  grid-column: 2;
}

.eyebrow {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--lavender);
}

.approach .eyebrow,
.labs .eyebrow,
.careers .eyebrow {
  color: var(--ink);
}

.section-copy h2,
.careers h2 {
  max-width: 540px;
  font-size: 64px;
}

.section-copy p,
.careers p,
.press p {
  max-width: 470px;
  margin: 38px 0;
  color: rgba(24, 24, 24, 0.75);
  font-size: 19px;
}

.arrow-mark {
  width: 46px;
  height: 92px;
  margin: 42px 0 24px 28px;
  border-left: 5px solid #70406d;
  border-bottom: 5px solid #70406d;
  transform: rotate(-20deg);
  border-radius: 0 0 0 30px;
}

.arrow-mark::after {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  margin: 73px 0 0 -12px;
  border-right: 5px solid #70406d;
  border-bottom: 5px solid #70406d;
  transform: rotate(10deg);
}

.pill-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.pill-button:hover {
  transform: translateY(-1px);
}

.pill-button.muted {
  background: #969696;
  color: #fff;
}

.pill-button.dark {
  background: var(--ink);
  color: #fff;
}

.pill-button.light {
  background: var(--paper);
  color: var(--ink);
}

.feature-photo {
  padding: 0 0 160px;
  overflow: hidden;
}

.feature-photo img {
  width: 48%;
  min-width: 580px;
  height: 430px;
  object-fit: cover;
  object-position: center;
  border-radius: 0 8px 8px 0;
}

.labs {
  padding-top: 0;
}

.quotes {
  min-height: 810px;
  display: flex;
  align-items: center;
  padding: 96px 32px;
  background: var(--ink);
  color: #fff;
}

.quote-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.quote-mark {
  margin-top: 130px;
  color: var(--lavender);
  font-family: var(--serif);
  font-size: 86px;
  line-height: 0.4;
}

.quote-track {
  position: relative;
  min-height: 260px;
}

.quote-slide {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.quote-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quote-slide blockquote {
  max-width: 770px;
  margin: 0;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.12;
}

.quote-slide figcaption {
  margin-top: 42px;
  font-size: 16px;
  font-weight: 900;
}

.quote-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 80px;
}

.quote-tabs button {
  position: relative;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quote-tabs button::before,
.quote-tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 9px;
  height: 2px;
}

.quote-tabs button::before {
  background: rgba(255, 255, 255, 0.22);
}

.quote-tabs button::after {
  transform: scaleX(0);
  transform-origin: left;
  background: #fff;
  transition: transform 220ms ease;
}

.quote-tabs button.is-active::after {
  transform: scaleX(1);
}

.careers {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 760px;
  padding: 150px 0 0;
  overflow: hidden;
}

.careers-copy {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
}

.careers-copy p:last-of-type {
  margin-bottom: 24px;
}

.image-row {
  align-self: end;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.62fr;
  gap: 32px;
  width: 64%;
  min-width: 760px;
  margin: 32px 0 150px auto;
  transform: translateX(8%);
}

.image-row img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 6px;
}

.image-row img:nth-child(3) {
  object-position: 67% center;
}

.press {
  background: var(--ink);
  color: #fff;
}

.press-copy {
  max-width: 1200px;
  margin: 0 auto;
}

.press h2 {
  max-width: 760px;
  font-size: 64px;
}

.press p {
  color: #fff;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  min-height: 620px;
  padding: 132px 32px 64px;
  background: var(--ink);
  color: #fff;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

.footer-wordmark {
  width: max-content;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.language-button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 54px;
}

.footer nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer h2 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.52);
  font: 400 16px var(--sans);
}

.footer a {
  width: fit-content;
  max-width: 100%;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.footer a:hover {
  color: var(--lavender);
}

.start-connecting {
  position: absolute;
  right: 46px;
  bottom: 38px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-height: 88px;
  padding: 0 38px;
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: #252525;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  cursor: default;
}

.start-connecting-icon {
  position: relative;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(180deg, #5ef36e 0%, #02bd25 100%);
}

.start-connecting-icon::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 22px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
}

.start-connecting-icon::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 7px;
  width: 10px;
  height: 10px;
  background: #fff;
  transform: rotate(45deg);
}

@media (max-width: 800px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    grid-template-columns: 48px 1fr auto;
    padding: 0 20px;
  }

  .desktop-nav {
    display: none;
  }

  .wordmark {
    justify-self: center;
    font-size: 38px;
  }

  .menu-toggle {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 28px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle span:nth-child(2) {
    transform: translateY(-6px);
  }

  .site-header.menu-open .menu-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .download-link {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 19px;
    border-radius: 999px;
    background: currentColor;
    font-size: 14px;
    font-weight: 900;
  }

  .site-header.is-transparent .download-link {
    color: #fff;
    background: #fff;
  }

  .site-header.is-transparent .download-link,
  .site-header:not(.is-transparent) .download-link {
    color: var(--ink);
  }

  .site-header.is-dark .download-link {
    background: #fff;
    color: var(--ink);
  }

  .mobile-panel {
    position: fixed;
    z-index: -1;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 2px;
    padding: 12px 20px 26px;
    background: var(--paper);
    color: var(--ink);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.menu-open {
    background: var(--paper);
    color: var(--ink);
  }

  .site-header.menu-open .mobile-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-panel a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
  }

  .hero {
    min-height: 844px;
  }

  .hero-image {
    object-position: 55% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04) 52%, rgba(0, 0, 0, 0.66));
  }

  .hero-copy {
    left: 20px;
    right: 20px;
    bottom: 86px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: 44px;
  }

  .tm {
    bottom: 10px;
    font-size: 10px;
  }

  .section-pad {
    padding: 86px 20px 110px;
  }

  .section-grid,
  .section-grid-reverse {
    display: block;
  }

  .section-grid .eyebrow,
  .section-grid-reverse .eyebrow,
  .section-grid-reverse .section-copy {
    grid-column: auto;
  }

  .approach .eyebrow,
  .labs .eyebrow {
    display: none;
  }

  .section-copy h2,
  .careers h2,
  .press h2 {
    font-size: 48px;
  }

  .section-copy p,
  .careers p,
  .press p {
    max-width: 300px;
    margin: 34px auto;
    font-size: 17px;
  }

  .section-copy {
    text-align: left;
  }

  .arrow-mark {
    margin: 48px auto 28px;
  }

  .pill-button {
    min-height: 46px;
    padding: 0 28px;
  }

  .feature-photo {
    padding-bottom: 96px;
  }

  .feature-photo img {
    width: calc(100% - 40px);
    min-width: 0;
    height: auto;
    aspect-ratio: 1 / 1.08;
    margin-left: 86px;
    object-position: center;
    border-radius: 8px 0 0 8px;
  }

  .labs {
    padding-top: 0;
  }

  .quotes {
    min-height: 720px;
    padding: 72px 20px;
  }

  .quote-mark {
    margin-top: 120px;
    font-size: 78px;
  }

  .quote-track {
    min-height: 300px;
  }

  .quote-slide blockquote {
    font-size: 34px;
  }

  .quote-tabs {
    margin-top: 40px;
    gap: 7px;
  }

  .careers {
    min-height: 720px;
    padding: 86px 0 0;
  }

  .careers-copy {
    width: calc(100% - 40px);
  }

  .image-row {
    grid-template-columns: 1fr 1fr 0.65fr;
    gap: 14px;
    width: 112%;
    min-width: 0;
    margin: 90px 0 96px 88px;
    transform: none;
  }

  .image-row img {
    height: 124px;
  }

  .press {
    padding-top: 96px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 60px;
    min-height: 0;
    padding: 88px 20px 42px;
  }

  .footer-brand {
    min-height: 190px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .start-connecting {
    right: 18px;
    bottom: 22px;
    gap: 13px;
    min-height: 58px;
    padding: 0 20px;
    border-radius: 14px;
    font-size: 22px;
  }

  .start-connecting-icon {
    width: 27px;
    height: 27px;
    border-radius: 7px;
  }

  .start-connecting-icon::before {
    left: 5px;
    top: 5px;
    width: 17px;
    height: 14px;
  }

  .start-connecting-icon::after {
    left: 9px;
    bottom: 5px;
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 41px;
  }

  .section-copy h2,
  .careers h2,
  .press h2 {
    font-size: 44px;
  }

  .quote-slide blockquote {
    font-size: 31px;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
