:root {
  --paper: #f8f7f3;
  --ink: #25262a;
  --muted: #6e6e70;
  --line: #dddcd6;
  --blue: #6f96a6;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--paper);
  color: var(--ink)
}

body {
  font-family: var(--sans);
  overflow: auto;
}

.page {
  height: 100vh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
  background: var(--paper)
}

.topbar {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  height: 116px;
  padding: 31px 3.05vw 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none
}

.brand img {
  width: 180px;
  height: auto;
  display: block
}

.status,
.eyebrow,
.contact-label,
.launch-note,
.field-meta {
  font-size: 10px;
  line-height: 1;
  letter-spacing: .34em;
  font-weight: 500;
  color: #75808a;
  white-space: nowrap
}

.status {
  padding-top: 13px
}

.status-dot,
.tiny-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7fa5b4;
  margin-right: 11px;
  vertical-align: 1px
}

.hero {
  position: absolute;
  inset: 116px 0 48px;
  display: grid;
  grid-template-columns: 55% 45%;
}

.hero-copy {
  padding: 25px 2.75vw 20px 3.05vw;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column
}

.eyebrow {
  margin-top: 0;
  color: #71818b
}

h1 {
  font-size: clamp(68px, 5.45vw, 105px);
  line-height: .99;
  letter-spacing: -.055em;
  font-weight: 500;
  margin: 10px 0 0;
  max-width: 780px
}

h1 em {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.06em
}

h1 em::after {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  background: var(--blue);
  border-radius: 50%;
  /* margin: 0 0 14px 7px */
}

.subtitle {
  font-size: 19px;
  color: #68727a;
  margin: 20px 0 0;
  letter-spacing: -.02em
}

.contact-block {
  margin-top: 20px;
  padding-bottom: 8px
}

.launch-note {
  margin-bottom: 31px;
  color: #71818b
}

.contact-label {
  margin-bottom: 17px
}


.contact-label {
    margin-bottom: 12px;
}

.email {
    width: 340px;
    min-height: 62px;

    padding: 17px 18px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    background: #f1f4f3;
    border: 1px solid #d8e0e1;
    border-radius: 4px;

    color: #25262a;
    text-decoration: none;

    font-size: 21px;
    font-weight: 500;
    letter-spacing: -0.035em;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.email-address {
    white-space: nowrap;
}

.email-arrow {
    flex-shrink: 0;
    font-size: 19px;
    line-height: 1;
    color: #6f96a6;
    transition: transform 0.25s ease;
}

.email:hover {
    background: #eaf0ef;
    border-color: #b9cbd0;
    transform: translateY(-2px);
}

.email:hover .email-arrow {
    transform: translate(3px, -3px);
}

.science-field {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0
}

.science-field canvas {
  width: min(35vw, 620px);
  height: min(35vw, 620px);
  display: block
}

.field-meta {
  position: absolute;
  z-index: 2;
  font-size: 9px;
  letter-spacing: .31em;
  color: #858a8d
}

.meta-top-left {
  top: 18px;
  left: 7%
}

.meta-top-right {
  top: 18px;
  right: 12%
}

.meta-bottom-left {
  bottom: 20px;
  left: 7%
}

.meta-bottom-right {
  bottom: 20px;
  right: 12%
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: rgba(248, 247, 243, .92);
  z-index: 10
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 19px;
  white-space: nowrap;
  animation: ticker 26s linear infinite;
  padding-left: 52px;
  font-size: 11px;
  letter-spacing: .24em;
  color: #31353a
}

.ticker-track b {
  font-weight: 400;
  color: #7c8b92
}

.copyright {
  position: absolute;
    right: 52px;
    top: 0;
    height: 100%;

    margin: 0;
    padding: 0 0 0 35px;

    display: flex;
    align-items: center;

    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.24em;
    white-space: nowrap;

    color: #70828b;

    background: #f8f7f3;
    z-index: 20;
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-45%)
  }
}

@media (max-width:900px) {
  body {
    overflow: auto
  }

  .page {
    height: auto;
    min-height: 100svh
  }

  .topbar {
    height: 90px;
    padding: 24px 24px 0
  }

  .brand img {
    width: 145px
  }

  .status {
    font-size: 8px;
    letter-spacing: .25em
  }

  .hero {
    position: relative;
    inset: auto;
    min-height: calc(100svh - 48px);
    display: block;
    padding-top: 90px;
    padding-bottom: 58px
  }

  .hero-copy {
    padding: 35px 24px 25px
  }

  .eyebrow {
    font-size: 8px
  }

  .hero-copy h1 {
    font-size: clamp(54px, 12vw, 90px);
    margin-top: 30px
  }

  .subtitle {
    font-size: 16px;
    margin-top: 28px
  }

  .contact-block {
    margin-top: 70px
  }

  .science-field {
    height: 58vw;
    min-height: 360px;
    max-height: 500px;
    margin-top: 5px
  }

  .science-field canvas {
    width: min(82vw, 500px);
    height: min(82vw, 500px)
  }

  .field-meta {
    font-size: 7px
  }

  .meta-top-left {
    left: 7%
  }

  .meta-top-right {
    right: 7%
  }

  .meta-bottom-left {
    left: 7%
  }

  .meta-bottom-right {
    right: 7%
  }

  .ticker {
    height: 48px
  }

  .copyright {
    display: none
  }

  .ticker-track {
    padding-left: 24px
  }
}

@media (max-width:560px) {
  .topbar {
    height: 76px
  }

  .brand img {
    width: 125px
  }

  .status {
    padding-top: 9px
  }

  .hero {
    padding-top: 76px
  }

  .hero-copy {
    padding-top: 26px
  }

  .hero-copy h1 {
    font-size: 52px
  }

  .hero-copy h1 em::after {
    width: 8px;
    height: 8px;
    margin-bottom: 7px;
    margin-left: 4px
  }

  .contact-block {
    margin-top: 58px
  }

  .email {
    font-size: 19px
  }

  .science-field {
    min-height: 320px
  }

  .field-meta {
    font-size: 6px;
    letter-spacing: .22em
  }

  .ticker-track {
    font-size: 9px;
    gap: 12px;
    letter-spacing: .18em
  }
}

@media (prefers-reduced-motion:reduce) {
  .ticker-track {
    animation: none
  }
}