/* ============================================================
   KENTO LABS — Applied Research Lab Landing
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --flynn-ink: #111316;
  --flynn-paper: #f0eee6;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  background-color: var(--flynn-ink);
  color: var(--flynn-paper);
  font-family: 'EB Garamond', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 28px;
}

.barebones-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 40px;
}

.barebones-hero {
  width: 100%;
}

.barebones-heading {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--flynn-paper);
}

.barebones-para {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(1.22rem, 2.2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: -0.01em;
  color: var(--flynn-paper);
  margin-bottom: 2rem;
  opacity: 0.92;
}

.barebones-para em {
  font-style: italic;
  font-family: inherit;
}

.barebones-para a {
  color: var(--flynn-paper);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(240, 238, 230, 0.45);
  transition: text-decoration-color 0.15s ease, opacity 0.15s ease;
}

.barebones-para a:hover {
  text-decoration-color: var(--flynn-paper);
  opacity: 1;
}

.barebones-para a:focus-visible {
  outline: 1px solid var(--flynn-paper);
  outline-offset: 2px;
}

.barebones-foot {
  padding: 32px 0 40px;
  background: transparent;
}

.barebones-foot__in {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  color: rgba(240, 238, 230, 0.45);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .barebones-main {
    padding: 40px 0 20px;
  }
  .barebones-para {
    font-size: 1.2rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }
  .wrap {
    padding: 0 20px;
  }
}
