/* Custom overlay from the saved orior-clone (homepage nav + docs/whitepaper pages). */

.samantha-index-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.samantha-index-nav a {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  font-family: var(--font-display), Geist, ui-sans-serif, system-ui, sans-serif;
}

.samantha-index-nav a:hover {
  color: #171717;
  background: rgba(0, 0, 0, 0.05);
}

.samantha-page {
  margin: 0;
  min-height: 100vh;
  background: #f7f6f3;
  color: #171717;
  font-family: var(--font-display), Geist, ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.samantha-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, #f7f6f3 86%, transparent);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(16px);
}

.samantha-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}

.samantha-logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: #171717;
}

.samantha-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.samantha-nav-links a {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
}

.samantha-nav-links a:hover,
.samantha-nav-links a[aria-current="page"] {
  color: #171717;
  background: rgba(0, 0, 0, 0.05);
}

.samantha-main {
  width: min(42rem, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.samantha-eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #737373;
}

.samantha-main h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.samantha-lead {
  margin: 20px 0 0;
  font-size: 1.125rem;
  line-height: 1.65;
  color: #525252;
}

.samantha-main h2 {
  margin: 48px 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.samantha-main p,
.samantha-main li {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #404040;
}

.samantha-main a {
  color: #171717;
}

.samantha-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 40px 40px;
  font-size: 14px;
  color: #a3a3a3;
}

.samantha-footer a {
  color: inherit;
  text-decoration: none;
}

.samantha-footer a:hover {
  color: #171717;
}

@media (max-width: 720px) {
  .samantha-nav,
  .samantha-footer {
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: wrap;
  }
  .samantha-index-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
