@font-face {
  font-family: "DM Sans";
  src: url("./assets/dm-sans.ttf");
}
@font-face {
  font-family: "Space Grotesk";
  src: url("./assets/space-grotesk.ttf");
}
:root {
  --bg: #f5f5f2;
  --surface: #fff;
  --ink: #262a29;
  --muted: #6a6d6a;
  --line: #e2e4dd;
  --accent: #6350c9;
  --accent-soft: #eeebfc;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 3px solid #8c7be4;
  outline-offset: 6px;
}
.topbar {
  height: 83px;
  flex-shrink: 0;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fcfcfa;
}
.brand {
  display: flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 650;
  font-size: 22px;
  letter-spacing: -1px;
  white-space: nowrap;
}
.brand-slash {
  color: #9ca196;
  margin: 0 2px;
}
.brand-mark {
  width: 27px;
  height: 27px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-right: 12px;
}
.brand-mark i {
  background: var(--accent);
  border-radius: 2px;
}
.brand-mark i:nth-child(2) {
  border-radius: 7px 2px 2px 2px;
  background: #9c8be0;
}
.brand-mark i:nth-child(3) {
  border-radius: 2px 2px 2px 7px;
  background: #b9afea;
}
.lab-label {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  letter-spacing: 0.6px;
  font-weight: 550;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-left: 13px;
  padding: 4px 6px;
  color: var(--muted);
}
.status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}
.dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  background: #66947c;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.4px;
  color: var(--muted);
}
.tiny-cross {
  font-size: 18px;
  color: var(--accent);
}
h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.02;
  margin: 22px 0 26px;
}
h1 .period {
  color: var(--accent);
}
p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 23px 42px;
  font-size: 11px;
  color: var(--muted);
}
.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fcfcfa;
  font-size: 11px;
}
.label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 640px) {
  .topbar {
    height: 75px;
    padding: 0 23px;
  }
  .lab-label {
    display: none;
  }
  .brand {
    font-size: 21px;
  }
  .status {
    font-size: 10px;
  }
  .brand-mark {
    margin-right: 9px;
  }
  footer {
    padding: 22px 23px;
    flex-wrap: wrap;
    font-size: 10px;
    gap: 9px;
  }
  footer span:last-child {
    margin-left: auto;
  }
  p {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.topbar {
  height: 88px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  border: 0;
  background: transparent;
}
.teaser-hero {
  width: min(100%, 1234px);
  padding: 56px 42px 64px;
  margin: 0 auto;
}
.intro {
  text-align: center;
}
.intro h1 {
  font-size: clamp(64px, 7vw, 100px);
  margin: 0 0 22px;
  text-wrap: balance;
}
.intro p {
  font-size: 16px;
  text-wrap: balance;
}
.dashboard-window {
  position: relative;
  margin-top: 54px;
  aspect-ratio: 2.5 / 1;
  overflow: hidden;
  border-radius: 12px;
  outline: 1px solid oklch(0 0 0 / 0.1);
  background: var(--bg);
}
.dashboard-window img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transform: scale(1.025);
}
.dashboard-window::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(245, 245, 242, 0.7)
  );
}
@media (max-width: 800px) {
  .teaser-hero {
    padding: 50px 30px 48px;
  }
  .dashboard-window {
    aspect-ratio: 1.75 / 1;
    margin-top: 44px;
  }
}
@media (max-width: 640px) {
  .topbar {
    height: 76px;
    padding: 0 23px;
  }
  .teaser-hero {
    padding: 50px 23px 40px;
  }
  .intro h1 {
    font-size: clamp(56px, 16vw, 72px);
    max-width: 330px;
    margin: 0 auto 23px;
  }
  .intro p {
    max-width: 255px;
    margin: auto;
    font-size: 14px;
  }
  .dashboard-window {
    aspect-ratio: 1.05 / 1;
    margin-top: 40px;
  }
  .dashboard-window img {
    object-position: 30% center;
  }
}
