:root {
  --black: #0a0a09;
  --soft: #141412;
  --white: #f4f2ec;
  --muted: #9c9b94;
  --line: #30302d;
  --orange: #ff5a1f;
  font-family: Arial, 'Helvetica Neue', sans-serif;
  color: var(--white);
  background: var(--black);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--black);
}
a {
  color: inherit;
}
button {
  font: inherit;
}
.site-head,
footer {
  height: 82px;
  padding: 0 clamp(22px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 5;
}
/* Wordmark: one word, with the suffix in the accent colour. */
.logo {
  display: inline-flex;
  align-items: baseline;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
  text-decoration: none;
}
.logo span {
  color: var(--orange);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.site-head nav {
  display: flex;
  gap: 34px;
}
.site-head nav a {
  text-decoration: none;
  color: #bab9b3;
  font-size: 13px;
}
.locale {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #777;
}
.locale button {
  border: 0;
  padding: 7px 2px;
  background: none;
  color: #777;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}
.locale button.active {
  color: var(--white);
}
.hero {
  min-height: calc(100vh - 82px);
  padding: clamp(60px, 8vw, 130px) clamp(22px, 4vw, 64px) 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 7vw;
  align-items: center;
}
.eyebrow {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(55px, 7.3vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  margin: 25px 0 35px;
  max-width: 820px;
}
.lead {
  max-width: 580px;
  color: #aaa9a3;
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.button.orange {
  background: var(--orange);
  border-color: var(--orange);
}
.button.quiet {
  background: transparent;
}
.preview {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #1b1b19;
}
.preview:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0007 0, transparent 30%, transparent 65%, #000b);
}
.preview img,
.preview video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.05);
}
.preview-top,
.preview-foot {
  position: absolute;
  z-index: 1;
  left: 26px;
  right: 26px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.preview-top {
  top: 24px;
}
.preview-foot {
  bottom: 22px;
  align-items: center;
}
.manifest {
  padding: 12vw 8vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifest p {
  font-size: clamp(38px, 6.5vw, 100px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin: 0;
  max-width: 1250px;
}
.capabilities,
.roadmap,
.faq {
  padding: 120px clamp(22px, 7vw, 110px);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 7vw;
}
.section-intro h2,
.roadmap h2,
.partner h2,
.faq h2 {
  font-size: clamp(42px, 5.5vw, 84px);
  letter-spacing: -0.055em;
  line-height: 1;
  margin: 22px 0;
}
.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.cap-grid article {
  min-height: 220px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}
.cap-grid article:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.cap-grid span {
  color: var(--orange);
  font-size: 11px;
}
.cap-grid h3 {
  font-size: 26px;
  margin: 48px 0 12px;
  letter-spacing: -0.03em;
}
.cap-grid p,
.road-list span,
.faq details p {
  color: var(--muted);
  line-height: 1.55;
}
.roadmap {
  background: var(--white);
  color: var(--black);
}
.road-list {
  border-top: 1px solid #c7c5be;
}
.road-list p {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 25px;
  padding: 30px 0;
  margin: 0;
  border-bottom: 1px solid #c7c5be;
}
.road-list b {
  font-size: 20px;
}
.partner {
  padding: 150px max(22px, 10vw);
  text-align: center;
  background: var(--soft);
}
.partner h2 {
  max-width: 980px;
  margin: 30px auto 45px;
}
.partner #partner-note {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--muted);
  line-height: 1.6;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 26px 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
}
.faq details p {
  max-width: 650px;
}
footer {
  height: 120px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}
@media (max-width: 900px) {
  .site-head nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .preview {
    min-height: 65vw;
  }
  .capabilities,
  .roadmap,
  .faq {
    grid-template-columns: 1fr;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .manifest {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 560px) {
  .site-head {
    height: 72px;
  }
  .hero {
    min-height: auto;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .preview {
    min-height: 440px;
  }
  .cap-grid {
    grid-template-columns: 1fr;
  }
  .cap-grid article:nth-child(odd) {
    border-right: 0;
  }
  .road-list p {
    grid-template-columns: 1fr;
  }
  .locale {
    gap: 5px;
  }
}

/* The hero timelapse carries the same day-to-night control a presentation has, under the picture
   so nothing covers it. */
.preview-stack {
  display: grid;
  gap: 16px;
}
.preview-track {
  display: flex;
  align-items: center;
  gap: 12px;
}
.preview-end {
  display: grid;
  flex: none;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: none;
  color: #fff;
  cursor: pointer;
}
.preview-end:hover,
.preview-end:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}
.preview-end svg {
  width: 18px;
  height: 18px;
}
.preview-scrub {
  flex: 1;
  min-width: 0;
  accent-color: var(--orange);
  cursor: ew-resize;
}
.preview video {
  cursor: ew-resize;
  touch-action: none;
}

/* A studio asks for access from the landing; there is no way in before we answer. */
.access-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}
.access-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.access-form input {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  color: white;
  font: inherit;
  font-size: 15px;
  letter-spacing: normal;
  text-transform: none;
}
.access-form input:focus-visible {
  border-color: var(--orange);
  outline: none;
}
.access-form button[type='submit'] {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  cursor: pointer;
}
.access-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.access-status {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--muted);
}
@media (max-width: 640px) {
  .access-form {
    grid-template-columns: 1fr;
  }
}

/* Hiding by attribute must beat any display rule, or a hidden form stays on screen. */
[hidden] {
  display: none !important;
}

/* How it works: numbered steps in the same grid as the capabilities. */
.how {
  border-bottom: 1px solid var(--line);
}
.how-intro {
  max-width: 460px;
  color: var(--muted, #b9b7b0);
  font-size: 17px;
  line-height: 1.55;
}
.how-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}
.how-steps li {
  min-height: 220px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}
.how-steps li:nth-child(odd) {
  border-right: 1px solid var(--line);
}
@media (max-width: 560px) {
  .how-steps li:nth-child(odd) {
    border-right: 0;
  }
}

/* Each capability shows a real screen: behind the card on hover, above the text on touch screens. */
.cap-grid article {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cap-grid article > :not(.cap-shot) {
  position: relative;
  z-index: 1;
}
.cap-shot {
  display: block;
  width: 100%;
  object-fit: cover;
}
@media (hover: hover) {
  .cap-shot {
    position: absolute;
    inset: 0;
    height: 100%;
    opacity: 0;
    scale: 1.04;
    transition:
      opacity 0.35s ease,
      scale 0.6s ease;
    pointer-events: none;
  }
  .cap-grid article::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 7, 0.15), rgba(8, 8, 7, 0.88) 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }
  .cap-grid article:hover .cap-shot {
    opacity: 1;
    scale: 1;
  }
  .cap-grid article:hover::after {
    opacity: 1;
  }
  .cap-grid article:hover p {
    color: #e6e4de;
  }
}
@media (hover: none) {
  .cap-shot {
    aspect-ratio: 16 / 10;
    margin-bottom: 18px;
    border-radius: 10px;
  }
  .cap-grid article h3 {
    margin-top: 18px;
  }
}

/* The timelapse card's frames stack up and fade from one to the next. */
.cap-frames {
  overflow: hidden;
}
.cap-frames img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cap-frames img.is-shown {
  opacity: 1;
}
@media (hover: none) {
  .cap-frames {
    position: relative;
  }
}
