/* Loft's paper theme, shared visually with Container Labs. */
:root {
  color-scheme: light;
  --paper: #fff;
  --ink: #202923;
  --muted: #717872;
  --line: #e9ece9;
  --accent: #2d6857;
  --wash: #f8f9f8;
  font:
    16px/1.5 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  color: var(--accent);
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.eyebrow {
  font:
    11px/1.5 ui-monospace,
    SFMono-Regular,
    monospace;
  letter-spacing: 1.4px;
  color: var(--accent);
  margin: 0 0 15px;
}
h1 {
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: -2.8px;
  line-height: 1.12;
  font-weight: 500;
  margin: 0 0 16px;
}
h2 {
  font-size: 26px;
  letter-spacing: -0.8px;
  font-weight: 500;
  margin: 0 0 8px;
}
.search-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #dce1db;
  border-radius: 7px;
  height: 48px;
  gap: 12px;
  padding: 0 14px;
  background: #fff;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.search-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #2d68570b;
}
input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: none;
  outline: none;
  color: var(--ink);
  font-size: 14px;
  height: 100%;
}
input::placeholder {
  color: #818881;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0;
  margin-top: 58px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  background: white;
  padding: 10px;
  z-index: 2;
}
.skip:focus {
  top: 15px;
}
@media (max-width: 760px) {
  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
